集成gfs的web项目。

web_backend_develope
chenlw 8 years ago
parent d07a4457bb
commit 5a7bb65c0b

@ -0,0 +1,44 @@
/**
* : MyException.java
* : </>
* : <>
* @author liliy
* : <>
* 20161019
* <>
*/
package com.base;
/**
* <>
* <>
* @author liliy
* @version [20161019]
* @see [/]
* @since [/]
*/
public class MyException {
private String mess;
public MyException() {
}
/**
* <>
* <>
* @see [##]
*/
public MyException(String mess) {
// TODO Auto-generated constructor stub
setMess(mess);
}
public void setMess(String mess){
this.mess=mess;
}
public String getMess(){
return this.mess;
}
}

@ -0,0 +1,114 @@
/**
* : PostObj.java
* : </>
* : <>
* @author liliy
* : <>
* 20161018
* <>
*/
package com.base;
import java.util.List;
import java.util.Stack;
/**
* <>
* <>
* @author liliy
* @version [20161018]
* @see [/]
* @since [/]
*/
public class PostData {
private Object data;
private Stack<MyException> exceptionsStack;
/**
* <>
* <>
* @see [##]
*/
public PostData() {
// TODO Auto-generated constructor stub
exceptionsStack=new Stack<>();
}
public PostData(Object data) {
// TODO Auto-generated constructor stub
this.data=data;
exceptionsStack=new Stack<>();
}
/**
* @return the data
*/
public Object getData() {
return data;
}
/**
* @param data the data to set
*/
public void setData(Object data) {
this.data = data;
}
/**
*
* <>
* <>
* @param e
* @see [##]
*/
public void pushExceptionsStack(String mess){
MyException myException=new MyException(mess);
exceptionsStack.push(myException);
}
public void pushExceptionsStackList(List<String> messs){
if(messs==null)return;
for(String mess:messs){
MyException myException=new MyException(mess);
exceptionsStack.push(myException);
}
}
/**
*
* <>
* <>
* @return
* @see [##]
*/
public MyException popExceptionsStack(){
if (isEmptyExceptionsStack()){
return null;
}
return exceptionsStack.pop();
}
/**
*
* <>
* <>
* @return
* @see [##]
*/
public boolean isEmptyExceptionsStack(){
return exceptionsStack.empty();
}
/**
*
* <>
* <>
* @return
* @see [##]
*/
public Stack<MyException> getExceptionsStack() {
return exceptionsStack;
}
/**
* @param exceptionsStack the exceptionsStack to set
*/
public void setExceptionsStack(Stack<MyException> exceptionsStack) {
this.exceptionsStack = exceptionsStack;
}
}

@ -0,0 +1,182 @@
/**
* : TaskOperateData.java
* : </>
* : <>
* @author liliy
* : <>
* 2016112
* <>
*/
package com.base;
import java.util.ArrayList;
import java.util.List;
import com.platform.glusterfs.SetCluster;
import com.platform.utils.Constant;
import com.platform.utils.Support;
/**
* <>
*
* @author liliy
* @version [2016112]
* @see [/]
* @since [/]
*/
public class TaskOperateData {
/**
* 012MD53-1,-2:
* 4:5-3
*/
private int status = 1;
/**
*
*/
// private int taskReturn = 0;
/**
*
*/
private Long allSize = 0L;
/**
*
*/
private Long completedSize = 0L;
/**
*
*/
private int progress = 0;
/**
*
*/
private String sourcePath = null;
/** 目的路径 */
private String destPath = null;
/**
*
*/
private String removeDataName = null;
/**
*
*/
private String startTime = null;
/** 结束时间 */
private String endTime = null;
/**
* @return the status
*/
public int getStatus() {
return status;
}
/**
* @param status the status to set
*/
public void setStatus(int status) {
this.status = status;
}
/**
* @return the allSize
*/
public Long getAllSize() {
return allSize;
}
/**
* @param allSize the allSize to set
*/
public void setAllSize(Long allSize) {
this.allSize = allSize;
}
/**
* @return the completedSize
*/
public Long getCompletedSize() {
return completedSize;
}
/**
* @param completedSize the completedSize to set
*/
public void setCompletedSize(Long completedSize) {
this.completedSize = completedSize;
}
/**
* @return the progress
*/
public int getProgress() {
return progress;
}
/**
* @param progress the progress to set
*/
public void setProgress(int progress) {
this.progress = progress;
}
/**
* @return the sourcePath
*/
public String getSourcePath() {
return sourcePath;
}
/**
* @param sourcePath the sourcePath to set
*/
public void setSourcePath(String sourcePath) {
this.sourcePath = sourcePath;
}
/**
* @return the destPath
*/
public String getDestPath() {
return destPath;
}
/**
* @param destPath the destPath to set
*/
public void setDestPath(String destPath) {
this.destPath = destPath;
}
/**
* @return the removeDataName
*/
public String getRemoveDataName() {
return removeDataName;
}
/**
* @param removeDataName the removeDataName to set
*/
public void setRemoveDataName(String removeDataName) {
this.removeDataName = removeDataName;
}
/**
* @return the startTime
*/
public String getStartTime() {
return startTime;
}
/**
* @param startTime the startTime to set
*/
public void setStartTime(String startTime) {
this.startTime = startTime;
}
/**
* @return the endTime
*/
public String getEndTime() {
return endTime;
}
/**
* @param endTime the endTime to set
*/
public void setEndTime(String endTime) {
this.endTime = endTime;
}
}

@ -203,6 +203,18 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
<if test="extractStatus > 0">
extract_status,
</if>
<if test="payResult != null and payResult != ''">
checkout_pay,
</if>
<if test="execResult != null and execResult != ''">
checkout_indicate,
</if>
<if test="startMonth != null and startMonth != ''">
start_month,
</if>
<if test="endMonth != null and endMonth != ''">
end_month,
</if>
</trim>
)
VALUES(
@ -255,6 +267,18 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
<if test="extractStatus > 0">
#{extractStatus},
</if>
<if test="payResult != null and payResult != ''">
#{payResult},
</if>
<if test="execResult != null and execResult != ''">
#{execResult},
</if>
<if test="startMonth != null and startMonth != ''">
#{startMonth},
</if>
<if test="endMonth != null and endMonth != ''">
#{endMonth},
</if>
</trim>
)
</insert>

@ -61,7 +61,8 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
b.data_version dataVersion,b.submitted_batch submittedBatch,b.data_path dataPath,b.data_charset charset,
b.collection_time collectingTime,b.collector_name collectorName,b.collector_contacts collectorContacts,
b.data_year year,b.extract_status extractStatus,b.start_year startYear,b.end_year endYear,
b.volume_ip volumeIp,b.volume_path volumePath
b.volume_ip volumeIp,b.volume_path volumePath,b.checkout_pay payResult,b.checkout_indicate execResult,
b.start_month startMonth,b.end_month endMonth
FROM
move_data_tmp a LEFT JOIN data_details b
ON a.system_code = b.system_code AND a.regionalism_code = b.regionalism_code AND a.fkid = b.id
@ -78,6 +79,7 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
<where>
a.id = #{id}
</where>
for update
</select>
<update id="update" parameterType="com.platform.entities.DataInfoEntityMoveTmp">

