-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathndb_utils.py
97 lines (85 loc) · 2.75 KB
/
ndb_utils.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
"""
Utils for ndb.py
"""
from cdd.shared.ast_utils import get_value
from cdd_gae.ndb2sqlalchemy_utils import ndb_to_sqlalchemy_keyword
ndb_type_map = {
"BlobKeyProperty": "str",
"BlobProperty": "str",
"BooleanProperty": "bool",
"ComputedProperty": "str",
"DateProperty": "str",
"DateTimeProperty": "str",
"FloatProperty": "float",
"GenericProperty": "str",
"GeoPtProperty": "str",
"IndexProperty": "str",
"IntegerProperty": "int",
"JsonProperty": "str",
"KeyProperty": "str",
"LocalStructuredProperty": "str",
"PickleProperty": "str",
"Property": "str",
"StringProperty": "str",
"StructuredProperty": "str",
"TextProperty": "str",
"TimeProperty": "str",
"UserProperty": "str",
}
ndb2sqlalchemy_types = {
"BlobKeyProperty": "LargeBinary",
"BlobProperty": "LargeBinary",
"BooleanProperty": "Boolean",
"ComputedProperty": "str",
"DateProperty": "Date",
"DateTimeProperty": "DateTime",
"FloatProperty": "Float",
"GenericProperty": "str",
"GeoPtProperty": "str",
"IndexProperty": "str",
"IntegerProperty": "Integer",
"JsonProperty": "JSON",
"KeyProperty": "str",
"LocalStructuredProperty": "str",
"PickleProperty": "PickleType",
"Property": "str",
"StringProperty": "String",
"StructuredProperty": "str",
"TextProperty": "Text",
"TimeProperty": "Time",
"UserProperty": "UserDefinedType",
}
def ndb_parse_assign(assign):
"""
Parse out the `ast.Assign` into an IR param. This always makes an SQL column representation.
:param assign: NDB assignment, like `prop = ndb.BooleanProperty()`
:type assign: ```ast.Assign```
:return: a dictionary of form
{ 'typ': str, 'x_typ': {'sql': {'type': str, 'constraints': Dict}},
'doc': Optional[str], 'default': Any }
:rtype: ```dict```
"""
ir = {
"doc": "",
"typ": ndb_type_map[assign.value.func.attr],
"x_typ": {
"sql": {
"constraints": dict(
map(ndb_to_sqlalchemy_keyword, assign.value.keywords)
),
# "type": assign.value.func.attr
}
if assign.value.keywords
else {}
},
}
if "default" in ir["x_typ"].get("sql", {}).get("constraints", ()):
ir["default"] = get_value(ir["x_typ"]["sql"]["constraints"].pop("default"))
internal_type = ".".join((assign.value.func.value.id, assign.value.func.attr))
ir["x_typ"]["sql"]["type"] = ndb2sqlalchemy_types[assign.value.func.attr]
if internal_type not in frozenset(
("ndb.StringProperty", "ndb.IntegerProperty", "ndb.FloatProperty")
):
ir["x_typ"]["internal_type"] = internal_type
return ir
__all__ = ["ndb_parse_assign"]