Java tutorial
// Description: Java 8 MS SQL Server 2012 Express Advanced Edition Jdbc DbIO implementation for CFAsterisk. /* * Code Factory Asterisk 11 Configuration Model * * Copyright (c) 2014-2015 Mark Sobkow * * This program is available as free software under the GNU GPL v3, or * under a commercial license from Mark Sobkow. For commercial licensing * details, please contact msobkow@sasktel.net. * * Under the terms of the GPL: * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ package net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskMSSql; import java.lang.reflect.*; import java.math.*; import java.sql.*; import java.text.*; import java.util.*; import javax.naming.*; import javax.sql.*; import org.apache.commons.codec.binary.Base64; import net.sourceforge.msscodefactory.cflib.v2_3.CFLib.*; import net.sourceforge.msscodefactory.cfsecurity.v2_4.CFSecurity.*; import net.sourceforge.msscodefactory.cfinternet.v2_4.CFInternet.*; import net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsterisk.*; import net.sourceforge.msscodefactory.cfsecurity.v2_4.CFSecurityObj.*; import net.sourceforge.msscodefactory.cfinternet.v2_4.CFInternetObj.*; import net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskObj.*; import net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskObj.*; import net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskSaxLoader.CFAsteriskSaxLoader; public class CFAsteriskMSSqlSchema extends CFAsteriskSchema implements ICFAsteriskSchema { protected Connection cnx; protected PreparedStatement stmtSelectNextServiceTypeIdGen = null; protected PreparedStatement stmtSelectNextMimeTypeIdGen = null; protected PreparedStatement stmtSelectNextClusterIdGen = null; protected PreparedStatement stmtSelectNextTenantIdGen = null; protected boolean inTransaction; protected PreparedStatement stmtBeginTransaction = null; public CFAsteriskMSSqlSchema() { super(); cnx = null; inTransaction = false; tableAsteriskConf = new CFAsteriskMSSqlAsteriskConfTable(this); tableAuditAction = new CFAsteriskMSSqlAuditActionTable(this); tableCluster = new CFAsteriskMSSqlClusterTable(this); tableConfigurationFile = new CFAsteriskMSSqlConfigurationFileTable(this); tableDomain = new CFAsteriskMSSqlDomainTable(this); tableDomainBase = new CFAsteriskMSSqlDomainBaseTable(this); tableExtConfigConf = new CFAsteriskMSSqlExtConfigConfTable(this); tableExtensionsConf = new CFAsteriskMSSqlExtensionsConfTable(this); tableHostNode = new CFAsteriskMSSqlHostNodeTable(this); tableISOCountry = new CFAsteriskMSSqlISOCountryTable(this); tableISOCountryCurrency = new CFAsteriskMSSqlISOCountryCurrencyTable(this); tableISOCountryLanguage = new CFAsteriskMSSqlISOCountryLanguageTable(this); tableISOCurrency = new CFAsteriskMSSqlISOCurrencyTable(this); tableISOLanguage = new CFAsteriskMSSqlISOLanguageTable(this); tableISOTimezone = new CFAsteriskMSSqlISOTimezoneTable(this); tableMajorVersion = new CFAsteriskMSSqlMajorVersionTable(this); tableMimeType = new CFAsteriskMSSqlMimeTypeTable(this); tableMinorVersion = new CFAsteriskMSSqlMinorVersionTable(this); tableProjectBase = new CFAsteriskMSSqlProjectBaseTable(this); tableRealProject = new CFAsteriskMSSqlRealProjectTable(this); tableSecApp = new CFAsteriskMSSqlSecAppTable(this); tableSecDevice = new CFAsteriskMSSqlSecDeviceTable(this); tableSecForm = new CFAsteriskMSSqlSecFormTable(this); tableSecGroup = new CFAsteriskMSSqlSecGroupTable(this); tableSecGroupForm = new CFAsteriskMSSqlSecGroupFormTable(this); tableSecGroupInclude = new CFAsteriskMSSqlSecGroupIncludeTable(this); tableSecGroupMember = new CFAsteriskMSSqlSecGroupMemberTable(this); tableSecSession = new CFAsteriskMSSqlSecSessionTable(this); tableSecUser = new CFAsteriskMSSqlSecUserTable(this); tableService = new CFAsteriskMSSqlServiceTable(this); tableServiceType = new CFAsteriskMSSqlServiceTypeTable(this); tableSipConf = new CFAsteriskMSSqlSipConfTable(this); tableSubProject = new CFAsteriskMSSqlSubProjectTable(this); tableSysCluster = new CFAsteriskMSSqlSysClusterTable(this); tableTSecGroup = new CFAsteriskMSSqlTSecGroupTable(this); tableTSecGroupInclude = new CFAsteriskMSSqlTSecGroupIncludeTable(this); tableTSecGroupMember = new CFAsteriskMSSqlTSecGroupMemberTable(this); tableTenant = new CFAsteriskMSSqlTenantTable(this); tableTld = new CFAsteriskMSSqlTldTable(this); tableTopDomain = new CFAsteriskMSSqlTopDomainTable(this); tableTopProject = new CFAsteriskMSSqlTopProjectTable(this); tableURLProtocol = new CFAsteriskMSSqlURLProtocolTable(this); tableVersion = new CFAsteriskMSSqlVersionTable(this); tableVoicemailConf = new CFAsteriskMSSqlVoicemailConfTable(this); } public CFAsteriskMSSqlSchema(CFAsteriskConfigurationFile conf) { super(conf); cnx = null; inTransaction = false; tableAsteriskConf = new CFAsteriskMSSqlAsteriskConfTable(this); tableAuditAction = new CFAsteriskMSSqlAuditActionTable(this); tableCluster = new CFAsteriskMSSqlClusterTable(this); tableConfigurationFile = new CFAsteriskMSSqlConfigurationFileTable(this); tableDomain = new CFAsteriskMSSqlDomainTable(this); tableDomainBase = new CFAsteriskMSSqlDomainBaseTable(this); tableExtConfigConf = new CFAsteriskMSSqlExtConfigConfTable(this); tableExtensionsConf = new CFAsteriskMSSqlExtensionsConfTable(this); tableHostNode = new CFAsteriskMSSqlHostNodeTable(this); tableISOCountry = new CFAsteriskMSSqlISOCountryTable(this); tableISOCountryCurrency = new CFAsteriskMSSqlISOCountryCurrencyTable(this); tableISOCountryLanguage = new CFAsteriskMSSqlISOCountryLanguageTable(this); tableISOCurrency = new CFAsteriskMSSqlISOCurrencyTable(this); tableISOLanguage = new CFAsteriskMSSqlISOLanguageTable(this); tableISOTimezone = new CFAsteriskMSSqlISOTimezoneTable(this); tableMajorVersion = new CFAsteriskMSSqlMajorVersionTable(this); tableMimeType = new CFAsteriskMSSqlMimeTypeTable(this); tableMinorVersion = new CFAsteriskMSSqlMinorVersionTable(this); tableProjectBase = new CFAsteriskMSSqlProjectBaseTable(this); tableRealProject = new CFAsteriskMSSqlRealProjectTable(this); tableSecApp = new CFAsteriskMSSqlSecAppTable(this); tableSecDevice = new CFAsteriskMSSqlSecDeviceTable(this); tableSecForm = new CFAsteriskMSSqlSecFormTable(this); tableSecGroup = new CFAsteriskMSSqlSecGroupTable(this); tableSecGroupForm = new CFAsteriskMSSqlSecGroupFormTable(this); tableSecGroupInclude = new CFAsteriskMSSqlSecGroupIncludeTable(this); tableSecGroupMember = new CFAsteriskMSSqlSecGroupMemberTable(this); tableSecSession = new CFAsteriskMSSqlSecSessionTable(this); tableSecUser = new CFAsteriskMSSqlSecUserTable(this); tableService = new CFAsteriskMSSqlServiceTable(this); tableServiceType = new CFAsteriskMSSqlServiceTypeTable(this); tableSipConf = new CFAsteriskMSSqlSipConfTable(this); tableSubProject = new CFAsteriskMSSqlSubProjectTable(this); tableSysCluster = new CFAsteriskMSSqlSysClusterTable(this); tableTSecGroup = new CFAsteriskMSSqlTSecGroupTable(this); tableTSecGroupInclude = new CFAsteriskMSSqlTSecGroupIncludeTable(this); tableTSecGroupMember = new CFAsteriskMSSqlTSecGroupMemberTable(this); tableTenant = new CFAsteriskMSSqlTenantTable(this); tableTld = new CFAsteriskMSSqlTldTable(this); tableTopDomain = new CFAsteriskMSSqlTopDomainTable(this); tableTopProject = new CFAsteriskMSSqlTopProjectTable(this); tableURLProtocol = new CFAsteriskMSSqlURLProtocolTable(this); tableVersion = new CFAsteriskMSSqlVersionTable(this); tableVoicemailConf = new CFAsteriskMSSqlVoicemailConfTable(this); setDbSchemaName(conf.getDbDatabase()); } public CFAsteriskMSSqlSchema(String argJndiName) { super(argJndiName); cnx = null; inTransaction = false; tableAsteriskConf = new CFAsteriskMSSqlAsteriskConfTable(this); tableAuditAction = new CFAsteriskMSSqlAuditActionTable(this); tableCluster = new CFAsteriskMSSqlClusterTable(this); tableConfigurationFile = new CFAsteriskMSSqlConfigurationFileTable(this); tableDomain = new CFAsteriskMSSqlDomainTable(this); tableDomainBase = new CFAsteriskMSSqlDomainBaseTable(this); tableExtConfigConf = new CFAsteriskMSSqlExtConfigConfTable(this); tableExtensionsConf = new CFAsteriskMSSqlExtensionsConfTable(this); tableHostNode = new CFAsteriskMSSqlHostNodeTable(this); tableISOCountry = new CFAsteriskMSSqlISOCountryTable(this); tableISOCountryCurrency = new CFAsteriskMSSqlISOCountryCurrencyTable(this); tableISOCountryLanguage = new CFAsteriskMSSqlISOCountryLanguageTable(this); tableISOCurrency = new CFAsteriskMSSqlISOCurrencyTable(this); tableISOLanguage = new CFAsteriskMSSqlISOLanguageTable(this); tableISOTimezone = new CFAsteriskMSSqlISOTimezoneTable(this); tableMajorVersion = new CFAsteriskMSSqlMajorVersionTable(this); tableMimeType = new CFAsteriskMSSqlMimeTypeTable(this); tableMinorVersion = new CFAsteriskMSSqlMinorVersionTable(this); tableProjectBase = new CFAsteriskMSSqlProjectBaseTable(this); tableRealProject = new CFAsteriskMSSqlRealProjectTable(this); tableSecApp = new CFAsteriskMSSqlSecAppTable(this); tableSecDevice = new CFAsteriskMSSqlSecDeviceTable(this); tableSecForm = new CFAsteriskMSSqlSecFormTable(this); tableSecGroup = new CFAsteriskMSSqlSecGroupTable(this); tableSecGroupForm = new CFAsteriskMSSqlSecGroupFormTable(this); tableSecGroupInclude = new CFAsteriskMSSqlSecGroupIncludeTable(this); tableSecGroupMember = new CFAsteriskMSSqlSecGroupMemberTable(this); tableSecSession = new CFAsteriskMSSqlSecSessionTable(this); tableSecUser = new CFAsteriskMSSqlSecUserTable(this); tableService = new CFAsteriskMSSqlServiceTable(this); tableServiceType = new CFAsteriskMSSqlServiceTypeTable(this); tableSipConf = new CFAsteriskMSSqlSipConfTable(this); tableSubProject = new CFAsteriskMSSqlSubProjectTable(this); tableSysCluster = new CFAsteriskMSSqlSysClusterTable(this); tableTSecGroup = new CFAsteriskMSSqlTSecGroupTable(this); tableTSecGroupInclude = new CFAsteriskMSSqlTSecGroupIncludeTable(this); tableTSecGroupMember = new CFAsteriskMSSqlTSecGroupMemberTable(this); tableTenant = new CFAsteriskMSSqlTenantTable(this); tableTld = new CFAsteriskMSSqlTldTable(this); tableTopDomain = new CFAsteriskMSSqlTopDomainTable(this); tableTopProject = new CFAsteriskMSSqlTopProjectTable(this); tableURLProtocol = new CFAsteriskMSSqlURLProtocolTable(this); tableVersion = new CFAsteriskMSSqlVersionTable(this); tableVoicemailConf = new CFAsteriskMSSqlVoicemailConfTable(this); } public CFAsteriskMSSqlSchema(Connection argCnx) { super(); cnx = argCnx; inTransaction = false; tableAsteriskConf = new CFAsteriskMSSqlAsteriskConfTable(this); tableAuditAction = new CFAsteriskMSSqlAuditActionTable(this); tableCluster = new CFAsteriskMSSqlClusterTable(this); tableConfigurationFile = new CFAsteriskMSSqlConfigurationFileTable(this); tableDomain = new CFAsteriskMSSqlDomainTable(this); tableDomainBase = new CFAsteriskMSSqlDomainBaseTable(this); tableExtConfigConf = new CFAsteriskMSSqlExtConfigConfTable(this); tableExtensionsConf = new CFAsteriskMSSqlExtensionsConfTable(this); tableHostNode = new CFAsteriskMSSqlHostNodeTable(this); tableISOCountry = new CFAsteriskMSSqlISOCountryTable(this); tableISOCountryCurrency = new CFAsteriskMSSqlISOCountryCurrencyTable(this); tableISOCountryLanguage = new CFAsteriskMSSqlISOCountryLanguageTable(this); tableISOCurrency = new CFAsteriskMSSqlISOCurrencyTable(this); tableISOLanguage = new CFAsteriskMSSqlISOLanguageTable(this); tableISOTimezone = new CFAsteriskMSSqlISOTimezoneTable(this); tableMajorVersion = new CFAsteriskMSSqlMajorVersionTable(this); tableMimeType = new CFAsteriskMSSqlMimeTypeTable(this); tableMinorVersion = new CFAsteriskMSSqlMinorVersionTable(this); tableProjectBase = new CFAsteriskMSSqlProjectBaseTable(this); tableRealProject = new CFAsteriskMSSqlRealProjectTable(this); tableSecApp = new CFAsteriskMSSqlSecAppTable(this); tableSecDevice = new CFAsteriskMSSqlSecDeviceTable(this); tableSecForm = new CFAsteriskMSSqlSecFormTable(this); tableSecGroup = new CFAsteriskMSSqlSecGroupTable(this); tableSecGroupForm = new CFAsteriskMSSqlSecGroupFormTable(this); tableSecGroupInclude = new CFAsteriskMSSqlSecGroupIncludeTable(this); tableSecGroupMember = new CFAsteriskMSSqlSecGroupMemberTable(this); tableSecSession = new CFAsteriskMSSqlSecSessionTable(this); tableSecUser = new CFAsteriskMSSqlSecUserTable(this); tableService = new CFAsteriskMSSqlServiceTable(this); tableServiceType = new CFAsteriskMSSqlServiceTypeTable(this); tableSipConf = new CFAsteriskMSSqlSipConfTable(this); tableSubProject = new CFAsteriskMSSqlSubProjectTable(this); tableSysCluster = new CFAsteriskMSSqlSysClusterTable(this); tableTSecGroup = new CFAsteriskMSSqlTSecGroupTable(this); tableTSecGroupInclude = new CFAsteriskMSSqlTSecGroupIncludeTable(this); tableTSecGroupMember = new CFAsteriskMSSqlTSecGroupMemberTable(this); tableTenant = new CFAsteriskMSSqlTenantTable(this); tableTld = new CFAsteriskMSSqlTldTable(this); tableTopDomain = new CFAsteriskMSSqlTopDomainTable(this); tableTopProject = new CFAsteriskMSSqlTopProjectTable(this); tableURLProtocol = new CFAsteriskMSSqlURLProtocolTable(this); tableVersion = new CFAsteriskMSSqlVersionTable(this); tableVoicemailConf = new CFAsteriskMSSqlVoicemailConfTable(this); try { cnx.setAutoCommit(false); cnx.rollback(); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), "CFAsteriskMSSqlSchema-constructor", e); } } public Connection getCnx() { return (cnx); } public boolean isConnected() { final String S_ProcName = "isConnected"; boolean retval; if (cnx == null) { retval = false; } else { try { if (cnx.isClosed()) { retval = false; cnx = null; releasePreparedStatements(); } else { retval = true; } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e); } } return (retval); } public boolean connect() { final String S_ProcName = "connect"; if (cnx != null) { return (false); } if (configuration != null) { try { Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); } catch (ClassNotFoundException e) { throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), "connect", "Could not load MS SQL Server 2012 Express Advanced Edition driver", e); } String dbServer = configuration.getDbServer(); int dbPort = configuration.getDbPort(); String dbDatabase = configuration.getDbDatabase(); String dbUserName = configuration.getDbUserName(); String dbPassword = configuration.getDbPassword(); String url = "jdbc:sqlserver://" + dbServer + ":" + Integer.toString(dbPort) + ";"; Properties props = new Properties(); props.setProperty("user", dbUserName); props.setProperty("password", dbPassword); try { cnx = DriverManager.getConnection(url, props); cnx.setAutoCommit(false); cnx.setTransactionIsolation(Connection.TRANSACTION_REPEATABLE_READ); cnx.rollback(); setDbSchemaName(dbDatabase); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName + "<<connect>>", e); } Statement stmtUseDatabase = null; try { stmtUseDatabase = cnx.createStatement(); stmtUseDatabase.executeUpdate("use " + dbDatabase); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName + "<<useDatabase>>", e); } finally { if (stmtUseDatabase != null) { try { stmtUseDatabase.close(); } catch (SQLException e) { } stmtUseDatabase = null; } } return (true); } if (jndiName != null) { try { Context ctx = new InitialContext(); DataSource ds = (DataSource) ctx.lookup(jndiName); if (ds == null) { throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName, "Could not get resolve DataSource \"" + jndiName + "\""); } cnx = ds.getConnection(); if (cnx == null) { throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName, "Could not get Connection from PooledConnection for ConnectionPoolDataSource \"" + jndiName + "\""); } cnx.setAutoCommit(false); cnx.setTransactionIsolation(Connection.TRANSACTION_REPEATABLE_READ); cnx.rollback(); } catch (NamingException e) { cnx = null; throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName + "<<jndiGetConnection>>", "NamingException " + e.getMessage(), e); } catch (SQLException e) { cnx = null; inTransaction = false; throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName + "<<jndiGetConnection>>", e); } return (true); } throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName, "Neither configurationFile nor jndiName found, do not know how to connect to database"); } public boolean connect(String username, String password) { final String S_ProcName = "connect"; if (cnx != null) { return (false); } if ((username == null) || (username.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "username"); } if (password == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "password"); } if (configuration != null) { try { Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); } catch (ClassNotFoundException e) { throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), "connect", "Could not load MS SQL Server 2012 Express Advanced Edition driver", e); } String dbServer = configuration.getDbServer(); int dbPort = configuration.getDbPort(); String dbDatabase = configuration.getDbDatabase(); String dbUserName = username; String dbPassword = password; String url = "jdbc:sqlserver://" + dbServer + ":" + Integer.toString(dbPort) + ";"; Properties props = new Properties(); props.setProperty("user", dbUserName); props.setProperty("password", dbPassword); try { cnx = DriverManager.getConnection(url, props); cnx.setAutoCommit(false); cnx.setTransactionIsolation(Connection.TRANSACTION_REPEATABLE_READ); cnx.rollback(); setDbSchemaName(dbDatabase); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName + "<<connect>>", e); } Statement stmtUseDatabase = null; try { stmtUseDatabase = cnx.createStatement(); stmtUseDatabase.executeUpdate("use " + dbDatabase); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName + "<<useDatabase>>", e); } finally { if (stmtUseDatabase != null) { try { stmtUseDatabase.close(); } catch (SQLException e) { } stmtUseDatabase = null; } } return (true); } throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName, "configurationFile not found, do not know how to connect to database"); } public void disconnect(boolean doCommit) { final String S_ProcName = "disconnect"; if (cnx != null) { try { if (!cnx.isClosed()) { if (doCommit) { cnx.commit(); } else { cnx.rollback(); } releasePreparedStatements(); cnx.close(); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e); } finally { cnx = null; } } releasePreparedStatements(); } public boolean isTransactionOpen() { return (inTransaction); } public boolean beginTransaction() { if (inTransaction) { return (false); } try { final String sql = "begin transaction"; if (stmtBeginTransaction == null) { stmtBeginTransaction = cnx.prepareStatement(sql); } stmtBeginTransaction.execute(); inTransaction = true; } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), "beginTransaction", e); } return (inTransaction); } public void commit() { try { cnx.commit(); inTransaction = false; } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), "commit", e); } } public void rollback() { try { if (cnx != null) { cnx.rollback(); } inTransaction = false; } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), "rollback", e); } } public boolean isSystemUser(CFSecurityAuthorization Authorization) { final String S_ProcName = "isSystemUser"; if (!inTransaction) { throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName, "Not in a transaction"); } CallableStatement stmtSecurityCheck = null; try { final String sql = "exec sp_is_system_user ?, ?"; stmtSecurityCheck = cnx.prepareCall(sql); stmtSecurityCheck.registerOutParameter(1, java.sql.Types.INTEGER); stmtSecurityCheck.setString(2, Authorization.getSecUserId().toString()); stmtSecurityCheck.execute(); int isAuthorized = stmtSecurityCheck.getInt(1); if (isAuthorized == 0) { return (false); } else { return (true); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e); } finally { if (stmtSecurityCheck != null) { try { stmtSecurityCheck.close(); } catch (SQLException e) { } stmtSecurityCheck = null; } } } public boolean isClusterUser(CFSecurityAuthorization Authorization, long clusterId, String secGroupName) { final String S_ProcName = "isClusterUser"; if (!inTransaction) { throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName, "Not in a transaction"); } CallableStatement stmtSecurityCheck = null; try { final String sql = "exec sp_is_cluster_user ?, ?, ?, ?"; stmtSecurityCheck = cnx.prepareCall(sql); stmtSecurityCheck.registerOutParameter(1, java.sql.Types.INTEGER); stmtSecurityCheck.setLong(2, clusterId); stmtSecurityCheck.setString(3, secGroupName); stmtSecurityCheck.setString(4, Authorization.getSecUserId().toString()); stmtSecurityCheck.execute(); int isAuthorized = stmtSecurityCheck.getInt(1); if (isAuthorized == 0) { return (false); } else { return (true); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e); } finally { if (stmtSecurityCheck != null) { try { stmtSecurityCheck.close(); } catch (SQLException e) { } stmtSecurityCheck = null; } } } public boolean isTenantUser(CFSecurityAuthorization Authorization, long tenantId, String secGroupName) { final String S_ProcName = "isTenantUser"; if (!inTransaction) { throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName, "Not in a transaction"); } CallableStatement stmtSecurityCheck = null; try { final String sql = "exec sp_is_tenant_user ?, ?, ?, ?"; stmtSecurityCheck = cnx.prepareCall(sql); stmtSecurityCheck.registerOutParameter(1, java.sql.Types.INTEGER); stmtSecurityCheck.setLong(2, tenantId); stmtSecurityCheck.setString(3, secGroupName); stmtSecurityCheck.setString(4, Authorization.getSecUserId().toString()); stmtSecurityCheck.execute(); int isAuthorized = stmtSecurityCheck.getInt(1); if (isAuthorized == 0) { return (false); } else { return (true); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e); } finally { if (stmtSecurityCheck != null) { try { stmtSecurityCheck.close(); } catch (SQLException e) { } stmtSecurityCheck = null; } } } public int nextServiceTypeIdGen() { final String S_ProcName = "nextServiceTypeIdGen"; if (!inTransaction) { throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName, "Not in a transaction"); } int nextId = -1; Statement stmtNext = null; ResultSet resultSet = null; try { final String sql = "exec sp_selnext_servicetypeidgen"; if (stmtSelectNextServiceTypeIdGen == null) { stmtSelectNextServiceTypeIdGen = cnx.prepareStatement(sql); } stmtSelectNextServiceTypeIdGen.execute(); boolean moreResults = true; while (resultSet == null) { try { moreResults = stmtSelectNextServiceTypeIdGen.getMoreResults(); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e); } if (moreResults) { try { resultSet = stmtSelectNextServiceTypeIdGen.getResultSet(); } catch (SQLException e) { } } else if (-1 == stmtSelectNextServiceTypeIdGen.getUpdateCount()) { break; } } if (resultSet == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "resultSet"); } if (resultSet.next()) { nextId = resultSet.getInt(1); if (resultSet.next()) { resultSet.last(); throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName, "Did not expect multi-record response, " + resultSet.getRow() + " rows selected"); } } return (nextId); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), "nextServiceTypeIdGen", e); } finally { if (resultSet != null) { try { resultSet.close(); } catch (SQLException e) { } resultSet = null; } } } public int nextMimeTypeIdGen() { final String S_ProcName = "nextMimeTypeIdGen"; if (!inTransaction) { throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName, "Not in a transaction"); } int nextId = -1; Statement stmtNext = null; ResultSet resultSet = null; try { final String sql = "exec sp_selnext_mimetypeidgen"; if (stmtSelectNextMimeTypeIdGen == null) { stmtSelectNextMimeTypeIdGen = cnx.prepareStatement(sql); } stmtSelectNextMimeTypeIdGen.execute(); boolean moreResults = true; while (resultSet == null) { try { moreResults = stmtSelectNextMimeTypeIdGen.getMoreResults(); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e); } if (moreResults) { try { resultSet = stmtSelectNextMimeTypeIdGen.getResultSet(); } catch (SQLException e) { } } else if (-1 == stmtSelectNextMimeTypeIdGen.getUpdateCount()) { break; } } if (resultSet == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "resultSet"); } if (resultSet.next()) { nextId = resultSet.getInt(1); if (resultSet.next()) { resultSet.last(); throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName, "Did not expect multi-record response, " + resultSet.getRow() + " rows selected"); } } return (nextId); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), "nextMimeTypeIdGen", e); } finally { if (resultSet != null) { try { resultSet.close(); } catch (SQLException e) { } resultSet = null; } } } public long nextClusterIdGen() { final String S_ProcName = "nextClusterIdGen"; if (!inTransaction) { throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName, "Not in a transaction"); } long nextId = -1; Statement stmtNext = null; ResultSet resultSet = null; try { final String sql = "exec sp_selnext_clusteridgen"; if (stmtSelectNextClusterIdGen == null) { stmtSelectNextClusterIdGen = cnx.prepareStatement(sql); } stmtSelectNextClusterIdGen.execute(); boolean moreResults = true; while (resultSet == null) { try { moreResults = stmtSelectNextClusterIdGen.getMoreResults(); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e); } if (moreResults) { try { resultSet = stmtSelectNextClusterIdGen.getResultSet(); } catch (SQLException e) { } } else if (-1 == stmtSelectNextClusterIdGen.getUpdateCount()) { break; } } if (resultSet == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "resultSet"); } if (resultSet.next()) { nextId = resultSet.getLong(1); if (resultSet.next()) { resultSet.last(); throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName, "Did not expect multi-record response, " + resultSet.getRow() + " rows selected"); } } return (nextId); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), "nextClusterIdGen", e); } finally { if (resultSet != null) { try { resultSet.close(); } catch (SQLException e) { } resultSet = null; } } } public long nextTenantIdGen() { final String S_ProcName = "nextTenantIdGen"; if (!inTransaction) { throw CFLib.getDefaultExceptionFactory().newUsageException(getClass(), S_ProcName, "Not in a transaction"); } long nextId = -1; Statement stmtNext = null; ResultSet resultSet = null; try { final String sql = "exec sp_selnext_tenantidgen"; if (stmtSelectNextTenantIdGen == null) { stmtSelectNextTenantIdGen = cnx.prepareStatement(sql); } stmtSelectNextTenantIdGen.execute(); boolean moreResults = true; while (resultSet == null) { try { moreResults = stmtSelectNextTenantIdGen.getMoreResults(); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), S_ProcName, e); } if (moreResults) { try { resultSet = stmtSelectNextTenantIdGen.getResultSet(); } catch (SQLException e) { } } else if (-1 == stmtSelectNextTenantIdGen.getUpdateCount()) { break; } } if (resultSet == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "resultSet"); } if (resultSet.next()) { nextId = resultSet.getLong(1); if (resultSet.next()) { resultSet.last(); throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName, "Did not expect multi-record response, " + resultSet.getRow() + " rows selected"); } } return (nextId); } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(getClass(), "nextTenantIdGen", e); } finally { if (resultSet != null) { try { resultSet.close(); } catch (SQLException e) { } resultSet = null; } } } public UUID nextSecSessionIdGen() { UUID retval = UUID.randomUUID(); return (retval); } public UUID nextSecUserIdGen() { UUID retval = UUID.randomUUID(); return (retval); } /** * Import the contents of the specified file name * and file contents by applying a SAX Loader parse. */ public String fileImport(CFSecurityAuthorization auth, String fileName, String fileContents) { final String S_ProcName = "fileImport"; if (isTransactionOpen()) { rollback(); } try { beginTransaction(); CFAsteriskSaxLoader saxLoader = new CFAsteriskSaxLoader(); ICFAsteriskSchemaObj schemaObj = new CFAsteriskSchemaObj(); schemaObj.setBackingStore(this); saxLoader.setSchemaObj(schemaObj); ICFSecurityClusterObj useCluster = schemaObj.getClusterTableObj() .readClusterByIdIdx(auth.getSecClusterId()); ICFSecurityTenantObj useTenant = schemaObj.getTenantTableObj().readTenantByIdIdx(auth.getSecTenantId()); ICFLibMessageLog runlog = new CFLibMessageLogWrapper(); saxLoader.setLog(runlog); saxLoader.setUseCluster(useCluster); saxLoader.setUseTenant(useTenant); saxLoader.parseStringContents(fileContents); String logFileContents = runlog.getBacklog(); if (logFileContents == null) { logFileContents = ""; } commit(); return (logFileContents); } catch (RuntimeException e) { rollback(); throw e; } catch (Error e) { rollback(); throw e; } } /** * Release the prepared statements. * <p> * When the schema changes connections, the prepared statements * have to be released because they contain connection-specific * information for most databases. */ public void releasePreparedStatements() { final String S_ProcName = "releasePreparedStatements"; if (stmtBeginTransaction != null) { try { stmtBeginTransaction.close(); } catch (SQLException e) { } stmtBeginTransaction = null; } if (stmtSelectNextServiceTypeIdGen != null) { try { stmtSelectNextServiceTypeIdGen.close(); } catch (SQLException e) { } stmtSelectNextServiceTypeIdGen = null; } if (stmtSelectNextMimeTypeIdGen != null) { try { stmtSelectNextMimeTypeIdGen.close(); } catch (SQLException e) { } stmtSelectNextMimeTypeIdGen = null; } if (stmtSelectNextClusterIdGen != null) { try { stmtSelectNextClusterIdGen.close(); } catch (SQLException e) { } stmtSelectNextClusterIdGen = null; } if (stmtSelectNextTenantIdGen != null) { try { stmtSelectNextTenantIdGen.close(); } catch (SQLException e) { } stmtSelectNextTenantIdGen = null; } if ((tableAsteriskConf != null) && (tableAsteriskConf instanceof CFAsteriskMSSqlAsteriskConfTable)) { CFAsteriskMSSqlAsteriskConfTable table = (CFAsteriskMSSqlAsteriskConfTable) tableAsteriskConf; table.releasePreparedStatements(); } if ((tableAuditAction != null) && (tableAuditAction instanceof CFAsteriskMSSqlAuditActionTable)) { CFAsteriskMSSqlAuditActionTable table = (CFAsteriskMSSqlAuditActionTable) tableAuditAction; table.releasePreparedStatements(); } if ((tableCluster != null) && (tableCluster instanceof CFAsteriskMSSqlClusterTable)) { CFAsteriskMSSqlClusterTable table = (CFAsteriskMSSqlClusterTable) tableCluster; table.releasePreparedStatements(); } if ((tableConfigurationFile != null) && (tableConfigurationFile instanceof CFAsteriskMSSqlConfigurationFileTable)) { CFAsteriskMSSqlConfigurationFileTable table = (CFAsteriskMSSqlConfigurationFileTable) tableConfigurationFile; table.releasePreparedStatements(); } if ((tableDomain != null) && (tableDomain instanceof CFAsteriskMSSqlDomainTable)) { CFAsteriskMSSqlDomainTable table = (CFAsteriskMSSqlDomainTable) tableDomain; table.releasePreparedStatements(); } if ((tableDomainBase != null) && (tableDomainBase instanceof CFAsteriskMSSqlDomainBaseTable)) { CFAsteriskMSSqlDomainBaseTable table = (CFAsteriskMSSqlDomainBaseTable) tableDomainBase; table.releasePreparedStatements(); } if ((tableExtConfigConf != null) && (tableExtConfigConf instanceof CFAsteriskMSSqlExtConfigConfTable)) { CFAsteriskMSSqlExtConfigConfTable table = (CFAsteriskMSSqlExtConfigConfTable) tableExtConfigConf; table.releasePreparedStatements(); } if ((tableExtensionsConf != null) && (tableExtensionsConf instanceof CFAsteriskMSSqlExtensionsConfTable)) { CFAsteriskMSSqlExtensionsConfTable table = (CFAsteriskMSSqlExtensionsConfTable) tableExtensionsConf; table.releasePreparedStatements(); } if ((tableHostNode != null) && (tableHostNode instanceof CFAsteriskMSSqlHostNodeTable)) { CFAsteriskMSSqlHostNodeTable table = (CFAsteriskMSSqlHostNodeTable) tableHostNode; table.releasePreparedStatements(); } if ((tableISOCountry != null) && (tableISOCountry instanceof CFAsteriskMSSqlISOCountryTable)) { CFAsteriskMSSqlISOCountryTable table = (CFAsteriskMSSqlISOCountryTable) tableISOCountry; table.releasePreparedStatements(); } if ((tableISOCountryCurrency != null) && (tableISOCountryCurrency instanceof CFAsteriskMSSqlISOCountryCurrencyTable)) { CFAsteriskMSSqlISOCountryCurrencyTable table = (CFAsteriskMSSqlISOCountryCurrencyTable) tableISOCountryCurrency; table.releasePreparedStatements(); } if ((tableISOCountryLanguage != null) && (tableISOCountryLanguage instanceof CFAsteriskMSSqlISOCountryLanguageTable)) { CFAsteriskMSSqlISOCountryLanguageTable table = (CFAsteriskMSSqlISOCountryLanguageTable) tableISOCountryLanguage; table.releasePreparedStatements(); } if ((tableISOCurrency != null) && (tableISOCurrency instanceof CFAsteriskMSSqlISOCurrencyTable)) { CFAsteriskMSSqlISOCurrencyTable table = (CFAsteriskMSSqlISOCurrencyTable) tableISOCurrency; table.releasePreparedStatements(); } if ((tableISOLanguage != null) && (tableISOLanguage instanceof CFAsteriskMSSqlISOLanguageTable)) { CFAsteriskMSSqlISOLanguageTable table = (CFAsteriskMSSqlISOLanguageTable) tableISOLanguage; table.releasePreparedStatements(); } if ((tableISOTimezone != null) && (tableISOTimezone instanceof CFAsteriskMSSqlISOTimezoneTable)) { CFAsteriskMSSqlISOTimezoneTable table = (CFAsteriskMSSqlISOTimezoneTable) tableISOTimezone; table.releasePreparedStatements(); } if ((tableMajorVersion != null) && (tableMajorVersion instanceof CFAsteriskMSSqlMajorVersionTable)) { CFAsteriskMSSqlMajorVersionTable table = (CFAsteriskMSSqlMajorVersionTable) tableMajorVersion; table.releasePreparedStatements(); } if ((tableMimeType != null) && (tableMimeType instanceof CFAsteriskMSSqlMimeTypeTable)) { CFAsteriskMSSqlMimeTypeTable table = (CFAsteriskMSSqlMimeTypeTable) tableMimeType; table.releasePreparedStatements(); } if ((tableMinorVersion != null) && (tableMinorVersion instanceof CFAsteriskMSSqlMinorVersionTable)) { CFAsteriskMSSqlMinorVersionTable table = (CFAsteriskMSSqlMinorVersionTable) tableMinorVersion; table.releasePreparedStatements(); } if ((tableProjectBase != null) && (tableProjectBase instanceof CFAsteriskMSSqlProjectBaseTable)) { CFAsteriskMSSqlProjectBaseTable table = (CFAsteriskMSSqlProjectBaseTable) tableProjectBase; table.releasePreparedStatements(); } if ((tableRealProject != null) && (tableRealProject instanceof CFAsteriskMSSqlRealProjectTable)) { CFAsteriskMSSqlRealProjectTable table = (CFAsteriskMSSqlRealProjectTable) tableRealProject; table.releasePreparedStatements(); } if ((tableSecApp != null) && (tableSecApp instanceof CFAsteriskMSSqlSecAppTable)) { CFAsteriskMSSqlSecAppTable table = (CFAsteriskMSSqlSecAppTable) tableSecApp; table.releasePreparedStatements(); } if ((tableSecDevice != null) && (tableSecDevice instanceof CFAsteriskMSSqlSecDeviceTable)) { CFAsteriskMSSqlSecDeviceTable table = (CFAsteriskMSSqlSecDeviceTable) tableSecDevice; table.releasePreparedStatements(); } if ((tableSecForm != null) && (tableSecForm instanceof CFAsteriskMSSqlSecFormTable)) { CFAsteriskMSSqlSecFormTable table = (CFAsteriskMSSqlSecFormTable) tableSecForm; table.releasePreparedStatements(); } if ((tableSecGroup != null) && (tableSecGroup instanceof CFAsteriskMSSqlSecGroupTable)) { CFAsteriskMSSqlSecGroupTable table = (CFAsteriskMSSqlSecGroupTable) tableSecGroup; table.releasePreparedStatements(); } if ((tableSecGroupForm != null) && (tableSecGroupForm instanceof CFAsteriskMSSqlSecGroupFormTable)) { CFAsteriskMSSqlSecGroupFormTable table = (CFAsteriskMSSqlSecGroupFormTable) tableSecGroupForm; table.releasePreparedStatements(); } if ((tableSecGroupInclude != null) && (tableSecGroupInclude instanceof CFAsteriskMSSqlSecGroupIncludeTable)) { CFAsteriskMSSqlSecGroupIncludeTable table = (CFAsteriskMSSqlSecGroupIncludeTable) tableSecGroupInclude; table.releasePreparedStatements(); } if ((tableSecGroupMember != null) && (tableSecGroupMember instanceof CFAsteriskMSSqlSecGroupMemberTable)) { CFAsteriskMSSqlSecGroupMemberTable table = (CFAsteriskMSSqlSecGroupMemberTable) tableSecGroupMember; table.releasePreparedStatements(); } if ((tableSecSession != null) && (tableSecSession instanceof CFAsteriskMSSqlSecSessionTable)) { CFAsteriskMSSqlSecSessionTable table = (CFAsteriskMSSqlSecSessionTable) tableSecSession; table.releasePreparedStatements(); } if ((tableSecUser != null) && (tableSecUser instanceof CFAsteriskMSSqlSecUserTable)) { CFAsteriskMSSqlSecUserTable table = (CFAsteriskMSSqlSecUserTable) tableSecUser; table.releasePreparedStatements(); } if ((tableService != null) && (tableService instanceof CFAsteriskMSSqlServiceTable)) { CFAsteriskMSSqlServiceTable table = (CFAsteriskMSSqlServiceTable) tableService; table.releasePreparedStatements(); } if ((tableServiceType != null) && (tableServiceType instanceof CFAsteriskMSSqlServiceTypeTable)) { CFAsteriskMSSqlServiceTypeTable table = (CFAsteriskMSSqlServiceTypeTable) tableServiceType; table.releasePreparedStatements(); } if ((tableSipConf != null) && (tableSipConf instanceof CFAsteriskMSSqlSipConfTable)) { CFAsteriskMSSqlSipConfTable table = (CFAsteriskMSSqlSipConfTable) tableSipConf; table.releasePreparedStatements(); } if ((tableSubProject != null) && (tableSubProject instanceof CFAsteriskMSSqlSubProjectTable)) { CFAsteriskMSSqlSubProjectTable table = (CFAsteriskMSSqlSubProjectTable) tableSubProject; table.releasePreparedStatements(); } if ((tableSysCluster != null) && (tableSysCluster instanceof CFAsteriskMSSqlSysClusterTable)) { CFAsteriskMSSqlSysClusterTable table = (CFAsteriskMSSqlSysClusterTable) tableSysCluster; table.releasePreparedStatements(); } if ((tableTSecGroup != null) && (tableTSecGroup instanceof CFAsteriskMSSqlTSecGroupTable)) { CFAsteriskMSSqlTSecGroupTable table = (CFAsteriskMSSqlTSecGroupTable) tableTSecGroup; table.releasePreparedStatements(); } if ((tableTSecGroupInclude != null) && (tableTSecGroupInclude instanceof CFAsteriskMSSqlTSecGroupIncludeTable)) { CFAsteriskMSSqlTSecGroupIncludeTable table = (CFAsteriskMSSqlTSecGroupIncludeTable) tableTSecGroupInclude; table.releasePreparedStatements(); } if ((tableTSecGroupMember != null) && (tableTSecGroupMember instanceof CFAsteriskMSSqlTSecGroupMemberTable)) { CFAsteriskMSSqlTSecGroupMemberTable table = (CFAsteriskMSSqlTSecGroupMemberTable) tableTSecGroupMember; table.releasePreparedStatements(); } if ((tableTenant != null) && (tableTenant instanceof CFAsteriskMSSqlTenantTable)) { CFAsteriskMSSqlTenantTable table = (CFAsteriskMSSqlTenantTable) tableTenant; table.releasePreparedStatements(); } if ((tableTld != null) && (tableTld instanceof CFAsteriskMSSqlTldTable)) { CFAsteriskMSSqlTldTable table = (CFAsteriskMSSqlTldTable) tableTld; table.releasePreparedStatements(); } if ((tableTopDomain != null) && (tableTopDomain instanceof CFAsteriskMSSqlTopDomainTable)) { CFAsteriskMSSqlTopDomainTable table = (CFAsteriskMSSqlTopDomainTable) tableTopDomain; table.releasePreparedStatements(); } if ((tableTopProject != null) && (tableTopProject instanceof CFAsteriskMSSqlTopProjectTable)) { CFAsteriskMSSqlTopProjectTable table = (CFAsteriskMSSqlTopProjectTable) tableTopProject; table.releasePreparedStatements(); } if ((tableURLProtocol != null) && (tableURLProtocol instanceof CFAsteriskMSSqlURLProtocolTable)) { CFAsteriskMSSqlURLProtocolTable table = (CFAsteriskMSSqlURLProtocolTable) tableURLProtocol; table.releasePreparedStatements(); } if ((tableVersion != null) && (tableVersion instanceof CFAsteriskMSSqlVersionTable)) { CFAsteriskMSSqlVersionTable table = (CFAsteriskMSSqlVersionTable) tableVersion; table.releasePreparedStatements(); } if ((tableVoicemailConf != null) && (tableVoicemailConf instanceof CFAsteriskMSSqlVoicemailConfTable)) { CFAsteriskMSSqlVoicemailConfTable table = (CFAsteriskMSSqlVoicemailConfTable) tableVoicemailConf; table.releasePreparedStatements(); } } public static String getQuotedString(String val) { if (val == null) { return ("null"); } else { char c; StringBuilder quoted = new StringBuilder(); quoted.append("'"); int len = val.length(); for (int i = 0; i < len; i++) { if (val.charAt(i) == '\'') { quoted.append("''"); } else if (val.charAt(i) == '\\') { quoted.append("'||E'\\\\'||'"); } else { c = val.charAt(i); if ((c == '0') || (c == '1') || (c == '2') || (c == '3') || (c == '4') || (c == '5') || (c == '6') || (c == '7') || (c == '8') || (c == '9') || (c == 'a') || (c == 'b') || (c == 'c') || (c == 'd') || (c == 'e') || (c == 'f') || (c == 'g') || (c == 'h') || (c == 'i') || (c == 'j') || (c == 'k') || (c == 'l') || (c == 'm') || (c == 'n') || (c == 'o') || (c == 'p') || (c == 'q') || (c == 'r') || (c == 's') || (c == 't') || (c == 'u') || (c == 'v') || (c == 'w') || (c == 'x') || (c == 'y') || (c == 'z') || (c == 'A') || (c == 'B') || (c == 'C') || (c == 'D') || (c == 'E') || (c == 'F') || (c == 'G') || (c == 'H') || (c == 'I') || (c == 'J') || (c == 'K') || (c == 'L') || (c == 'M') || (c == 'N') || (c == 'O') || (c == 'P') || (c == 'Q') || (c == 'R') || (c == 'S') || (c == 'T') || (c == 'U') || (c == 'V') || (c == 'W') || (c == 'X') || (c == 'Y') || (c == 'Z') || (c == ' ') || (c == '\t') || (c == '\r') || (c == '\n') || (c == '`') || (c == '~') || (c == '!') || (c == '@') || (c == '#') || (c == '$') || (c == '%') || (c == '^') || (c == '&') || (c == '*') || (c == '(') || (c == ')') || (c == '-') || (c == '_') || (c == '=') || (c == '+') || (c == '[') || (c == ']') || (c == '{') || (c == '}') || (c == '|') || (c == ';') || (c == ':') || (c == '"') || (c == '<') || (c == '>') || (c == ',') || (c == '.') || (c == '/') || (c == '?')) { quoted.append(c); } else { // Syslog.warn("\t\t\tReplacing invalid character '" + c + "' with space"); quoted.append(' '); } } } quoted.append("'"); return (quoted.toString()); } } public static String getNullableString(ResultSet reader, int colidx) { try { String val = reader.getString(colidx); if (reader.wasNull()) { return (null); } else { return (val); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(CFAsteriskMSSqlSchema.class, "getNullableString", e); } } public static String getBlobString(byte[] val) { if (val == null) { return ("null"); } else { return ("'" + new String(Base64.encodeBase64(val)) + "'"); } } public static String getBoolString(Boolean val) { if (val == null) { return ("null"); } else { if (val) { return ("'Y'"); } else { return ("'N'"); } } } public static String getBoolString(boolean val) { if (val) { return ("'Y'"); } else { return ("'N'"); } } public static String getInt16String(Short val) { if (val == null) { return ("null"); } else { return (val.toString()); } } public static String getInt16String(short val) { return (Short.toString(val)); } public static String getInt32String(Integer val) { if (val == null) { return ("null"); } else { return (val.toString()); } } public static String getInt32String(int val) { return (Integer.toString(val)); } public static String getInt64String(Long val) { if (val == null) { return ("null"); } else { return (val.toString()); } } public static String getInt64String(long val) { return (Long.toString(val)); } public static String getUInt16String(Integer val) { if (val == null) { return ("null"); } else { return (val.toString()); } } public static String getUInt16String(int val) { return (Integer.toString(val)); } public static String getUInt32String(Long val) { if (val == null) { return ("null"); } else { return (val.toString()); } } public static String getUInt32String(long val) { return (Long.toString(val)); } public static String getUInt64String(BigDecimal val) { if (val == null) { return ("null"); } else { return (val.toString()); } } public static String getFloatString(Float val) { if (val == null) { return ("null"); } else { return (val.toString()); } } public static String getFloatString(float val) { return (Float.toString(val)); } public static String getDoubleString(Double val) { if (val == null) { return ("null"); } else { return (val.toString()); } } public static String getDoubleString(double val) { return (Double.toString(val)); } public static String getNumberString(BigDecimal val) { if (val == null) { return ("null"); } else { return (val.toString()); } } public static Integer getNullableInt32(ResultSet reader, int colidx) { try { int val = reader.getInt(colidx); if (reader.wasNull()) { return (null); } else { return (new Integer(val)); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(CFAsteriskMSSqlSchema.class, "getNullableInt32", e); } } public static Short getNullableInt16(ResultSet reader, int colidx) { try { short val = reader.getShort(colidx); if (reader.wasNull()) { return (null); } else { return (new Short(val)); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(CFAsteriskMSSqlSchema.class, "getNullableInt64", e); } } public static Integer getNullableUInt16(ResultSet reader, int colidx) { try { int val = reader.getInt(colidx); if (reader.wasNull()) { return (null); } else { return (new Integer(val)); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(CFAsteriskMSSqlSchema.class, "getNullableUInt16", e); } } public static Long getNullableUInt32(ResultSet reader, int colidx) { try { long val = reader.getLong(colidx); if (reader.wasNull()) { return (null); } else { return (new Long(val)); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(CFAsteriskMSSqlSchema.class, "getNullableUInt32", e); } } public static BigDecimal getNullableUInt64(ResultSet reader, int colidx) { try { String strval = reader.getString(colidx); if (reader.wasNull() || (strval == null) || (strval.length() <= 0)) { return (null); } else { BigDecimal retval = new BigDecimal(strval); return (retval); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(CFAsteriskMSSqlSchema.class, "getNullableUInt64", e); } } public static Byte getNullableByte(ResultSet reader, int colidx) { try { byte val = reader.getByte(colidx); if (reader.wasNull()) { return (null); } else { return (new Byte(val)); } } catch (SQLException e) { throw CFLib.getDefaultExceptionFactory().newDbException(CFAsteriskMSSqlSchema.class, "getNullableByte", e); } } public static String getQuotedDateString(Calendar val) { if (val == null) { return ("null"); } else { StringBuffer buff = new StringBuffer("'"); Formatter fmt = new Formatter(buff); Calendar db = CFLibDbUtil.getDbServerCalendar(val); fmt.format("%1$04d", db.get(Calendar.YEAR)); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.MONTH) + 1); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.DAY_OF_MONTH)); buff.append("'"); fmt.close(); return (buff.toString()); } } public static String getQuotedTimeString(Calendar val) { if (val == null) { return ("null"); } else { StringBuffer buff = new StringBuffer("'"); Formatter fmt = new Formatter(buff); Calendar db = CFLibDbUtil.getDbServerCalendar(val); fmt.format("%1$02d", db.get(Calendar.HOUR_OF_DAY)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.MINUTE)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.SECOND)); buff.append("'"); fmt.close(); return (buff.toString()); } } public static String getQuotedTimestampString(Calendar val) { if (val == null) { return ("null"); } else { StringBuffer buff = new StringBuffer("'"); Formatter fmt = new Formatter(buff); Calendar db = CFLibDbUtil.getDbServerCalendar(val); fmt.format("%1$04d", db.get(Calendar.YEAR)); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.MONTH) + 1); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.DAY_OF_MONTH)); buff.append(" "); fmt.format("%1$02d", db.get(Calendar.HOUR_OF_DAY)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.MINUTE)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.SECOND)); buff.append("'"); fmt.close(); return (buff.toString()); } } public static String getQuotedTZDateString(Calendar val) { if (val == null) { return ("null"); } else { Calendar db = CFLibDbUtil.getDbServerCalendar(val); StringBuffer buff = new StringBuffer("'"); Formatter fmt = new Formatter(buff); fmt.format("%1$04d", db.get(Calendar.YEAR)); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.MONTH) + 1); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.DAY_OF_MONTH)); buff.append(" "); fmt.format("%1$02d", db.get(Calendar.HOUR_OF_DAY)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.MINUTE)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.SECOND)); buff.append("'"); fmt.close(); return (buff.toString()); } } public static String getQuotedTZTimeString(Calendar val) { if (val == null) { return ("null"); } else { Calendar db = CFLibDbUtil.getDbServerCalendar(val); StringBuffer buff = new StringBuffer("'"); Formatter fmt = new Formatter(buff); fmt.format("%1$04d", db.get(Calendar.YEAR)); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.MONTH) + 1); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.DAY_OF_MONTH)); buff.append(" "); fmt.format("%1$02d", db.get(Calendar.HOUR_OF_DAY)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.MINUTE)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.SECOND)); buff.append("'"); fmt.close(); return (buff.toString()); } } public static String getQuotedTZTimestampString(Calendar val) { if (val == null) { return ("null"); } else { Calendar db = CFLibDbUtil.getDbServerCalendar(val); StringBuffer buff = new StringBuffer("'"); Formatter fmt = new Formatter(buff); fmt.format("%1$04d", db.get(Calendar.YEAR)); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.MONTH) + 1); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.DAY_OF_MONTH)); buff.append(" "); fmt.format("%1$02d", db.get(Calendar.HOUR_OF_DAY)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.MINUTE)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.SECOND)); buff.append("'"); fmt.close(); return (buff.toString()); } } public static String getDateString(Calendar val) { if (val == null) { return ("null"); } else { Calendar db = CFLibDbUtil.getDbServerCalendar(val); StringBuffer buff = new StringBuffer(); Formatter fmt = new Formatter(buff); fmt.format("%1$04d", db.get(Calendar.YEAR)); fmt.format("%1$02d", db.get(Calendar.MONTH) + 1); fmt.format("%1$02d", db.get(Calendar.DAY_OF_MONTH)); fmt.close(); return (buff.toString()); } } public static String getTimeString(Calendar val) { if (val == null) { return ("null"); } else { StringBuffer buff = new StringBuffer(); Formatter fmt = new Formatter(buff); Calendar db = CFLibDbUtil.getDbServerCalendar(val); fmt.format("%1$02d", db.get(Calendar.HOUR_OF_DAY)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.MINUTE)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.SECOND)); fmt.close(); return (buff.toString()); } } public static String getTimestampString(Calendar val) { if (val == null) { return ("null"); } else { StringBuffer buff = new StringBuffer(); Formatter fmt = new Formatter(buff); Calendar db = CFLibDbUtil.getDbServerCalendar(val); fmt.format("%1$04d", db.get(Calendar.YEAR)); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.MONTH) + 1); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.DAY_OF_MONTH)); buff.append(" "); fmt.format("%1$02d", db.get(Calendar.HOUR_OF_DAY)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.MINUTE)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.SECOND)); fmt.close(); return (buff.toString()); } } public static String getTZDateString(Calendar val) { if (val == null) { return ("null"); } else { Calendar db = CFLibDbUtil.getDbServerCalendar(val); StringBuffer buff = new StringBuffer(); Formatter fmt = new Formatter(buff); fmt.format("%1$04d", db.get(Calendar.YEAR)); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.MONTH) + 1); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.DAY_OF_MONTH)); buff.append(" "); fmt.format("%1$02d", db.get(Calendar.HOUR_OF_DAY)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.MINUTE)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.SECOND)); fmt.close(); return (buff.toString()); } } public static String getTZTimeString(Calendar val) { if (val == null) { return ("null"); } else { Calendar db = CFLibDbUtil.getDbServerCalendar(val); StringBuffer buff = new StringBuffer(); Formatter fmt = new Formatter(buff); fmt.format("%1$04d", db.get(Calendar.YEAR)); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.MONTH) + 1); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.DAY_OF_MONTH)); buff.append(" "); fmt.format("%1$02d", db.get(Calendar.HOUR_OF_DAY)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.MINUTE)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.SECOND)); fmt.close(); return (buff.toString()); } } public static String getTZTimestampString(Calendar val) { if (val == null) { return ("null"); } else { Calendar db = CFLibDbUtil.getDbServerCalendar(val); StringBuffer buff = new StringBuffer(); Formatter fmt = new Formatter(buff); fmt.format("%1$04d", db.get(Calendar.YEAR)); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.MONTH) + 1); buff.append("-"); fmt.format("%1$02d", db.get(Calendar.DAY_OF_MONTH)); buff.append(" "); fmt.format("%1$02d", db.get(Calendar.HOUR_OF_DAY)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.MINUTE)); buff.append(":"); fmt.format("%1$02d", db.get(Calendar.SECOND)); fmt.close(); return (buff.toString()); } } public static String getUuidString(UUID val) { if (val == null) { return ("null"); } else { return ("'" + val.toString() + "'"); } } public static Calendar convertDateString(String val) { if ((val == null) || (val.length() == 0)) { return (null); } else if (val.length() != 8) { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertDateString", "Value must be in YYYYMMDD format, \"" + val + "\" is invalid"); } else if (((val.charAt(0) >= '0') && (val.charAt(0) <= '9')) && ((val.charAt(1) >= '0') && (val.charAt(1) <= '9')) && ((val.charAt(2) >= '0') && (val.charAt(2) <= '9')) && ((val.charAt(3) >= '0') && (val.charAt(3) <= '9')) && ((val.charAt(4) >= '0') && (val.charAt(4) <= '1')) && ((val.charAt(5) >= '0') && (val.charAt(5) <= '9')) && ((val.charAt(6) >= '0') && (val.charAt(6) <= '3')) && ((val.charAt(7) >= '0') && (val.charAt(7) <= '9'))) { /* * NOTE: * .Net uses substring( startcol, lengthOfSubstring ) * Java uses substring( startcol, endcol ) and does not * include charAt( endcol ); */ int year = Integer.parseInt(val.substring(0, 4)); int month = Integer.parseInt(val.substring(4, 6)); int day = Integer.parseInt(val.substring(6, 8)); Calendar retval = new GregorianCalendar(CFLibDbUtil.getDbServerTimeZone()); retval.set(Calendar.YEAR, year); retval.set(Calendar.MONTH, month - 1); retval.set(Calendar.DAY_OF_MONTH, day); retval.set(Calendar.HOUR_OF_DAY, 0); retval.set(Calendar.MINUTE, 0); retval.set(Calendar.SECOND, 0); Calendar local = new GregorianCalendar(); local.setTimeInMillis(retval.getTimeInMillis()); return (local); } else { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertDateString", "Value must be in YYYYMMDD format, \"" + val + "\" is invalid"); } } public static Calendar convertTimeString(String val) { if ((val == null) || (val.length() == 0)) { return (null); } else if (val.length() != 8) { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertTimeString", "Value must be in HH24:MI:SS format, \"" + val + "\" is invalid"); } else if (((val.charAt(0) >= '0') && (val.charAt(0) <= '2')) && ((val.charAt(1) >= '0') && (val.charAt(1) <= '9')) && (val.charAt(2) == ':') && ((val.charAt(3) >= '0') && (val.charAt(3) <= '5')) && ((val.charAt(4) >= '0') && (val.charAt(4) <= '9')) && (val.charAt(5) == ':') && ((val.charAt(6) >= '0') && (val.charAt(6) <= '5')) && ((val.charAt(7) >= '0') && (val.charAt(7) <= '9'))) { /* * NOTE: * .Net uses substring( startcol, lengthOfSubstring ) * Java uses substring( startcol, endcol ) and does not * include charAt( endcol ); */ int hour = Integer.parseInt(val.substring(0, 2)); int minute = Integer.parseInt(val.substring(3, 5)); int second = Integer.parseInt(val.substring(6, 8)); Calendar retval = new GregorianCalendar(CFLibDbUtil.getDbServerTimeZone()); retval.set(Calendar.YEAR, 2000); retval.set(Calendar.MONTH, 0); retval.set(Calendar.DAY_OF_MONTH, 1); retval.set(Calendar.HOUR_OF_DAY, hour); retval.set(Calendar.MINUTE, minute); retval.set(Calendar.SECOND, second); Calendar local = new GregorianCalendar(); local.setTimeInMillis(retval.getTimeInMillis()); return (local); } else { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertTimeString", "Value must be in HH24:MI:SS format \"" + val + "\" is invalid"); } } public static Calendar convertTimestampString(String val) { if ((val == null) || (val.length() == 0)) { return (null); } else if (val.length() != 19) { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertTimestampString", "Value must be in YYYY-MM-DD HH24:MI:SS format \"" + val + "\" is invalid"); } else if (((val.charAt(0) >= '0') && (val.charAt(0) <= '9')) && ((val.charAt(1) >= '0') && (val.charAt(1) <= '9')) && ((val.charAt(2) >= '0') && (val.charAt(2) <= '9')) && ((val.charAt(3) >= '0') && (val.charAt(3) <= '9')) && (val.charAt(4) == '-') && ((val.charAt(5) >= '0') && (val.charAt(5) <= '1')) && ((val.charAt(6) >= '0') && (val.charAt(6) <= '9')) && (val.charAt(7) == '-') && ((val.charAt(8) >= '0') && (val.charAt(8) <= '3')) && ((val.charAt(9) >= '0') && (val.charAt(9) <= '9')) && (val.charAt(10) == ' ') && ((val.charAt(11) >= '0') && (val.charAt(11) <= '2')) && ((val.charAt(12) >= '0') && (val.charAt(12) <= '9')) && (val.charAt(13) == ':') && ((val.charAt(14) >= '0') && (val.charAt(14) <= '5')) && ((val.charAt(15) >= '0') && (val.charAt(15) <= '9')) && (val.charAt(16) == ':') && ((val.charAt(17) >= '0') && (val.charAt(17) <= '5')) && ((val.charAt(18) >= '0') && (val.charAt(18) <= '9'))) { /* * NOTE: * .Net uses substring( startcol, lengthOfSubstring ) * Java uses substring( startcol, endcol ) and does not * include charAt( endcol ); */ int year = Integer.parseInt(val.substring(0, 4)); int month = Integer.parseInt(val.substring(5, 7)); int day = Integer.parseInt(val.substring(8, 10)); int hour = Integer.parseInt(val.substring(11, 13)); int minute = Integer.parseInt(val.substring(14, 16)); int second = Integer.parseInt(val.substring(17, 19)); Calendar retval = new GregorianCalendar(CFLibDbUtil.getDbServerTimeZone()); retval.set(Calendar.YEAR, year); retval.set(Calendar.MONTH, month - 1); retval.set(Calendar.DAY_OF_MONTH, day); retval.set(Calendar.HOUR_OF_DAY, hour); retval.set(Calendar.MINUTE, minute); retval.set(Calendar.SECOND, second); Calendar local = new GregorianCalendar(); local.setTimeInMillis(retval.getTimeInMillis()); return (local); } else { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertTimestampString", "Value must be in YYYY-MM-DD HH24:MI:SS format \"" + val + "\" is invalid"); } } public static Calendar convertTZDateString(String val) { if ((val == null) || (val.length() == 0)) { return (null); } else if (val.length() != 19) { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertTZDateString", "Value must be in YYYY-MM-DD HH24:MI:SS format \"" + val + "\" is invalid"); } else if (((val.charAt(0) >= '0') && (val.charAt(0) <= '9')) && ((val.charAt(1) >= '0') && (val.charAt(1) <= '9')) && ((val.charAt(2) >= '0') && (val.charAt(2) <= '9')) && ((val.charAt(3) >= '0') && (val.charAt(3) <= '9')) && (val.charAt(4) == '-') && ((val.charAt(5) >= '0') && (val.charAt(5) <= '1')) && ((val.charAt(6) >= '0') && (val.charAt(6) <= '9')) && (val.charAt(7) == '-') && ((val.charAt(8) >= '0') && (val.charAt(8) <= '3')) && ((val.charAt(9) >= '0') && (val.charAt(9) <= '9')) && (val.charAt(10) == ' ') && ((val.charAt(11) >= '0') && (val.charAt(11) <= '2')) && ((val.charAt(12) >= '0') && (val.charAt(12) <= '9')) && (val.charAt(13) == ':') && ((val.charAt(14) >= '0') && (val.charAt(14) <= '5')) && ((val.charAt(15) >= '0') && (val.charAt(15) <= '9')) && (val.charAt(16) == ':') && ((val.charAt(17) >= '0') && (val.charAt(17) <= '5')) && ((val.charAt(18) >= '0') && (val.charAt(18) <= '9'))) { /* * NOTE: * .Net uses substring( startcol, lengthOfSubstring ) * Java uses substring( startcol, endcol ) and does not * include charAt( endcol ); */ int year = Integer.parseInt(val.substring(0, 4)); int month = Integer.parseInt(val.substring(5, 7)); int day = Integer.parseInt(val.substring(8, 10)); int hour = Integer.parseInt(val.substring(11, 13)); int minute = Integer.parseInt(val.substring(14, 16)); int second = Integer.parseInt(val.substring(17, 19)); Calendar retval = new GregorianCalendar(CFLibDbUtil.getDbServerTimeZone()); retval.set(Calendar.YEAR, year); retval.set(Calendar.MONTH, month - 1); retval.set(Calendar.DAY_OF_MONTH, day); retval.set(Calendar.HOUR_OF_DAY, hour); retval.set(Calendar.MINUTE, minute); retval.set(Calendar.SECOND, second); Calendar utc = CFLibDbUtil.getUTCCalendar(retval); return (utc); } else { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertTZDateString", "Value must be in YYYY-MM-DD HH24:MI:SS format \"" + val + "\" is invalid"); } } public static Calendar convertTZTimeString(String val) { if ((val == null) || (val.length() == 0)) { return (null); } else if (val.length() != 19) { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertTZTimeString", "Value must be in YYYY-MM-DD HH24.MI.SS format \"" + val + "\" is invalid"); } else if (((val.charAt(0) >= '0') && (val.charAt(0) <= '9')) && ((val.charAt(1) >= '0') && (val.charAt(1) <= '9')) && ((val.charAt(2) >= '0') && (val.charAt(2) <= '9')) && ((val.charAt(3) >= '0') && (val.charAt(3) <= '9')) && (val.charAt(4) == '-') && ((val.charAt(5) >= '0') && (val.charAt(5) <= '1')) && ((val.charAt(6) >= '0') && (val.charAt(6) <= '9')) && (val.charAt(7) == '-') && ((val.charAt(8) >= '0') && (val.charAt(8) <= '3')) && ((val.charAt(9) >= '0') && (val.charAt(9) <= '9')) && (val.charAt(10) == ' ') && ((val.charAt(11) >= '0') && (val.charAt(11) <= '2')) && ((val.charAt(12) >= '0') && (val.charAt(12) <= '9')) && (val.charAt(13) == ':') && ((val.charAt(14) >= '0') && (val.charAt(14) <= '5')) && ((val.charAt(15) >= '0') && (val.charAt(15) <= '9')) && (val.charAt(16) == ':') && ((val.charAt(17) >= '0') && (val.charAt(17) <= '5')) && ((val.charAt(18) >= '0') && (val.charAt(18) <= '9'))) { /* * NOTE: * .Net uses substring( startcol, lengthOfSubstring ) * Java uses substring( startcol, endcol ) and does not * include charAt( endcol ); */ int year = Integer.parseInt(val.substring(0, 4)); int month = Integer.parseInt(val.substring(5, 7)); int day = Integer.parseInt(val.substring(8, 10)); int hour = Integer.parseInt(val.substring(11, 13)); int minute = Integer.parseInt(val.substring(14, 16)); int second = Integer.parseInt(val.substring(17, 19)); Calendar retval = new GregorianCalendar(CFLibDbUtil.getDbServerTimeZone()); retval.set(Calendar.YEAR, year); retval.set(Calendar.MONTH, month - 1); retval.set(Calendar.DAY_OF_MONTH, day); retval.set(Calendar.HOUR_OF_DAY, hour); retval.set(Calendar.MINUTE, minute); retval.set(Calendar.SECOND, second); Calendar utc = CFLibDbUtil.getUTCCalendar(retval); return (utc); } else { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertTZTimeString", "Value must be in YYYY-MM-DD HH24:MI:SS format \"" + val + "\" is invalid"); } } public static Calendar convertTZTimestampString(String val) { if ((val == null) || (val.length() == 0)) { return (null); } else if (val.length() != 19) { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertTZTimestampString", "Value must be in YYYY-MM-DD-HH24.MI.SS format \"" + val + "\" is invalid"); } else if (((val.charAt(0) >= '0') && (val.charAt(0) <= '9')) && ((val.charAt(1) >= '0') && (val.charAt(1) <= '9')) && ((val.charAt(2) >= '0') && (val.charAt(2) <= '9')) && ((val.charAt(3) >= '0') && (val.charAt(3) <= '9')) && (val.charAt(4) == '-') && ((val.charAt(5) >= '0') && (val.charAt(5) <= '1')) && ((val.charAt(6) >= '0') && (val.charAt(6) <= '9')) && (val.charAt(7) == '-') && ((val.charAt(8) >= '0') && (val.charAt(8) <= '3')) && ((val.charAt(9) >= '0') && (val.charAt(9) <= '9')) && (val.charAt(10) == ' ') && ((val.charAt(11) >= '0') && (val.charAt(11) <= '2')) && ((val.charAt(12) >= '0') && (val.charAt(12) <= '9')) && (val.charAt(13) == ':') && ((val.charAt(14) >= '0') && (val.charAt(14) <= '5')) && ((val.charAt(15) >= '0') && (val.charAt(15) <= '9')) && (val.charAt(16) == ':') && ((val.charAt(17) >= '0') && (val.charAt(17) <= '5')) && ((val.charAt(18) >= '0') && (val.charAt(18) <= '9'))) { /* * NOTE: * .Net uses substring( startcol, lengthOfSubstring ) * Java uses substring( startcol, endcol ) and does not * include charAt( endcol ); */ int year = Integer.parseInt(val.substring(0, 4)); int month = Integer.parseInt(val.substring(5, 7)); int day = Integer.parseInt(val.substring(8, 10)); int hour = Integer.parseInt(val.substring(11, 13)); int minute = Integer.parseInt(val.substring(14, 16)); int second = Integer.parseInt(val.substring(17, 19)); Calendar retval = new GregorianCalendar(CFLibDbUtil.getDbServerTimeZone()); retval.set(Calendar.YEAR, year); retval.set(Calendar.MONTH, month - 1); retval.set(Calendar.DAY_OF_MONTH, day); retval.set(Calendar.HOUR_OF_DAY, hour); retval.set(Calendar.MINUTE, minute); retval.set(Calendar.SECOND, second); Calendar utc = CFLibDbUtil.getUTCCalendar(retval); return (utc); } else { throw CFLib.getDefaultExceptionFactory().newUsageException(CFAsteriskMSSqlSchema.class, "convertTZTimestampString", "Value must be in YYYY-MM-DD HH24:MI:SS format \"" + val + "\" is invalid"); } } public static UUID convertUuidString(String val) { if ((val == null) || (val.length() == 0)) { return (null); } else { return (UUID.fromString(val)); } } }