Commit 3a5cc5a2 authored by Eric's avatar Eric

[update] optimize memory

parent a048486b
...@@ -67,16 +67,16 @@ func (cp *CmdParser) initial() { ...@@ -67,16 +67,16 @@ func (cp *CmdParser) initial() {
go func() { go func() {
logger.Infof("Session %s: %s start", cp.id, cp.name) logger.Infof("Session %s: %s start", cp.id, cp.name)
defer logger.Infof("Session %s: %s parser close", cp.id, cp.name) defer logger.Infof("Session %s: %s parser close", cp.id, cp.name)
inloop: loop:
for { for {
line, err := cp.term.ReadLine() line, err := cp.term.ReadLine()
if err != nil { if err != nil {
select { select {
case <-cp.closed: case <-cp.closed:
goto outloop break loop
default: default:
} }
goto inloop goto loop
} }
cp.lock.Lock() cp.lock.Lock()
cp.currentLength += len(line) cp.currentLength += len(line)
...@@ -85,7 +85,6 @@ func (cp *CmdParser) initial() { ...@@ -85,7 +85,6 @@ func (cp *CmdParser) initial() {
} }
cp.lock.Unlock() cp.lock.Unlock()
} }
outloop:
}() }()
} }
......
...@@ -18,7 +18,7 @@ type AzureReplayStorage struct { ...@@ -18,7 +18,7 @@ type AzureReplayStorage struct {
EndpointSuffix string EndpointSuffix string
} }
func (a *AzureReplayStorage) Upload(gZipFilePath, target string) (err error) { func (a AzureReplayStorage) Upload(gZipFilePath, target string) (err error) {
file, err := os.Open(gZipFilePath) file, err := os.Open(gZipFilePath)
if err != nil { if err != nil {
return return
......
...@@ -17,7 +17,7 @@ type ESCommandStorage struct { ...@@ -17,7 +17,7 @@ type ESCommandStorage struct {
DocType string DocType string
} }
func (es *ESCommandStorage) BulkSave(commands []*model.Command) (err error) { func (es ESCommandStorage) BulkSave(commands []*model.Command) (err error) {
var buf bytes.Buffer var buf bytes.Buffer
esClinet, err := elasticsearch.NewClient(elasticsearch.Config{ esClinet, err := elasticsearch.NewClient(elasticsearch.Config{
Addresses: es.Hosts, Addresses: es.Hosts,
......
...@@ -13,7 +13,7 @@ type OSSReplayStorage struct { ...@@ -13,7 +13,7 @@ type OSSReplayStorage struct {
SecretKey string SecretKey string
} }
func (o *OSSReplayStorage) Upload(gZipFilePath, target string) (err error) { func (o OSSReplayStorage) Upload(gZipFilePath, target string) (err error) {
client, err := oss.New(o.Endpoint, o.AccessKey, o.SecretKey) client, err := oss.New(o.Endpoint, o.AccessKey, o.SecretKey)
if err != nil { if err != nil {
return return
......
...@@ -19,7 +19,7 @@ type S3ReplayStorage struct { ...@@ -19,7 +19,7 @@ type S3ReplayStorage struct {
Endpoint string Endpoint string
} }
func (s *S3ReplayStorage) Upload(gZipFilePath, target string) (err error) { func (s S3ReplayStorage) Upload(gZipFilePath, target string) (err error) {
file, err := os.Open(gZipFilePath) file, err := os.Open(gZipFilePath)
if err != nil { if err != nil {
......
...@@ -11,7 +11,7 @@ import ( ...@@ -11,7 +11,7 @@ import (
type ServerCommandStorage struct { type ServerCommandStorage struct {
} }
func (s *ServerCommandStorage) BulkSave(commands []*model.Command) (err error) { func (s ServerCommandStorage) BulkSave(commands []*model.Command) (err error) {
return service.PushSessionCommand(commands) return service.PushSessionCommand(commands)
} }
...@@ -19,7 +19,7 @@ type ServerReplayStorage struct { ...@@ -19,7 +19,7 @@ type ServerReplayStorage struct {
StorageType string StorageType string
} }
func (s *ServerReplayStorage) Upload(gZipFilePath, target string) (err error) { func (s ServerReplayStorage) Upload(gZipFilePath, target string) (err error) {
sessionID := strings.Split(filepath.Base(gZipFilePath), ".")[0] sessionID := strings.Split(filepath.Base(gZipFilePath), ".")[0]
return service.PushSessionReplay(sessionID, gZipFilePath) return service.PushSessionReplay(sessionID, gZipFilePath)
} }
...@@ -16,8 +16,8 @@ type CommandStorage interface { ...@@ -16,8 +16,8 @@ type CommandStorage interface {
BulkSave(commands []*model.Command) error BulkSave(commands []*model.Command) error
} }
var defaultCommandStorage = &storage.ServerCommandStorage{} var defaultCommandStorage = storage.ServerCommandStorage{}
var defaultReplayStorage = &storage.ServerReplayStorage{StorageType: "server"} var defaultReplayStorage = storage.ServerReplayStorage{StorageType: "server"}
func NewReplayStorage() ReplayStorage { func NewReplayStorage() ReplayStorage {
cf := config.GetConf().ReplayStorage cf := config.GetConf().ReplayStorage
...@@ -31,14 +31,14 @@ func NewReplayStorage() ReplayStorage { ...@@ -31,14 +31,14 @@ func NewReplayStorage() ReplayStorage {
if endpointSuffix == "" { if endpointSuffix == "" {
endpointSuffix = "core.chinacloudapi.cn" endpointSuffix = "core.chinacloudapi.cn"
} }
return &storage.AzureReplayStorage{ return storage.AzureReplayStorage{
AccountName: cf["ACCOUNT_NAME"].(string), AccountName: cf["ACCOUNT_NAME"].(string),
AccountKey: cf["ACCOUNT_KEY"].(string), AccountKey: cf["ACCOUNT_KEY"].(string),
ContainerName: cf["CONTAINER_NAME"].(string), ContainerName: cf["CONTAINER_NAME"].(string),
EndpointSuffix: endpointSuffix, EndpointSuffix: endpointSuffix,
} }
case "oss": case "oss":
return &storage.OSSReplayStorage{ return storage.OSSReplayStorage{
Endpoint: cf["ENDPOINT"].(string), Endpoint: cf["ENDPOINT"].(string),
Bucket: cf["BUCKET"].(string), Bucket: cf["BUCKET"].(string),
AccessKey: cf["ACCESS_KEY"].(string), AccessKey: cf["ACCESS_KEY"].(string),
...@@ -58,7 +58,7 @@ func NewReplayStorage() ReplayStorage { ...@@ -58,7 +58,7 @@ func NewReplayStorage() ReplayStorage {
region = strings.Split(endpoint, ".")[1] region = strings.Split(endpoint, ".")[1]
} }
return &storage.S3ReplayStorage{ return storage.S3ReplayStorage{
Bucket: bucket, Bucket: bucket,
Region: region, Region: region,
AccessKey: cf["ACCESS_KEY"].(string), AccessKey: cf["ACCESS_KEY"].(string),
...@@ -90,7 +90,7 @@ func NewCommandStorage() CommandStorage { ...@@ -90,7 +90,7 @@ func NewCommandStorage() CommandStorage {
if docType == "" { if docType == "" {
docType = "command_store" docType = "command_store"
} }
return &storage.ESCommandStorage{Hosts: hosts, Index: index, DocType: docType} return storage.ESCommandStorage{Hosts: hosts, Index: index, DocType: docType}
default: default:
return defaultCommandStorage return defaultCommandStorage
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment