-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIPCHandlerAS.cpp
45 lines (38 loc) · 1.29 KB
/
IPCHandlerAS.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
#include "IPCHandlerAS.hpp"
using namespace std;
SHMPythonAS::SHMPythonAS()
{
DBG(120, "Constructor");
uint16_t Offset = 0;
for (const auto &Size:MetadataSizes) {
Offset += static_cast<uint16_t>(Size);
_MetadataOffsets.push_back(Offset);
DBG(120, "Push Back Offset:" << Offset);
}
_MetaSegmentSize = Offset;
}
SHMPythonAS::~SHMPythonAS()
{
DBG(120, "Destructor");
}
void SHMPythonAS::setBaseAddresses(const BaseAdresses_t BaseAdresses)
{
DBG(120, "Addresses Meta:" << BaseAdresses.PostASMetaPtr << " Requests:" << BaseAdresses.PostASRequestsPtr << " Results:" << BaseAdresses.PostASResultsPtr);
_BaseAdresses = BaseAdresses;
}
SharedMemAddress_t SHMPythonAS::getMetaAddress(const uint8_t SegmentIndex, const uint8_t MetaIndex)
{
return static_cast<char*>(_BaseAdresses.PostASMetaPtr) + (SegmentIndex * _MetaSegmentSize) + _MetadataOffsets[MetaIndex];
}
SharedMemAddress_t SHMPythonAS::getRequestAddress(const uint8_t SegmentIndex)
{
return static_cast<char*>(_BaseAdresses.PostASRequestsPtr) + (
SegmentIndex * HTTP_REQUEST_MAX_SIZE
);
}
SharedMemAddress_t SHMPythonAS::getResultAddress(const uint8_t SegmentIndex)
{
return static_cast<char*>(_BaseAdresses.PostASResultsPtr) + (
SegmentIndex * HTTP_RESPONSE_MAX_SIZE
);
}