/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/MongoFactoryBean.java

http://github.com/SpringSource/spring-data-mongodb · Java · 192 lines · 103 code · 31 blank · 58 comment · 17 complexity · f63f515b43a13b04f5b682d0afbfa3ee MD5 · raw file

  1. /*
  2. * Copyright 2010-2013 the original author or authors.
  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 org.springframework.data.mongodb.core;
  17. import java.util.ArrayList;
  18. import java.util.Collection;
  19. import java.util.Collections;
  20. import java.util.List;
  21. import org.springframework.beans.factory.DisposableBean;
  22. import org.springframework.beans.factory.FactoryBean;
  23. import org.springframework.beans.factory.InitializingBean;
  24. import org.springframework.dao.DataAccessException;
  25. import org.springframework.dao.support.PersistenceExceptionTranslator;
  26. import org.springframework.data.mongodb.CannotGetMongoDbConnectionException;
  27. import org.springframework.util.StringUtils;
  28. import com.mongodb.Mongo;
  29. import com.mongodb.MongoOptions;
  30. import com.mongodb.ServerAddress;
  31. import com.mongodb.WriteConcern;
  32. /**
  33. * Convenient factory for configuring MongoDB.
  34. *
  35. * @author Thomas Risberg
  36. * @author Graeme Rocher
  37. * @author Oliver Gierke
  38. * @author Thomas Darimont
  39. * @since 1.0
  40. */
  41. public class MongoFactoryBean implements FactoryBean<Mongo>, InitializingBean, DisposableBean,
  42. PersistenceExceptionTranslator {
  43. private Mongo mongo;
  44. private MongoOptions mongoOptions;
  45. private String host;
  46. private Integer port;
  47. private WriteConcern writeConcern;
  48. private List<ServerAddress> replicaSetSeeds;
  49. private List<ServerAddress> replicaPair;
  50. private PersistenceExceptionTranslator exceptionTranslator = new MongoExceptionTranslator();
  51. public void setMongoOptions(MongoOptions mongoOptions) {
  52. this.mongoOptions = mongoOptions;
  53. }
  54. public void setReplicaSetSeeds(ServerAddress[] replicaSetSeeds) {
  55. this.replicaSetSeeds = filterNonNullElementsAsList(replicaSetSeeds);
  56. }
  57. /**
  58. * @deprecated use {@link #setReplicaSetSeeds(ServerAddress[])} instead
  59. *
  60. * @param replicaPair
  61. */
  62. @Deprecated
  63. public void setReplicaPair(ServerAddress[] replicaPair) {
  64. this.replicaPair = filterNonNullElementsAsList(replicaPair);
  65. }
  66. /**
  67. * @param elements the elements to filter <T>
  68. * @return a new unmodifiable {@link List#} from the given elements without nulls
  69. */
  70. private <T> List<T> filterNonNullElementsAsList(T[] elements) {
  71. if (elements == null) {
  72. return Collections.emptyList();
  73. }
  74. List<T> candidateElements = new ArrayList<T>();
  75. for (T element : elements) {
  76. if (element != null) {
  77. candidateElements.add(element);
  78. }
  79. }
  80. return Collections.unmodifiableList(candidateElements);
  81. }
  82. public void setHost(String host) {
  83. this.host = host;
  84. }
  85. public void setPort(int port) {
  86. this.port = port;
  87. }
  88. /**
  89. * Sets the {@link WriteConcern} to be configured for the {@link Mongo} instance to be created.
  90. *
  91. * @param writeConcern
  92. */
  93. public void setWriteConcern(WriteConcern writeConcern) {
  94. this.writeConcern = writeConcern;
  95. }
  96. public void setExceptionTranslator(PersistenceExceptionTranslator exceptionTranslator) {
  97. this.exceptionTranslator = exceptionTranslator;
  98. }
  99. public Mongo getObject() throws Exception {
  100. return mongo;
  101. }
  102. /*
  103. * (non-Javadoc)
  104. * @see org.springframework.beans.factory.FactoryBean#getObjectType()
  105. */
  106. public Class<? extends Mongo> getObjectType() {
  107. return Mongo.class;
  108. }
  109. /*
  110. * (non-Javadoc)
  111. * @see org.springframework.beans.factory.FactoryBean#isSingleton()
  112. */
  113. public boolean isSingleton() {
  114. return true;
  115. }
  116. /*
  117. * (non-Javadoc)
  118. * @see org.springframework.dao.support.PersistenceExceptionTranslator#translateExceptionIfPossible(java.lang.RuntimeException)
  119. */
  120. public DataAccessException translateExceptionIfPossible(RuntimeException ex) {
  121. return exceptionTranslator.translateExceptionIfPossible(ex);
  122. }
  123. /*
  124. * (non-Javadoc)
  125. * @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
  126. */
  127. @SuppressWarnings("deprecation")
  128. public void afterPropertiesSet() throws Exception {
  129. Mongo mongo;
  130. ServerAddress defaultOptions = new ServerAddress();
  131. if (mongoOptions == null) {
  132. mongoOptions = new MongoOptions();
  133. }
  134. if (!isNullOrEmpty(replicaPair)) {
  135. if (replicaPair.size() < 2) {
  136. throw new CannotGetMongoDbConnectionException("A replica pair must have two server entries");
  137. }
  138. mongo = new Mongo(replicaPair.get(0), replicaPair.get(1), mongoOptions);
  139. } else if (!isNullOrEmpty(replicaSetSeeds)) {
  140. mongo = new Mongo(replicaSetSeeds, mongoOptions);
  141. } else {
  142. String mongoHost = StringUtils.hasText(host) ? host : defaultOptions.getHost();
  143. mongo = port != null ? new Mongo(new ServerAddress(mongoHost, port), mongoOptions) : new Mongo(mongoHost,
  144. mongoOptions);
  145. }
  146. if (writeConcern != null) {
  147. mongo.setWriteConcern(writeConcern);
  148. }
  149. this.mongo = mongo;
  150. }
  151. private boolean isNullOrEmpty(Collection<?> elements) {
  152. return elements == null || elements.isEmpty();
  153. }
  154. /*
  155. * (non-Javadoc)
  156. * @see org.springframework.beans.factory.DisposableBean#destroy()
  157. */
  158. public void destroy() throws Exception {
  159. this.mongo.close();
  160. }
  161. }