-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathCassandraGraphVersionFactory.java
More file actions
140 lines (119 loc) · 5.33 KB
/
CassandraGraphVersionFactory.java
File metadata and controls
140 lines (119 loc) · 5.33 KB
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
/**
* 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.
*/
package dao.models.cassandra;
import dao.models.GraphVersionFactory;
import dao.models.RichVersionFactory;
import db.CassandraClient;
import db.CassandraResults;
import db.DbClient;
import db.DbDataContainer;
import exceptions.GroundException;
import models.models.GraphVersion;
import models.models.RichVersion;
import models.models.Tag;
import models.versions.GroundType;
import util.IdGenerator;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class CassandraGraphVersionFactory
extends CassandraRichVersionFactory<GraphVersion>
implements GraphVersionFactory {
private static final Logger LOGGER = LoggerFactory.getLogger(CassandraGraphVersionFactory.class);
private final CassandraClient dbClient;
private final CassandraGraphFactory graphFactory;
private final IdGenerator idGenerator;
/**
* Constructor for the Cassandra graph version factory.
*
* @param graphFactory the singleton CassandraGraphFactory
* @param dbClient the CassandraClient
* @param idGenerator a unique ID generator
*/
public CassandraGraphVersionFactory(CassandraClient dbClient,
CassandraGraphFactory graphFactory,
CassandraStructureVersionFactory structureVersionFactory,
CassandraTagFactory tagFactory,
IdGenerator idGenerator) {
super(dbClient, structureVersionFactory, tagFactory);
this.dbClient = dbClient;
this.graphFactory = graphFactory;
this.idGenerator = idGenerator;
}
/**
* Create and persist a graph version.
*
* @param tags tags associated with this graph version
* @param structureVersionId the id of the StructureVersion associated with this version
* @param reference an optional external reference
* @param referenceParameters access parameters for the reference
* @param graphId the id of the graph containing this version
* @param edgeVersionIds the list of edge versions in this graph version
* @param parentIds the ids of the parent(s) of this version
* @return the created graph version
* @throws GroundException an error while creating or persisting the graph
*/
@Override
public GraphVersion create(Map<String, Tag> tags,
long structureVersionId,
String reference,
Map<String, String> referenceParameters,
long graphId,
List<Long> edgeVersionIds,
List<Long> parentIds) throws GroundException {
long id = this.idGenerator.generateVersionId();
tags = RichVersionFactory.addIdToTags(id, tags);
super.insertIntoDatabase(id, tags, structureVersionId, reference, referenceParameters);
List<DbDataContainer> insertions = new ArrayList<>();
insertions.add(new DbDataContainer("id", GroundType.LONG, id));
insertions.add(new DbDataContainer("graph_id", GroundType.LONG, graphId));
this.dbClient.insert("graph_version", insertions);
List<DbDataContainer> predicate = new ArrayList<>();
predicate.add(new DbDataContainer("id", GroundType.LONG, id));
for (long edgeVersionId : edgeVersionIds) {
Set<Long> edge = new HashSet<>();
edge.add(edgeVersionId);
this.dbClient.addToSet("graph_version", "edge_version_set", edge, predicate);
}
this.graphFactory.update(graphId, id, parentIds);
LOGGER.info("Created graph version " + id + " in graph " + graphId + ".");
return new GraphVersion(id, tags, structureVersionId, reference, referenceParameters,
graphId, edgeVersionIds);
}
/**
* Retrieve a graph version from the database.
*
* @param id the id of the graph version to retrieve
* @return the retrieved graph version
* @throws GroundException either the graph version doesn't exist or couldn't be retrieved
*/
@Override
public GraphVersion retrieveFromDatabase(long id) throws GroundException {
final RichVersion version = super.retrieveRichVersionData(id);
List<DbDataContainer> predicates = new ArrayList<>();
predicates.add(new DbDataContainer("id", GroundType.LONG, id));
CassandraResults resultSet = this.dbClient.equalitySelect("graph_version",
DbClient.SELECT_STAR,
predicates);
long graphId = resultSet.getLong("graph_id");
List<Long> edgeVersionIds = new ArrayList<>(resultSet.getSet("edge_version_set", Long.class));
LOGGER.info("Retrieved graph version " + id + " in graph " + graphId + ".");
return new GraphVersion(id, version.getTags(), version.getStructureVersionId(),
version.getReference(), version.getParameters(), graphId, edgeVersionIds);
}
}