mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
160 lines
3.4 KiB
Go
160 lines
3.4 KiB
Go
package fs
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"sort"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
)
|
|
|
|
// Write writes the given data into the file.
|
|
// @params path (String) - path to file to write into.
|
|
// @params data (Binary) - data to write.
|
|
// @params params (Object) optional - additional parameters:
|
|
// * mode (String):
|
|
// * x - Exclusive: returns an error if the file exist. It can be
|
|
// combined with other modes
|
|
// * a - Append: will create a file if the specified file does not exist
|
|
// * w - Write (Default): will create a file if the specified file does not exist
|
|
// @returns None
|
|
func Write(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := validateRequiredWriteArgs(args)
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
fpath := args[0].String()
|
|
data := args[1].(values.Binary)
|
|
params := defaultParams
|
|
|
|
if len(args) == 3 {
|
|
params, err = parseParams(args[2])
|
|
if err != nil {
|
|
return values.None, core.Error(
|
|
err,
|
|
"parse `params` argument",
|
|
)
|
|
}
|
|
}
|
|
|
|
// 0222 - write only permissions
|
|
file, err := os.OpenFile(fpath, params.ModeFlag, 0222)
|
|
if err != nil {
|
|
return values.None, core.Error(err, "open file")
|
|
}
|
|
defer file.Close()
|
|
|
|
_, err = file.Write(data)
|
|
if err != nil {
|
|
return values.None, core.Error(err, "write file")
|
|
}
|
|
|
|
return values.None, nil
|
|
}
|
|
|
|
func validateRequiredWriteArgs(args []core.Value) error {
|
|
err := core.ValidateArgs(args, 2, 3)
|
|
if err != nil {
|
|
return core.Error(err, "validate arguments number")
|
|
}
|
|
|
|
pairs := []core.PairValueType{
|
|
core.PairValueType{args[0], []core.Type{types.String}},
|
|
core.PairValueType{args[1], []core.Type{types.Binary}},
|
|
}
|
|
|
|
err = core.ValidateValueTypePairs(pairs...)
|
|
if err != nil {
|
|
return core.Error(err, "validate arguments")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// parsedParams contains parsed additional parameters.
|
|
type parsedParams struct {
|
|
ModeFlag int
|
|
}
|
|
|
|
var defaultParams = parsedParams{
|
|
// the same as `w`
|
|
ModeFlag: os.O_WRONLY | os.O_CREATE | os.O_TRUNC,
|
|
}
|
|
|
|
func parseParams(value core.Value) (parsedParams, error) {
|
|
obj, ok := value.(*values.Object)
|
|
if !ok {
|
|
return parsedParams{}, core.Error(
|
|
core.ErrInvalidArgument,
|
|
"value should be an object",
|
|
)
|
|
}
|
|
|
|
params := defaultParams
|
|
|
|
modestr, exists := obj.Get(values.NewString("mode"))
|
|
if exists {
|
|
|
|
flag, err := parseWriteMode(modestr.String())
|
|
if err != nil {
|
|
return parsedParams{}, core.Error(
|
|
core.ErrInvalidArgument,
|
|
"parse write mode",
|
|
)
|
|
}
|
|
|
|
params.ModeFlag = flag
|
|
}
|
|
|
|
return params, nil
|
|
}
|
|
|
|
func parseWriteMode(s string) (int, error) {
|
|
letters := []rune(s)
|
|
count := len(letters)
|
|
|
|
if count == 0 || count > 2 {
|
|
return -1, core.Errorf(
|
|
core.ErrInvalidArgument,
|
|
"must be from 1 to 2 mode letters, got `%d`", count,
|
|
)
|
|
}
|
|
|
|
// sort letters for more convenient work with it
|
|
sort.Slice(letters, func(i, j int) bool { return letters[i] < letters[j] })
|
|
|
|
// minimum flag for writing to file
|
|
flag := os.O_WRONLY | os.O_CREATE
|
|
|
|
if count == 2 {
|
|
// since letter is sorted, `x` will always be the letters[1]
|
|
if letters[1] != 'x' {
|
|
return -1, core.Errorf(
|
|
core.ErrInvalidArgument,
|
|
"invalid mode `%s`", s,
|
|
)
|
|
}
|
|
|
|
flag |= os.O_EXCL
|
|
}
|
|
|
|
switch letters[0] {
|
|
case 'a':
|
|
flag |= os.O_APPEND
|
|
|
|
case 'w':
|
|
flag |= os.O_TRUNC
|
|
|
|
default:
|
|
return -1, core.Errorf(
|
|
core.ErrInvalidArgument,
|
|
"invalid mode `%s`", s,
|
|
)
|
|
}
|
|
|
|
return flag, nil
|
|
}
|