Merge branch 'web_backend_develope' of https://git.trustie.net/fhx569287825/aggregation-platform into web_backend_develope

web_backend_develope
lily 9 years ago
commit ad4620c43e

@ -11,6 +11,7 @@
<typeAlias alias="DataInfoEntityMoveTmp" type="com.platform.entities.DataInfoEntityMoveTmp"/>
<typeAlias alias="SystemEntity" type="com.platform.entities.SystemEntity"/>
<typeAlias alias="RegionalismEntity" type="com.platform.entities.RegionalismEntity"/>
<typeAlias alias="oracleForm" type="com.platform.entities.oracleForm"/>
</typeAliases>
<mappers>
<mapper resource="com/dao/mapper/data-details-mapper.xml" />

@ -60,7 +60,7 @@
</listener>
<!-- 防止Spring内存溢出监听器 -->
<!-- <listener>
<listener>
<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
</listener> -->
</listener>
</web-app>

@ -30,7 +30,7 @@ import com.platform.utils.Configs;
public class BaseController {
/** log4j */
public static Logger log = Logger.getRootLogger();
public static Logger log = Configs.DAILY_ROLLING_LOGGER;
/**
* <> @ExceptionHandler----

@ -94,7 +94,7 @@ public class CustomException extends Exception {
sbuf.append("\r\n");
// 是否 写入 文件
log.debug(sbuf.toString());
log.error(sbuf.toString());
}
/**

@ -76,7 +76,7 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
</if>
<if test="array !=null and array.length > 0">
<foreach collection="array" item="item" index="index">
AND CONCAT(regionalism_code,system_code,city_name,district_name,system_name) LIKE CONCAT('%',CONCAT(#{item},'%'))
AND CONCAT(regionalism_code,system_code,data_version,city_name,district_name,system_name) LIKE CONCAT('%',CONCAT(#{item},'%'))
</foreach>
</if>
</sql>

@ -12,6 +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.entities.VolumeForm;
import com.platform.entities.VolumeInitEntity;
import com.platform.service.IVolumeService;
import com.platform.utils.Configs;
@ -25,44 +27,23 @@ public class VolumeController extends BaseController{
private IVolumeService volumeService;
@RequestMapping(value = "/volume/insert", method = RequestMethod.POST)
@RequestMapping(value = "/volume/update", method = RequestMethod.POST)
@ResponseBody
public void volumeInsert(HttpServletRequest res, HttpServletResponse req,
@RequestBody VolumeInitEntity entity) throws Exception {
public void volumeUpdate(HttpServletRequest res, HttpServletResponse req,
@RequestBody VolumeEntity form) throws Exception {
Configs.CONSOLE_LOGGER.error("/oracle/{name}/extract");
volumeService.save(entity);
volumeService.save(form);
req.setStatus(200);
}
@RequestMapping(value = "/volume/{name}/delete", method = RequestMethod.POST)
@RequestMapping(value = "/volume/delete", method = RequestMethod.POST)
@ResponseBody
public void volumeDelete(HttpServletRequest res, HttpServletResponse req,
@RequestBody VolumeInitEntity entity) throws Exception {
@RequestBody VolumeEntity entity) throws Exception {
Configs.CONSOLE_LOGGER.error("/oracle/{name}/extract");
volumeService.delete(entity);
req.setStatus(200);
}
@RequestMapping(value = "/volume/{name}/start", method = RequestMethod.POST)
@ResponseBody
public void volumeStart(HttpServletRequest res, HttpServletResponse req,
@RequestBody VolumeInitEntity entity) throws Exception {
Configs.CONSOLE_LOGGER.error("/oracle/{name}/extract");
res.setCharacterEncoding("UTF-8");
volumeService.start(entity);
req.setStatus(200);
}
@RequestMapping(value = "/volume/{name}/stop", method = RequestMethod.POST)
@ResponseBody
public void volumeStop(HttpServletRequest res, HttpServletResponse req,
@RequestBody VolumeInitEntity entity) throws Exception {
Configs.CONSOLE_LOGGER.error("/oracle/{name}/extract");
res.setCharacterEncoding("UTF-8");
volumeService.stop(entity);
req.setStatus(200);
}
}

@ -159,4 +159,5 @@ public class VolumeEntity {
this.brick = brick;
}
}

@ -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;
}
}

@ -9,14 +9,13 @@ public class VolumeInitEntity {
private String name;
private String ip;
/** 挂载点 */
private String path;
private String mark;
private List<String> bricks;
private String mountPoint;
/**
* @return the id
@ -102,19 +101,4 @@ public class VolumeInitEntity {
this.bricks = bricks;
}
/**
* @return the mountPoint
*/
public String getMountPoint() {
return mountPoint;
}
/**
* @param mountPoint the mountPoint to set
*/
public void setMountPoint(String mountPoint) {
this.mountPoint = mountPoint;
}
}

