-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathNode.cpp
30 lines (25 loc) · 1.11 KB
/
Node.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
//===- Node.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 "Node.hpp"
#include "gtirb/Module.hpp"
#include <boost/uuid/uuid_generators.hpp>
using namespace gtirb;
// TODO: accessing this object between threads requires synchronization.
static boost::uuids::random_generator UUIDGenerator;
Node::Node(Context& C, Kind Knd, const UUID& U) : K(Knd), Uuid(U), Ctx(&C) {
Ctx->registerNode(Uuid, this);
}
Node::Node(Context& C, Kind Knd) : Node(C, Knd, UUIDGenerator()) {}
Node::~Node() noexcept { Ctx->unregisterNode(this); }