Pankaj Berde | da80957 | 2013-02-22 15:31:20 -0800 | [diff] [blame] | 1 | package net.onrc.onos.util; |
| 2 | |
| 3 | import java.util.Set; |
| 4 | |
Pankaj Berde | 2239f0d | 2013-04-04 09:42:43 -0700 | [diff] [blame] | 5 | import org.slf4j.Logger; |
| 6 | import org.slf4j.LoggerFactory; |
| 7 | |
Pankaj Berde | da80957 | 2013-02-22 15:31:20 -0800 | [diff] [blame] | 8 | import com.thinkaurelius.titan.core.TitanFactory; |
| 9 | import com.thinkaurelius.titan.core.TitanGraph; |
Pankaj Berde | a709557 | 2013-04-05 14:42:17 -0700 | [diff] [blame] | 10 | import com.tinkerpop.blueprints.TransactionalGraph; |
Pankaj Berde | 86a0d41 | 2013-04-05 15:06:26 -0700 | [diff] [blame] | 11 | import com.tinkerpop.blueprints.Vertex; |
Pankaj Berde | 2239f0d | 2013-04-04 09:42:43 -0700 | [diff] [blame] | 12 | import com.tinkerpop.blueprints.util.wrappers.event.EventTransactionalGraph; |
Pankaj Berde | da80957 | 2013-02-22 15:31:20 -0800 | [diff] [blame] | 13 | import com.tinkerpop.frames.FramedGraph; |
| 14 | |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 15 | public class GraphDBConnection implements IDBConnection { |
Pankaj Berde | da80957 | 2013-02-22 15:31:20 -0800 | [diff] [blame] | 16 | public enum Transaction { |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 17 | COMMIT, ROLLBACK |
Pankaj Berde | da80957 | 2013-02-22 15:31:20 -0800 | [diff] [blame] | 18 | } |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 19 | |
Pankaj Berde | 2239f0d | 2013-04-04 09:42:43 -0700 | [diff] [blame] | 20 | public enum GenerateEvent { |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 21 | TRUE, FALSE |
Pankaj Berde | 2239f0d | 2013-04-04 09:42:43 -0700 | [diff] [blame] | 22 | } |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 23 | |
Pankaj Berde | a709557 | 2013-04-05 14:42:17 -0700 | [diff] [blame] | 24 | class TransactionHandle { |
| 25 | protected TransactionalGraph tr; |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 26 | |
Pankaj Berde | a709557 | 2013-04-05 14:42:17 -0700 | [diff] [blame] | 27 | public void create() { |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 28 | tr = graph.newTransaction(); |
Pankaj Berde | a709557 | 2013-04-05 14:42:17 -0700 | [diff] [blame] | 29 | } |
| 30 | } |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 31 | |
| 32 | protected static Logger log = LoggerFactory |
| 33 | .getLogger(GraphDBConnection.class); |
| 34 | private static GraphDBConnection singleton = new GraphDBConnection(); |
Pankaj Berde | da80957 | 2013-02-22 15:31:20 -0800 | [diff] [blame] | 35 | private static TitanGraph graph; |
Pankaj Berde | 2239f0d | 2013-04-04 09:42:43 -0700 | [diff] [blame] | 36 | private static EventTransactionalGraph<TitanGraph> eg; |
Pankaj Berde | 2239f0d | 2013-04-04 09:42:43 -0700 | [diff] [blame] | 37 | private static String configFile; |
| 38 | |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 39 | /* |
| 40 | * A private Constructor prevents any other class from instantiating. |
| 41 | */ |
| 42 | private GraphDBConnection() { |
| 43 | } |
Pankaj Berde | 2239f0d | 2013-04-04 09:42:43 -0700 | [diff] [blame] | 44 | |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 45 | /* Static 'instance' method */ |
Toshio Koide | a7cff3d | 2013-06-19 11:28:24 -0700 | [diff] [blame] | 46 | /** |
| 47 | * Get the instance of GraphDBConnection class. |
| 48 | * @param conf the path to the database configuration file. |
| 49 | * @return GraphDBConnection instance. |
| 50 | */ |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 51 | public static synchronized GraphDBConnection getInstance(final String conf) { |
| 52 | if (GraphDBConnection.configFile == null |
| 53 | || GraphDBConnection.configFile.isEmpty()) { |
| 54 | GraphDBConnection.configFile = conf; |
| 55 | log.debug("GraphDBConnection::Setting Config File {}", |
| 56 | GraphDBConnection.configFile); |
| 57 | } |
| 58 | if (!GraphDBConnection.configFile.isEmpty() |
| 59 | && (graph == null || graph.isOpen() == Boolean.FALSE)) { |
| 60 | graph = TitanFactory.open(GraphDBConnection.configFile); |
| 61 | // FIXME: Creation on Indexes should be done only once |
| 62 | Set<String> s = graph.getIndexedKeys(Vertex.class); |
| 63 | if (!s.contains("dpid")) { |
| 64 | graph.createKeyIndex("dpid", Vertex.class); |
| 65 | } |
| 66 | if (!s.contains("type")) { |
| 67 | graph.createKeyIndex("type", Vertex.class); |
| 68 | } |
| 69 | if (!s.contains("dl_address")) { |
| 70 | graph.createKeyIndex("dl_address", Vertex.class); |
| 71 | } |
| 72 | if (!s.contains("flow_id")) { |
| 73 | graph.createKeyIndex("flow_id", Vertex.class); |
| 74 | } |
| 75 | if (!s.contains("flow_entry_id")) { |
| 76 | graph.createKeyIndex("flow_entry_id", Vertex.class); |
| 77 | } |
| 78 | if (!s.contains("switch_state")) { |
| 79 | graph.createKeyIndex("switch_state", Vertex.class); |
| 80 | } |
| 81 | graph.commit(); |
| 82 | eg = new EventTransactionalGraph<TitanGraph>(graph); |
| 83 | } |
| 84 | return singleton; |
| 85 | } |
| 86 | |
Toshio Koide | a7cff3d | 2013-06-19 11:28:24 -0700 | [diff] [blame] | 87 | /** |
| 88 | * Get a FramedGraph instance of the graph. |
| 89 | */ |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 90 | public FramedGraph<TitanGraph> getFramedGraph() { |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 91 | if (isValid()) { |
| 92 | FramedGraph<TitanGraph> fg = new FramedGraph<TitanGraph>(graph); |
| 93 | return fg; |
| 94 | } else { |
| 95 | log.error("new FramedGraph failed"); |
| 96 | return null; |
| 97 | } |
| 98 | } |
| 99 | |
Toshio Koide | a7cff3d | 2013-06-19 11:28:24 -0700 | [diff] [blame] | 100 | /** |
| 101 | * Get EventTransactionalGraph of the titan graph. |
| 102 | * @return EventTransactionalGraph of the titan graph |
| 103 | */ |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 104 | protected EventTransactionalGraph<TitanGraph> getEventGraph() { |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 105 | if (isValid()) { |
| 106 | return eg; |
| 107 | } else { |
| 108 | return null; |
| 109 | } |
| 110 | } |
| 111 | |
Toshio Koide | a7cff3d | 2013-06-19 11:28:24 -0700 | [diff] [blame] | 112 | /** |
| 113 | * Add LocalGraphChangedLister for the graph. |
| 114 | */ |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 115 | public void addEventListener(final LocalGraphChangedListener listener) { |
| 116 | EventTransactionalGraph<TitanGraph> eg = this.getEventGraph(); |
| 117 | eg.addListener(listener); |
| 118 | log.debug("Registered listener {}", listener.getClass()); |
| 119 | } |
| 120 | |
Toshio Koide | a7cff3d | 2013-06-19 11:28:24 -0700 | [diff] [blame] | 121 | /** |
| 122 | * Return whether this connection is valid. |
| 123 | */ |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 124 | public Boolean isValid() { |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 125 | return (graph != null || graph.isOpen()); |
| 126 | } |
| 127 | |
Toshio Koide | a7cff3d | 2013-06-19 11:28:24 -0700 | [diff] [blame] | 128 | /** |
| 129 | * Commit changes for the graph operations. |
| 130 | */ |
Toshio Koide | dc94944 | 2013-06-18 10:35:51 -0700 | [diff] [blame] | 131 | public void commit() { |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 132 | try { |
Toshio Koide | dc94944 | 2013-06-18 10:35:51 -0700 | [diff] [blame] | 133 | graph.commit(); |
| 134 | } |
| 135 | catch (Exception e) { |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 136 | log.error("{}", e.toString()); |
| 137 | } |
| 138 | } |
| 139 | |
Toshio Koide | a7cff3d | 2013-06-19 11:28:24 -0700 | [diff] [blame] | 140 | /** |
| 141 | * Rollback changes for the graph operations. |
| 142 | */ |
Toshio Koide | dc94944 | 2013-06-18 10:35:51 -0700 | [diff] [blame] | 143 | public void rollback() { |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 144 | try { |
Toshio Koide | dc94944 | 2013-06-18 10:35:51 -0700 | [diff] [blame] | 145 | graph.rollback(); |
| 146 | } |
| 147 | catch (Exception e) { |
| 148 | log.error("{}", e.toString()); |
Pankaj Berde | 2239f0d | 2013-04-04 09:42:43 -0700 | [diff] [blame] | 149 | } |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 150 | } |
| 151 | |
Toshio Koide | a7cff3d | 2013-06-19 11:28:24 -0700 | [diff] [blame] | 152 | /** |
| 153 | * Close this database connection. |
| 154 | */ |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 155 | public void close() { |
Toshio Koide | dc94944 | 2013-06-18 10:35:51 -0700 | [diff] [blame] | 156 | commit(); |
Toshio Koide | eb88ff6 | 2013-06-12 16:46:40 -0700 | [diff] [blame] | 157 | } |
Pankaj Berde | da80957 | 2013-02-22 15:31:20 -0800 | [diff] [blame] | 158 | } |