forked from RunningJon/outsourcer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JobControl.java
188 lines (156 loc) · 5.73 KB
/
JobControl.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
import java.util.Map;
import java.sql.*;
import java.util.ArrayList;
public class JobControl
{
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 id = parms.get("id");
String refreshType = parms.get("refresh_type");
String targetSchemaName = parms.get("target_schema_name");
String targetTableName = parms.get("target_table_name");
boolean targetAppendOnly = Boolean.valueOf(parms.get("target_append_only"));
boolean targetCompressed = Boolean.valueOf(parms.get("target_compressed"));
boolean targetRowOrientation = Boolean.valueOf(parms.get("target_row_orientation"));
String sourceType = parms.get("source_type");
String sourceServerName = parms.get("source_server_name");
String sourceInstanceName = parms.get("source_instance_name");
String sourcePort = parms.get("source_port");
String sourceDatabaseName = parms.get("source_database_name");
String sourceSchemaName = parms.get("source_schema_name");
String sourceTableName = parms.get("source_table_name");
String sourceUserName = parms.get("source_user_name");
String sourcePass = parms.get("source_pass");
String columnName = parms.get("column_name");
String sqlText = parms.get("sql_text");
boolean snapshot = Boolean.valueOf(parms.get("snapshot"));
String submit = parms.get("submit_form");
String queueAction = parms.get("queue_action");
String scheduleDesc = parms.get("schedule_desc");
ArrayList<String> scheduleList = new ArrayList<String>();
if (search == null)
search = "";
if (limit == null)
limit = "10";
if (offset == null)
offset = "0";
if (sort == null || sort.equals(""))
sort = "asc";
if (sortBy == null || sortBy.equals(""))
sortBy = "id";
if (id == null)
id = "";
if (refreshType == null)
refreshType = "";
if (targetSchemaName == null)
targetSchemaName = "";
if (targetTableName == null)
targetTableName = "";
if (sourceType == null)
sourceType = "";
if (sourceServerName == null)
sourceServerName = "";
if (sourceInstanceName == null)
sourceInstanceName = "";
if (sourcePort == null)
sourcePort = "";
if (sourceDatabaseName == null)
sourceDatabaseName = "";
if (sourceSchemaName == null)
sourceSchemaName = "";
if (sourceTableName == null)
sourceTableName = "";
if (sourceUserName == null)
sourceUserName = "";
if (sourcePass == null)
sourcePass = "";
if (columnName == null)
columnName = "";
if (sqlText == null)
sqlText = "";
//if (snapshot == null)
// snapshot = false;
if (actionType == null || actionType.equals(""))
actionType = "view";
if (submit == null || submit.equals(""))
submit = "0";
if (queueAction == null)
queueAction = "";
if (scheduleDesc == null)
scheduleDesc = "";
//need the parsing of parms into local variables to call the right views
String msg = "";
try
{
if (actionType.equals("view"))
{
rs = JobModel.getList(search, limit, offset, sortBy, sort);
msg = JobView.viewList(search, rs, limit, offset, sortBy, sort);
}
else if (actionType.equals("update"))
{
if (submit.equals("0"))
{
JobModel e = JobModel.getModel(id);
scheduleList = ScheduleModel.getDescriptions();
msg = JobView.viewUpdate(e.id, e.refreshType, e.targetSchemaName, e.targetTableName, e.targetAppendOnly, e.targetCompressed, e.targetRowOrientation, e.sourceType, e.sourceServerName, e.sourceInstanceName, e.sourcePort, e.sourceDatabaseName, e.sourceSchemaName, e.sourceTableName, e.sourceUserName, e.sourcePass, e.columnName, e.sqlText, e.snapshot, e.scheduleDesc, scheduleList);
}
else
{
JobModel.insertTable(id, refreshType, targetSchemaName, targetTableName, targetAppendOnly, targetCompressed, targetRowOrientation, sourceType, sourceServerName, sourceInstanceName, sourcePort, sourceDatabaseName, sourceSchemaName, sourceTableName, sourceUserName, sourcePass, columnName, sqlText, snapshot, scheduleDesc);
rs = JobModel.getList(search, limit, offset, sortBy, sort);
msg = JobView.viewList(search, rs, limit, offset, sortBy, sort);
}
}
else if (actionType.equals("delete"))
{
if (submit.equals("0"))
{
JobModel e = JobModel.getModel(id);
scheduleList = ScheduleModel.getDescriptions();
msg = JobView.viewDelete(e.id, e.refreshType, e.targetSchemaName, e.targetTableName, e.targetAppendOnly, e.targetCompressed, e.targetRowOrientation, e.sourceType, e.sourceServerName, e.sourceInstanceName, e.sourcePort, e.sourceDatabaseName, e.sourceSchemaName, e.sourceTableName, e.sourceUserName, e.sourcePass, e.columnName, e.sqlText, e.snapshot, e.scheduleDesc, scheduleList);
}
else
{
JobModel.deleteTable(id);
rs = JobModel.getList(search, limit, offset, sortBy, sort);
msg = JobView.viewList(search, rs, limit, offset, sortBy, sort);
}
}
else if (actionType.equals("queue"))
{
if (queueAction.equals("insert"))
QueueModel.insertTable(id);
else if (queueAction.equals("update"))
QueueModel.updateTable(id);
rs = JobModel.getList(search, limit, offset, sortBy, sort);
msg = JobView.viewList(search, rs, limit, offset, sortBy, sort);
}
else if (actionType.equals("delete_all"))
{
if (submit.equals("0"))
{
msg = JobView.viewDelete();
}
else
{
JobModel.deleteTable();
rs = JobModel.getList(search, limit, offset, sortBy, sort);
msg = JobView.viewList(search, rs, limit, offset, sortBy, sort);
}
}
}
catch (Exception ex)
{
msg = ex.getMessage();
}
return msg;
}
}