diff options
author | Julien Dessaux | 2024-09-04 09:11:35 +0200 |
---|---|---|
committer | Julien Dessaux | 2024-09-04 09:11:35 +0200 |
commit | 00cb3a2488db11c8ce96d182915b8c448edce976 (patch) | |
tree | 80d46044e4cdd17c2da324527596e34359a03603 /pkg | |
parent | feat(stdlib): added a basic borg client custom promise (diff) | |
download | gonf-00cb3a2488db11c8ce96d182915b8c448edce976.tar.gz gonf-00cb3a2488db11c8ce96d182915b8c448edce976.tar.bz2 gonf-00cb3a2488db11c8ce96d182915b8c448edce976.zip |
chore(gonf): add a DECLARED promise status and make it the default instead of PROMISED
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/commands.go | 7 | ||||
-rw-r--r-- | pkg/files.go | 9 | ||||
-rw-r--r-- | pkg/packages.go | 7 | ||||
-rw-r--r-- | pkg/promises.go | 5 |
4 files changed, 20 insertions, 8 deletions
diff --git a/pkg/commands.go b/pkg/commands.go index 4222de7..e3f6242 100644 --- a/pkg/commands.go +++ b/pkg/commands.go @@ -23,7 +23,7 @@ func CommandWithEnv(env []string, cmd string, args ...string) *CommandPromise { cmd: cmd, env: env, err: nil, - status: PROMISED, + status: DECLARED, } } @@ -44,7 +44,10 @@ func (c *CommandPromise) IfRepaired(p ...Promise) Promise { } func (c *CommandPromise) Promise() *CommandPromise { - commands = append(commands, c) + if c.status == DECLARED { + c.status = PROMISED + commands = append(commands, c) + } return c } diff --git a/pkg/files.go b/pkg/files.go index 6f22176..ac63718 100644 --- a/pkg/files.go +++ b/pkg/files.go @@ -45,7 +45,7 @@ func Directory(filename any) *FilePromise { filename: interfaceToTemplateValue(filename), fileType: DIRECTORY, permissions: nil, - status: PROMISED, + status: DECLARED, } } @@ -58,7 +58,7 @@ func File(filename any) *FilePromise { filename: interfaceToTemplateValue(filename), fileType: FILE, permissions: nil, - status: PROMISED, + status: DECLARED, } } @@ -88,7 +88,10 @@ func (f *FilePromise) IfRepaired(p ...Promise) Promise { } func (f *FilePromise) Promise() *FilePromise { - files = append(files, f) + if f.status == DECLARED { + f.status = PROMISED + files = append(files, f) + } return f } diff --git a/pkg/packages.go b/pkg/packages.go index 7ed8584..dea8f7c 100644 --- a/pkg/packages.go +++ b/pkg/packages.go @@ -19,7 +19,7 @@ func Package(names ...string) *PackagePromise { chain: nil, err: nil, names: names, - status: PROMISED, + status: DECLARED, } } @@ -36,7 +36,10 @@ func (p *PackagePromise) IfRepaired(ps ...Promise) Promise { } func (p *PackagePromise) Promise() *PackagePromise { - packages = append(packages, p) + if p.status == DECLARED { + p.status = PROMISED + packages = append(packages, p) + } return p } diff --git a/pkg/promises.go b/pkg/promises.go index 0198296..340f35d 100644 --- a/pkg/promises.go +++ b/pkg/promises.go @@ -9,7 +9,8 @@ type Promise interface { type Status int const ( - PROMISED = iota + DECLARED = iota + PROMISED BROKEN KEPT REPAIRED @@ -17,6 +18,8 @@ const ( func (s Status) String() string { switch s { + case DECLARED: + return "declared" case PROMISED: return "promised" case BROKEN: |