| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755 |
- /* Copyright 2010-2016 MongoDB Inc.
- *
- * 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.
- */
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using MongoDB.Shared;
- namespace MongoDB.Bson
- {
- /// <summary>
- /// Represents a BSON array.
- /// </summary>
- #if NET45
- [Serializable]
- #endif
- public class BsonArray : BsonValue, IComparable<BsonArray>, IEquatable<BsonArray>, IList<BsonValue>
- {
- // private fields
- private readonly List<BsonValue> _values;
- // constructors
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- public BsonArray()
- : this(0)
- {
- }
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public BsonArray(IEnumerable<bool> values)
- : this(0)
- {
- AddRange(values);
- }
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public BsonArray(IEnumerable<BsonValue> values)
- : this(0)
- {
- AddRange(values);
- }
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public BsonArray(IEnumerable<DateTime> values)
- : this(0)
- {
- AddRange(values);
- }
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public BsonArray(IEnumerable<double> values)
- : this(0)
- {
- AddRange(values);
- }
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public BsonArray(IEnumerable<int> values)
- : this(0)
- {
- AddRange(values);
- }
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public BsonArray(IEnumerable<long> values)
- : this(0)
- {
- AddRange(values);
- }
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public BsonArray(IEnumerable<ObjectId> values)
- : this(0)
- {
- AddRange(values);
- }
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public BsonArray(IEnumerable<string> values)
- : this(0)
- {
- AddRange(values);
- }
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public BsonArray(IEnumerable values)
- : this(0)
- {
- AddRange(values);
- }
- /// <summary>
- /// Initializes a new instance of the BsonArray class.
- /// </summary>
- /// <param name="capacity">The initial capacity of the array.</param>
- public BsonArray(int capacity)
- {
- _values = new List<BsonValue>(capacity);
- }
- // public operators
- /// <summary>
- /// Compares two BsonArray values.
- /// </summary>
- /// <param name="lhs">The first BsonArray.</param>
- /// <param name="rhs">The other BsonArray.</param>
- /// <returns>True if the two BsonArray values are not equal according to ==.</returns>
- public static bool operator !=(BsonArray lhs, BsonArray rhs)
- {
- return !(lhs == rhs);
- }
- /// <summary>
- /// Compares two BsonArray values.
- /// </summary>
- /// <param name="lhs">The first BsonArray.</param>
- /// <param name="rhs">The other BsonArray.</param>
- /// <returns>True if the two BsonArray values are equal according to ==.</returns>
- public static bool operator ==(BsonArray lhs, BsonArray rhs)
- {
- return object.Equals(lhs, rhs); // handles lhs == null correctly
- }
- // public properties
- /// <summary>
- /// Gets the BsonType of this BsonValue.
- /// </summary>
- public override BsonType BsonType
- {
- get { return BsonType.Array; }
- }
- /// <summary>
- /// Gets or sets the total number of elements the internal data structure can hold without resizing.
- /// </summary>
- public virtual int Capacity
- {
- get { return _values.Capacity; }
- set { _values.Capacity = value; }
- }
- /// <summary>
- /// Gets the count of array elements.
- /// </summary>
- public virtual int Count
- {
- get { return _values.Count; }
- }
- /// <summary>
- /// Gets whether the array is read-only.
- /// </summary>
- public virtual bool IsReadOnly
- {
- get { return false; }
- }
- /// <summary>
- /// Gets the array elements as raw values (see BsonValue.RawValue).
- /// </summary>
- [Obsolete("Use ToArray to ToList instead.")]
- public virtual IEnumerable<object> RawValues
- {
- get { return _values.Select(v => v.RawValue); }
- }
- /// <summary>
- /// Gets the array elements.
- /// </summary>
- public virtual IEnumerable<BsonValue> Values
- {
- get { return _values; }
- }
- // public indexers
- /// <summary>
- /// Gets or sets a value by position.
- /// </summary>
- /// <param name="index">The position.</param>
- /// <returns>The value.</returns>
- public override BsonValue this[int index]
- {
- get { return _values[index]; }
- set
- {
- if (value == null)
- {
- throw new ArgumentNullException("value");
- }
- _values[index] = value;
- }
- }
- // public static methods
- /// <summary>
- /// Creates a new BsonArray.
- /// </summary>
- /// <param name="value">A value to be mapped to a BsonArray.</param>
- /// <returns>A BsonArray or null.</returns>
- public new static BsonArray Create(object value)
- {
- if (value == null)
- {
- throw new ArgumentNullException("value");
- }
- return (BsonArray)BsonTypeMapper.MapToBsonValue(value, BsonType.Array);
- }
- // public methods
- /// <summary>
- /// Adds an element to the array.
- /// </summary>
- /// <param name="value">The value to add to the array.</param>
- /// <returns>The array (so method calls can be chained).</returns>
- public virtual BsonArray Add(BsonValue value)
- {
- if (value == null)
- {
- throw new ArgumentNullException("value");
- }
- _values.Add(value);
- return this;
- }
- /// <summary>
- /// Adds multiple elements to the array.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- /// <returns>The array (so method calls can be chained).</returns>
- public virtual BsonArray AddRange(IEnumerable<bool> values)
- {
- if (values == null)
- {
- throw new ArgumentNullException("values");
- }
- foreach (var value in values)
- {
- Add((BsonBoolean)value);
- }
- return this;
- }
- /// <summary>
- /// Adds multiple elements to the array.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- /// <returns>The array (so method calls can be chained).</returns>
- public virtual BsonArray AddRange(IEnumerable<BsonValue> values)
- {
- if (values == null)
- {
- throw new ArgumentNullException("values");
- }
- foreach (var value in values)
- {
- Add(value);
- }
- return this;
- }
- /// <summary>
- /// Adds multiple elements to the array.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- /// <returns>The array (so method calls can be chained).</returns>
- public virtual BsonArray AddRange(IEnumerable<DateTime> values)
- {
- if (values == null)
- {
- throw new ArgumentNullException("values");
- }
- foreach (var value in values)
- {
- Add(new BsonDateTime(value));
- }
- return this;
- }
- /// <summary>
- /// Adds multiple elements to the array.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- /// <returns>The array (so method calls can be chained).</returns>
- public virtual BsonArray AddRange(IEnumerable<double> values)
- {
- if (values == null)
- {
- throw new ArgumentNullException("values");
- }
- foreach (var value in values)
- {
- Add((BsonDouble)value);
- }
- return this;
- }
- /// <summary>
- /// Adds multiple elements to the array.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- /// <returns>The array (so method calls can be chained).</returns>
- public virtual BsonArray AddRange(IEnumerable<int> values)
- {
- if (values == null)
- {
- throw new ArgumentNullException("values");
- }
- foreach (var value in values)
- {
- Add((BsonInt32)value);
- }
- return this;
- }
- /// <summary>
- /// Adds multiple elements to the array.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- /// <returns>The array (so method calls can be chained).</returns>
- public virtual BsonArray AddRange(IEnumerable<long> values)
- {
- if (values == null)
- {
- throw new ArgumentNullException("values");
- }
- foreach (var value in values)
- {
- Add((BsonInt64)value);
- }
- return this;
- }
- /// <summary>
- /// Adds multiple elements to the array.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- /// <returns>The array (so method calls can be chained).</returns>
- public virtual BsonArray AddRange(IEnumerable<ObjectId> values)
- {
- if (values == null)
- {
- throw new ArgumentNullException("values");
- }
- foreach (var value in values)
- {
- Add(new BsonObjectId(value));
- }
- return this;
- }
- /// <summary>
- /// Adds multiple elements to the array.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- /// <returns>The array (so method calls can be chained).</returns>
- public virtual BsonArray AddRange(IEnumerable<string> values)
- {
- if (values == null)
- {
- throw new ArgumentNullException("values");
- }
- foreach (var value in values)
- {
- _values.Add((value == null) ? (BsonValue)BsonNull.Value : (BsonString)value);
- }
- return this;
- }
- /// <summary>
- /// Adds multiple elements to the array.
- /// </summary>
- /// <param name="values">A list of values to add to the array.</param>
- /// <returns>The array (so method calls can be chained).</returns>
- public virtual BsonArray AddRange(IEnumerable values)
- {
- if (values == null)
- {
- throw new ArgumentNullException("values");
- }
- foreach (var value in values)
- {
- Add(BsonTypeMapper.MapToBsonValue(value));
- }
- return this;
- }
- /// <summary>
- /// Creates a shallow clone of the array (see also DeepClone).
- /// </summary>
- /// <returns>A shallow clone of the array.</returns>
- public override BsonValue Clone()
- {
- var clone = new BsonArray(_values.Capacity);
- foreach (var value in _values)
- {
- clone.Add(value);
- }
- return clone;
- }
- /// <summary>
- /// Clears the array.
- /// </summary>
- public virtual void Clear()
- {
- _values.Clear();
- }
- /// <summary>
- /// Compares the array to another array.
- /// </summary>
- /// <param name="rhs">The other array.</param>
- /// <returns>A 32-bit signed integer that indicates whether this array is less than, equal to, or greather than the other.</returns>
- public virtual int CompareTo(BsonArray rhs)
- {
- if (rhs == null) { return 1; }
- // lhs and rhs might be subclasses of BsonArray
- using (var lhsEnumerator = GetEnumerator())
- using (var rhsEnumerator = rhs.GetEnumerator())
- {
- while (true)
- {
- var lhsHasNext = lhsEnumerator.MoveNext();
- var rhsHasNext = rhsEnumerator.MoveNext();
- if (!lhsHasNext && !rhsHasNext) { return 0; }
- if (!lhsHasNext) { return -1; }
- if (!rhsHasNext) { return 1; }
- var lhsValue = lhsEnumerator.Current;
- var rhsValue = rhsEnumerator.Current;
- var result = lhsValue.CompareTo(rhsValue);
- if (result != 0) { return result; }
- }
- }
- }
- /// <summary>
- /// Compares the array to another BsonValue.
- /// </summary>
- /// <param name="other">The other BsonValue.</param>
- /// <returns>A 32-bit signed integer that indicates whether this array is less than, equal to, or greather than the other BsonValue.</returns>
- public override int CompareTo(BsonValue other)
- {
- if (other == null) { return 1; }
- var otherArray = other as BsonArray;
- if (otherArray != null)
- {
- return CompareTo(otherArray);
- }
- return CompareTypeTo(other);
- }
- /// <summary>
- /// Tests whether the array contains a value.
- /// </summary>
- /// <param name="value">The value to test for.</param>
- /// <returns>True if the array contains the value.</returns>
- public virtual bool Contains(BsonValue value)
- {
- // don't throw ArgumentNullException if value is null
- // just let _values.Contains return false
- return _values.Contains(value);
- }
- /// <summary>
- /// Copies elements from this array to another array.
- /// </summary>
- /// <param name="array">The other array.</param>
- /// <param name="arrayIndex">The zero based index of the other array at which to start copying.</param>
- public virtual void CopyTo(BsonValue[] array, int arrayIndex)
- {
- for (int i = 0, j = arrayIndex; i < _values.Count; i++, j++)
- {
- array[j] = _values[i];
- }
- }
- /// <summary>
- /// Copies elements from this array to another array as raw values (see BsonValue.RawValue).
- /// </summary>
- /// <param name="array">The other array.</param>
- /// <param name="arrayIndex">The zero based index of the other array at which to start copying.</param>
- [Obsolete("Use ToArray or ToList instead.")]
- public virtual void CopyTo(object[] array, int arrayIndex)
- {
- for (int i = 0, j = arrayIndex; i < _values.Count; i++, j++)
- {
- array[j] = _values[i].RawValue;
- }
- }
- /// <summary>
- /// Creates a deep clone of the array (see also Clone).
- /// </summary>
- /// <returns>A deep clone of the array.</returns>
- public override BsonValue DeepClone()
- {
- var clone = new BsonArray(_values.Capacity);
- foreach (var value in _values)
- {
- clone.Add(value.DeepClone());
- }
- return clone;
- }
- /// <summary>
- /// Compares this array to another array.
- /// </summary>
- /// <param name="obj">The other array.</param>
- /// <returns>True if the two arrays are equal.</returns>
- public bool Equals(BsonArray obj)
- {
- return Equals((object)obj); // handles obj == null correctly
- }
- /// <summary>
- /// Compares this BsonArray to another object.
- /// </summary>
- /// <param name="obj">The other object.</param>
- /// <returns>True if the other object is a BsonArray and equal to this one.</returns>
- public override bool Equals(object obj)
- {
- if (object.ReferenceEquals(obj, null) || !(obj is BsonArray)) { return false; }
- // lhs and rhs might be subclasses of BsonArray
- var rhs = (BsonArray)obj;
- return Values.SequenceEqual(rhs.Values);
- }
- /// <summary>
- /// Gets an enumerator that can enumerate the elements of the array.
- /// </summary>
- /// <returns>An enumerator.</returns>
- public virtual IEnumerator<BsonValue> GetEnumerator()
- {
- return _values.GetEnumerator();
- }
- /// <summary>
- /// Gets the hash code.
- /// </summary>
- /// <returns>The hash code.</returns>
- public override int GetHashCode()
- {
- return new Hasher()
- .Hash(BsonType)
- .HashElements(Values)
- .GetHashCode();
- }
- /// <summary>
- /// Gets the index of a value in the array.
- /// </summary>
- /// <param name="value">The value to search for.</param>
- /// <returns>The zero based index of the value (or -1 if not found).</returns>
- public virtual int IndexOf(BsonValue value)
- {
- if (value == null)
- {
- throw new ArgumentNullException("value");
- }
- return _values.IndexOf(value);
- }
- /// <summary>
- /// Gets the index of a value in the array.
- /// </summary>
- /// <param name="value">The value to search for.</param>
- /// <param name="index">The zero based index at which to start the search.</param>
- /// <returns>The zero based index of the value (or -1 if not found).</returns>
- public virtual int IndexOf(BsonValue value, int index)
- {
- if (value == null)
- {
- throw new ArgumentNullException("value");
- }
- return _values.IndexOf(value, index);
- }
- /// <summary>
- /// Gets the index of a value in the array.
- /// </summary>
- /// <param name="value">The value to search for.</param>
- /// <param name="index">The zero based index at which to start the search.</param>
- /// <param name="count">The number of elements to search.</param>
- /// <returns>The zero based index of the value (or -1 if not found).</returns>
- public virtual int IndexOf(BsonValue value, int index, int count)
- {
- if (value == null)
- {
- throw new ArgumentNullException("value");
- }
- return _values.IndexOf(value, index, count);
- }
- /// <summary>
- /// Inserts a new value into the array.
- /// </summary>
- /// <param name="index">The zero based index at which to insert the new value.</param>
- /// <param name="value">The new value.</param>
- public virtual void Insert(int index, BsonValue value)
- {
- if (value == null)
- {
- throw new ArgumentNullException("value");
- }
- _values.Insert(index, value);
- }
- /// <summary>
- /// Removes the first occurrence of a value from the array.
- /// </summary>
- /// <param name="value">The value to remove.</param>
- /// <returns>True if the value was removed.</returns>
- public virtual bool Remove(BsonValue value)
- {
- if (value == null)
- {
- throw new ArgumentNullException("value");
- }
- return _values.Remove(value);
- }
- /// <summary>
- /// Removes an element from the array.
- /// </summary>
- /// <param name="index">The zero based index of the element to remove.</param>
- public virtual void RemoveAt(int index)
- {
- _values.RemoveAt(index);
- }
- /// <summary>
- /// Converts the BsonArray to an array of BsonValues.
- /// </summary>
- /// <returns>An array of BsonValues.</returns>
- public virtual BsonValue[] ToArray()
- {
- return _values.ToArray();
- }
- /// <summary>
- /// Converts the BsonArray to a list of BsonValues.
- /// </summary>
- /// <returns>A list of BsonValues.</returns>
- public virtual List<BsonValue> ToList()
- {
- return _values.ToList();
- }
- /// <summary>
- /// Returns a string representation of the array.
- /// </summary>
- /// <returns>A string representation of the array.</returns>
- public override string ToString()
- {
- var sb = new StringBuilder();
- sb.Append("[");
- for (int i = 0; i < _values.Count; i++)
- {
- if (i > 0) { sb.Append(", "); }
- sb.Append(_values[i].ToString());
- }
- sb.Append("]");
- return sb.ToString();
- }
- // explicit interface implementations
- // our version of Add returns BsonArray
- void ICollection<BsonValue>.Add(BsonValue value)
- {
- Add(value);
- }
- IEnumerator IEnumerable.GetEnumerator()
- {
- return GetEnumerator();
- }
- }
- }
|