-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathDataBlock.cpp
70 lines (62 loc) · 2.16 KB
/
DataBlock.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//===- DataBlock.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 "IR.hpp"
#include "Serialization.hpp"
#include <gtirb/ByteInterval.hpp>
#include <gtirb/DataBlock.hpp>
#include <gtirb/proto/DataBlock.pb.h>
using namespace gtirb;
void DataBlock::toProtobuf(MessageType* Message) const {
nodeUUIDToBytes(this, *Message->mutable_uuid());
Message->set_size(this->Size);
}
ErrorOr<DataBlock*> DataBlock::fromProtobuf(Context& C,
const MessageType& Message) {
UUID Id;
if (!uuidFromBytes(Message.uuid(), Id))
return {IR::load_error::BadUUID, "Cannot load DataBlock"};
// Because we do not have an offset, we cannot create the data block and
// set its parent at the same time.
return DataBlock::Create(C, Message.size(), Id);
}
uint64_t DataBlock::getOffset() const {
assert(Parent &&
"invalid call to DataBlock::getOffset: Parent must not be null!");
return Parent->nodeToBlock(this).getOffset();
}
std::optional<Addr> DataBlock::getAddress() const {
if (!Parent) {
return std::nullopt;
}
if (auto BaseAddr = Parent->getAddress()) {
return *BaseAddr + getOffset();
}
return std::nullopt;
}
// Present for testing purposes only.
void DataBlock::save(std::ostream& Out) const {
MessageType Message;
this->toProtobuf(&Message);
Message.SerializeToOstream(&Out);
}
// Present for testing purposes only.
DataBlock* DataBlock::load(Context& C, std::istream& In) {
MessageType Message;
Message.ParseFromIstream(&In);
auto DB = DataBlock::fromProtobuf(C, Message);
if (DB)
return *DB;
return nullptr;
}