/driver/src/main/com/mongodb/DBCollectionObjectFactory.java

http://github.com/mongodb/mongo-java-driver · Java · 95 lines · 65 code · 15 blank · 15 comment · 9 complexity · 76040b88b4fbabad13ec79a985aaa130 MD5 · raw file

  1. /*
  2. * Copyright 2008-2015 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 com.mongodb.annotations.Immutable;
  18. import java.util.Collections;
  19. import java.util.HashMap;
  20. import java.util.List;
  21. import java.util.Map;
  22. @Immutable
  23. final class DBCollectionObjectFactory implements DBObjectFactory {
  24. private final Map<List<String>, Class<? extends DBObject>> pathToClassMap;
  25. private final ReflectionDBObject.JavaWrapper wrapper;
  26. public DBCollectionObjectFactory() {
  27. this(Collections.<List<String>, Class<? extends DBObject>>emptyMap(), null);
  28. }
  29. private DBCollectionObjectFactory(final Map<List<String>, Class<? extends DBObject>> pathToClassMap,
  30. final ReflectionDBObject.JavaWrapper wrapper) {
  31. this.pathToClassMap = pathToClassMap;
  32. this.wrapper = wrapper;
  33. }
  34. @Override
  35. public DBObject getInstance() {
  36. return getInstance(Collections.<String>emptyList());
  37. }
  38. @Override
  39. public DBObject getInstance(final List<String> path) {
  40. Class<? extends DBObject> aClass = getClassForPath(path);
  41. try {
  42. return aClass.newInstance();
  43. } catch (InstantiationException e) {
  44. throw createInternalException(aClass, e);
  45. } catch (IllegalAccessException e) {
  46. throw createInternalException(aClass, e);
  47. }
  48. }
  49. public DBCollectionObjectFactory update(final Class<? extends DBObject> aClass) {
  50. return new DBCollectionObjectFactory(updatePathToClassMap(aClass, Collections.<String>emptyList()),
  51. isReflectionDBObject(aClass) ? ReflectionDBObject.getWrapper(aClass) : wrapper);
  52. }
  53. public DBCollectionObjectFactory update(final Class<? extends DBObject> aClass, final List<String> path) {
  54. return new DBCollectionObjectFactory(updatePathToClassMap(aClass, path), wrapper);
  55. }
  56. private Map<List<String>, Class<? extends DBObject>> updatePathToClassMap(final Class<? extends DBObject> aClass,
  57. final List<String> path) {
  58. Map<List<String>, Class<? extends DBObject>> map = new HashMap<List<String>, Class<? extends DBObject>>(pathToClassMap);
  59. if (aClass != null) {
  60. map.put(path, aClass);
  61. } else {
  62. map.remove(path);
  63. }
  64. return map;
  65. }
  66. Class<? extends DBObject> getClassForPath(final List<String> path) {
  67. if (pathToClassMap.containsKey(path)) {
  68. return pathToClassMap.get(path);
  69. } else {
  70. Class<? extends DBObject> aClass = (wrapper != null) ? wrapper.getInternalClass(path) : null;
  71. return aClass != null ? aClass : BasicDBObject.class;
  72. }
  73. }
  74. private boolean isReflectionDBObject(final Class<? extends DBObject> aClass) {
  75. return aClass != null && ReflectionDBObject.class.isAssignableFrom(aClass);
  76. }
  77. private MongoInternalException createInternalException(final Class<? extends DBObject> aClass, final Exception e) {
  78. throw new MongoInternalException("Can't instantiate class " + aClass, e);
  79. }
  80. }