Blame view

src/main/java/com/batch/controller/JobController.java 9.89 KB
8dc487b1   함상기   Init Version - 20...
1
2
3
4
5
6
  package com.batch.controller;
  
  import java.util.ArrayList;
  import java.util.HashMap;
  import java.util.List;
  import java.util.Map;
78928007   함상기   20240305
7
  import java.util.UUID;
8dc487b1   함상기   Init Version - 20...
8
9
  
  import org.springframework.beans.factory.annotation.Autowired;
8dc487b1   함상기   Init Version - 20...
10
  import org.springframework.web.bind.annotation.GetMapping;
78928007   함상기   20240305
11
  import org.springframework.web.bind.annotation.PathVariable;
8dc487b1   함상기   Init Version - 20...
12
13
14
15
16
17
18
19
  import org.springframework.web.bind.annotation.PostMapping;
  import org.springframework.web.bind.annotation.RequestBody;
  import org.springframework.web.bind.annotation.RequestMapping;
  import org.springframework.web.bind.annotation.RestController;
  
  import com.batch.config.MatchingSetup;
  import com.batch.config.MatchingSetup.Matching;
  import com.batch.mapper.primary.MatchingInnerDelingMapper;
8dc487b1   함상기   Init Version - 20...
20
21
22
23
  import com.batch.service.JobService;
  import com.batch.util.FileUtil;
  import com.google.gson.JsonObject;
  
78928007   함상기   20240305
24
  import com.batch.controller.JobController;
8dc487b1   함상기   Init Version - 20...
25
26
27
28
29
30
31
32
33
34
35
36
  import lombok.extern.slf4j.Slf4j;
  
  @RestController
  @RequestMapping("/api/job")
  @Slf4j
  public class JobController {
  
      @Autowired
      private JobService jobService;
      @Autowired
      private MatchingInnerDelingMapper matchingInnerDelingMapper;
      
9c28833f   ggun12   aiJobSub : 작업종료 처...
37
38
39
40
41
42
      
      
      
      /**
       * TODO : AI 서버에 특정 경로에 생성되는 파일을 읽는(끝에 50 정도) API 
       * */
639dce54   ggun12   * 로그파일 뷰어
43
44
45
46
47
48
49
      @PostMapping("/readlogs")
      public StringBuffer readLogs( @RequestBody Map<String, String> params) throws Exception {
  		StringBuffer sb = new StringBuffer();
  		
  		String filePath  = params.get("filePath");
  		int readCnt  = Integer.parseInt(params.get("readCnt"));
  		
f769ddd4   ggun12   * 로그파일 뷰어
50
51
52
53
      	sb = FileUtil.readFileLastLines(filePath, readCnt, "ISO-8859-1", "UTF-8");
  
      	log.info("sb ===");
      	log.info(sb.toString());
639dce54   ggun12   * 로그파일 뷰어
54
55
  		return sb;
      }
8dc487b1   함상기   Init Version - 20...
56
57
  
      @PostMapping("/create")
78928007   함상기   20240305
58
      public Map<String, String> createJob( @RequestBody Map<String, String> params) throws Exception {
8dc487b1   함상기   Init Version - 20...
59
60
61
62
63
64
      	
      	/*
      	 * {                                
      	 *   "sysSe": "LS_ALL",             
      	 *   "accnutYm": "202306",          
      	 * }  
78928007   함상기   20240305
65
66
67
68
69
      	 */            
      	//Job Create Log
      	UUID uuid = UUID.randomUUID();
      	String sJobGroup = uuid.toString();
      	
8dc487b1   함상기   Init Version - 20...
70
      	log.debug("Start Create Job");
78928007   함상기   20240305
71
      	jobService.createData(sJobGroup, params);
8dc487b1   함상기   Init Version - 20...
72
73
      	log.debug("End Create Job");
      	
78928007   함상기   20240305
74
75
76
      	Map<String, String> rtnMap = new HashMap<String, String>();
      	rtnMap.put("jobGroupId", sJobGroup);
      	rtnMap.put("jobMessage", "신규 작업데이타를 생성합니다. 작업이 끝난후 작업결과는 별도로 확인 바랍니다.");
8dc487b1   함상기   Init Version - 20...
77
      	
78928007   함상기   20240305
78
          return rtnMap;
8dc487b1   함상기   Init Version - 20...
79
80
81
82
      }
      
      
      @PostMapping("/matching")
78928007   함상기   20240305
83
      public Map<String, String> matchingJob( @RequestBody Map<String, String> params) throws Exception {
8dc487b1   함상기   Init Version - 20...
84
85
86
87
88
89
      	
      	/*
      	 * {                                
      	 *   "sysSe": "LS_ALL",             
      	 *   "accnutYm": "202306",          
      	 * }  
78928007   함상기   20240305
90
91
92
93
94
      	 */                           
      	//Job Create Log
      	UUID uuid = UUID.randomUUID();
      	String sJobGroup = uuid.toString();
      	
8dc487b1   함상기   Init Version - 20...
95
      	log.debug("Start Matching Job");
78928007   함상기   20240305
96
      	jobService.matchingJob(sJobGroup, params);
8dc487b1   함상기   Init Version - 20...
97
98
      	log.debug("End Matching Job");
      	
78928007   함상기   20240305
99
100
101
102
103
      	Map<String, String> rtnMap = new HashMap<String, String>();
      	rtnMap.put("jobGroupId", sJobGroup);
      	rtnMap.put("jobMessage", "매칭작업을 시작합니다. 작업이 끝난후 작업결과는 별도로 확인 바랍니다.");
      	    	
          return rtnMap;
8dc487b1   함상기   Init Version - 20...
104
105
106
      }
      
      @PostMapping("/extramatching")
78928007   함상기   20240305
107
      public Map<String, String> extraMatchingJob( @RequestBody Map<String, String> params) throws Exception {
8dc487b1   함상기   Init Version - 20...
108
109
110
111
      	
      	/*
      	 * {                                
      	 *   "sysSe": "LS_ALL",             
78928007   함상기   20240305
112
113
114
      	 *   "accnutYm": "202306",    
      	 *   "searchOne": "dta_ty in ('11','21','31','33','35','37','41')",
      	 *   "searchTwo": "dta_ty in ('11','21','31','33','35','37','41')"      
8dc487b1   함상기   Init Version - 20...
115
      	 * }  
78928007   함상기   20240305
116
      	 */                       
a45ecedc   ggun12   * EX 매칭은 순차 실행으로 처리
117
  
78928007   함상기   20240305
118
119
120
121
      	//Job Create Log
      	UUID uuid = UUID.randomUUID();
      	String sJobGroup = uuid.toString();
      	
a45ecedc   ggun12   * EX 매칭은 순차 실행으로 처리
122
123
124
      	
  //    	log.debug("Start Extra Matching Job");
  //    	List<Map> retData = matchingInnerDelingMapper.getCustomItemReadData(params);
8dc487b1   함상기   Init Version - 20...
125
126
127
128
129
  //    	List<Map> retData = new ArrayList<Map>();
  //    	Map m = new HashMap();
  //    	m.put("sys_se", "LS_ALL"); 
  //    	m.put("accnut_ym", "202311"); 
  //    	m.put("cpr_code", "A15300"); 
78928007   함상기   20240305
130
131
132
  //    	m.put("partn_cpr", "A01100");
  //    	m.put("searchOne", "dta_ty in ('11','21','41')");
  //    	m.put("searchTwo", "dta_ty in ('12','22','42')");
8dc487b1   함상기   Init Version - 20...
133
  //    	retData.add(m);
78928007   함상기   20240305
134
  
a45ecedc   ggun12   * EX 매칭은 순차 실행으로 처리
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
      	/** extraJobSub  start ************************************************************************************** */
  //    	List<Map> retData = matchingInnerDelingMapper.getCustomItemReadData(params);
  //    	
  //    	int mtchNumber = 0;
  //    	// 수익/비용
  //    	for(Map curMap : retData) {
  //    		curMap.put("conds", "T");
  //        	log.info("Start extraJobSub  Transaction !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
  //    		jobService.extraJobSub(sJobGroup, curMap, mtchNumber);
  //        	log.info("End   extraJobSub  Transaction !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
  //    	}
  //    	//채권/채무
  //    	for(Map curMap : retData) {
  //    		curMap.put("conds", "B");
  //        	log.info("Start extraJobSub  Balance !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
  //    		jobService.extraJobSub(sJobGroup, curMap, mtchNumber);
  //        	log.info("End   extraJobSub  Balance !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
  //    	}
      	/** extraJobSub  end   ************************************************************************************** */
      	
  
      	
      	/** extraJobSub2  start ************************************************************************************** */
      	long startTime = System.currentTimeMillis();
639dce54   ggun12   * 로그파일 뷰어
159
      	log.info("### Start Extra Matching Job2 : "+startTime);
a45ecedc   ggun12   * EX 매칭은 순차 실행으로 처리
160
161
      	jobService.extraJobSub2(sJobGroup, params);
  
a45ecedc   ggun12   * EX 매칭은 순차 실행으로 처리
162
163
164
      	/** extraJobSub2  end   ************************************************************************************** */
      	
      	
8dc487b1   함상기   Init Version - 20...
165
      	
78928007   함상기   20240305
166
167
168
      	Map<String, String> rtnMap = new HashMap<String, String>();
      	rtnMap.put("jobGroupId", sJobGroup);
      	rtnMap.put("jobMessage", "Extra 매칭작업을 시작합니다. 작업이 끝난후 작업결과는 별도로 확인 바랍니다.");
8dc487b1   함상기   Init Version - 20...
169
      	
78928007   함상기   20240305
170
          return rtnMap;
8dc487b1   함상기   Init Version - 20...
171
172
173
174
      }      
      
      
      @PostMapping("/aimatching")
78928007   함상기   20240305
175
      public Map<String, String> aiMatchingJob( @RequestBody Map<String, String> params) throws Exception {
8dc487b1   함상기   Init Version - 20...
176
177
178
179
180
181
      	
      	/*
      	 * {                                
      	 *   "sysSe": "LS_ALL",             
      	 *   "accnutYm": "202306",          
      	 * }  
78928007   함상기   20240305
182
183
184
185
186
      	 */             
      	//Job Create Log
      	UUID uuid = UUID.randomUUID();
      	String sJobGroup = uuid.toString();
      	
8dc487b1   함상기   Init Version - 20...
187
188
189
      	log.debug("Start AI Matching Job");
      	List<Map> retData = matchingInnerDelingMapper.getAiReadData(params);
      	for(Map curMap : retData) {
78928007   함상기   20240305
190
      		jobService.aiJobSub(sJobGroup, curMap);
8dc487b1   함상기   Init Version - 20...
191
192
193
      	}
      	log.debug("End AI Matching Job");
      	
78928007   함상기   20240305
194
195
196
      	Map<String, String> rtnMap = new HashMap<String, String>();
      	rtnMap.put("jobGroupId", sJobGroup);
      	rtnMap.put("jobMessage", "AI 매칭작업을 시작합니다. 작업이 끝난후 작업결과는 별도로 확인 바랍니다.");
8dc487b1   함상기   Init Version - 20...
197
      	
78928007   함상기   20240305
198
          return rtnMap;
8dc487b1   함상기   Init Version - 20...
199
200
201
      }    
  
      @PostMapping("/return")
78928007   함상기   20240305
202
      public Map<String, String> returnJob( @RequestBody Map<String, String> params) throws Exception {
8dc487b1   함상기   Init Version - 20...
203
204
205
206
207
208
      	
      	/*
      	 * {                                
      	 *   "sysSe": "LS_ALL",             
      	 *   "accnutYm": "202306",          
      	 * }  
78928007   함상기   20240305
209
210
211
212
      	 */        
      	UUID uuid = UUID.randomUUID();
      	String sJobGroup = uuid.toString();
  
8dc487b1   함상기   Init Version - 20...
213
      	log.debug("Start Return Job");
78928007   함상기   20240305
214
      	jobService.returnRwsultData(sJobGroup, params);
8dc487b1   함상기   Init Version - 20...
215
216
      	log.debug("End Return Job");
      	
78928007   함상기   20240305
217
218
219
      	Map<String, String> rtnMap = new HashMap<String, String>();
      	rtnMap.put("jobGroupId", sJobGroup);
      	rtnMap.put("jobMessage", "매칭결과 반영을 시작합니다. 작업이 끝난후 작업결과는 별도로 확인 바랍니다.");
8dc487b1   함상기   Init Version - 20...
220
      	
78928007   함상기   20240305
221
          return rtnMap;
8dc487b1   함상기   Init Version - 20...
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
      }
      
      
      @GetMapping("/configJobStr")
      public String configJobStr() throws Exception {
      	
      	StringBuffer sb = FileUtil.readFileToString("matchingSetup.json");
  
      	return sb.toString();
      }
  
      @GetMapping("/configJobJsonObj")
      public JsonObject configJobJsonObj() throws Exception {
      	
      	StringBuffer sb = FileUtil.readFileToString("matchingSetup.json");
      	JsonObject jobj = FileUtil.strToJsonObj(sb.toString());
  
      	return jobj;
      }
  
      @GetMapping("/configJobObj")
      public Object configJobObj() throws Exception {
      	
      	StringBuffer sb = FileUtil.readFileToString("matchingSetup.json");
      	MatchingSetup matchingSetup = (MatchingSetup) FileUtil.strToObj(sb.toString(), MatchingSetup.class);
  
      	return matchingSetup;
      }
  
      @GetMapping("/config")
      public Object config() throws Exception {
      	return configJobObj();
      }
  
      @GetMapping("/config/jobList")
      public Object configJobList() throws Exception {
      	
      	StringBuffer sb = FileUtil.readFileToString("matchingSetup.json");
      	MatchingSetup matchingSetup = (MatchingSetup) FileUtil.strToObj(sb.toString(), MatchingSetup.class);
  
      	List<String> lJobList = new ArrayList<String>();
      	for (Matching curMatching : matchingSetup.getMatchingSetup()) {
      		lJobList.add(curMatching.getType() + ':' + curMatching.getTypeName());
      	}
      	
      	return lJobList;
      }
  
78928007   함상기   20240305
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
      @GetMapping("/userJobInfo/{userJobGroup}")
      public Object statusBatchJob(@PathVariable(name = "userJobGroup") String sUserJobGroup) throws Exception {
      	Map<String, Object> rtnVal = new HashMap<String, Object>();
      	
      	Map<String, Object> mParam = new HashMap<String, Object>();
      	mParam.put("userJobGroup", sUserJobGroup);
      	List<Map> lmJob = matchingInnerDelingMapper.getUserJobStatus(mParam);
      	rtnVal.put("JobList", lmJob);
      	boolean blnStatus = true;
      	for (Map curMap : lmJob) {
      		String ScurStatus = (String) curMap.get("status"); 
      		if (!"Finished".equalsIgnoreCase(ScurStatus)) {
      			blnStatus = false;
      			break;
      		}
      	}
      	rtnVal.put("JobStatus", blnStatus);
      	
      	
      	return rtnVal;
      }
      
8dc487b1   함상기   Init Version - 20...
292
293
      
  }