/bson/src/main/org/bson/codecs/configuration/ChildCodecRegistry.java

http://github.com/mongodb/mongo-java-driver · Java · 100 lines · 65 code · 18 blank · 17 comment · 17 complexity · 5a88d307e7bf0f64237b75ef87986763 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 org.bson.codecs.configuration;
  17. import org.bson.codecs.Codec;
  18. // An implementation of CodecRegistry that is used to detect cyclic dependencies between Codecs
  19. class ChildCodecRegistry<T> implements CodecRegistry {
  20. private final ChildCodecRegistry<?> parent;
  21. private final ProvidersCodecRegistry registry;
  22. private final Class<T> codecClass;
  23. ChildCodecRegistry(final ProvidersCodecRegistry registry, final Class<T> codecClass) {
  24. this.codecClass = codecClass;
  25. this.parent = null;
  26. this.registry = registry;
  27. }
  28. private ChildCodecRegistry(final ChildCodecRegistry<?> parent, final Class<T> codecClass) {
  29. this.parent = parent;
  30. this.codecClass = codecClass;
  31. this.registry = parent.registry;
  32. }
  33. public Class<T> getCodecClass() {
  34. return codecClass;
  35. }
  36. // Gets a Codec, but if it detects a cyclic dependency, return a LazyCodec which breaks the chain.
  37. public <U> Codec<U> get(final Class<U> clazz) {
  38. if (hasCycles(clazz)) {
  39. return new LazyCodec<U>(registry, clazz);
  40. } else {
  41. return registry.get(new ChildCodecRegistry<U>(this, clazz));
  42. }
  43. }
  44. @SuppressWarnings("rawtypes")
  45. private <U> Boolean hasCycles(final Class<U> theClass) {
  46. ChildCodecRegistry current = this;
  47. while (current != null) {
  48. if (current.codecClass.equals(theClass)) {
  49. return true;
  50. }
  51. current = current.parent;
  52. }
  53. return false;
  54. }
  55. @Override
  56. public boolean equals(final Object o) {
  57. if (this == o) {
  58. return true;
  59. }
  60. if (o == null || getClass() != o.getClass()) {
  61. return false;
  62. }
  63. ChildCodecRegistry<?> that = (ChildCodecRegistry) o;
  64. if (!codecClass.equals(that.codecClass)) {
  65. return false;
  66. }
  67. if (parent != null ? !parent.equals(that.parent) : that.parent != null) {
  68. return false;
  69. }
  70. if (!registry.equals(that.registry)) {
  71. return false;
  72. }
  73. return true;
  74. }
  75. @Override
  76. public int hashCode() {
  77. int result = parent != null ? parent.hashCode() : 0;
  78. result = 31 * result + registry.hashCode();
  79. result = 31 * result + codecClass.hashCode();
  80. return result;
  81. }
  82. }