blob: 17a3487ce2d21e6b5fd5ef9435e6d0a97f6e83d4 [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
26template <class Source, class Destination>
27void ConvertError(const Source& source,
28 std::unique_ptr<Destination>* destination) {
29 const Source* inner_error = source.GetInnerError();
30 if (inner_error)
31 ConvertError(*inner_error, destination);
32
33 const auto& location = source.GetLocation();
34 Destination::AddTo(
35 destination,
36 tracked_objects::Location{
37 location.function_name.c_str(), location.file_name.c_str(),
38 location.line_number, tracked_objects::GetProgramCounter()},
39 source.GetDomain(), source.GetCode(), source.GetMessage());
40}
41
42} // namespace buffet
43
44#endif // BUFFET_WEAVE_ERROR_CONVERSION_H_