Java tutorial
/** * 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.text.ParseException; import java.util.ArrayList; import java.util.HashSet; import java.util.Vector; import model.Directory; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import util.DbConstants; import util.MysqlSearch; import util.RegexStrUtil; import util.GlobalConst; /** * This class is used by spring to populate search results * This class implements CarryonSearchQuery * @author Smitha Gudur (smitha@redbasin.com) * @version $Revision: 1.1 $ */ class DirectoryFileSearchQuery extends BasicDirectQuery { protected final Log logger = LogFactory.getLog(getClass()); protected volatile MysqlSearch sqlSearch; /** * This method lists all the results for the search text from directories * @param conn the connection * @param collabrumId the collabrumid * @return HashSet the set that has the list of moderators for these collabrums. * @throws BaseDaoException - when error occurs **/ public HashSet run(Connection conn, String sString, String fileName, String dirName) throws BaseDaoException { //if ((RegexStrUtil.isNull(sString) || conn == null)) { if ((conn == null) || RegexStrUtil.isNull(fileName)) { return null; } //StringBuffer sb = new StringBuffer("select distinct d1.dirname, d2.directoryid, d2.entryid, d2.btitle from directory d1, dirblob d2 where"); StringBuffer sb = new StringBuffer( "select distinct d1.dirname, d2.directoryid, d2.entryid, d2.btitle from directory d1, dirblob d2 where"); if (!RegexStrUtil.isNull(sString)) { ArrayList columns = new ArrayList(); columns.add("dirname"); // set the sqlConstraint as " and " String sqlConstraint = " and "; sb.append(sqlSearch.getConstraint(columns, sString, sqlConstraint)); } else { sb.append("dirpath IS NULL"); } // directory name can be null if (!RegexStrUtil.isNull(dirName)) { sb.append(" and dirname like '%"); sb.append(dirName); sb.append("%'"); } sb.append(" and d1.directoryid=d2.directoryid and "); sb.append("d2.btitle like '%"); sb.append(fileName); sb.append("%'"); logger.info("sb.toString() = " + sb.toString()); try { PreparedStatement stmt = conn.prepareStatement(sb.toString()); ResultSet rs = stmt.executeQuery(); Vector columnNames = null; Directory directory = null; HashSet pendingSet = new HashSet(); if (rs != null) { columnNames = dbutils.getColumnNames(rs); } while (rs.next()) { directory = (Directory) eop.newObject(DbConstants.DIRECTORY); for (int j = 0; j < columnNames.size(); j++) { if (((String) (columnNames.elementAt(j))).equalsIgnoreCase(DbConstants.ENTRY_DATE)) { try { directory.setValue(DbConstants.ENTRY_DATE, GlobalConst.dncalendar.getDisplayDate(rs.getTimestamp(DbConstants.ENTRY_DATE))); } catch (ParseException e) { throw new BaseDaoException("could not parse the date for entrydate in directory " + rs.getTimestamp(DbConstants.ENTRY_DATE), e); } } else { directory.setValue((String) columnNames.elementAt(j), (String) rs.getString((String) columnNames.elementAt(j))); } } pendingSet.add(directory); } return pendingSet; } catch (Exception e) { throw new BaseDaoException("Error occured while executing search directory run query " + sb.toString(), e); } } /** * This method is called by spring. * @param dbutils */ public void setmysqlSearch(MysqlSearch mysqlSearch) { this.sqlSearch = mysqlSearch; } }