mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 05:07:38 +03:00
85 lines
2.3 KiB
Go
85 lines
2.3 KiB
Go
/*
|
|
Maddy Mail Server - Composable all-in-one email server.
|
|
Copyright © 2019-2020 Max Mazurov <fox.cpp@disroot.org>, Maddy Mail Server contributors
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package buffer
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"fmt"
|
|
"io"
|
|
"math/rand"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
// FileBuffer implements Buffer interface using file system.
|
|
type FileBuffer struct {
|
|
Path string
|
|
|
|
// LenHint is the size of the stored blob. It can
|
|
// be set to avoid the need to call os.Stat in the
|
|
// Len() method.
|
|
LenHint int
|
|
}
|
|
|
|
func (fb FileBuffer) Open() (io.ReadCloser, error) {
|
|
return os.Open(fb.Path)
|
|
}
|
|
|
|
func (fb FileBuffer) Len() int {
|
|
if fb.LenHint != 0 {
|
|
return fb.LenHint
|
|
}
|
|
|
|
info, err := os.Stat(fb.Path)
|
|
if err != nil {
|
|
// Any access to the file will probably fail too. So we can't return a
|
|
// sensible value.
|
|
return 0
|
|
}
|
|
|
|
return int(info.Size())
|
|
}
|
|
|
|
func (fb FileBuffer) Remove() error {
|
|
return os.Remove(fb.Path)
|
|
}
|
|
|
|
// BufferInFile is a convenience function which creates FileBuffer with underlying
|
|
// file created in the specified directory with the random name.
|
|
func BufferInFile(r io.Reader, dir string) (Buffer, error) {
|
|
// It is assumed that PRNG is initialized somewhere during program startup.
|
|
nameBytes := make([]byte, 32)
|
|
_, err := rand.Read(nameBytes)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("buffer: failed to generate randomness for file name: %v", err)
|
|
}
|
|
path := filepath.Join(dir, hex.EncodeToString(nameBytes))
|
|
f, err := os.Create(path)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("buffer: failed to create file: %v", err)
|
|
}
|
|
if _, err = io.Copy(f, r); err != nil {
|
|
return nil, fmt.Errorf("buffer: failed to write file: %v", err)
|
|
}
|
|
if err := f.Close(); err != nil {
|
|
return nil, fmt.Errorf("buffer: failed to close file: %v", err)
|
|
}
|
|
|
|
return FileBuffer{Path: path}, nil
|
|
}
|