/app/uk/co/panaxiom/playjongo/PlayJongo.java

https://github.com/alexanderjarvis/play-jongo · Java · 122 lines · 97 code · 24 blank · 1 comment · 12 complexity · 8fb5ccc8417bfda3c06d113e9b2b9d5e MD5 · raw file

  1. package uk.co.panaxiom.playjongo;
  2. import java.lang.reflect.Constructor;
  3. import org.jongo.Jongo;
  4. import org.jongo.Mapper;
  5. import org.jongo.MongoCollection;
  6. import play.Configuration;
  7. import play.Logger;
  8. import play.Play;
  9. import com.mongodb.DB;
  10. import com.mongodb.Mongo;
  11. import com.mongodb.MongoClient;
  12. import com.mongodb.gridfs.GridFS;
  13. public class PlayJongo {
  14. private static volatile PlayJongo INSTANCE = null;
  15. MongoClient mongo = null;
  16. Jongo jongo = null;
  17. GridFS gridfs = null;
  18. PlayJongo(Configuration config, ClassLoader classLoader, boolean isTestMode) throws Exception {
  19. String clientFactoryName = config.getString("playjongo.mongoClientFactory");
  20. MongoClientFactory factory = getMongoClientFactory(clientFactoryName, config, isTestMode);
  21. mongo = factory.createClient();
  22. if (mongo == null) {
  23. throw new IllegalStateException("No MongoClient was created by instance of "+ factory.getClass().getName());
  24. }
  25. DB db = mongo.getDB(factory.getDBName());
  26. jongo = new Jongo(db, createMapper(config, classLoader));
  27. if (config.getBoolean("playjongo.gridfs.enabled", false)) {
  28. gridfs = new GridFS(jongo.getDatabase());
  29. }
  30. }
  31. @SuppressWarnings({ "rawtypes", "unchecked" })
  32. protected MongoClientFactory getMongoClientFactory(String className, Configuration config, boolean isTestMode) throws Exception {
  33. if (className != null) {
  34. try {
  35. Class factoryClass = Class.forName(className, true, Thread.currentThread().getContextClassLoader());
  36. if (!MongoClientFactory.class.isAssignableFrom(factoryClass)) {
  37. throw new IllegalStateException("mongoClientFactory '" + className +
  38. "' is not of type " + MongoClientFactory.class.getName());
  39. }
  40. Constructor constructor = null;
  41. try {
  42. constructor = factoryClass.getConstructor(Configuration.class);
  43. } catch (Exception e) {
  44. // can't use that one
  45. }
  46. if (constructor == null) {
  47. return (MongoClientFactory) factoryClass.newInstance();
  48. }
  49. return (MongoClientFactory) constructor.newInstance(config);
  50. } catch (ClassNotFoundException e) {
  51. throw e;
  52. }
  53. }
  54. return new MongoClientFactory(config, isTestMode);
  55. }
  56. private Mapper createMapper(Configuration config, ClassLoader classLoader) throws InstantiationException, IllegalAccessException, ClassNotFoundException {
  57. final String factoryClassName = config.getString("playjongo.mapperfactory",
  58. JongoMapperFactory.DefaultFactory.class.getName());
  59. JongoMapperFactory factory = (JongoMapperFactory) Class.forName(
  60. factoryClassName,
  61. true,
  62. classLoader).newInstance();
  63. return factory.create();
  64. }
  65. public static PlayJongo getInstance() {
  66. if (INSTANCE == null) {
  67. synchronized (PlayJongo.class) {
  68. if (INSTANCE == null) {
  69. try {
  70. INSTANCE = new PlayJongo(Play.application().configuration(), Play.application().classloader(), Play.isTest());
  71. } catch (Exception e) {
  72. Logger.error(e.getClass().getSimpleName(), e);
  73. }
  74. }
  75. }
  76. }
  77. return INSTANCE;
  78. }
  79. public static void forceNewInstance() {
  80. INSTANCE = null;
  81. getInstance();
  82. }
  83. public static Mongo mongo() {
  84. return getInstance().mongo;
  85. }
  86. public static Jongo jongo() {
  87. return getInstance().jongo;
  88. }
  89. public static GridFS gridfs() {
  90. return getInstance().gridfs;
  91. }
  92. public static MongoCollection getCollection(String name) {
  93. return getInstance().jongo.getCollection(name);
  94. }
  95. public static DB getDatabase() {
  96. return getInstance().jongo.getDatabase();
  97. }
  98. }