/** * Copyright (C) 2015 - 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.time.LocalDate; import java.time.LocalTime; import java.time.ZoneId; 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 trade. * <p> * This allows additional information about a trade 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 TradeInfo implements ImmutableBean, Serializable { /** * An empty instance of {@code TradeInfo}. */ private static final TradeInfo EMPTY = TradeInfo.builder().build(); /** * The primary identifier for the trade, optional. * <p> * The identifier is used to identify the trade. * It will typically be an identifier in an external data system. * <p> * A trade 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 counterparty identifier, optional. * <p> * An identifier used to specify the counterparty of the trade. */ @PropertyDefinition(get = "optional") private final StandardId counterparty; /** * The trade date, optional. */ @PropertyDefinition(get = "optional") private final LocalDate tradeDate; /** * The trade time, optional. */ @PropertyDefinition(get = "optional") private final LocalTime tradeTime; /** * The trade time-zone, optional. */ @PropertyDefinition(get = "optional") private final ZoneId zone; /** * The settlement date, optional. */ @PropertyDefinition(get = "optional") private final LocalDate settlementDate; /** * The trade attributes. * <p> * Trade attributes, provide the ability to associate arbitrary information * with a trade in a key-value map. */ @PropertyDefinition(validate = "notNull") private final ImmutableMap<TradeAttributeType<?>, Object> attributes; //------------------------------------------------------------------------- /** * Obtains an empty instance, with no values or attributes. * * @return the empty instance */ public static TradeInfo empty() { return EMPTY; } /** * Obtains an instance with the specified trade date. * * @param tradeDate the trade date * @return the trade information */ public static TradeInfo of(LocalDate tradeDate) { return new TradeInfo(null, null, tradeDate, null, null, null, ImmutableMap.of()); } /** * Returns a builder used to create an instance of the bean. * * @return the builder, not null */ public static TradeInfoBuilder builder() { return new TradeInfoBuilder(); } //------------------------------------------------------------------------- /** * Gets the attribute associated with the specified type. * <p> * This method obtains the specified attribute. * This allows an attribute about a trade 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(TradeAttributeType<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 trade 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(TradeAttributeType<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> TradeInfo withAttribute(TradeAttributeType<T> type, T value) { // ImmutableMap.Builder would not provide Map.put semantics Map<TradeAttributeType<?>, Object> updatedAttributes = new HashMap<>(attributes); updatedAttributes.put(type, value); return new TradeInfo(id, counterparty, tradeDate, tradeTime, zone, settlementDate, updatedAttributes); } /** * Returns a builder populated with the values of this instance. * * @return a builder populated with the values of this instance */ public TradeInfoBuilder toBuilder() { return new TradeInfoBuilder(id, counterparty, tradeDate, tradeTime, zone, settlementDate, attributes); } //------------------------- AUTOGENERATED START ------------------------- ///CLOVER:OFF /** * The meta-bean for {@code TradeInfo}. * @return the meta-bean, not null */ public static TradeInfo.Meta meta() { return TradeInfo.Meta.INSTANCE; } static { JodaBeanUtils.registerMetaBean(TradeInfo.Meta.INSTANCE); } /** * The serialization version id. */ private static final long serialVersionUID = 1L; /** * Creates an instance. * @param id the value of the property * @param counterparty the value of the property * @param tradeDate the value of the property * @param tradeTime the value of the property * @param zone the value of the property * @param settlementDate the value of the property * @param attributes the value of the property, not null */ TradeInfo( StandardId id, StandardId counterparty, LocalDate tradeDate, LocalTime tradeTime, ZoneId zone, LocalDate settlementDate, Map<TradeAttributeType<?>, Object> attributes) { JodaBeanUtils.notNull(attributes, "attributes"); this.id = id; this.counterparty = counterparty; this.tradeDate = tradeDate; this.tradeTime = tradeTime; this.zone = zone; this.settlementDate = settlementDate; this.attributes = ImmutableMap.copyOf(attributes); } @Override public TradeInfo.Meta metaBean() { return TradeInfo.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 trade, optional. * <p> * The identifier is used to identify the trade. * It will typically be an identifier in an external data system. * <p> * A trade 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 counterparty identifier, optional. * <p> * An identifier used to specify the counterparty of the trade. * @return the optional value of the property, not null */ public Optional<StandardId> getCounterparty() { return Optional.ofNullable(counterparty); } //----------------------------------------------------------------------- /** * Gets the trade date, optional. * @return the optional value of the property, not null */ public Optional<LocalDate> getTradeDate() { return Optional.ofNullable(tradeDate); } //----------------------------------------------------------------------- /** * Gets the trade time, optional. * @return the optional value of the property, not null */ public Optional<LocalTime> getTradeTime() { return Optional.ofNullable(tradeTime); } //----------------------------------------------------------------------- /** * Gets the trade time-zone, optional. * @return the optional value of the property, not null */ public Optional<ZoneId> getZone() { return Optional.ofNullable(zone); } //----------------------------------------------------------------------- /** * Gets the settlement date, optional. * @return the optional value of the property, not null */ public Optional<LocalDate> getSettlementDate() { return Optional.ofNullable(settlementDate); } //----------------------------------------------------------------------- /** * Gets the trade attributes. * <p> * Trade attributes, provide the ability to associate arbitrary information * with a trade in a key-value map. * @return the value of the property, not null */ public ImmutableMap<TradeAttributeType<?>, Object> getAttributes() { return attributes; } //----------------------------------------------------------------------- @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (obj != null && obj.getClass() == this.getClass()) { TradeInfo other = (TradeInfo) obj; return JodaBeanUtils.equal(id, other.id) && JodaBeanUtils.equal(counterparty, other.counterparty) && JodaBeanUtils.equal(tradeDate, other.tradeDate) && JodaBeanUtils.equal(tradeTime, other.tradeTime) && JodaBeanUtils.equal(zone, other.zone) && JodaBeanUtils.equal(settlementDate, other.settlementDate) && 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(counterparty); hash = hash * 31 + JodaBeanUtils.hashCode(tradeDate); hash = hash * 31 + JodaBeanUtils.hashCode(tradeTime); hash = hash * 31 + JodaBeanUtils.hashCode(zone); hash = hash * 31 + JodaBeanUtils.hashCode(settlementDate); hash = hash * 31 + JodaBeanUtils.hashCode(attributes); return hash; } @Override public String toString() { StringBuilder buf = new StringBuilder(256); buf.append("TradeInfo{"); buf.append("id").append('=').append(id).append(',').append(' '); buf.append("counterparty").append('=').append(counterparty).append(',').append(' '); buf.append("tradeDate").append('=').append(tradeDate).append(',').append(' '); buf.append("tradeTime").append('=').append(tradeTime).append(',').append(' '); buf.append("zone").append('=').append(zone).append(',').append(' '); buf.append("settlementDate").append('=').append(settlementDate).append(',').append(' '); buf.append("attributes").append('=').append(JodaBeanUtils.toString(attributes)); buf.append('}'); return buf.toString(); } //----------------------------------------------------------------------- /** * The meta-bean for {@code TradeInfo}. */ 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", TradeInfo.class, StandardId.class); /** * The meta-property for the {@code counterparty} property. */ private final MetaProperty<StandardId> counterparty = DirectMetaProperty.ofImmutable( this, "counterparty", TradeInfo.class, StandardId.class); /** * The meta-property for the {@code tradeDate} property. */ private final MetaProperty<LocalDate> tradeDate = DirectMetaProperty.ofImmutable( this, "tradeDate", TradeInfo.class, LocalDate.class); /** * The meta-property for the {@code tradeTime} property. */ private final MetaProperty<LocalTime> tradeTime = DirectMetaProperty.ofImmutable( this, "tradeTime", TradeInfo.class, LocalTime.class); /** * The meta-property for the {@code zone} property. */ private final MetaProperty<ZoneId> zone = DirectMetaProperty.ofImmutable( this, "zone", TradeInfo.class, ZoneId.class); /** * The meta-property for the {@code settlementDate} property. */ private final MetaProperty<LocalDate> settlementDate = DirectMetaProperty.ofImmutable( this, "settlementDate", TradeInfo.class, LocalDate.class); /** * The meta-property for the {@code attributes} property. */ @SuppressWarnings({"unchecked", "rawtypes" }) private final MetaProperty<ImmutableMap<TradeAttributeType<?>, Object>> attributes = DirectMetaProperty.ofImmutable( this, "attributes", TradeInfo.class, (Class) ImmutableMap.class); /** * The meta-properties. */ private final Map<String, MetaProperty<?>> metaPropertyMap$ = new DirectMetaPropertyMap( this, null, "id", "counterparty", "tradeDate", "tradeTime", "zone", "settlementDate", "attributes"); /** * Restricted constructor. */ private Meta() { } @Override protected MetaProperty<?> metaPropertyGet(String propertyName) { switch (propertyName.hashCode()) { case 3355: // id return id; case -1651301782: // counterparty return counterparty; case 752419634: // tradeDate return tradeDate; case 752903761: // tradeTime return tradeTime; case 3744684: // zone return zone; case -295948169: // settlementDate return settlementDate; case 405645655: // attributes return attributes; } return super.metaPropertyGet(propertyName); } @Override public BeanBuilder<? extends TradeInfo> builder() { return new TradeInfo.Builder(); } @Override public Class<? extends TradeInfo> beanType() { return TradeInfo.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 counterparty} property. * @return the meta-property, not null */ public MetaProperty<StandardId> counterparty() { return counterparty; } /** * The meta-property for the {@code tradeDate} property. * @return the meta-property, not null */ public MetaProperty<LocalDate> tradeDate() { return tradeDate; } /** * The meta-property for the {@code tradeTime} property. * @return the meta-property, not null */ public MetaProperty<LocalTime> tradeTime() { return tradeTime; } /** * The meta-property for the {@code zone} property. * @return the meta-property, not null */ public MetaProperty<ZoneId> zone() { return zone; } /** * The meta-property for the {@code settlementDate} property. * @return the meta-property, not null */ public MetaProperty<LocalDate> settlementDate() { return settlementDate; } /** * The meta-property for the {@code attributes} property. * @return the meta-property, not null */ public MetaProperty<ImmutableMap<TradeAttributeType<?>, Object>> attributes() { return attributes; } //----------------------------------------------------------------------- @Override protected Object propertyGet(Bean bean, String propertyName, boolean quiet) { switch (propertyName.hashCode()) { case 3355: // id return ((TradeInfo) bean).id; case -1651301782: // counterparty return ((TradeInfo) bean).counterparty; case 752419634: // tradeDate return ((TradeInfo) bean).tradeDate; case 752903761: // tradeTime return ((TradeInfo) bean).tradeTime; case 3744684: // zone return ((TradeInfo) bean).zone; case -295948169: // settlementDate return ((TradeInfo) bean).settlementDate; case 405645655: // attributes return ((TradeInfo) 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 TradeInfo}. */ private static final class Builder extends DirectFieldsBeanBuilder<TradeInfo> { private StandardId id; private StandardId counterparty; private LocalDate tradeDate; private LocalTime tradeTime; private ZoneId zone; private LocalDate settlementDate; private Map<TradeAttributeType<?>, Object> attributes = ImmutableMap.of(); /** * Restricted constructor. */ private Builder() { } //----------------------------------------------------------------------- @Override public Object get(String propertyName) { switch (propertyName.hashCode()) { case 3355: // id return id; case -1651301782: // counterparty return counterparty; case 752419634: // tradeDate return tradeDate; case 752903761: // tradeTime return tradeTime; case 3744684: // zone return zone; case -295948169: // settlementDate return settlementDate; 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 -1651301782: // counterparty this.counterparty = (StandardId) newValue; break; case 752419634: // tradeDate this.tradeDate = (LocalDate) newValue; break; case 752903761: // tradeTime this.tradeTime = (LocalTime) newValue; break; case 3744684: // zone this.zone = (ZoneId) newValue; break; case -295948169: // settlementDate this.settlementDate = (LocalDate) newValue; break; case 405645655: // attributes this.attributes = (Map<TradeAttributeType<?>, 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 TradeInfo build() { return new TradeInfo( id, counterparty, tradeDate, tradeTime, zone, settlementDate, attributes); } //----------------------------------------------------------------------- @Override public String toString() { StringBuilder buf = new StringBuilder(256); buf.append("TradeInfo.Builder{"); buf.append("id").append('=').append(JodaBeanUtils.toString(id)).append(',').append(' '); buf.append("counterparty").append('=').append(JodaBeanUtils.toString(counterparty)).append(',').append(' '); buf.append("tradeDate").append('=').append(JodaBeanUtils.toString(tradeDate)).append(',').append(' '); buf.append("tradeTime").append('=').append(JodaBeanUtils.toString(tradeTime)).append(',').append(' '); buf.append("zone").append('=').append(JodaBeanUtils.toString(zone)).append(',').append(' '); buf.append("settlementDate").append('=').append(JodaBeanUtils.toString(settlementDate)).append(',').append(' '); buf.append("attributes").append('=').append(JodaBeanUtils.toString(attributes)); buf.append('}'); return buf.toString(); } } ///CLOVER:ON //-------------------------- AUTOGENERATED END -------------------------- }