blob: a95e43cf53bf1d6f278054f7dc5ba97cce2e8c10 [file] [log] [blame]
Vitaly Bukacad20f02015-10-16 17:27:15 -07001// 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.
Vitaly Buka4f771532015-08-14 14:58:39 -070014
15#ifndef BUFFET_WEAVE_ERROR_CONVERSION_H_
16#define BUFFET_WEAVE_ERROR_CONVERSION_H_
17
18#include <memory>
19#include <string>
20
Alex Vakulenko41705852015-10-13 10:12:06 -070021#include <brillo/errors/error.h>
Vitaly Buka4f771532015-08-14 14:58:39 -070022#include <weave/error.h>
23
24namespace buffet {
25
Vitaly Buka34183c12016-01-22 18:30:49 -080026inline void ConvertError(const weave::Error& source,
27 std::unique_ptr<brillo::Error>* destination) {
28 const weave::Error* inner_error = source.GetInnerError();
Vitaly Buka4f771532015-08-14 14:58:39 -070029 if (inner_error)
30 ConvertError(*inner_error, destination);
31
32 const auto& location = source.GetLocation();
Vitaly Buka34183c12016-01-22 18:30:49 -080033 brillo::Error::AddTo(
Vitaly Buka4f771532015-08-14 14:58:39 -070034 destination,
35 tracked_objects::Location{
36 location.function_name.c_str(), location.file_name.c_str(),
37 location.line_number, tracked_objects::GetProgramCounter()},
Vitaly Buka34183c12016-01-22 18:30:49 -080038 "weave", source.GetCode(), source.GetMessage());
39}
40
41inline 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());
Vitaly Buka4f771532015-08-14 14:58:39 -070054}
55
56} // namespace buffet
57
58#endif // BUFFET_WEAVE_ERROR_CONVERSION_H_