summaryrefslogtreecommitdiff
path: root/liblogfs/path.c
diff options
context:
space:
mode:
Diffstat (limited to 'liblogfs/path.c')
-rw-r--r--liblogfs/path.c48
1 files changed, 48 insertions, 0 deletions
diff --git a/liblogfs/path.c b/liblogfs/path.c
new file mode 100644
index 00000000..81379e12
--- /dev/null
+++ b/liblogfs/path.c
@@ -0,0 +1,48 @@
+#include "lib9.h"
+#include "logfs.h"
+#include "local.h"
+
+enum {
+ PATHMOD = 127
+};
+
+static int
+compare(Path *f, ulong path)
+{
+ return f->path == path;
+}
+
+static int
+allocsize(void *key)
+{
+ USED(key);
+ return sizeof(Path);
+}
+
+char *
+logfspathmapnew(PathMap **pathmapp)
+{
+ return logfsmapnew(PATHMOD, logfshashulong, (int (*)(void *, void *))compare, allocsize, nil, pathmapp);
+}
+
+char *
+logfspathmapnewentry(PathMap *m, ulong path, Entry *e, Path **pathmapp)
+{
+ char *errmsg;
+ errmsg = logfsmapnewentry(m, (void *)path, pathmapp);
+ if(errmsg)
+ return errmsg;
+ if(*pathmapp == nil)
+ return nil;
+ (*pathmapp)->path = path;
+ (*pathmapp)->entry = e;
+ return nil;
+}
+
+Entry *
+logfspathmapfinde(PathMap *m, ulong path)
+{
+ Path *p;
+ p = logfspathmapfindentry(m, path);
+ return p ? p->entry : nil;
+}