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