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

org.joda.beans.impl.direct.DirectMetaPropertyMap Maven / Gradle / Ivy

There is a newer version: 2.11.1
Show newest version
/*
 *  Copyright 2001-present Stephen Colebourne
 *
 *  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.joda.beans.impl.direct;

import java.util.AbstractCollection;
import java.util.AbstractMap;
import java.util.AbstractSet;
import java.util.Arrays;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

import org.joda.beans.MetaProperty;

/**
 * A map of name to meta-property designed for use by the code generator.
 * 

* This meta-property map implementation is designed primarily for code-generation. * It stores a reference to the meta-bean and the meta-properties. * The meta-properties are accessed using {@link DirectMetaBean#metaPropertyGet(String)}. *

* This class is immutable and thread-safe. */ @SuppressWarnings("rawtypes") public final class DirectMetaPropertyMap implements Map> { /** The meta-bean. */ private final DirectMetaBean metaBean; /** The property names. */ private final Set keys; /** The meta-properties. */ private final Collection> values; /** The map entries. */ private final Set>> entries; /** * Constructor. * * @param metaBean the meta-bean, not null * @param parent the superclass parent, may be null * @param propertyNames the property names, not null */ @SuppressWarnings("unchecked") public DirectMetaPropertyMap(final DirectMetaBean metaBean, DirectMetaPropertyMap parent, String... propertyNames) { if (metaBean == null) { throw new NullPointerException("MetaBean must not be null"); } this.metaBean = metaBean; int parentSize = 0; final Entry>[] metaProperties; if (parent != null) { parentSize = parent.size(); metaProperties = Arrays.copyOf(((Entries) parent.entries).metaProperties, parentSize + propertyNames.length); } else { metaProperties = new Entry[propertyNames.length]; } for (int i = 0; i < propertyNames.length; i++) { metaProperties[i + parentSize] = new AbstractMap.SimpleImmutableEntry(propertyNames[i], metaBean.metaPropertyGet(propertyNames[i])); } keys = new Keys(metaProperties); values = new Values(metaProperties); entries = new Entries(metaProperties); } //----------------------------------------------------------------------- @Override public int size() { return keys.size(); } @Override public boolean isEmpty() { return size() == 0; } @SuppressWarnings("unchecked") @Override public MetaProperty get(Object propertyName) { if (propertyName instanceof String) { return (MetaProperty) metaBean.metaPropertyGet((String) propertyName); } return null; } @Override public boolean containsKey(Object propertyName) { return propertyName instanceof String && metaBean.metaPropertyGet(propertyName.toString()) != null; } @Override public boolean containsValue(Object value) { return value instanceof MetaProperty && metaBean.metaPropertyGet(((MetaProperty) value).name()) != null; } //----------------------------------------------------------------------- @Override public MetaProperty put(String key, MetaProperty value) { throw new UnsupportedOperationException("DirectBean meta-property map cannot be modified"); } @Override public MetaProperty remove(Object key) { throw new UnsupportedOperationException("DirectBean meta-property map cannot be modified"); } @Override public void putAll(Map> m) { throw new UnsupportedOperationException("DirectBean meta-property map cannot be modified"); } @Override public void clear() { throw new UnsupportedOperationException("DirectBean meta-property map cannot be modified"); } //----------------------------------------------------------------------- @Override public Set keySet() { return keys; } @Override public Collection> values() { return values; } @Override public Set>> entrySet() { return entries; } //----------------------------------------------------------------------- /** * Collection implementation for the keys. */ private static final class Keys extends AbstractSet { private final Entry>[] metaProperties; private Keys(Entry>[] metaProperties) { this.metaProperties = metaProperties; } @Override public Iterator iterator() { return new Iterator() { private int index; @Override public boolean hasNext() { return index < metaProperties.length; } @Override public String next() { return metaProperties[index++].getKey(); } @Override public void remove() { throw new UnsupportedOperationException(); } }; } @Override public int size() { return metaProperties.length; } } /** * Collection implementation for the values. */ private static final class Values extends AbstractCollection> { private final Entry>[] metaProperties; private Values(Entry>[] metaProperties) { this.metaProperties = metaProperties; } @Override public Iterator> iterator() { return new Iterator>() { private int index; @Override public boolean hasNext() { return index < metaProperties.length; } @Override public MetaProperty next() { return metaProperties[index++].getValue(); } @Override public void remove() { throw new UnsupportedOperationException(); } }; } @Override public int size() { return metaProperties.length; } } /** * Collection implementation for the entries. */ private static final class Entries extends AbstractSet>> { private final Entry>[] metaProperties; private Entries(Entry>[] metaProperties) { this.metaProperties = metaProperties; } @Override public Iterator>> iterator() { return new Iterator>>() { private int index; @Override public boolean hasNext() { return index < metaProperties.length; } @Override public Entry> next() { return metaProperties[index++]; } @Override public void remove() { throw new UnsupportedOperationException(); } }; } @Override public int size() { return metaProperties.length; } } }