/driver-core/src/main/com/mongodb/internal/connection/Compressor.java

http://github.com/mongodb/mongo-java-driver · Java · 134 lines · 94 code · 20 blank · 20 comment · 9 complexity · 6a303e843cd8f1a5b2547279f48c6933 MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb.internal.connection;
  17. import com.mongodb.MongoInternalException;
  18. import org.bson.ByteBuf;
  19. import org.bson.io.BsonOutput;
  20. import java.io.ByteArrayOutputStream;
  21. import java.io.IOException;
  22. import java.io.InputStream;
  23. import java.io.OutputStream;
  24. import java.io.UnsupportedEncodingException;
  25. import java.util.List;
  26. abstract class Compressor {
  27. static final int BUFFER_SIZE = 256;
  28. abstract String getName();
  29. abstract byte getId();
  30. void compress(final List<ByteBuf> source, final BsonOutput target) {
  31. BufferExposingByteArrayOutputStream baos = new BufferExposingByteArrayOutputStream(1024);
  32. OutputStream outputStream = null;
  33. try {
  34. outputStream = getOutputStream(baos);
  35. byte[] scratch = new byte[BUFFER_SIZE];
  36. for (ByteBuf cur : source) {
  37. while (cur.hasRemaining()) {
  38. int numBytes = Math.min(cur.remaining(), scratch.length);
  39. cur.get(scratch, 0, numBytes);
  40. outputStream.write(scratch, 0, numBytes);
  41. }
  42. }
  43. } catch (IOException e) {
  44. throw new MongoInternalException("Unexpected IOException", e);
  45. } finally {
  46. try {
  47. if (outputStream != null) {
  48. outputStream.close();
  49. }
  50. } catch (IOException e) {
  51. // ignore
  52. }
  53. }
  54. target.writeBytes(baos.getInternalBytes(), 0, baos.size());
  55. }
  56. void uncompress(final ByteBuf source, final ByteBuf target) {
  57. InputStream inputStream = null;
  58. try {
  59. inputStream = getInputStream(new ByteBufInputStream(source));
  60. byte[] scratch = new byte[BUFFER_SIZE];
  61. int numBytes = inputStream.read(scratch);
  62. while (numBytes != -1) {
  63. target.put(scratch, 0, numBytes);
  64. numBytes = inputStream.read(scratch);
  65. }
  66. } catch (IOException e) {
  67. throw new MongoInternalException("Unexpected IOException", e);
  68. } finally {
  69. try {
  70. if (inputStream != null) {
  71. inputStream.close();
  72. }
  73. } catch (IOException e) {
  74. // ignore
  75. }
  76. }
  77. }
  78. // override this if not overriding the compress method
  79. OutputStream getOutputStream(final OutputStream source) throws IOException {
  80. throw new UnsupportedEncodingException();
  81. }
  82. // override this if not overriding the uncompress method
  83. InputStream getInputStream(final InputStream source) throws IOException {
  84. throw new UnsupportedOperationException();
  85. }
  86. private static final class ByteBufInputStream extends InputStream {
  87. private final ByteBuf source;
  88. ByteBufInputStream(final ByteBuf source) {
  89. this.source = source;
  90. }
  91. @Override
  92. public int read(final byte[] bytes, final int offset, final int length) {
  93. if (!source.hasRemaining()) {
  94. return -1;
  95. }
  96. int bytesToRead = length > source.remaining() ? source.remaining() : length;
  97. source.get(bytes, offset, bytesToRead);
  98. return bytesToRead;
  99. }
  100. @Override
  101. public int read() {
  102. throw new UnsupportedOperationException();
  103. }
  104. }
  105. // Just so we don't have to copy the buffer
  106. private static final class BufferExposingByteArrayOutputStream extends ByteArrayOutputStream {
  107. BufferExposingByteArrayOutputStream(final int size) {
  108. super(size);
  109. }
  110. byte[] getInternalBytes() {
  111. return buf;
  112. }
  113. }
  114. }