org.bson.internal.ChildCodecRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-java-driver Show documentation
Show all versions of mongo-java-driver Show documentation
The MongoDB Java Driver uber-artifact, containing mongodb-driver, mongodb-driver-core, and bson
The newest version!
/*
* Copyright 2008-present MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.bson.internal;
import org.bson.codecs.Codec;
import org.bson.codecs.configuration.CodecRegistry;
// An implementation of CodecRegistry that is used to detect cyclic dependencies between Codecs
class ChildCodecRegistry implements CodecRegistry {
private final ChildCodecRegistry> parent;
private final CycleDetectingCodecRegistry registry;
private final Class codecClass;
ChildCodecRegistry(final CycleDetectingCodecRegistry registry, final Class codecClass) {
this.codecClass = codecClass;
this.parent = null;
this.registry = registry;
}
private ChildCodecRegistry(final ChildCodecRegistry> parent, final Class codecClass) {
this.parent = parent;
this.codecClass = codecClass;
this.registry = parent.registry;
}
public Class getCodecClass() {
return codecClass;
}
// Gets a Codec, but if it detects a cyclic dependency, return a LazyCodec which breaks the chain.
public Codec get(final Class clazz) {
if (hasCycles(clazz)) {
return new LazyCodec(registry, clazz);
} else {
return registry.get(new ChildCodecRegistry(this, clazz));
}
}
@SuppressWarnings("rawtypes")
private Boolean hasCycles(final Class theClass) {
ChildCodecRegistry current = this;
while (current != null) {
if (current.codecClass.equals(theClass)) {
return true;
}
current = current.parent;
}
return false;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ChildCodecRegistry> that = (ChildCodecRegistry) o;
if (!codecClass.equals(that.codecClass)) {
return false;
}
if (parent != null ? !parent.equals(that.parent) : that.parent != null) {
return false;
}
if (!registry.equals(that.registry)) {
return false;
}
return true;
}
@Override
public int hashCode() {
int result = parent != null ? parent.hashCode() : 0;
result = 31 * result + registry.hashCode();
result = 31 * result + codecClass.hashCode();
return result;
}
}