| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- /* Copyright 2010-present 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 MongoDB.Bson;
- using MongoDB.Bson.Serialization;
- using MongoDB.Driver.Core.Misc;
- namespace MongoDB.Driver
- {
- /// <summary>
- /// Base class for updates.
- /// </summary>
- /// <typeparam name="TDocument">The type of the document.</typeparam>
- public abstract class UpdateDefinition<TDocument>
- {
- /// <summary>
- /// Renders the update to a <see cref="BsonDocument"/>.
- /// </summary>
- /// <param name="documentSerializer">The document serializer.</param>
- /// <param name="serializerRegistry">The serializer registry.</param>
- /// <returns>A <see cref="BsonDocument"/>.</returns>
- public abstract BsonDocument Render(IBsonSerializer<TDocument> documentSerializer, IBsonSerializerRegistry serializerRegistry);
- /// <summary>
- /// Performs an implicit conversion from <see cref="BsonDocument"/> to <see cref="UpdateDefinition{TDocument}"/>.
- /// </summary>
- /// <param name="document">The document.</param>
- /// <returns>
- /// The result of the conversion.
- /// </returns>
- public static implicit operator UpdateDefinition<TDocument>(BsonDocument document)
- {
- if (document == null)
- {
- return null;
- }
- return new BsonDocumentUpdateDefinition<TDocument>(document);
- }
- /// <summary>
- /// Performs an implicit conversion from <see cref="System.String"/> to <see cref="UpdateDefinition{TDocument}"/>.
- /// </summary>
- /// <param name="json">The JSON string.</param>
- /// <returns>
- /// The result of the conversion.
- /// </returns>
- public static implicit operator UpdateDefinition<TDocument>(string json)
- {
- if (json == null)
- {
- return null;
- }
- return new JsonUpdateDefinition<TDocument>(json);
- }
- }
- /// <summary>
- /// A <see cref="BsonDocument"/> based update.
- /// </summary>
- /// <typeparam name="TDocument">The type of the document.</typeparam>
- public sealed class BsonDocumentUpdateDefinition<TDocument> : UpdateDefinition<TDocument>
- {
- private readonly BsonDocument _document;
- /// <summary>
- /// Initializes a new instance of the <see cref="BsonDocumentUpdateDefinition{TDocument}"/> class.
- /// </summary>
- /// <param name="document">The document.</param>
- public BsonDocumentUpdateDefinition(BsonDocument document)
- {
- _document = Ensure.IsNotNull(document, nameof(document));
- }
- /// <summary>
- /// Gets the document.
- /// </summary>
- public BsonDocument Document
- {
- get { return _document; }
- }
- /// <inheritdoc />
- public override BsonDocument Render(IBsonSerializer<TDocument> documentSerializer, IBsonSerializerRegistry serializerRegistry)
- {
- return _document;
- }
- }
- /// <summary>
- /// A JSON <see cref="String" /> based update.
- /// </summary>
- /// <typeparam name="TDocument">The type of the document.</typeparam>
- public sealed class JsonUpdateDefinition<TDocument> : UpdateDefinition<TDocument>
- {
- private readonly string _json;
- /// <summary>
- /// Initializes a new instance of the <see cref="JsonUpdateDefinition{TDocument}"/> class.
- /// </summary>
- /// <param name="json">The json.</param>
- public JsonUpdateDefinition(string json)
- {
- _json = Ensure.IsNotNullOrEmpty(json, nameof(json));
- }
- /// <summary>
- /// Gets the json.
- /// </summary>
- public string Json
- {
- get { return _json; }
- }
- /// <inheritdoc />
- public override BsonDocument Render(IBsonSerializer<TDocument> documentSerializer, IBsonSerializerRegistry serializerRegistry)
- {
- return BsonDocument.Parse(_json);
- }
- }
- /// <summary>
- /// An <see cref="Object" /> based update.
- /// </summary>
- /// <typeparam name="TDocument">The type of the document.</typeparam>
- public sealed class ObjectUpdateDefinition<TDocument> : UpdateDefinition<TDocument>
- {
- private readonly object _obj;
- /// <summary>
- /// Initializes a new instance of the <see cref="ObjectUpdateDefinition{TDocument}"/> class.
- /// </summary>
- /// <param name="obj">The object.</param>
- public ObjectUpdateDefinition(object obj)
- {
- _obj = Ensure.IsNotNull(obj, nameof(obj));
- }
- /// <summary>
- /// Gets the object.
- /// </summary>
- public object Object
- {
- get { return _obj; }
- }
- /// <inheritdoc />
- public override BsonDocument Render(IBsonSerializer<TDocument> documentSerializer, IBsonSerializerRegistry serializerRegistry)
- {
- var serializer = serializerRegistry.GetSerializer(_obj.GetType());
- return new BsonDocumentWrapper(_obj, serializer);
- }
- }
- }
|