/* Copyright 2015-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 MongoDB.Bson; using MongoDB.Bson.Serialization; using MongoDB.Bson.Serialization.Serializers; using MongoDB.Driver.Core.Misc; namespace MongoDB.Driver.GridFS { /// /// Represents a serializer for GridFSFileInfo. /// /// The type of the file identifier. public class GridFSFileInfoSerializer : BsonDocumentBackedClassSerializer>, IGridFSFileInfoSerializer { // constructors /// /// Initializes a new instance of the class. /// public GridFSFileInfoSerializer() : this(BsonSerializer.LookupSerializer()) { } /// /// Initializes a new instance of the class. /// /// The id serializer. public GridFSFileInfoSerializer(IBsonSerializer idSerializer) { Ensure.IsNotNull(idSerializer, nameof(idSerializer)); RegisterMember("Aliases", "aliases", new ArraySerializer()); RegisterMember("ChunkSizeBytes", "chunkSize", new Int32Serializer()); RegisterMember("ContentType", "contentType", new StringSerializer()); RegisterMember("Filename", "filename", new StringSerializer()); RegisterMember("Id", "_id", idSerializer); RegisterMember("Length", "length", new Int64Serializer()); RegisterMember("MD5", "md5", new StringSerializer()); RegisterMember("Metadata", "metadata", BsonDocumentSerializer.Instance); RegisterMember("UploadDateTime", "uploadDate", new DateTimeSerializer()); } // protected methods /// protected override GridFSFileInfo CreateInstance(BsonDocument backingDocument) { return new GridFSFileInfo(backingDocument, this); } } }