/* GSequencer - Advanced GTK Sequencer * Copyright (C) 2005-2020 Joël Krähemann * * This file is part of GSequencer. * * GSequencer 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 3 of the License, or * (at your option) any later version. * * GSequencer 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 GSequencer. If not, see . */ #ifndef __AGS_OSC_RESPONSE_H__ #define __AGS_OSC_RESPONSE_H__ #include #include #include #include G_BEGIN_DECLS #define AGS_TYPE_OSC_RESPONSE (ags_osc_response_get_type ()) #define AGS_OSC_RESPONSE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_OSC_RESPONSE, AgsOscResponse)) #define AGS_OSC_RESPONSE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST((class), AGS_TYPE_OSC_RESPONSE, AgsOscResponseClass)) #define AGS_IS_OSC_RESPONSE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), AGS_TYPE_OSC_RESPONSE)) #define AGS_IS_OSC_RESPONSE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), AGS_TYPE_OSC_RESPONSE)) #define AGS_OSC_RESPONSE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), AGS_TYPE_OSC_RESPONSE, AgsOscResponseClass)) #define AGS_OSC_RESPONSE_GET_OBJ_MUTEX(obj) (&(((AgsOscResponse *) obj)->obj_mutex)) #define AGS_OSC_RESPONSE_ERROR_MESSAGE_SERVER_FAILURE "server failure" #define AGS_OSC_RESPONSE_ERROR_MESSAGE_MALFORMED_REQUEST "malformed request" #define AGS_OSC_RESPONSE_ERROR_MESSAGE_UNKNOWN_PATH "unknown path" #define AGS_OSC_RESPONSE_ERROR_MESSAGE_UNKNOWN_ARGUMENT "unknown argument" #define AGS_OSC_RESPONSE_ERROR_MESSAGE_MISSING_INDEX "missing index" #define AGS_OSC_RESPONSE_ERROR_MESSAGE_CHUNK_SIZE_EXCEEDED "chunk size exceeded" #define AGS_OSC_RESPONSE_DEFAULT_CHUNK_SIZE (131072) typedef struct _AgsOscResponse AgsOscResponse; typedef struct _AgsOscResponseClass AgsOscResponseClass; /** * AgsOscResponseFlags: * @AGS_OSC_RESPONSE_EMPTY: is empty * @AGS_OSC_RESPONSE_OK: is OK * @AGS_OSC_RESPONSE_ERROR: has error * * Enum values to configure OSC response. */ typedef enum{ AGS_OSC_RESPONSE_EMPTY = 1, AGS_OSC_RESPONSE_OK = 1 << 1, AGS_OSC_RESPONSE_ERROR = 1 << 2, }AgsOscResponseFlags; struct _AgsOscResponse { GObject gobject; guint flags; GRecMutex obj_mutex; guchar *packet; guint packet_size; gchar *error_message; GObject *osc_message; struct timespec *creation_time; }; struct _AgsOscResponseClass { GObjectClass gobject; }; GType ags_osc_response_get_type(void); gboolean ags_osc_response_test_flags(AgsOscResponse *osc_response, guint flags); void ags_osc_response_set_flags(AgsOscResponse *osc_response, guint flags); void ags_osc_response_unset_flags(AgsOscResponse *osc_response, guint flags); AgsOscResponse* ags_osc_response_new(); G_END_DECLS #endif /*__AGS_OSC_RESPONSE_H__*/