212 lines
6.3 KiB
Go
212 lines
6.3 KiB
Go
package service
|
|
|
|
import (
|
|
json2 "encoding/json"
|
|
"fmt"
|
|
"github.com/IceWhaleTech/CasaOS/model"
|
|
"github.com/IceWhaleTech/CasaOS/pkg/config"
|
|
command2 "github.com/IceWhaleTech/CasaOS/pkg/utils/command"
|
|
loger2 "github.com/IceWhaleTech/CasaOS/pkg/utils/loger"
|
|
"github.com/shirou/gopsutil/v3/disk"
|
|
"github.com/tidwall/gjson"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
type DiskService interface {
|
|
GetPlugInDisk() []string
|
|
LSBLK() []model.LSBLKModel
|
|
FormatDisk(path, format string) string
|
|
UmountPointAndRemoveDir(path string) string
|
|
GetDiskInfo(path string) model.LSBLKModel
|
|
DelPartition(path, num string) string
|
|
AddPartition(path, num string, size uint64) string
|
|
GetDiskInfoByPath(path string) *disk.UsageStat
|
|
}
|
|
type diskService struct {
|
|
log loger2.OLog
|
|
}
|
|
|
|
//通过脚本获取外挂磁盘
|
|
func (d *diskService) GetPlugInDisk() []string {
|
|
return command2.ExecResultStrArray("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;GetPlugInDisk")
|
|
}
|
|
|
|
//格式化硬盘
|
|
func (d *diskService) FormatDisk(path, format string) string {
|
|
|
|
r := command2.ExecResultStrArray("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;FormatDisk " + path + " " + format)
|
|
fmt.Println(r)
|
|
return ""
|
|
}
|
|
|
|
//移除挂载点,删除目录
|
|
func (d *diskService) UmountPointAndRemoveDir(path string) string {
|
|
r := command2.ExecResultStrArray("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;UMountPorintAndRemoveDir " + path)
|
|
fmt.Println(r)
|
|
return ""
|
|
}
|
|
|
|
//删除分区
|
|
func (d *diskService) DelPartition(path, num string) string {
|
|
r := command2.ExecResultStrArray("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;DelPartition " + path + " " + num)
|
|
fmt.Println(r)
|
|
return ""
|
|
}
|
|
|
|
//添加分区
|
|
func (d *diskService) AddPartition(path, num string, size uint64) string {
|
|
|
|
var maxSector uint64 = 0
|
|
|
|
chiList := command2.ExecResultStrArray("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;GetPartitionSectors " + path)
|
|
if len(chiList) == 0 {
|
|
d.log.Error("chiList length error")
|
|
}
|
|
for i := 0; i < len(chiList); i++ {
|
|
tempArr := strings.Split(chiList[i], ",")
|
|
tempSector, _ := strconv.ParseUint(tempArr[2], 10, 64)
|
|
if tempSector > maxSector {
|
|
maxSector = tempSector
|
|
}
|
|
}
|
|
|
|
r := command2.ExecResultStrArray("source ./shell/helper.sh ;AddPartition " + path + " " + num + " " + strconv.FormatUint(maxSector+1, 10) + " " + strconv.FormatUint(size+maxSector+1, 10))
|
|
fmt.Println(r)
|
|
return ""
|
|
}
|
|
|
|
//获取硬盘详情
|
|
func (d *diskService) GetDiskInfoByPath(path string) *disk.UsageStat {
|
|
diskInfo, err := disk.Usage(path + "1")
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
fmt.Println(path)
|
|
fmt.Println(diskInfo)
|
|
diskInfo.UsedPercent, _ = strconv.ParseFloat(fmt.Sprintf("%.1f", diskInfo.UsedPercent), 64)
|
|
diskInfo.InodesUsedPercent, _ = strconv.ParseFloat(fmt.Sprintf("%.1f", diskInfo.InodesUsedPercent), 64)
|
|
return diskInfo
|
|
}
|
|
|
|
//获取磁盘信息
|
|
func (d *diskService) LSBLK() []model.LSBLKModel {
|
|
str := command2.ExecLSBLK()
|
|
if str == nil {
|
|
d.log.Error("lsblk exec error")
|
|
return nil
|
|
}
|
|
var m []model.LSBLKModel
|
|
err := json2.Unmarshal([]byte(gjson.Get(string(str), "blockdevices").String()), &m)
|
|
if err != nil {
|
|
d.log.Error("json ummarshal error", err)
|
|
}
|
|
|
|
var n []model.LSBLKModel
|
|
|
|
var c []model.LSBLKModel
|
|
|
|
var fsused uint64
|
|
|
|
var health = true
|
|
for _, i := range m {
|
|
if i.Children != nil {
|
|
fsused = 0
|
|
for _, child := range i.Children {
|
|
if child.RM {
|
|
child.Health = strings.TrimSpace(command2.ExecResultStr("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;GetDiskHealthState " + child.Path))
|
|
if strings.ToLower(strings.TrimSpace(child.State)) != "ok" {
|
|
health = false
|
|
}
|
|
f, _ := strconv.ParseUint(child.FSUsed, 10, 64)
|
|
fsused += f
|
|
} else {
|
|
health = false
|
|
}
|
|
c = append(c, child)
|
|
}
|
|
i.Format = strings.TrimSpace(command2.ExecResultStr("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;GetDiskType " + i.Path))
|
|
if health {
|
|
i.Health = "OK"
|
|
}
|
|
i.FSUsed = strconv.FormatUint(fsused, 10)
|
|
i.Children = c
|
|
if fsused > 0 {
|
|
i.UsedPercent, err = strconv.ParseFloat(fmt.Sprintf("%.4f", float64(fsused)/float64(i.Size)), 64)
|
|
fmt.Println(err)
|
|
}
|
|
n = append(n, i)
|
|
health = true
|
|
c = []model.LSBLKModel{}
|
|
fsused = 0
|
|
}
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (d *diskService) GetDiskInfo(path string) model.LSBLKModel {
|
|
str := command2.ExecLSBLKByPath(path)
|
|
if str == nil {
|
|
d.log.Error("lsblk exec error")
|
|
return model.LSBLKModel{}
|
|
}
|
|
var ml []model.LSBLKModel
|
|
err := json2.Unmarshal([]byte(gjson.Get(string(str), "blockdevices").String()), &ml)
|
|
if err != nil {
|
|
d.log.Info(string(str))
|
|
d.log.Error("json ummarshal error", err)
|
|
return model.LSBLKModel{}
|
|
}
|
|
//todo 需要判断长度
|
|
m := ml[0]
|
|
//声明数组
|
|
chiArr := make(map[string]string)
|
|
chiList := command2.ExecResultStrArray("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;GetPartitionSectors " + m.Path)
|
|
if len(chiList) == 0 {
|
|
d.log.Error(m.Path, chiList)
|
|
d.log.Error("chiList length error")
|
|
}
|
|
for i := 0; i < len(chiList); i++ {
|
|
tempArr := strings.Split(chiList[i], ",")
|
|
chiArr[tempArr[0]] = chiList[i]
|
|
}
|
|
|
|
var maxSector uint64 = 0
|
|
for i := 0; i < len(m.Children); i++ {
|
|
tempArr := strings.Split(chiArr[m.Children[i].Path], ",")
|
|
m.Children[i].StartSector, _ = strconv.ParseUint(tempArr[1], 10, 64)
|
|
m.Children[i].EndSector, _ = strconv.ParseUint(tempArr[2], 10, 64)
|
|
if m.Children[i].EndSector > maxSector {
|
|
maxSector = m.Children[i].EndSector
|
|
}
|
|
}
|
|
diskEndSector := command2.ExecResultStrArray("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;GetDiskSizeAndSectors " + m.Path)
|
|
|
|
if len(diskEndSector) < 2 {
|
|
d.log.Error("diskEndSector length error")
|
|
}
|
|
|
|
diskEndSectorInt, _ := strconv.ParseUint(diskEndSector[len(diskEndSector)-1], 10, 64)
|
|
if (diskEndSectorInt-maxSector)*m.MinIO/1024/1024 > 100 {
|
|
//添加可以分区情况
|
|
p := model.LSBLKModel{}
|
|
p.Path = "可以添加"
|
|
m.Children = append(m.Children, p)
|
|
}
|
|
return m
|
|
}
|
|
|
|
//func GetDiskInfo(path string) *disk.UsageStat {
|
|
// diskInfo, _ := disk.Usage(path)
|
|
// diskInfo.UsedPercent, _ = strconv.ParseFloat(fmt.Sprintf("%.1f", diskInfo.UsedPercent), 64)
|
|
// diskInfo.InodesUsedPercent, _ = strconv.ParseFloat(fmt.Sprintf("%.1f", diskInfo.InodesUsedPercent), 64)
|
|
// return diskInfo
|
|
//}
|
|
|
|
//func (d *diskService) GetPlugInDisk() []string {
|
|
// return disk.Partitions(false)
|
|
//}
|
|
|
|
func NewDiskService(log loger2.OLog) DiskService {
|
|
return &diskService{log: log}
|
|
}
|