org.jooq.impl.AbstractStore Maven / Gradle / Ivy
/*
* 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.
*
* Other licenses:
* -----------------------------------------------------------------------------
* Commercial licenses for this work are available. These replace the above
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial
* database integrations.
*
* For more information, please visit: http://www.jooq.org/licenses
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.impl;
import java.util.Arrays;
// ...
import org.jooq.Attachable;
import org.jooq.Configuration;
import org.jooq.DSLContext;
import org.jooq.JSONFormat;
import org.jooq.Record;
import org.jooq.XMLFormat;
/**
* A common base class for {@link Record} and {@link ArrayRecord}
*
* This base class takes care of implementing similar {@link Attachable} and
* {@link Object#equals(Object)}, {@link Object#hashCode()} behaviour.
*
* @author Lukas Eder
*/
abstract class AbstractStore extends AbstractFormattable {
AbstractStore() {
this(null);
}
AbstractStore(Configuration configuration) {
super(configuration);
}
// -------------------------------------------------------------------------
// The Attachable API
// -------------------------------------------------------------------------
/**
* This method is used in generated code!
*
* @deprecated - 3.11.0 - [#6720] [#6721] - Use {@link Attachable#configuration()} and
* {@link Configuration#dsl()} instead.
*/
@Deprecated
protected final DSLContext create() {
return DSL.using(configuration());
}
// -------------------------------------------------------------------------
// The Formattable API
// -------------------------------------------------------------------------
@Override
final JSONFormat defaultJSONFormat() {
return Tools.configuration(this).formattingProvider().jsonFormatForRecords();
}
@Override
final XMLFormat defaultXMLFormat() {
return Tools.configuration(this).formattingProvider().xmlFormatForRecords();
}
// -------------------------------------------------------------------------
// equals and hashCode
// -------------------------------------------------------------------------
/**
* This method coincides with {@link Record#size()} and
* {@link ArrayRecord#size()}
*/
abstract int size();
/**
* This method coincides with {@link Record#get(int)} and
* ArrayRecordImpl.getValue(int)
*/
abstract Object get(int index);
@Override
public int hashCode() {
int hashCode = 1;
for (int i = 0; i < size(); i++) {
final Object obj = get(i);
if (obj == null)
hashCode = 31 * hashCode;
// [#985] [#2045] Don't use obj.hashCode() on arrays, but avoid
// calculating it as byte[] (BLOBs) can be quite large
else if (obj.getClass().isArray())
hashCode = 31 * hashCode;
else
hashCode = 31 * hashCode + obj.hashCode();
}
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
// Note: keep this implementation in-sync with AbstractRecord.compareTo()!
if (obj instanceof AbstractStore that) {
if (size() == that.size()) {
for (int i = 0; i < size(); i++) {
final Object thisValue = get(i);
final Object thatValue = that.get(i);
// [#1850] Only return false early. In all other cases,
// continue checking the remaining fields
if (thisValue == null && thatValue == null)
continue;
else if (thisValue == null || thatValue == null)
return false;
// [#985] Compare arrays too.
else if (thisValue.getClass().isArray() && thatValue.getClass().isArray()) {
// Might be byte[]
if (thisValue.getClass() == byte[].class && thatValue.getClass() == byte[].class) {
if (!Arrays.equals((byte[]) thisValue, (byte[]) thatValue))
return false;
}
// Other primitive types are not expected
else if (!thisValue.getClass().getComponentType().isPrimitive() &&
!thatValue.getClass().getComponentType().isPrimitive()) {
if (!Arrays.equals((Object[]) thisValue, (Object[]) thatValue))
return false;
}
else
return false;
}
else if (!thisValue.equals(thatValue))
return false;
}
// If we got through the above loop, the two records are equal
return true;
}
}
return false;
}
}