/** * Copyright (C) 2016 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.strata.product; import java.io.Serializable; import java.util.HashMap; import java.util.Map; import java.util.NoSuchElementException; import java.util.Optional; import java.util.Set; import org.joda.beans.Bean; import org.joda.beans.BeanBuilder; import org.joda.beans.BeanDefinition; import org.joda.beans.ImmutableBean; import org.joda.beans.JodaBeanUtils; import org.joda.beans.MetaProperty; import org.joda.beans.Property; import org.joda.beans.PropertyDefinition; import org.joda.beans.impl.direct.DirectFieldsBeanBuilder; import org.joda.beans.impl.direct.DirectMetaBean; import org.joda.beans.impl.direct.DirectMetaProperty; import org.joda.beans.impl.direct.DirectMetaPropertyMap; import com.google.common.collect.ImmutableMap; import com.opengamma.strata.basics.StandardId; import com.opengamma.strata.collect.Messages; /** * Additional information about a position. * <p> * This allows additional information about a position to be associated. * It is kept in a separate object as the information is optional for pricing. */ @BeanDefinition(builderScope = "private", constructorScope = "package") public final class PositionInfo implements ImmutableBean, Serializable { /** * An empty instance of {@code PositionInfo}. */ private static final PositionInfo EMPTY = new PositionInfo(null, ImmutableMap.of()); /** * The primary identifier for the position, optional. * <p> * The identifier is used to identify the position. * It will typically be an identifier in an external data system. * <p> * A position may have multiple active identifiers. Any identifier may be chosen here. * Certain uses of the identifier, such as storage in a database, require that the * identifier does not change over time, and this should be considered best practice. */ @PropertyDefinition(get = "optional") private final StandardId id; /** * The position attributes. * <p> * Position attributes, provide the ability to associate arbitrary information * with a position in a key-value map. */ @PropertyDefinition(validate = "notNull") private final ImmutableMap<PositionAttributeType<?>, Object> attributes; //------------------------------------------------------------------------- /** * Obtains an empty instance, with no identifier or attributes. * * @return the empty instance */ public static PositionInfo empty() { return EMPTY; } /** * Obtains an instance with the specified position identifier. * * @param positionId the position identifier * @return the position information */ public static PositionInfo of(StandardId positionId) { return new PositionInfo(positionId, ImmutableMap.of()); } /** * Returns a builder used to create an instance of the bean. * * @return the builder */ public static PositionInfoBuilder builder() { return new PositionInfoBuilder(); } //------------------------------------------------------------------------- /** * Gets the attribute associated with the specified type. * <p> * This method obtains the specified attribute. * This allows an attribute about a position to be obtained if available. * <p> * If the attribute is not found, an exception is thrown. * * @param <T> the type of the result * @param type the type to find * @return the attribute value * @throws IllegalArgumentException if the attribute is not found */ public <T> T getAttribute(PositionAttributeType<T> type) { return findAttribute(type).orElseThrow(() -> new IllegalArgumentException( Messages.format("Attribute not found for type '{}'", type))); } /** * Finds the attribute associated with the specified type. * <p> * This method obtains the specified attribute. * This allows an attribute about a position to be obtained if available. * <p> * If the attribute is not found, optional empty is returned. * * @param <T> the type of the result * @param type the type to find * @return the attribute value */ @SuppressWarnings("unchecked") public <T> Optional<T> findAttribute(PositionAttributeType<T> type) { return Optional.ofNullable((T) attributes.get(type)); } /** * Returns a copy of this instance with attribute added. * <p> * This returns a new instance with the specified attribute added. * The attribute is added using {@code Map.put(type, value)} semantics. * * @param <T> the type of the value * @param type the type providing meaning to the value * @param value the value * @return a new instance based on this one with the attribute added */ @SuppressWarnings("unchecked") public <T> PositionInfo withAttribute(PositionAttributeType<T> type, T value) { // ImmutableMap.Builder would not provide Map.put semantics Map<PositionAttributeType<?>, Object> updatedAttributes = new HashMap<>(attributes); updatedAttributes.put(type, value); return new PositionInfo(id, updatedAttributes); } /** * Returns a builder populated with the values of this instance. * * @return a builder populated with the values of this instance */ public PositionInfoBuilder toBuilder() { return new PositionInfoBuilder(id, attributes); } //------------------------- AUTOGENERATED START ------------------------- ///CLOVER:OFF /** * The meta-bean for {@code PositionInfo}. * @return the meta-bean, not null */ public static PositionInfo.Meta meta() { return PositionInfo.Meta.INSTANCE; } static { JodaBeanUtils.registerMetaBean(PositionInfo.Meta.INSTANCE); } /** * The serialization version id. */ private static final long serialVersionUID = 1L; /** * Creates an instance. * @param id the value of the property * @param attributes the value of the property, not null */ PositionInfo( StandardId id, Map<PositionAttributeType<?>, Object> attributes) { JodaBeanUtils.notNull(attributes, "attributes"); this.id = id; this.attributes = ImmutableMap.copyOf(attributes); } @Override public PositionInfo.Meta metaBean() { return PositionInfo.Meta.INSTANCE; } @Override public <R> Property<R> property(String propertyName) { return metaBean().<R>metaProperty(propertyName).createProperty(this); } @Override public Set<String> propertyNames() { return metaBean().metaPropertyMap().keySet(); } //----------------------------------------------------------------------- /** * Gets the primary identifier for the position, optional. * <p> * The identifier is used to identify the position. * It will typically be an identifier in an external data system. * <p> * A position may have multiple active identifiers. Any identifier may be chosen here. * Certain uses of the identifier, such as storage in a database, require that the * identifier does not change over time, and this should be considered best practice. * @return the optional value of the property, not null */ public Optional<StandardId> getId() { return Optional.ofNullable(id); } //----------------------------------------------------------------------- /** * Gets the position attributes. * <p> * Position attributes, provide the ability to associate arbitrary information * with a position in a key-value map. * @return the value of the property, not null */ public ImmutableMap<PositionAttributeType<?>, Object> getAttributes() { return attributes; } //----------------------------------------------------------------------- @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (obj != null && obj.getClass() == this.getClass()) { PositionInfo other = (PositionInfo) obj; return JodaBeanUtils.equal(id, other.id) && JodaBeanUtils.equal(attributes, other.attributes); } return false; } @Override public int hashCode() { int hash = getClass().hashCode(); hash = hash * 31 + JodaBeanUtils.hashCode(id); hash = hash * 31 + JodaBeanUtils.hashCode(attributes); return hash; } @Override public String toString() { StringBuilder buf = new StringBuilder(96); buf.append("PositionInfo{"); buf.append("id").append('=').append(id).append(',').append(' '); buf.append("attributes").append('=').append(JodaBeanUtils.toString(attributes)); buf.append('}'); return buf.toString(); } //----------------------------------------------------------------------- /** * The meta-bean for {@code PositionInfo}. */ public static final class Meta extends DirectMetaBean { /** * The singleton instance of the meta-bean. */ static final Meta INSTANCE = new Meta(); /** * The meta-property for the {@code id} property. */ private final MetaProperty<StandardId> id = DirectMetaProperty.ofImmutable( this, "id", PositionInfo.class, StandardId.class); /** * The meta-property for the {@code attributes} property. */ @SuppressWarnings({"unchecked", "rawtypes" }) private final MetaProperty<ImmutableMap<PositionAttributeType<?>, Object>> attributes = DirectMetaProperty.ofImmutable( this, "attributes", PositionInfo.class, (Class) ImmutableMap.class); /** * The meta-properties. */ private final Map<String, MetaProperty<?>> metaPropertyMap$ = new DirectMetaPropertyMap( this, null, "id", "attributes"); /** * Restricted constructor. */ private Meta() { } @Override protected MetaProperty<?> metaPropertyGet(String propertyName) { switch (propertyName.hashCode()) { case 3355: // id return id; case 405645655: // attributes return attributes; } return super.metaPropertyGet(propertyName); } @Override public BeanBuilder<? extends PositionInfo> builder() { return new PositionInfo.Builder(); } @Override public Class<? extends PositionInfo> beanType() { return PositionInfo.class; } @Override public Map<String, MetaProperty<?>> metaPropertyMap() { return metaPropertyMap$; } //----------------------------------------------------------------------- /** * The meta-property for the {@code id} property. * @return the meta-property, not null */ public MetaProperty<StandardId> id() { return id; } /** * The meta-property for the {@code attributes} property. * @return the meta-property, not null */ public MetaProperty<ImmutableMap<PositionAttributeType<?>, Object>> attributes() { return attributes; } //----------------------------------------------------------------------- @Override protected Object propertyGet(Bean bean, String propertyName, boolean quiet) { switch (propertyName.hashCode()) { case 3355: // id return ((PositionInfo) bean).id; case 405645655: // attributes return ((PositionInfo) bean).getAttributes(); } return super.propertyGet(bean, propertyName, quiet); } @Override protected void propertySet(Bean bean, String propertyName, Object newValue, boolean quiet) { metaProperty(propertyName); if (quiet) { return; } throw new UnsupportedOperationException("Property cannot be written: " + propertyName); } } //----------------------------------------------------------------------- /** * The bean-builder for {@code PositionInfo}. */ private static final class Builder extends DirectFieldsBeanBuilder<PositionInfo> { private StandardId id; private Map<PositionAttributeType<?>, Object> attributes = ImmutableMap.of(); /** * Restricted constructor. */ private Builder() { } //----------------------------------------------------------------------- @Override public Object get(String propertyName) { switch (propertyName.hashCode()) { case 3355: // id return id; case 405645655: // attributes return attributes; default: throw new NoSuchElementException("Unknown property: " + propertyName); } } @SuppressWarnings("unchecked") @Override public Builder set(String propertyName, Object newValue) { switch (propertyName.hashCode()) { case 3355: // id this.id = (StandardId) newValue; break; case 405645655: // attributes this.attributes = (Map<PositionAttributeType<?>, Object>) newValue; break; default: throw new NoSuchElementException("Unknown property: " + propertyName); } return this; } @Override public Builder set(MetaProperty<?> property, Object value) { super.set(property, value); return this; } @Override public Builder setString(String propertyName, String value) { setString(meta().metaProperty(propertyName), value); return this; } @Override public Builder setString(MetaProperty<?> property, String value) { super.setString(property, value); return this; } @Override public Builder setAll(Map<String, ? extends Object> propertyValueMap) { super.setAll(propertyValueMap); return this; } @Override public PositionInfo build() { return new PositionInfo( id, attributes); } //----------------------------------------------------------------------- @Override public String toString() { StringBuilder buf = new StringBuilder(96); buf.append("PositionInfo.Builder{"); buf.append("id").append('=').append(JodaBeanUtils.toString(id)).append(',').append(' '); buf.append("attributes").append('=').append(JodaBeanUtils.toString(attributes)); buf.append('}'); return buf.toString(); } } ///CLOVER:ON //-------------------------- AUTOGENERATED END -------------------------- }