| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /* 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 System.Collections.Generic;
- using System.IO;
- namespace MongoDB.Bson.IO
- {
- /// <summary>
- /// Represents a factory for IBsonBuffers.
- /// </summary>
- public static class ByteBufferFactory
- {
- /// <summary>
- /// Creates a buffer of the specified length. Depending on the length, either a SingleChunkBuffer or a MultiChunkBuffer will be created.
- /// </summary>
- /// <param name="chunkSource">The chunk pool.</param>
- /// <param name="minimumCapacity">The minimum capacity.</param>
- /// <returns>A buffer with at least the minimum capacity.</returns>
- public static IByteBuffer Create(IBsonChunkSource chunkSource, int minimumCapacity)
- {
- if (chunkSource == null)
- {
- throw new ArgumentNullException("chunkSource");
- }
- if (minimumCapacity <= 0)
- {
- throw new ArgumentOutOfRangeException("minimumCapacity");
- }
- var capacity = 0;
- var chunks = new List<IBsonChunk>();
- while (capacity < minimumCapacity)
- {
- var chunk = chunkSource.GetChunk(minimumCapacity - capacity);
- chunks.Add(chunk);
- capacity += chunk.Bytes.Count;
- }
- if (chunks.Count == 1)
- {
- var chunk = chunks[0];
- ByteArrayChunk byteArrayChunk;
- if ((byteArrayChunk = chunk as ByteArrayChunk) != null)
- {
- var segment = byteArrayChunk.Bytes;
- if (segment.Offset == 0)
- {
- return new ByteArrayBuffer(segment.Array, segment.Count, isReadOnly: false);
- }
- }
- return new SingleChunkBuffer(chunk, 0, isReadOnly: false);
- }
- else
- {
- return new MultiChunkBuffer(chunks, 0, isReadOnly: false);
- }
- }
- }
- }
|