/bson/src/main/org/bson/BsonArray.java

http://github.com/mongodb/mongo-java-driver · Java · 267 lines · 176 code · 40 blank · 51 comment · 7 complexity · 9158cee18fe9f6b9f2ca9154edc605ec MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.bson;
  17. import org.bson.codecs.BsonArrayCodec;
  18. import org.bson.codecs.DecoderContext;
  19. import org.bson.json.JsonReader;
  20. import java.util.ArrayList;
  21. import java.util.Collection;
  22. import java.util.Collections;
  23. import java.util.Iterator;
  24. import java.util.List;
  25. import java.util.ListIterator;
  26. /**
  27. * A type-safe representation of the BSON array type.
  28. *
  29. * @since 3.0
  30. */
  31. public class BsonArray extends BsonValue implements List<BsonValue>, Cloneable {
  32. private final List<BsonValue> values;
  33. /**
  34. * Construct an instance with the given list of values.
  35. *
  36. * @param values the list of values, none of whose members may be null.
  37. */
  38. public BsonArray(final List<? extends BsonValue> values) {
  39. this(values, true);
  40. }
  41. /**
  42. * Construct an empty BsonArray
  43. */
  44. public BsonArray() {
  45. this(new ArrayList<BsonValue>(), false);
  46. }
  47. /**
  48. * Construct an empty BsonArray with the specified initial capacity.
  49. *
  50. * @param initialCapacity the initial capacity of the BsonArray
  51. * @throws IllegalArgumentException if the specified initial capacity
  52. * is negative
  53. * @since 4.3
  54. */
  55. public BsonArray(final int initialCapacity) {
  56. this(new ArrayList<BsonValue>(initialCapacity), false);
  57. }
  58. @SuppressWarnings("unchecked")
  59. BsonArray(final List<? extends BsonValue> values, final boolean copy) {
  60. if (copy) {
  61. this.values = new ArrayList<BsonValue>(values);
  62. } else {
  63. this.values = (List<BsonValue>) values;
  64. }
  65. }
  66. /**
  67. * Parses a string in MongoDB Extended JSON format to a {@code BsonArray}
  68. *
  69. * @param json the JSON string
  70. * @return a corresponding {@code BsonArray} object
  71. * @see org.bson.json.JsonReader
  72. * @mongodb.driver.manual reference/mongodb-extended-json/ MongoDB Extended JSON
  73. *
  74. * @since 3.4
  75. */
  76. public static BsonArray parse(final String json) {
  77. return new BsonArrayCodec().decode(new JsonReader(json), DecoderContext.builder().build());
  78. }
  79. /**
  80. * Gets the values in this array as a list of {@code BsonValue} objects.
  81. *
  82. * @return the values in this array.
  83. */
  84. public List<BsonValue> getValues() {
  85. return Collections.unmodifiableList(values);
  86. }
  87. @Override
  88. public BsonType getBsonType() {
  89. return BsonType.ARRAY;
  90. }
  91. @Override
  92. public int size() {
  93. return values.size();
  94. }
  95. @Override
  96. public boolean isEmpty() {
  97. return values.isEmpty();
  98. }
  99. @Override
  100. public boolean contains(final Object o) {
  101. return values.contains(o);
  102. }
  103. @Override
  104. public Iterator<BsonValue> iterator() {
  105. return values.iterator();
  106. }
  107. @Override
  108. public Object[] toArray() {
  109. return values.toArray();
  110. }
  111. @Override
  112. public <T> T[] toArray(final T[] a) {
  113. return values.toArray(a);
  114. }
  115. @Override
  116. public boolean add(final BsonValue bsonValue) {
  117. return values.add(bsonValue);
  118. }
  119. @Override
  120. public boolean remove(final Object o) {
  121. return values.remove(o);
  122. }
  123. @Override
  124. public boolean containsAll(final Collection<?> c) {
  125. return values.containsAll(c);
  126. }
  127. @Override
  128. public boolean addAll(final Collection<? extends BsonValue> c) {
  129. return values.addAll(c);
  130. }
  131. @Override
  132. public boolean addAll(final int index, final Collection<? extends BsonValue> c) {
  133. return values.addAll(index, c);
  134. }
  135. @Override
  136. public boolean removeAll(final Collection<?> c) {
  137. return values.removeAll(c);
  138. }
  139. @Override
  140. public boolean retainAll(final Collection<?> c) {
  141. return values.retainAll(c);
  142. }
  143. @Override
  144. public void clear() {
  145. values.clear();
  146. }
  147. @Override
  148. public BsonValue get(final int index) {
  149. return values.get(index);
  150. }
  151. @Override
  152. public BsonValue set(final int index, final BsonValue element) {
  153. return values.set(index, element);
  154. }
  155. @Override
  156. public void add(final int index, final BsonValue element) {
  157. values.add(index, element);
  158. }
  159. @Override
  160. public BsonValue remove(final int index) {
  161. return values.remove(index);
  162. }
  163. @Override
  164. public int indexOf(final Object o) {
  165. return values.indexOf(o);
  166. }
  167. @Override
  168. public int lastIndexOf(final Object o) {
  169. return values.lastIndexOf(o);
  170. }
  171. @Override
  172. public ListIterator<BsonValue> listIterator() {
  173. return values.listIterator();
  174. }
  175. @Override
  176. public ListIterator<BsonValue> listIterator(final int index) {
  177. return values.listIterator(index);
  178. }
  179. @Override
  180. public List<BsonValue> subList(final int fromIndex, final int toIndex) {
  181. return values.subList(fromIndex, toIndex);
  182. }
  183. @Override
  184. public boolean equals(final Object o) {
  185. if (this == o) {
  186. return true;
  187. }
  188. if (!(o instanceof BsonArray)) {
  189. return false;
  190. }
  191. BsonArray that = (BsonArray) o;
  192. return getValues().equals(that.getValues());
  193. }
  194. @Override
  195. public int hashCode() {
  196. return values.hashCode();
  197. }
  198. @Override
  199. public String toString() {
  200. return "BsonArray{"
  201. + "values=" + values
  202. + '}';
  203. }
  204. @Override
  205. public BsonArray clone() {
  206. BsonArray to = new BsonArray(this.size());
  207. for (BsonValue cur : this) {
  208. switch (cur.getBsonType()) {
  209. case DOCUMENT:
  210. to.add(cur.asDocument().clone());
  211. break;
  212. case ARRAY:
  213. to.add(cur.asArray().clone());
  214. break;
  215. case BINARY:
  216. to.add(BsonBinary.clone(cur.asBinary()));
  217. break;
  218. case JAVASCRIPT_WITH_SCOPE:
  219. to.add(BsonJavaScriptWithScope.clone(cur.asJavaScriptWithScope()));
  220. break;
  221. default:
  222. to.add(cur);
  223. }
  224. }
  225. return to;
  226. }
  227. }