@ -26,6 +26,7 @@ import com.platform.service.ICheckoutService;
@Controller
@RequestMapping("/checkout")
public class CheckoutController extends BaseController {
//日志
public final static Logger log = Logger.getLogger(CheckoutController.class);
@Resource(name = "checkoutService")

@ -29,7 +29,7 @@ import com.platform.entities.GatherOracleInfo;
import com.platform.form.PagerOptions;
import com.platform.form.oracleForm;
import com.platform.form.volumeMoveForm;
import com.platform.http.gfs.HttpUtils;
import com.platform.http.HttpUtils;
import com.platform.service.DataInfoService;
import com.platform.service.ICodeService;
import com.platform.service.IGfsService;
@ -37,6 +37,7 @@ import com.platform.service.ILogRead;
import com.platform.service.IMoveDataService;
import com.platform.service.IGatherOracleService;
import com.platform.service.IOracleExtractService;
import com.platform.service.IVolumeService;
import com.platform.service.OracleStatusService;
import com.platform.service.thread.ThreadExtractOracle;
import com.platform.service.thread.ThreadGainOracleConnect;
@ -61,8 +62,8 @@ public class DataModelController extends BaseController {
/**
* gfs
*/
@Resource(name = "gfsService")
private IGfsService gfsService;
@Resource(name = "volumeService")
private IVolumeService volumeService;
/**
* mysql
@ -202,9 +203,8 @@ public class DataModelController extends BaseController {
@RequestMapping(value = "/volume/list", method = RequestMethod.POST)
@ResponseBody
public String volumeList() throws Exception {
HttpUtils ht = new HttpUtils();
log.debug("-----/volume/list------");
String rest = ht.sendPost("gfs/getAllvolume", null);
String rest = volumeService.getAllvolume();
return rest;
}

@ -4,6 +4,8 @@ import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.RandomAccessFile;
import java.io.StringWriter;
import java.io.Writer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
@ -16,7 +18,9 @@ import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.sf.json.JSONArray;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang.StringUtils;
@ -36,6 +40,8 @@ import org.springframework.web.multipart.MultipartHttpServletRequest;
import org.springframework.web.multipart.commons.CommonsMultipartResolver;
import com.base.BaseController;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.platform.entities.PreDataInfo;
import com.platform.entities.ResumableInfo;
import com.platform.entities.ResumableInfoStorage;
@ -55,6 +61,7 @@ import com.platform.utils.UtilsHelper;
@RequestMapping("/fileOperation")
public class ExcelController extends BaseController{
private static ObjectMapper mapper = new ObjectMapper();
/**
*
*/
@ -259,8 +266,11 @@ public class ExcelController extends BaseController{
public ModelMap importExcel(HttpServletRequest request,
HttpServletResponse response, @RequestBody String fileNameList) throws Exception {
log.info("---importExcel---" + fileNameList);
JSONArray jsonArray = JSONArray.fromObject(fileNameList);
List<String> jsonlist = (List<String>) JSONArray.toCollection(jsonArray, String.class);
List<String> jsonlist = mapper.readValue(fileNameList, new TypeReference<List<String>>() {});
// JavaType javaType = mapper.getTypeFactory().constructParametricType(List.class, String.class);
// JSONArray jsonArray = JSONArray.fromObject(fileNameList);
// List<String> jsonlist = (List<String>) JSONArray.toCollection(jsonArray, String.class);
ModelMap modelMap = new ModelMap();
if (null == jsonlist || jsonlist.size() == 0) {

@ -10,7 +10,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import com.base.BaseController;
import com.platform.entities.VolumeEntity;
import com.platform.entities.VolumeDataEntity;
import com.platform.service.IGfsService;
@ -81,7 +81,7 @@ public class FolderController extends BaseController {
@RequestMapping(value="/volume/findByName", method= RequestMethod.POST)
public Object getVolumByName(String volumeName) throws Exception{
log.info(volumeName);
VolumeEntity result = gfsService.getOneVolume(volumeName);
VolumeDataEntity result = gfsService.getOneVolume(volumeName);
return result;
}
}

@ -12,8 +12,8 @@ import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import com.base.BaseController;
import com.platform.entities.VolumeEntity;
import com.platform.http.gfs.HttpUtils;
import com.platform.entities.VolumeDataEntity;
import com.platform.http.gfs.SetVolume;
import com.platform.service.IVolumeService;
import com.platform.utils.ThreadVolumeImm;
@ -33,9 +33,9 @@ public class VolumeController extends BaseController{
private IVolumeService volumeService;
/**
* http
* volumeClient
*/
HttpUtils ht = new HttpUtils();
SetVolume volumeClient = new SetVolume();
/** volume
* @param res
@ -47,7 +47,7 @@ public class VolumeController extends BaseController{
@RequestMapping(value = "/volume/update", method = RequestMethod.POST)
@ResponseBody
public String volumeUpdate(HttpServletRequest res, HttpServletResponse req,
@RequestBody VolumeEntity form) throws Exception {
@RequestBody VolumeDataEntity form) throws Exception {
log.error("/oracle/update");
int rest = volumeService.save(form);
if (rest == 1) {
@ -56,7 +56,7 @@ public class VolumeController extends BaseController{
else {
req.setStatus(500);
}
String result = ht.sendPost("gfs/getAllvolume", null);
String result = volumeService.getAllvolume();
new ThreadVolumeImm("ThreadVolumeImm-in-VolumeController-update").start();
return result;
}
@ -71,7 +71,7 @@ public class VolumeController extends BaseController{
@RequestMapping(value = "/volume/delete", method = RequestMethod.POST)
@ResponseBody
public String volumeDelete(HttpServletRequest res, HttpServletResponse req,
@RequestBody VolumeEntity entity) throws Exception {
@RequestBody VolumeDataEntity entity) throws Exception {
log.error("/volume/delete");
int rest = volumeService.delete(entity);
if (rest == 1) {
@ -80,7 +80,7 @@ public class VolumeController extends BaseController{
else {
req.setStatus(500);
}
String result = ht.sendPost("gfs/getAllvolume", null);
String result = volumeClient.getAllvolume();
new ThreadVolumeImm("ThreadVolumeImm-in-VolumeController-delete").start();
return result;
}

@ -57,6 +57,12 @@ public class DataInfoEntity {
/** 是否进行了校验 */
private String checkoutFlag;
/** 起始月份 */
private String startMonth;
/** 结束月份 */
private String endMonth;
/** 是否进行了抽取 */
private String standardExtractStatus;
@ -402,6 +408,34 @@ public class DataInfoEntity {
this.standardExtractStatus = standardExtractStatus;
}
/**
* @return the startMonth
*/
public String getStartMonth() {
return startMonth;
}
/**
* @param startMonth the startMonth to set
*/
public void setStartMonth(String startMonth) {
this.startMonth = startMonth;
}
/**
* @return the endMonth
*/
public String getEndMonth() {
return endMonth;
}
/**
* @param endMonth the endMonth to set
*/
public void setEndMonth(String endMonth) {
this.endMonth = endMonth;
}
@Override
public String toString() {
return "id=" + this.id + " ,regionalismCode=" + this.regionalismCode

@ -22,7 +22,7 @@ import java.util.List;
* @since [/]
*/
public class VolumeEntity {
public class VolumeDataEntity {
/** volume总大小 */
private Double allSize;
@ -43,6 +43,7 @@ public class VolumeEntity {
/** volume树形目录 */
private List<FolderNode> folder = new ArrayList<FolderNode>();
// private FolderNode folder = new FolderNode();
/** volume的 块 */
private List<Brick> brick = new ArrayList<Brick>();
@ -146,6 +147,13 @@ public class VolumeEntity {
this.folder = folder;
}
/**
* @return the status
*/
public Boolean getStatus() {
return status;
}
/**
* @return the brick
*/

@ -0,0 +1,14 @@
package com.platform.http;
/** http
* @author chen
*
*/
public class HttpClientConstant {
/**
* gfs web IP
*/
public static String URL_IP_PORT = "http://192.168.0.110:9001/";
}

@ -0,0 +1,214 @@
package com.platform.http;
import java.beans.IntrospectionException;
import java.io.IOException;
import java.io.StringWriter;
import java.io.Writer;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
import org.apache.log4j.Logger;
import org.springframework.http.HttpStatus;
import com.fasterxml.jackson.core.JsonGenerationException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.platform.utils.Bean2MapUtils;
/** http
* @author chen
*
*/
public class HttpUtils {
private static ObjectMapper mapper = new ObjectMapper();
/**
*
*/
public final static Logger log = Logger.getLogger(HttpUtils.class);
/** post json
* @param subUrl
* @param data
* @return
* @throws IOException
* @throws JsonMappingException
* @throws JsonGenerationException
*/
public String sendAjaxPost(String subUrl, Object data) throws JsonGenerationException, JsonMappingException, IOException {
String jsondata = null;
//转成json
if (null != data) {
Writer strWriter = new StringWriter();
mapper.writeValue(strWriter, data);
jsondata = strWriter.toString();
}
return sendAjaxPost(subUrl, jsondata);
}
/** post
* @param subUrl
* @param map
* @return
*/
public String sendAjaxPost(String subUrl, String json) {
String resultStr = "";
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(HttpClientConstant.URL_IP_PORT + subUrl);
try {
// 传参
if (null != json && !"".equals(json)) {
// 建立一个NameValuePair数组用于存储欲传送的参数
StringEntity entity = new StringEntity(json,"UTF-8");
entity.setContentEncoding("UTF-8");
entity.setContentType("application/json");
post.setEntity(entity);
}
// 发送
HttpResponse respone = client.execute(post);
//接收返回值
if(respone.getStatusLine().getStatusCode() == HttpStatus.OK.value()){
HttpEntity result = respone.getEntity();
if (null != result) {
resultStr = EntityUtils.toString(result);
}
}
} catch (Exception e) {
log.info(HttpClientConstant.URL_IP_PORT + subUrl);
log.error(e);
}
return resultStr;
}
/** post map
* @param subUrl
* @param data
* @return
*/
public String sendPost(String subUrl, Object data) {
Map<String, Object> map = null;
if (null != data) {
//转成json
try {
map = Bean2MapUtils.convertBean(data);
} catch (IllegalAccessException e) {
log.error(e);
} catch (InvocationTargetException e) {
log.error(e);
} catch (IntrospectionException e) {
log.error(e);
}
}
return sendPost(subUrl, map);
}
/** map
* @param subUrl
* @param map
* @return
*/
public String sendPost(String subUrl, Map<String, Object> map) {
String resultStr = "";
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(HttpClientConstant.URL_IP_PORT + subUrl);
try {
// 传参
List<NameValuePair> parameters = new ArrayList<NameValuePair>();
if (null != map) {
// 封装数据
for (String key : map.keySet()) {
String value = "";
Object obj = map.get(key);
String type = obj.getClass().getName();
//字符串
if (type.equals("java.lang.String")) {
value = (String) obj;
}
//数组
else if(type.contains("[L")){
JSONArray jsonarr = JSONArray.fromObject(obj);
value = jsonarr.toString();
}
//集合
else if(type.contains("java.util.")){
JSONArray jsonarr = JSONArray.fromObject(obj);
value = jsonarr.toString();
}
//除字符外的 其他 基本类型
else if(type.contains("java.lang.")){
value = String.valueOf(obj);
}
//对象
else {
JSONObject jsondata = JSONObject.fromObject(obj);
value = jsondata.toString();
}
parameters.add(new BasicNameValuePair(key, value));
}
// 传参 放入 url的 form中
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(parameters,
"UTF-8");
post.setEntity(entity);
}
// 发送
HttpResponse respone = client.execute(post);
HttpEntity result = respone.getEntity();
if (null != result) {
resultStr = EntityUtils.toString(result);
}
} catch (Exception e) {
log.info(HttpClientConstant.URL_IP_PORT + subUrl);
log.error(e);
}
return resultStr;
}
// public static void main(String[] args) {
// HttpUtils ht = new HttpUtils();
// Volume v = new Volume("a", 200, 10, null, null);
// String rest = ht.sendPost("data/getOperateTasks", v);
// System.out.println(rest);
// Map<String, Object> m = new HashMap<String, Object>();
// m.put("a", 1);
// rest = ht.sendPost("data/getOperateTasks", m);
// System.out.println(rest);
// rest = ht.sendPost("data/getOperateTasks", null);
// System.out.println(rest);
// //
// String[] str = new String[2];
// str[1] = "1";
// str[0] = "0";
// m.put("arr", str);
//
// Volume[] vli = new Volume[2];
// vli[1] = new Volume("a", 200, 10, null, null);
// vli[0] = new Volume("a", 200, 10, null, null);
// m.put("vli", vli);
// List<Integer> num = new ArrayList<Integer>();
// num.add(2);
// m.put("num", num);
// m.put("bool", true);
// rest = ht.sendPost("data/getOperateTasks", m);
// System.out.println(rest);
// }
}

@ -0,0 +1,167 @@
/**
* : VolumeEntity.java
* : </>
* : <>
* @author chen
* : <>
* 201699
* <>
*/
package com.platform.http;
import java.util.ArrayList;
import java.util.List;
import com.platform.entities.Brick;
import com.platform.entities.FolderNode;
/**
* gfs volume
*
* @author chen
* @version [201699]
* @see [/]
* @since [/]
*/
public class VolumeEntity {
/** volume总大小 */
private double allSize;
/** volume已使用大小 */
private double usedSize;
/** volume名称 */
private String name;
/** 挂载点 */
private String path;
/** * exist正常返回状态Started,Stopped,Created */
private String status;
private String type;
/** volume数据的树形目录 */
private FolderNode folder = new FolderNode();
/** volume的 块 */
private List<Brick> brick = new ArrayList<Brick>();
/**
* @return the allSize
*/
public double getAllSize() {
return allSize;
}
/**
* @param allSize the allSize to set
*/
public void setAllSize(double allSize) {
this.allSize = allSize;
}
/**
* @return the usedSize
*/
public double getUsedSize() {
return usedSize;
}
/**
* @param usedSize the usedSize to set
*/
public void setUsedSize(double usedSize) {
this.usedSize = usedSize;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the path
*/
public String getPath() {
return path;
}
/**
* @param path the path to set
*/
public void setPath(String path) {
this.path = path;
}
/**
* @return the status
*/
public String getStatus() {
return status;
}
/**
* @param status the status to set
*/
public void setStatus(String status) {
this.status = status;
}
/**
* @return the type
*/
public String getType() {
return type;
}
/**
* @param type the type to set
*/
public void setType(String type) {
this.type = type;
}
/**
* @return the folder
*/
public FolderNode getFolder() {
return folder;
}
/**
* @param folder the folder to set
*/
public void setFolder(FolderNode folder) {
this.folder = folder;
}
/**
* @return the brick
*/
public List<Brick> getBrick() {
return brick;
}
/**
* @param brick the brick to set
*/
public void setBrick(List<Brick> brick) {
this.brick = brick;
}
}

@ -0,0 +1,131 @@
package com.platform.http.gfs;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import net.sf.json.JSONArray;
import org.apache.log4j.Logger;
import com.base.MyException;
import com.base.PostData;
import com.base.TaskOperateData;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.platform.http.HttpUtils;
import com.platform.http.VolumeEntity;
import com.platform.utils.DateForm;
/**
* <>
* <>
* @author chen
* @version [201698]
* @see [/]
* @since [/]
*/
public class CopyData {
public static Logger log = Logger.getLogger(CopyData.class);
HttpUtils ht = new HttpUtils();
/**
* sourceFolderNamedestFolderName
* 1sourceFolderName-2 destFolderName-3
* @param sourceFolderName
* @param destFolderName
* @return
* @see [##]
*/
public int copyFolder(String sourceFolderName, String destFolderName) throws Exception{
int reslut = 0;
log.info(" copyFolder " + sourceFolderName + " --> " + destFolderName);
Map<String, Object> map = new HashMap<String, Object>();
map.put("sourcePath", sourceFolderName);
map.put("destPath", destFolderName);
//请求web
String rest = ht.sendPost("data/copyData", map);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return 0;
}
Gson gs = new Gson();
PostData data = gs.fromJson(rest, PostData.class);
// 1 : 成功
double copyResult = (double) data.getData();
reslut = (int) copyResult;
getExcept(data);
return reslut;
}
/**
* sourceFolderNamedestFolderName
* 1sourceFolderName-2 destFolderName-3
* @param sourceFolderName
* @param destFolderName
* @return
* @see [##]
*/
public List<TaskOperateData> operationTask() throws Exception{
List<TaskOperateData> li = new ArrayList<TaskOperateData>();
Map<String, Object> map = new HashMap<String, Object>();
Calendar c2 = Calendar.getInstance();
map.put("endTime", DateForm.date2StringBysecond(c2.getTime()));
// 时间设置为 10天 前的时间
c2.set(Calendar.DAY_OF_YEAR, c2.get(Calendar.DAY_OF_YEAR) -10);
String time = DateForm.date2StringBysecond(c2.getTime());
map.put("startTime", time);
List<Integer> typeList = new ArrayList<Integer>();
typeList.add(0);
typeList.add(1);
typeList.add(2);
typeList.add(3);
typeList.add(-1);
typeList.add(-2);
map.put("statusList", typeList);
//请求web
String rest = ht.sendPost("data/getOperateTasks", map);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return li;
}
Gson gs = new Gson();
PostData data = gs.fromJson(rest, (new PostData(new ArrayList<TaskOperateData>()).getClass()));
li = (List<TaskOperateData>) data.getData();
//解析 PostData
if(li.size() > 0){
JSONArray jsonarr = JSONArray.fromObject(data.getData());
try {
li = gs.fromJson(jsonarr.toString(), new TypeToken<List<TaskOperateData>>(){}.getType());
} catch (Exception e) {
log.error(e);
}
}
getExcept(data);
return li;
}
/**
* @param pd
*/
private void getExcept(PostData pd) {
StringBuffer sb = new StringBuffer();
for ( MyException object : pd.getExceptionsStack()) {
sb.append(object.getMess()).append(",");
}
if (!"".equals(sb.toString())) {
log.error(sb.toString());
}
}
}

@ -1,7 +0,0 @@
package com.platform.http.gfs;
public class HttpClientConstant {
public static String URL_IP_PORT = "http://192.168.0.110:8088/jfinal/";
}

@ -1,90 +0,0 @@
package com.platform.http.gfs;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import net.sf.json.JSONObject;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
import org.apache.log4j.Logger;
import com.platform.controller.DataModelController;
import com.platform.utils.Bean2MapUtils;
import com.platform.utils.Configs;
public class HttpUtils {
public static Logger log = Configs.DAILY_ROLLING_LOGGER.getLogger(HttpUtils.class);
public String sendPost(String subUrl, Object data) {
String resultStr = "";
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(HttpClientConstant.URL_IP_PORT + subUrl);
try {
// 传参
List<NameValuePair> parameters = new ArrayList<NameValuePair>();
if (null != data) {
// 转 map
Map<String, Object> map = Bean2MapUtils.convertBean(data);
// 转json
JSONObject jsondata = JSONObject.fromObject(map);
// 封装数据
parameters.add(new BasicNameValuePair("jsondata", jsondata
.toString()));
parameters.add(new BasicNameValuePair("type", data.getClass()
.getName()));
// 传参 放入 url的 form中
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(parameters,
"UTF-8");
post.setEntity(entity);
}
// 发送
HttpResponse respone = client.execute(post);
HttpEntity result = respone.getEntity();
if (null != result) {
resultStr = EntityUtils.toString(result);
}
// resultMap = Bean2MapUtils.convertBean(result);
} catch (Exception e) {
System.out.println(e);
}
return resultStr;
}
// public static void main(String[] args) {
// Date d = new Date();
// HttpUtils ht = new HttpUtils();
// BaseForm1 bas = new BaseForm1();
// bas.setId("12");
// bas.setName("n12");
// String rest = ht.sendPost("gfs/getAllvolume", null);
// if (null != rest) {
// System.out.println(rest);
// JSONArray jsondata = JSONArray.fromObject(rest);
// ArrayList<VolumeEntity> fo = (ArrayList<VolumeEntity>) JSONArray.toCollection(jsondata, VolumeEntity.class);
// System.err.println(fo);
// try {
// System.err.println(Bean2MapUtils.convertBean(fo));
// } catch (IllegalAccessException | InvocationTargetException
// | IntrospectionException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// }
// }
//
// Date r = new Date();
// System.err.println(r.getTime() - d.getTime());
// }
}

@ -0,0 +1,84 @@
package com.platform.http.gfs;
import java.util.HashMap;
import java.util.Map;
import org.apache.log4j.Logger;
import com.base.MyException;
import com.base.PostData;
import com.google.gson.Gson;
import com.platform.http.HttpUtils;
/**
* @author chen
*
*/
public class RemoveData {
public static Logger log = Logger.getLogger ( RemoveData.class);
HttpUtils ht = new HttpUtils();
/**
* -1 :error; 0: the filename is not exists ; 1: right
* @param folderName
* @param fileName
* @return
*/
public int deleteFolder(String folderName) throws Exception{
int reslut = 0;
log.info("start delete "+folderName);
Map<String, Object> map = new HashMap<String, Object>();
map.put("removePath", folderName);
//请求 web sendPost
String rest = ht.sendPost("data/removeData", map);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return 0;
}
Gson gs = new Gson();
PostData data = gs.fromJson(rest, PostData.class);
// 1 : 成功
double copyResult = (double) data.getData();
reslut = (int) copyResult;
getExcept(data);
return reslut;
}
public int abortcopyFolder(String sourceFolderName, String destFolderName) throws Exception{
int reslut = 0;
log.info(" abortcopyFolder " + sourceFolderName + " --> " + destFolderName);
Map<String, Object> map = new HashMap<String, Object>();
map.put("sourcePath", sourceFolderName);
map.put("destPath", destFolderName);
//请求web
String rest = ht.sendPost("data/abortCopyData", map);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return 0;
}
Gson gs = new Gson();
PostData data = gs.fromJson(rest, PostData.class);
// 1 : 成功
double copyResult = (double) data.getData();
reslut = (int) copyResult;
getExcept(data);
return reslut;
}
/**
* @param pd
*/
private void getExcept(PostData pd) {
StringBuffer sb = new StringBuffer();
for ( MyException object : pd.getExceptionsStack()) {
sb.append(object.getMess()).append(",");
}
if (!"".equals(sb.toString())) {
log.error(sb.toString());
}
}
}

@ -0,0 +1,320 @@
/**
* @author
* volumevolumevolumebrick
*/
package com.platform.http.gfs;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import net.sf.json.JSONArray;
import org.apache.log4j.Logger;
import com.base.MyException;
import com.base.PostData;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.platform.entities.FolderNode;
import com.platform.entities.VolumeDataEntity;
import com.platform.http.HttpUtils;
import com.platform.http.VolumeEntity;
import com.platform.utils.BeanCopy;
public class SetVolume {
public static Logger log = Logger.getLogger(SetVolume.class);
HttpUtils ht = new HttpUtils();
/** volume
* @return json
*/
public String getAllvolume() {
List<VolumeDataEntity> datas = new ArrayList<VolumeDataEntity>();
try {
datas = getAllvolumeEntity();
} catch (Exception e) {
log.error(e);
}
if (datas.size() == 0) {
return "";
}
JSONArray jsonarr = JSONArray.fromObject(datas);
return jsonarr.toString();
}
/** volume
* @return json
*/
public List<VolumeDataEntity> getAllvolumeEntity() throws Exception{
List<VolumeDataEntity> volumeList = new ArrayList<VolumeDataEntity>();
String rest = ht.sendPost("gfs/getAllVolume", null);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return volumeList;
}
// JSONObject json = JSONObject.fromObject(rest);
Gson gs = new Gson();
PostData data = gs.fromJson(rest, (new PostData(new ArrayList<VolumeEntity>())).getClass());
List<VolumeEntity> volumes = (List<VolumeEntity>) data.getData();
if(null == volumes){
log.error("-----gfs/getAllVolume----- no volume ----");
getExcept(data);
return volumeList;
}
//解析 PostData
if(volumes.size() > 0){
JSONArray jsonarr = JSONArray.fromObject(data.getData());
try {
volumes = gs.fromJson(jsonarr.toString(), new TypeToken<List<VolumeEntity>>(){}.getType());
} catch (Exception e) {
log.error(e);
}
}
for (VolumeEntity volumeEntity : volumes) {
VolumeDataEntity entity = new VolumeDataEntity();
BeanCopy.copyBean(volumeEntity, entity, "folder", "status");
if (null != volumeEntity.getFolder()) {
List<FolderNode> fn = new ArrayList<FolderNode>();
fn.add(volumeEntity.getFolder());
entity.setFolder(fn);
if ("Started".equals(volumeEntity.getStatus())) {
entity.setStatus(true);
}
}
volumeList.add(entity);
}
getExcept(data);
return volumeList;
}
/**
* volume 1 1: ;-1brickip; -2 -3
* -4:brick ; -5 :volumeName -6 -7
*
* @param volumeName
* @param count
* @param type
* @param bricks
* @param mountPoint
* @return
* @see [##]
*/
public int createVolume(String volumeName, int count, String type, List<String> bricks, String mountPoint) throws Exception{
int reslut = 0;
log.info("Creat new volume " + volumeName);
Map<String, Object> map = new HashMap<String, Object>();
map.put("volumeName", volumeName);
map.put("count", count);
map.put("type", type);
map.put("bricks", bricks);
map.put("mountPoint", mountPoint);
//请求 gfs 的 web
String rest = ht.sendPost("gfs/createVolume", map);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return 0;
}
Gson gs = new Gson();
PostData data = gs.fromJson(rest, PostData.class);
// 1 : 成功
double copyResult = (double) data.getData();
reslut = (int) copyResult;
getExcept(data);
return reslut;
}
/**
* volume 1 -1volume name-2volume
* -3-4/gfsAutoMount/mountPoint.record
* @param volumeName
* @return
* @see [##]
*/
public int deleteVolume(String volumeName) throws Exception{
int reslut = 0;
log.info("delete volume " + volumeName);
Map<String, Object> map = new HashMap<String, Object>();
map.put("volumeName", volumeName);
//请求web
String rest = ht.sendPost("gfs/deleteVolume", map);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return 0;
}
Gson gs = new Gson();
PostData data = gs.fromJson(rest, PostData.class);
// 1 : 成功
double copyResult = (double) data.getData();
reslut = (int) copyResult;
getExcept(data);
return reslut;
}
/**
* volumebrick, 1 ;
* volumebrickcount
*
* @param volumeName
* @param brickName
* @param count
* @param type
* @return
* @see [##]
*/
public int addBrickVolume(String volumeName, List<String> brickName, int count, String type) throws Exception{
int reslut = 0;
StringBuffer sb = new StringBuffer();
for (String string : brickName) {
sb.append(string).append(",");
}
log.info("addBrick Volume " + volumeName+" Brick "+ sb.toString());
Map<String, Object> map = new HashMap<String, Object>();
map.put("volumeName", volumeName);
map.put("bricks", brickName);
//请求web
String rest = ht.sendPost("gfs/addABricks", map);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return 0;
}
Gson gs = new Gson();
PostData data = gs.fromJson(rest, PostData.class);
// 1 : 成功
double copyResult = (double) data.getData();
reslut = (int) copyResult;
getExcept(data);
return reslut;
}
/**
* volumebrick, 1 ;
* volumebrickcount
*
* @param volumeName
* @param brickName
* @param count
* @param type
* @return
* @see [##]
*/
public int deleteBrickVolume(String volumeName, List<String> brickName, int count, String type) throws Exception {
int reslut = 0;
StringBuffer sb = new StringBuffer();
for (String string : brickName) {
sb.append(string).append(",");
}
log.info("deleteBrick Volume " + volumeName+" Brick "+ sb.toString());
Map<String, Object> map = new HashMap<String, Object>();
map.put("volumeName", volumeName);
map.put("bricks", brickName);
//请求web
String rest = ht.sendPost("gfs/deleteBrickForce", map);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return 0;
}
Gson gs = new Gson();
PostData data = gs.fromJson(rest, PostData.class);
// 1 : 成功
double copyResult = (double) data.getData();
reslut = (int) copyResult;
getExcept(data);
return reslut;
}
/*
* volume volume 0 -1
* volumevolume
*/
public int stopVolume(String volumeName) throws Exception{
int reslut = 0;
log.info("stop volume " + volumeName);
Map<String, Object> map = new HashMap<String, Object>();
map.put("volumeName", volumeName);
//请求web
String rest = ht.sendPost("gfs/stopVolume", map);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return 0;
}
Gson gs = new Gson();
PostData data = gs.fromJson(rest, PostData.class);
// 1 : 成功
double copyResult = (double) data.getData();
reslut = (int) copyResult;
getExcept(data);
return reslut;
}
/*
* volume volume 0 -1
* volumevolume
*/
public int startVolume(String volumeName) throws Exception {
int reslut = 0;
log.info("start volume " + volumeName);
Map<String, Object> map = new HashMap<String, Object>();
map.put("volumeName", volumeName);
//请求web
String rest = ht.sendPost("gfs/startVolume", map);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return 0;
}
Gson gs = new Gson();
PostData data = gs.fromJson(rest, PostData.class);
// 1 : 成功
double copyResult = (double) data.getData();
reslut = (int) copyResult;
getExcept(data);
return reslut;
}
/**
* @param pd
*/
private void getExcept(PostData pd) {
StringBuffer sb = new StringBuffer();
for ( MyException object : pd.getExceptionsStack()) {
sb.append(object.getMess()).append(",");
}
if (!"".equals(sb.toString())) {
log.error(sb.toString());
}
}
// /** json 转 对象
// * @param folds
// * @return
// */
// private List<FolderNode> setChildFolders(List<FolderNode> folds) {
// List<FolderNode> folders = null;
// if (null != folds) {
// JSONArray foldJson = JSONArray.fromObject(folds);
// folders = (List<FolderNode>)JSONArray.toCollection(foldJson, FolderNode.class);
// for (FolderNode folderNode : folders) {
// List<FolderNode> childFolds = folderNode.getChildNodes();
// //递归
// folderNode.setChildNodes(setChildFolders(childFolds));
// }
// }
// return folders;
// }
//
// /** json 转 对象
// * @param bricks
// * @return
// */
// private List<Brick> setBricks(List<Brick> bricks) {
// List<Brick> bs = null;
// if (null != bricks) {
// JSONArray bsJson = JSONArray.fromObject(bricks);
// bs = (List<Brick>)JSONArray.toCollection(bsJson, Brick.class);
// }
// return bs;
// }
}

