forked from RunningJon/outsourcer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EnvironmentControl.java
148 lines (136 loc) · 3.31 KB
/
EnvironmentControl.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
145
146
147
148
import java.util.Map;
import java.sql.*;
public class EnvironmentControl
{
public static String buildPage(Map<String, String> parms)
{
ResultSet rs = null;
String search = parms.get("search");
String limit = parms.get("limit");
String offset = parms.get("offset");
String actionType = parms.get("action_type");
String sortBy = parms.get("sort_by");
String sort = parms.get("sort");
String maxJobs = parms.get("max_jobs");
String oFetchSize = parms.get("oFetchSize");
String submit = parms.get("submit_form");
if (search == null)
search = "";
if (limit == null)
limit = "10";
if (offset == null)
offset = "0";
if (actionType == null || actionType.equals(""))
actionType = "view";
if (sortBy == null || sortBy.equals(""))
sortBy = "name";
if (sort == null || sort.equals(""))
sort = "asc";
if (submit == null || submit.equals(""))
submit = "0";
if (maxJobs == null || maxJobs.equals(""))
maxJobs = "";
if (oFetchSize == null || oFetchSize.equals(""))
oFetchSize = "";
String msg = "";
if (actionType.equals("view"))
{
try
{
rs = EnvironmentModel.getList(search, limit, offset, sortBy, sort);
msg = EnvironmentView.viewList(search, rs, limit, offset, sortBy, sort);
}
catch (Exception ex)
{
msg += ex.getMessage();
}
}
else if (actionType.equals("Daemon"))
{
String status = "";
try
{
status = EnvironmentModel.getStatus();
if (submit.equals("0"))
{
msg = EnvironmentView.viewStartStop(status);
}
else
{
EnvironmentModel.setStatus(status);
rs = EnvironmentModel.getList(search, limit, offset, sortBy, sort);
msg = EnvironmentView.viewList(search, rs, limit, offset, sortBy, sort);
}
}
catch (Exception ex)
{
msg += ex.getMessage();
}
}
else if (actionType.equals("Agent"))
{
String status = "";
try
{
status = EnvironmentModel.getAgentStatus();
if (submit.equals("0"))
{
msg = EnvironmentView.viewAgentStartStop(status);
}
else
{
EnvironmentModel.setAgentStatus(status);
rs = EnvironmentModel.getList(search, limit, offset, sortBy, sort);
msg = EnvironmentView.viewList(search, rs, limit, offset, sortBy, sort);
}
}
catch (Exception ex)
{
msg += ex.getMessage();
}
}
else if (actionType.equals("max_jobs"))
{
try
{
if (submit.equals("0"))
{
maxJobs = EnvironmentModel.getVariable("max_jobs");
msg = EnvironmentView.viewMaxJobs(maxJobs);
}
else
{
EnvironmentModel.setVariable("max_jobs", maxJobs);
rs = EnvironmentModel.getList(search, limit, offset, sortBy, sort);
msg = EnvironmentView.viewList(search, rs, limit, offset, sortBy, sort);
}
}
catch (Exception ex)
{
msg += ex.getMessage();
}
}
else if (actionType.equals("oFetchSize"))
{
try
{
if (submit.equals("0"))
{
oFetchSize = EnvironmentModel.getVariable("oFetchSize");
msg = EnvironmentView.viewFetchSize(oFetchSize);
}
else
{
EnvironmentModel.setVariable("oFetchSize", oFetchSize);
rs = EnvironmentModel.getList(search, limit, offset, sortBy, sort);
msg = EnvironmentView.viewList(search, rs, limit, offset, sortBy, sort);
}
}
catch (Exception ex)
{
msg += ex.getMessage();
}
}
return msg;
}
}