All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zoodb.jdo.internal.PersistentSchemaOperation Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2009-2013 Tilmann Zaeschke. All rights reserved.
 * 
 * This file is part of ZooDB.
 * 
 * ZooDB is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * ZooDB is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with ZooDB.  If not, see .
 * 
 * See the README and COPYING files for further information. 
 */
package org.zoodb.jdo.internal;

/**
 * Persistent schema evolution operation. These are used to evolve objects on the fly when they 
 * are loaded.
 * 
 * 
 * @author Tilmann Zaschke
 */
public class PersistentSchemaOperation {

	public static enum OP {
		ADD,
		REMOVE;
	}

	private final OP op;
	private final int fieldId;
	
	private final ZooFieldDef field;
	//TODO make this a byte[]?
	private final Object initialValue;
	private final byte[] evolutionFunction = null;
	
	private PersistentSchemaOperation() {
		//private constructor only for ZooDB persistence. DO NOT USE.
		op = null;
		fieldId = -1;
		field = null;
		initialValue = null;
	}
	
	private PersistentSchemaOperation(OP op, int fieldId) {
		this.op = op;
		this.fieldId = fieldId;
		this.field = null;
		this.initialValue = null;
	}
	
	private PersistentSchemaOperation(OP op, int fieldId, ZooFieldDef field, Object initialValue) {
		this.op = op;
		this.fieldId = fieldId;
		this.field = field;
		if (initialValue == null) {
			switch (field.getJdoType()) {
			case PRIMITIVE:
				switch (field.getPrimitiveType()) {
				case BOOLEAN: initialValue = Boolean.valueOf(false); break;
				case BYTE: initialValue = Byte.valueOf((byte) 0); break;
				case CHAR: initialValue = Character.valueOf((char) 0); break;
				case DOUBLE: initialValue = Double.valueOf(0); break;
				case FLOAT: initialValue = Float.valueOf(0); break;
				case INT: initialValue = Integer.valueOf(0); break;
				case LONG: initialValue = Long.valueOf(0L); break;
				case SHORT: initialValue = Short.valueOf((short) 0); break;
				default: throw new IllegalArgumentException();
				}
				break;
			case DATE:
			case REFERENCE:
			case NUMBER:
			case ARRAY:
			case BIG_DEC:
			case BIG_INT:
			case SCO:
			case STRING: 
				initialValue = null;
				break;
			default: throw new IllegalArgumentException();
			}
		}
		this.initialValue = initialValue;
	}
	
	public static PersistentSchemaOperation newAddOperation(int fieldId, ZooFieldDef field, 
			Object initialValue) {
		return new PersistentSchemaOperation(OP.ADD, fieldId, field, initialValue);
	}
	
	public static PersistentSchemaOperation newRemoveOperation(int fieldId) {
		return new PersistentSchemaOperation(OP.REMOVE, fieldId);
	}
	
	public boolean isAddOp() {
		return op == OP.ADD;
	}
	
	public int getFieldId() {
		return fieldId;
	}
	
	public Object getInitialValue() {
		return initialValue;
	}

    public ZooFieldDef getField() {
        return field;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy