summaryrefslogtreecommitdiffstats
path: root/services/f3/driver/common.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--services/f3/driver/common.go48
1 files changed, 48 insertions, 0 deletions
diff --git a/services/f3/driver/common.go b/services/f3/driver/common.go
new file mode 100644
index 0000000..104f91c
--- /dev/null
+++ b/services/f3/driver/common.go
@@ -0,0 +1,48 @@
+// Copyright Earl Warren <contact@earl-warren.org>
+// Copyright Loïc Dachary <loic@dachary.org>
+// SPDX-License-Identifier: MIT
+
+package driver
+
+import (
+ "context"
+
+ "code.forgejo.org/f3/gof3/v3/tree/generic"
+)
+
+type common struct {
+ generic.NullDriver
+}
+
+func (o *common) GetHelper() any {
+ panic("not implemented")
+}
+
+func (o *common) ListPage(ctx context.Context, page int) generic.ChildrenSlice {
+ return generic.NewChildrenSlice(0)
+}
+
+func (o *common) GetNativeID() string {
+ return ""
+}
+
+func (o *common) SetNative(native any) {
+}
+
+func (o *common) getTree() generic.TreeInterface {
+ return o.GetNode().GetTree()
+}
+
+func (o *common) getPageSize() int {
+ return o.getTreeDriver().GetPageSize()
+}
+
+func (o *common) getKind() generic.Kind {
+ return o.GetNode().GetKind()
+}
+
+func (o *common) getTreeDriver() *treeDriver {
+ return o.GetTreeDriver().(*treeDriver)
+}
+
+func (o *common) IsNull() bool { return false }