Files
golib/static/pathfile.go
Nicolas JUHEL b0fd08792c Package AWS
Add feature to change http timeout directly in httpcli store in aws client
  Add copy/MPUCopy function
  Update mpu to allow copy with MPU

Package Cobra
  Fix println by fmt.Fprint to os.stdout

Package Crypt
  Refactor package to use instance of crypt instead of a global crypt unique instance
  Allow to gen key/nonce
  Add io stream reader/writer instead of only buffer slice encoder decoder

Package file/bandwidth
  Add new subpackage bandwith to limit a amount of byte read/write for a duraction
  Use file/progress function increment/reset
  Allow to add custom function increment / reset

Package IOUtils
  Remove useless file error.go, tempFile.go (replaced by package file)
  Move fileDescriptor to a subpackage fileDescriptor: allow to change nb of FD for linux/windows os
  Move Buffer ReadCloser to a new subpackage: allow to add close function to buffer, and expose read / write io interface
  Add sub package multiplexer to allow send/receive multiple io stream into on io stream

Package Socket
  Rework to expose io stream instead of buffer
  Fix minor bugs

Other:
  Bump dependencies
  Update code following bump dependencies
2023-10-03 12:03:36 +02:00

289 lines
6.2 KiB
Go

/*
* MIT License
*
* Copyright (c) 2022 Nicolas JUHEL
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*
*/
package static
import (
"bytes"
"errors"
"fmt"
"io"
"io/fs"
"os"
"path"
liberr "github.com/nabbar/golib/errors"
libfpg "github.com/nabbar/golib/file/progress"
libbuf "github.com/nabbar/golib/ioutils/bufferReadCloser"
)
func (s *staticHandler) _getSize() int64 {
s.m.RLock()
defer s.m.RUnlock()
return s.z
}
func (s *staticHandler) _setSize(size int64) {
s.m.Lock()
defer s.m.Unlock()
s.z = size
}
func (s *staticHandler) _getBase() []string {
s.m.RLock()
defer s.m.RUnlock()
return s.b
}
func (s *staticHandler) _setBase(base ...string) {
s.m.Lock()
defer s.m.Unlock()
s.b = base
}
func (s *staticHandler) _listEmbed(root string) ([]fs.DirEntry, liberr.Error) {
if root == "" {
return nil, ErrorParamEmpty.Error(fmt.Errorf("pathfile is empty"))
}
s.m.RLock()
defer s.m.RUnlock()
val, err := s.c.ReadDir(root)
if err != nil && errors.Is(err, fs.ErrNotExist) {
return nil, ErrorFileNotFound.Error(err)
} else if err != nil {
return nil, ErrorFileOpen.Error(err)
} else {
return val, nil
}
}
func (s *staticHandler) _fileGet(pathFile string) (fs.FileInfo, io.ReadCloser, liberr.Error) {
if len(pathFile) < 1 {
return nil, nil, ErrorParamEmpty.Error(fmt.Errorf("pathfile is empty"))
}
if inf, err := s._fileInfo(pathFile); err != nil {
return nil, nil, err
} else if inf.Size() >= s._getSize() {
r, e := s._fileTemp(pathFile)
return inf, r, e
} else {
r, e := s._fileBuff(pathFile)
return inf, r, e
}
}
func (s *staticHandler) _fileInfo(pathFile string) (fs.FileInfo, liberr.Error) {
if pathFile == "" {
return nil, ErrorParamEmpty.Error(fmt.Errorf("pathfile is empty"))
}
s.m.RLock()
defer s.m.RUnlock()
var inf fs.FileInfo
obj, err := s.c.Open(pathFile)
if err != nil && errors.Is(err, fs.ErrNotExist) {
return nil, ErrorFileNotFound.Error(err)
} else if err != nil {
return nil, ErrorFileOpen.Error(err)
}
defer func() {
_ = obj.Close()
}()
inf, err = obj.Stat()
if err != nil && errors.Is(err, fs.ErrNotExist) {
return nil, ErrorFileNotFound.Error(err)
} else if err != nil {
return nil, ErrorFileOpen.Error(err)
}
return inf, nil
}
func (s *staticHandler) _fileBuff(pathFile string) (io.ReadCloser, liberr.Error) {
if pathFile == "" {
return nil, ErrorParamEmpty.Error(fmt.Errorf("pathfile is empty"))
}
s.m.RLock()
defer s.m.RUnlock()
obj, err := s.c.ReadFile(pathFile)
if err != nil && errors.Is(err, fs.ErrNotExist) {
return nil, ErrorFileNotFound.Error(err)
} else if err != nil {
return nil, ErrorFileOpen.Error(err)
} else {
return libbuf.New(bytes.NewBuffer(obj)), nil
}
}
func (s *staticHandler) _fileTemp(pathFile string) (libfpg.Progress, liberr.Error) {
if pathFile == "" {
return nil, ErrorParamEmpty.Error(fmt.Errorf("pathfile is empty"))
}
s.m.RLock()
defer s.m.RUnlock()
var tmp libfpg.Progress
obj, err := s.c.Open(pathFile)
if err != nil && errors.Is(err, fs.ErrNotExist) {
return nil, ErrorFileNotFound.Error(err)
} else if err != nil {
return nil, ErrorFileOpen.Error(err)
}
defer func() {
_ = obj.Close()
}()
tmp, err = libfpg.Temp("")
if err != nil {
return nil, ErrorFiletemp.Error(err)
}
_, e := io.Copy(tmp, obj)
if e != nil {
return nil, ErrorFiletemp.Error(e)
}
return tmp, nil
}
func (s *staticHandler) Has(pathFile string) bool {
if _, e := s._fileInfo(pathFile); e != nil {
return false
} else {
return true
}
}
func (s *staticHandler) List(rootPath string) ([]string, liberr.Error) {
var (
err error
res = make([]string, 0)
lst []string
ent []fs.DirEntry
inf fs.FileInfo
)
if rootPath == "" {
for _, p := range s._getBase() {
inf, err = s._fileInfo(p)
if err != nil {
return nil, err.(liberr.Error)
}
if !inf.IsDir() {
res = append(res, p)
continue
}
lst, err = s.List(p)
if err != nil {
return nil, err.(liberr.Error)
}
res = append(res, lst...)
}
} else if ent, err = s._listEmbed(rootPath); err != nil {
return nil, err.(liberr.Error)
} else {
for _, f := range ent {
if !f.IsDir() {
res = append(res, path.Join(rootPath, f.Name()))
continue
}
lst, err = s.List(path.Join(rootPath, f.Name()))
if err != nil {
return nil, err.(liberr.Error)
}
res = append(res, lst...)
}
}
return res, nil
}
func (s *staticHandler) Find(pathFile string) (io.ReadCloser, liberr.Error) {
_, r, e := s._fileGet(pathFile)
return r, e
}
func (s *staticHandler) Info(pathFile string) (os.FileInfo, liberr.Error) {
return s._fileInfo(pathFile)
}
func (s *staticHandler) Temp(pathFile string) (libfpg.Progress, liberr.Error) {
return s._fileTemp(pathFile)
}
func (s *staticHandler) Map(fct func(pathFile string, inf os.FileInfo) error) liberr.Error {
var (
err error
lst []string
inf fs.FileInfo
)
if lst, err = s.List(""); err != nil {
return err.(liberr.Error)
} else {
for _, f := range lst {
if inf, err = s._fileInfo(f); err != nil {
return err.(liberr.Error)
} else if err = fct(f, inf); err != nil {
return err.(liberr.Error)
}
}
}
return nil
}
func (s *staticHandler) UseTempForFileSize(size int64) {
s._setSize(size)
}