@ -113,10 +113,9 @@ public class OracleConnector {
Statement statement = null;
try {
statement = conn.createStatement();
statement.execute(sql);
flag = true;
flag =statement.execute(sql);
FileOperateHelper
.fileWrite(filePath+".log", sql+ "\r\n"+"OK \r\n");
.fileWrite(filePath+".log", sql+ "\r\n"+ flag +" \r\n");
} catch (SQLException e) {
flag = false;
FileOperateHelper

@ -17,7 +17,7 @@ import java.util.Map;
import com.platform.entities.FolderNode;
import com.platform.entities.RegionalismEntity;
import com.platform.entities.SystemEntity;
import com.platform.entities.VolumeEntity;
import com.platform.entities.VolumeDataEntity;
/**

@ -11,7 +11,7 @@ package com.platform.service;
import java.util.List;
import com.platform.entities.FolderNode;
import com.platform.entities.VolumeEntity;
import com.platform.entities.VolumeDataEntity;
/**
* <>
@ -44,7 +44,7 @@ public interface IGfsService {
* @see [##]
*/
public int copyFolder(List<String> srcFolders, String dstFolder, String name) throws Exception;
// public int copyFolder(List<String> srcFolders, String dstFolder, String name) throws Exception;
/**
* <> volume name \ allsize \ usedsize \ folderTree \ brick
@ -53,7 +53,7 @@ public interface IGfsService {
* @throws Exception
* @see [##]
*/
public List<VolumeEntity> getAllVolumes() throws Exception;
public List<VolumeDataEntity> getAllVolumes() throws Exception;
/**
* <> volume volume
@ -62,7 +62,7 @@ public interface IGfsService {
* @throws Exception
* @see [##]
*/
public VolumeEntity getOneVolume(String volumeName) throws Exception;
public VolumeDataEntity getOneVolume(String volumeName) throws Exception;
/**
* @param volumeName
@ -71,7 +71,7 @@ public interface IGfsService {
* @return
* @throws Exception
*/
public int moveData(String volumeName, String srcPath, String dstPath) throws Exception;
// public int moveData(String volumeName, String srcPath, String dstPath) throws Exception;
/**
* @param volumeName

@ -1,35 +1,41 @@
package com.platform.service;
import com.platform.entities.VolumeEntity;
import com.platform.entities.VolumeDataEntity;
public interface IVolumeService {
/** volume
* @return
* @throws Exception
*/
public String getAllvolume() throws Exception;
/** volume
* @param entity
* @return
* @throws Exception
*/
public int save(VolumeEntity entity) throws Exception;
public int save(VolumeDataEntity entity) throws Exception;
/** volume
* @param entity
* @return
* @throws Exception
*/
public int delete(VolumeEntity entity) throws Exception;
public int delete(VolumeDataEntity entity) throws Exception;
/** volume
* @param entity
* @return
* @throws Exception
*/
public int start(VolumeEntity entity) throws Exception;
public int start(VolumeDataEntity entity) throws Exception;
/** volume
* @param entity
* @return
* @throws Exception
*/
public int stop(VolumeEntity entity) throws Exception;
public int stop(VolumeDataEntity entity) throws Exception;
}

@ -71,7 +71,9 @@ public class OracleExtractHelper {
+ linkName;
//删除 dblink
if (OracleConnector.execOracleSQL(conn, deleteSql, Configs.EXTRACT_LOG_LOCALTION + oc.getName())) {
OracleConnector.execOracleSQL(conn, sql, Configs.EXTRACT_LOG_LOCALTION + oc.getName());
if(!OracleConnector.execOracleSQL(conn, sql, Configs.EXTRACT_LOG_LOCALTION + oc.getName())){
OracleConnector.execUpdateOracleSQL(conn, sql, Configs.EXTRACT_LOG_LOCALTION + oc.getName());
}
} else {
Configs.CONSOLE_LOGGER.error("删除已有的DBLink失败,无法创建新的DBLink!");
FileOperateHelper.fileWrite(Configs.EXTRACT_LOG_LOCALTION
@ -80,7 +82,9 @@ public class OracleExtractHelper {
} else {
// 否则创建dblink
OracleConnector.execOracleSQL(conn, sql, Configs.EXTRACT_LOG_LOCALTION + oc.getName());
if(!OracleConnector.execOracleSQL(conn, sql, Configs.EXTRACT_LOG_LOCALTION + oc.getName())){
OracleConnector.execUpdateOracleSQL(conn, sql, Configs.EXTRACT_LOG_LOCALTION + oc.getName());
}
}
}
}

@ -17,7 +17,7 @@ import com.base.CustomException;
import com.platform.dao.DataInfoDao;
import com.platform.entities.DataInfoEntity;
import com.platform.form.PagerOptions;
import com.platform.glusterfs.RemoveData;
import com.platform.http.gfs.RemoveData;
import com.platform.service.DataInfoService;
import com.platform.utils.Configs;
@ -47,7 +47,7 @@ public class DataInfoServiceImp implements DataInfoService {
List<String> list = new ArrayList<String>();
//如果有查询数据库类型的
//去掉版本字段
Pattern pattern = Pattern.compile("^版本\\d+$");
Pattern pattern = Pattern.compile("^版本\\d+");
if (null != querystr && !"".equals(querystr)) {
if (querystr.toLowerCase().contains("oracle")) {
pagerOptions.setDataBaseType("ORACLE");

@ -18,8 +18,8 @@ import org.springframework.stereotype.Service;
import com.platform.entities.Brick;
import com.platform.entities.FolderNode;
import com.platform.entities.VolumeEntity;
import com.platform.glusterfs.CopyData;
import com.platform.entities.VolumeDataEntity;
import com.platform.http.gfs.CopyData;
import com.platform.glusterfs.GetTreeData;
import com.platform.glusterfs.VolumeInfo;
import com.platform.service.IGfsService;
@ -53,104 +53,48 @@ public class GfsServiceImpl implements IGfsService {
return result;
}
@Override
public int copyFolder(List<String> srcFolders, String dstFolder, String name)
throws Exception {
int status = 0 ;
if (null != srcFolders) {
for (String string : srcFolders) {
status = copydata.copyFolderFilesAnyway(string, dstFolder, name);
}
}
return status;
}
// @Override
// public int copyFolder(List<String> srcFolders, String dstFolder, String name)
// throws Exception {
// int status = 0 ;
// if (null != srcFolders) {
//
// for (String string : srcFolders) {
//// status = copydata.copyFolderFilesAnyway(string, dstFolder, name);
// }
// }
// return status;
// }
/* (non-Javadoc)
* @see com.platform.service.IGfsService#getAllVolume()
*/
@Override
public List<VolumeEntity> getAllVolumes() throws Exception {
List<VolumeEntity> volumeList = CacheTreeData.getVolumeList();
if (null == volumeList) {
return new ArrayList<VolumeEntity>();
}
for (VolumeEntity volume : volumeList) {
// VolumeEntity volume = new VolumeEntity();
// volume.setName(volumeName);
// List<String> path = volumeInfo.getVolumeMountPoint(volumeName);
// //默认加载第一个路径
// if (null != path && path.size() > 0) {
// volume.setPath(path.get(0));
// }
// volume.setAllSize(volumeInfo.getVolumeAllSize(volumeName));
// volume.setUsedSize(volumeInfo.getVolumeUseSize(volumeName));
// //TODO 查询brick--
// //返回 ip:path
// List<String> brickStrs = volumeInfo.getVolumeBricks(volumeName);
// //brick已用大小
// Map<String, Double> usedSize = volumeInfo.getVolumebricksDataSize(volumeName);
// Map<String, Double> availableSize = volumeInfo.getVolumebricksAvailableSize(volumeName);
//
//
// List<Brick> brickList = new ArrayList<Brick>();
// for (String brickIpPath : brickStrs) {
// Brick b = new Brick();
// String ipAndpath[] = brickIpPath.split(":");
// String brickip = ipAndpath[0];
// String brickpath = ipAndpath[1];
// //iP , path ,
// b.setIp(brickip);
// b.setPath(brickpath);
// b.setAvailableSize(availableSize.get(brickIpPath));
// b.setUsedSize(usedSize.get(brickIpPath));
// brickList.add(b);
// }
// volume.setBrick(brickList);
if (null != volume.getPath()) {
// 获得 folder 目录
List<FolderNode> list = new ArrayList<FolderNode>();
FolderNode currNode = getFolder(volume.getPath());
if (null != currNode && null != currNode.getChildNodes()) {
list.addAll(currNode.getChildNodes());
}
volume.setFolder(list);
}
}
public List<VolumeDataEntity> getAllVolumes() throws Exception {
List<VolumeDataEntity> volumeList = CacheTreeData.getVolumeList();
return volumeList;
}
@Override
public VolumeEntity getOneVolume(String volumeName) throws Exception {
VolumeEntity volume = new VolumeEntity();
volume.setName(volumeName);
List<String> path = volumeInfo.getVolumeMountPoint(volumeName);
if (null != path && path.size() > 0) {
volume.setPath(path.get(0));
}
volume.setAllSize((double) volumeInfo.getVolumeAvailableSize(volumeName));
volume.setUsedSize((double) volumeInfo.getVolumeUseSize(volumeName));
// volume.setBrick(brick);
if (null != volume.getPath()) {
List<FolderNode> list = new ArrayList<FolderNode>();
if (null != path && path.size() > 0) {
FolderNode currNode = getFolder(path.get(0));
if (null != currNode && null != currNode.getChildNodes()) {
list.addAll(currNode.getChildNodes());
}
public VolumeDataEntity getOneVolume(String volumeName) throws Exception {
List<VolumeDataEntity> volumeList = CacheTreeData.getVolumeList();
VolumeDataEntity volume = new VolumeDataEntity();
for (VolumeDataEntity volumeEntity : volumeList) {
if (volumeName.equals(volumeEntity.getPath())) {
volume = volumeEntity;
}
volume.setFolder(list);
}
return volume;
}
@Override
public int moveData(String volumeName, String srcPath, String dstPath)
throws Exception {
int result = copydata.copyFolderFilesAnyway(srcPath, dstPath, "app");
return result;
}
//
// @Override
// public int moveData(String volumeName, String srcPath, String dstPath)
// throws Exception {
//
// int result = 0;
// result = copydata.copyFolder(srcPath, dstPath, "app");
// return result;
// }
@Override
public int deleteData(String volumeName, String srcPath) throws Exception {

@ -8,10 +8,11 @@ import java.util.regex.Pattern;
import javax.annotation.Resource;
import org.springframework.scheduling.annotation.Scheduled;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;
import com.platform.controller.CheckoutController;
import com.platform.dao.DataInfoDao;
import com.platform.dao.DataInfoMoveTmpDao;
import com.platform.dao.VolumeDao;
@ -20,17 +21,19 @@ import com.platform.entities.DataInfoEntityMoveTmp;
import com.platform.entities.FolderNode;
import com.platform.entities.VolumeInitEntity;
import com.platform.glusterfs.CheckoutMD5;
import com.platform.glusterfs.CopyData;
import com.platform.glusterfs.RemoveData;
import com.platform.http.gfs.RemoveData;
import com.platform.glusterfs.ShowData;
import com.platform.service.IMoveDataService;
import com.platform.utils.Bean2MapUtils;
import com.platform.utils.Constant;
import com.platform.utils.DateForm;
@Component
@Service(value = "moveDataService")
public class MoveDataServiceImpl implements IMoveDataService {
/**
*
*/
public final static Logger log = Logger.getLogger(CheckoutController.class);
@Resource(name = "dataInfoDao")
private DataInfoDao dataInfoDao;
@ -40,15 +43,10 @@ public class MoveDataServiceImpl implements IMoveDataService {
private RemoveData removeservice = new RemoveData();
/**
*
*/
CopyData copy = new CopyData();
/**
* MD5
*/
CheckoutMD5 check = new CheckoutMD5();
// CheckoutMD5 check = new CheckoutMD5();
@Resource(name = "dataInfoMoveTmpDao")
private DataInfoMoveTmpDao dataInfoMoveTmpDao;
@ -148,20 +146,28 @@ public class MoveDataServiceImpl implements IMoveDataService {
else {
volumePath = node.getPath();
}
String path = "";
String ip = "";
for ( VolumeInitEntity ve : listVolume) {
if (volumePath.contains(ve.getPath())) {
dataMove.setDstVolumePath(ve.getPath());
dataMove.setDstVolumeIp(ve.getIp());
break;
String tmpPath = ve.getPath();
if (volumePath.contains(tmpPath)) {
if (tmpPath.length() > path.length()) {
path = tmpPath;
ip = ve.getIp();
}
}
}
if (path.length() == 0) {
dataMove.setDstVolumePath("nopath");
dataMove.setDstVolumePath("noIP");
}else {
dataMove.setDstVolumePath(path);
dataMove.setDstVolumeIp(ip);
}
moveList.add(dataMove);
}
if (moveList.size() > 0) {
dataInfoMoveTmpDao.insertBatch(moveList);
// for (DataInfoEntityMoveTmp dataInfoEntityMoveTmp2 : moveList) {
// dataInfoMoveTmpDao.save(dataInfoEntityMoveTmp2);
// }
isSuccess = true;
}
}
@ -172,10 +178,17 @@ public class MoveDataServiceImpl implements IMoveDataService {
public List<DataInfoEntityMoveTmp> findAll() throws Exception {
List<DataInfoEntityMoveTmp> result = new ArrayList<DataInfoEntityMoveTmp>();
try {
result = dataInfoMoveTmpDao.findAll();
List<DataInfoEntityMoveTmp> tmp = dataInfoMoveTmpDao.findAll();
for (DataInfoEntityMoveTmp tmpentity : tmp) {
if (null != tmpentity.getSubmittedBatch() || null != tmpentity.getSystemName()) {
result.add(tmpentity);
}else {
this.delete(tmpentity);
}
}
} catch (Exception e) {
System.err.println(e);
log.error(e);
}
return result;
}
@ -192,13 +205,18 @@ public class MoveDataServiceImpl implements IMoveDataService {
}
}
//迁移失败
if ("3".equals(dataMove.getCompleteStatus())) {
removeservice.deleteFolder(dataMove.getDstPath());
}
int result = 0;
if (!"1".equals(dataMove.getCompleteStatus())) {
result = dataInfoMoveTmpDao.remove(dataMove.getId());
//是正则迁移时:
if ("1".equals(dataMove.getCompleteStatus())) {
if(1 != removeservice.abortcopyFolder(dataMove.getDataPath(), makeDstPath(dataMove.getDstPath()))){
removeservice.deleteFolder(dataMove.getDstPath());
}
}
result = dataInfoMoveTmpDao.remove(dataMove.getId());
return result;
}
@ -220,4 +238,19 @@ public class MoveDataServiceImpl implements IMoveDataService {
return result;
}
/** +/
* @param dstPath
* @return
*/
private String makeDstPath(String dstPath) {
// 末尾 含有 数字 + /
Pattern pattern2 = Pattern.compile("\\d+\\/$");
Matcher matcher2 = pattern2.matcher(dstPath);
//去掉 最后 的 数字 +/ 符合
if (matcher2.find()) {
String removeStr = matcher2.group();
dstPath = dstPath.replace(removeStr, "");
}
return dstPath;
}
}

@ -1,6 +1,7 @@
package com.platform.service.impl;
import java.sql.Connection;
import java.util.Date;
import java.util.List;
import javax.annotation.Resource;
@ -21,6 +22,7 @@ import com.platform.service.IOracleExtractService;
import com.platform.service.OracleExtractHelper;
import com.platform.utils.Configs;
import com.platform.utils.Constant;
import com.platform.utils.DateForm;
import com.platform.utils.FileOperateHelper;
@Service(value = "OracleExtract")
@ -84,6 +86,9 @@ public class OracleExtractServiceImpl implements IOracleExtractService {
for (String string : rList)
sb.append(string).append("\n");
Configs.CONSOLE_LOGGER.info(sb.toString());
//sql日志记录时间
FileOperateHelper.fileWrite(Configs.EXTRACT_LOG_LOCALTION
+ collectOracle.getName()+".log", "\r\n\r\n"+ DateForm.date2StringBysecond(new Date()) +"\r\n");
// client.updateOrAddReplicasLabelById(collectOracle.getName(), "isExtract", "1"); //更新oracle汇总状态0标示为未汇总1标示汇总中2标示汇总完成
oracleExtract.createDBLink(conn, collectOracle); //创建dblink
oracleExtract.createTableSpace(conn, collectOracle, oracleModel); //创建表空间
@ -162,6 +167,9 @@ public class OracleExtractServiceImpl implements IOracleExtractService {
for (String string : rList)
sb.append(string).append("\n");
Configs.CONSOLE_LOGGER.info(sb.toString());
//sql日志记录时间
FileOperateHelper.fileWrite(Configs.EXTRACT_LOG_LOCALTION
+ collectOracle.getName()+".log", "\r\n\r\n"+ DateForm.date2StringBysecond(new Date()) +"\r\n");
// client.updateOrAddReplicasLabelById(collectOracle.getName(), "isExtract", "1"); //更新oracle汇总状态0标示为未汇总1标示汇总中2标示汇总完成
oracleExtract.createStandardDBLink(conn, collectOracle); //创建dblink
oracleExtract.createTableSpace(conn, collectOracle, oracleModel); //创建表空间

@ -11,23 +11,21 @@ import javax.annotation.Resource;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Service;
import com.platform.controller.FilePackageController;
import com.platform.dao.VolumeDao;
import com.platform.entities.Brick;
import com.platform.entities.VolumeEntity;
import com.platform.entities.VolumeDataEntity;
import com.platform.entities.VolumeInitEntity;
import com.platform.glusterfs.SetVolume;
import com.platform.http.gfs.SetVolume;
import com.platform.service.IGfsService;
import com.platform.service.IVolumeService;
import com.platform.utils.Configs;
@Service(value = "volumeService")
public class VolumeServiceImpl implements IVolumeService {
public static Logger log = Configs.DAILY_ROLLING_LOGGER.getLogger(VolumeServiceImpl.class);
public final static Logger log = Logger.getLogger(VolumeServiceImpl.class);
/** gfs的api */
SetVolume volumeService = new SetVolume();
/** gfs的 web 服务的 api */
SetVolume setVolume = new SetVolume();
@Resource(name = "gfsService")
private IGfsService gfsService;
@ -37,16 +35,16 @@ public class VolumeServiceImpl implements IVolumeService {
@Override
public int save(VolumeEntity entity) throws Exception {
public int save(VolumeDataEntity entity) throws Exception {
int rest = 1;
//createVolume("lili_test1", 0, "distributed", bricksToCreate, "/home/lili_test1_point")
List<VolumeEntity> result = gfsService.getAllVolumes();
List<VolumeEntity> addVolumes = new ArrayList<VolumeEntity>();
VolumeEntity volumeTmp = null;
List<VolumeDataEntity> result = gfsService.getAllVolumes();
List<VolumeDataEntity> addVolumes = new ArrayList<VolumeDataEntity>();
VolumeDataEntity volumeTmp = null;
if (null != result) {
boolean isExits = false;
//.trim() 去掉空格
for (VolumeEntity volumeOnServer : result) {
for (VolumeDataEntity volumeOnServer : result) {
if(entity.getName().trim().equals(volumeOnServer.getName().trim())){
isExits = true;
//TODO 服务器上有该volume
@ -62,7 +60,7 @@ public class VolumeServiceImpl implements IVolumeService {
}
boolean isContinue = true;
// 对比volume信息--原数据没有该volume则新增volume:
for (VolumeEntity add : addVolumes) {
for (VolumeDataEntity add : addVolumes) {
List<String> bristr = new ArrayList<String>();
if (null == add.getName() || "".equals(add.getName())) {
continue;
@ -82,7 +80,8 @@ public class VolumeServiceImpl implements IVolumeService {
//创建volume
if (bristr.size() > 0) {
int createreslt = volumeService.createVolume(add.getName(), 0, "distributed", bristr, add.getPath());
//TODO 换成 web 请求
int createreslt = setVolume.createVolume(add.getName(), 0, "distributed", bristr, add.getPath());
if (createreslt != 1) {
rest = createreslt;
}
@ -116,7 +115,8 @@ public class VolumeServiceImpl implements IVolumeService {
newKeys.addAll(newBrickKeys);
// 新增brick s
if (newKeys.size() > 0) {
int createreslt = volumeService.addBrickVolume(entity.getName(), newKeys, 0, "distributed");
//TODO 换成 web 请求
int createreslt = setVolume.addBrickVolume(entity.getName(), newKeys, 0, "distributed");
if (createreslt != 1) {
rest = createreslt;
}
@ -132,7 +132,8 @@ public class VolumeServiceImpl implements IVolumeService {
deleteKeys.addAll(serverBrickKeys);
// 删除brick s
if (deleteKeys.size() > 0) {
int createreslt = volumeService.deleteBrickVolume(entity.getName(), deleteKeys, 0, "distributed");
//TODO 换成 web 请求
int createreslt = setVolume.deleteBrickVolume(entity.getName(), deleteKeys, 0, "distributed");
if (createreslt != 1) {
rest = createreslt;
}
@ -153,29 +154,37 @@ public class VolumeServiceImpl implements IVolumeService {
}
@Override
public int delete(VolumeEntity entity) throws Exception {
public int delete(VolumeDataEntity entity) throws Exception {
if (null == entity.getName() || "".equals(entity.getName())) {
return -1;
}
int rest = volumeService.deleteVolume(entity.getName());
//TODO 换成 web 请求
int rest = setVolume.deleteVolume(entity.getName());
volumeDao.remove(entity.getName());
return rest;
}
@Override
public int start(VolumeEntity entity) throws Exception {
public int start(VolumeDataEntity entity) throws Exception {
if (null == entity.getName() || "".equals(entity.getName())) {
return -1;
}
return volumeService.startVolume(entity.getName());
//TODO 换成 web 请求
return setVolume.startVolume(entity.getName());
}
@Override
public int stop(VolumeEntity entity) throws Exception {
public int stop(VolumeDataEntity entity) throws Exception {
if (null == entity.getName() || "".equals(entity.getName())) {
return -1;
}
return volumeService.stopVolume(entity.getName());
//TODO 换成 web 请求
return setVolume.stopVolume(entity.getName());
}
@Override
public String getAllvolume() throws Exception {
return setVolume.getAllvolume();
}
}

@ -1,7 +1,10 @@
package com.platform.service.thread;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@ -11,18 +14,20 @@ import org.apache.log4j.Logger;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import com.base.TaskOperateData;
import com.platform.dao.DataInfoDao;
import com.platform.dao.DataInfoMoveTmpDao;
import com.platform.entities.DataInfoEntity;
import com.platform.entities.DataInfoEntityMoveTmp;
import com.platform.glusterfs.CheckoutMD5;
import com.platform.glusterfs.CopyData;
import com.platform.http.gfs.CopyData;
import com.platform.glusterfs.ShowData;
import com.platform.utils.Bean2MapUtils;
import com.platform.utils.Constant;
import com.platform.utils.DateForm;
import com.platform.utils.FileOperateHelper;
/**
/** ---()
* @author chen
*
*/
@ -58,8 +63,127 @@ public class ThreadMoveData{
public ThreadMoveData() {
}
//5秒
@Scheduled(fixedDelay = 5000)
//迁移数据 -- 2016-11-30后 使用
@Scheduled(fixedDelay = 4000)
public void moveDataByWebGfs(){
List<DataInfoEntityMoveTmp> result = new ArrayList<DataInfoEntityMoveTmp>();
List<DataInfoEntityMoveTmp>[] subMove = new ArrayList[4];
for (int i = 0; i < 4; i++) {
subMove[i] = new ArrayList<DataInfoEntityMoveTmp>();
}
try {
result = dataInfoMoveTmpDao.findAll();
} catch (Exception e) {
log.error(e);
}
Map<String, TaskOperateData> taskMap = new HashMap<String, TaskOperateData>();
if (result.size() > 0) {
List<TaskOperateData> list = new ArrayList<TaskOperateData>();
try {
list = copy.operationTask();
} catch (Exception e) {
log.error("copy.operationTask()");
log.error(e);
}
for (TaskOperateData taskOperateData : list) {
taskMap.put(FileOperateHelper.addLastLinuxSeparator(taskOperateData.getSourcePath())
+ "-" + FileOperateHelper.addLastLinuxSeparator(taskOperateData.getDestPath()),
taskOperateData);
}
}
for ( DataInfoEntityMoveTmp moveE : result) {
switch (moveE.getCompleteStatus()) {
//待迁移
case "0":
subMove[0].add(moveE);
break;
//正在迁移
case "1":
subMove[1].add(moveE);
break;
//迁移完成的
case "2":
subMove[2].add(moveE);
break;
//迁移失败
case "3":
subMove[3].add(moveE);
break;
default:
break;
}
}
//迁移失败---不处理 status = -1表示迁移完成校验失败,-2:表示迁移失败 -3表示删除失败
//迁移完成的--不处理 status = 3表示校验成功
//正则迁移 status = 1表示正在迁移(如果 web gfs 迁移成功 则 增加一条记录)
if(subMove[1].size() > 0){
for (DataInfoEntityMoveTmp moveE : subMove[1]) {
TaskOperateData taskOne = taskMap.get(FileOperateHelper.addLastLinuxSeparator(moveE.getDataPath())
+"-"+FileOperateHelper.addLastLinuxSeparator(makeDstPath(moveE.getDstPath())));
if (null == taskOne) {
long nowTime = new Date().getTime();
long timelong = nowTime - DateForm.string2DateBysecond(moveE.getLastTime()).getTime();
if (timelong > 1000*60*20) {
try {
dataInfoMoveTmpDao.update(moveE);
} catch (Exception e) {
log.error(e);
}
}
continue;
}
moveE.setRate(taskOne.getProgress());
moveE.setLastTime(DateForm.date2StringBysecond(new Date()));
if (3 == taskOne.getStatus()) {
//成功
makeDataInfo(moveE);
}else if(taskOne.getStatus() < 0){
//失败
moveE.setCompleteStatus("3");
try {
dataInfoMoveTmpDao.update(moveE);
} catch (Exception e) {
log.error(e);
}
}
}
}
//待迁移 status = 0准备迁移则开始迁移
if(subMove[0].size() > 0){
//正则迁移的 数量
int curMoveNum = subMove[1].size();
for ( DataInfoEntityMoveTmp moveE : subMove[0]) {
if(curMoveNum <= Constant.moveFileMaxNum){
moveE.setLastTime(DateForm.date2StringBysecond(new Date()));
//请求迁移
curMoveNum++;
try {
if(1==copy.copyFolder(moveE.getDataPath(), makeDstPath(moveE.getDstPath()))){
moveE.setCompleteStatus("1");
}
else {
moveE.setCompleteStatus("3");
}
} catch (Exception e) {
log.error("copy.copyFolder()");
log.error(e);
}
try {
dataInfoMoveTmpDao.update(moveE);
} catch (Exception e) {
log.error(e);
}
}
}
}
}
//5秒 //2016-11-30后 不使用
// @Scheduled(fixedDelay = 5000)
public void doSomething() {
try {
@ -175,6 +299,12 @@ public class ThreadMoveData{
}
/** md5
* @param srcSizeTemp
* @param dstSize
* @param dataMove
* @throws Exception
*/
private void doMd5(long srcSizeTemp, long dstSize, DataInfoEntityMoveTmp dataMove) throws Exception {
int difSize = (int) (srcSizeTemp-dstSize);
@ -187,22 +317,35 @@ public class ThreadMoveData{
int resl = check.checkoutMD5Folder(dataMove.getDataPath(), dataMove.getDstPath());
// 校验成功--则增加数据库记录
if(resl == 1){
try{
// 判断 迁移数据的status是否改为 2
DataInfoEntityMoveTmp movetmp = dataInfoMoveTmpDao.findById(dataMove.getId());
if (null != movetmp && !"2".equals(movetmp.getCompleteStatus())) {
//校验成功--修改 数据库记录--
dataMove.setCompleteStatus("2");
dataMove.setLastTime(DateForm.date2StringBysecond(new Date()));
dataInfoMoveTmpDao.update(dataMove);
//TODO 新增 一条数据-到-dataInfo
DataInfoEntity data = (DataInfoEntity) Bean2MapUtils.convertMap(
DataInfoEntity.class, Bean2MapUtils.convertBean(dataMove));
data.setDataPath(dataMove.getDstPath());
data.setVolumeIp(dataMove.getDstVolumeIp());
data.setVolumePath(dataMove.getDstVolumePath());
data.setVolumeIp(dataMove.getVolumeIp());
data.setId(0);
dataInfoDao.save(data);
DataInfoEntityMoveTmp movetmp = dataInfoMoveTmpDao.findById(dataMove.getId());
if(null != movetmp){
if (!"2".equals(movetmp.getCompleteStatus())) {
//校验成功--修改 数据库记录--
dataMove.setCompleteStatus("2");
dataMove.setLastTime(DateForm.date2StringBysecond(new Date()));
dataInfoMoveTmpDao.update(dataMove);
//TODO 新增 一条数据-到-dataInfo
DataInfoEntity data = (DataInfoEntity) Bean2MapUtils.convertMap(
DataInfoEntity.class, Bean2MapUtils.convertBean(dataMove));
data.setDataPath(dataMove.getDstPath());
data.setVolumeIp(dataMove.getDstVolumeIp());
data.setVolumePath(dataMove.getDstVolumePath());
data.setVolumeIp(dataMove.getVolumeIp());
data.setPayResult(dataMove.getPayResult());
data.setExecResult(dataMove.getExecResult());
data.setId(0);
dataInfoDao.save(data);
}
else {
dataMove.setCompleteStatus("2");
dataMove.setLastTime(DateForm.date2StringBysecond(new Date()));
dataInfoMoveTmpDao.update(dataMove);
}
}
}catch(Exception e){
log.error(e);
}
}
else {
@ -210,8 +353,67 @@ public class ThreadMoveData{
dataMove.setLastTime(DateForm.date2StringBysecond(new Date()));
dataMove.setCompleteStatus("3");
}
}
private int makeDataInfo(DataInfoEntityMoveTmp dataMove){
try{
// 判断 迁移数据的status是否改为 2
DataInfoEntityMoveTmp movetmp = dataInfoMoveTmpDao.findById(dataMove.getId());
if(null != movetmp){
if (!"2".equals(movetmp.getCompleteStatus())) {
//校验成功--修改 数据库记录--
dataMove.setCompleteStatus("2");
dataMove.setLastTime(DateForm.date2StringBysecond(new Date()));
dataInfoMoveTmpDao.update(dataMove);
//TODO 新增 一条数据-到-dataInfo
DataInfoEntity data = (DataInfoEntity) Bean2MapUtils.convertMap(
DataInfoEntity.class, Bean2MapUtils.convertBean(dataMove));
data.setDataPath(dataMove.getDstPath());
if (null == dataMove.getDstVolumeIp()) {
data.setVolumeIp("localhost");
}else {
data.setVolumeIp(dataMove.getDstVolumeIp());
}
// volume路径没有传入
if (null == dataMove.getDstVolumePath()) {
data.setVolumePath(dataMove.getDstPath());
}else {
data.setVolumePath(dataMove.getDstVolumePath());
}
data.setPayResult(dataMove.getPayResult());
data.setExecResult(dataMove.getExecResult());
data.setId(0);
try {
dataInfoDao.save(data);
} catch (Exception e) {
log.error(e);
dataMove.setCompleteStatus("1");
dataInfoMoveTmpDao.update(dataMove);
}
}
}else {
dataInfoMoveTmpDao.update(dataMove);
}
}catch(Exception e){
log.error(e);
}
return 1;
}
/** +/
* @param dstPath
* @return
*/
private String makeDstPath(String dstPath) {
// 末尾 含有 数字 + /
Pattern pattern2 = Pattern.compile("\\d+\\/$");
Matcher matcher2 = pattern2.matcher(dstPath);
//去掉 最后 的 数字 +/ 符合
if (matcher2.find()) {
String removeStr = matcher2.group();
dstPath = dstPath.replace(removeStr, "");
}
return dstPath;
}
}

@ -25,7 +25,7 @@ public class Bean2MapUtils {
* @throws InvocationTargetException
* setter
*/
public static Object convertMap(Class type, Map map)
public static Object convertMap(Class<?> type, Map<String, Object> map)
throws IntrospectionException, IllegalAccessException,
InstantiationException, InvocationTargetException {
BeanInfo beanInfo = Introspector.getBeanInfo(type); // 获取类属性
@ -62,10 +62,10 @@ public class Bean2MapUtils {
* @throws IllegalAccessException JavaBean
* @throws InvocationTargetException setter
*/
public static Map convertBean(Object bean)
public static Map<String, Object> convertBean(Object bean)
throws IntrospectionException, IllegalAccessException, InvocationTargetException {
Class type = bean.getClass();
Map returnMap = new HashMap();
Class<?> type = bean.getClass();
Map<String, Object> returnMap = new HashMap<String, Object>();
BeanInfo beanInfo = Introspector.getBeanInfo(type);
PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();

@ -60,7 +60,7 @@ public class BeanCopy {
if (null != value)
field.set(dst, value);
} catch (Exception e) {
log.error(e.getStackTrace());
log.error(e);
}
}
}

@ -3,7 +3,7 @@ package com.platform.utils;
import java.util.List;
import com.platform.entities.FolderNode;
import com.platform.entities.VolumeEntity;
import com.platform.entities.VolumeDataEntity;
/** gfs volume
* @author chen
@ -19,7 +19,7 @@ public class CacheTreeData {
/**
* volume
*/
private static List<VolumeEntity> volumeList = null;
private static List<VolumeDataEntity> volumeList = null;
/**
* @return
@ -38,14 +38,14 @@ public class CacheTreeData {
/** volume
* @return the volumeList
*/
public static List<VolumeEntity> getVolumeList() {
public static List<VolumeDataEntity> getVolumeList() {
return volumeList;
}
/** volume
* @param volumeList the volumeList to set
*/
public synchronized static void setVolumeList(List<VolumeEntity> volumeList) {
public synchronized static void setVolumeList(List<VolumeDataEntity> volumeList) {
CacheTreeData.volumeList = volumeList;
}

@ -5,7 +5,7 @@ import java.util.Properties;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import com.platform.http.gfs.HttpClientConstant;
import com.platform.http.HttpClientConstant;
/** web
* @author chen

@ -6,9 +6,6 @@ import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Properties;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.log4j.Logger;
@ -193,19 +190,43 @@ public class FileOperateHelper {
return path;
}
public static String addLastLinuxSeparator(String path){
//去掉 File.separator
path = removeLastLinuxSeparator(path);
// 末尾 加上 /
path = path + "/";
return path;
}
public static String removeLastSeparator(String path){
// 递归去掉 所有 结尾 /
if (path.length() < 1) {
return path;
}
String sep = "\\"+File.separator;
Pattern pattern2 = Pattern.compile(sep+"$");
Matcher matcher2 = pattern2.matcher(path);
if (matcher2.find()) {
// String sep = "\\"+File.separator;
// Pattern pattern2 = Pattern.compile(sep+"$");
// Matcher matcher2 = pattern2.matcher(path);
// if (matcher2.find()) {
// path = path.substring(0, path.length()-1);
// path = removeLastSeparator(path);
// }
String sep = File.separator;
if (path.endsWith(sep)) {
path = path.substring(0, path.length()-1);
path = removeLastLinuxSeparator(path);
}
return path;
}
public static String removeLastLinuxSeparator(String path){
// 递归去掉 所有 结尾 /
if (path.length() < 1) {
return path;
}
String sep = "/";
if (path.endsWith(sep)) {
path = path.substring(0, path.length()-1);
path = removeLastSeparator(path);
path = removeLastLinuxSeparator(path);
}
return path;
}

@ -0,0 +1,30 @@
package com.platform.utils;
import java.util.ArrayList;
import java.util.List;
import com.platform.entities.FolderNode;
import com.platform.entities.VolumeDataEntity;
import com.platform.http.gfs.SetVolume;
public class GetVolumeInfo {
/** gfs volume\folder
*
*/
public void getVolumeMsg() throws Exception{
List<FolderNode> folderlist = new ArrayList<FolderNode>();
List<VolumeDataEntity> volumeList = new ArrayList<VolumeDataEntity>();
SetVolume volumeClient = new SetVolume();
volumeList = volumeClient.getAllvolumeEntity();
for (VolumeDataEntity volumeEntity : volumeList) {
if (null != volumeEntity.getFolder()) {
folderlist.addAll(volumeEntity.getFolder());
}
}
// 更新folder 目录
CacheTreeData.setVolumeList(volumeList);
CacheTreeData.setFolders(folderlist);
}
}

@ -1,43 +1,27 @@
package com.platform.utils;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import net.sf.json.JSONArray;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Service;
import com.base.Custom4exception;
import com.base.CustomException;
import com.platform.controller.FilePackageController;
import com.platform.entities.Brick;
import com.platform.entities.FolderNode;
import com.platform.entities.VolumeEntity;
import com.platform.glusterfs.ClusterInfo;
import com.platform.glusterfs.GetTreeData;
import com.platform.glusterfs.VolumeInfo;
import com.platform.http.gfs.HttpUtils;
/** volume
* @author chen
*
*/
public class ThreadVolume extends Thread {
@SuppressWarnings("static-access")
public static Logger log = Configs.DAILY_ROLLING_LOGGER.getLogger(ThreadVolume.class);
public final static Logger log = Logger.getLogger(ThreadVolume.class);
/**
* volume
*/
private GetVolumeInfo vo = new GetVolumeInfo();
/**
* --
*/
private static String pointPath = "/home";
/** Volume信息查询 */
private VolumeInfo volumeInfo = new VolumeInfo();
private ClusterInfo cluster = new ClusterInfo();
/** gfs目录树形展示 */
private GetTreeData gfsTree = new GetTreeData();
public ThreadVolume() {
setName("ThreadVolume");
}
@ -57,11 +41,10 @@ public class ThreadVolume extends Thread {
super.run();
while (true) {
try {
getVolumeMsg();
vo.getVolumeMsg();
Thread.sleep(Constant.get_volume_sleep_time);
} catch (InterruptedException e) {
new CustomException(
Custom4exception.threadVolume_Thread_Except, e);
} catch (Exception e) {
log.error(Custom4exception.threadVolume_Thread_Except, e);
}
}
@ -76,137 +59,4 @@ public class ThreadVolume extends Thread {
ThreadVolume.pointPath = pointPath;
}
public void getVolumeMsg() {
List<FolderNode> folderlist = new ArrayList<FolderNode>();
List<VolumeEntity> volumeList = new ArrayList<VolumeEntity>();
HttpUtils ht = new HttpUtils();
String rest = ht.sendPost("gfs/getAllvolume", null);
// JSONArray jsondata = JSONArray.fromObject(volumeList);
if (null == rest || "".equals(rest)) {
log.error(" --- gluster is disconnect ! \n");
return;
}
JSONArray json = JSONArray.fromObject(rest);
@SuppressWarnings("unchecked")
List<VolumeEntity> volumes = (List<VolumeEntity>)JSONArray.toCollection(json, VolumeEntity.class);
for (VolumeEntity volumeEntity : volumes) {
// if (null != volumeEntity.getFolder()) {
// JSONArray foldJson = JSONArray.fromObject(volumeEntity.getFolder());
// List<FolderNode> folders = (List<FolderNode>)JSONArray.toCollection(foldJson, FolderNode.class);
// folderlist.addAll(folders);
volumeEntity.setBrick(setBricks(volumeEntity.getBrick()));
volumeEntity.setFolder(setChildFolders(volumeEntity.getFolder()));
// }
}
volumeList = volumes;
// // brick状态 map集合
// Map<String, String> brickStatusMap = cluster.showClusterInfo();
//
// // 查询 volume name
// List<String> volumeNameList = volumeInfo.showAllVolumeName();
// if (null != volumeNameList) {
// for (String volumeName : volumeNameList) {
// try {
// VolumeEntity volume = new VolumeEntity();
// volume.setName(volumeName);
// List<String> path = volumeInfo
// .getVolumeMountPoint(volumeName);
// // 默认加载第一个路径
// if (null != path) {
// for (String one : path) {
// if (!one.contains("df")) {
// volume.setPath(one);
// }
// }
// }
// if (null == volume.getPath()) {
// volume.setPath("");
// }
// volume.setAllSize((double) (volumeInfo
// .getVolumeAvailableSize(volumeName)
// + volumeInfo.getVolumeUseSize(volumeName)));
// // 状态Started,Stopped,Created
// String status = volumeInfo.getVolumeStatus(volumeName);
// if ("Started".equals(status)) {
// volume.setStatus(true);
// } else {
// volume.setStatus(false);
// }
// volume.setUsedSize((double) volumeInfo.getVolumeUseSize(volumeName));
// volume.setType(volumeInfo.getVolumeType(volumeName));
// // TODO 查询brick--
// // 返回 ip:path
// List<String> brickStrs = volumeInfo
// .getVolumeBricks(volumeName);
// // brick已用大小
// Map<String, Double> usedSize = volumeInfo
// .getVolumebricksDataSize(volumeName);
// Map<String, Double> availableSize = volumeInfo
// .getVolumebricksAvailableSize(volumeName);
//
// List<Brick> brickList = new ArrayList<Brick>();
// for (String brickIpPath : brickStrs) {
// Brick b = new Brick();
// String ipAndpath[] = brickIpPath.split(":");
// String brickip = ipAndpath[0];
// String brickpath = ipAndpath[1];
// // iP , path ,
// b.setIp(brickip);
// if (brickStatusMap == null
// || brickStatusMap.size() == 0) {
// b.setStatus(false);
// } else if (brickStatusMap.containsKey(brickip)) {
// b.setStatus(true);
// } else {
// b.setStatus(false);
// }
// b.setPath(brickpath);
// b.setAvailableSize(availableSize.get(brickIpPath));
// b.setUsedSize(usedSize.get(brickIpPath));
// brickList.add(b);
// }
// volume.setBrick(brickList);
//
// // 默认加载第一个路径
// if (null != path && path.size() > 0) {
// // 装入 folder
// // 查询 每个 volume 下的 folder
// FolderNode foldertmp = gfsTree.getDatas(path.get(0));
// folderlist.add(foldertmp);
// }
// volumeList.add(volume);
// } catch (Exception e) {
// new CustomException(
// Custom4exception.threadVolume_class_Except, e);
// }
// }
// }
// 更新folder 目录
CacheTreeData.setFolders(folderlist);
CacheTreeData.setVolumeList(volumeList);
}
private List<FolderNode> setChildFolders(List<FolderNode> folds) {
List<FolderNode> folders = null;
if (null != folds) {
JSONArray foldJson = JSONArray.fromObject(folds);
folders = (List<FolderNode>)JSONArray.toCollection(foldJson, FolderNode.class);
for (FolderNode folderNode : folders) {
List<FolderNode> childFolds = folderNode.getChildNodes();
folderNode.setChildNodes(setChildFolders(childFolds));
}
}
return folders;
}
private List<Brick> setBricks(List<Brick> bricks) {
List<Brick> bs = null;
if (null != bricks) {
JSONArray bsJson = JSONArray.fromObject(bricks);
bs = (List<Brick>)JSONArray.toCollection(bsJson, Brick.class);
}
return bs;
}
}

@ -1,9 +1,17 @@
package com.platform.utils;
import org.apache.log4j.Logger;
import com.base.Custom4exception;
/** volume
* @author chen
*
*/
public class ThreadVolumeImm extends Thread{
public final static Logger log = Logger.getLogger(ThreadVolume.class);
public ThreadVolumeImm() {
// TODO Auto-generated constructor stub
}
public ThreadVolumeImm(String name) {
@ -12,7 +20,11 @@ public class ThreadVolumeImm extends Thread{
@Override
public void run() {
new ThreadVolume().getVolumeMsg();
try {
new GetVolumeInfo().getVolumeMsg();
} catch (Exception e) {
log.error(Custom4exception.threadVolume_Thread_Except, e);
}
}
}

@ -2,8 +2,6 @@ package com.platform.utils;
import java.util.List;
import net.sf.json.JSONArray;
import com.platform.entities.FolderNode;
public class getTreeDataByPath {

Loading…
Cancel
Save