1 /**
2 * Copyright (c) 2022 Huawei Device Co., Ltd.
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
16 #include "assemblyFileLocationProto.h"
17
18 namespace panda::proto {
Serialize(const panda::pandasm::FileLocation & location,protoPanda::FileLocation & protoLocation)19 void FileLocation::Serialize(const panda::pandasm::FileLocation &location, protoPanda::FileLocation &protoLocation)
20 {
21 protoLocation.set_wholeline(location.whole_line);
22 protoLocation.set_boundleft(location.bound_left);
23 protoLocation.set_boundright(location.bound_right);
24 protoLocation.set_linenumber(location.line_number);
25 protoLocation.set_isdefined(location.is_defined);
26 }
27
Deserialize(const protoPanda::FileLocation & protoLocation,std::optional<panda::pandasm::FileLocation> & location)28 void FileLocation::Deserialize(const protoPanda::FileLocation &protoLocation,
29 std::optional<panda::pandasm::FileLocation> &location)
30 {
31 std::string wholeLine = protoLocation.wholeline();
32 panda::pandasm::FileLocation fileLocation(wholeLine, protoLocation.boundleft(), protoLocation.boundright(),
33 protoLocation.linenumber(), protoLocation.isdefined());
34 location = fileLocation;
35 }
36 } // panda::proto
37