guacamole-spice-protocol/libguac/include/protocol.h

393 lines
14 KiB
C
Raw Normal View History

2010-12-08 21:14:04 +00:00
2011-02-16 02:04:36 +00:00
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
2010-12-08 21:14:04 +00:00
*
2011-02-16 02:04:36 +00:00
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
2010-12-08 21:14:04 +00:00
*
2011-02-16 02:04:36 +00:00
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
2010-12-08 21:14:04 +00:00
*
2011-02-16 02:04:36 +00:00
* The Original Code is libguac.
*
* The Initial Developer of the Original Code is
* Michael Jumper.
* Portions created by the Initial Developer are Copyright (C) 2010
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
2010-12-08 21:14:04 +00:00
#ifndef _GUAC_PROTOCOL_H
#define _GUAC_PROTOCOL_H
2010-12-08 21:14:04 +00:00
2011-03-27 23:32:49 +00:00
#include <cairo/cairo.h>
2010-12-08 21:14:04 +00:00
#include "socket.h"
2010-12-08 21:14:04 +00:00
/**
* Provides functions and structures required for communicating using the
* Guacamole protocol over a guac_socket connection, such as that provided by
2010-12-08 21:14:04 +00:00
* guac_client objects.
*
* @file protocol.h
*/
2011-11-21 10:05:05 +00:00
/**
* An arbitrary timestamp denoting a relative time value in milliseconds.
*/
typedef int64_t guac_timestamp;
2011-03-30 07:03:32 +00:00
/**
* Composite modes used by Guacamole draw instructions. Each
* composite mode maps to a unique channel mask integer.
*/
typedef enum guac_composite_mode {
2011-03-30 07:03:32 +00:00
/*
* A: Source where destination transparent = S n D'
* B: Source where destination opaque = S n D
* C: Destination where source transparent = D n S'
* D: Destination where source opaque = D n S
2011-03-30 07:03:32 +00:00
*
* 0 = Active, 1 = Inactive
*/
/* ABCD */
GUAC_COMP_ROUT = 0x2, /* 0010 - Clears destination where source opaque */
GUAC_COMP_ATOP = 0x6, /* 0110 - Fill where destination opaque only */
GUAC_COMP_XOR = 0xA, /* 1010 - XOR */
GUAC_COMP_ROVER = 0xB, /* 1011 - Fill where destination transparent only */
GUAC_COMP_OVER = 0xE, /* 1110 - Draw normally */
GUAC_COMP_PLUS = 0xF, /* 1111 - Add */
/* Unimplemented in client: */
/* NOT IMPLEMENTED: 0000 - Clear */
/* NOT IMPLEMENTED: 0011 - No operation */
/* NOT IMPLEMENTED: 0101 - Additive IN */
/* NOT IMPLEMENTED: 0111 - Additive ATOP */
/* NOT IMPLEMENTED: 1101 - Additive RATOP */
/* Buggy in webkit browsers, as they keep channel C on in all cases: */
GUAC_COMP_RIN = 0x1, /* 0001 */
GUAC_COMP_IN = 0x4, /* 0100 */
GUAC_COMP_OUT = 0x8, /* 1000 */
GUAC_COMP_RATOP = 0x9, /* 1001 */
GUAC_COMP_SRC = 0xC /* 1100 */
2011-03-30 07:03:32 +00:00
} guac_composite_mode;
2011-03-30 07:03:32 +00:00
typedef struct guac_layer guac_layer;
/**
* Represents a single layer within the Guacamole protocol.
*/
struct guac_layer {
/**
* The index of this layer.
*/
int index;
/**
* The next allocated layer in the list of all layers.
*/
guac_layer* __next;
/**
* The next available (unused) layer in the list of
* allocated but free'd layers.
*/
guac_layer* __next_available;
};
2011-03-30 07:03:32 +00:00
2010-12-08 21:14:04 +00:00
/**
* Represents a single instruction within the Guacamole protocol.
*/
typedef struct guac_instruction {
/**
* The opcode of the instruction.
*/
char* opcode;
/**
* The number of arguments passed to this instruction.
*/
int argc;
/**
* Array of all arguments passed to this instruction.
2010-12-08 21:14:04 +00:00
*/
char** argv;
} guac_instruction;
/**
* Frees all memory allocated to the given instruction.
2010-12-08 21:14:04 +00:00
*
* @param instruction The instruction to free.
*/
void guac_instruction_free(guac_instruction* instruction);
2010-12-08 21:14:04 +00:00
/**
* Sends an args instruction over the given guac_socket connection.
*
2011-11-21 10:05:05 +00:00
* If an error occurs sending the instruction, a non-zero value is
* returned, and guac_error is set appropriately.
*
* @param io The guac_socket connection to use.
* @param args The NULL-terminated array of argument names (strings).
* @return Zero on success, non-zero on error.
*/
int guac_protocol_send_args(guac_socket* io, const char** name);
2010-12-08 21:14:04 +00:00
/**
* Sends a name instruction over the given guac_socket connection.
2010-12-08 21:14:04 +00:00
*
* @param io The guac_socket connection to use.
2010-12-08 21:14:04 +00:00
* @param name The name to send within the name instruction.
* @return Zero on success, non-zero on error.
2010-12-08 21:14:04 +00:00
*/
int guac_protocol_send_name(guac_socket* io, const char* name);
2010-12-08 21:14:04 +00:00
2011-03-12 02:57:53 +00:00
/**
* Sends a sync instruction over the given guac_socket connection. The
2011-03-12 02:57:53 +00:00
* current time in milliseconds should be passed in as the timestamp.
*
2011-11-21 10:05:05 +00:00
* If an error occurs sending the instruction, a non-zero value is
* returned, and guac_error is set appropriately.
*
* @param io The guac_socket connection to use.
2011-03-12 02:57:53 +00:00
* @param timestamp The current timestamp (in milliseconds).
* @return Zero on success, non-zero on error.
2011-03-12 02:57:53 +00:00
*/
int guac_protocol_send_sync(guac_socket* io, guac_timestamp timestamp);
2011-03-12 02:57:53 +00:00
2010-12-08 21:14:04 +00:00
/**
* Sends an error instruction over the given guac_socket connection.
2010-12-08 21:14:04 +00:00
*
2011-11-21 10:05:05 +00:00
* If an error occurs sending the instruction, a non-zero value is
* returned, and guac_error is set appropriately.
*
* @param io The guac_socket connection to use.
2010-12-08 21:14:04 +00:00
* @param error The description associated with the error.
* @return Zero on success, non-zero on error.
2010-12-08 21:14:04 +00:00
*/
int guac_protocol_send_error(guac_socket* io, const char* error);
2010-12-08 21:14:04 +00:00
/**
* Sends a clipboard instruction over the given guac_socket connection.
2010-12-08 21:14:04 +00:00
*
2011-11-21 10:05:05 +00:00
* If an error occurs sending the instruction, a non-zero value is
* returned, and guac_error is set appropriately.
*
* @param io The guac_socket connection to use.
2010-12-08 21:14:04 +00:00
* @param data The clipboard data to send.
* @return Zero on success, non-zero on error.
2010-12-08 21:14:04 +00:00
*/
int guac_protocol_send_clipboard(guac_socket* io, const char* data);
2010-12-08 21:14:04 +00:00
/**
* Sends a size instruction over the given guac_socket connection.
2010-12-08 21:14:04 +00:00
*
2011-11-21 10:05:05 +00:00
* If an error occurs sending the instruction, a non-zero value is
* returned, and guac_error is set appropriately.
*
* @param io The guac_socket connection to use.
2010-12-08 21:14:04 +00:00
* @param w The width of the display.
* @param h The height of the display.
* @return Zero on success, non-zero on error.
2010-12-08 21:14:04 +00:00
*/
int guac_protocol_send_size(guac_socket* io, int w, int h);
2010-12-08 21:14:04 +00:00
/**
* Sends a copy instruction over the given guac_socket connection.
2010-12-08 21:14:04 +00:00
*
2011-11-21 10:05:05 +00:00
* If an error occurs sending the instruction, a non-zero value is
* returned, and guac_error is set appropriately.
*
* @param io The guac_socket connection to use.
* @param srcl The source layer.
2010-12-08 21:14:04 +00:00
* @param srcx The X coordinate of the source rectangle.
* @param srcy The Y coordinate of the source rectangle.
* @param w The width of the source rectangle.
* @param h The height of the source rectangle.
2011-03-30 07:03:32 +00:00
* @param mode The composite mode to use.
* @param dstl The destination layer.
2010-12-08 21:14:04 +00:00
* @param dstx The X coordinate of the destination, where the source rectangle
* should be copied.
* @param dsty The Y coordinate of the destination, where the source rectangle
* should be copied.
* @return Zero on success, non-zero on error.
2010-12-08 21:14:04 +00:00
*/
int guac_protocol_send_copy(guac_socket* io,
const guac_layer* srcl, int srcx, int srcy, int w, int h,
guac_composite_mode mode, const guac_layer* dstl, int dstx, int dsty);
2010-12-08 21:14:04 +00:00
2011-07-21 22:15:58 +00:00
/**
* Sends a rect instruction over the given guac_socket connection.
2011-07-21 22:15:58 +00:00
*
2011-11-21 10:05:05 +00:00
* If an error occurs sending the instruction, a non-zero value is
* returned, and guac_error is set appropriately.
*
* @param io The guac_socket connection to use.
2011-07-21 22:15:58 +00:00
* @param mode The composite mode to use.
* @param layer The destination layer.
* @param x The X coordinate of the rectangle.
* @param y The Y coordinate of the rectangle.
* @param width The width of the rectangle.
* @param height The height of the rectangle.
* @param r The red component of the color of the rectangle.
* @param g The green component of the color of the rectangle.
* @param b The blue component of the color of the rectangle.
* @param a The alpha (transparency) component of the color of the rectangle.
* @return Zero on success, non-zero on error.
2011-07-21 22:15:58 +00:00
*/
int guac_protocol_send_rect(guac_socket* io,
guac_composite_mode mode, const guac_layer* layer,
2011-07-21 22:15:58 +00:00
int x, int y, int width, int height,
int r, int g, int b, int a);
/**
* Sends a clip instruction over the given guac_socket connection.
*
2011-11-21 10:05:05 +00:00
* If an error occurs sending the instruction, a non-zero value is
* returned, and guac_error is set appropriately.
*
* @param io The guac_socket connection to use.
2011-07-21 22:15:58 +00:00
* @param layer The layer to set the clipping region of.
* @param x The X coordinate of the clipping rectangle.
* @param y The Y coordinate of the clipping rectangle.
* @param width The width of the clipping rectangle.
* @param height The height of the clipping rectangle.
* @return Zero on success, non-zero on error.
2011-07-21 22:15:58 +00:00
*/
int guac_protocol_send_clip(guac_socket* io, const guac_layer* layer,
2011-07-21 22:15:58 +00:00
int x, int y, int width, int height);
2010-12-08 21:14:04 +00:00
/**
* Sends a png instruction over the given guac_socket connection. The PNG image data
2010-12-08 21:14:04 +00:00
* given will be automatically base64-encoded for transmission.
*
2011-11-21 10:05:05 +00:00
* If an error occurs sending the instruction, a non-zero value is
* returned, and guac_error is set appropriately.
*
* @param io The guac_socket connection to use.
2011-03-30 07:03:32 +00:00
* @param mode The composite mode to use.
* @param layer The destination layer.
2010-12-08 21:14:04 +00:00
* @param x The destination X coordinate.
* @param y The destination Y coordinate.
2011-03-27 23:32:49 +00:00
* @param surface A cairo surface containing the image data to send.
* @return Zero on success, non-zero on error.
2010-12-08 21:14:04 +00:00
*/
int guac_protocol_send_png(guac_socket* io, guac_composite_mode mode,
const guac_layer* layer, int x, int y, cairo_surface_t* surface);
2010-12-08 21:14:04 +00:00
/**
* Sends a cursor instruction over the given guac_socket connection. The PNG image
2010-12-08 21:14:04 +00:00
* data given will be automatically base64-encoded for transmission.
*
2011-11-21 10:05:05 +00:00
* If an error occurs sending the instruction, a non-zero value is
* returned, and guac_error is set appropriately.
*
* @param io The guac_socket connection to use.
* @param x The X coordinate of the cursor hotspot.
* @param y The Y coordinate of the cursor hotspot.
2011-03-27 23:32:49 +00:00
* @param surface A cairo surface containing the image data to send.
* @return Zero on success, non-zero on error.
2010-12-08 21:14:04 +00:00
*/
int guac_protocol_send_cursor(guac_socket* io, int x, int y, cairo_surface_t* surface);
2010-12-08 21:14:04 +00:00
/**
* Returns whether new instruction data is available on the given guac_socket
2010-12-08 21:14:04 +00:00
* connection for parsing.
*
* @param io The guac_socket connection to use.
* @param usec_timeout The maximum number of microseconds to wait before
* giving up.
* @return A positive value if data is available, negative on error, or
* zero if no data is currently available.
2010-12-08 21:14:04 +00:00
*/
int guac_protocol_instructions_waiting(guac_socket* io, int usec_timeout);
2010-12-08 21:14:04 +00:00
/**
* Reads a single instruction from the given guac_socket connection.
2010-12-08 21:14:04 +00:00
*
* If an error occurs reading the instruction, NULL is returned,
* and guac_error is set appropriately.
2011-11-21 10:05:05 +00:00
*
* @param io The guac_socket connection to use.
* @param usec_timeout The maximum number of microseconds to wait before
* giving up.
* @return A new instruction if data was successfully read, NULL on
* error or if the instruction could not be read completely
* because the timeout elapsed, in which case guac_error will be
* set to GUAC_STATUS_INPUT_TIMEOUT and subsequent calls to
* guac_protocol_read_instruction() will return the parsed instruction once
* enough data is available.
2010-12-08 21:14:04 +00:00
*/
guac_instruction* guac_protocol_read_instruction(guac_socket* io, int usec_timeout);
/**
* Reads a single instruction with the given opcode from the given guac_socket
* connection.
*
* If an error occurs reading the instruction, NULL is returned,
* and guac_error is set appropriately.
*
* If the instruction read is not the expected instruction, NULL is returned,
* and guac_error is set to GUAC_STATUS_BAD_STATE.
*
* @param io The guac_socket connection to use.
* @param usec_timeout The maximum number of microseconds to wait before
* giving up.
* @param opcode The opcode of the instruction to read.
* @return A new instruction if an instruction with the given opcode was read,
* NULL otherwise. If an instruction was read, but the instruction had
* a different opcode, NULL is returned and guac_error is set to
* GUAC_STATUS_BAD_STATE.
*/
guac_instruction* guac_protocol_expect_instruction(guac_socket* io, int usec_timeout,
const char* opcode);
2010-12-08 21:14:04 +00:00
2011-11-21 10:05:05 +00:00
/**
* Returns an arbitrary timestamp. The difference between return values of any
* two calls is equal to the amount of time in milliseconds between those
* calls. The return value from a single call will not have any useful
* (or defined) meaning.
*
* @return An arbitrary millisecond timestamp.
*/
guac_timestamp guac_protocol_get_timestamp();
2011-11-21 10:05:05 +00:00
/**
* Suspends execution of the current thread for the given number of
* milliseconds.
*
* @param millis The number of milliseconds to sleep.
*/
void guac_sleep(int millis);
2010-12-08 21:14:04 +00:00
#endif