0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/site_scons/site_tools/dagger/graph_consts.py

25 lines
367 B
Python

"""Constants for use in graph.py and dagger.py"""
"""Relationship edge types"""
LIB_LIB = 1
LIB_FIL = 2
FIL_LIB = 3
FIL_FIL = 4
FIL_SYM = 5
LIB_SYM = 6
IMP_LIB_LIB = 7
EXE_LIB = 8
"""NodeTypes"""
NODE_LIB = 1
NODE_SYM = 2
NODE_FILE = 3
NODE_EXE = 4
RELATIONSHIP_TYPES = list(range(1, 9))
NODE_TYPES = list(range(1, 5))
"""Error/query codes"""
NODE_NOT_FOUND = 1