Point2DFunctions.java
/*
* Copyright 2015 gregorygraham.
*
* 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 nz.co.gregs.dbvolution.internal.sqlserver;
import nz.co.gregs.dbvolution.datatypes.DBNumber;
import nz.co.gregs.dbvolution.internal.FeatureAdd;
/**
*
* <p style="color: #F90;">Support DBvolution at
* <a href="http://patreon.com/dbvolution" target=new>Patreon</a></p>
*
* @author gregorygraham
*/
public enum Point2DFunctions implements FeatureAdd {
/**
*
*/
EQUALS("numeric(" + DBNumber.getNumericPrecision() + "," + DBNumber.getNumericScale() + ")", "@poly1 GEOMETRY, @poly2 GEOMETRY", " DECLARE \n"
+ " @resultVal numeric(" + DBNumber.getNumericPrecision() + "," + DBNumber.getNumericScale() + "),\n"
+ " @num integer,\n"
+ " @i integer,\n"
+ " @currentcoord numeric(" + DBNumber.getNumericPrecision() + "," + DBNumber.getNumericScale() + "),\n"
+ " @pnt1 GEOMETRY,\n"
+ " @pnt2 GEOMETRY\n"
+ " if @poly1 is null or @poly2 is null begin \n"
+ " return(null) \n"
+ " end\n"
+ " else\n"
+ " begin\n"
+ " set @resultVal = 0\n"
+ " set @pnt1 = @poly1.STPointN(1)\n"
+ " set @pnt2 = @poly2.STPointN(1)\n"
+ " if @pnt1 is not null and @pnt2 is not null\n"
+ " begin \n"
+ " IF (ROUND(@pnt1.STX,10,1) = ROUND(@pnt2.STX,10,1)) and (ROUND(@pnt1.STY,10,1) = ROUND(@pnt2.STY,10,1)) \n"
+ " BEGIN\n"
+ " set @resultVal = 1\n"
+ " return(@resultVal)\n"
+ " END\n"
+ " END\n"
+ " END\n"
+ " return(@resultVal)\n");
private final String returnType;
private final String parameters;
private final String code;
Point2DFunctions(String returnType, String parameters, String code) {
this.returnType = returnType;
this.parameters = parameters;
this.code = code;
}
@Override
public String toString() {
return "dbo.DBV_POINT2DFN_" + name();
}
// /**
// *
// * @param stmt
// * @throws ExceptionDuringDatabaseFeatureSetup database errors
// */
// public void add(Statement stmt) throws ExceptionDuringDatabaseFeatureSetup {
// try {
// stmt.execute("DROP FUNCTION " + this + ";");
// } catch (Exception ex) {
// throw new ExceptionDuringDatabaseFeatureSetup("FAILED TO ADD FEATURE: " + name(), ex);
// }
// if (!this.code.isEmpty()) {
// final String createFn = "CREATE FUNCTION " + this + "(" + this.parameters + ")\n"
// + " RETURNS " + this.returnType
// + " AS BEGIN\n" + "\n" + this.code
// + "\n END;";
// try {
// stmt.execute(createFn);
// } catch (Exception ex) {
// throw new ExceptionDuringDatabaseFeatureSetup("FAILED TO ADD FEATURE: " + name(), ex);
// }
// }
// }
@Override
public String[] createSQL() {
if (!this.code.isEmpty()) {
return new String[]{
"CREATE FUNCTION " + this + "(" + this.parameters + ")\n"
+ " RETURNS " + this.returnType
+ " AS BEGIN\n" + "\n" + this.code
+ "\n END;"
};
}
return new String[]{};
}
@Override
public String[] dropSQL() {
return new String[]{
"DROP FUNCTION " + this + ";"
};
}
}