/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* gnome-vfs-socket.c * * Copyright (C) 2001 Seth Nickell * Copyright (C) 2001 Maciej Stachowiak * * The Gnome 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. * * The Gnome 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 the Gnome Library; see the file COPYING.LIB. If not, * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * */ /* * Authors: Seth Nickell * Maciej Stachowiak * (reverse-engineered from code by Ian McKellar ) */ #include #include "gnome-vfs-socket.h" #include struct GnomeVFSSocket { GnomeVFSSocketImpl *impl; gpointer connection; }; /** * gnome_vfs_socket_new: * @impl: an implementation of a socket, e.g. GnomeVFSSSL * @connection: pointer to a connection object used by @impl to track * state (the exact nature of @connection varies from implementation to * implementation) * * Creates a new GnomeVFS Socket using the specific implementation * @impl. * * Return value: a newly created socket **/ GnomeVFSSocket* gnome_vfs_socket_new (GnomeVFSSocketImpl *impl, void *connection) { GnomeVFSSocket *socket; socket = g_new0 (GnomeVFSSocket, 1); socket->impl = impl; socket->connection = connection; return socket; } /** * gnome_vfs_socket_write: * @socket: socket to write data to * @buffer: data to write to the socket * @bytes: number of bytes from @buffer to write to @socket * @bytes_written: pointer to a GnomeVFSFileSize, will contain * the number of bytes actually written to the socket on return. * * Write @bytes bytes of data from @buffer to @socket. * * Return value: GnomeVFSResult indicating the success of the operation **/ GnomeVFSResult gnome_vfs_socket_write (GnomeVFSSocket *socket, gconstpointer buffer, int bytes, GnomeVFSFileSize *bytes_written) { return socket->impl->write (socket->connection, buffer, bytes, bytes_written); } /** * gnome_vfs_socket_close: * @socket: the socket to be closed * * Close @socket, freeing any resources it may be using. * * Return value: GnomeVFSResult indicating the success of the operation **/ GnomeVFSResult gnome_vfs_socket_close (GnomeVFSSocket *socket) { socket->impl->close (socket->connection); return GNOME_VFS_OK; } /** * gnome_vfs_socket_read: * @socket: socket to read data from * @buffer: allocated buffer of at least @bytes bytes to be read into * @bytes: number of bytes to read from @socket into @buffer * @bytes_read: pointer to a GnomeVFSFileSize, will contain * the number of bytes actually read from the socket on return. * * Read @bytes bytes of data from the @socket into @buffer. * * Return value: GnomeVFSResult indicating the success of the operation **/ GnomeVFSResult gnome_vfs_socket_read (GnomeVFSSocket *socket, gpointer buffer, GnomeVFSFileSize bytes, GnomeVFSFileSize *bytes_read) { return socket->impl->read (socket->connection, buffer, bytes, bytes_read); }