mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 22:40:30 +00:00
125 lines
2.6 KiB
C
125 lines
2.6 KiB
C
#ifndef _MESSAGING_H
|
|
#define _MESSAGING_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#include "config_unix.h"
|
|
#include "config_win32.h"
|
|
#endif
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct messaging;
|
|
struct module;
|
|
|
|
struct response {
|
|
int status;
|
|
void (*deleter)(struct response*);
|
|
char *text;
|
|
};
|
|
|
|
#define RESPONSE_OK 200
|
|
#define RESPONSE_ACCEPTED 202
|
|
#define RESPONSE_BAD_REQUEST 400
|
|
#define RESPONSE_NOT_FOUND 404
|
|
#define RESPONSE_INT_SERV_ERR 500
|
|
#define RESPONSE_NOT_IMPL 501
|
|
|
|
struct message;
|
|
|
|
struct message {
|
|
/**
|
|
* Individual message types may have defined custom data deleters.
|
|
* Please note that the deleter must not delete the struct itself.
|
|
*/
|
|
void (*data_deleter)(struct message *);
|
|
};
|
|
|
|
enum msg_sender_type {
|
|
SENDER_MSG_CHANGE_RECEIVER,
|
|
SENDER_MSG_CHANGE_PORT,
|
|
SENDER_MSG_PLAY,
|
|
SENDER_MSG_PAUSE,
|
|
SENDER_MSG_CHANGE_FEC,
|
|
};
|
|
|
|
struct msg_sender {
|
|
struct message m;
|
|
enum msg_sender_type type;
|
|
union {
|
|
int port;
|
|
char receiver[128];
|
|
char fec_cfg[1024];
|
|
};
|
|
};
|
|
|
|
enum msg_receiver_type {
|
|
RECEIVER_MSG_CHANGE_RX_PORT,
|
|
RECEIVER_MSG_VIDEO_PROP_CHANGED,
|
|
};
|
|
struct msg_receiver {
|
|
struct message m;
|
|
enum msg_receiver_type type;
|
|
union {
|
|
uint16_t new_rx_port;
|
|
struct video_desc new_desc;
|
|
};
|
|
};
|
|
|
|
struct msg_change_fec_data {
|
|
struct message m;
|
|
enum tx_media_type media_type;
|
|
char fec[128];
|
|
};
|
|
|
|
enum compress_change_type {
|
|
CHANGE_COMPRESS,
|
|
CHANGE_PARAMS
|
|
};
|
|
|
|
struct msg_change_compress_data {
|
|
struct message m;
|
|
enum compress_change_type what;
|
|
char config_string[128];
|
|
};
|
|
|
|
struct msg_stats {
|
|
struct message m;
|
|
char what[128];
|
|
int value;
|
|
};
|
|
|
|
struct msg_universal {
|
|
struct message m;
|
|
char text[8192];
|
|
};
|
|
|
|
struct pair_msg_path {
|
|
char path[8192];
|
|
struct message *msg;
|
|
};
|
|
|
|
struct response *new_response(int status, char *optional_message);
|
|
|
|
typedef struct response *(*msg_callback_t)(struct module *mod, struct message *msg);
|
|
|
|
void module_check_undelivered_messages(struct module *);
|
|
struct response *send_message(struct module *, const char *path, struct message *msg);
|
|
struct response *send_message_to_receiver(struct module *, struct message *msg);
|
|
struct message *new_message(size_t length);
|
|
void free_message(struct message *m);
|
|
const char *response_status_to_text(int status);
|
|
|
|
struct message *check_message(struct module *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif// _MESSAGING_H
|
|
|