Spaces:
Running
Running
File size: 12,000 Bytes
2a0bc63 |
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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 |
# Copyright DataStax, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import json
from warnings import warn
from cassandra import ConsistencyLevel
from cassandra.query import Statement, SimpleStatement
from cassandra.datastax.graph.types import Vertex, Edge, Path, VertexProperty
from cassandra.datastax.graph.graphson import GraphSON2Reader, GraphSON3Reader
__all__ = [
'GraphProtocol', 'GraphOptions', 'GraphStatement', 'SimpleGraphStatement',
'single_object_row_factory', 'graph_result_row_factory', 'graph_object_row_factory',
'graph_graphson2_row_factory', 'Result', 'graph_graphson3_row_factory'
]
# (attr, description, server option)
_graph_options = (
('graph_name', 'name of the targeted graph.', 'graph-name'),
('graph_source', 'choose the graph traversal source, configured on the server side.', 'graph-source'),
('graph_language', 'the language used in the queries (default "gremlin-groovy")', 'graph-language'),
('graph_protocol', 'the graph protocol that the server should use for query results (default "graphson-1-0")', 'graph-results'),
('graph_read_consistency_level', '''read `cassandra.ConsistencyLevel <http://docs.datastax.com/en/developer/python-driver/latest/api/cassandra/#cassandra.ConsistencyLevel>`_ for graph queries (if distinct from session default).
Setting this overrides the native `Statement.consistency_level <http://docs.datastax.com/en/developer/python-driver/latest/api/cassandra/query/#cassandra.query.Statement.consistency_level>`_ for read operations from Cassandra persistence''', 'graph-read-consistency'),
('graph_write_consistency_level', '''write `cassandra.ConsistencyLevel <http://docs.datastax.com/en/developer/python-driver/latest/api/cassandra/#cassandra.ConsistencyLevel>`_ for graph queries (if distinct from session default).
Setting this overrides the native `Statement.consistency_level <http://docs.datastax.com/en/developer/python-driver/latest/api/cassandra/query/#cassandra.query.Statement.consistency_level>`_ for write operations to Cassandra persistence.''', 'graph-write-consistency')
)
_graph_option_names = tuple(option[0] for option in _graph_options)
# this is defined by the execution profile attribute, not in graph options
_request_timeout_key = 'request-timeout'
class GraphProtocol(object):
GRAPHSON_1_0 = b'graphson-1.0'
"""
GraphSON1
"""
GRAPHSON_2_0 = b'graphson-2.0'
"""
GraphSON2
"""
GRAPHSON_3_0 = b'graphson-3.0'
"""
GraphSON3
"""
class GraphOptions(object):
"""
Options for DSE Graph Query handler.
"""
# See _graph_options map above for notes on valid options
DEFAULT_GRAPH_PROTOCOL = GraphProtocol.GRAPHSON_1_0
DEFAULT_GRAPH_LANGUAGE = b'gremlin-groovy'
def __init__(self, **kwargs):
self._graph_options = {}
kwargs.setdefault('graph_source', 'g')
kwargs.setdefault('graph_language', GraphOptions.DEFAULT_GRAPH_LANGUAGE)
for attr, value in kwargs.items():
if attr not in _graph_option_names:
warn("Unknown keyword argument received for GraphOptions: {0}".format(attr))
setattr(self, attr, value)
def copy(self):
new_options = GraphOptions()
new_options._graph_options = self._graph_options.copy()
return new_options
def update(self, options):
self._graph_options.update(options._graph_options)
def get_options_map(self, other_options=None):
"""
Returns a map for these options updated with other options,
and mapped to graph payload types.
"""
options = self._graph_options.copy()
if other_options:
options.update(other_options._graph_options)
# cls are special-cased so they can be enums in the API, and names in the protocol
for cl in ('graph-write-consistency', 'graph-read-consistency'):
cl_enum = options.get(cl)
if cl_enum is not None:
options[cl] = ConsistencyLevel.value_to_name[cl_enum].encode()
return options
def set_source_default(self):
"""
Sets ``graph_source`` to the server-defined default traversal source ('default')
"""
self.graph_source = 'default'
def set_source_analytics(self):
"""
Sets ``graph_source`` to the server-defined analytic traversal source ('a')
"""
self.graph_source = 'a'
def set_source_graph(self):
"""
Sets ``graph_source`` to the server-defined graph traversal source ('g')
"""
self.graph_source = 'g'
def set_graph_protocol(self, protocol):
"""
Sets ``graph_protocol`` as server graph results format (See :class:`cassandra.datastax.graph.GraphProtocol`)
"""
self.graph_protocol = protocol
@property
def is_default_source(self):
return self.graph_source in (b'default', None)
@property
def is_analytics_source(self):
"""
True if ``graph_source`` is set to the server-defined analytics traversal source ('a')
"""
return self.graph_source == b'a'
@property
def is_graph_source(self):
"""
True if ``graph_source`` is set to the server-defined graph traversal source ('g')
"""
return self.graph_source == b'g'
for opt in _graph_options:
def get(self, key=opt[2]):
return self._graph_options.get(key)
def set(self, value, key=opt[2]):
if value is not None:
# normalize text here so it doesn't have to be done every time we get options map
if isinstance(value, str):
value = value.encode()
self._graph_options[key] = value
else:
self._graph_options.pop(key, None)
def delete(self, key=opt[2]):
self._graph_options.pop(key, None)
setattr(GraphOptions, opt[0], property(get, set, delete, opt[1]))
class GraphStatement(Statement):
""" An abstract class representing a graph query."""
@property
def query(self):
raise NotImplementedError()
def __str__(self):
return u'<GraphStatement query="{0}">'.format(self.query)
__repr__ = __str__
class SimpleGraphStatement(GraphStatement, SimpleStatement):
"""
Simple graph statement for :meth:`.Session.execute_graph`.
Takes the same parameters as :class:`.SimpleStatement`.
"""
@property
def query(self):
return self._query_string
def single_object_row_factory(column_names, rows):
"""
returns the JSON string value of graph results
"""
return [row[0] for row in rows]
def graph_result_row_factory(column_names, rows):
"""
Returns a :class:`Result <cassandra.datastax.graph.Result>` object that can load graph results and produce specific types.
The Result JSON is deserialized and unpacked from the top-level 'result' dict.
"""
return [Result(json.loads(row[0])['result']) for row in rows]
def graph_object_row_factory(column_names, rows):
"""
Like :func:`~.graph_result_row_factory`, except known element types (:class:`~.Vertex`, :class:`~.Edge`) are
converted to their simplified objects. Some low-level metadata is shed in this conversion. Unknown result types are
still returned as :class:`Result <cassandra.datastax.graph.Result>`.
"""
return _graph_object_sequence(json.loads(row[0])['result'] for row in rows)
def _graph_object_sequence(objects):
for o in objects:
res = Result(o)
if isinstance(o, dict):
typ = res.value.get('type')
if typ == 'vertex':
res = res.as_vertex()
elif typ == 'edge':
res = res.as_edge()
yield res
class _GraphSONContextRowFactory(object):
graphson_reader_class = None
graphson_reader_kwargs = None
def __init__(self, cluster):
context = {'cluster': cluster}
kwargs = self.graphson_reader_kwargs or {}
self.graphson_reader = self.graphson_reader_class(context, **kwargs)
def __call__(self, column_names, rows):
return [self.graphson_reader.read(row[0])['result'] for row in rows]
class _GraphSON2RowFactory(_GraphSONContextRowFactory):
"""Row factory to deserialize GraphSON2 results."""
graphson_reader_class = GraphSON2Reader
class _GraphSON3RowFactory(_GraphSONContextRowFactory):
"""Row factory to deserialize GraphSON3 results."""
graphson_reader_class = GraphSON3Reader
graph_graphson2_row_factory = _GraphSON2RowFactory
graph_graphson3_row_factory = _GraphSON3RowFactory
class Result(object):
"""
Represents deserialized graph results.
Property and item getters are provided for convenience.
"""
value = None
"""
Deserialized value from the result
"""
def __init__(self, value):
self.value = value
def __getattr__(self, attr):
if not isinstance(self.value, dict):
raise ValueError("Value cannot be accessed as a dict")
if attr in self.value:
return self.value[attr]
raise AttributeError("Result has no top-level attribute %r" % (attr,))
def __getitem__(self, item):
if isinstance(self.value, dict) and isinstance(item, str):
return self.value[item]
elif isinstance(self.value, list) and isinstance(item, int):
return self.value[item]
else:
raise ValueError("Result cannot be indexed by %r" % (item,))
def __str__(self):
return str(self.value)
def __repr__(self):
return "%s(%r)" % (Result.__name__, self.value)
def __eq__(self, other):
return self.value == other.value
def as_vertex(self):
"""
Return a :class:`Vertex` parsed from this result
Raises TypeError if parsing fails (i.e. the result structure is not valid).
"""
try:
return Vertex(self.id, self.label, self.type, self.value.get('properties', {}))
except (AttributeError, ValueError, TypeError):
raise TypeError("Could not create Vertex from %r" % (self,))
def as_edge(self):
"""
Return a :class:`Edge` parsed from this result
Raises TypeError if parsing fails (i.e. the result structure is not valid).
"""
try:
return Edge(self.id, self.label, self.type, self.value.get('properties', {}),
self.inV, self.inVLabel, self.outV, self.outVLabel)
except (AttributeError, ValueError, TypeError):
raise TypeError("Could not create Edge from %r" % (self,))
def as_path(self):
"""
Return a :class:`Path` parsed from this result
Raises TypeError if parsing fails (i.e. the result structure is not valid).
"""
try:
return Path(self.labels, self.objects)
except (AttributeError, ValueError, TypeError):
raise TypeError("Could not create Path from %r" % (self,))
def as_vertex_property(self):
return VertexProperty(self.value.get('label'), self.value.get('value'), self.value.get('properties', {}))
|