blob: e120106817128370fbe6c01d85aebb98ee2bf14a [file] [log] [blame]
/*
* Copyright (c) 2012, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Denise Smith - 2.3.3 - initial implementation
package org.eclipse.persistence.testing.jaxb.collections;
import java.lang.reflect.Array;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.annotation.XmlAnyAttribute;
import jakarta.xml.bind.annotation.XmlAnyElement;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.xml.bind.annotation.XmlElementRefs;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlIDREF;
import jakarta.xml.bind.annotation.XmlList;
import jakarta.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class CollectionHolder {
protected List<Integer> collection1;
@XmlList
protected List<String> collection2;
protected List<Object> collection3;
@XmlAnyElement(lax=true)
protected List collection4;
protected List<CollectionHolder> collection5;
@XmlElementRefs({@XmlElementRef(name="root2"), @XmlElementRef(name="root")})
protected List collection6;
@XmlElement(name="referenced-id")
@XmlIDREF
@XmlList
protected List<ReferencedObject> collection7;
@XmlAttribute(name="attribute-referenced-id")
@XmlIDREF
public List<ReferencedObject> collection8;
protected List<CoinEnum> collection9;
@XmlAnyAttribute
protected Map collection10;
protected List<byte[]> collection11;
@XmlAttribute
protected List<String> collection12;
@XmlElements({@XmlElement(name="collection13integer", type=Integer.class), @XmlElement(name="collection13string", type=String.class)})
protected List collection13;
@XmlElements({@XmlElement(name="collection14integer", type=Integer.class), @XmlElement(name="collection14string", type=String.class, nillable=true)})
protected List collection14;
public CollectionHolder(){
}
public List<Integer> getCollection1() {
return collection1;
}
public void setCollection1(List<Integer> collection1) {
this.collection1 = collection1;
}
public List<String> getCollection2() {
return collection2;
}
public void setCollection2(List<String> collection2) {
this.collection2 = collection2;
}
public List<Object> getCollection3() {
return collection3;
}
public void setCollection3(List<Object> collection3) {
this.collection3 = collection3;
}
public List getCollection4() {
return collection4;
}
public void setCollection4(List collection4) {
this.collection4 = collection4;
}
public List<CollectionHolder> getCollection5() {
return collection5;
}
public void setCollection5(List<CollectionHolder> collection5) {
this.collection5 = collection5;
}
public List getCollection6() {
return collection6;
}
public void setCollection6(List collection6) {
this.collection6 = collection6;
}
public List<ReferencedObject> getCollection7() {
return collection7;
}
public void setCollection7(List<ReferencedObject> collection7) {
this.collection7 = collection7;
}
public List<ReferencedObject> getCollection8() {
return collection8;
}
public void setCollection8(List<ReferencedObject> collection8) {
this.collection8 = collection8;
}
public List<CoinEnum> getCollection9() {
return collection9;
}
public void setCollection9(List<CoinEnum> collection9) {
this.collection9 = collection9;
}
public Map getCollection10() {
return collection10;
}
public void setCollection10(Map collection10) {
this.collection10 = collection10;
}
public List<byte[]> getCollection11() {
return collection11;
}
public void setCollection11(List<byte[]> collection11) {
this.collection11 = collection11;
}
public List<String> getCollection12() {
return collection12;
}
public void setCollection12(List<String> collection12) {
this.collection12 = collection12;
}
public List getCollection13() {
return collection13;
}
public void setCollection13(List collection13) {
this.collection13 = collection13;
}
public boolean equals(Object compareObject){
if(compareObject instanceof CollectionHolder){
CollectionHolder compareCollectionHolder = ((CollectionHolder)compareObject);
return compareCollections(collection1, compareCollectionHolder.getCollection1())
&& compareCollections(collection2, compareCollectionHolder.getCollection2())
&& compareCollections(collection3, compareCollectionHolder.getCollection3())
&& compareCollections(collection4, compareCollectionHolder.getCollection4())
&& compareCollections(collection5, compareCollectionHolder.getCollection5())
&& compareCollections(collection6, compareCollectionHolder.getCollection6())
&& compareCollections(collection7, compareCollectionHolder.getCollection7())
&& compareCollections(collection8, compareCollectionHolder.getCollection8())
&& compareCollections(collection9, compareCollectionHolder.getCollection9())
&& compareMaps(collection10, compareCollectionHolder.getCollection10())
&& compareCollections(collection11, compareCollectionHolder.getCollection11())
&& compareCollections(collection12, compareCollectionHolder.getCollection12())
&& compareCollections(collection13, compareCollectionHolder.getCollection13())
;
}
return false;
}
private boolean compareMaps(Map map1, Map map2) {
if(map1 == null){
return map2 == null;
}
if(map1.size() != map2.size()){
return false;
}
return map1.equals(map2);
}
private boolean compareCollections(Collection compareList1, Collection compareList2) {
if (compareList1 == null) {
return compareList2 == null;
} else {
if (compareList2 == null) {
return false;
}
if(compareList1.size() != compareList2.size()){
return false;
}
Iterator iter1 = compareList1.iterator();
Iterator iter2 = compareList2.iterator();
while(iter1.hasNext()){
Object next1 = iter1.next();
Object next2 = iter2.next();
if(!compareObjects(next1, next2)){
return false;
}
}
return true;
}
}
private boolean compareObjects(Object obj1, Object obj2){
if(obj1 == null & obj2 == null){
return true;
}
if(obj1 instanceof JAXBElement){
if(obj2 instanceof JAXBElement){
if(! ((JAXBElement)obj1).getName().getLocalPart().equals(((JAXBElement)obj2).getName().getLocalPart())){
return false;
}
if(! ((JAXBElement)obj1).getDeclaredType().equals(((JAXBElement)obj2).getDeclaredType())){
return false;
}
Object value1 = ((JAXBElement)obj1).getValue();
Object value2 = ((JAXBElement)obj2).getValue();
return compareObjects(value1, value2);
}
return false;
}else{
if(obj1.getClass().isArray() && obj2.getClass().isArray()){
return compareArrays(obj1, obj2);
}else{
return obj1.equals(obj2);
}
}
}
protected boolean compareArrays(Object controlValue, Object testValue) {
int controlSize = Array.getLength(controlValue);
int objSize = Array.getLength(testValue);
if(controlSize != objSize){
return false;
}
for(int x=0; x<controlSize; x++) {
Object controlItem = Array.get(controlValue, x);
Object testItem = Array.get(testValue, x);
if(!controlItem.equals(testItem)){
return false;
}
}
return true;
}
}