com.amihaiemil.eoyaml.BaseYamlStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eo-yaml Show documentation
Show all versions of eo-yaml Show documentation
YAML for Java 8 and above. Very similar to the JSON-P api.
The newest version!
/**
* Copyright (c) 2016-2024, Mihai Emil Andronache
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.eoyaml;
import java.util.Collection;
import java.util.Iterator;
/**
* Base YamlStream which all implementations should extend.
* It implementing toString(), equals, hashcode and compareTo methods.
*
* These methods should be default methods on the interface,
* but we are not allowed to have default implementations of java.lang.Object
* methods.
* @author Mihai Andronache ([email protected])
* @version $Id: 1dbac93c3f67b3c6a2d4626bfe4b7d749bd8b999 $
* @since 4.0.0
*/
abstract class BaseYamlStream extends BaseYamlNode implements YamlStream {
@Override
public final Node type() {
return Node.STREAM;
}
@Override
public int hashCode() {
int hash = 0;
for(final YamlNode node : this.values()) {
hash += node.hashCode();
}
return hash;
}
/**
* Equals method for YamlStream. It returns true if the compareTo(...)
* method returns 0.
* @param other The YamlStream to which this is compared.
* @return True or false
*/
@Override
public boolean equals(final Object other) {
final boolean result;
if (other == null || !(other instanceof YamlStream)) {
result = false;
} else if (this == other) {
result = true;
} else {
result = this.compareTo((YamlStream) other) == 0;
}
return result;
}
/**
* Compare this Sequence to another node.
*
* A YamlStream is always considered greater than a Scalar,
* a YamlSequence or a YamlMapping.
*
* If other is a YamlStream, their integer lengths are compared - the one
* with the greater length is considered greater. If the lengths are equal,
* then the 2 YamlStreams are equal if all elements are equal. If the
* elements are not identical, the comparison of the first unequal
* elements is returned.
*
* @param other The other YamlNode.
* @checkstyle NestedIfDepth (100 lines)
* @return
* a value < 0 if this < other
* 0 if this == other or
* a value > 0 if this > other
*/
@Override
public int compareTo(final YamlNode other) {
int result = 0;
if (other == null || other instanceof Scalar) {
result = 1;
} else if (other instanceof YamlSequence) {
result = 1;
} else if (other instanceof YamlMapping) {
result = 1;
} else if (this != other) {
final Collection nodes = this.values();
final Collection others = ((YamlStream) other).values();
if(nodes.size() > others.size()) {
result = 1;
} else if (nodes.size() < others.size()) {
result = -1;
} else {
final Iterator iterator = others.iterator();
final Iterator here = nodes.iterator();
while(iterator.hasNext()) {
result = here.next().compareTo(iterator.next());
if(result != 0) {
break;
}
}
}
}
return result;
}
@Override
public final boolean isEmpty() {
return this.values().isEmpty();
}
}