-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBusTimesWS.java
executable file
·144 lines (111 loc) · 4.84 KB
/
BusTimesWS.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
//Danielle Zoe Aloicius BusTimesWS Web Service
package BusServer;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import javax.jws.WebMethod;
import javax.jws.WebService;
import java.util.Calendar;
import java.util.Date;
@WebService(serviceName = "BusTimesWS")
public class BusTimesWS {
static final String database ="jdbc:mysql://localhost:3306/bus";
static final String username = "root"; //would not normally be hardcoded
static final String password = ""; //testing purposes
@WebMethod(operationName = "BusTimesOp")
public String BusTimesOp() {
try
{
Calendar cal = Calendar.getInstance();
Calendar cal2 = Calendar.getInstance();
DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
DateFormat dateFormat2 = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
DateFormat dateFormat3 = new SimpleDateFormat("yyyy/MM/dd");
DateFormat dateFormat4 = new SimpleDateFormat("mm");
//timeCurrent
Date dateCurrent = cal.getTime();
String timeCurrent= dateFormat.format(dateCurrent);
int currentDay = cal.get(Calendar.DAY_OF_WEEK);
//minutes
String minutes = dateFormat4.format(dateCurrent);
int minutesAM = 60-Integer.parseInt(minutes);
String minutesAMString = "00:" + minutesAM + ":00";
//timeAs 11:45pm
String yearMonthDay = dateFormat3.format(dateCurrent);
Date elevenfortyfive = dateFormat2.parse(yearMonthDay +" 23:45:00");
cal.setTime(elevenfortyfive);
//timeAhead
cal2.add(Calendar.MINUTE, 15);
String timeAhead = dateFormat.format(cal2.getTime());
String day = "";
switch(currentDay){
case 1:
day="Sunday";
break;
case 2: case 3: case 4: case 5: case 6:
day="Weekday";
break;
case 7:
day="Saturday";
break;
}
//loading MySQL driver
Class.forName("com.mysql.jdbc.Driver");
//creating a variable type Connection to the database bus
Connection connectiondB = DriverManager.getConnection(database,username,password);
String SQLselect ="";
//if after 11:45 pm Sunday
if (currentDay==1 && dateCurrent.compareTo(elevenfortyfive)>0)
{
SQLselect="select * from buses_table where (day='" + day+"' AND '"+timeCurrent+
"' <= bus_time AND bus_time <='23:59:00') OR "+
"(day='Weekday' AND '00:00:00' <=bus_time AND bus_time <='"+minutesAMString+"');";
}
//if after 11:45 pm Friday
else if (currentDay==6 && dateCurrent.compareTo(elevenfortyfive)>0)
{
SQLselect="select * from buses_table where (day='" + day+"' AND '"+timeCurrent+
"' <= bus_time AND bus_time <='23:59:00') OR "+
"(day='Saturday' AND '00:00:00' <=bus_time AND bus_time <='"+minutesAMString+"');";
}
//if after 11:45 pm Saturday
else if (currentDay==7 && dateCurrent.compareTo(elevenfortyfive)>0)
{
SQLselect="select * from buses_table where (day='" + day+"' AND '"+timeCurrent+
"' <= bus_time AND bus_time <='23:59:00') OR "+
"(day='Sunday' AND '00:00:00' <=bus_time AND bus_time <='"+minutesAMString+"');";
}
else
{
SQLselect = "select * from buses_table where day = '" + day +
"' AND ('" + timeCurrent +
"' <=bus_time AND bus_time <='" + timeAhead+"');";
}
//creating a variable type Statement
Statement SQLstatement = connectiondB.createStatement();
//executing the SQLselect and storing the outcome in a variable type ResultSet
ResultSet result = SQLstatement.executeQuery(SQLselect);
//displaying the record in case there is one
boolean found = false;
String foundbuses= "";
while (result.next())
{
found =true;
String busID_found = result.getString(1);
String day_found = result.getString(2);
String time_found = result.getString(3);
foundbuses +=busID_found + " " + day_found + " " + time_found + " <br />";
}
if(found==false)
return "Bus not found";
return foundbuses;
}
catch (Exception error)
{
return "Error: " + error;
}
}
}