-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathElementMap.cpp
181 lines (165 loc) · 4.24 KB
/
ElementMap.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/**
* @file ElementMap.cpp
* @brief Implementation of ElementMap functions.
* @author Ankit Srivastava <asrivast@gatech.edu>
*
* Copyright 2018 Georgia Institute of Technology
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "ElementMap.hpp"
#include "APCall.hpp"
#include <vector>
#include <micron/ap/ap_element_map.h>
#include <micron/ap/sys/platform.h>
#if defined(LINUX32) || defined(LINUX64)
#include <fcntl.h>
#include <unistd.h>
#endif
namespace ap {
/**
* @brief Default constructor.
*/
ElementMap::ElementMap(
) : m_elementMap(0)
{
}
/**
* @brief Constructor for creating the object with a given
* ap_element_map_t instance.
*/
ElementMap::ElementMap(
const ap_element_map_t& elementMap
) : m_elementMap(elementMap)
{
}
/**
* @brief Constructor for creating the object by reading element map
* from the given file.
*
* @param fileName Name of the file from which element map is to be read.
*/
ElementMap::ElementMap(
const std::string& fileName
) : m_elementMap(0)
{
file_descriptor_t fd;
#if defined(LINUX32) || defined(LINUX64)
fd = open(fileName.c_str(),O_RDONLY, S_IRUSR);
#else
//fd = CreateFileA(fileName.c_str(), GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
#endif
APCALL_CHECK_ZERO(AP_RestoreElementMap)(&m_elementMap, fd);
#if defined(LINUX32) || defined(LINUX64)
close(fd);
#else
//CloseHandle(fd);
#endif
}
/**
* @brief Move constructor.
*/
ElementMap::ElementMap(
ElementMap&& that
) : m_elementMap(that.m_elementMap)
{
that.m_elementMap = 0;
}
ElementMap&
ElementMap::operator=(
ElementMap&& that
)
{
m_elementMap = that.m_elementMap;
that.m_elementMap = 0;
return *this;
}
/**
* @brief Gets element reference corresponding to the given element id.
*
* @param elementId Id of the element whose element ref is to be found.
*
* @return ElementRef corresponding to the reference.
*/
ElementRef
ElementMap::getElementRef(
const std::string& elementId
) const
{
ap_anml_element_ref_t elementRef;
APCALL_CHECK_ZERO(AP_GetElementRefFromElementId)(m_elementMap, &elementRef, elementId.c_str());
return ElementRef(elementRef);
}
std::string
ElementMap::getElementId(
const ElementRef& elementRef
) const
{
unsigned bufSize = APCALL_CHECK(AP_GetElementIdFromElementRef)(m_elementMap, static_cast<char*>(0), 0, *elementRef);
std::vector<char> elementId(bufSize+1, 0);
APCALL_CHECK_ZERO(AP_GetElementIdFromElementRef)(m_elementMap, &elementId[0], bufSize, *elementRef);
return std::string(&elementId[0]);
}
/**
* @brief Saves the element map to the given file.
*
* @param fileName Name of the file in which element map is to be saved.
*/
void
ElementMap::save(
const std::string& fileName
) const
{
file_descriptor_t fd;
#if defined(LINUX32) || defined(LINUX64)
fd = open(fileName.c_str(),O_WRONLY|O_CREAT|O_TRUNC, S_IRUSR|S_IRGRP|S_IROTH|S_IWUSR);
#else
fd = CreateFileA(fileName.c_str(), GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
#endif
APCALL_CHECK_ZERO(AP_SaveElementMap)(m_elementMap, fd);
#if defined(LINUX32) || defined(LINUX64)
close(fd);
#else
CloseHandle(fd);
#endif
}
/**
* @brief Overloaded indirection operator implementation.
*
* @return Returns the underlying ap_element_map_t instance.
*/
ap_element_map_t
ElementMap::operator*(
)
{
return m_elementMap;
}
/**
* @brief Default destructor.
*/
ElementMap::~ElementMap(
)
{
// Destroy the element map only if it points to a valid instance.
if (m_elementMap != 0) {
try {
APCALL_CHECK_ZERO(AP_DestroyElementMap)(m_elementMap);
}
catch (const std::runtime_error& e) {
std::cerr << "Unable to destroy the element map because of errors." << std::endl;
std::cerr << e.what() << std::endl;
}
m_elementMap = 0;
}
}
} // namespace ap