org.opendaylight.ovsdb.lib.schema.ColumnSchema.java Source code

Java tutorial

Introduction

Here is the source code for org.opendaylight.ovsdb.lib.schema.ColumnSchema.java

Source

/*
 * Copyright (C) 2014 EBay Software Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 *
 * Authors : Ashwin Raveendran
 */
package org.opendaylight.ovsdb.lib.schema;

import java.util.Map;
import java.util.Set;

import org.opendaylight.ovsdb.lib.error.BadSchemaException;
import org.opendaylight.ovsdb.lib.notation.Condition;
import org.opendaylight.ovsdb.lib.notation.Function;
import org.opendaylight.ovsdb.lib.notation.OvsdbMap;
import org.opendaylight.ovsdb.lib.notation.OvsdbSet;

import com.fasterxml.jackson.databind.JsonNode;

public class ColumnSchema<E extends TableSchema<E>, D> {
    String name;
    ColumnType type;
    boolean ephemeral;
    boolean mutable;

    public ColumnSchema(String name, ColumnType columnType) {
        this.name = name;
        this.type = columnType;
    }

    public static ColumnSchema fromJson(String name, JsonNode json) {
        if (!json.isObject() || !json.has("type")) {
            throw new BadSchemaException("bad column schema root, expected \"type\" as child");
        }

        return new ColumnSchema(name, ColumnType.fromJson(json.get("type")));
    }

    public String getName() {
        return name;
    }

    public ColumnType getType() {
        return type;
    }

    // --- Operations on the column ----------//

    public Condition opEqual(D data) {
        return new Condition(this.getName(), Function.EQUALS, data);
    }

    public Condition opGreaterThan(D data) {
        return new Condition(this.getName(), Function.GREATER_THAN, data);
    }

    public Condition opLesserThan(D data) {
        return new Condition(this.getName(), Function.GREATER_THAN, data);
    }

    public Condition opLesserThanOrEquals(D data) {
        return new Condition(this.getName(), Function.LESS_THAN_OR_EQUALS, data);
    }

    public Condition opIncludes(D data) {
        return new Condition(this.getName(), Function.INCLUDES, data);
    }

    public Condition opExcludes(D data) {
        return new Condition(this.getName(), Function.EXCLUDES, data);
    }

    // --- Operations on the column ----------//:w

    @Override
    public String toString() {
        return "ColumnSchema{" + "name='" + name + '\'' + ", type=" + type + '}';
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((name == null) ? 0 : name.hashCode());
        result = prime * result + ((type == null) ? 0 : type.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        ColumnSchema other = (ColumnSchema) obj;
        if (name == null) {
            if (other.name != null) {
                return false;
            }
        } else if (!name.equals(other.name)) {
            return false;
        }
        if (type == null) {
            if (other.type != null) {
                return false;
            }
        } else if (!type.equals(other.type)) {
            return false;
        }
        return true;
    }

    /**
     * Validates the passed in value against the constraints set for this ColumnSchema
     * @param value
     * @throws java.lang.RuntimeException (validation exception)
     */
    public D validate(Object value) throws RuntimeException {
        //todo(type check and validate based on constraints set)
        this.type.validate(value);
        return (D) value;
    }

    /**
     * Verifies if this Column if of the specified type
     * @param type the type to check for
     */
    public void validateType(Class<?> type) {

    }

    public D valueFromJson(JsonNode value) {
        return (D) this.getType().valueFromJson(value);
    }

    public Object getNormalizeData(D value) {
        Object untypedValue = null;
        if (value instanceof Set) {
            untypedValue = OvsdbSet.fromSet((Set) value);
        } else if (value instanceof Map) {
            untypedValue = OvsdbMap.fromMap((Map) value);
        } else {
            untypedValue = value;
        }
        return untypedValue;
    }
}