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
|
#!/usr/bin/python
import os
import json
import re
import logging
import traceback
import urllib2
import neo4j_util as dbu
log = logging.getLogger('rhizi')
class DB_op(object):
"""
tx wrapped DB operation possibly composing multiple DB queries
"""
def __init__(self):
self.s_id = 0 # statement id counter
self.id_to_statement_map = {} # zero based id to statement map
self.tx_id = None
self.tx_commit_url = None # cached from response to tx begin
def begin(self, tx_open_url):
try:
#
# [!] neo4j seems picky about receiving an additional empty statement list
#
data = data = dbu.statement_set_to_REST_form([])
ret = dbu.post_neo4j(tx_open_url, data)
tx_commit_url = ret['commit']
self.parse_tx_id(tx_commit_url)
self.tx_commit_url = tx_commit_url
log.debug('tx-open: id: {0}, commit-url: {1}'.format(self.tx_id, tx_commit_url))
except Exception as e:
raise Exception('failed to open transaction:' + e.message)
def parse_tx_id(self, tx_commit_url):
m = re.search('/(?P<id>\d+)/commit$', tx_commit_url)
id_str = m.group('id')
self.tx_id = int(id_str)
def commit(self):
try:
#
# [!] neo4j seems picky about receiving an additional empty statement list
#
data = dbu.statement_set_to_REST_form([])
ret = dbu.post(self.tx_commit_url, data)
except Exception as e:
raise Exception('failed to commit transaction:' + e.message)
log.debug('tx-commit: id: {0}, commit-url: {1}'.format(self.tx_id, self.tx_commit_url))
def add_statement(self, cypher_query, params={}):
"""
add a DB query language statement
@return: statement id
"""
ret = self.s_id
self.id_to_statement_map[self.s_id] = dbu.statement_to_REST_form(cypher_query, params)
self.s_id = self.s_id + 1
return ret
@property
def statement_set(self):
return self.id_to_statement_map.values()
def on_success(self, data):
pass
def on_error(self):
pass
class DBO_add_node_set(DB_op):
"""
DB op: add node set
@param node_map: type to node list map
"""
def __init__(self, node_map):
super(DBO_add_node_set, self).__init__()
self.node_map = node_map
for type, n_set in self.node_map.items():
q = "create (n:{0} {{prop_dict}}) return id(n)".format(type)
for n in n_set:
#
# any translation between how we accept node data
# and how we store them should go here
#
p = {'prop_dict' : { 'name' : n['name']}}
self.add_statement(q, p)
def on_success(self, data):
# [!] fragile - parse results
# sample input: dict: {u'errors': [], u'results': [{u'data': [{u'row': [20]}], u'columns': [u'id(n)']}]}
id_set = []
for r in data['results']:
columns = r['columns']
for k in r['data']:
nid = k['row'][0]
id_set.append(nid)
log.debug('node-set added: ids: ' + str(id_set))
return id_set
class DBO_load_node_id_set(DB_op):
"""
load node id set, filter by type / properties
"""
def __init__(self, filter_type, filter_prop=None):
super(DBO_load_node_id_set, self).__init__()
# build where clause if necessary
filter_prop_str = ""
if filter_prop:
filter_prop_arr = []
for k, v in filter_prop:
v_str = str(v)
if isinstance(v, str):
# quote string values
v_str = "'{0}'".format(v_str)
filter_prop_arr.append("n.{0} = {1} and ".format(k, v_str))
filter_prop_str = " where " + " and ".join(filter_prop_arr)
q = "match (n:{0}){1} return id(n)".format(filter_type, filter_prop_str)
self.add_statement(q)
def on_success(self, data):
# [!] fragile - parse results
# sample input: dict: {u'errors': [], u'results': [{u'data': [{u'row': [20]}], u'columns': [u'id(n)']}]}
id_set = []
for r in data['results']:
columns = r['columns']
for k in r['data']:
nid = k['row'][0]
id_set.append(nid)
log.debug('loaded node-set: ids: ' + str(id_set))
return id_set
class DB_Controller:
"""
neo4j DB controller
"""
def __init__(self, config):
self.config = config
def exec_op(self, op):
"""
execute operation within a DB transaction
"""
tx_base_url = self.config.db_base_url + '/db/data/transaction'
data = dbu.statement_set_to_REST_form(op.statement_set)
try:
op.begin(tx_base_url)
tx_url = "{0}/{1}".format(tx_base_url, op.tx_id)
ret_tx = dbu.post_neo4j(tx_url, data)
op.commit()
return op.on_success(ret_tx)
except Exception as e:
log.error(e.message)
log.error(traceback.print_exc())
op.on_error()
def create_db_op(self, f_work, f_cont):
ret = DB_op(f_work, f_cont)
return ret
def exec_cypher_query(self, q):
"""
@deprecated: use transaction based api
"""
self.post_neo4j('/db/data/cypher', {"query" : q})
|