/* 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.Text; namespace MongoDB.Bson.IO { /// /// Represents settings for a BsonBinaryReader. /// #if NET45 [Serializable] #endif public class BsonBinaryReaderSettings : BsonReaderSettings { // private static fields private static BsonBinaryReaderSettings __defaults = null; // delay creation to pick up the latest default values // private fields private UTF8Encoding _encoding = Utf8Encodings.Strict; private bool _fixOldBinarySubTypeOnInput = true; private bool _fixOldDateTimeMaxValueOnInput = true; private int _maxDocumentSize = BsonDefaults.MaxDocumentSize; // constructors /// /// Initializes a new instance of the BsonBinaryReaderSettings class. /// public BsonBinaryReaderSettings() { } // public static properties /// /// Gets or sets the default settings for a BsonBinaryReader. /// public static BsonBinaryReaderSettings Defaults { get { if (__defaults == null) { __defaults = new BsonBinaryReaderSettings(); } return __defaults; } set { __defaults = value; } } // public properties /// /// Gets or sets the Encoding. /// public UTF8Encoding Encoding { get { return _encoding; } set { if (value == null) { throw new ArgumentNullException("value"); } if (IsFrozen) { throw new InvalidOperationException("BsonBinaryReaderSettings is frozen."); } _encoding = value; } } /// /// Gets or sets whether to fix occurrences of the old binary subtype on input. /// public bool FixOldBinarySubTypeOnInput { get { return _fixOldBinarySubTypeOnInput; } set { if (IsFrozen) { throw new InvalidOperationException("BsonBinaryReaderSettings is frozen."); } _fixOldBinarySubTypeOnInput = value; } } /// /// Gets or sets whether to fix occurrences of the old representation of DateTime.MaxValue on input. /// public bool FixOldDateTimeMaxValueOnInput { get { return _fixOldDateTimeMaxValueOnInput; } set { if (IsFrozen) { throw new InvalidOperationException("BsonBinaryReaderSettings is frozen."); } _fixOldDateTimeMaxValueOnInput = value; } } /// /// Gets or sets the max document size. /// public int MaxDocumentSize { get { return _maxDocumentSize; } set { if (IsFrozen) { throw new InvalidOperationException("BsonBinaryReaderSettings is frozen."); } _maxDocumentSize = value; } } // public methods /// /// Creates a clone of the settings. /// /// A clone of the settings. public new BsonBinaryReaderSettings Clone() { return (BsonBinaryReaderSettings)CloneImplementation(); } // protected methods /// /// Creates a clone of the settings. /// /// A clone of the settings. protected override BsonReaderSettings CloneImplementation() { var clone = new BsonBinaryReaderSettings { Encoding = _encoding, FixOldBinarySubTypeOnInput = _fixOldBinarySubTypeOnInput, FixOldDateTimeMaxValueOnInput = _fixOldDateTimeMaxValueOnInput, GuidRepresentation = GuidRepresentation, MaxDocumentSize = _maxDocumentSize }; return clone; } } }