mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
7261372b45
2008-08-13 Tor Lillqvist <tml@novell.com> * win32/gwinhttpvfs.c * win32/gwinhttpvfs.h * win32/gwinhttpfile.c * win32/gwinhttpfile.h * win32/gwinhttpfileinputstream.c * win32/gwinhttpfileinputstream.h * win32/gwinhttpfileoutputstream.c * win32/gwinhttpfileoutputstream.h: New files implementing GWinHttpVfs and related classes, a GVfs for HTTP and HTTPS URIs on Windows. The implementation uses the WinHttp API. Both reading and writing are supported, i.e. GET and PUT requests. When writing, each write call is done using a separate PUT request with a Content-Range header. Requests for file URIs and plain pathnames are forwarded to GLocalVfs. * win32/winhttp.h: Reverse engineered <winhttp.h>, borrowed from WINE. Used as there is no <winhttp.h> bundled with mingw, and requiring people to download the Windows SDK just for this one header is not reasonable. * win32/Makefile.am: Add above files. * giomodule.c: Call _g_winhttp_vfs_get_type() on Windows to set up the plumbing for the above. svn path=/trunk/; revision=7344
205 lines
6.3 KiB
C
205 lines
6.3 KiB
C
/* GIO - GLib Input, Output and Streaming Library
|
|
*
|
|
* Copyright (C) 2006-2007 Red Hat, Inc.
|
|
* Copyright (C) 2008 Novell, Inc.
|
|
*
|
|
* 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.
|
|
*
|
|
* Author: Alexander Larsson <alexl@redhat.com>
|
|
* Author: Tor Lillqvist <tml@novell.com>
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <glib.h>
|
|
|
|
#include "gcancellable.h"
|
|
#include "gioerror.h"
|
|
#include "gwinhttpfileoutputstream.h"
|
|
#include "glibintl.h"
|
|
|
|
#include "gioalias.h"
|
|
|
|
struct _GWinHttpFileOutputStream
|
|
{
|
|
GFileOutputStream parent_instance;
|
|
|
|
GWinHttpFile *file;
|
|
HINTERNET connection;
|
|
goffset offset;
|
|
};
|
|
|
|
struct _GWinHttpFileOutputStreamClass
|
|
{
|
|
GFileOutputStreamClass parent_class;
|
|
};
|
|
|
|
#define g_winhttp_file_output_stream_get_type _g_winhttp_file_output_stream_get_type
|
|
G_DEFINE_TYPE (GWinHttpFileOutputStream, g_winhttp_file_output_stream, G_TYPE_FILE_OUTPUT_STREAM);
|
|
|
|
static gssize g_winhttp_file_output_stream_write (GOutputStream *stream,
|
|
const void *buffer,
|
|
gsize count,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
static void
|
|
g_winhttp_file_output_stream_finalize (GObject *object)
|
|
{
|
|
GWinHttpFileOutputStream *winhttp_stream;
|
|
|
|
winhttp_stream = G_WINHTTP_FILE_OUTPUT_STREAM (object);
|
|
|
|
if (winhttp_stream->connection != NULL)
|
|
G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->pWinHttpCloseHandle (winhttp_stream->connection);
|
|
|
|
G_OBJECT_CLASS (g_winhttp_file_output_stream_parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
g_winhttp_file_output_stream_class_init (GWinHttpFileOutputStreamClass *klass)
|
|
{
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
GOutputStreamClass *stream_class = G_OUTPUT_STREAM_CLASS (klass);
|
|
|
|
gobject_class->finalize = g_winhttp_file_output_stream_finalize;
|
|
|
|
stream_class->write_fn = g_winhttp_file_output_stream_write;
|
|
}
|
|
|
|
static void
|
|
g_winhttp_file_output_stream_init (GWinHttpFileOutputStream *info)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* g_winhttp_file_output_stream_new:
|
|
* @file: the GWinHttpFile being read
|
|
* @connection: handle to the HTTP connection, as from WinHttpConnect()
|
|
* @request: handle to the HTTP request, as from WinHttpOpenRequest
|
|
*
|
|
* Returns: #GFileOutputStream for the given request
|
|
**/
|
|
GFileOutputStream *
|
|
_g_winhttp_file_output_stream_new (GWinHttpFile *file,
|
|
HINTERNET connection)
|
|
{
|
|
GWinHttpFileOutputStream *stream;
|
|
|
|
stream = g_object_new (G_TYPE_WINHTTP_FILE_OUTPUT_STREAM, NULL);
|
|
|
|
stream->file = file;
|
|
stream->connection = connection;
|
|
stream->offset = 0;
|
|
|
|
return G_FILE_OUTPUT_STREAM (stream);
|
|
}
|
|
|
|
static gssize
|
|
g_winhttp_file_output_stream_write (GOutputStream *stream,
|
|
const void *buffer,
|
|
gsize count,
|
|
GCancellable *cancellable,
|
|
GError **error)
|
|
{
|
|
GWinHttpFileOutputStream *winhttp_stream = G_WINHTTP_FILE_OUTPUT_STREAM (stream);
|
|
HINTERNET request;
|
|
char *headers;
|
|
wchar_t *wheaders;
|
|
DWORD bytes_written;
|
|
|
|
request = G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->pWinHttpOpenRequest
|
|
(winhttp_stream->connection,
|
|
L"PUT",
|
|
winhttp_stream->file->url.lpszUrlPath,
|
|
NULL,
|
|
WINHTTP_NO_REFERER,
|
|
NULL,
|
|
winhttp_stream->file->url.nScheme == INTERNET_SCHEME_HTTPS ? WINHTTP_FLAG_SECURE : 0);
|
|
|
|
if (request == NULL)
|
|
{
|
|
char *emsg = _g_winhttp_error_message (GetLastError ());
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
G_IO_ERROR_FAILED,
|
|
"%s", emsg);
|
|
g_free (emsg);
|
|
|
|
return -1;
|
|
}
|
|
|
|
headers = g_strdup_printf ("Content-Range: bytes %" G_GINT64_FORMAT "-%" G_GINT64_FORMAT "/*\r\n"
|
|
"Content-Length: %" G_GSIZE_FORMAT "\r\n",
|
|
winhttp_stream->offset, winhttp_stream->offset + count, count);
|
|
wheaders = g_utf8_to_utf16 (headers, -1, NULL, NULL, NULL);
|
|
g_free (headers);
|
|
|
|
if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->pWinHttpSendRequest
|
|
(request,
|
|
wheaders, -1,
|
|
NULL, 0,
|
|
0,
|
|
0))
|
|
{
|
|
char *emsg = _g_winhttp_error_message (GetLastError ());
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
G_IO_ERROR_FAILED,
|
|
"%s", emsg);
|
|
g_free (emsg);
|
|
|
|
G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->pWinHttpCloseHandle (request);
|
|
g_free (wheaders);
|
|
|
|
return -1;
|
|
}
|
|
|
|
winhttp_stream->offset += count;
|
|
g_free (wheaders);
|
|
|
|
if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->pWinHttpWriteData
|
|
(request, buffer, count, &bytes_written))
|
|
{
|
|
char *emsg = _g_winhttp_error_message (GetLastError ());
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
|
"%s",
|
|
emsg);
|
|
g_free (emsg);
|
|
|
|
G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->pWinHttpCloseHandle (request);
|
|
|
|
return -1;
|
|
}
|
|
|
|
if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->pWinHttpReceiveResponse
|
|
(request, NULL))
|
|
{
|
|
char *emsg = _g_winhttp_error_message (GetLastError ());
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
|
"%s",
|
|
emsg);
|
|
g_free (emsg);
|
|
|
|
G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->pWinHttpCloseHandle (request);
|
|
return -1;
|
|
}
|
|
|
|
G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->pWinHttpCloseHandle (request);
|
|
|
|
return bytes_written;
|
|
}
|