package railo.runtime.orm; import java.sql.Array; import java.sql.Blob; import java.sql.CallableStatement; import java.sql.Clob; import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.NClob; import java.sql.PreparedStatement; import java.sql.SQLException; import java.sql.SQLFeatureNotSupportedException; import java.sql.SQLWarning; import java.sql.SQLXML; import java.sql.Savepoint; import java.sql.Statement; import java.sql.Struct; import java.util.Map; import java.util.Properties; import java.util.concurrent.Executor; import railo.runtime.PageContext; import railo.runtime.exp.PageException; public class ORMConnection implements Connection { private ORMSession session; private boolean autoCommit=false; private int isolation=Connection.TRANSACTION_SERIALIZABLE; private ORMTransaction trans; /** * Constructor of the class * @param session * @throws PageException */ public ORMConnection(PageContext pc,ORMSession session) { this.session=session; trans = session.getTransaction(session.getEngine().getConfiguration(pc).autoManageSession()); trans.begin(); } @Override public void clearWarnings() throws SQLException {} public void close() throws SQLException { // TODO Auto-generated method stub } @Override public void commit() { trans.commit(); } @Override public Statement createStatement() throws SQLException { throw notSupported(); } @Override public Statement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException { throw notSupported(); } @Override public Statement createStatement(int resultSetType,int resultSetConcurrency, int resultSetHoldability)throws SQLException { throw notSupported(); } @Override public boolean getAutoCommit() throws SQLException { return autoCommit; } @Override public int getTransactionIsolation() throws SQLException { return isolation; } @Override public void setTransactionIsolation(int isolation) throws SQLException { this.isolation=isolation; } @Override public String getCatalog() throws SQLException { throw notSupported(); } @Override public int getHoldability() throws SQLException { throw notSupported(); } @Override public DatabaseMetaData getMetaData() throws SQLException { throw notSupported(); } @Override public Map<String, Class<?>> getTypeMap() throws SQLException { throw notSupported(); } @Override public SQLWarning getWarnings() throws SQLException { throw notSupported(); } @Override public boolean isClosed() throws SQLException { return !session.isValid(); } @Override public boolean isReadOnly() throws SQLException { return false; } @Override public String nativeSQL(String sql) throws SQLException { return sql; } @Override public CallableStatement prepareCall(String sql) throws SQLException { throw notSupported(); } @Override public CallableStatement prepareCall(String sql, int resultSetType,int resultSetConcurrency) throws SQLException { throw notSupported(); } @Override public CallableStatement prepareCall(String sql, int resultSetType,int resultSetConcurrency, int resultSetHoldability)throws SQLException { throw notSupported(); } @Override public PreparedStatement prepareStatement(String sql) throws SQLException { throw notSupported(); } @Override public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys)throws SQLException { throw notSupported(); } @Override public PreparedStatement prepareStatement(String sql, int[] columnIndexes)throws SQLException { throw notSupported(); } @Override public PreparedStatement prepareStatement(String sql, String[] columnNames)throws SQLException { throw notSupported(); } @Override public PreparedStatement prepareStatement(String sql, int resultSetType,int resultSetConcurrency) throws SQLException { throw notSupported(); } @Override public PreparedStatement prepareStatement(String sql, int resultSetType,int resultSetConcurrency, int resultSetHoldability)throws SQLException { throw notSupported(); } @Override public void releaseSavepoint(Savepoint savepoint) throws SQLException { } @Override public void rollback() { trans.rollback(); } @Override public void rollback(Savepoint savepoint) throws SQLException { rollback(); } public void setAutoCommit(boolean autoCommit) throws SQLException { this.autoCommit=autoCommit; if(autoCommit) trans.end(); } @Override public void setCatalog(String catalog) throws SQLException { } @Override public void setHoldability(int holdability) throws SQLException { } @Override public void setReadOnly(boolean readOnly) throws SQLException { } @Override public Savepoint setSavepoint() throws SQLException { throw notSupported(); } @Override public Savepoint setSavepoint(String name) throws SQLException { throw notSupported(); } @Override public void setTypeMap(Map<String, Class<?>> map) throws SQLException { throw notSupported(); } /*private SQLException toSQLException(PageException pe) { SQLException e = new SQLException(pe.getMessage()); e.initCause(pe); return e; }*/ public <T> T unwrap(Class<T> iface) throws SQLException { throw notSupported(); } public boolean isWrapperFor(Class<?> iface) throws SQLException { throw notSupported(); } public Clob createClob() throws SQLException { throw notSupported(); } public Blob createBlob() throws SQLException { throw notSupported(); } public boolean isValid(int timeout) throws SQLException { throw notSupported(); } public void setClientInfo(String name, String value) { throw notSupportedEL(); } public void setClientInfo(Properties properties) { throw notSupportedEL(); } public String getClientInfo(String name) throws SQLException { throw notSupported(); } public Properties getClientInfo() throws SQLException { throw notSupported(); } public Array createArrayOf(String typeName, Object[] elements) throws SQLException { throw notSupported(); } @Override public Struct createStruct(String typeName, Object[] attributes)throws SQLException { throw notSupported(); } private SQLException notSupported() { return new SQLFeatureNotSupportedException("this feature is not supported"); } private RuntimeException notSupportedEL() { return new RuntimeException(new SQLFeatureNotSupportedException("this feature is not supported")); } public NClob createNClob() throws SQLException { throw notSupported(); } public SQLXML createSQLXML() throws SQLException { throw notSupported(); } // used only with java 7, do not set @Override public void setSchema(String schema) throws SQLException { throw notSupported(); } // used only with java 7, do not set @Override public String getSchema() throws SQLException { throw notSupported(); } // used only with java 7, do not set @Override public void abort(Executor executor) throws SQLException { throw notSupported(); } // used only with java 7, do not set @Override public void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException { throw notSupported(); } // used only with java 7, do not set @Override public int getNetworkTimeout() throws SQLException { throw notSupported(); } }