瀏覽代碼

clean up smart implementation

Toby Chui 1 月之前
父節點
當前提交
e5e7202739
共有 3 個文件被更改,包括 132 次插入107 次删除
  1. 17 21
      main.go
  2. 95 0
      mod/middleware/SMART/extract.go
  3. 20 86
      mod/middleware/SMART/smart.go

+ 17 - 21
main.go

@@ -4,7 +4,6 @@ import (
 	"encoding/json"
 	"fmt"
 	"os"
-	"strings"
 
 	smart "imuslab.com/bokofs/bokofsd/mod/middleware/SMART"
 )
@@ -23,30 +22,27 @@ func main() {
 		if deviceFile.IsDir() {
 			continue
 		}
-		if strings.HasPrefix(deviceFile.Name(), "sd") || strings.HasPrefix(deviceFile.Name(), "nvme") {
-			if strings.HasPrefix(deviceFile.Name(), "sd") && len(deviceFile.Name()) > 3 {
-				continue
-			}
-			if strings.HasPrefix(deviceFile.Name(), "nvme") && len(deviceFile.Name()) > 5 {
-				continue
-			}
 
-			fullPath := "/dev/" + deviceFile.Name()
-			fmt.Println(fullPath)
+		fullPath := "/dev/" + deviceFile.Name()
+		fmt.Println(fullPath)
+		if !smart.IsRootDisk(fullPath) {
+			continue
+		}
 
-			if !smart.IsNVMeDevice(fullPath) && !smart.IsSATADevice(fullPath) {
-				fmt.Println("Unsupported disk type")
-				continue
-			}
-			//Get the SMART data printout in json
-			smartdata, err := smart.GetSMARTData(fullPath)
-			if err != nil {
-				fmt.Println(err)
-			}
+		if !smart.IsDiskSupportedType(fullPath) {
+			fmt.Println("Unsupported disk type")
+			continue
+		}
 
-			js, _ := json.MarshalIndent(smartdata, "", " ")
-			fmt.Println(string(js))
+		//Get the SMART data printout in json
+		smartdata, err := smart.GetSMARTData(fullPath)
+		if err != nil {
+			fmt.Println(err)
 		}
+
+		js, _ := json.MarshalIndent(smartdata, "", " ")
+		fmt.Println(string(js))
+
 	}
 
 	/*

+ 95 - 0
mod/middleware/SMART/extract.go

@@ -0,0 +1,95 @@
+package smart
+
+import (
+	"fmt"
+
+	"github.com/anatol/smart.go"
+)
+
+/* Extract SATA drive SMART data */
+func getSATASMART(diskpath string) (*SMARTData, error) {
+	dev, err := smart.OpenSata(diskpath)
+	if err != nil {
+		return nil, err
+	}
+	defer dev.Close()
+
+	c, err := dev.Identify()
+	if err != nil {
+		return nil, err
+	}
+
+	sm, err := dev.ReadSMARTData()
+	if err != nil {
+		return nil, err
+	}
+
+	_, capacity, _, _, _ := c.Capacity()
+	sataAttrs := []*SATAAttrData{}
+	for _, attr := range sm.Attrs {
+		thisAttrID := attr.Id
+		thisAttrName := attr.Name
+		thisAttrType := attr.Type
+		thisAttrRawVal := attr.ValueRaw
+		val, low, high, _, err := attr.ParseAsTemperature()
+		if err != nil {
+			continue
+		}
+
+		fmt.Println("Temperature: ", val, low, high)
+		thisAttrData := SATAAttrData{
+			Id:      thisAttrID,
+			Name:    thisAttrName,
+			Type:    thisAttrType,
+			RawVal:  thisAttrRawVal,
+			Current: attr.Current,
+			Worst:   attr.Worst,
+		}
+
+		sataAttrs = append(sataAttrs, &thisAttrData)
+	}
+
+	smartData := SMARTData{
+		ModelNumber:  c.ModelNumber(),
+		SerialNumber: c.SerialNumber(),
+		Size:         capacity,
+
+		SATAAttrs: sataAttrs,
+	}
+
+	return &smartData, nil
+}
+
+/* Extract NVMe drive SMART data */
+func getNVMESMART(diskpath string) (*SMARTData, error) {
+	dev, err := smart.OpenNVMe(diskpath)
+	if err != nil {
+		return nil, err
+	}
+	defer dev.Close()
+
+	c, nss, err := dev.Identify()
+	if err != nil {
+		return nil, err
+	}
+
+	NameSpaceUtilizations := []uint64{}
+	for _, ns := range nss {
+		NameSpaceUtilizations = append(NameSpaceUtilizations, ns.Nuse*ns.LbaSize())
+	}
+
+	sm, _ := dev.ReadSMART()
+	smartData := SMARTData{
+		ModelNumber:           c.ModelNumber(),
+		SerialNumber:          c.SerialNumber(),
+		Size:                  c.Tnvmcap.Val[0],
+		NameSpaceUtilizations: NameSpaceUtilizations,
+		Temperature:           int(sm.Temperature),
+		PowerOnHours:          sm.PowerOnHours.Val[0],
+		PowerCycles:           sm.PowerCycles.Val[0],
+		UnsafeShutdowns:       sm.UnsafeShutdowns.Val[0],
+		MediaErrors:           sm.MediaErrors.Val[0],
+	}
+
+	return &smartData, nil
+}

+ 20 - 86
mod/middleware/SMART/smart.go

@@ -66,6 +66,26 @@ func GetSMARTData(disk string) (*SMARTData, error) {
 	return nil, errors.New("unsupported disk type")
 }
 
+// Check if the path is the disk path instead of partition path
+func IsRootDisk(deviceFilePath string) bool {
+	deviceFilename := filepath.Base(deviceFilePath)
+	if !strings.HasPrefix(deviceFilename, "sd") || strings.HasPrefix(deviceFilename, "nvme") {
+		return false
+	}
+	if strings.HasPrefix(deviceFilename, "sd") && len(deviceFilename) > 3 {
+		return false
+	}
+	if strings.HasPrefix(deviceFilename, "nvme") && len(deviceFilename) > 5 {
+		return false
+	}
+	return true
+}
+
+// Check if this SMART implementation supports the disk type
+func IsDiskSupportedType(disk string) bool {
+	return IsNVMeDevice(disk) || IsSATADevice(disk)
+}
+
 // Check if the disk is a SATA device
 func IsSATADevice(disk string) bool {
 	if !strings.HasPrefix(disk, "/dev/") {
@@ -85,89 +105,3 @@ func IsNVMeDevice(disk string) bool {
 	_, err := smart.OpenNVMe(disk)
 	return err == nil
 }
-
-func getSATASMART(diskpath string) (*SMARTData, error) {
-	dev, err := smart.OpenSata(diskpath)
-	if err != nil {
-		return nil, err
-	}
-	defer dev.Close()
-
-	c, err := dev.Identify()
-	if err != nil {
-		return nil, err
-	}
-
-	sm, err := dev.ReadSMARTData()
-	if err != nil {
-		return nil, err
-	}
-
-	_, capacity, _, _, _ := c.Capacity()
-	sataAttrs := []*SATAAttrData{}
-	for _, attr := range sm.Attrs {
-		thisAttrID := attr.Id
-		thisAttrName := attr.Name
-		thisAttrType := attr.Type
-		thisAttrRawVal := attr.ValueRaw
-		val, low, high, _, err := attr.ParseAsTemperature()
-		if err != nil {
-			continue
-		}
-
-		fmt.Println("Temperature: ", val, low, high)
-		thisAttrData := SATAAttrData{
-			Id:      thisAttrID,
-			Name:    thisAttrName,
-			Type:    thisAttrType,
-			RawVal:  thisAttrRawVal,
-			Current: attr.Current,
-			Worst:   attr.Worst,
-		}
-
-		sataAttrs = append(sataAttrs, &thisAttrData)
-	}
-
-	smartData := SMARTData{
-		ModelNumber:  c.ModelNumber(),
-		SerialNumber: c.SerialNumber(),
-		Size:         capacity,
-
-		SATAAttrs: sataAttrs,
-	}
-
-	return &smartData, nil
-}
-
-func getNVMESMART(diskpath string) (*SMARTData, error) {
-	dev, err := smart.OpenNVMe(diskpath)
-	if err != nil {
-		return nil, err
-	}
-	defer dev.Close()
-
-	c, nss, err := dev.Identify()
-	if err != nil {
-		return nil, err
-	}
-
-	NameSpaceUtilizations := []uint64{}
-	for _, ns := range nss {
-		NameSpaceUtilizations = append(NameSpaceUtilizations, ns.Nuse*ns.LbaSize())
-	}
-
-	sm, _ := dev.ReadSMART()
-	smartData := SMARTData{
-		ModelNumber:           c.ModelNumber(),
-		SerialNumber:          c.SerialNumber(),
-		Size:                  c.Tnvmcap.Val[0],
-		NameSpaceUtilizations: NameSpaceUtilizations,
-		Temperature:           int(sm.Temperature),
-		PowerOnHours:          sm.PowerOnHours.Val[0],
-		PowerCycles:           sm.PowerCycles.Val[0],
-		UnsafeShutdowns:       sm.UnsafeShutdowns.Val[0],
-		MediaErrors:           sm.MediaErrors.Val[0],
-	}
-
-	return &smartData, nil
-}