@ -35,7 +35,7 @@ public class ClusterInfo {
* @see [##]
*/
public Map<String, String> showClusterInfo() {
log.info("get cluster info");
// log.info("get cluster info");
Map<String, String> peerIps = new HashMap<String, String>();
List<String> reStrings = Constant.ganymedSSH.execCmdWaitAcquiescent(Constant.glusterPeerStatus);

@ -23,7 +23,7 @@ public class SizeInfo {
* @return
*/
public long showAllSize() {
log.info("get AllSize ");
// log.info("get AllSize ");
List<String> volumeNames = volumeInfo.showAllVolumeName();
if (volumeNames == null) {
log.error("1201 showAllVolumeName error");

@ -1,15 +1,16 @@
package com.platform.service;
import com.platform.entities.VolumeEntity;
import com.platform.entities.VolumeInitEntity;
public interface IVolumeService {
public int save(VolumeInitEntity entity) throws Exception;
public int save(VolumeEntity entity) throws Exception;
public int delete(VolumeInitEntity entity) throws Exception;
public int delete(VolumeEntity entity) throws Exception;
public int start(VolumeInitEntity entity) throws Exception;
public int start(VolumeEntity entity) throws Exception;
public int stop(VolumeInitEntity entity) throws Exception;
public int stop(VolumeEntity entity) throws Exception;
}

@ -35,7 +35,7 @@ public class OracleExtractHelper {
.fileWrite(filePath, sql+ "\r\n"+"OK \r\n");
} catch (Exception e) {
FileOperateHelper
.fileWrite(filePath, sql+ "\r\n"+ e.getMessage() + " \r\n");
.fileWrite(filePath, sql+ "\r\n"+ e.getMessage() + "\r\n连接异常 \r\n");
new CustomException(Custom4exception.threadVolume_Oracle_Except, e, rSet);
}
return flag;

@ -1,12 +1,21 @@
package com.platform.service.impl;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import com.platform.dao.VolumeDao;
import com.platform.entities.Brick;
import com.platform.entities.VolumeEntity;
import com.platform.entities.VolumeInitEntity;
import com.platform.glusterfs.SetVolume;
import com.platform.service.IGfsService;
import com.platform.service.IVolumeService;
@Service(value = "volumeService")
@ -15,23 +24,98 @@ public class VolumeServiceImpl implements IVolumeService {
/** gfs的api */
SetVolume volumeService = new SetVolume();
@Resource(name = "gfsService")
private IGfsService gfsService;
@Resource(name = "volumeDao")
private VolumeDao volumeDao;
@Override
public int save(VolumeInitEntity entity) throws Exception {
public int save(VolumeEntity entity) throws Exception {
//createVolume("lili_test1", 0, "distributed", bricksToCreate, "/home/lili_test1_point")
if (null == entity.getBricks()) {
return -1;
List<VolumeEntity> result = gfsService.getAllVolumes();
List<VolumeEntity> addVolumes = new ArrayList<VolumeEntity>();
VolumeEntity volumeTmp = null;
if (null != result) {
boolean isExits = false;
//.trim() 去掉空格
for (VolumeEntity volumeOnServer : result) {
if(entity.getName().trim().equals(volumeOnServer.getName().trim())){
isExits = true;
//TODO 服务器上有该volume
volumeTmp = volumeOnServer;
break;
}
}
//如果服务器上没有该volume
if (!isExits) {
addVolumes.add(entity);
}
}
boolean isContinue = true;
//TODO 对比volume信息--原数据没有该volume则新增volume:
for (VolumeEntity add : addVolumes) {
//创建volume
volumeService.createVolume(add.getName(), 0, "distributed", add.getBrick(), add.getPath());
//记录volume信息
VolumeInitEntity volInSql = new VolumeInitEntity();
volInSql.setName(add.getName());
volInSql.setPath(add.getPath());
volumeDao.save(volInSql);
isContinue = false;
}
// 修改 brick
if (isContinue && null != volumeTmp) {
List<Brick> newBricks = entity.getBrick();
List<Brick> serverBricks = volumeTmp.getBrick();
Map<String, Brick> newMap = new HashMap<String, Brick>();
Map<String, Brick> serverMap = new HashMap<String, Brick>();
for (Brick brick : newBricks) {
//IP + path 才 确认唯一的 brick
newMap.put(brick.getIp() + ":" + brick.getPath(), brick);
}
for (Brick brick : serverBricks) {
serverMap.put(brick.getIp() + ":" + brick.getPath(), brick);
}
// ----对比volume信息--原数据有该volume则对比brick信息确认那几个brick是新增的那几个brick是待删除的----start
Set<String> newBrickKeys = newMap.keySet();
Set<String> serverBrickKeys = serverMap.keySet();
//新增的Brick的 Keys
newBrickKeys.removeAll(serverBrickKeys);
List<String> newKeys = new ArrayList<String>();
newKeys.addAll(newBrickKeys);
// 新增brick s
if (newKeys.size() > 0) {
volumeService.addBrickVolume(entity.getName(), newKeys, 0, "distributed");
}
//待删除的Brick的 Keys
newBrickKeys = newMap.keySet();
serverBrickKeys.removeAll(newBrickKeys);
List<String> deleteKeys = new ArrayList<String>();
deleteKeys.addAll(serverBrickKeys);
// 删除brick s
if (deleteKeys.size() > 0) {
volumeService.deleteBrickVolume(entity.getName(), deleteKeys, 0, "distributed");
}
// ---对比volume信息--原数据有该volume则对比brick信息确认那几个brick是新增的那几个brick是待删除的----- end
//TODO 查看状态 状态Started,Stopped,Created
if (!volumeTmp.getStatus().equals(entity.getStatus())) {
if ("Started".equals(entity.getStatus())) {
this.start(entity);
}
else if ("Stopped".equals(entity.getStatus())) {
this.stop(entity);
}
}
}
volumeService.createVolume(entity.getName(), 0, "distributed", entity.getBricks(), entity.getMountPoint());
volumeDao.save(entity);
return 0;
}
@Override
public int delete(VolumeInitEntity entity) throws Exception {
public int delete(VolumeEntity entity) throws Exception {
if (null == entity.getName() || "".equals(entity.getName())) {
return -1;
}
@ -41,7 +125,7 @@ public class VolumeServiceImpl implements IVolumeService {
}
@Override
public int start(VolumeInitEntity entity) throws Exception {
public int start(VolumeEntity entity) throws Exception {
if (null == entity.getName() || "".equals(entity.getName())) {
return -1;
}
@ -49,7 +133,7 @@ public class VolumeServiceImpl implements IVolumeService {
}
@Override
public int stop(VolumeInitEntity entity) throws Exception {
public int stop(VolumeEntity entity) throws Exception {
if (null == entity.getName() || "".equals(entity.getName())) {
return -1;
}

@ -138,7 +138,6 @@ public class ThreadMoveData{
data.setDataPath(dataMove.getDstPath());
data.setVolumeIp(dataMove.getDstVolumeIp());
data.setVolumePath(dataMove.getDstVolumePath());
data.setYear(DateForm.date2StringByMin(new Date()));
data.setVolumeIp(dataMove.getVolumeIp());
data.setId(0);
dataInfoDao.save(data);

@ -39,7 +39,7 @@ public class Constant {
/**
* volume 线
*/
public final static int get_volume_sleep_time = 600000;
public final static int get_volume_sleep_time = 10000;
/**
* volume 线

@ -61,7 +61,7 @@ public class ThreadVolume extends Thread implements Runnable{
if (null != path && path.size() > 0) {
volume.setPath(path.get(0));
}
volume.setAllSize(volumeInfo.getVolumeAvailableSize(volumeName));
volume.setAllSize(volumeInfo.getVolumeAvailableSize(volumeName)+volumeInfo.getVolumeUseSize(volumeName));
volume.setStatus(volumeInfo.getVolumeStatus(volumeName));
volume.setUsedSize(volumeInfo.getVolumeUseSize(volumeName));
volume.setType(volumeInfo.getVolumeType(volumeName));

Loading…
Cancel
Save