/driver-core/src/test/functional/com/mongodb/binding/SingleConnectionBinding.java

http://github.com/mongodb/mongo-java-driver · Java · 152 lines · 101 code · 20 blank · 31 comment · 7 complexity · 92b6ef1e5449f7ebe62d1fb1ecde2130 MD5 · raw file

  1. /*
  2. * Copyright (c) 2008-2014 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.binding;
  17. import com.mongodb.ReadPreference;
  18. import com.mongodb.connection.Cluster;
  19. import com.mongodb.connection.Connection;
  20. import com.mongodb.connection.Server;
  21. import com.mongodb.connection.ServerDescription;
  22. import com.mongodb.selector.ReadPreferenceServerSelector;
  23. import com.mongodb.selector.WritableServerSelector;
  24. import static com.mongodb.ReadPreference.primary;
  25. import static com.mongodb.assertions.Assertions.isTrue;
  26. import static com.mongodb.assertions.Assertions.notNull;
  27. /**
  28. * A binding that ensures that all reads use the same connection, and all writes use the same connection.
  29. *
  30. * <p>If the readPreference is {#link ReadPreference.primary()} then all reads and writes will use the same connection.</p>
  31. */
  32. public class SingleConnectionBinding implements ReadWriteBinding {
  33. private final ReadPreference readPreference;
  34. private final Connection readConnection;
  35. private final Connection writeConnection;
  36. private final Server readServer;
  37. private final Server writeServer;
  38. private int count = 1;
  39. /**
  40. * Create a new binding with the given cluster.
  41. *
  42. * @param cluster a non-null Cluster which will be used to select a server to bind to
  43. */
  44. public SingleConnectionBinding(final Cluster cluster) {
  45. this(cluster, primary());
  46. }
  47. /**
  48. * Create a new binding with the given cluster.
  49. *
  50. * @param cluster a non-null Cluster which will be used to select a server to bind to
  51. * @param readPreference the readPreference for reads, if not primary a separate connection will be used for reads
  52. */
  53. public SingleConnectionBinding(final Cluster cluster, final ReadPreference readPreference) {
  54. notNull("cluster", cluster);
  55. this.readPreference = notNull("readPreference", readPreference);
  56. writeServer = cluster.selectServer(new WritableServerSelector());
  57. writeConnection = writeServer.getConnection();
  58. readServer = cluster.selectServer(new ReadPreferenceServerSelector(readPreference));
  59. readConnection = readServer.getConnection();
  60. }
  61. @Override
  62. public int getCount() {
  63. return count;
  64. }
  65. @Override
  66. public SingleConnectionBinding retain() {
  67. count++;
  68. return this;
  69. }
  70. @Override
  71. public void release() {
  72. count--;
  73. if (count == 0) {
  74. writeConnection.release();
  75. readConnection.release();
  76. }
  77. }
  78. @Override
  79. public ReadPreference getReadPreference() {
  80. isTrue("open", getCount() > 0);
  81. return readPreference;
  82. }
  83. @Override
  84. public ConnectionSource getReadConnectionSource() {
  85. isTrue("open", getCount() > 0);
  86. if (readPreference == primary()) {
  87. return getWriteConnectionSource();
  88. } else {
  89. return new SingleConnectionSource(readServer, readConnection);
  90. }
  91. }
  92. @Override
  93. public ConnectionSource getWriteConnectionSource() {
  94. isTrue("open", getCount() > 0);
  95. return new SingleConnectionSource(writeServer, writeConnection);
  96. }
  97. private final class SingleConnectionSource implements ConnectionSource {
  98. private final Connection connection;
  99. private final Server server;
  100. private int count = 1;
  101. public SingleConnectionSource(final Server server, final Connection connection) {
  102. this.server = server;
  103. this.connection = connection;
  104. SingleConnectionBinding.this.retain();
  105. }
  106. @Override
  107. public ServerDescription getServerDescription() {
  108. return server.getDescription();
  109. }
  110. @Override
  111. public Connection getConnection() {
  112. isTrue("open", getCount() > 0);
  113. return connection.retain();
  114. }
  115. @Override
  116. public int getCount() {
  117. return count;
  118. }
  119. @Override
  120. public SingleConnectionSource retain() {
  121. count++;
  122. return this;
  123. }
  124. @Override
  125. public void release() {
  126. count--;
  127. if (getCount() == 0) {
  128. SingleConnectionBinding.this.release();
  129. }
  130. }
  131. }
  132. }