View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.commons.collections4.multiset;
18  
19  import java.io.IOException;
20  import java.io.ObjectInputStream;
21  import java.io.ObjectOutputStream;
22  import java.util.Collection;
23  import java.util.Iterator;
24  import java.util.Set;
25  import java.util.function.Predicate;
26  
27  import org.apache.commons.collections4.MultiSet;
28  import org.apache.commons.collections4.Unmodifiable;
29  import org.apache.commons.collections4.iterators.UnmodifiableIterator;
30  import org.apache.commons.collections4.set.UnmodifiableSet;
31  
32  /**
33   * Decorates another {@link MultiSet} to ensure it can't be altered.
34   * <p>
35   * Attempts to modify it will result in an UnsupportedOperationException.
36   * </p>
37   *
38   * @param <E> the type held in the multiset
39   * @since 4.1
40   */
41  public final class UnmodifiableMultiSet<E>
42          extends AbstractMultiSetDecorator<E> implements Unmodifiable {
43  
44      /** Serialization version */
45      private static final long serialVersionUID = 20150611L;
46  
47      /**
48       * Factory method to create an unmodifiable multiset.
49       * <p>
50       * If the multiset passed in is already unmodifiable, it is returned.
51       *
52       * @param <E>  the type of the elements in the multiset
53       * @param multiset  the multiset to decorate, may not be null
54       * @return an unmodifiable MultiSet
55       * @throws NullPointerException if multiset is null
56       */
57      public static <E> MultiSet<E> unmodifiableMultiSet(final MultiSet<? extends E> multiset) {
58          if (multiset instanceof Unmodifiable) {
59              @SuppressWarnings("unchecked") // safe to upcast
60              final MultiSet<E> tmpMultiSet = (MultiSet<E>) multiset;
61              return tmpMultiSet;
62          }
63          return new UnmodifiableMultiSet<>(multiset);
64      }
65  
66      /**
67       * Constructor that wraps (not copies).
68       *
69       * @param multiset  the multiset to decorate, may not be null
70       * @throws NullPointerException if multiset is null
71       */
72      @SuppressWarnings("unchecked") // safe to upcast
73      private UnmodifiableMultiSet(final MultiSet<? extends E> multiset) {
74          super((MultiSet<E>) multiset);
75      }
76  
77      @Override
78      public boolean add(final E object) {
79          throw new UnsupportedOperationException();
80      }
81  
82      @Override
83      public int add(final E object, final int count) {
84          throw new UnsupportedOperationException();
85      }
86  
87      @Override
88      public boolean addAll(final Collection<? extends E> coll) {
89          throw new UnsupportedOperationException();
90      }
91  
92      @Override
93      public void clear() {
94          throw new UnsupportedOperationException();
95      }
96  
97      @Override
98      public Set<MultiSet.Entry<E>> entrySet() {
99          final Set<MultiSet.Entry<E>> set = decorated().entrySet();
100         return UnmodifiableSet.unmodifiableSet(set);
101     }
102 
103     @Override
104     public Iterator<E> iterator() {
105         return UnmodifiableIterator.<E>unmodifiableIterator(decorated().iterator());
106     }
107 
108     /**
109      * Read the collection in using a custom routine.
110      *
111      * @param in  the input stream
112      * @throws IOException if an error occurs while reading from the stream
113      * @throws ClassNotFoundException if an object read from the stream can not be loaded
114      * @throws ClassCastException if deserialized object has wrong type
115      */
116     @SuppressWarnings("unchecked") // will throw CCE, see Javadoc
117     private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException {
118         in.defaultReadObject();
119         setCollection((Collection<E>) in.readObject());
120     }
121 
122     @Override
123     public boolean remove(final Object object) {
124         throw new UnsupportedOperationException();
125     }
126 
127     @Override
128     public int remove(final Object object, final int count) {
129         throw new UnsupportedOperationException();
130     }
131 
132     @Override
133     public boolean removeAll(final Collection<?> coll) {
134         throw new UnsupportedOperationException();
135     }
136 
137     /**
138      * @since 4.4
139      */
140     @Override
141     public boolean removeIf(final Predicate<? super E> filter) {
142         throw new UnsupportedOperationException();
143     }
144 
145     @Override
146     public boolean retainAll(final Collection<?> coll) {
147         throw new UnsupportedOperationException();
148     }
149 
150     @Override
151     public int setCount(final E object, final int count) {
152         throw new UnsupportedOperationException();
153     }
154 
155     @Override
156     public Set<E> uniqueSet() {
157         final Set<E> set = decorated().uniqueSet();
158         return UnmodifiableSet.unmodifiableSet(set);
159     }
160 
161     /**
162      * Write the collection out using a custom routine.
163      *
164      * @param out  the output stream
165      * @throws IOException if an error occurs while writing to the stream
166      */
167     private void writeObject(final ObjectOutputStream out) throws IOException {
168         out.defaultWriteObject();
169         out.writeObject(decorated());
170     }
171 
172 }