summaryrefslogtreecommitdiff
path: root/libsoup/soup-content-processor.h
diff options
context:
space:
mode:
authorSergio Villar Senin <svillar@igalia.com>2012-07-30 13:31:05 +0200
committerSergio Villar Senin <svillar@igalia.com>2012-11-02 09:52:08 -0700
commit4bec9ebc81ffb5d20dc121ee7818272c697faaa6 (patch)
treed661da1ac1c15245596953f0f03c5aa3a355ea3a /libsoup/soup-content-processor.h
parent2e1e6999f627bce6fb18e5d94e256da2ac5fef30 (diff)
downloadlibsoup-4bec9ebc81ffb5d20dc121ee7818272c697faaa6.tar.gz
SoupContentProcessor: new interface
New SoupContentProcessor interface. It defines a _wrap_input() function which implementors will use to add their own stream on top of the given base stream. https://bugzilla.gnome.org/show_bug.cgi?id=682112
Diffstat (limited to 'libsoup/soup-content-processor.h')
-rw-r--r--libsoup/soup-content-processor.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/libsoup/soup-content-processor.h b/libsoup/soup-content-processor.h
new file mode 100644
index 00000000..8ee04b2f
--- /dev/null
+++ b/libsoup/soup-content-processor.h
@@ -0,0 +1,56 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Copyright (C) 2012 Igalia, S.L.
+ */
+
+
+#ifndef SOUP_CONTENT_PROCESSOR_H
+#define SOUP_CONTENT_PROCESSOR_H 1
+
+#include <libsoup/soup-types.h>
+#include <gio/gio.h>
+
+G_BEGIN_DECLS
+
+#define SOUP_TYPE_CONTENT_PROCESSOR (soup_content_processor_get_type ())
+#define SOUP_CONTENT_PROCESSOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SOUP_TYPE_CONTENT_PROCESSOR, SoupContentProcessor))
+#define SOUP_IS_CONTENT_PROCESSOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SOUP_TYPE_CONTENT_PROCESSOR))
+#define SOUP_CONTENT_PROCESSOR_GET_INTERFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), SOUP_TYPE_CONTENT_PROCESSOR, SoupContentProcessorInterface))
+
+typedef enum {
+ SOUP_STAGE_INVALID,
+
+ SOUP_STAGE_MESSAGE_BODY, /* Raw network data */
+ SOUP_STAGE_TRANSFER_ENCODING, /* SoupBodyInputStream is here */
+ SOUP_STAGE_ENTITY_BODY, /* Has Transfer-Encoding removed */
+ SOUP_STAGE_CONTENT_ENCODING, /* SoupContentDecoder works here */
+ SOUP_STAGE_BODY_DATA /* Actual body data */
+} SoupProcessingStage;
+
+typedef struct _SoupContentProcessor SoupContentProcessor;
+typedef struct _SoupContentProcessorInterface SoupContentProcessorInterface;
+
+struct _SoupContentProcessorInterface {
+ GTypeInterface parent;
+
+ SoupProcessingStage processing_stage;
+
+ /* methods */
+ GInputStream* (*wrap_input) (SoupContentProcessor *processor,
+ GInputStream *base_stream,
+ SoupMessage *msg,
+ GError **error);
+};
+
+GType soup_content_processor_get_type (void);
+
+GInputStream *soup_content_processor_wrap_input (SoupContentProcessor *processor,
+ GInputStream *base_stream,
+ SoupMessage *msg,
+ GError **error);
+
+SoupProcessingStage soup_content_processor_get_processing_stage (SoupContentProcessor *processor);
+
+G_END_DECLS
+
+#endif /* SOUP_CONTENT_PROCESSOR_H */