From 86cbbcb8bd3c62f0e1af0188cf7fb83cb89df6c4 Mon Sep 17 00:00:00 2001 From: Bohdan Horbeshko Date: Fri, 1 Apr 2022 12:35:54 -0400 Subject: [PATCH] gofmt --- telegram/formatter/formatter.go | 10 +++++----- telegram/utils.go | 4 ++-- xmpp/component.go | 15 ++++++++------- xmpp/gateway/storage.go | 1 + 4 files changed, 16 insertions(+), 14 deletions(-) diff --git a/telegram/formatter/formatter.go b/telegram/formatter/formatter.go index 4d37be1..740fa09 100644 --- a/telegram/formatter/formatter.go +++ b/telegram/formatter/formatter.go @@ -140,20 +140,20 @@ func ClaspDirectives(text string, entities []*client.TextEntity) []*client.TextE endOffset := entity.Offset + entity.Length if unicode.IsSpace(doubledRunes[entity.Offset]) { - for j, r := range doubledRunes[entity.Offset+1:endOffset] { + for j, r := range doubledRunes[entity.Offset+1 : endOffset] { if !unicode.IsSpace(r) { dirty = true - entity.Offset += int32(j+1) - entity.Length -= int32(j+1) + entity.Offset += int32(j + 1) + entity.Length -= int32(j + 1) break } } } if unicode.IsSpace(doubledRunes[endOffset-1]) { - for j := endOffset-2; j >= entity.Offset; j-- { + for j := endOffset - 2; j >= entity.Offset; j-- { if !unicode.IsSpace(doubledRunes[j]) { dirty = true - entity.Length = j+1-entity.Offset + entity.Length = j + 1 - entity.Offset break } } diff --git a/telegram/utils.go b/telegram/utils.go index b41423a..f1f7f52 100644 --- a/telegram/utils.go +++ b/telegram/utils.go @@ -375,12 +375,12 @@ func (c *Client) formatFile(file *client.File, compact bool) string { return "" } - size64:= uint64(file.Size) + size64 := uint64(file.Size) c.prepareDiskSpace(size64) basename := file.Remote.UniqueId + filepath.Ext(src) dest := c.content.Path + "/" + basename // destination path - link = c.content.Link + "/" + basename // download link + link = c.content.Link + "/" + basename // download link // move err = os.Rename(src, dest) diff --git a/xmpp/component.go b/xmpp/component.go index 1749100..f5143ea 100644 --- a/xmpp/component.go +++ b/xmpp/component.go @@ -23,16 +23,17 @@ var db *persistence.SessionsYamlDB var sessionLock sync.Mutex const ( - B uint64 = 1 - KB = B << 10 - MB = KB << 10 - GB = MB << 10 - TB = GB << 10 - PB = TB << 10 - EB = PB << 10 + B uint64 = 1 + KB = B << 10 + MB = KB << 10 + GB = MB << 10 + TB = GB << 10 + PB = TB << 10 + EB = PB << 10 maxUint64 uint64 = (1 << 64) - 1 ) + var sizeRegex = regexp.MustCompile("\\A([0-9]+) ?([KMGTPE]?B?)\\z") // NewComponent starts a new component and wraps it in diff --git a/xmpp/gateway/storage.go b/xmpp/gateway/storage.go index a3fad79..fcc381b 100644 --- a/xmpp/gateway/storage.go +++ b/xmpp/gateway/storage.go @@ -11,6 +11,7 @@ import ( // StorageQuota is a value from config parsed to bytes number var StorageQuota uint64 + // CachedStorageSize estimates the storage size between full rescans var CachedStorageSize uint64 var StorageLock = sync.Mutex{}