Merge branch 'web_backend_develope' of https://git.trustie.net/fhx569287825/aggregation-platform into develope
commit
591512730f
@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
|
||||
"http://ibatis.apache.org/dtd/ibatis-3-mapper.dtd">
|
||||
|
||||
<mapper namespace="com.platform.dao.VolumeDao">
|
||||
<resultMap id="getEntityByText" type="com.platform.entities.VolumeInitEntity">
|
||||
<id property="id" column="id" javaType="int" jdbcType="INTEGER" />
|
||||
<result property="name" column="name" javaType="string"
|
||||
jdbcType="VARCHAR" />
|
||||
<result property="ip" column="ip" javaType="string"
|
||||
jdbcType="VARCHAR" />
|
||||
<result property="path" column="path" javaType="string"
|
||||
jdbcType="VARCHAR" />
|
||||
<result property="mark" column="mark" javaType="string"
|
||||
jdbcType="VARCHAR" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 获取数据全部记录信息 -->
|
||||
<select id="findAll" resultType="com.platform.entities.VolumeInitEntity">
|
||||
SELECT
|
||||
id,name,ip,path,mark
|
||||
FROM
|
||||
volume_info
|
||||
ORDER BY id
|
||||
</select>
|
||||
|
||||
<update id="update" parameterType="com.platform.entities.VolumeInitEntity">
|
||||
UPDATE
|
||||
volume_info
|
||||
<set >
|
||||
<trim suffixOverrides=",">
|
||||
<if test="name != null and name != ''">
|
||||
name= #{name},
|
||||
</if>
|
||||
<if test="ip != null and ip != ''">
|
||||
ip= #{ip},
|
||||
</if>
|
||||
<if test="path != null and path != ''">
|
||||
path= #{path},
|
||||
</if>
|
||||
<if test="mark != null and mark != ''">
|
||||
mark= #{mark},
|
||||
</if>
|
||||
</trim>
|
||||
</set>
|
||||
<where>
|
||||
id = #{id}
|
||||
</where>
|
||||
</update>
|
||||
|
||||
<insert id="save" parameterType="com.platform.entities.VolumeInitEntity">
|
||||
INSERT INTO
|
||||
volume_info(
|
||||
<trim suffixOverrides=",">
|
||||
<if test="name != null and name != ''">
|
||||
name,
|
||||
</if>
|
||||
<if test="ip != null and ip != ''">
|
||||
ip,
|
||||
</if>
|
||||
<if test="path != null and path != ''">
|
||||
path,
|
||||
</if>
|
||||
<if test="mark != null and mark != ''">
|
||||
mark,
|
||||
</if>
|
||||
</trim>
|
||||
)
|
||||
VALUES(
|
||||
<trim suffixOverrides=",">
|
||||
<if test="name != null and name != ''">
|
||||
#{name},
|
||||
</if>
|
||||
<if test="ip != null and ip != ''">
|
||||
#{ip},
|
||||
</if>
|
||||
<if test="path != null and path != ''">
|
||||
#{path},
|
||||
</if>
|
||||
<if test="mark != null and mark != ''">
|
||||
#{mark},
|
||||
</if>
|
||||
</trim>
|
||||
)
|
||||
</insert>
|
||||
|
||||
<delete id="remove" parameterType="java.lang.String">
|
||||
DELETE FROM
|
||||
volume_info
|
||||
WHERE
|
||||
name = #{name}
|
||||
</delete>
|
||||
|
||||
</mapper>
|
@ -0,0 +1,53 @@
|
||||
package com.platform.controller;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
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.entities.VolumeForm;
|
||||
import com.platform.entities.VolumeInitEntity;
|
||||
import com.platform.service.IVolumeService;
|
||||
import com.platform.utils.Configs;
|
||||
import com.platform.utils.ThreadVolume;
|
||||
import com.platform.utils.ThreadVolumeImm;
|
||||
|
||||
@Controller
|
||||
public class VolumeController extends BaseController{
|
||||
|
||||
public static Logger log = Configs.DAILY_ROLLING_LOGGER;
|
||||
|
||||
@Resource(name = "volumeService")
|
||||
private IVolumeService volumeService;
|
||||
|
||||
|
||||
@RequestMapping(value = "/volume/update", method = RequestMethod.POST)
|
||||
@ResponseBody
|
||||
public void volumeUpdate(HttpServletRequest res, HttpServletResponse req,
|
||||
@RequestBody VolumeEntity form) throws Exception {
|
||||
Configs.CONSOLE_LOGGER.error("/oracle/update");
|
||||
volumeService.save(form);
|
||||
req.setStatus(200);
|
||||
new ThreadVolumeImm("ThreadVolumeImm-in-VolumeController-update").start();
|
||||
}
|
||||
|
||||
@RequestMapping(value = "/volume/delete", method = RequestMethod.POST)
|
||||
@ResponseBody
|
||||
public void volumeDelete(HttpServletRequest res, HttpServletResponse req,
|
||||
@RequestBody VolumeEntity entity) throws Exception {
|
||||
Configs.CONSOLE_LOGGER.error("/oracle/delete");
|
||||
volumeService.delete(entity);
|
||||
req.setStatus(200);
|
||||
new ThreadVolumeImm("ThreadVolumeImm-in-VolumeController-delete").start();
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package com.platform.entities;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class VolumeForm {
|
||||
|
||||
List<VolumeEntity> volumes;
|
||||
|
||||
/**
|
||||
* @return the volumes
|
||||
*/
|
||||
public List<VolumeEntity> getVolumes() {
|
||||
return volumes;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param volumes the volumes to set
|
||||
*/
|
||||
public void setVolumes(List<VolumeEntity> volumes) {
|
||||
this.volumes = volumes;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,104 @@
|
||||
package com.platform.entities;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class VolumeInitEntity {
|
||||
|
||||
private int id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String ip;
|
||||
/** 挂载点 */
|
||||
private String path;
|
||||
|
||||
private String mark;
|
||||
|
||||
private List<String> bricks;
|
||||
|
||||
|
||||
/**
|
||||
* @return the id
|
||||
*/
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param id the id to set
|
||||
*/
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the name
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param name the name to set
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the ip
|
||||
*/
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param ip the ip to set
|
||||
*/
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the path
|
||||
*/
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param path the path to set
|
||||
*/
|
||||
public void setPath(String path) {
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the mark
|
||||
*/
|
||||
public String getMark() {
|
||||
return mark;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mark the mark to set
|
||||
*/
|
||||
public void setMark(String mark) {
|
||||
this.mark = mark;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the bricks
|
||||
*/
|
||||
public List<String> getBricks() {
|
||||
return bricks;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param bricks the bricks to set
|
||||
*/
|
||||
public void setBricks(List<String> bricks) {
|
||||
this.bricks = bricks;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package com.platform.service;
|
||||
|
||||
import com.platform.entities.VolumeEntity;
|
||||
import com.platform.entities.VolumeInitEntity;
|
||||
|
||||
public interface IVolumeService {
|
||||
|
||||
public int save(VolumeEntity entity) throws Exception;
|
||||
|
||||
public int delete(VolumeEntity entity) throws Exception;
|
||||
|
||||
public int start(VolumeEntity entity) throws Exception;
|
||||
|
||||
public int stop(VolumeEntity entity) throws Exception;
|
||||
|
||||
}
|
@ -1,49 +1,50 @@
|
||||
|
||||
package com.platform.utils;
|
||||
|
||||
|
||||
public class Constant {
|
||||
public static String rootUser = "root";
|
||||
public static String rootPasswd = "root";
|
||||
public static String hostIp = "192.168.0.110";
|
||||
// public static String hostIp = "192.168.1.105";
|
||||
public static int port = 22;
|
||||
public static String glusterPeerStatus = "gluster peer status";
|
||||
public static String glusterVolumeInfo = "gluster volume info ";
|
||||
public static String df = "df -k ";
|
||||
public static String peerincluster_connected = "PeerinCluster(Connected)";
|
||||
public static String peerincluster_disconnected = "PeerinCluster(Disconnected)";
|
||||
public static String peerNotinCluster = "PeerNotinCluster";
|
||||
public static String distributed = "distributed";
|
||||
public static String replica = "replica";
|
||||
public static String stripe = "stripe";
|
||||
public static String noVolume = "No volumes present";
|
||||
public static String success = "success";
|
||||
public static String failed = "failed";
|
||||
public static String noSuchFile = "No such file or directory";
|
||||
public static GanymedSSH ganymedSSH = new GanymedSSH(hostIp, rootUser, rootPasswd, port);
|
||||
public static String fileGetTreeData = "WebContent\\WEB-INF\\config\\getTreedata.sh";
|
||||
public static String AutoMountfile="/gfsAutoMount/AutoRun.sh";
|
||||
public static String MountRecord="/gfsAutoMount/mountPoint.record";
|
||||
public static String strGetTreeData = "function ergodic(){\n "
|
||||
+ "for file in \\`ls \\$1\\`\n do\n if [ \"\\$file\" != \"app\" -a -d \\$1\\\"/\\\"\\$file ]\n "
|
||||
+ "then\n ergodic \\$1\"/\"\\$file\n else\n local path=\\$1\"/\"\\$file\n "
|
||||
+ "echo \\$path \n fi\n done\n}\n\nIFS=\\$\\'\\n\\' "
|
||||
+ "#这个必须要,否则会在文件名中有空格时出错\nINIT_PATH=\".\";\nergodic \\$1\n";
|
||||
|
||||
/**
|
||||
* volume 获取的线程休眠时间
|
||||
*/
|
||||
public final static int moveFileMaxNum = 1;
|
||||
|
||||
/**
|
||||
* volume 获取的线程休眠时间
|
||||
*/
|
||||
public final static int get_volume_sleep_time = 600000;
|
||||
|
||||
/**
|
||||
* volume 获取的线程休眠时间
|
||||
*/
|
||||
public final static int update_dataInfo_sleep_time = 30000;
|
||||
|
||||
}
|
||||
|
||||
package com.platform.utils;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
public class Constant {
|
||||
public static String rootUser = "root";
|
||||
public static String rootPasswd = "root";
|
||||
// public static String hostIp = "192.168.191.23";
|
||||
public static String hostIp = "";
|
||||
public static int port = 22;
|
||||
public static String glusterPeerStatus = "gluster peer status";
|
||||
public static String glusterVolumeInfo = "gluster volume info ";
|
||||
public static String df = "df -k ";
|
||||
public static String peerincluster_connected = "PeerinCluster(Connected)";
|
||||
public static String peerincluster_disconnected = "PeerinCluster(Disconnected)";
|
||||
public static String peerNotinCluster = "PeerNotinCluster";
|
||||
public static String distributed = "distributed";
|
||||
public static String replica = "replica";
|
||||
public static String stripe = "stripe";
|
||||
public static String noVolume = "No volumes present";
|
||||
public static String success = "success";
|
||||
public static String failed = "failed";
|
||||
public static String noSuchFile = "No such file or directory";
|
||||
public static GanymedSSH ganymedSSH = null;
|
||||
public static String fileGetTreeData = "WebContent\\WEB-INF\\config\\getTreedata.sh";
|
||||
public static String AutoMountfile="/gfsAutoMount/AutoRun.sh";
|
||||
public static String MountRecord="/gfsAutoMount/mountPoint.record";
|
||||
public static String strGetTreeData = "function ergodic(){\n "
|
||||
+ "for file in \\`ls \\$1\\`\n do\n if [ \"\\$file\" != \"app\" -a -d \\$1\\\"/\\\"\\$file ]\n "
|
||||
+ "then\n ergodic \\$1\"/\"\\$file\n else\n local path=\\$1\"/\"\\$file\n "
|
||||
+ "echo \\$path \n fi\n done\n}\n\nIFS=\\$\\'\\n\\' "
|
||||
+ "#这个必须要,否则会在文件名中有空格时出错\nINIT_PATH=\".\";\nergodic \\$1\n";
|
||||
|
||||
/**
|
||||
* volume 获取的线程休眠时间
|
||||
*/
|
||||
public final static int moveFileMaxNum = 1;
|
||||
|
||||
/**
|
||||
* volume 获取的线程休眠时间
|
||||
*/
|
||||
public final static int get_volume_sleep_time = 10000;
|
||||
|
||||
/**
|
||||
* volume 获取的线程休眠时间
|
||||
*/
|
||||
public final static int update_dataInfo_sleep_time = 1500;
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.platform.utils;
|
||||
|
||||
public class ThreadVolumeImm extends Thread{
|
||||
|
||||
public ThreadVolumeImm() {
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
public ThreadVolumeImm(String name) {
|
||||
setName(name);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
new ThreadVolume().getVolumeMsg();
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue