1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
|
/* vim:set et ts=4 sts=4:
*
* ibus-libpinyin - Intelligent Pinyin engine based on libpinyin for IBus
*
* Copyright (c) 2010 Peng Wu <alexepico@gmail.com>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include <string.h>
#include <stdlib.h>
#include "lua-plugin.h"
#if LUA_VERSION_NUM >= 502
/* ugly hack for lua 5.2 */
#define lua_open luaL_newstate
#ifndef lua_objlen
#define lua_objlen lua_rawlen
#endif
#endif
struct _IBusEnginePluginPrivate{
lua_State * L;
GArray * lua_commands; /* Array of lua_command_t. */
GArray * lua_triggers; /* Array of lua_trigger_t. */
GArray * lua_converters; /* Array of lua_converter_t. */
gchar * use_converter;
};
G_DEFINE_TYPE_WITH_CODE (IBusEnginePlugin, ibus_engine_plugin, G_TYPE_OBJECT, G_ADD_PRIVATE (IBusEnginePlugin));
#define IBUS_ENGINE_PLUGIN_GET_PRIVATE(obj) (ibus_engine_plugin_get_instance_private (obj))
static void lua_command_clone(lua_command_t * command, lua_command_t * new_command){
new_command->command_name = g_strdup(command->command_name);
new_command->lua_function_name = g_strdup(command->lua_function_name);
new_command->description = g_strdup(command->description);
new_command->leading = g_strdup(command->leading);
new_command->help = g_strdup(command->help);
}
static void lua_command_reclaim(lua_command_t * command){
g_free((gpointer)command->command_name);
g_free((gpointer)command->lua_function_name);
g_free((gpointer)command->description);
g_free((gpointer)command->leading);
g_free((gpointer)command->help);
}
static void lua_trigger_clone(lua_trigger_t * trigger, lua_trigger_t * new_trigger){
new_trigger->lua_function_name = g_strdup(trigger->lua_function_name);
new_trigger->description = g_strdup(trigger->description);
new_trigger->input_trigger_strings = g_strdupv(trigger->input_trigger_strings);
new_trigger->candidate_trigger_strings = g_strdupv(trigger->candidate_trigger_strings);
}
static void lua_trigger_reclaim(lua_trigger_t * trigger){
g_free((gpointer)trigger->lua_function_name);
g_free((gpointer)trigger->description);
g_strfreev((gchar **)trigger->input_trigger_strings);
g_strfreev((gchar **)trigger->candidate_trigger_strings);
}
static void lua_converter_clone(lua_converter_t * converter, lua_converter_t * new_converter){
new_converter->lua_function_name = g_strdup(converter->lua_function_name);
new_converter->description = g_strdup(converter->description);
}
static void lua_converter_reclaim(lua_converter_t * converter){
g_free((gpointer)converter->lua_function_name);
g_free((gpointer)converter->description);
}
static int
lua_plugin_init(IBusEnginePluginPrivate * plugin){
g_assert(NULL == plugin->L);
/* initialize Lua */
plugin->L = lua_open();
/* enable libs in sandbox */
lua_plugin_openlibs(plugin->L);
g_assert ( NULL == plugin->lua_commands );
plugin->lua_commands = g_array_new(TRUE, TRUE, sizeof(lua_command_t));
g_assert ( NULL == plugin->lua_triggers );
plugin->lua_triggers = g_array_new(TRUE, TRUE, sizeof(lua_trigger_t));
g_assert ( NULL == plugin->lua_converters );
plugin->lua_converters = g_array_new(TRUE, TRUE, sizeof(lua_converter_t));
plugin->use_converter = NULL;
return 0;
}
static int
lua_plugin_fini(IBusEnginePluginPrivate * plugin){
size_t i;
lua_command_t * command;
lua_trigger_t * trigger;
lua_converter_t * converter;
if ( plugin->lua_commands ){
for ( i = 0; i < plugin->lua_commands->len; ++i){
command = &g_array_index(plugin->lua_commands, lua_command_t, i);
lua_command_reclaim(command);
}
g_array_free(plugin->lua_commands, TRUE);
plugin->lua_commands = NULL;
}
if ( plugin->lua_triggers ){
for ( i = 0; i < plugin->lua_triggers->len; ++i){
trigger = &g_array_index(plugin->lua_triggers, lua_trigger_t, i);
lua_trigger_reclaim(trigger);
}
g_array_free(plugin->lua_triggers, TRUE);
plugin->lua_triggers = NULL;
}
if ( plugin->lua_converters ){
for ( i = 0; i < plugin->lua_converters->len; ++i){
converter = &g_array_index(plugin->lua_converters, lua_converter_t, i);
lua_converter_reclaim(converter);
}
g_array_free(plugin->lua_converters, TRUE);
plugin->lua_converters = NULL;
}
lua_close(plugin->L);
plugin->L = NULL;
g_free(plugin->use_converter);
plugin->use_converter = NULL;
return 0;
}
static void
ibus_engine_plugin_finalize (GObject *gobject)
{
IBusEnginePlugin *self = IBUS_ENGINE_PLUGIN (gobject);
/* do some cleaning here. */
lua_plugin_fini(self->priv);
/* Chain up to the parent class */
G_OBJECT_CLASS (ibus_engine_plugin_parent_class)->dispose(gobject);
}
static void
ibus_engine_plugin_class_init (IBusEnginePluginClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
gobject_class->finalize = ibus_engine_plugin_finalize;
}
static void
ibus_engine_plugin_init (IBusEnginePlugin *self)
{
IBusEnginePluginPrivate *priv;
self->priv = priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE (self);
memset(priv, 0, sizeof(IBusEnginePluginPrivate));
lua_plugin_init(priv);
lua_plugin_store_plugin(priv->L, self);
}
IBusEnginePlugin * ibus_engine_plugin_new(){
IBusEnginePlugin * plugin;
plugin = (IBusEnginePlugin *) g_object_new (IBUS_TYPE_ENGINE_PLUGIN,
NULL);
return plugin;
}
static void l_message (const char *pname, const char *msg) {
if (pname) fprintf(stderr, "%s: ", pname);
fprintf(stderr, "%s\n", msg);
fflush(stderr);
}
static int report (lua_State *L, int status) {
if (status && !lua_isnil(L, -1)) {
const char *msg = lua_tostring(L, -1);
if (msg == NULL) msg = "(error object is not a string)";
l_message(NULL, msg);
lua_pop(L, 1);
}
return status;
}
int ibus_engine_plugin_load_lua_script(IBusEnginePlugin * plugin, const char * filename){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
int status = luaL_dofile(priv->L, filename);
return report(priv->L, status);
}
static gint compare_command(gconstpointer a, gconstpointer b){
lua_command_t * ca = (lua_command_t *) a;
lua_command_t * cb = (lua_command_t *) b;
return strcmp(ca->command_name, cb->command_name);
}
gboolean ibus_engine_plugin_add_command(IBusEnginePlugin * plugin, lua_command_t * command){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
GArray * lua_commands = priv->lua_commands;
if ( ibus_engine_plugin_lookup_command( plugin, command->command_name) )
return FALSE;
lua_command_t new_command;
lua_command_clone(command, &new_command);
g_array_append_val(lua_commands, new_command);
/* Note: need to improve speed here? */
g_array_sort(lua_commands, compare_command);
return TRUE;
}
const lua_command_t * ibus_engine_plugin_lookup_command(IBusEnginePlugin * plugin, const char * command_name){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
GArray * lua_commands = priv->lua_commands;
lua_command_t lookup_command = {.command_name = command_name, };
lua_command_t * result = bsearch(&lookup_command, lua_commands->data, lua_commands->len, sizeof(lua_command_t), compare_command);
return result;
}
const GArray * ibus_engine_plugin_get_available_commands(IBusEnginePlugin * plugin){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
return priv->lua_commands;
}
gboolean ibus_engine_plugin_add_trigger(IBusEnginePlugin * plugin, lua_trigger_t * trigger){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
GArray * lua_triggers = priv->lua_triggers;
lua_trigger_t new_trigger;
lua_trigger_clone(trigger, &new_trigger);
g_array_append_val(lua_triggers, new_trigger);
return TRUE;
}
const GArray * ibus_engine_plugin_get_available_triggers(IBusEnginePlugin * plugin){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
return priv->lua_triggers;
}
gboolean ibus_engine_plugin_match_input(IBusEnginePlugin * plugin, const char * input, const char ** lua_function_name){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
GArray * lua_triggers = priv->lua_triggers;
gint i; gchar ** pattern;
for (i = 0; i < lua_triggers->len; ++i){
lua_trigger_t * trigger = &g_array_index(lua_triggers, lua_trigger_t, i);
for (pattern = trigger->input_trigger_strings; *pattern != NULL; ++pattern){
if (g_pattern_match_simple(*pattern, input)){
*lua_function_name = trigger->lua_function_name;
return TRUE;
}
}
}
return FALSE;
}
gboolean ibus_engine_plugin_match_candidate(IBusEnginePlugin * plugin, const char * candidate, const char ** lua_function_name){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
GArray * lua_triggers = priv->lua_triggers;
gint i; gchar ** pattern;
for (i = 0; i < lua_triggers->len; ++i){
lua_trigger_t * trigger = &g_array_index(lua_triggers, lua_trigger_t, i);
for (pattern = trigger->candidate_trigger_strings; *pattern != NULL; ++pattern){
if (g_pattern_match_simple(*pattern, candidate)){
*lua_function_name = trigger->lua_function_name;
return TRUE;
}
}
}
return FALSE;
}
gboolean ibus_engine_plugin_add_converter(IBusEnginePlugin * plugin, lua_converter_t * converter){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
GArray * lua_converters = priv->lua_converters;
lua_converter_t new_converter;
lua_converter_clone(converter, &new_converter);
g_array_append_val(lua_converters, new_converter);
return TRUE;
}
const GArray * ibus_engine_plugin_get_available_converters(IBusEnginePlugin * plugin){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
return priv->lua_converters;
}
gboolean ibus_engine_plugin_set_converter(IBusEnginePlugin * plugin, const char * lua_function_name){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
GArray * lua_converters = priv->lua_converters;
if (lua_function_name == NULL || *lua_function_name == '\0') {
g_free(priv->use_converter);
priv->use_converter = NULL;
return TRUE;
}
/* The Lua converter is not changed. */
if (g_strcmp0 (priv->use_converter, lua_function_name) == 0)
return TRUE;
gint i;
for (i = 0; i < lua_converters->len; ++i) {
lua_converter_t * converter = &g_array_index
(lua_converters, lua_converter_t, i);
if (g_strcmp0 (converter->lua_function_name, lua_function_name) == 0) {
g_free(priv->use_converter);
priv->use_converter = g_strdup(lua_function_name);
return TRUE;
}
}
return FALSE;
}
const char * ibus_engine_plugin_get_converter(IBusEnginePlugin * plugin){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
return priv->use_converter;
}
int ibus_engine_plugin_call(IBusEnginePlugin * plugin, const char * lua_function_name, const char * argument /*optional, maybe NULL.*/){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
int type; int result;
lua_State * L = priv->L;
/* In google pinyin, argument can't be NULL,
but empty string is acceptable. */
if (NULL == argument) argument = "";
/* check whether lua_function_name exists. */
lua_getglobal(L, lua_function_name);
type = lua_type(L, -1);
if ( LUA_TFUNCTION != type )
return 0;
lua_pushstring(L, argument);
result = lua_pcall(L, 1, 1, 0);
if (result) return 0;
type = lua_type(L, -1);
if ( LUA_TTABLE == type ){
return lua_objlen(L, -1);
} else if (LUA_TNUMBER == type || LUA_TBOOLEAN == type || LUA_TSTRING == type){
return 1;
}
return 0;
}
/**
* get a candidate from lua return value.
*/
static const lua_command_candidate_t * ibus_engine_plugin_get_candidate(lua_State * L){
const char * suggest, * help, * content = NULL;
lua_command_candidate_t * candidate = malloc(sizeof(lua_command_candidate_t));
memset(candidate, 0, sizeof(lua_command_candidate_t));
int type = lua_type(L, -1);
if ( LUA_TTABLE == type ){
lua_pushliteral(L, "suggest");
lua_gettable(L, -2);
lua_pushliteral(L, "help");
lua_gettable(L, -3);
suggest = lua_tostring(L, -2);
help = lua_tostring(L, -1);
candidate->suggest = g_strdup(suggest);
candidate->help = g_strdup(help);
lua_pop(L, 2);
} else if (LUA_TNUMBER == type || LUA_TBOOLEAN == type || LUA_TSTRING == type) {
content = lua_tostring(L, -1);
candidate->content = g_strdup(content);
}
return candidate;
}
/**
* retrieve the number of string values.
*/
gint ibus_engine_plugin_get_n_result(IBusEnginePlugin * plugin){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
int type;
lua_State * L = priv->L;
type = lua_type(L ,-1);
if ( LUA_TNUMBER == type || LUA_TBOOLEAN == type || LUA_TSTRING == type)
return 1;
else if( LUA_TTABLE == type )
return lua_objlen (L, -1);
return 0;
}
/**
* retrieve the nth string value. (value has been copied.)
*/
gchar * ibus_engine_plugin_get_nth_result(IBusEnginePlugin * plugin, gint index){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
const char * result = NULL; int type;
lua_State * L = priv->L;
type = lua_type(L ,-1);
if ( LUA_TNUMBER == type || LUA_TBOOLEAN == type || LUA_TSTRING == type) {
/* check index value */
g_assert(0 == index);
result = g_strdup(lua_tostring(L, -1));
} else if( LUA_TTABLE == type ){
/* check index value */
g_assert(index < lua_objlen (L, -1));
lua_pushinteger(L, (guint) index + 1);
lua_gettable(L, -2);
int type = lua_type(L, -1);
if ( LUA_TNUMBER == type || LUA_TBOOLEAN == type || LUA_TSTRING == type )
result = g_strdup(lua_tostring(L, -1));
lua_pop(L, 1);
}
return (char *)result;
}
/**
* clear the string values from the stack.
*/
void ibus_engine_plugin_clear_results(IBusEnginePlugin * plugin){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
lua_State * L = priv->L;
lua_pop(L, 1);
}
/**
* retrieve the retval string value. (value has been copied.)
*/
const lua_command_candidate_t * ibus_engine_plugin_get_retval(IBusEnginePlugin * plugin){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
lua_command_candidate_t * result = NULL; int type;
lua_State * L = priv->L;
type = lua_type(L ,-1);
if ( LUA_TNUMBER == type || LUA_TBOOLEAN == type || LUA_TSTRING == type) {
result = malloc(sizeof(lua_command_candidate_t));
memset(result, 0, sizeof(lua_command_candidate_t));
result->content = g_strdup(lua_tostring(L, -1));
lua_pop(L, 1);
} else if( LUA_TTABLE == type ){
lua_pushinteger(L, 1);
lua_gettable(L, -2);
result = (lua_command_candidate_t *)ibus_engine_plugin_get_candidate(L);
lua_pop(L, 2);
}
return (const lua_command_candidate_t *)result;
}
/**
* retrieve the array of string values. (string values have been copied.)
*/
GArray * ibus_engine_plugin_get_retvals(IBusEnginePlugin * plugin){
IBusEnginePluginPrivate * priv = IBUS_ENGINE_PLUGIN_GET_PRIVATE(plugin);
lua_State * L = priv->L; int elem_num; int type;
GArray * result = NULL; int i;
const lua_command_candidate_t * candidate = NULL;
type = lua_type(L, -1);
if ( LUA_TTABLE != type )
return result;
result = g_array_new(TRUE, TRUE, sizeof(lua_command_candidate_t *));
elem_num = lua_objlen(L, -1);
for ( i = 0; i < elem_num; ++i ){
lua_pushinteger(L, i + 1);
lua_gettable(L, -2);
candidate = ibus_engine_plugin_get_candidate(L);
lua_pop(L, 1);
g_array_append_val(result, candidate);
}
lua_pop(L, 1);
return result;
}
void ibus_engine_plugin_free_candidate(lua_command_candidate_t * candidate){
g_free((gpointer)candidate->content);
g_free((gpointer)candidate->suggest);
g_free((gpointer)candidate->help);
}
|