/** * Copyright 2013 OpenSocial Foundation * Copyright 2013 International Business Machines 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. * * Utility library for working with Activity Streams Actions * Requires underscorejs. * * @author James M Snell (jasnell@us.ibm.com) */ package com.ibm.common.geojson; import static com.ibm.common.geojson.BoundingBox.calculateBoundingBox; import java.io.ObjectStreamException; import java.util.Iterator; import java.util.Map; import com.google.common.base.Supplier; import com.google.common.collect.ImmutableMap; public final class Feature extends GeoObject implements Iterable { public static final class Builder extends GeoObject.Builder { private final ImmutableMap.Builder properties = ImmutableMap.builder(); public Builder() { type(GeoObject.Type.FEATURE); } public Builder geometry(Geometry geometry) { return set("geometry", geometry); } public Builder geometry(Supplier> geometry) { return geometry(geometry.get()); } public Builder property(String name, Object value) { this.properties.put(name, value); return this; } protected Builder properties(Map properties) { properties.putAll(properties); return this; } public Builder id(String id) { return set("id", id); } @Override public Feature doGet() { set("properties", properties.build()); return new Feature(this); } } Feature(Builder builder) { super(builder); } public >G geometry() { return this.get("geometry"); } public Map properties() { return this.>get( "properties", ImmutableMap.of()); } public String id() { return this.get("id"); } @SuppressWarnings("unchecked") public T getProperty(String name) { return (T) properties().get(name); } public T getProperty(String name, T defaultValue) { T t = this.getProperty(name); return t != null ? t : defaultValue; } public boolean has(String name) { return properties().containsKey(name); } @Override public Iterator iterator() { return properties().keySet().iterator(); } @Override protected Feature makeWithBoundingBox() { return new Feature.Builder() .from(this) .properties(this.properties()) .boundingBox( calculateBoundingBox(geometry())).get(); } Object writeReplace() throws java.io.ObjectStreamException { return new SerializedForm(this); } private static class SerializedForm extends AbstractSerializedForm { private static final long serialVersionUID = -2060301713159936281L; protected SerializedForm(Feature obj) { super(obj); } Object readResolve() throws ObjectStreamException { return doReadResolve(); } @SuppressWarnings("unchecked") @Override protected boolean handle( Builder builder, String key, Object val) { if ("properties".equals(key)) { Map props = (Map) val; builder.properties.putAll(props); return true; } return false; } @Override protected Builder builder() { return new Feature.Builder(); } } }