br.ufpa.gercom.mtuldp.store.DeviceStorageMgm.java Source code

Java tutorial

Introduction

Here is the source code for br.ufpa.gercom.mtuldp.store.DeviceStorageMgm.java

Source

/*
 * Copyright 2016 GERCOM, Lab. UFPA.
 *
 * Developer: fernando
 * Serial: 01/09/16 16:12
 *
 * 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 br.ufpa.gercom.mtuldp.store;

import org.apache.commons.lang.StringUtils;
import org.neo4j.driver.v1.Record;
import org.neo4j.driver.v1.StatementResult;
import org.neo4j.driver.v1.Value;
import org.neo4j.driver.v1.summary.ResultSummary;
import org.onosproject.net.Device;
import org.onosproject.net.DeviceId;
import org.onosproject.net.Link;
import org.slf4j.Logger;

import java.util.List;

import static com.google.common.base.Preconditions.checkNotNull;
import static org.slf4j.LoggerFactory.getLogger;

public class DeviceStorageMgm {

    private Neo4jIntegration driver;
    private final Logger log = getLogger(getClass());

    public DeviceStorageMgm(Neo4jIntegration driver) {
        this.driver = driver;
    }

    public boolean create(Device device) throws RuntimeException {

        checkNotNull(device, "Device Object cannot be null");

        String CREATE = "MERGE " + "(a:%s " + "{ " + "id: '%s'," + "device:'%s', " + "manufacturer:'%s', "
                + "hwVersion:'%s', " + "swVersion:'%s', " + "serialNumber:'%s'" + " } " + ")";

        String id = getId(device);
        String type = Device.Type.SWITCH.name();
        String device_id = device.id().toString();
        String manufacturer = device.manufacturer();
        String hwVersion = device.hwVersion();
        String swVersion = device.swVersion();
        String serialNumber = device.serialNumber();

        String query = String.format(CREATE, type, id, device_id, manufacturer, hwVersion, swVersion, serialNumber);

        StatementResult result = driver.executeCypherQuery(query);
        ResultSummary summary = result.consume();

        if (summary.counters().nodesCreated() == 0) {
            log.info("the node ({}) already exists on database", device_id);
            return false;
        }

        log.info("New node ({}) inserted on database", device_id);
        return true;
    }

    public boolean update(Device device) throws RuntimeException {

        checkNotNull(device, "Device Object on UPDATE cannot be null");

        String UPDATE = "MATCH (a:%s{id:'%s'}) " + "SET " + "a.manufacturer = '%s'," + "a.hwVersion = '%s',"
                + "a.swVersion = '%s'," + "a.serialNumber = '%s'";

        String id = getId(device);
        String type = Device.Type.SWITCH.name();
        String manufacturer = device.manufacturer();
        String hwVersion = device.hwVersion();
        String swVersion = device.swVersion();
        String serialNumber = device.serialNumber();

        String query = String.format(UPDATE, type, id, manufacturer, hwVersion, swVersion, serialNumber);

        StatementResult result = driver.executeCypherQuery(query);
        ResultSummary summary = result.consume();

        if (summary.counters().containsUpdates()) {
            log.error("Device id ({}) cannot be updated, data is not different or transaction error", id);
            return true;
        }

        log.info("Device id ({}) was updated", id);
        return false;
    }

    public boolean delete(Device device) throws RuntimeException {

        checkNotNull(device, "Device Object on DELETE cannot be null");

        String DELETE = "MATCH (a:%s{id:'%s'}) " + "DETACH DELETE " + "a";

        String type = Device.Type.SWITCH.name();
        String id = getId(device);
        String query = String.format(DELETE, type, id);

        StatementResult result = driver.executeCypherQuery(query);
        ResultSummary summary = result.consume();

        if (summary.counters().nodesDeleted() == 0) {
            log.info("the device ({}) cannot be exist", device.id().toString());
            return false;
        }

        log.info("The node ({}) was deleted", device.id().toString());
        return true;
    }

    public boolean exists(Device device) throws RuntimeException {

        checkNotNull(device, "Device object cannot be null");

        String EXISTS = "MATCH (a:%s{id:'%s'}) " + "RETURN  " + "a IS NOT NULL as result";

        String type = Device.Type.SWITCH.name();
        String id = getId(device);

        String query = String.format(EXISTS, type, id);

        StatementResult result = driver.executeCypherQuery(query);

        if (result.list().isEmpty()) {
            return false;
        }

        Record record = result.single();

        return record.get("result").asBoolean();

    }

    public boolean setDeviceLabel(Device device, String label) throws RuntimeException {

        checkNotNull(device, "Device object cannot be null");
        checkNotNull(label, "Device label cannot be null");

        String SETLABEL = "MATCH (a:%s{id:%s}) " + "SET " + "a:%s";

        String type = Device.Type.SWITCH.name();
        String id = getId(device);

        String query = String.format(SETLABEL, type, id);
        StatementResult result = driver.executeCypherQuery(query);
        ResultSummary summary = result.consume();

        if (summary.counters().labelsAdded() == 0) {
            log.error("Label already added to device ({})", id);
            return false;
        }
        log.info("New label was inserted to device ({})", id);
        return true;
    }

    public List<String> getDeviceLabels(Device device) throws RuntimeException {

        checkNotNull(device, "Device cannot be null");

        String GETLABELS = "MATCH (a:%s{id:%s}) " + "RETURN " + "labels(a) as labels";

        String id = getId(device);
        String type = Device.Type.SWITCH.name();

        String query = String.format(GETLABELS, type, id);

        StatementResult result = driver.executeCypherQuery(query);

        if (result.list().isEmpty()) {
            log.error("Object id ({}) could be not exist", id.toString());
            return null;
        }

        Record record = result.single();
        return record.get("labels").asList(Value::asString);
    }

    private String getId(Device device) {

        // id = object:type:protocol:id
        String id = "%s:%s:%s";

        return StringUtils.lowerCase(
                String.format(id, Device.class.getSimpleName(), Device.Type.SWITCH.name(), device.id().toString()));
    }
}