dao.CarryonHitsQuery.java Source code

Java tutorial

Introduction

Here is the source code for dao.CarryonHitsQuery.java

Source

/**
* Copyright (c) 2001-2012 "Redbasin Networks, INC," [http://redbasin.org]
*
* This file is part of Redbasin OpenDocShare community project.
*
* Redbasin OpenDocShare 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 dao;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import java.util.Vector;
import model.Photo;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import util.DbConstants;

/**
  * This class is used by spring to populate a <code>search</code> bean.
  * This class implements CarryonHitsQuery
  *
  * @author Smitha Gudur (smitha@redbasin.com)
  * @version $Revision: 1.1 $
  */
class CarryonHitsQuery extends BasicDirectQuery {

    // TODO: volatile or use our own connection
    private volatile Vector columnNames = null;
    protected final Log logger = LogFactory.getLog(getClass());

    /**
     * This constructor is called when the bean makes a 
     * call to query.execute(). 
     */
    public List run(Connection conn) throws BaseDaoException {

        if (conn == null) {
            return null;
        }

        try {
            PreparedStatement stmt = conn.prepareStatement(
                    "select hdlogin.login, carryonhits.loginid,carryonhits.entryid,carryonhits.btitle,carryonhits.hits,carryontag.usertags from carryonhits left join carryontag on carryonhits.loginid=carryontag.ownerid and carryontag.entryid=carryonhits.entryid left join hdlogin on carryonhits.loginid=hdlogin.loginid group by carryonhits.entryid order by hits DESC limit 20");

            if (stmt == null) {
                return null;
            }

            ResultSet rs = stmt.executeQuery();
            Vector columnNames = null;
            Photo photo = null;
            List photoList = new ArrayList();

            if (rs != null) {
                columnNames = dbutils.getColumnNames(rs);
                while (rs.next()) {
                    photo = (Photo) eop.newObject(DbConstants.PHOTO);
                    for (int j = 0; j < columnNames.size(); j++) {
                        photo.setValue((String) columnNames.elementAt(j),
                                (String) rs.getString((String) columnNames.elementAt(j)));
                    }
                    photoList.add(photo);
                }
            }
            return photoList;
        } catch (Exception e) {
            throw new BaseDaoException("Error occured while executing carryonhits run query ", e);
        }
    }
}