-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathAuxData.cpp
51 lines (46 loc) · 1.76 KB
/
AuxData.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//===- AuxData.cpp ---------------------------------------------*- C++-*-===//
//
// Copyright (C) 2020 GrammaTech, Inc.
//
// This code is licensed under the MIT license. See the LICENSE file in the
// project root for license terms.
//
// This project is sponsored by the Office of Naval Research, One Liberty
// Center, 875 N. Randolph Street, Arlington, VA 22203 under contract #
// N68335-17-C-0700. The content of the information does not necessarily
// reflect the position or policy of the Government and no official
// endorsement should be inferred.
//
//===----------------------------------------------------------------------===//
#include "AuxData.hpp"
#include <gtirb/proto/AuxData.pb.h>
namespace gtirb {
void AuxData::fromProtobuf(AuxData& Result, const MessageType& Message) {
Result.SF.ProtobufType = Message.type_name();
Result.SF.RawBytes = Message.data();
}
void AuxData::toProtobuf(MessageType* Message,
const AuxData::SerializedForm& SFToSerialize) const {
*Message->mutable_type_name() = SFToSerialize.ProtobufType;
*Message->mutable_data() = SFToSerialize.RawBytes;
}
bool AuxData::checkAuxDataMessageType(const AuxData::MessageType& Message,
const std::string& ExpectedName) {
return Message.type_name() == ExpectedName;
}
// Present for testing purposes only.
void AuxData::save(std::ostream& Out) const {
MessageType Message;
this->toProtobuf(&Message);
Message.SerializeToOstream(&Out);
}
// Present for testing purposes only.
std::unique_ptr<AuxData>
AuxData::load(std::istream& In,
std::unique_ptr<AuxData> (*FPPtr)(const MessageType&)) {
MessageType Message;
Message.ParseFromIstream(&In);
auto AD = FPPtr(Message);
return AD;
}
} // namespace gtirb