Sun, 22 Jan 2006 07:37:22 +0000
[gaim-migrate @ 15340]
This should fix tcl scripts the same way I fixed perl scripts, all tcl scripts
will now have ids. Ethan, you are going to want to make sure I fixed this in a
way you find appropriate.
| 6694 | 1 | /** |
| 2 | * @file tcl.c Gaim Tcl plugin bindings | |
| 3 | * | |
| 4 | * gaim | |
| 5 | * | |
| 6 | * Copyright (C) 2003 Ethan Blanton <eblanton@cs.purdue.edu> | |
| 9943 | 7 | * |
| 6694 | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by | |
| 10 | * the Free Software Foundation; either version 2 of the License, or | |
| 11 | * (at your option) any later version. | |
| 12 | * | |
| 13 | * This program is distributed in the hope that it will be useful, | |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 | * GNU General Public License for more details. | |
| 17 | * | |
| 18 | * You should have received a copy of the GNU General Public License | |
| 19 | * along with this program; if not, write to the Free Software | |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 21 | */ | |
| 22 | ||
| 23 | #include "config.h" | |
| 24 | ||
| 25 | #include <tcl.h> | |
| 26 | ||
| 27 | #ifdef HAVE_TK | |
| 28 | #include <tk.h> | |
| 29 | #endif | |
| 30 | ||
| 31 | #include <stdio.h> | |
| 32 | #include <sys/types.h> | |
| 33 | #include <sys/stat.h> | |
| 34 | #include <unistd.h> | |
| 35 | #include <string.h> | |
| 36 | ||
| 37 | #include "tcl_glib.h" | |
| 38 | #include "tcl_gaim.h" | |
| 39 | ||
| 40 | #include "internal.h" | |
| 41 | #include "connection.h" | |
| 42 | #include "plugin.h" | |
| 43 | #include "signals.h" | |
| 44 | #include "debug.h" | |
| 45 | #include "util.h" | |
| 9943 | 46 | #include "version.h" |
| 6694 | 47 | |
| 48 | struct tcl_plugin_data { | |
| 49 | GaimPlugin *plugin; | |
| 50 | Tcl_Interp *interp; | |
| 51 | }; | |
| 52 | ||
| 53 | static GHashTable *tcl_plugins = NULL; | |
| 54 | ||
| 55 | GaimPlugin *_tcl_plugin; | |
| 56 | ||
|
7831
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
57 | static gboolean tcl_loaded = FALSE; |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
58 | |
| 6694 | 59 | GaimPlugin *tcl_interp_get_plugin(Tcl_Interp *interp) |
| 60 | { | |
| 61 | struct tcl_plugin_data *data; | |
| 62 | ||
| 63 | if (tcl_plugins == NULL) | |
| 64 | return NULL; | |
| 65 | ||
| 66 | data = g_hash_table_lookup(tcl_plugins, (gpointer)interp); | |
| 67 | return data != NULL ? data->plugin : NULL; | |
| 68 | } | |
| 69 | ||
| 70 | static int tcl_init_interp(Tcl_Interp *interp) | |
| 71 | { | |
| 72 | char *rcfile; | |
| 9943 | 73 | char init[] = |
| 6694 | 74 | "namespace eval ::gaim {\n" |
| 75 | " namespace export account buddy connection conversation\n" | |
| 76 | " namespace export core debug notify prefs send_im\n" | |
| 77 | " namespace export signal unload\n" | |
| 78 | " namespace eval _callback { }\n" | |
| 79 | "\n" | |
| 80 | " proc conv_send { account who text } {\n" | |
| 81 | " set gc [gaim::account connection $account]\n" | |
| 82 | " set convo [gaim::conversation new $account $who]\n" | |
| 83 | " set myalias [gaim::account alias $account]\n" | |
| 84 | "\n" | |
| 85 | " if {![string length $myalias]} {\n" | |
| 86 | " set myalias [gaim::account username $account]\n" | |
| 87 | " }\n" | |
| 88 | "\n" | |
| 89 | " gaim::send_im $gc $who $text\n" | |
| 90 | " gaim::conversation write $convo send $myalias $text\n" | |
| 91 | " }\n" | |
| 92 | "}\n" | |
| 93 | "\n" | |
| 94 | "proc bgerror { message } {\n" | |
| 95 | " global errorInfo\n" | |
| 96 | " gaim::notify -error \"Tcl Error\" \"Tcl Error: $message\" \"$errorInfo\"\n" | |
| 97 | "}\n"; | |
| 98 | ||
| 99 | if (Tcl_EvalEx(interp, init, -1, TCL_EVAL_GLOBAL) != TCL_OK) { | |
| 100 | return 1; | |
| 101 | } | |
| 102 | ||
| 103 | Tcl_SetVar(interp, "argc", "0", TCL_GLOBAL_ONLY); | |
| 104 | Tcl_SetVar(interp, "argv0", "gaim", TCL_GLOBAL_ONLY); | |
| 105 | Tcl_SetVar(interp, "tcl_interactive", "0", TCL_GLOBAL_ONLY); | |
| 106 | rcfile = g_strdup_printf("%s" G_DIR_SEPARATOR_S "tclrc", gaim_user_dir()); | |
| 107 | Tcl_SetVar(interp, "tcl_rcFileName", rcfile, TCL_GLOBAL_ONLY); | |
| 108 | g_free(rcfile); | |
| 109 | ||
| 110 | Tcl_SetVar(interp, "::gaim::version", VERSION, TCL_GLOBAL_ONLY); | |
| 111 | Tcl_SetVar(interp, "::gaim::user_dir", gaim_user_dir(), TCL_GLOBAL_ONLY); | |
| 112 | #ifdef HAVE_TK | |
| 113 | Tcl_SetVar(interp, "::gaim::tk_available", "1", TCL_GLOBAL_ONLY); | |
| 114 | #else | |
| 115 | Tcl_SetVar(interp, "::gaim::tk_available", "0", TCL_GLOBAL_ONLY); | |
| 116 | #endif /* HAVE_TK */ | |
| 117 | ||
| 118 | Tcl_CreateObjCommand(interp, "::gaim::account", tcl_cmd_account, (ClientData)NULL, NULL); | |
| 119 | Tcl_CreateObjCommand(interp, "::gaim::buddy", tcl_cmd_buddy, (ClientData)NULL, NULL); | |
| 120 | Tcl_CreateObjCommand(interp, "::gaim::connection", tcl_cmd_connection, (ClientData)NULL, NULL); | |
| 121 | Tcl_CreateObjCommand(interp, "::gaim::conversation", tcl_cmd_conversation, (ClientData)NULL, NULL); | |
| 122 | Tcl_CreateObjCommand(interp, "::gaim::core", tcl_cmd_core, (ClientData)NULL, NULL); | |
| 123 | Tcl_CreateObjCommand(interp, "::gaim::debug", tcl_cmd_debug, (ClientData)NULL, NULL); | |
| 124 | Tcl_CreateObjCommand(interp, "::gaim::notify", tcl_cmd_notify, (ClientData)NULL, NULL); | |
| 125 | Tcl_CreateObjCommand(interp, "::gaim::prefs", tcl_cmd_prefs, (ClientData)NULL, NULL); | |
| 126 | Tcl_CreateObjCommand(interp, "::gaim::send_im", tcl_cmd_send_im, (ClientData)NULL, NULL); | |
| 127 | Tcl_CreateObjCommand(interp, "::gaim::signal", tcl_cmd_signal, (ClientData)NULL, NULL); | |
| 128 | Tcl_CreateObjCommand(interp, "::gaim::unload", tcl_cmd_unload, (ClientData)NULL, NULL); | |
| 129 | ||
| 130 | return 0; | |
| 131 | } | |
| 132 | ||
| 133 | static Tcl_Interp *tcl_create_interp() | |
| 134 | { | |
| 135 | Tcl_Interp *interp; | |
| 136 | ||
| 137 | interp = Tcl_CreateInterp(); | |
| 138 | if (Tcl_Init(interp) == TCL_ERROR) { | |
| 139 | Tcl_DeleteInterp(interp); | |
| 140 | return NULL; | |
| 141 | } | |
| 142 | ||
| 143 | if (tcl_init_interp(interp)) { | |
| 144 | Tcl_DeleteInterp(interp); | |
| 145 | return NULL; | |
| 146 | } | |
| 147 | Tcl_StaticPackage(interp, "gaim", tcl_init_interp, NULL); | |
| 148 | ||
| 149 | return interp; | |
| 150 | } | |
| 151 | ||
| 152 | static gboolean tcl_probe_plugin(GaimPlugin *plugin) | |
| 153 | { | |
| 154 | GaimPluginInfo *info; | |
| 155 | Tcl_Interp *interp; | |
| 156 | Tcl_Parse parse; | |
| 157 | Tcl_Obj *result, **listitems; | |
| 158 | struct stat st; | |
| 159 | FILE *fp; | |
| 160 | char *buf, *cur; | |
|
10344
09d0502090b3
[gaim-migrate @ 11554]
Mark Doliner <markdoliner@pidgin.im>
parents:
10281
diff
changeset
|
161 | const char *next; |
| 6694 | 162 | int len, found = 0, err = 0, nelems; |
| 163 | gboolean status = FALSE; | |
|
10589
4e10236e06d4
[gaim-migrate @ 11994]
Daniel Atallah <datallah@pidgin.im>
parents:
10454
diff
changeset
|
164 | if ((fp = g_fopen(plugin->path, "r")) == NULL) |
| 6694 | 165 | return FALSE; |
| 166 | if (fstat(fileno(fp), &st)) { | |
| 167 | fclose(fp); | |
| 168 | return FALSE; | |
| 169 | } | |
| 170 | len = st.st_size; | |
| 171 | ||
| 172 | buf = g_malloc(len + 1); | |
|
10344
09d0502090b3
[gaim-migrate @ 11554]
Mark Doliner <markdoliner@pidgin.im>
parents:
10281
diff
changeset
|
173 | |
|
09d0502090b3
[gaim-migrate @ 11554]
Mark Doliner <markdoliner@pidgin.im>
parents:
10281
diff
changeset
|
174 | cur = buf; |
| 8989 | 175 | while (fgets(cur, (int) buf - (buf - cur), fp)) { |
| 176 | cur += strlen(cur); | |
|
10344
09d0502090b3
[gaim-migrate @ 11554]
Mark Doliner <markdoliner@pidgin.im>
parents:
10281
diff
changeset
|
177 | if (feof(fp)) |
| 8989 | 178 | break; |
| 179 | } | |
| 180 | ||
| 181 | if (ferror(fp)) { | |
| 182 | gaim_debug(GAIM_DEBUG_ERROR, "tcl", "error reading %s (%s)\n", plugin->path, strerror(errno)); | |
| 6694 | 183 | g_free(buf); |
| 184 | fclose(fp); | |
| 185 | return FALSE; | |
| 186 | } | |
| 8989 | 187 | |
| 6694 | 188 | fclose(fp); |
| 189 | ||
| 190 | if ((interp = tcl_create_interp()) == NULL) { | |
| 191 | return FALSE; | |
| 192 | } | |
| 193 | ||
|
10344
09d0502090b3
[gaim-migrate @ 11554]
Mark Doliner <markdoliner@pidgin.im>
parents:
10281
diff
changeset
|
194 | next = buf; |
| 6694 | 195 | do { |
|
10344
09d0502090b3
[gaim-migrate @ 11554]
Mark Doliner <markdoliner@pidgin.im>
parents:
10281
diff
changeset
|
196 | if (Tcl_ParseCommand(interp, next, len, 0, &parse) == TCL_ERROR) { |
| 6694 | 197 | gaim_debug(GAIM_DEBUG_ERROR, "tcl", "parse error in %s: %s\n", plugin->path, |
| 198 | Tcl_GetString(Tcl_GetObjResult(interp))); | |
| 199 | err = 1; | |
| 200 | break; | |
| 201 | } | |
| 202 | if (parse.tokenPtr[0].type == TCL_TOKEN_SIMPLE_WORD | |
| 203 | && !strncmp(parse.tokenPtr[0].start, "proc", parse.tokenPtr[0].size)) { | |
| 204 | if (!strncmp(parse.tokenPtr[2].start, "plugin_init", parse.tokenPtr[2].size)) { | |
| 205 | if (Tcl_EvalEx(interp, parse.commandStart, parse.commandSize, TCL_EVAL_GLOBAL) != TCL_OK) { | |
| 206 | Tcl_FreeParse(&parse); | |
| 207 | break; | |
| 208 | } | |
| 209 | found = 1; | |
| 210 | /* We'll continue parsing the file, just in case */ | |
| 211 | } | |
| 212 | } | |
|
10344
09d0502090b3
[gaim-migrate @ 11554]
Mark Doliner <markdoliner@pidgin.im>
parents:
10281
diff
changeset
|
213 | len -= (parse.commandStart + parse.commandSize) - next; |
|
09d0502090b3
[gaim-migrate @ 11554]
Mark Doliner <markdoliner@pidgin.im>
parents:
10281
diff
changeset
|
214 | next = parse.commandStart + parse.commandSize; |
| 6694 | 215 | Tcl_FreeParse(&parse); |
| 216 | } while (len); | |
| 217 | ||
| 218 | if (found && !err) { | |
| 219 | if (Tcl_EvalEx(interp, "plugin_init", -1, TCL_EVAL_GLOBAL) == TCL_OK) { | |
| 220 | result = Tcl_GetObjResult(interp); | |
| 221 | if (Tcl_ListObjGetElements(interp, result, &nelems, &listitems) == TCL_OK) { | |
| 12987 | 222 | if ((nelems == 6) || (nelems == 7)) { |
| 6694 | 223 | info = g_new0(GaimPluginInfo, 1); |
|
8761
2d596fd60ba8
[gaim-migrate @ 9516]
Mark Doliner <markdoliner@pidgin.im>
parents:
8759
diff
changeset
|
224 | |
| 9943 | 225 | info->magic = GAIM_PLUGIN_MAGIC; |
| 226 | info->major_version = GAIM_MAJOR_VERSION; | |
| 227 | info->minor_version = GAIM_MINOR_VERSION; | |
| 6694 | 228 | info->type = GAIM_PLUGIN_STANDARD; |
| 229 | info->dependencies = g_list_append(info->dependencies, "core-tcl"); | |
|
8761
2d596fd60ba8
[gaim-migrate @ 9516]
Mark Doliner <markdoliner@pidgin.im>
parents:
8759
diff
changeset
|
230 | |
| 6694 | 231 | info->name = g_strdup(Tcl_GetString(listitems[0])); |
| 232 | info->version = g_strdup(Tcl_GetString(listitems[1])); | |
| 8117 | 233 | info->summary = g_strdup(Tcl_GetString(listitems[2])); |
|
9775
e3a3555b0621
[gaim-migrate @ 10643]
Daniel Atallah <datallah@pidgin.im>
parents:
8993
diff
changeset
|
234 | info->description = g_strdup(Tcl_GetString(listitems[3])); |
|
10454
48b2b0d6a957
[gaim-migrate @ 11722]
Balwinder S Dheeman <bsd@rubyforge.org>
parents:
10344
diff
changeset
|
235 | info->author = g_strdup(Tcl_GetString(listitems[4])); |
| 8117 | 236 | info->homepage = g_strdup(Tcl_GetString(listitems[5])); |
|
8761
2d596fd60ba8
[gaim-migrate @ 9516]
Mark Doliner <markdoliner@pidgin.im>
parents:
8759
diff
changeset
|
237 | |
| 12987 | 238 | if (nelems == 6) |
| 239 | info->id = g_strdup_printf("tcl-%s", Tcl_GetString(listitems[0])); | |
| 240 | else if (nelems == 7) | |
| 241 | info->id = g_strdup_printf("tcl-%s", Tcl_GetString(listitems[6])); | |
| 242 | ||
| 6694 | 243 | plugin->info = info; |
|
8761
2d596fd60ba8
[gaim-migrate @ 9516]
Mark Doliner <markdoliner@pidgin.im>
parents:
8759
diff
changeset
|
244 | |
| 6694 | 245 | if (gaim_plugin_register(plugin)) |
| 246 | status = TRUE; | |
| 247 | } | |
| 248 | } | |
| 249 | } | |
| 250 | } | |
| 251 | ||
| 252 | Tcl_DeleteInterp(interp); | |
| 253 | g_free(buf); | |
| 254 | return status; | |
| 255 | } | |
| 256 | ||
| 257 | static gboolean tcl_load_plugin(GaimPlugin *plugin) | |
| 258 | { | |
| 259 | struct tcl_plugin_data *data; | |
| 260 | Tcl_Interp *interp; | |
| 261 | Tcl_Obj *result; | |
| 262 | ||
| 263 | plugin->extra = NULL; | |
| 264 | ||
| 265 | if ((interp = tcl_create_interp()) == NULL) { | |
| 266 | gaim_debug(GAIM_DEBUG_ERROR, "tcl", "Could not initialize Tcl interpreter\n"); | |
| 267 | return FALSE; | |
| 268 | } | |
| 269 | ||
| 270 | Tcl_SourceRCFile(interp); | |
| 271 | ||
| 272 | if (Tcl_EvalFile(interp, plugin->path) != TCL_OK) { | |
| 273 | result = Tcl_GetObjResult(interp); | |
| 274 | gaim_debug(GAIM_DEBUG_ERROR, "tcl", "Error evaluating %s: %s\n", plugin->path, Tcl_GetString(result)); | |
| 275 | Tcl_DeleteInterp(interp); | |
| 276 | return FALSE; | |
| 277 | } | |
| 278 | ||
| 279 | Tcl_Preserve((ClientData)interp); | |
| 280 | ||
| 281 | data = g_new0(struct tcl_plugin_data, 1); | |
| 282 | data->plugin = plugin; | |
| 283 | data->interp = interp; | |
| 284 | plugin->extra = data; | |
| 285 | ||
| 286 | g_hash_table_insert(tcl_plugins, (gpointer)interp, (gpointer)data); | |
| 287 | ||
| 288 | return TRUE; | |
| 289 | } | |
| 290 | ||
| 291 | static gboolean tcl_unload_plugin(GaimPlugin *plugin) | |
| 292 | { | |
| 293 | struct tcl_plugin_data *data; | |
| 294 | ||
| 295 | if (plugin == NULL) | |
| 296 | return TRUE; | |
| 297 | ||
| 298 | data = plugin->extra; | |
| 299 | ||
| 10281 | 300 | g_hash_table_remove(tcl_plugins, (gpointer)(data->interp)); |
| 6694 | 301 | if (data != NULL) { |
| 302 | gaim_signals_disconnect_by_handle(data->interp); | |
| 303 | tcl_signal_cleanup(data->interp); | |
| 304 | Tcl_Release((ClientData)data->interp); | |
| 305 | Tcl_DeleteInterp(data->interp); | |
| 306 | g_free(data); | |
| 307 | } | |
| 308 | ||
| 309 | return TRUE; | |
| 310 | } | |
| 311 | ||
| 312 | static void tcl_destroy_plugin(GaimPlugin *plugin) | |
| 313 | { | |
| 314 | if (plugin->info != NULL) { | |
| 315 | g_free(plugin->info->name); | |
| 316 | g_free(plugin->info->version); | |
| 317 | g_free(plugin->info->description); | |
| 318 | g_free(plugin->info->author); | |
| 319 | g_free(plugin->info->homepage); | |
| 320 | } | |
| 321 | ||
| 322 | return; | |
| 323 | } | |
| 324 | ||
| 325 | static gboolean tcl_load(GaimPlugin *plugin) | |
| 326 | { | |
|
7831
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
327 | if(!tcl_loaded) |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
328 | return FALSE; |
| 6694 | 329 | tcl_glib_init(); |
| 330 | tcl_signal_init(); | |
| 331 | tcl_plugins = g_hash_table_new(g_direct_hash, g_direct_equal); | |
| 332 | ||
| 7828 | 333 | #ifdef HAVE_TK |
| 334 | Tcl_StaticPackage(NULL, "Tk", Tk_Init, Tk_SafeInit); | |
| 335 | #endif /* HAVE_TK */ | |
| 336 | ||
| 6694 | 337 | return TRUE; |
| 338 | } | |
| 339 | ||
| 340 | static gboolean tcl_unload(GaimPlugin *plugin) | |
| 341 | { | |
| 342 | g_hash_table_destroy(tcl_plugins); | |
| 343 | tcl_plugins = NULL; | |
| 344 | ||
| 345 | return TRUE; | |
| 346 | } | |
| 347 | ||
| 348 | static GaimPluginLoaderInfo tcl_loader_info = | |
| 349 | { | |
| 350 | NULL, | |
| 351 | tcl_probe_plugin, | |
| 352 | tcl_load_plugin, | |
| 353 | tcl_unload_plugin, | |
| 354 | tcl_destroy_plugin, | |
| 355 | }; | |
| 356 | ||
| 357 | static GaimPluginInfo tcl_info = | |
| 358 | { | |
| 9943 | 359 | GAIM_PLUGIN_MAGIC, |
| 360 | GAIM_MAJOR_VERSION, | |
| 361 | GAIM_MINOR_VERSION, | |
| 6694 | 362 | GAIM_PLUGIN_LOADER, |
| 363 | NULL, | |
| 364 | 0, | |
| 365 | NULL, | |
| 366 | GAIM_PRIORITY_DEFAULT, | |
| 367 | "core-tcl", | |
| 368 | N_("Tcl Plugin Loader"), | |
| 369 | VERSION, | |
| 370 | N_("Provides support for loading Tcl plugins"), | |
| 371 | N_("Provides support for loading Tcl plugins"), | |
| 372 | "Ethan Blanton <eblanton@cs.purdue.edu>", | |
| 373 | GAIM_WEBSITE, | |
| 374 | tcl_load, | |
| 375 | tcl_unload, | |
| 376 | NULL, | |
| 377 | NULL, | |
| 8993 | 378 | &tcl_loader_info, |
| 379 | NULL, | |
| 380 | NULL | |
| 6694 | 381 | }; |
| 382 | ||
|
7831
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
383 | #ifdef _WIN32 |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
384 | extern Tcl_Interp* (CALLBACK* wtcl_CreateInterp)(); |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
385 | extern void (CALLBACK* wtk_Init)(Tcl_Interp*); |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
386 | #undef Tcl_CreateInterp |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
387 | #define Tcl_CreateInterp wtcl_CreateInterp |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
388 | #undef Tk_Init |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
389 | #define Tk_Init wtk_Init |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
390 | #endif /* _WIN32 */ |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
391 | |
| 6694 | 392 | static void tcl_init_plugin(GaimPlugin *plugin) |
| 393 | { | |
|
7831
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
394 | #ifdef USE_TCL_STUBS |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
395 | Tcl_Interp *interp=NULL; |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
396 | #endif |
| 6694 | 397 | _tcl_plugin = plugin; |
| 398 | ||
|
7831
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
399 | #ifdef USE_TCL_STUBS |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
400 | if(!(interp=Tcl_CreateInterp())) |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
401 | return; |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
402 | |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
403 | if(!Tcl_InitStubs(interp, TCL_VERSION, 0)) { |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
404 | gaim_debug(GAIM_DEBUG_ERROR, "tcl", "Tcl_InitStubs: %s\n", interp->result); |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
405 | return; |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
406 | } |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
407 | #endif |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
408 | |
| 6694 | 409 | Tcl_FindExecutable("gaim"); |
| 410 | ||
|
7831
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
411 | #if defined(USE_TK_STUBS) && defined(HAVE_TK) |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
412 | Tk_Init(interp); |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
413 | |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
414 | if(!Tk_InitStubs(interp, TK_VERSION, 0)) { |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
415 | gaim_debug(GAIM_DEBUG_ERROR, "tcl", "Error Tk_InitStubs: %s\n", interp->result); |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
416 | Tcl_DeleteInterp(interp); |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
417 | return; |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
418 | } |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
419 | #endif |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
420 | tcl_loaded = TRUE; |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
421 | #ifdef USE_TCL_STUBS |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
422 | Tcl_DeleteInterp(interp); |
|
54076c9af6ad
[gaim-migrate @ 8483]
Herman Bloggs <herman@bluedigits.com>
parents:
7828
diff
changeset
|
423 | #endif |
| 6694 | 424 | tcl_loader_info.exts = g_list_append(tcl_loader_info.exts, "tcl"); |
| 425 | } | |
| 426 | ||
|
6735
a8c70aeddbe7
[gaim-migrate @ 7267]
Mark Doliner <markdoliner@pidgin.im>
parents:
6694
diff
changeset
|
427 | GAIM_INIT_PLUGIN(tcl, tcl_init_plugin, tcl_info) |