This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test2.py
301 lines (237 loc) · 9.16 KB
/
test2.py
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
from typing import *
from grapl_analyzerlib.nodes.types import PropertyT
from grapl_analyzerlib.nodes.viewable import EdgeViewT, ForwardEdgeView
from grapl_analyzerlib.nodes.comparators import (
Cmp,
IntCmp,
_int_cmps,
StrCmp,
_str_cmps,
)
from grapl_analyzerlib.prelude import *
from pydgraph import DgraphClient, DgraphClientStub # type: ignore
IAuidQuery = TypeVar("IAuidQuery", bound="AuidQuery")
class AuidQuery(DynamicNodeQuery):
def __init__(self):
super(AuidQuery, self).__init__("Auid", AuidView)
self._auid = [] # type: List[List[Cmp[int]]]
def with_auid(
self: "NQ",
eq: Optional["IntCmp"] = None,
gt: Optional["IntCmp"] = None,
lt: Optional["IntCmp"] = None,
) -> "NQ":
self.set_int_property_filter("auid", _int_cmps("auid", eq=eq, gt=gt, lt=lt))
return self
IAuidView = TypeVar("IAuidView", bound="AuidView")
class AuidView(DynamicNodeView):
def __init__(
self,
dgraph_client: DgraphClient,
node_key: str,
uid: str,
node_type: str,
auid: Optional[int] = None,
):
super(AuidView, self).__init__(
dgraph_client=dgraph_client, node_key=node_key, uid=uid, node_type=node_type
)
self.dgraph_client = dgraph_client
self.node_key = node_key
self.uid = uid
self.node_type = node_type
self.auid = auid
def get_auid(self) -> Optional[int]:
if not self.auid:
self.auid = cast(Optional[int], self.fetch_property("auid", int))
return self.auid
@staticmethod
def _get_property_types() -> Mapping[str, "PropertyT"]:
return {
"auid": int,
}
@staticmethod
def _get_forward_edge_types() -> Mapping[str, "EdgeViewT"]:
f_edges = {} # type: Dict[str, Optional["EdgeViewT"]]
return cast(
'Mapping[str, "EdgeViewT"]',
{fe[0]: fe[1] for fe in f_edges.items() if fe[1]},
)
def _get_forward_edges(self) -> "Mapping[str, ForwardEdgeView]":
f_edges = {} # type: Dict[str, Optional[ForwardEdgeView]]
return cast(
"Mapping[str, ForwardEdgeView]",
{fe[0]: fe[1] for fe in f_edges.items() if fe[1]},
)
def _get_properties(self, fetch: bool = False) -> Mapping[str, Union[str, int]]:
props = {
"auid": self.auid,
}
return {p[0]: p[1] for p in props.items() if p[1] is not None}
from typing import *
from grapl_analyzerlib.nodes.types import PropertyT
from grapl_analyzerlib.nodes.viewable import EdgeViewT, ForwardEdgeView
from grapl_analyzerlib.nodes.comparators import (
Cmp,
IntCmp,
_int_cmps,
StrCmp,
_str_cmps,
)
from grapl_analyzerlib.prelude import *
from pydgraph import DgraphClient
IAuidAssumptionQuery = TypeVar("IAuidAssumptionQuery", bound="AuidAssumptionQuery")
class AuidAssumptionQuery(DynamicNodeQuery):
def __init__(self):
super(AuidAssumptionQuery, self).__init__("AuidAssumption", AuidAssumptionView)
self._assumed_timestamp = [] # type: List[List[Cmp[int]]]
self._assuming_process_id = [] # type: List[List[Cmp[int]]]
self._assumed_auid = None # type: Optional[IAuidQuery]
self._assuming_process = None # type: Optional[IProcessQuery]
def with_assumed_timestamp(
self: "NQ",
eq: Optional["IntCmp"] = None,
gt: Optional["IntCmp"] = None,
lt: Optional["IntCmp"] = None,
) -> "NQ":
self.set_int_property_filter(
"assumed_timestamp", _int_cmps("assumed_timestamp", eq=eq, gt=gt, lt=lt)
)
return self
def with_assuming_process_id(
self: "NQ",
eq: Optional["IntCmp"] = None,
gt: Optional["IntCmp"] = None,
lt: Optional["IntCmp"] = None,
) -> "NQ":
self.set_int_property_filter(
"assuming_process_id", _int_cmps("assuming_process_id", eq=eq, gt=gt, lt=lt)
)
return self
def with_assumed_auid(
self: "NQ", assumed_auid_query: Optional["IAuidQuery"] = None
) -> "NQ":
assumed_auid = assumed_auid_query or AuidQuery()
self.set_forward_edge_filter("assumed_auid", assumed_auid)
assumed_auid.set_reverse_edge_filter("~assumed_auid", self, "assumed_auid")
return self
def with_assuming_process(
self: "NQ", assuming_process_query: Optional["IProcessQuery"] = None
) -> "NQ":
assuming_process = assuming_process_query or ProcessQuery()
self.set_forward_edge_filter("assuming_process", assuming_process)
assuming_process.set_reverse_edge_filter(
"~assuming_process", self, "assuming_process"
)
return self
IAuidAssumptionView = TypeVar("IAuidAssumptionView", bound="AuidAssumptionView")
class AuidAssumptionView(DynamicNodeView):
def __init__(
self,
dgraph_client: DgraphClient,
node_key: str,
uid: str,
node_type: str,
assumed_timestamp: Optional[int] = None,
assuming_process_id: Optional[int] = None,
assumed_auid: " Optional[AuidView]" = None,
assuming_process: " Optional[ProcessView]" = None,
):
super(AuidAssumptionView, self).__init__(
dgraph_client=dgraph_client, node_key=node_key, uid=uid, node_type=node_type
)
self.dgraph_client = dgraph_client
self.node_key = node_key
self.uid = uid
self.node_type = node_type
self.assumed_timestamp = assumed_timestamp
self.assuming_process_id = assuming_process_id
self.assumed_auid = assumed_auid
self.assuming_process = assuming_process
def get_assumed_timestamp(self) -> Optional[int]:
if not self.assumed_timestamp:
self.assumed_timestamp = cast(
Optional[int], self.fetch_property("assumed_timestamp", int)
)
return self.assumed_timestamp
def get_assuming_process_id(self) -> Optional[int]:
if not self.assuming_process_id:
self.assuming_process_id = cast(
Optional[int], self.fetch_property("assuming_process_id", int)
)
return self.assuming_process_id
@staticmethod
def _get_property_types() -> Mapping[str, "PropertyT"]:
return {
"assumed_timestamp": int,
"assuming_process_id": int,
}
@staticmethod
def _get_forward_edge_types() -> Mapping[str, "EdgeViewT"]:
f_edges = {
"assumed_auid": AuidView,
"assuming_process": ProcessView,
} # type: Dict[str, Optional["EdgeViewT"]]
return cast(
'Mapping[str, "EdgeViewT"]',
{fe[0]: fe[1] for fe in f_edges.items() if fe[1]},
)
def _get_forward_edges(self) -> "Mapping[str, ForwardEdgeView]":
f_edges = {
"assumed_auid": self.assumed_auid,
"assuming_process": self.assuming_process,
} # type: Dict[str, Optional[ForwardEdgeView]]
return cast(
"Mapping[str, ForwardEdgeView]",
{fe[0]: fe[1] for fe in f_edges.items() if fe[1]},
)
def _get_properties(self, fetch: bool = False) -> Mapping[str, Union[str, int]]:
props = {
"assumed_timestamp": self.assumed_timestamp,
"assuming_process_id": self.assuming_process_id,
}
return {p[0]: p[1] for p in props.items() if p[1] is not None}
class AuidAssumptionExtendsAuidQuery(AuidQuery):
def with_auid_assumptions(
self: "NQ", auid_assumptions_query: Optional["IAuidAssumptionQuery"] = None
) -> "NQ":
auid_assumptions = auid_assumptions_query or AuidAssumptionQuery()
auid_assumptions.with_assumed_auid(cast("AuidQuery", self))
return self
class AuidAssumptionExtendsProcessQuery(ProcessQuery):
def with_assumed_auid(
self: "NQ", assumed_auid_query: Optional["IAuidAssumptionQuery"] = None
) -> "NQ":
assumed_auid = assumed_auid_query or AuidAssumptionQuery()
assumed_auid.with_assuming_process(cast("ProcessQuery", self))
return self
class AuidAssumptionExtendsAuidView(AuidView):
def get_auid_assumptions(self,) -> "AuidAssumptionView":
return cast(
"AuidAssumptionView", self.fetch_edge("~assumed_auid", AuidAssumptionView)
)
class AuidAssumptionExtendsProcessView(ProcessView):
def get_assumed_auid(self,) -> "AuidAssumptionView":
return cast(
"AuidAssumptionView",
self.fetch_edge("~assuming_process", AuidAssumptionView),
)
if __name__ == "__main__":
# Subclass from any other plugins that extend ProcessQuery
# to add extensions to ProcessQuery
class EProcessQuery(AuidAssumptionExtendsProcessQuery):
pass
class EProcessView(AuidAssumptionExtendsProcessView):
pass
# We can call all of the standard process query methods
proc = (
EProcessQuery()
.with_assumed_auid()
.with_process_id()
.query_first(DgraphClient(DgraphClientStub("localhost:9080")))
)
if proc:
parent = proc.get_parent()
if parent:
parent.get_process_id()
assumed_auid = parent.get_assumed_auid()