1 // Copyright 2015 The Android Open Source Project
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //      http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef BUFFET_WEAVE_ERROR_CONVERSION_H_
16 #define BUFFET_WEAVE_ERROR_CONVERSION_H_
17 
18 #include <memory>
19 #include <string>
20 
21 #include <brillo/errors/error.h>
22 #include <weave/error.h>
23 
24 namespace buffet {
25 
ConvertError(const weave::Error & source,std::unique_ptr<brillo::Error> * destination)26 inline void ConvertError(const weave::Error& source,
27                          std::unique_ptr<brillo::Error>* destination) {
28   const weave::Error* inner_error = source.GetInnerError();
29   if (inner_error)
30     ConvertError(*inner_error, destination);
31 
32   const auto& location = source.GetLocation();
33   brillo::Error::AddTo(
34       destination,
35       tracked_objects::Location{
36           location.function_name.c_str(), location.file_name.c_str(),
37           location.line_number, tracked_objects::GetProgramCounter()},
38       "weave", source.GetCode(), source.GetMessage());
39 }
40 
ConvertError(const brillo::Error & source,std::unique_ptr<weave::Error> * destination)41 inline void ConvertError(const brillo::Error& source,
42                          std::unique_ptr<weave::Error>* destination) {
43   const brillo::Error* inner_error = source.GetInnerError();
44   if (inner_error)
45     ConvertError(*inner_error, destination);
46 
47   const auto& location = source.GetLocation();
48   weave::Error::AddTo(
49       destination,
50       tracked_objects::Location{
51           location.function_name.c_str(), location.file_name.c_str(),
52           location.line_number, tracked_objects::GetProgramCounter()},
53       source.GetCode(), source.GetMessage());
54 }
55 
56 }  // namespace buffet
57 
58 #endif  // BUFFET_WEAVE_ERROR_CONVERSION_H_
59