ApptDAO.java 11.41 KiB
package edu.ncsu.csc.itrust.dao.mysql;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List;
import edu.ncsu.csc.itrust.DBUtil;
import edu.ncsu.csc.itrust.beans.ApptBean;
import edu.ncsu.csc.itrust.beans.loaders.ApptBeanLoader;
import edu.ncsu.csc.itrust.dao.DAOFactory;
import edu.ncsu.csc.itrust.exception.DBException;
@SuppressWarnings({})
public class ApptDAO {
private transient final DAOFactory factory;
private transient final ApptBeanLoader abloader;
private transient final ApptTypeDAO apptTypeDAO;
private static final int MIN_MID = 999999999;
public ApptDAO(final DAOFactory factory) {
this.factory = factory;
this.apptTypeDAO = factory.getApptTypeDAO();
this.abloader = new ApptBeanLoader();
}
public List<ApptBean> getAppt(final int apptID) throws SQLException, DBException {
Connection conn = null;
PreparedStatement pstring = null;
try {
conn = factory.getConnection();
pstring = conn.prepareStatement("SELECT * FROM appointment WHERE appt_id=?");
pstring.setInt(1, apptID);
final ResultSet results = pstring.executeQuery();
final List<ApptBean> abList = this.abloader.loadList(results);
results.close();
pstring.close();
return abList;
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
public List<ApptBean> getApptsFor(final long mid) throws SQLException, DBException {
Connection conn = null;
PreparedStatement pstring = null;
try{
conn = factory.getConnection();
if(mid >= MIN_MID){
pstring = conn.prepareStatement("SELECT * FROM appointment WHERE doctor_id=? AND sched_date > NOW() ORDER BY sched_date;");
}
else {
pstring = conn.prepareStatement("SELECT * FROM appointment WHERE patient_id=? AND sched_date > NOW() ORDER BY sched_date;");
}
pstring.setLong(1, mid);
ResultSet results = pstring.executeQuery();
List<ApptBean> abList = this.abloader.loadList(results);
results.close();
pstring.close();
return abList;
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
public List<ApptBean> getAllApptsFor(long mid) throws SQLException, DBException {
Connection conn = null;
PreparedStatement pstring = null;
try{
conn = factory.getConnection();
if(mid >= MIN_MID){
pstring = conn.prepareStatement("SELECT * FROM appointment WHERE doctor_id=? ORDER BY sched_date;");
}
else {
pstring = conn.prepareStatement("SELECT * FROM appointment WHERE patient_id=? ORDER BY sched_date;");
}
pstring.setLong(1, mid);
final ResultSet results = pstring.executeQuery();
final List<ApptBean> abList = this.abloader.loadList(results);
results.close();
pstring.close();
return abList;
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
public void scheduleAppt(final ApptBean appt) throws SQLException, DBException {
Connection conn = null;
PreparedStatement pstring = null;
try{
conn = factory.getConnection();
pstring = conn.prepareStatement(
"INSERT INTO appointment (appt_type, patient_id, doctor_id, sched_date, comment) "
+ "VALUES (?, ?, ?, ?, ?)");
pstring = this.abloader.loadParameters(pstring, appt);
pstring.executeUpdate();
pstring.close();
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
public void editAppt(final ApptBean appt) throws SQLException, DBException {
Connection conn = null;
PreparedStatement pstring = null;
try{
conn = factory.getConnection();
pstring = conn.prepareStatement(
"UPDATE appointment SET appt_type=?, sched_date=?, comment=? WHERE appt_id=?");
pstring.setString(1, appt.getApptType());
pstring.setTimestamp(2, appt.getDate());
pstring.setString(3, appt.getComment());
pstring.setInt(4, appt.getApptID());
pstring.executeUpdate();
pstring.close();
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
public void removeAppt(final ApptBean appt) throws SQLException, DBException {
Connection conn = null;
PreparedStatement pstring = null;
try{
conn = factory.getConnection();
pstring = conn.prepareStatement("DELETE FROM appointment WHERE appt_id=?");
pstring.setInt(1, appt.getApptID());
pstring.executeUpdate();
pstring.close();
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
public List<ApptBean> getAllHCPConflictsForAppt(final long mid, final ApptBean appt) throws SQLException, DBException{
final int duration = apptTypeDAO.getApptType(appt.getApptType()).getDuration();
Connection conn = null;
PreparedStatement pstring = null;
try{
conn = factory.getConnection();
pstring = conn.prepareStatement("SELECT * " +
"FROM appointment a, appointmenttype type " + //and the corresponding types
"WHERE a.appt_type=type.appt_type AND " + //match them with types
"((DATE_ADD(a.sched_date, INTERVAL type.duration MINUTE)>? AND " + //a1 ends after a2 starts AND
"a.sched_date<=?) OR " + //a1 starts before a2 OR
"(DATE_ADD(?, INTERVAL ? MINUTE)>a.sched_date AND " + //a2 ends after a1 starts AND
"?<=a.sched_date)) AND " + //a2 starts before a1 starts
"a.doctor_id=? AND a.appt_id!=?;");
pstring.setTimestamp(1, appt.getDate());
pstring.setTimestamp(2, appt.getDate());
pstring.setTimestamp(3, appt.getDate());
pstring.setInt(4, duration);
pstring.setTimestamp(5, appt.getDate());
pstring.setLong(6, mid);
pstring.setInt(7, appt.getApptID());
final ResultSet results = pstring.executeQuery();
final List<ApptBean> conflictList = this.abloader.loadList(results);
results.close();
pstring.close();
return conflictList;
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
public List<ApptBean> getAllPatientConflictsForAppt(final long mid, final ApptBean appt) throws SQLException, DBException{
final int duration = apptTypeDAO.getApptType(appt.getApptType()).getDuration();
Connection conn = null;
PreparedStatement pstring = null;
try{
conn = factory.getConnection();
pstring = conn.prepareStatement("SELECT * " +
"FROM appointment a, appointmenttype type " + //and the corresponding types
"WHERE a.appt_type=type.appt_type AND " + //match them with types
"((DATE_ADD(a.sched_date, INTERVAL type.duration MINUTE)>? AND " + //a1 ends after a2 starts AND
"a.sched_date<=?) OR " + //a1 starts before a2 OR
"(DATE_ADD(?, INTERVAL ? MINUTE)>a.sched_date AND " + //a2 ends after a1 starts AND
"?<=a.sched_date)) AND " + //a2 starts before a1 starts
"a.patient_id=? AND a.appt_id!=?;");
pstring.setTimestamp(1, appt.getDate());
pstring.setTimestamp(2, appt.getDate());
pstring.setTimestamp(3, appt.getDate());
pstring.setInt(4, duration);
pstring.setTimestamp(5, appt.getDate());
pstring.setLong(6, mid);
pstring.setInt(7, appt.getApptID());
final ResultSet results = pstring.executeQuery();
final List<ApptBean> conflictList = this.abloader.loadList(results);
results.close();
pstring.close();
return conflictList;
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
/**
* Returns all past and future appointment conflicts for the doctor
* with the given MID
* @param mid
* @throws SQLException
*/
public List<ApptBean> getAllConflictsForDoctor(final long mid) throws SQLException, DBException{
Connection conn = null;
PreparedStatement pstring = null;
try{
conn = factory.getConnection();
pstring = conn.prepareStatement("SELECT a1.* " +
"FROM appointment a1, appointment a2, " + //all possible sets of 2 appts
"appointmenttype type1,appointmenttype type2 " + //and the corresponding types
"WHERE a1.appt_id!=a2.appt_id AND " + //exclude itself
"a1.appt_type=type1.appt_type AND a2.appt_type=type2.appt_type AND " + //match them with types
"((DATE_ADD(a1.sched_date, INTERVAL type1.duration MINUTE)>a2.sched_date AND " + //a1 ends after a2 starts AND
"a1.sched_date<=a2.sched_date) OR" + //a1 starts before a2 OR
"(DATE_ADD(a2.sched_date, INTERVAL type2.duration MINUTE)>a1.sched_date AND " + //a2 ends after a1 starts AND
"a2.sched_date<=a1.sched_date)) AND " + //a2 starts before a1 starts
"a1.doctor_id=? AND a2.doctor_id=?;");
pstring.setLong(1, mid);
pstring.setLong(2, mid);
final ResultSet results = pstring.executeQuery();
final List<ApptBean> conflictList = this.abloader.loadList(results);
results.close();
pstring.close();
return conflictList;
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
/**
* Returns all past and future appointment conflicts for the patient
* with the given MID
* @param mid
* @throws SQLException
* @throws DBException
*/
public List<ApptBean> getAllConflictsForPatient(final long mid) throws SQLException, DBException{
Connection conn = null;
PreparedStatement pstring = null;
try{
conn = factory.getConnection();
pstring = conn.prepareStatement("SELECT a1.* " +
"FROM appointment a1, appointment a2, " + //all possible sets of 2 appts
"appointmenttype type1,appointmenttype type2 " + //and the corresponding types
"WHERE a1.appt_id!=a2.appt_id AND " + //exclude itself
"a1.appt_type=type1.appt_type AND a2.appt_type=type2.appt_type AND " + //match them with types
"((DATE_ADD(a1.sched_date, INTERVAL type1.duration MINUTE)>a2.sched_date AND " + //a1 ends after a2 starts AND
"a1.sched_date<=a2.sched_date) OR" + //a1 starts before a2 OR
"(DATE_ADD(a2.sched_date, INTERVAL type2.duration MINUTE)>a1.sched_date AND " + //a2 ends after a1 starts AND
"a2.sched_date<=a1.sched_date)) AND " + //a2 starts before a1 starts
"a1.patient_id=? AND a2.patient_id=?;");
pstring.setLong(1, mid);
pstring.setLong(2, mid);
final ResultSet results = pstring.executeQuery();
final List<ApptBean> conflictList = this.abloader.loadList(results);
results.close();
pstring.close();
return conflictList;
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
/**
* Get all upcoming appointments within n days
* @param numDays Number of days after current date within which to find all appointments
* @return ApptBean List of upcoming appointments
*/
public List<ApptBean> getUpcomingAppts(int numDays) throws SQLException, DBException {
Connection conn = null;
PreparedStatement pstring = null;
try {
conn = factory.getConnection();
pstring = conn.prepareStatement(
"SELECT * FROM appointment WHERE " + /*" sched_date.after(?)=TRUE AND sched_date.before(?)=TRUE");*/
"DATE(sched_date)<=DATE_ADD(CURRENT_DATE, INTERVAL ? DAY) AND " + //sched_date day is before or at (numDays) days from now
"sched_date>=CURRENT_DATE"); // sched_date is after today
pstring.setInt(1, numDays);
final ResultSet results = pstring.executeQuery();
final List<ApptBean> abList = this.abloader.loadList(results);
results.close();
pstring.close();
return abList;
} catch (SQLException e) {
throw new DBException(e);
} finally {
DBUtil.closeConnection(conn, pstring);
}
}
}