1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* soup-request.c: Protocol-independent streaming request interface
*
* Copyright (C) 2009, 2010 Red Hat, Inc.
* Copyright (C) 2010, Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <glib/gi18n-lib.h>
#include "soup-request.h"
#include "soup.h"
#include "soup-requester.h"
/**
* SECTION:soup-request
* @short_description: Protocol-independent streaming request interface
*
* A #SoupRequest is created by #SoupSession, and represents a request
* to retrieve a particular URI.
*/
/**
* SoupRequest:
*
* A request to retrieve a particular URI.
*
* Since: 2.42
*/
enum {
PROP_0,
PROP_URI,
PROP_SESSION
};
struct _SoupRequestPrivate {
SoupURI *uri;
SoupSession *session;
};
static void soup_request_initable_interface_init (GInitableIface *initable_interface);
G_DEFINE_TYPE_WITH_CODE (SoupRequest, soup_request, G_TYPE_OBJECT,
G_ADD_PRIVATE (SoupRequest)
G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE,
soup_request_initable_interface_init))
static void
soup_request_init (SoupRequest *request)
{
request->priv = soup_request_get_instance_private (request);
}
static void
soup_request_finalize (GObject *object)
{
SoupRequest *request = SOUP_REQUEST (object);
g_clear_pointer (&request->priv->uri, soup_uri_free);
g_clear_object (&request->priv->session);
G_OBJECT_CLASS (soup_request_parent_class)->finalize (object);
}
static void
soup_request_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
SoupRequest *request = SOUP_REQUEST (object);
switch (prop_id) {
case PROP_URI:
if (request->priv->uri)
soup_uri_free (request->priv->uri);
request->priv->uri = g_value_dup_boxed (value);
break;
case PROP_SESSION:
if (request->priv->session)
g_object_unref (request->priv->session);
request->priv->session = g_value_dup_object (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
soup_request_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
SoupRequest *request = SOUP_REQUEST (object);
switch (prop_id) {
case PROP_URI:
g_value_set_boxed (value, request->priv->uri);
break;
case PROP_SESSION:
g_value_set_object (value, request->priv->session);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static gboolean
soup_request_initable_init (GInitable *initable,
GCancellable *cancellable,
GError **error)
{
SoupRequest *request = SOUP_REQUEST (initable);
gboolean ok;
if (!request->priv->uri) {
g_set_error (error, SOUP_REQUEST_ERROR, SOUP_REQUEST_ERROR_BAD_URI,
_("No URI provided"));
return FALSE;
}
ok = SOUP_REQUEST_GET_CLASS (initable)->
check_uri (request, request->priv->uri, error);
if (!ok && error && !*error) {
char *uri_string = soup_uri_to_string (request->priv->uri, FALSE);
g_set_error (error, SOUP_REQUEST_ERROR, SOUP_REQUEST_ERROR_BAD_URI,
_("Invalid ā%sā URI: %s"),
request->priv->uri->scheme,
uri_string);
g_free (uri_string);
}
return ok;
}
static gboolean
soup_request_default_check_uri (SoupRequest *request,
SoupURI *uri,
GError **error)
{
return TRUE;
}
/* Default implementation: assume the sync implementation doesn't block */
static void
soup_request_default_send_async (SoupRequest *request,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data)
{
GTask *task;
GInputStream *stream;
GError *error = NULL;
task = g_task_new (request, cancellable, callback, user_data);
stream = soup_request_send (request, cancellable, &error);
if (stream)
g_task_return_pointer (task, stream, g_object_unref);
else
g_task_return_error (task, error);
g_object_unref (task);
}
static GInputStream *
soup_request_default_send_finish (SoupRequest *request,
GAsyncResult *result,
GError **error)
{
return g_task_propagate_pointer (G_TASK (result), error);
}
/**
* soup_request_send:
* @request: a #SoupRequest
* @cancellable: a #GCancellable or %NULL
* @error: return location for a #GError, or %NULL
*
* Synchronously requests the URI pointed to by @request, and returns
* a #GInputStream that can be used to read its contents.
*
* Note that you cannot use this method with #SoupRequests attached to
* a #SoupSessionAsync.
*
* Return value: (transfer full): a #GInputStream that can be used to
* read from the URI pointed to by @request.
*
* Since: 2.42
*/
GInputStream *
soup_request_send (SoupRequest *request,
GCancellable *cancellable,
GError **error)
{
return SOUP_REQUEST_GET_CLASS (request)->
send (request, cancellable, error);
}
/**
* soup_request_send_async:
* @request: a #SoupRequest
* @cancellable: a #GCancellable or %NULL
* @callback: a #GAsyncReadyCallback
* @user_data: user data passed to @callback
*
* Begins an asynchronously request for the URI pointed to by
* @request.
*
* Note that you cannot use this method with #SoupRequests attached to
* a #SoupSessionSync.
*
* Since: 2.42
*/
void
soup_request_send_async (SoupRequest *request,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data)
{
SOUP_REQUEST_GET_CLASS (request)->
send_async (request, cancellable, callback, user_data);
}
/**
* soup_request_send_finish:
* @request: a #SoupRequest
* @result: the #GAsyncResult
* @error: return location for a #GError, or %NULL
*
* Gets the result of a soup_request_send_async().
*
* Return value: (transfer full): a #GInputStream that can be used to
* read from the URI pointed to by @request.
*
* Since: 2.42
*/
GInputStream *
soup_request_send_finish (SoupRequest *request,
GAsyncResult *result,
GError **error)
{
return SOUP_REQUEST_GET_CLASS (request)->
send_finish (request, result, error);
}
static void
soup_request_class_init (SoupRequestClass *request_class)
{
GObjectClass *object_class = G_OBJECT_CLASS (request_class);
request_class->check_uri = soup_request_default_check_uri;
request_class->send_async = soup_request_default_send_async;
request_class->send_finish = soup_request_default_send_finish;
object_class->finalize = soup_request_finalize;
object_class->set_property = soup_request_set_property;
object_class->get_property = soup_request_get_property;
/**
* SOUP_REQUEST_URI:
*
* Alias for the #SoupRequest:uri property, qv.
*
* Since: 2.42
*/
/**
* SoupRequest:uri:
*
* The request URI.
*
* Since: 2.42
*/
g_object_class_install_property (
object_class, PROP_URI,
g_param_spec_boxed (SOUP_REQUEST_URI,
"URI",
"The request URI",
SOUP_TYPE_URI,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS));
/**
* SOUP_REQUEST_SESSION:
*
* Alias for the #SoupRequest:session property, qv.
*
* Since: 2.42
*/
/**
* SoupRequest:session:
*
* The request's #SoupSession.
*
* Since: 2.42
*/
g_object_class_install_property (
object_class, PROP_SESSION,
g_param_spec_object (SOUP_REQUEST_SESSION,
"Session",
"The request's session",
SOUP_TYPE_SESSION,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS));
}
static void
soup_request_initable_interface_init (GInitableIface *initable_interface)
{
initable_interface->init = soup_request_initable_init;
}
/**
* soup_request_get_uri:
* @request: a #SoupRequest
*
* Gets @request's URI
*
* Return value: (transfer none): @request's URI
*
* Since: 2.42
*/
SoupURI *
soup_request_get_uri (SoupRequest *request)
{
return request->priv->uri;
}
/**
* soup_request_get_session:
* @request: a #SoupRequest
*
* Gets @request's #SoupSession
*
* Return value: (transfer none): @request's #SoupSession
*
* Since: 2.42
*/
SoupSession *
soup_request_get_session (SoupRequest *request)
{
return request->priv->session;
}
/**
* soup_request_get_content_length:
* @request: a #SoupRequest
*
* Gets the length of the data represented by @request. For most
* request types, this will not be known until after you call
* soup_request_send() or soup_request_send_finish().
*
* Return value: the length of the data represented by @request,
* or -1 if not known.
*
* Since: 2.42
*/
goffset
soup_request_get_content_length (SoupRequest *request)
{
return SOUP_REQUEST_GET_CLASS (request)->get_content_length (request);
}
/**
* soup_request_get_content_type:
* @request: a #SoupRequest
*
* Gets the type of the data represented by @request. For most request
* types, this will not be known until after you call
* soup_request_send() or soup_request_send_finish().
*
* As in the HTTP Content-Type header, this may include parameters
* after the MIME type.
*
* Return value: (nullable): the type of the data represented by
* @request, or %NULL if not known.
*
* Since: 2.42
*/
const char *
soup_request_get_content_type (SoupRequest *request)
{
return SOUP_REQUEST_GET_CLASS (request)->get_content_type (request);
}
|