a4a1b63a创建于 2024年10月14日历史提交
package util

import (
	"crypto/sha256"
	"fmt"
	"path"
	"strconv"
)

// DockerLogFilePath returns the directory to save Docker log files
func DockerLogFilePath(homepath, key string) string {
	return path.Join(homepath, getServiceAliasID(key))
}

// DockerLogFileName returns the file name of Docker log file.
func DockerLogFileName(filePath string) string {
	return path.Join(filePath, "stdout.log")
}

//python:
//new_word = str(ord(string[10])) + string + str(ord(string[3])) + 'log' + str(ord(string[2]) / 7)
//new_id = hashlib.sha224(new_word).hexdigest()[0:16]
//
func getServiceAliasID(ServiceID string) string {
	if len(ServiceID) > 11 {
		newWord := strconv.Itoa(int(ServiceID[10])) + ServiceID + strconv.Itoa(int(ServiceID[3])) + "log" + strconv.Itoa(int(ServiceID[2])/7)
		ha := sha256.New224()
		ha.Write([]byte(newWord))
		return fmt.Sprintf("%x", ha.Sum(nil))[0:16]
	}
	return ServiceID
}

// EventLogFilePath returns the directory to save event log files
func EventLogFilePath(homePath string) string {
	return path.Join(homePath, "eventlog")
}

// EventLogFileName returns the file name of event log file.
func EventLogFileName(filePath, key string) string {
	return path.Join(filePath, key+".log")
}