-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathp9core.cpp
61 lines (50 loc) · 1.34 KB
/
p9core.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
#include "trequests.hpp"
#include "qidobject.hpp"
#include "p9core.hpp"
#include "trace.h"
P9Core::P9Core(bool auth_required,
std::string sharename,
std::string mountpoint)
: m_authed(false),
m_auth_required(auth_required),
m_sharename(sharename),
m_mountpoint(mountpoint) { }
bool P9Core::Serving(std::string& point) {
return !m_sharename.compare(point);
}
bool P9Core::BindFid(uint32_t fid, QidObject *qobj) {
if (m_fid_map.count(fid)) {
return false;
}
qobj->IncRef();
m_fid_map[fid] = qobj;
return true;
}
void P9Core::RemoveFid(uint32_t fid) {
QidObject *qobj = m_fid_map[fid];
m_fid_map.erase(fid);
qobj->DecRef();
TRACE_PRINT("Erased %d from map", fid);
}
QidObject * P9Core::GetFid(uint32_t fid) {
if (m_fid_map.count(fid)) {
return m_fid_map[fid];
}
return NULL;
}
QidObject * P9Core::Attach(std::string& point) {
// ignore point for now, could map to a list of mountpoints
return new QidObject(m_mountpoint, m_mountpoint);
}
bool P9Core::HasRequest(uint32_t tag) {
return !!m_request_map.count(tag);
}
void P9Core::CancelRequest(uint32_t tag) {
m_request_map[tag]->Cancel();
}
void P9Core::RegisterRequest(TRequest *trequest) {
m_request_map[trequest->Tag()] = trequest;
}
void P9Core::UnregisterRequest(TRequest *trequest) {
m_request_map.erase(trequest->Tag());
}