Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
137 lines
4.8 KiB
C
137 lines
4.8 KiB
C
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */
|
|
/*
|
|
* nimf-message-private.h
|
|
* This file is part of Nimf.
|
|
*
|
|
* Copyright (C) 2015-2019 Hodong Kim <cogniti@gmail.com>
|
|
*
|
|
* Nimf is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Nimf 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __NIMF_MESSAGE_H__
|
|
#define __NIMF_MESSAGE_H__
|
|
|
|
#include <glib-object.h>
|
|
#include "nimf-events.h"
|
|
#include <gio/gio.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef struct _NimfMessage NimfMessage;
|
|
typedef struct _NimfMessageHeader NimfMessageHeader;
|
|
|
|
typedef enum
|
|
{
|
|
NIMF_MESSAGE_NONE = 0,
|
|
/* im methods */
|
|
NIMF_MESSAGE_CREATE_CONTEXT,
|
|
NIMF_MESSAGE_CREATE_CONTEXT_REPLY,
|
|
NIMF_MESSAGE_DESTROY_CONTEXT,
|
|
NIMF_MESSAGE_DESTROY_CONTEXT_REPLY,
|
|
NIMF_MESSAGE_FILTER_EVENT,
|
|
NIMF_MESSAGE_FILTER_EVENT_REPLY,
|
|
NIMF_MESSAGE_RESET,
|
|
NIMF_MESSAGE_RESET_REPLY,
|
|
NIMF_MESSAGE_FOCUS_IN,
|
|
NIMF_MESSAGE_FOCUS_IN_REPLY,
|
|
NIMF_MESSAGE_FOCUS_OUT,
|
|
NIMF_MESSAGE_FOCUS_OUT_REPLY,
|
|
NIMF_MESSAGE_SET_SURROUNDING,
|
|
NIMF_MESSAGE_SET_SURROUNDING_REPLY,
|
|
NIMF_MESSAGE_SET_CURSOR_LOCATION,
|
|
NIMF_MESSAGE_SET_CURSOR_LOCATION_REPLY,
|
|
NIMF_MESSAGE_SET_USE_PREEDIT,
|
|
NIMF_MESSAGE_SET_USE_PREEDIT_REPLY,
|
|
/* context signals */
|
|
NIMF_MESSAGE_PREEDIT_START,
|
|
NIMF_MESSAGE_PREEDIT_START_REPLY,
|
|
NIMF_MESSAGE_PREEDIT_END,
|
|
NIMF_MESSAGE_PREEDIT_END_REPLY,
|
|
NIMF_MESSAGE_PREEDIT_CHANGED,
|
|
NIMF_MESSAGE_PREEDIT_CHANGED_REPLY,
|
|
NIMF_MESSAGE_COMMIT,
|
|
NIMF_MESSAGE_COMMIT_REPLY,
|
|
NIMF_MESSAGE_RETRIEVE_SURROUNDING,
|
|
NIMF_MESSAGE_RETRIEVE_SURROUNDING_REPLY,
|
|
NIMF_MESSAGE_DELETE_SURROUNDING,
|
|
NIMF_MESSAGE_DELETE_SURROUNDING_REPLY,
|
|
/* misc */
|
|
NIMF_MESSAGE_BEEP,
|
|
NIMF_MESSAGE_BEEP_REPLY,
|
|
} NimfMessageType;
|
|
|
|
struct _NimfMessageHeader
|
|
{
|
|
guint16 icid;
|
|
NimfMessageType type;
|
|
guint16 data_len;
|
|
};
|
|
|
|
struct _NimfMessage
|
|
{
|
|
NimfMessageHeader *header;
|
|
gchar *data;
|
|
GDestroyNotify data_destroy_func;
|
|
gint ref_count;
|
|
};
|
|
|
|
typedef struct _NimfResult NimfResult;
|
|
|
|
struct _NimfResult
|
|
{
|
|
gboolean is_dispatched;
|
|
NimfMessage *reply;
|
|
gint ref_count;
|
|
};
|
|
|
|
NimfMessage *nimf_message_new (void);
|
|
NimfMessage *nimf_message_new_full (NimfMessageType type,
|
|
guint16 im_id,
|
|
gpointer data,
|
|
guint16 data_len,
|
|
GDestroyNotify data_destroy_func);
|
|
NimfMessage *nimf_message_ref (NimfMessage *message);
|
|
void nimf_message_unref (NimfMessage *message);
|
|
const NimfMessageHeader *
|
|
nimf_message_get_header (NimfMessage *message);
|
|
guint16 nimf_message_get_header_size (void);
|
|
void nimf_message_set_body (NimfMessage *message,
|
|
gchar *data,
|
|
guint16 data_len,
|
|
GDestroyNotify data_destroy_func);
|
|
const gchar *nimf_message_get_body (NimfMessage *message);
|
|
guint16 nimf_message_get_body_size (NimfMessage *message);
|
|
const gchar *nimf_message_get_name (NimfMessage *message);
|
|
const gchar *nimf_message_get_name_by_type (NimfMessageType type);
|
|
|
|
NimfResult *nimf_result_new (void);
|
|
NimfResult *nimf_result_ref (NimfResult *result);
|
|
void nimf_result_unref (NimfResult *result);
|
|
void nimf_result_iteration_until (NimfResult *result,
|
|
GMainContext *main_context,
|
|
guint16 icid,
|
|
NimfMessageType type);
|
|
void nimf_send_message (GSocket *socket,
|
|
guint16 im_id,
|
|
NimfMessageType type,
|
|
gpointer data,
|
|
guint16 data_len,
|
|
GDestroyNotify data_destroy_func);
|
|
NimfMessage *nimf_recv_message (GSocket *socket);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __NIMF_MESSAGE_H__ */
|