summaryrefslogtreecommitdiff
path: root/src/gsystem-file-tree-walk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gsystem-file-tree-walk.h')
-rw-r--r--src/gsystem-file-tree-walk.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/gsystem-file-tree-walk.h b/src/gsystem-file-tree-walk.h
new file mode 100644
index 0000000..582ff7f
--- /dev/null
+++ b/src/gsystem-file-tree-walk.h
@@ -0,0 +1,62 @@
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
+ *
+ * Copyright (C) 2014 Colin Walters <walters@verbum.org>.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GSYSTEM_FILE_TREEWALK_H__
+#define __GSYSTEM_FILE_TREEWALK_H__
+
+#include <gio/gio.h>
+
+G_BEGIN_DECLS
+
+#define GS_TYPE_FILE_TREE_WALK (gs_file_tree_walk_get_type ())
+#define GS_FILE_TREE_WALK(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GS_TYPE_FILE_TREE_WALK, GSFileTreeWalk))
+#define GS_IS_FILE_TREE_WALK(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GS_TYPE_FILE_TREE_WALK))
+
+typedef struct _GSFileTreeWalk GSFileTreeWalk;
+
+GType gs_file_tree_walk_get_type (void) G_GNUC_CONST;
+
+typedef enum {
+ GS_FILE_TREE_WALK_FLAG_DEPTH = 1 << 0,
+ GS_FILE_TREE_WALK_FLAG_NOXDEV = 1 << 1
+} GSFileTreeWalkFlags;
+
+GSFileTreeWalk *gs_file_tree_walk_open (GFile *path,
+ GSFileTreeWalkFlags flags,
+ GCancellable *cancellable,
+ GError **error);
+
+GSFileTreeWalk *gs_file_tree_walk_open_at (int dfd,
+ GSFileTreeWalkFlags flags,
+ GCancellable *cancellable,
+ GError **error);
+
+gboolean gs_file_tree_walk_next (GSFileTreeWalk *self,
+ GFileType *out_file_type);
+
+int gs_file_tree_walk_get_dirfd (GSFileTreeWalk *self);
+
+const char *gs_file_tree_walk_get_name (GSFileTreeWalk *self);
+
+char *gs_file_tree_walk_get_relpath (GSFileTreeWalk *self);
+
+G_END_DECLS
+
+#endif