-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathobject_attribute.cpp
43 lines (35 loc) · 1.54 KB
/
object_attribute.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
// Copyright 2020 Lawrence Livermore National Security, LLC and other Metall
// Project Developers. See the top-level COPYRIGHT file for details.
//
// SPDX-License-Identifier: (Apache-2.0 OR MIT)
#include <iostream>
#include <string>
#include <metall/metall.hpp>
int main() {
// Set and get object attributes via metall::manager object
{
metall::manager manager(metall::create_only, "/tmp/dir");
auto *obj = manager.construct<int>("obj")();
std::string description;
manager.get_instance_description(obj, &description);
std::cout << "Name: " << manager.get_instance_name(obj)
<< ", Length: " << manager.get_instance_length(obj)
<< ", Description: " << description << std::endl;
manager.set_instance_description(obj, "description example 1");
}
// Set and get object attributes via object attribute accessor object
// Using object attribute accessor, one can access object attribute without
// allocating a metall::manager object (i.e., w/o memory mapping files).
{
auto accessor = metall::manager::access_named_object_attribute("/tmp/dir");
for (const auto &object : accessor) {
std::cout << "Name: " << object.name() << ", Length: " << object.length()
<< ", Description: " << object.description() << std::endl;
}
auto itr = accessor.find("obj");
accessor.set_description(itr, "description example 2");
std::cout << "Name: " << itr->name() << ", Length: " << itr->length()
<< ", Description: " << itr->description() << std::endl;
}
return 0;
}