/src/main/com/mongodb/DefaultClusterableServerFactory.java

http://github.com/mongodb/mongo-java-driver · Java · 60 lines · 38 code · 7 blank · 15 comment · 0 complexity · df9a05218fc8c346ba80780c3ffd6959 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;
  17. import java.util.concurrent.ScheduledExecutorService;
  18. import static java.util.concurrent.TimeUnit.MILLISECONDS;
  19. class DefaultClusterableServerFactory implements ClusterableServerFactory {
  20. private final String clusterId;
  21. private ServerSettings settings;
  22. private final ScheduledExecutorService scheduledExecutorService;
  23. private final Mongo mongo;
  24. public DefaultClusterableServerFactory(final String clusterId, final ServerSettings settings,
  25. final ScheduledExecutorService scheduledExecutorService,
  26. final Mongo mongo) {
  27. this.clusterId = clusterId;
  28. this.settings = settings;
  29. this.scheduledExecutorService = scheduledExecutorService;
  30. this.mongo = mongo;
  31. }
  32. @Override
  33. public ClusterableServer create(final ServerAddress serverAddress) {
  34. MongoOptions options = mongo.getMongoOptions();
  35. ConnectionPoolSettings connectionPoolSettings =
  36. ConnectionPoolSettings.builder()
  37. .minSize(options.minConnectionsPerHost)
  38. .maxSize(options.getConnectionsPerHost())
  39. .maxConnectionIdleTime(options.maxConnectionIdleTime, MILLISECONDS)
  40. .maxConnectionLifeTime(options.maxConnectionLifeTime, MILLISECONDS)
  41. .maxWaitQueueSize(options.getConnectionsPerHost() * options.getThreadsAllowedToBlockForConnectionMultiplier())
  42. .maxWaitTime(options.getMaxWaitTime(), MILLISECONDS)
  43. .build();
  44. return new DefaultServer(serverAddress, settings,
  45. new PooledConnectionProvider(clusterId, serverAddress, new DBPortFactory(options), connectionPoolSettings,
  46. new JMXConnectionPoolListener(mongo.getMongoOptions().getDescription())),
  47. scheduledExecutorService, mongo);
  48. }
  49. @Override
  50. public void close() {
  51. scheduledExecutorService.shutdownNow();
  52. }
  53. }