Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* The MIT License (MIT)
*
* Copyright (c) 2019 Code Technology Studio
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package org.dromara.jpom.controller.system;
import cn.hutool.core.date.DateTime;
import cn.hutool.core.io.FileUtil;
import cn.keepbx.jpom.IJsonMessage;
import cn.keepbx.jpom.event.ICacheTask;
import cn.keepbx.jpom.model.JsonMessage;
import com.alibaba.fastjson2.JSONObject;
import org.dromara.jpom.JpomApplication;
import org.dromara.jpom.common.BaseAgentController;
import org.dromara.jpom.common.JpomManifest;
import org.dromara.jpom.common.commander.AbstractProjectCommander;
import org.dromara.jpom.common.validator.ValidatorItem;
import org.dromara.jpom.common.validator.ValidatorRule;
import org.dromara.jpom.cron.CronUtils;
import org.dromara.jpom.model.system.WorkspaceEnvVarModel;
import org.dromara.jpom.plugin.PluginFactory;
import org.dromara.jpom.service.system.AgentWorkspaceEnvVarService;
import org.dromara.jpom.socket.AgentFileTailWatcher;
import org.dromara.jpom.util.CommandUtil;
import org.springframework.http.MediaType;
import org.springframework.util.Assert;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import java.io.File;
import java.util.Map;
import java.util.TimeZone;
/**
* 缓存管理
*
* @author bwcx_jzy
* @since 2019/7/20
*/
@RestController
@RequestMapping(value = "system")
public class AgentCacheManageController extends BaseAgentController implements ICacheTask {
private final AgentWorkspaceEnvVarService agentWorkspaceEnvVarService;
private final JpomApplication configBean;
private long dataSize;
private long oldJarsSize;
private long tempFileSize;
public AgentCacheManageController(AgentWorkspaceEnvVarService agentWorkspaceEnvVarService,
JpomApplication configBean) {
this.agentWorkspaceEnvVarService = agentWorkspaceEnvVarService;
this.configBean = configBean;
}
/**
* 缓存信息
*
* @return json
*/
@PostMapping(value = "cache", produces = MediaType.APPLICATION_JSON_VALUE)
public IJsonMessage cache() {
JSONObject jsonObject = new JSONObject();
//
jsonObject.put("fileSize", this.tempFileSize);
jsonObject.put("dataSize", this.dataSize);
jsonObject.put("oldJarsSize", this.oldJarsSize);
jsonObject.put("pidPort", AbstractProjectCommander.PID_PORT.size());
int oneLineCount = AgentFileTailWatcher.getOneLineCount();
jsonObject.put("readFileOnLineCount", oneLineCount);
jsonObject.put("taskList", CronUtils.list());
jsonObject.put("pluginSize", PluginFactory.size());
//
WorkspaceEnvVarModel item = agentWorkspaceEnvVarService.getItem(getWorkspaceId());
if (item != null) {
Map varData = item.getVarData();
if (varData != null) {
jsonObject.put("envVarKeys", varData.keySet());
}
}
jsonObject.put("dateTime", DateTime.now().toString());
jsonObject.put("timeZoneId", TimeZone.getDefault().getID());
//
return JsonMessage.success("ok", jsonObject);
}
/**
* 清空缓存
*
* @param type 缓存类型
* @return json
*/
@RequestMapping(value = "clearCache", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
public IJsonMessage clearCache(@ValidatorItem(value = ValidatorRule.NOT_BLANK, msg = "类型错误") String type) {
switch (type) {
case "pidPort":
AbstractProjectCommander.PID_PORT.clear();
break;
case "oldJarsSize": {
File oldJarsPath = JpomManifest.getOldJarsPath();
boolean clean = CommandUtil.systemFastDel(oldJarsPath);
Assert.state(!clean, "清空旧版本重新包失败");
break;
}
case "fileSize": {
File tempPath = configBean.getTempPath();
boolean clean = CommandUtil.systemFastDel(tempPath);
Assert.state(!clean, "清空文件缓存失败");
break;
}
default:
return new JsonMessage<>(405, "没有对应类型:" + type);
}
return JsonMessage.success("清空成功");
}
@Override
public void refreshCache() {
File file = configBean.getTempPath();
this.tempFileSize = FileUtil.size(file);
this.dataSize = configBean.dataSize();
File oldJarsPath = JpomManifest.getOldJarsPath();
this.oldJarsSize = FileUtil.size(oldJarsPath);
}
}