blob: e54fe3cdebeeec18a3187fb43e092e013604cfb0 [file] [log] [blame]
Madan Jampani25461112015-02-17 14:17:29 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Madan Jampani09342702015-02-05 23:32:40 -080017package org.onosproject.store.consistent.impl;
18
Madan Jampani09342702015-02-05 23:32:40 -080019import static com.google.common.base.Preconditions.checkNotNull;
Madan Jampani09342702015-02-05 23:32:40 -080020import java.io.File;
21import java.io.IOException;
Madan Jampani09342702015-02-05 23:32:40 -080022import com.fasterxml.jackson.databind.ObjectMapper;
Madan Jampani09342702015-02-05 23:32:40 -080023
24/**
25 * Allows for reading and writing partitioned database definition as a JSON file.
26 */
27public class DatabaseDefinitionStore {
28
Madan Jampani09342702015-02-05 23:32:40 -080029 private final File definitionfile;
30
31 /**
32 * Creates a reader/writer of the database definition file.
33 *
34 * @param filePath location of the definition file
35 */
36 public DatabaseDefinitionStore(String filePath) {
Madan Jampani0cb00672015-02-27 00:27:22 -080037 definitionfile = new File(checkNotNull(filePath));
Madan Jampani09342702015-02-05 23:32:40 -080038 }
39
40 /**
41 * Creates a reader/writer of the database definition file.
42 *
43 * @param filePath location of the definition file
44 */
45 public DatabaseDefinitionStore(File filePath) {
46 definitionfile = checkNotNull(filePath);
47 }
48
49 /**
Madan Jampani0cb00672015-02-27 00:27:22 -080050 * Returns the database definition.
Madan Jampani09342702015-02-05 23:32:40 -080051 *
Madan Jampani0cb00672015-02-27 00:27:22 -080052 * @return database definition
Madan Jampani09342702015-02-05 23:32:40 -080053 * @throws IOException when I/O exception of some sort has occurred.
54 */
Madan Jampani0cb00672015-02-27 00:27:22 -080055 public DatabaseDefinition read() throws IOException {
56 ObjectMapper mapper = new ObjectMapper();
57 DatabaseDefinition definition = mapper.readValue(definitionfile, DatabaseDefinition.class);
58 return definition;
Madan Jampani09342702015-02-05 23:32:40 -080059 }
60
61 /**
Madan Jampani0cb00672015-02-27 00:27:22 -080062 * Writes the specified database definition to file.
Madan Jampani09342702015-02-05 23:32:40 -080063 *
Madan Jampani0cb00672015-02-27 00:27:22 -080064 * @param definition database definition
Madan Jampani09342702015-02-05 23:32:40 -080065 * @throws IOException when I/O exception of some sort has occurred.
66 */
Madan Jampani0cb00672015-02-27 00:27:22 -080067 public void write(DatabaseDefinition definition) throws IOException {
68 checkNotNull(definition);
Madan Jampani09342702015-02-05 23:32:40 -080069 // write back to file
70 final ObjectMapper mapper = new ObjectMapper();
Madan Jampani0cb00672015-02-27 00:27:22 -080071 mapper.writeValue(definitionfile, definition);
Madan Jampani09342702015-02-05 23:32:40 -080072 }
73}