summaryrefslogtreecommitdiff
path: root/src/libostree/ostree-fetcher.h
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-07-09 20:14:53 -0400
committerColin Walters <walters@verbum.org>2013-07-09 20:14:53 -0400
commit2535f32c563bd77fc0970ef1deef9d1da49f70a3 (patch)
tree6caa1c2d80f0a064b303f74b7245dac7e6292742 /src/libostree/ostree-fetcher.h
parent5dd0d5da40b7f2c2172f9d63d0da4d20b0fe9ec1 (diff)
downloadostree-2535f32c563bd77fc0970ef1deef9d1da49f70a3.tar.gz
libostree: Move pull code into here
More library work.
Diffstat (limited to 'src/libostree/ostree-fetcher.h')
-rw-r--r--src/libostree/ostree-fetcher.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/src/libostree/ostree-fetcher.h b/src/libostree/ostree-fetcher.h
new file mode 100644
index 00000000..8be7b01f
--- /dev/null
+++ b/src/libostree/ostree-fetcher.h
@@ -0,0 +1,72 @@
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
+ *
+ * Copyright (C) 2012 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.
+ */
+
+#pragma once
+
+#define LIBSOUP_USE_UNSTABLE_REQUEST_API
+#include <libsoup/soup.h>
+#include <libsoup/soup-requester.h>
+#include <libsoup/soup-request-http.h>
+
+G_BEGIN_DECLS
+
+#define OSTREE_TYPE_FETCHER (ostree_fetcher_get_type ())
+#define OSTREE_FETCHER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), OSTREE_TYPE_FETCHER, OstreeFetcher))
+#define OSTREE_FETCHER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), OSTREE_TYPE_FETCHER, OstreeFetcherClass))
+#define OSTREE_IS_FETCHER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), OSTREE_TYPE_FETCHER))
+#define OSTREE_IS_FETCHER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), OSTREE_TYPE_FETCHER))
+#define OSTREE_FETCHER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), OSTREE_TYPE_FETCHER, OstreeFetcherClass))
+
+typedef struct OstreeFetcherClass OstreeFetcherClass;
+typedef struct OstreeFetcher OstreeFetcher;
+
+struct OstreeFetcherClass
+{
+ GObjectClass parent_class;
+};
+
+typedef enum {
+ OSTREE_FETCHER_FLAGS_NONE = 0,
+ OSTREE_FETCHER_FLAGS_TLS_PERMISSIVE = (1 << 0)
+} OstreeFetcherConfigFlags;
+
+GType ostree_fetcher_get_type (void) G_GNUC_CONST;
+
+OstreeFetcher *ostree_fetcher_new (GFile *tmpdir,
+ OstreeFetcherConfigFlags flags);
+
+char * ostree_fetcher_query_state_text (OstreeFetcher *self);
+
+guint64 ostree_fetcher_bytes_transferred (OstreeFetcher *self);
+
+guint ostree_fetcher_get_n_requests (OstreeFetcher *self);
+
+void ostree_fetcher_request_uri_async (OstreeFetcher *self,
+ SoupURI *uri,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+
+GFile *ostree_fetcher_request_uri_finish (OstreeFetcher *self,
+ GAsyncResult *result,
+ GError **error);
+
+G_END_DECLS
+