diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-10-23 12:34:16 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-10-23 12:34:16 +0900 |
| commit | 20195ece478a28b2bc7abc78cd220f900958eb35 (patch) | |
| tree | 8e996029a43c58ddfd15b6be9b5e285effeddbea /internal/system/tmpfiles.go | |
| parent | cafed5f23468daf2765655325ebe7d879acdde24 (diff) | |
system: return sys in queueing methods
This enables building an instance in a single statement.
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/system/tmpfiles.go')
| -rw-r--r-- | internal/system/tmpfiles.go | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/internal/system/tmpfiles.go b/internal/system/tmpfiles.go index 9215bd33..7300f30a 100644 --- a/internal/system/tmpfiles.go +++ b/internal/system/tmpfiles.go @@ -12,44 +12,50 @@ import ( ) // CopyFile registers an Op that copies path dst from src. -func (sys *I) CopyFile(dst, src string) { - sys.CopyFileType(Process, dst, src) +func (sys *I) CopyFile(dst, src string) *I { + return sys.CopyFileType(Process, dst, src) } // CopyFileType registers a file copying Op labelled with type et. -func (sys *I) CopyFileType(et Enablement, dst, src string) { +func (sys *I) CopyFileType(et Enablement, dst, src string) *I { sys.lock.Lock() sys.ops = append(sys.ops, &Tmpfile{et, tmpfileCopy, dst, src}) sys.lock.Unlock() sys.UpdatePermType(et, dst, acl.Read) + + return sys } // Link registers an Op that links dst to src. -func (sys *I) Link(oldname, newname string) { - sys.LinkFileType(Process, oldname, newname) +func (sys *I) Link(oldname, newname string) *I { + return sys.LinkFileType(Process, oldname, newname) } // LinkFileType registers a file linking Op labelled with type et. -func (sys *I) LinkFileType(et Enablement, oldname, newname string) { +func (sys *I) LinkFileType(et Enablement, oldname, newname string) *I { sys.lock.Lock() defer sys.lock.Unlock() sys.ops = append(sys.ops, &Tmpfile{et, tmpfileLink, newname, oldname}) + + return sys } // Write registers an Op that writes dst with the contents of src. -func (sys *I) Write(dst, src string) { - sys.WriteType(Process, dst, src) +func (sys *I) Write(dst, src string) *I { + return sys.WriteType(Process, dst, src) } // WriteType registers a file writing Op labelled with type et. -func (sys *I) WriteType(et Enablement, dst, src string) { +func (sys *I) WriteType(et Enablement, dst, src string) *I { sys.lock.Lock() sys.ops = append(sys.ops, &Tmpfile{et, tmpfileWrite, dst, src}) sys.lock.Unlock() sys.UpdatePermType(et, dst, acl.Read) + + return sys } const ( |
