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

org.usergrid.persistence.AbstractEntity Maven / Gradle / Ivy

There is a newer version: 0.0.27.1
Show newest version
/*******************************************************************************
 * Copyright 2012 Apigee Corporation
 * 
 * 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 org.usergrid.persistence;

import static org.usergrid.persistence.Schema.PROPERTY_NAME;

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.TreeMap;
import java.util.UUID;

import javax.xml.bind.annotation.XmlRootElement;

import org.codehaus.jackson.annotate.JsonAnyGetter;
import org.codehaus.jackson.annotate.JsonAnySetter;
import org.codehaus.jackson.annotate.JsonIgnore;
import org.codehaus.jackson.map.annotate.JsonSerialize;
import org.codehaus.jackson.map.annotate.JsonSerialize.Inclusion;
import org.usergrid.persistence.annotations.EntityProperty;

/**
 * The abstract superclass implementation of the Entity interface.
 * 
 * @author edanuff
 * 
 */
@XmlRootElement
public abstract class AbstractEntity implements Entity {

	protected UUID uuid;

	protected Long created;

	protected Long modified;

	protected Map dynamic_properties = new TreeMap(
			String.CASE_INSENSITIVE_ORDER);

	protected Map> dynamic_sets = new TreeMap>(
			String.CASE_INSENSITIVE_ORDER);

	@Override
	@EntityProperty(required = true, mutable = false, basic = true, indexed = false)
	@JsonSerialize(include = Inclusion.NON_NULL)
	public UUID getUuid() {
		return uuid;
	}

	@Override
	public void setUuid(UUID uuid) {
		this.uuid = uuid;
	}

	@Override
	@EntityProperty(required = true, mutable = false, basic = true, indexed = false)
	public String getType() {
		return Schema.getDefaultSchema().getEntityType(this.getClass());
	}

	@Override
	public void setType(String type) {
	}

	@Override
	@EntityProperty(indexed = true, required = true, mutable = false)
	@JsonSerialize(include = Inclusion.NON_NULL)
	public Long getCreated() {
		return created;
	}

	@Override
	public void setCreated(Long created) {
		if (created == null) {
			created = System.currentTimeMillis();
		}
		this.created = created;
	}

	@Override
	@EntityProperty(indexed = true, required = true, mutable = true)
	@JsonSerialize(include = Inclusion.NON_NULL)
	public Long getModified() {
		return modified;
	}

	@Override
	public void setModified(Long modified) {
		if (modified == null) {
			modified = System.currentTimeMillis();
		}
		this.modified = modified;
	}

	@Override
	@JsonSerialize(include = Inclusion.NON_NULL)
	public String getName() {
		return (String) getProperty(PROPERTY_NAME);
	}

	@Override
	@JsonIgnore
	public Map getProperties() {
		return Schema.getDefaultSchema().getEntityProperties(this);
	}

	@Override
	public final Object getProperty(String propertyName) {
		return Schema.getDefaultSchema().getEntityProperty(this, propertyName);
	}

	@Override
	public final void setProperty(String propertyName, Object propertyValue) {
		Schema.getDefaultSchema().setEntityProperty(this, propertyName,
				propertyValue);
	}

	@Override
	public void setProperties(Map properties) {
		dynamic_properties = new TreeMap(
				String.CASE_INSENSITIVE_ORDER);
		addProperties(properties);
	}

	@Override
	public void addProperties(Map properties) {
		if (properties == null) {
			return;
		}
		for (Entry entry : properties.entrySet()) {
			setProperty(entry.getKey(), entry.getValue());
		}
	}

	@Override
	@JsonSerialize(include = Inclusion.NON_NULL)
	public Object getMetadata(String key) {
		return getDataset("metadata", key);
	}

	@Override
	public void setMetadata(String key, Object value) {
		setDataset("metadata", key, value);
	}

	@Override
	public void mergeMetadata(Map new_metadata) {
		mergeDataset("metadata", new_metadata);
	}

	@Override
	public void clearMetadata() {
		clearDataset("metadata");
	}

	public  T getDataset(String property, String key) {
		Object md = dynamic_properties.get(property);
		if (md == null) {
			return null;
		}
		if (!(md instanceof Map)) {
			return null;
		}
		@SuppressWarnings("unchecked")
		Map metadata = (Map) md;
		return metadata.get(key);
	}

	public  void setDataset(String property, String key, T value) {
		if (key == null) {
			return;
		}
		Object md = dynamic_properties.get(property);
		if (!(md instanceof Map)) {
			md = new HashMap();
			dynamic_properties.put(property, md);
		}
		@SuppressWarnings("unchecked")
		Map metadata = (Map) md;
		metadata.put(key, value);
	}

	public  void mergeDataset(String property, Map new_metadata) {
		Object md = dynamic_properties.get(property);
		if (!(md instanceof Map)) {
			md = new HashMap();
			dynamic_properties.put(property, md);
		}
		@SuppressWarnings("unchecked")
		Map metadata = (Map) md;
		metadata.putAll(new_metadata);
	}

	public void clearDataset(String property) {
		dynamic_properties.remove(property);
	}

	@Override
	public List getCollections(String key) {
		return getDataset("collections", key);
	}

	@Override
	public void setCollections(String key, List results) {
		setDataset("collections", key, results);
	}

	@Override
	public List getConnections(String key) {
		return getDataset("connections", key);
	}

	@Override
	public void setConnections(String key, List results) {
		setDataset("connections", key, results);
	}

	@Override
	public String toString() {
		return "Entity(" + getProperties() + ")";
	}

	@Override
	@JsonAnySetter
	public void setDynamicProperty(String key, Object value) {
		dynamic_properties.put(key, value);
	}

	@Override
	@JsonAnyGetter
	public Map getDynamicProperties() {
		return dynamic_properties;
	}

	@Override
	public final int compareTo(Entity o) {
		if (o == null) {
			return 1;
		}
		try {
			long t1 = getUuid().timestamp();
			long t2 = o.getUuid().timestamp();
			return (t1 < t2) ? -1 : (t1 == t2) ? 0 : 1;
		} catch (UnsupportedOperationException e) {
		}
		return getUuid().compareTo(o.getUuid());
	}

	@Override
	public Entity toTypedEntity() {
		Entity entity = EntityFactory.newEntity(getUuid(), getType());
		entity.setProperties(getProperties());
		return entity;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy