|
@@ -7,6 +7,7 @@ import com.scbfkj.uni.process.DataBase;
|
|
|
import com.scbfkj.uni.system.Config;
|
|
|
import com.scbfkj.uni.system.ScheduleUtil;
|
|
|
|
|
|
+import java.io.File;
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
@@ -21,7 +22,7 @@ public class ControlService {
|
|
|
private final static String SERVICE_ID = "serviceid";
|
|
|
private final static String CODE = "code";
|
|
|
|
|
|
- public static Map<String, Object> stopServiceByContainerCode() {
|
|
|
+ public static Map<String, Object> stopServiceByContainerCode(String containerCode) {
|
|
|
|
|
|
// 查询服务类型为主动采集的服务
|
|
|
|
|
@@ -30,7 +31,7 @@ public class ControlService {
|
|
|
// 循环启动
|
|
|
|
|
|
Map<String, List<Map<String, Object>>> results = serviceInfos.stream()
|
|
|
- .map(it -> stop(it.get(SERVICE_ID).toString()))
|
|
|
+ .map(it -> stop(it.get(SERVICE_ID).toString(), containerCode))
|
|
|
.collect(Collectors.groupingBy(it -> it.get(CODE).toString()));
|
|
|
return UniReturnUtil.success(results);
|
|
|
} catch (Exception e) {
|
|
@@ -38,13 +39,13 @@ public class ControlService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public static Map<String, Object> startServiceByContainerCode() {
|
|
|
+ public static Map<String, Object> startServiceByContainerCode(String containerCode) {
|
|
|
|
|
|
// 查询服务类型为主动采集的服务
|
|
|
try {
|
|
|
List<Map<String, Object>> serviceInfos = DataBase.query(Config.getCenterConnectionStr(), SERVICEINFO_WHERE_CONTAINERCODE, Config.getContainerCode());
|
|
|
Map<String, List<Map<String, Object>>> results = serviceInfos.stream()
|
|
|
- .map(it -> start(it.get(SERVICE_ID).toString()))
|
|
|
+ .map(it -> start(it.get(SERVICE_ID).toString(), containerCode))
|
|
|
.collect(Collectors.groupingBy(it -> it.get(CODE).toString()));
|
|
|
return UniReturnUtil.success(results);
|
|
|
} catch (Exception e) {
|
|
@@ -58,7 +59,7 @@ public class ControlService {
|
|
|
* @param serviceId
|
|
|
* @return
|
|
|
*/
|
|
|
- public static Map<String, Object> start(String serviceId) {
|
|
|
+ public static Map<String, Object> start(String serviceId, String containerCode) {
|
|
|
try {
|
|
|
List<Map<String, Object>> serviceInfoList = DataBase.query(Config.getCenterConnectionStr(), "select tasktype from serviceinfo where serviceid=?", serviceId);
|
|
|
|
|
@@ -67,7 +68,7 @@ public class ControlService {
|
|
|
}
|
|
|
Map<String, Object> serviceInfo = serviceInfoList.get(0);
|
|
|
Object taskType = serviceInfo.get("tasktype");
|
|
|
- updateServiceState(serviceId, "1");
|
|
|
+ updateServiceState(serviceId, containerCode, "1");
|
|
|
if (Objects.equals(taskType, "0")) {
|
|
|
// 设置服务状态为运行中
|
|
|
|
|
@@ -93,42 +94,46 @@ public class ControlService {
|
|
|
* @param serviceId
|
|
|
* @return
|
|
|
*/
|
|
|
- public static Map<String, Object> stop(String serviceId) {
|
|
|
+ public static Map<String, Object> stop(String serviceId, String containerCode) {
|
|
|
Map<String, Object> cancel = ScheduleUtil.cancel(serviceId);
|
|
|
|
|
|
boolean isCancel = Objects.equals(cancel.get(CODE), "0");
|
|
|
try {
|
|
|
if (isCancel)
|
|
|
- updateServiceState(serviceId, "0");
|
|
|
+ updateServiceState(serviceId, containerCode, "0");
|
|
|
} catch (Exception e) {
|
|
|
return UniReturnUtil.fail(e);
|
|
|
}
|
|
|
return UniReturnUtil.success("停止" + (isCancel ? "成功" : "失败"));
|
|
|
}
|
|
|
|
|
|
- private static void updateServiceState(String serviceId, String state) throws Exception {
|
|
|
+ private static void updateServiceState(String serviceId, String containerCode, String state) throws Exception {
|
|
|
if (Objects.equals(state, "1")) {
|
|
|
|
|
|
- List<Map<String, Object>> mapList = DataBase.query(Config.getCenterConnectionStr(), "select runstate,servicestateid from servicestate where starttime is not null and serviceid=? and containercode=?", serviceId, Config.getContainerCode());
|
|
|
+ List<Map<String, Object>> mapList = DataBase.query(Config.getCenterConnectionStr(), "select runstate,servicestateid from servicestate where starttime is not null and serviceid=? and containercode=?", serviceId, containerCode);
|
|
|
if (mapList.isEmpty()) {
|
|
|
|
|
|
- DataBase.update(Config.getCenterConnectionStr(), "insert into servicestate(serviceid,starttime,containercode,runstate) values (?,?,?,'1')",
|
|
|
+ DataBase.update(Config.getCenterConnectionStr(), "insert into servicestate(serviceid,starttime,containercode,runstate,workpath) values (?,?,?,'1',?)",
|
|
|
serviceId,
|
|
|
DataFormatUtil.toString(LocalDateTime.now()),
|
|
|
- Config.getContainerCode());
|
|
|
+ Config.getContainerCode(),
|
|
|
+ new File(".").getAbsolutePath());
|
|
|
} else {
|
|
|
String serviceStateId = mapList.get(0).get("servicestateid").toString();
|
|
|
- DataBase.update(Config.getCenterConnectionStr(), "update servicestate set starttime=?,runstate='1' where servicestateid = ?",
|
|
|
+ DataBase.update(Config.getCenterConnectionStr(), "update servicestate set starttime=?,runstate='1',workpath = ? where servicestateid = ? and containercode =?",
|
|
|
DataFormatUtil.toString(LocalDateTime.now()),
|
|
|
- serviceStateId);
|
|
|
+ new File(".").getAbsolutePath(),
|
|
|
+ serviceStateId, containerCode);
|
|
|
}
|
|
|
} else {
|
|
|
- List<Map<String, Object>> mapList = DataBase.query(Config.getCenterConnectionStr(), "select servicestateid, runstate from servicestate where stoptime is null and serviceid=? and containercode=? order by servicestateid desc", serviceId, Config.getContainerCode());
|
|
|
+ List<Map<String, Object>> mapList = DataBase.query(Config.getCenterConnectionStr(), "select servicestateid, runstate from servicestate where stoptime is null and serviceid=? and containercode=? order by servicestateid desc", serviceId, containerCode);
|
|
|
|
|
|
- String serviceStateId = mapList.get(0).get("servicestateid").toString();
|
|
|
- DataBase.update(Config.getCenterConnectionStr(), "update servicestate set stoptime=?,runstate='0' where servicestateid = ?",
|
|
|
- DataFormatUtil.toString(LocalDateTime.now()),
|
|
|
- serviceStateId);
|
|
|
+ if (!mapList.isEmpty()) {
|
|
|
+ String serviceStateId = mapList.get(0).get("servicestateid").toString();
|
|
|
+ DataBase.update(Config.getCenterConnectionStr(), "update servicestate set stoptime=?,runstate='0' where servicestateid = ? and containercode =?",
|
|
|
+ DataFormatUtil.toString(LocalDateTime.now()),
|
|
|
+ serviceStateId, containerCode);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -143,25 +148,28 @@ public class ControlService {
|
|
|
|
|
|
public static Map<String, Object> startOrStop(Map<String, Object> params, String statue, boolean all) throws Exception {
|
|
|
Optional<String> serviceIdOpt = DataAliasGetUtil.getValue(SERVICE_ID, params);
|
|
|
- if (serviceIdOpt.isEmpty() && !all) {
|
|
|
+ Optional<String> containerCode = DataAliasGetUtil.getValue("containercode", params);
|
|
|
+ if ((serviceIdOpt.isEmpty() || containerCode.isEmpty()) && !all) {
|
|
|
return UniReturnUtil.fail("服务ID不能为空");
|
|
|
- } else if (serviceIdOpt.isPresent()) {
|
|
|
+ } else if (serviceIdOpt.isPresent() && containerCode.isPresent()) {
|
|
|
|
|
|
String serviceId = serviceIdOpt.get();
|
|
|
if (Objects.equals(statue, "0")) {
|
|
|
- return stop(serviceId);
|
|
|
+ return stop(serviceId, containerCode.get());
|
|
|
} else {
|
|
|
- return start(serviceId);
|
|
|
+ return start(serviceId, containerCode.get());
|
|
|
}
|
|
|
- } else {
|
|
|
+ } else if (containerCode.isPresent()) {
|
|
|
if (Objects.equals(statue, "0")) {
|
|
|
- stopServiceByContainerCode();
|
|
|
+ stopServiceByContainerCode(containerCode.get());
|
|
|
|
|
|
return UniReturnUtil.success(true);
|
|
|
} else {
|
|
|
- startServiceByContainerCode();
|
|
|
+ startServiceByContainerCode(containerCode.get());
|
|
|
return UniReturnUtil.success(true);
|
|
|
}
|
|
|
+ } else {
|
|
|
+ throw new RuntimeException("请输入启动的容器编号");
|
|
|
}
|
|
|
}
|
|
|
}
|