libpurple/purple-socket.h

Mon, 09 Sep 2013 14:47:22 +0200

author
Tomasz Wasilczyk <twasilczyk@pidgin.im>
date
Mon, 09 Sep 2013 14:47:22 +0200
changeset 34328
d0b5e37899e1
parent 34316
2a3a587f5403
child 35393
00f876b129bc
permissions
-rw-r--r--

Request API: allow action_count = 0

/**
 * @file purple-socket.h Generic sockets
 * @ingroup core
 */

/* purple
 *
 * Purple is the legal property of its developers, whose names are too numerous
 * to list here.  Please refer to the COPYRIGHT file distributed with this
 * source distribution.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
 */

#ifndef _PURPLE_SOCKET_H_
#define _PURPLE_SOCKET_H_

#include "connection.h"

/**
 * A structure holding all resources needed for the TCP connection.
 */
typedef struct _PurpleSocket PurpleSocket;

/**
 * A callback fired after (successfully or not) establishing a connection.
 *
 * @param ps        The socket.
 * @param error     Error message, or NULL if connection was successful.
 * @param user_data The user data passed with callback function.
 */
typedef void (*PurpleSocketConnectCb)(PurpleSocket *ps, const gchar *error,
	gpointer user_data);

/**
 * Creates new, disconnected socket.
 *
 * Passing a PurpleConnection allows for proper proxy handling.
 *
 * @param gs The connection for which the socket is needed, or NULL.
 *
 * @return   The new socket struct.
 */
PurpleSocket *
purple_socket_new(PurpleConnection *gc);

/**
 * Gets PurpleConnection tied with specified socket.
 *
 * @param ps The socket.
 *
 * @return   The PurpleConnection object.
 */
PurpleConnection *
purple_socket_get_connection(PurpleSocket *ps);

/**
 * Determines, if socket should handle TLS.
 *
 * @param ps     The socket.
 * @param is_tls TRUE, if TLS should be handled transparently, FALSE otherwise.
 */
void
purple_socket_set_tls(PurpleSocket *ps, gboolean is_tls);

/**
 * Sets connection host.
 *
 * @param ps   The socket.
 * @param host The connection host.
 */
void
purple_socket_set_host(PurpleSocket *ps, const gchar *host);

/**
 * Sets connection port.
 *
 * @param ps   The socket.
 * @param port The connection port.
 */
void
purple_socket_set_port(PurpleSocket *ps, int port);

/**
 * Establishes a connection.
 *
 * @param ps        The socket.
 * @param cb        The function to call after establishing a connection, or on
 *                  error.
 * @param user_data The user data to be passed to callback function.
 *
 * @return TRUE on success (this doesn't mean it's connected yet), FALSE
 *         otherwise.
 */
gboolean
purple_socket_connect(PurpleSocket *ps, PurpleSocketConnectCb cb,
	gpointer user_data);

/**
 * Reads incoming data from socket.
 *
 * This function deals with TLS, if the socket is configured to do it.
 *
 * @param ps  The socket.
 * @param buf The buffer to write data to.
 * @param len The buffer size.
 *
 * @return Amount of data written, or -1 on error (errno will be also be set).
 */
gssize
purple_socket_read(PurpleSocket *ps, guchar *buf, size_t len);

/**
 * Sends data through socket.
 *
 * This function deals with TLS, if the socket is configured to do it.
 *
 * @param ps  The socket.
 * @param buf The buffer to read data from.
 * @param len The amount of data to read and send.
 *
 * @param Amount of data sent, or -1 on error (errno will albo be set).
 */
gssize
purple_socket_write(PurpleSocket *ps, const guchar *buf, size_t len);

/**
 * Adds an input handler for the socket.
 *
 * If the specified socket had input handler already registered, it will be
 * removed. To remove any input handlers, pass an NULL handler function.
 *
 * @param ps        The socket.
 * @param cond      The condition type.
 * @param func      The callback function for data, or NULL to remove any
 *                  existing callbacks.
 * @param user_data The user data to be passed to callback function.
 */
void
purple_socket_watch(PurpleSocket *ps, PurpleInputCondition cond,
	PurpleInputFunction func, gpointer user_data);

/**
 * Gets underlying file descriptor for socket.
 *
 * It's not meant to read/write data (use purple_socket_read/
 * purple_socket_write), rather for watching for changes with select().
 *
 * @param ps The socket
 *
 * @return The file descriptor, or -1 on error.
 */
int
purple_socket_get_fd(PurpleSocket *ps);

/**
 * Sets extra data for a socket.
 *
 * @param ps   The socket.
 * @param key  The unique key.
 * @param data The data to assign, or NULL to remove.
 */
void
purple_socket_set_data(PurpleSocket *ps, const gchar *key, gpointer data);

/**
 * Returns extra data in a socket.
 *
 * @param ps  The socket.
 * @param key The unqiue key.
 *
 * @return The data associated with the key.
 */
gpointer
purple_socket_get_data(PurpleSocket *ps, const gchar *key);

/**
 * Destroys the socket, closes connection and frees all resources.
 *
 * If file descriptor for the socket was extracted with purple_socket_get_fd and
 * added to event loop, it have to be removed prior this.
 *
 * @param ps The socket.
 */
void
purple_socket_destroy(PurpleSocket *ps);

#endif /* _PURPLE_SOCKET_H_ */

mercurial