org.postgresql.geometric.PGbox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdbc-yugabytedb Show documentation
Show all versions of jdbc-yugabytedb Show documentation
Java JDBC 4.2 (JRE 8+) driver for YugaByte SQL database
/*
* Copyright (c) 2003, PostgreSQL Global Development Group
* See the LICENSE file in the project root for more information.
*/
package org.postgresql.geometric;
import static org.postgresql.util.internal.Nullness.castNonNull;
import org.postgresql.util.GT;
import org.postgresql.util.PGBinaryObject;
import org.postgresql.util.PGobject;
import org.postgresql.util.PGtokenizer;
import org.postgresql.util.PSQLException;
import org.postgresql.util.PSQLState;
import org.checkerframework.checker.nullness.qual.Nullable;
import java.io.Serializable;
import java.sql.SQLException;
/**
* This represents the box datatype within org.postgresql.
*/
public class PGbox extends PGobject implements PGBinaryObject, Serializable, Cloneable {
/**
* These are the two points.
*/
public PGpoint @Nullable [] point;
/**
* @param x1 first x coordinate
* @param y1 first y coordinate
* @param x2 second x coordinate
* @param y2 second y coordinate
*/
public PGbox(double x1, double y1, double x2, double y2) {
this(new PGpoint(x1, y1), new PGpoint(x2, y2));
}
/**
* @param p1 first point
* @param p2 second point
*/
public PGbox(PGpoint p1, PGpoint p2) {
this();
this.point = new PGpoint[]{p1, p2};
}
/**
* @param s Box definition in PostgreSQL syntax
* @throws SQLException if definition is invalid
*/
@SuppressWarnings("method.invocation.invalid")
public PGbox(String s) throws SQLException {
this();
setValue(s);
}
/**
* Required constructor.
*/
public PGbox() {
type = "box";
}
/**
* This method sets the value of this object. It should be overidden, but still called by
* subclasses.
*
* @param value a string representation of the value of the object
* @throws SQLException thrown if value is invalid for this type
*/
@Override
public void setValue(@Nullable String value) throws SQLException {
if (value == null) {
this.point = null;
return;
}
PGtokenizer t = new PGtokenizer(value, ',');
if (t.getSize() != 2) {
throw new PSQLException(
GT.tr("Conversion to type {0} failed: {1}.", type, value),
PSQLState.DATA_TYPE_MISMATCH);
}
PGpoint[] point = this.point;
if (point == null) {
this.point = point = new PGpoint[2];
}
point[0] = new PGpoint(t.getToken(0));
point[1] = new PGpoint(t.getToken(1));
}
/**
* @param b Definition of this point in PostgreSQL's binary syntax
*/
public void setByteValue(byte[] b, int offset) {
PGpoint[] point = this.point;
if (point == null) {
this.point = point = new PGpoint[2];
}
point[0] = new PGpoint();
point[0].setByteValue(b, offset);
point[1] = new PGpoint();
point[1].setByteValue(b, offset + point[0].lengthInBytes());
this.point = point;
}
/**
* @param obj Object to compare with
* @return true if the two boxes are identical
*/
public boolean equals(@Nullable Object obj) {
if (obj instanceof PGbox) {
PGbox p = (PGbox) obj;
// Same points.
PGpoint[] point = this.point;
PGpoint[] pPoint = p.point;
if (point == null) {
return pPoint == null;
} else if (pPoint == null) {
return false;
}
if (pPoint[0].equals(point[0]) && pPoint[1].equals(point[1])) {
return true;
}
// Points swapped.
if (pPoint[0].equals(point[1]) && pPoint[1].equals(point[0])) {
return true;
}
// Using the opposite two points of the box:
// (x1,y1),(x2,y2) -> (x1,y2),(x2,y1)
if (pPoint[0].x == point[0].x && pPoint[0].y == point[1].y
&& pPoint[1].x == point[1].x && pPoint[1].y == point[0].y) {
return true;
}
// Using the opposite two points of the box, and the points are swapped
// (x1,y1),(x2,y2) -> (x2,y1),(x1,y2)
if (pPoint[0].x == point[1].x && pPoint[0].y == point[0].y
&& pPoint[1].x == point[0].x && pPoint[1].y == point[1].y) {
return true;
}
}
return false;
}
public int hashCode() {
// This relies on the behaviour of point's hashcode being an exclusive-OR of
// its X and Y components; we end up with an exclusive-OR of the two X and
// two Y components, which is equal whenever equals() would return true
// since xor is commutative.
PGpoint[] point = this.point;
return point == null ? 0 : point[0].hashCode() ^ point[1].hashCode();
}
public Object clone() throws CloneNotSupportedException {
PGbox newPGbox = (PGbox) super.clone();
if (newPGbox.point != null) {
newPGbox.point = newPGbox.point.clone();
for (int i = 0; i < newPGbox.point.length; ++i) {
if (newPGbox.point[i] != null) {
newPGbox.point[i] = (PGpoint) newPGbox.point[i].clone();
}
}
}
return newPGbox;
}
/**
* @return the PGbox in the syntax expected by org.postgresql
*/
public @Nullable String getValue() {
PGpoint[] point = this.point;
return point == null ? null : point[0].toString() + "," + point[1].toString();
}
public int lengthInBytes() {
PGpoint[] point = this.point;
if (point == null) {
return 0;
}
return point[0].lengthInBytes() + point[1].lengthInBytes();
}
public void toBytes(byte[] bytes, int offset) {
PGpoint[] point = castNonNull(this.point);
point[0].toBytes(bytes, offset);
point[1].toBytes(bytes, offset + point[0].lengthInBytes());
}
}