cpg2py 1.0.5__py3-none-any.whl → 1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,407 @@
1
+ Metadata-Version: 2.1
2
+ Name: cpg2py
3
+ Version: 1.1.0
4
+ Summary: A graph-based data structure designed for querying CSV files in Joern format in Python
5
+ Author-email: samhsu-dev <yxu166@jhu.edu>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2025 Yichao Xu
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Project-URL: Homepage, https://github.com/YichaoXu/cpg2py
29
+ Project-URL: Repository, https://github.com/YichaoXu/cpg2py
30
+ Project-URL: Documentation, https://github.com/YichaoXu/cpg2py
31
+ Keywords: Joern,CPG,Graph,CSV
32
+ Classifier: Development Status :: 4 - Beta
33
+ Classifier: Intended Audience :: Developers
34
+ Classifier: License :: OSI Approved :: MIT License
35
+ Classifier: Programming Language :: Python :: 3
36
+ Classifier: Programming Language :: Python :: 3.8
37
+ Classifier: Programming Language :: Python :: 3.9
38
+ Classifier: Programming Language :: Python :: 3.10
39
+ Classifier: Programming Language :: Python :: 3.11
40
+ Classifier: Programming Language :: Python :: 3.12
41
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
42
+ Requires-Python: >=3.8
43
+ Description-Content-Type: text/markdown
44
+ License-File: LICENSE
45
+ Provides-Extra: dev
46
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
47
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
48
+ Provides-Extra: test
49
+
50
+ # **cpg2py: Graph-Based Query Engine for Joern CSV Files**
51
+
52
+ `cpg2py` is a Python library that provides a lightweight **graph-based query engine** for analyzing **Code Property Graphs (CPG)** extracted from Joern CSV files. The library offers an **abstract base class (ABC) architecture**, allowing users to extend and implement their own custom graph queries.
53
+
54
+ ---
55
+
56
+ ## **🚀 Features**
57
+
58
+ - **MultiDiGraph Representation**: A directed multi-graph with support for multiple edges between nodes.
59
+ - **CSV-Based Graph Construction**: Reads `nodes.csv` and `rels.csv` to construct a graph structure.
60
+ - **Type-Safe Generic Types**: Uses Python generics for type-safe graph operations (similar to Java generics).
61
+ - **Extensible Abstract Base Classes (ABC)**:
62
+ - `AbcGraphQuerier` for implementing **custom graph queries** with generic type support.
63
+ - `AbcNodeQuerier` for interacting with **nodes**.
64
+ - `AbcEdgeQuerier` for interacting with **edges**.
65
+ - **Built-in Query Mechanisms**:
66
+ - **Retrieve all nodes and edges** with type-safe iteration.
67
+ - **Get incoming and outgoing edges** of a node.
68
+ - **Find successors and predecessors** with type preservation.
69
+ - **Traverse AST, Control Flow, and Data Flow Graphs**.
70
+ - **Concrete Implementation**: `CpgGraph`, `CpgNode`, and `CpgEdge` provide ready-to-use implementations.
71
+
72
+ ---
73
+
74
+ ## **📚 Installation**
75
+
76
+ ### Using pip
77
+
78
+ To install the package, use:
79
+
80
+ ```bash
81
+ pip install git+https://github.com/samhsu-dev/cpg2py.git
82
+ ```
83
+
84
+ ### Using uv (Recommended)
85
+
86
+ This project uses [uv](https://github.com/astral-sh/uv) for fast and reliable package management.
87
+
88
+ **Install uv:**
89
+ ```bash
90
+ curl -LsSf https://astral.sh/uv/install.sh | sh
91
+ ```
92
+
93
+ **Clone and install:**
94
+ ```bash
95
+ git clone https://github.com/samhsu-dev/cpg2py.git
96
+ cd cpg2py
97
+ uv sync --dev # Install with dev dependencies
98
+ ```
99
+
100
+ **For development:**
101
+ ```bash
102
+ uv sync --dev
103
+ uv run pytest tests/ # Run tests
104
+ ```
105
+
106
+ Or clone the pip repository:
107
+
108
+ ```bash
109
+ pip install cpg2py
110
+ ```
111
+
112
+ ---
113
+
114
+ ## **📂 File Structure**
115
+
116
+ - **`nodes.csv`** (Example):
117
+ ```csv
118
+ id:int labels:label type flags:string_array lineno:int code childnum:int funcid:int classname namespace endlineno:int name doccomment
119
+ 0 Filesystem Directory "input"
120
+ 1 Filesystem File "example.php"
121
+ 2 AST AST_TOPLEVEL TOPLEVEL_FILE 1 "" 25 "/input/example.php"
122
+
123
+ ````
124
+ - **`rels.csv`** (Example):
125
+ ```csv
126
+ start end type
127
+ 2 3 ENTRY
128
+ 2 4 EXIT
129
+ 6 7 ENTRY
130
+ 6 9 PARENT_OF
131
+ ````
132
+
133
+ ---
134
+
135
+ ## **🎯 Type Safety with Generics**
136
+
137
+ `cpg2py` uses Python's generic types (similar to Java generics) to provide type-safe operations:
138
+
139
+ ```python
140
+ from typing import Iterable
141
+ from cpg2py import cpg_graph, CpgGraph, CpgNode, CpgEdge
142
+
143
+ # Type checker knows graph is CpgGraph[CpgNode, CpgEdge]
144
+ graph: CpgGraph = cpg_graph("nodes.csv", "rels.csv")
145
+
146
+ # Type checker knows node is CpgNode (not just AbcNodeQuerier)
147
+ node: CpgNode = graph.node("5")
148
+
149
+ # Type checker knows successors are Iterable[CpgNode]
150
+ successors: Iterable[CpgNode] = graph.succ(node)
151
+ for succ in successors:
152
+ succ.code # Type-safe: IDE knows succ is CpgNode
153
+ ```
154
+
155
+ This ensures that:
156
+ - Return types are preserved throughout graph operations
157
+ - IDE autocomplete works correctly
158
+ - Type checkers (mypy, pyright) can verify type correctness
159
+
160
+ For more details, see [Generics Documentation](docs/GENERICS.md).
161
+
162
+ ---
163
+
164
+ ## **📚 Usage**
165
+
166
+ ### **1️⃣ Load Graph from Joern CSVs**
167
+
168
+ ```python
169
+ from cpg2py import cpg_graph
170
+
171
+ # Load graph from CSV files
172
+ graph = cpg_graph("nodes.csv", "rels.csv")
173
+ ```
174
+
175
+ The `cpg_graph` function returns a `CpgGraph` instance, which is the concrete implementation of the graph querier.
176
+
177
+ ---
178
+
179
+ ### **2️⃣ Query Nodes & Edges**
180
+
181
+ ```python
182
+ from cpg2py import CpgGraph, CpgNode, CpgEdge
183
+
184
+ # Get a specific node (returns CpgNode)
185
+ node: CpgNode = graph.node("2")
186
+ print(node.name, node.type) # Example output: "/tmp/example.php" AST_TOPLEVEL
187
+
188
+ # Get a specific edge (returns CpgEdge)
189
+ edge: CpgEdge = graph.edge("2", "3", "ENTRY")
190
+ print(edge.type) # Output: ENTRY
191
+ ```
192
+
193
+ ---
194
+
195
+ ### **3️⃣ Get Node Connections**
196
+
197
+ ```python
198
+ # Get all outgoing edges from a node
199
+ outgoing_edges = graph.succ(node)
200
+ for out_node in outgoing_edges:
201
+ print(out_node.id, out_node.name) # out_node is CpgNode
202
+
203
+ # Get all incoming edges to a node
204
+ incoming_edges = graph.prev(node)
205
+ for in_node in incoming_edges:
206
+ print(in_node.id, in_node.name) # in_node is CpgNode
207
+ ```
208
+
209
+ ---
210
+
211
+ ### **4️⃣ AST and Flow Queries**
212
+
213
+ ```python
214
+ # Get top-level file node for a given node
215
+ top_file: CpgNode = graph.topfile_node("5")
216
+ print(top_file.name) # Output: "example.php"
217
+
218
+ # Get child nodes in the AST hierarchy
219
+ children = graph.children(node)
220
+ print([child.id for child in children]) # children are CpgNode instances
221
+
222
+ # Get data flow successors
223
+ flow_successors = graph.flow_to(node)
224
+ print([succ.id for succ in flow_successors]) # successors are CpgNode instances
225
+ ```
226
+
227
+ ---
228
+
229
+ ## **🛠 Abstract Base Classes (ABC)**
230
+
231
+ The following abstract base classes (`ABC`) provide interfaces for extending **node**, **edge**, and **graph** querying behavior. All ABCs are imported directly from the main `cpg2py` package.
232
+
233
+ ---
234
+
235
+ ### **🔹 AbcNodeQuerier (Abstract Node Interface)**
236
+
237
+ This class defines how nodes interact with the graph storage.
238
+
239
+ ```python
240
+ from cpg2py import AbcNodeQuerier, Storage
241
+
242
+ class MyNodeQuerier(AbcNodeQuerier):
243
+ def __init__(self, graph: Storage, nid: str):
244
+ super().__init__(graph, nid)
245
+
246
+ @property
247
+ def name(self):
248
+ return self.get_property("name")
249
+ ```
250
+
251
+ ---
252
+
253
+ ### **🔹 AbcEdgeQuerier (Abstract Edge Interface)**
254
+
255
+ Defines the querying mechanisms for edges in the graph.
256
+
257
+ ```python
258
+ from cpg2py import AbcEdgeQuerier, Storage
259
+
260
+ class MyEdgeQuerier(AbcEdgeQuerier):
261
+ def __init__(self, graph: Storage, f_nid: str, t_nid: str, e_type: str):
262
+ super().__init__(graph, f_nid, t_nid, e_type)
263
+
264
+ @property
265
+ def type(self):
266
+ return self.get_property("type")
267
+ ```
268
+
269
+ ---
270
+
271
+ ### **🔹 AbcGraphQuerier (Abstract Graph Interface)**
272
+
273
+ This class provides an interface for implementing custom graph query mechanisms. It's a generic class that supports type-safe operations.
274
+
275
+ ```python
276
+ from cpg2py import AbcGraphQuerier, Storage
277
+ from typing import Optional
278
+
279
+ class MyGraphQuerier(AbcGraphQuerier[MyNodeQuerier, MyEdgeQuerier]):
280
+ def node(self, nid: str) -> Optional[MyNodeQuerier]:
281
+ return MyNodeQuerier(self.storage, nid)
282
+
283
+ def edge(self, fid: str, tid: str, eid: str) -> Optional[MyEdgeQuerier]:
284
+ return MyEdgeQuerier(self.storage, fid, tid, eid)
285
+ ```
286
+
287
+ **Note**: `AbcGraphQuerier` is a generic class parameterized by node and edge types, ensuring type safety throughout graph operations. The concrete implementation `CpgGraph` is defined as `AbcGraphQuerier[CpgNode, CpgEdge]`.
288
+
289
+ ---
290
+
291
+ ## **🔍 Querying The Graph**
292
+
293
+ After implementing the abstract classes, you can perform advanced queries:
294
+
295
+ ```python
296
+ from cpg2py import Storage
297
+
298
+ storage = Storage()
299
+ graph = MyGraphQuerier(storage)
300
+
301
+ # Query node properties
302
+ node = graph.node("5")
303
+ print(node.name) # Example Output: "main"
304
+
305
+ # Query edge properties
306
+ edge = graph.edge("5", "6", "FLOWS_TO")
307
+ print(edge.type) # Output: "FLOWS_TO"
308
+ ```
309
+
310
+ ### **Using the Built-in CpgGraph**
311
+
312
+ You can also use the built-in `CpgGraph` implementation directly:
313
+
314
+ ```python
315
+ from typing import Iterable
316
+ from cpg2py import cpg_graph, CpgGraph, CpgNode, CpgEdge
317
+
318
+ # Load from CSV files
319
+ graph: CpgGraph = cpg_graph("nodes.csv", "rels.csv")
320
+
321
+ # Type-safe operations
322
+ node: CpgNode = graph.node("5")
323
+ edge: CpgEdge = graph.edge("5", "6", "FLOWS_TO")
324
+
325
+ # Type-safe iteration
326
+ successors: Iterable[CpgNode] = graph.succ(node)
327
+ for succ in successors:
328
+ print(succ.code) # Type checker knows succ is CpgNode
329
+ ```
330
+
331
+ ---
332
+
333
+ ## **🐝 API Reference**
334
+
335
+ For more detailed API documentation, please see our [APIs doc](docs/APIs.md).
336
+
337
+ ### **Main Package Exports**
338
+
339
+ All public APIs are available directly from the `cpg2py` package:
340
+
341
+ ```python
342
+ from cpg2py import (
343
+ # Factory function
344
+ cpg_graph,
345
+
346
+ # Concrete implementations
347
+ CpgGraph,
348
+ CpgNode,
349
+ CpgEdge,
350
+
351
+ # Abstract base classes
352
+ AbcGraphQuerier,
353
+ AbcNodeQuerier,
354
+ AbcEdgeQuerier,
355
+ Storage,
356
+
357
+ # Exceptions
358
+ CPGError,
359
+ NodeNotFoundError,
360
+ EdgeNotFoundError,
361
+ TopFileNotFoundError,
362
+ )
363
+ ```
364
+
365
+ ### **Graph Functions**
366
+
367
+ - `cpg_graph(node_csv: Path, edge_csv: Path, verbose: bool = False) -> CpgGraph`: Loads graph from CSV files and returns a `CpgGraph` instance.
368
+ - `graph.node(nid: str) -> Optional[CpgNode]`: Retrieves a node by ID (returns `CpgNode`).
369
+ - `graph.edge(fid: str, tid: str, eid: str) -> Optional[CpgEdge]`: Retrieves an edge (returns `CpgEdge`).
370
+ - `graph.succ(node: CpgNode) -> Iterable[CpgNode]`: Gets successor nodes.
371
+ - `graph.prev(node: CpgNode) -> Iterable[CpgNode]`: Gets predecessor nodes.
372
+ - `graph.children(node: CpgNode) -> Iterable[CpgNode]`: Gets child nodes via PARENT_OF edges.
373
+ - `graph.parent(node: CpgNode) -> Iterable[CpgNode]`: Gets parent nodes via PARENT_OF edges.
374
+ - `graph.flow_to(node: CpgNode) -> Iterable[CpgNode]`: Gets data flow successors.
375
+ - `graph.flow_from(node: CpgNode) -> Iterable[CpgNode]`: Gets data flow predecessors.
376
+ - `graph.topfile_node(nid: str) -> CpgNode`: Finds the top-level file node.
377
+
378
+ ### **Node Properties (CpgNode)**
379
+
380
+ - `.id`: Node ID (string).
381
+ - `.name`: Node name.
382
+ - `.type`: Node type.
383
+ - `.code`: Source code content.
384
+ - `.label`: Node label.
385
+ - `.line_num`: Source code line number.
386
+ - `.flags`: List of node flags.
387
+ - `.children_num`: Number of children.
388
+ - `.func_id`: Function ID.
389
+ - `.class_name`: Class name.
390
+ - `.namespace`: Namespace.
391
+ - `.end_num`: End line number.
392
+ - `.comment`: Documentation comment.
393
+
394
+ ### **Edge Properties (CpgEdge)**
395
+
396
+ - `.id`: Edge ID tuple `(from_node, to_node, edge_type)`.
397
+ - `.start`: Edge start position.
398
+ - `.end`: Edge end position.
399
+ - `.type`: Edge type.
400
+ - `.var`: Variable name (if applicable).
401
+
402
+ ---
403
+
404
+ ## **🌟 License**
405
+
406
+ This project is licensed under the **MIT License**.
407
+
@@ -0,0 +1,17 @@
1
+ cpg2py/__init__.py,sha256=T8Nt4ZLMtCSQjqRINYlYZH9iLiANj3onJqGZk08he4A,2888
2
+ cpg2py/_exceptions.py,sha256=AR2zPeds9fNcCA9iFZGAGluMg3_lgsKHR_4WUmyuD_w,1240
3
+ cpg2py/_logger.py,sha256=HjJAhs4ZAB_IMoBMVRe3KPGS5GRygGy0eNncvIqu8ls,1309
4
+ cpg2py/_abc/__init__.py,sha256=XN7RKxMpnZqvjDAUWxXXLGKY1jrPpKBAxUbq-pydwh4,208
5
+ cpg2py/_abc/edge.py,sha256=CqRz4xmDPplH3lyzRnoWjMj-JgFLFoL8YAJ6XLUsPjA,2571
6
+ cpg2py/_abc/graph.py,sha256=LDF2ylbJYQubUV2LboJlkiQaqWtLW3LsyKBkTJOl4Gs,7795
7
+ cpg2py/_abc/node.py,sha256=s-AQ2oOVtw9wXjBODYtaRKAp8tkPgddMLX2_6eJglcg,1724
8
+ cpg2py/_abc/storage.py,sha256=vUng2nBlhBOJL6YrPTBZaAjkpLdcQLCAW9lOhz7hPxw,6623
9
+ cpg2py/_cpg/__init__.py,sha256=BYNrxYo0G3XoIaUN9llEYkZoCstYJgt88OrJZCkQW7E,126
10
+ cpg2py/_cpg/edge.py,sha256=GcGfwWzQJY0P1GkL8BsQ-vVcsHRlbUp-Le81lPLNt-w,973
11
+ cpg2py/_cpg/graph.py,sha256=Aks2VsDolKdT1NdEz9Vn5ABIWBTPDGvEq7PbrehLVuI,5674
12
+ cpg2py/_cpg/node.py,sha256=hP6jfw9miUyuqksnX9Sr5pz7NYaY4ESigZZ0cmobMcM,1988
13
+ cpg2py-1.1.0.dist-info/LICENSE,sha256=vTjbt7iL1hUilI8E87FoQerEDa9nbpeip26iA6bguHI,1066
14
+ cpg2py-1.1.0.dist-info/METADATA,sha256=VaniBLcK3R1Vp52Iyma3L0NonkN35bH7b41p0H5wJfw,12262
15
+ cpg2py-1.1.0.dist-info/WHEEL,sha256=WnJ8fYhv8N4SYVK2lLYNI6N0kVATA7b0piVUNvqIIJE,91
16
+ cpg2py-1.1.0.dist-info/top_level.txt,sha256=xDY8faKh5Rczvsqb5Jt9Sq-Y7EOImh7jh-m1oVTnH5k,7
17
+ cpg2py-1.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.3.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
cpg2py/abc/edge.py DELETED
@@ -1,39 +0,0 @@
1
- from __future__ import annotations
2
- import abc
3
- from .storage import Storage
4
- from typing import Any, Dict, Optional, Tuple
5
-
6
- class AbcEdgeQuerier(abc.ABC):
7
-
8
- def __init__(self, graph: Storage, f_nid: str, t_nid: str, e_type: int = 0) -> None:
9
- self.__graph: Storage = graph
10
- self.__edge_id: Tuple[str, str, str] = (str(f_nid), str(t_nid), str(e_type))
11
- if not graph.contains_edge(self.__edge_id):
12
- raise Exception('CANNOT FIND THE NODE ID {nid} IN GRAPH')
13
- return None
14
-
15
- @property
16
- def edge_id(self) -> Tuple[str, str, int]:
17
- return self.__edge_id
18
-
19
- @property
20
- def from_nid(self) -> str:
21
- return self.__edge_id[0]
22
-
23
- @property
24
- def to_nid(self) -> str:
25
- return self.__edge_id[1]
26
-
27
- @property
28
- def edge_type(self) -> str:
29
- return self.__edge_id[0]
30
-
31
- @property
32
- def properties(self) -> Optional[Dict[str, Any]]:
33
- return self.__graph.get_edge_props(self.__edge_id)
34
-
35
- def get_property(self, *prop_names: str) -> Optional[Any]:
36
- prop_values = (self.__graph.get_edge_prop(self.__edge_id, p_name) for p_name in prop_names)
37
- return next((value for value in prop_values if value is not None), None)
38
-
39
- pass
cpg2py/abc/graph.py DELETED
@@ -1,98 +0,0 @@
1
-
2
- from __future__ import annotations
3
-
4
- from .edge import AbcEdgeQuerier
5
- from .node import AbcNodeQuerier
6
-
7
- from typing import Callable, Deque, List, Optional, Iterable
8
- from collections import deque
9
- from .storage import Storage
10
- import abc
11
-
12
- class AbcGraphQuerier(abc.ABC):
13
-
14
- __NodeCondition = Callable[[AbcNodeQuerier], bool]
15
- __EdgeCondition = Callable[[AbcEdgeQuerier], bool]
16
- __always_true = lambda _: True
17
-
18
- __NodesResult = Iterable[AbcNodeQuerier]
19
- __EdgesResult = Iterable[AbcEdgeQuerier]
20
-
21
- def __init__(self, target: Storage, maxdepth: int=-1) -> None:
22
- self.__graph: Storage = target
23
- self.__maxdepth: int = maxdepth
24
-
25
- @property
26
- def storage(self) -> Storage:
27
- return self.__graph
28
-
29
- @abc.abstractmethod
30
- def node(self, whose_id_is: str) -> Optional[AbcNodeQuerier]:
31
- raise NotImplementedError
32
-
33
- @abc.abstractmethod
34
- def edge(self, fid, tid, eid) -> Optional[AbcEdgeQuerier]:
35
- raise NotImplementedError
36
-
37
- def nodes(self, who_satisifies: __NodeCondition=__always_true)-> __NodesResult:
38
- for nid in self.__graph.get_nodes():
39
- cur_node = self.node(whose_id_is=nid)
40
- if cur_node and who_satisifies(cur_node): yield cur_node
41
- pass
42
-
43
- def first_node(self, who_satisifies: __NodeCondition=__always_true)-> Optional[AbcNodeQuerier]:
44
- return next(self.nodes(who_satisifies), None)
45
-
46
- def edges(self, who_satisifies: __EdgeCondition = __always_true) -> __EdgesResult:
47
- for from_id, to_id, edge_id in self.__graph.get_edges():
48
- cur_edge = self.edge(from_id, to_id, edge_id)
49
- if cur_edge and who_satisifies(cur_edge): yield cur_edge
50
- pass
51
-
52
- def succ(self, of: AbcNodeQuerier, who_satisifies: __EdgeCondition = __always_true) -> __NodesResult:
53
- for src, dst, type in self.__graph.out_edges(of.id):
54
- if not who_satisifies(self.edge(src, dst, type)): continue
55
- yield self.node(whose_id_is=dst)
56
- pass
57
-
58
- def prev(self, of: AbcNodeQuerier, who_satisifies: __EdgeCondition = __always_true) -> __NodesResult:
59
- for src, dst, type in self.__graph.in_edges(of.id):
60
- if not who_satisifies(self.edge(src, dst, type)): continue
61
- yield self.node(whose_id_is=src)
62
- pass
63
-
64
- def __bfs_search(self, root: AbcNodeQuerier, condition: __EdgeCondition, reverse: bool) -> __NodesResult:
65
- '''
66
- return the nodes from (any edge relation) src node by the bfs order (src node will not included)
67
- '''
68
- if root is None: return
69
- visited_nids: List[str] = list()
70
- nodes_queue: Deque[AbcNodeQuerier] = deque([root, None])
71
- depth = self.__maxdepth
72
- while depth != 0 and len(nodes_queue) > 1:
73
- cur_node = nodes_queue.popleft()
74
- if cur_node == None:
75
- nodes_queue.append(None)
76
- depth -= 1
77
- elif cur_node.id not in visited_nids:
78
- visited_nids.append(cur_node.id)
79
- if not reverse: n_nodes = self.succ(cur_node, condition)
80
- else: n_nodes = self.prev(cur_node, condition)
81
- nodes_queue.extend(n_nodes)
82
- if root.id != cur_node.id: yield cur_node
83
- pass
84
-
85
- def descendants(self, src: AbcNodeQuerier, condition: __EdgeCondition = __always_true) -> __NodesResult:
86
- '''
87
- return the result of descendants from (any edge relation) src node by the bfs order (src node will not included)
88
- '''
89
- return self.__bfs_search(src, condition, reverse=False)
90
-
91
- def ancestors(self, src: AbcNodeQuerier, condition: __EdgeCondition = __always_true) -> __NodesResult:
92
- '''
93
- return the result of ancestors from (any edge relation) src node by the bfs order (src node will not included)
94
- '''
95
- return self.__bfs_search(src, condition, reverse=True)
96
-
97
- pass
98
-
cpg2py/abc/node.py DELETED
@@ -1,26 +0,0 @@
1
- from typing import Any, Dict, Optional
2
- from .storage import Storage
3
- import abc
4
-
5
- class AbcNodeQuerier(abc.ABC):
6
-
7
- def __init__(self, graph: Storage, nid: str) -> None:
8
- self.__nid: str = str(nid)
9
- self.__graph: Storage = graph
10
- if not graph.contains_node(self.__nid):
11
- raise Exception(f'CANNOT FIND THE NODE ID {nid} IN GRAPH')
12
- return None
13
-
14
- @property
15
- def node_id(self) -> str:
16
- return self.__nid
17
-
18
- @property
19
- def properties(self) -> Optional[Dict[str, Any]]:
20
- return self.__graph.get_node_props(self.__nid)
21
-
22
- def get_property(self, *prop_names: str) -> Optional[Any]:
23
- prop_values = (self.__graph.get_node_prop(self.__nid, p_name) for p_name in prop_names)
24
- return next((value for value in prop_values if value is not None), None)
25
-
26
- pass