FilterDataHandler.java :  » Scripting » Jython-2.5.1 » com » ziclix » python » sql » Java Open Source

Java Open Source » Scripting » Jython 2.5.1 
Jython 2.5.1 » com » ziclix » python » sql » FilterDataHandler.java
/*
 * Jython Database Specification API 2.0
 *
 * $Id: FilterDataHandler.java 2414 2005-02-23 04:26:23Z bzimmer $
 *
 * Copyright (c) 2001 brian zimmer <bzimmer@ziclix.com>
 *
 */
package com.ziclix.python.sql;

import org.python.core.Py;
import org.python.core.PyList;
import org.python.core.PyObject;

import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

/**
 * A FilterDataHandler contains some other DataHandler, which it uses
 * as its basic source of functionality, possibly transforming the calls
 * along the way or providing additional functionality. The class FilterDataHandler
 * itself simply overrides all methods of DataHandler with versions that
 * pass all requests to the contained data handler.
 *
 * @author brian zimmer
 * @author last revised by $Author: bzimmer $
 * @version $Revision: 2414 $
 */
public abstract class FilterDataHandler extends DataHandler {

    private DataHandler delegate;

    /**
     * Constructor FilterDataHandler
     *
     * @param delegate
     */
    public FilterDataHandler(DataHandler delegate) {
        this.delegate = delegate;
    }

    /**
     * Returns the row id of the last executed statement.
     *
     * @param stmt
     * @return PyObject
     * @throws SQLException
     */
    public PyObject getRowId(Statement stmt) throws SQLException {
        return this.delegate.getRowId(stmt);
    }

    /**
     * Method preExecute
     *
     * @param stmt
     * @throws SQLException
     */
    public void preExecute(Statement stmt) throws SQLException {
        this.delegate.preExecute(stmt);
    }

    /**
     * Method postExecute
     *
     * @param stmt
     * @throws SQLException
     */
    public void postExecute(Statement stmt) throws SQLException {
        this.delegate.postExecute(stmt);
    }

    /**
     * Method setJDBCObject
     *
     * @param stmt
     * @param index
     * @param object
     * @throws SQLException
     */
    public void setJDBCObject(PreparedStatement stmt, int index, PyObject object) throws SQLException {
        this.delegate.setJDBCObject(stmt, index, object);
    }

    /**
     * Method setJDBCObject
     *
     * @param stmt
     * @param index
     * @param object
     * @param type
     * @throws SQLException
     */
    public void setJDBCObject(PreparedStatement stmt, int index, PyObject object, int type) throws SQLException {
        this.delegate.setJDBCObject(stmt, index, object, type);
    }

    /**
     * Method getPyObject
     *
     * @param set
     * @param col
     * @param type
     * @return PyObject
     * @throws SQLException
     */
    public PyObject getPyObject(ResultSet set, int col, int type) throws SQLException {
        return this.delegate.getPyObject(set, col, type);
    }

    /**
     * Returns a list of datahandlers chained together through the use of delegation.
     *
     * @return a list of datahandlers chained together through the use of delegation
     */
    public PyObject __chain__() {
        PyList list = new PyList();
        DataHandler handler = this;
        while (handler != null) {
            list.append(Py.java2py(handler));
            if (handler instanceof FilterDataHandler) {
                handler = ((FilterDataHandler) handler).delegate;
            } else {
                handler = null;
            }
        }
        return list;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.