[f1e629d] | 1 | #include <stdio.h> |
---|
| 2 | #include <stdlib.h> |
---|
| 3 | #include <string.h> |
---|
| 4 | #include <sys/types.h> |
---|
| 5 | #include <sys/stat.h> |
---|
| 6 | #include <errno.h> |
---|
[908e388] | 7 | #define OWL_PERL |
---|
[f1e629d] | 8 | #include "owl.h" |
---|
| 9 | |
---|
| 10 | static const char fileIdent[] = "$Id$"; |
---|
| 11 | |
---|
| 12 | extern char *owl_perlwrap_codebuff; |
---|
| 13 | |
---|
[8203afd] | 14 | extern XS(boot_BarnOwl); |
---|
[908e388] | 15 | extern XS(boot_DynaLoader); |
---|
[af1920fd] | 16 | /* extern XS(boot_DBI); */ |
---|
[f1e629d] | 17 | |
---|
[c3acb0b] | 18 | static void owl_perl_xs_init(pTHX) |
---|
| 19 | { |
---|
[f1e629d] | 20 | char *file = __FILE__; |
---|
| 21 | dXSUB_SYS; |
---|
| 22 | { |
---|
[8203afd] | 23 | newXS("BarnOwl::bootstrap", boot_BarnOwl, file); |
---|
[908e388] | 24 | newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file); |
---|
[f1e629d] | 25 | } |
---|
| 26 | } |
---|
| 27 | |
---|
[30678ae] | 28 | SV *owl_perlconfig_message2hashref(owl_message *m) |
---|
[c3acb0b] | 29 | { |
---|
[1cc95709] | 30 | HV *h, *stash; |
---|
[f1e629d] | 31 | SV *hr; |
---|
[30678ae] | 32 | char *ptr, *blessas, *type; |
---|
[b0430a6] | 33 | int i, j; |
---|
[421c8ef7] | 34 | owl_pair *pair; |
---|
[f6b319c] | 35 | owl_filter *wrap; |
---|
[f1e629d] | 36 | |
---|
| 37 | if (!m) return &PL_sv_undef; |
---|
[f6b319c] | 38 | wrap = owl_global_get_filter(&g, "wordwrap"); |
---|
| 39 | if(!wrap) { |
---|
| 40 | owl_function_error("wrap filter is not defined"); |
---|
| 41 | return &PL_sv_undef; |
---|
| 42 | } |
---|
| 43 | |
---|
[f1e629d] | 44 | h = newHV(); |
---|
| 45 | |
---|
| 46 | #define MSG2H(h,field) hv_store(h, #field, strlen(#field), \ |
---|
| 47 | newSVpv(owl_message_get_##field(m),0), 0) |
---|
| 48 | |
---|
| 49 | if (owl_message_is_type_zephyr(m) |
---|
| 50 | && owl_message_is_direction_in(m)) { |
---|
| 51 | /* Handle zephyr-specific fields... */ |
---|
| 52 | AV *av_zfields; |
---|
| 53 | |
---|
| 54 | av_zfields = newAV(); |
---|
| 55 | j=owl_zephyr_get_num_fields(owl_message_get_notice(m)); |
---|
| 56 | for (i=0; i<j; i++) { |
---|
[5376a95] | 57 | ptr=owl_zephyr_get_field_as_utf8(owl_message_get_notice(m), i+1); |
---|
[b0430a6] | 58 | av_push(av_zfields, newSVpvn(ptr, strlen(ptr))); |
---|
| 59 | owl_free(ptr); |
---|
[f1e629d] | 60 | } |
---|
| 61 | hv_store(h, "fields", strlen("fields"), newRV_noinc((SV*)av_zfields), 0); |
---|
| 62 | |
---|
| 63 | hv_store(h, "auth", strlen("auth"), |
---|
| 64 | newSVpv(owl_zephyr_get_authstr(owl_message_get_notice(m)),0),0); |
---|
| 65 | } |
---|
| 66 | |
---|
[421c8ef7] | 67 | j=owl_list_get_size(&(m->attributes)); |
---|
| 68 | for(i=0; i<j; i++) { |
---|
| 69 | pair=owl_list_get_element(&(m->attributes), i); |
---|
| 70 | hv_store(h, owl_pair_get_key(pair), strlen(owl_pair_get_key(pair)), |
---|
| 71 | newSVpv(owl_pair_get_value(pair),0),0); |
---|
| 72 | } |
---|
| 73 | |
---|
[f1e629d] | 74 | MSG2H(h, type); |
---|
| 75 | MSG2H(h, direction); |
---|
| 76 | MSG2H(h, class); |
---|
| 77 | MSG2H(h, instance); |
---|
| 78 | MSG2H(h, sender); |
---|
| 79 | MSG2H(h, realm); |
---|
| 80 | MSG2H(h, recipient); |
---|
| 81 | MSG2H(h, opcode); |
---|
| 82 | MSG2H(h, hostname); |
---|
| 83 | MSG2H(h, body); |
---|
| 84 | MSG2H(h, login); |
---|
| 85 | MSG2H(h, zsig); |
---|
| 86 | MSG2H(h, zwriteline); |
---|
| 87 | if (owl_message_get_header(m)) { |
---|
| 88 | MSG2H(h, header); |
---|
| 89 | } |
---|
| 90 | hv_store(h, "time", strlen("time"), newSVpv(owl_message_get_timestr(m),0),0); |
---|
| 91 | hv_store(h, "id", strlen("id"), newSViv(owl_message_get_id(m)),0); |
---|
| 92 | hv_store(h, "deleted", strlen("deleted"), newSViv(owl_message_is_delete(m)),0); |
---|
[216c734] | 93 | hv_store(h, "private", strlen("private"), newSViv(owl_message_is_private(m)),0); |
---|
[f6b319c] | 94 | hv_store(h, "should_wordwrap", |
---|
| 95 | strlen("should_wordwrap"), newSViv( |
---|
| 96 | owl_filter_message_match(wrap, m)),0); |
---|
[f1e629d] | 97 | |
---|
[30678ae] | 98 | type = owl_message_get_type(m); |
---|
[8fba2ee] | 99 | if(!type || !*type) type = "generic"; |
---|
[30678ae] | 100 | type = owl_strdup(type); |
---|
| 101 | type[0] = toupper(type[0]); |
---|
| 102 | blessas = owl_sprintf("BarnOwl::Message::%s", type); |
---|
[f1e629d] | 103 | |
---|
[19bab8e] | 104 | hr = newRV_noinc((SV*)h); |
---|
[1cc95709] | 105 | stash = gv_stashpv(blessas,0); |
---|
| 106 | if(!stash) { |
---|
| 107 | owl_function_error("No such class: %s for message type %s", blessas, owl_message_get_type(m)); |
---|
| 108 | stash = gv_stashpv("BarnOwl::Message", 1); |
---|
| 109 | } |
---|
| 110 | hr = sv_bless(hr,stash); |
---|
[30678ae] | 111 | owl_free(type); |
---|
| 112 | owl_free(blessas); |
---|
| 113 | return hr; |
---|
[f1e629d] | 114 | } |
---|
| 115 | |
---|
[c3acb0b] | 116 | SV *owl_perlconfig_curmessage2hashref(void) /*noproto*/ |
---|
| 117 | { |
---|
[f1e629d] | 118 | int curmsg; |
---|
| 119 | owl_view *v; |
---|
| 120 | v=owl_global_get_current_view(&g); |
---|
| 121 | if (owl_view_get_size(v) < 1) { |
---|
| 122 | return &PL_sv_undef; |
---|
| 123 | } |
---|
| 124 | curmsg=owl_global_get_curmsg(&g); |
---|
| 125 | return owl_perlconfig_message2hashref(owl_view_get_element(v, curmsg)); |
---|
| 126 | } |
---|
| 127 | |
---|
[30678ae] | 128 | /* XXX TODO: Messages should round-trip properly between |
---|
| 129 | message2hashref and hashref2message. Currently we lose |
---|
| 130 | zephyr-specific properties stored in the ZNotice_t |
---|
| 131 | */ |
---|
| 132 | owl_message * owl_perlconfig_hashref2message(SV *msg) |
---|
| 133 | { |
---|
| 134 | owl_message * m; |
---|
| 135 | HE * ent; |
---|
| 136 | I32 count, len; |
---|
| 137 | char *key,*val; |
---|
| 138 | HV * hash; |
---|
[ad15610] | 139 | struct tm tm; |
---|
[30678ae] | 140 | |
---|
| 141 | hash = (HV*)SvRV(msg); |
---|
| 142 | |
---|
| 143 | m = owl_malloc(sizeof(owl_message)); |
---|
| 144 | owl_message_init(m); |
---|
| 145 | |
---|
| 146 | count = hv_iterinit(hash); |
---|
| 147 | while((ent = hv_iternext(hash))) { |
---|
| 148 | key = hv_iterkey(ent, &len); |
---|
| 149 | val = SvPV_nolen(hv_iterval(hash, ent)); |
---|
| 150 | if(!strcmp(key, "type")) { |
---|
| 151 | owl_message_set_type(m, val); |
---|
| 152 | } else if(!strcmp(key, "direction")) { |
---|
| 153 | owl_message_set_direction(m, owl_message_parse_direction(val)); |
---|
| 154 | } else if(!strcmp(key, "private")) { |
---|
| 155 | SV * v = hv_iterval(hash, ent); |
---|
| 156 | if(SvTRUE(v)) { |
---|
| 157 | owl_message_set_isprivate(m); |
---|
| 158 | } |
---|
| 159 | } else if (!strcmp(key, "hostname")) { |
---|
| 160 | owl_message_set_hostname(m, val); |
---|
| 161 | } else if (!strcmp(key, "zwriteline")) { |
---|
| 162 | owl_message_set_zwriteline(m, val); |
---|
| 163 | } else if (!strcmp(key, "time")) { |
---|
| 164 | m->timestr = owl_strdup(val); |
---|
| 165 | strptime(val, "%a %b %d %T %Y", &tm); |
---|
| 166 | m->time = mktime(&tm); |
---|
| 167 | } else { |
---|
| 168 | owl_message_set_attribute(m, key, val); |
---|
| 169 | } |
---|
| 170 | } |
---|
| 171 | if(owl_message_is_type_admin(m)) { |
---|
| 172 | if(!owl_message_get_attribute_value(m, "adminheader")) |
---|
| 173 | owl_message_set_attribute(m, "adminheader", ""); |
---|
| 174 | } |
---|
| 175 | return m; |
---|
| 176 | } |
---|
[f1e629d] | 177 | |
---|
| 178 | /* Calls in a scalar context, passing it a hash reference. |
---|
| 179 | If return value is non-null, caller must free. */ |
---|
[c3acb0b] | 180 | char *owl_perlconfig_call_with_message(char *subname, owl_message *m) |
---|
| 181 | { |
---|
[f1e629d] | 182 | dSP ; |
---|
[c4ba74d] | 183 | int count; |
---|
[f1e629d] | 184 | SV *msgref, *srv; |
---|
[909771e] | 185 | char *out; |
---|
[f1e629d] | 186 | |
---|
| 187 | ENTER ; |
---|
| 188 | SAVETMPS; |
---|
| 189 | |
---|
| 190 | PUSHMARK(SP) ; |
---|
| 191 | msgref = owl_perlconfig_message2hashref(m); |
---|
[19bab8e] | 192 | XPUSHs(sv_2mortal(msgref)); |
---|
[f1e629d] | 193 | PUTBACK ; |
---|
| 194 | |
---|
| 195 | count = call_pv(subname, G_SCALAR|G_EVAL|G_KEEPERR); |
---|
| 196 | |
---|
| 197 | SPAGAIN ; |
---|
| 198 | |
---|
| 199 | if (SvTRUE(ERRSV)) { |
---|
[ce6721f] | 200 | owl_function_error("Perl Error: '%s'", SvPV_nolen(ERRSV)); |
---|
[27c3a93] | 201 | /* and clear the error */ |
---|
| 202 | sv_setsv (ERRSV, &PL_sv_undef); |
---|
[f1e629d] | 203 | } |
---|
| 204 | |
---|
| 205 | if (count != 1) { |
---|
| 206 | fprintf(stderr, "bad perl! no biscuit! returned wrong count!\n"); |
---|
| 207 | abort(); |
---|
| 208 | } |
---|
| 209 | |
---|
| 210 | srv = POPs; |
---|
| 211 | |
---|
| 212 | if (srv) { |
---|
[909771e] | 213 | out = owl_strdup(SvPV_nolen(srv)); |
---|
[f1e629d] | 214 | } else { |
---|
| 215 | out = NULL; |
---|
| 216 | } |
---|
| 217 | |
---|
| 218 | PUTBACK ; |
---|
| 219 | FREETMPS ; |
---|
| 220 | LEAVE ; |
---|
| 221 | |
---|
| 222 | return out; |
---|
| 223 | } |
---|
| 224 | |
---|
[25729b2] | 225 | |
---|
| 226 | /* Calls a method on a perl object representing a message. |
---|
| 227 | If the return value is non-null, the caller must free it. |
---|
| 228 | */ |
---|
| 229 | char * owl_perlconfig_message_call_method(owl_message *m, char *method, int argc, char ** argv) |
---|
| 230 | { |
---|
| 231 | dSP; |
---|
[909771e] | 232 | unsigned int count, i; |
---|
[25729b2] | 233 | SV *msgref, *srv; |
---|
[909771e] | 234 | char *out; |
---|
[25729b2] | 235 | |
---|
| 236 | msgref = owl_perlconfig_message2hashref(m); |
---|
| 237 | |
---|
| 238 | ENTER; |
---|
| 239 | SAVETMPS; |
---|
| 240 | |
---|
| 241 | PUSHMARK(SP); |
---|
[19bab8e] | 242 | XPUSHs(sv_2mortal(msgref)); |
---|
[25729b2] | 243 | for(i=0;i<argc;i++) { |
---|
| 244 | XPUSHs(sv_2mortal(newSVpv(argv[i], 0))); |
---|
| 245 | } |
---|
| 246 | PUTBACK; |
---|
| 247 | |
---|
| 248 | count = call_method(method, G_SCALAR|G_KEEPERR|G_EVAL); |
---|
| 249 | |
---|
| 250 | SPAGAIN; |
---|
| 251 | |
---|
| 252 | if(count != 1) { |
---|
| 253 | fprintf(stderr, "perl returned wrong count %d\n", count); |
---|
| 254 | abort(); |
---|
| 255 | } |
---|
| 256 | |
---|
| 257 | if (SvTRUE(ERRSV)) { |
---|
[ce6721f] | 258 | owl_function_error("Error: '%s'", SvPV_nolen(ERRSV)); |
---|
[25729b2] | 259 | /* and clear the error */ |
---|
| 260 | sv_setsv (ERRSV, &PL_sv_undef); |
---|
| 261 | } |
---|
| 262 | |
---|
| 263 | srv = POPs; |
---|
| 264 | |
---|
| 265 | if (srv) { |
---|
[909771e] | 266 | out = owl_strdup(SvPV_nolen(srv)); |
---|
[25729b2] | 267 | } else { |
---|
| 268 | out = NULL; |
---|
| 269 | } |
---|
| 270 | |
---|
| 271 | PUTBACK; |
---|
| 272 | FREETMPS; |
---|
| 273 | LEAVE; |
---|
| 274 | |
---|
| 275 | return out; |
---|
| 276 | } |
---|
| 277 | |
---|
| 278 | |
---|
[b6c067a] | 279 | char *owl_perlconfig_initperl(char * file) |
---|
[c3acb0b] | 280 | { |
---|
[d03091c] | 281 | int ret; |
---|
[f1e629d] | 282 | PerlInterpreter *p; |
---|
[4e0f545] | 283 | char *err; |
---|
[d03091c] | 284 | char *args[4] = {"", "-e", "0;", NULL}; |
---|
[f1e629d] | 285 | |
---|
| 286 | /* create and initialize interpreter */ |
---|
| 287 | p=perl_alloc(); |
---|
| 288 | owl_global_set_perlinterp(&g, (void*)p); |
---|
| 289 | perl_construct(p); |
---|
| 290 | |
---|
| 291 | owl_global_set_no_have_config(&g); |
---|
| 292 | |
---|
[4e0f545] | 293 | |
---|
[d03091c] | 294 | ret=perl_parse(p, owl_perl_xs_init, 2, args, NULL); |
---|
[f1e629d] | 295 | if (ret || SvTRUE(ERRSV)) { |
---|
[ce6721f] | 296 | err=owl_strdup(SvPV_nolen(ERRSV)); |
---|
[4e0f545] | 297 | sv_setsv(ERRSV, &PL_sv_undef); /* and clear the error */ |
---|
| 298 | return(err); |
---|
[f1e629d] | 299 | } |
---|
| 300 | |
---|
| 301 | ret=perl_run(p); |
---|
| 302 | if (ret || SvTRUE(ERRSV)) { |
---|
[ce6721f] | 303 | err=owl_strdup(SvPV_nolen(ERRSV)); |
---|
[4e0f545] | 304 | sv_setsv(ERRSV, &PL_sv_undef); /* and clear the error */ |
---|
| 305 | return(err); |
---|
[f1e629d] | 306 | } |
---|
| 307 | |
---|
| 308 | owl_global_set_have_config(&g); |
---|
| 309 | |
---|
| 310 | /* create legacy variables */ |
---|
[8203afd] | 311 | perl_get_sv("BarnOwl::id", TRUE); |
---|
| 312 | perl_get_sv("BarnOwl::class", TRUE); |
---|
| 313 | perl_get_sv("BarnOwl::instance", TRUE); |
---|
| 314 | perl_get_sv("BarnOwl::recipient", TRUE); |
---|
| 315 | perl_get_sv("BarnOwl::sender", TRUE); |
---|
| 316 | perl_get_sv("BarnOwl::realm", TRUE); |
---|
| 317 | perl_get_sv("BarnOwl::opcode", TRUE); |
---|
| 318 | perl_get_sv("BarnOwl::zsig", TRUE); |
---|
| 319 | perl_get_sv("BarnOwl::msg", TRUE); |
---|
| 320 | perl_get_sv("BarnOwl::time", TRUE); |
---|
| 321 | perl_get_sv("BarnOwl::host", TRUE); |
---|
| 322 | perl_get_av("BarnOwl::fields", TRUE); |
---|
[00f9a7d] | 323 | |
---|
| 324 | if(file) { |
---|
[8203afd] | 325 | SV * cfg = get_sv("BarnOwl::configfile", TRUE); |
---|
[00f9a7d] | 326 | sv_setpv(cfg, file); |
---|
| 327 | } |
---|
| 328 | |
---|
[f1e629d] | 329 | perl_eval_pv(owl_perlwrap_codebuff, FALSE); |
---|
| 330 | |
---|
| 331 | if (SvTRUE(ERRSV)) { |
---|
[ce6721f] | 332 | err=owl_strdup(SvPV_nolen(ERRSV)); |
---|
[27c3a93] | 333 | sv_setsv (ERRSV, &PL_sv_undef); /* and clear the error */ |
---|
[4e0f545] | 334 | return(err); |
---|
[f1e629d] | 335 | } |
---|
| 336 | |
---|
| 337 | /* check if we have the formatting function */ |
---|
[8203afd] | 338 | if (owl_perlconfig_is_function("BarnOwl::format_msg")) { |
---|
[f1e629d] | 339 | owl_global_set_config_format(&g, 1); |
---|
| 340 | } |
---|
| 341 | |
---|
| 342 | return(NULL); |
---|
| 343 | } |
---|
| 344 | |
---|
| 345 | /* returns whether or not a function exists */ |
---|
| 346 | int owl_perlconfig_is_function(char *fn) { |
---|
| 347 | if (perl_get_cv(fn, FALSE)) return(1); |
---|
| 348 | else return(0); |
---|
| 349 | } |
---|
| 350 | |
---|
| 351 | /* returns 0 on success */ |
---|
[c3acb0b] | 352 | int owl_perlconfig_get_hashkeys(char *hashname, owl_list *l) |
---|
| 353 | { |
---|
[f1e629d] | 354 | HV *hv; |
---|
| 355 | HE *he; |
---|
| 356 | char *key; |
---|
| 357 | I32 i; |
---|
| 358 | |
---|
| 359 | if (owl_list_create(l)) return(-1); |
---|
| 360 | hv = get_hv(hashname, FALSE); |
---|
| 361 | if (!hv) return(-1); |
---|
| 362 | i = hv_iterinit(hv); |
---|
| 363 | while ((he = hv_iternext(hv))) { |
---|
| 364 | key = hv_iterkey(he, &i); |
---|
| 365 | if (key) { |
---|
| 366 | owl_list_append_element(l, owl_strdup(key)); |
---|
| 367 | } |
---|
| 368 | } |
---|
| 369 | return(0); |
---|
| 370 | } |
---|
| 371 | |
---|
| 372 | /* caller is responsible for freeing returned string */ |
---|
[c3acb0b] | 373 | char *owl_perlconfig_execute(char *line) |
---|
| 374 | { |
---|
[f1e629d] | 375 | STRLEN len; |
---|
| 376 | SV *response; |
---|
| 377 | char *out, *preout; |
---|
| 378 | |
---|
| 379 | if (!owl_global_have_config(&g)) return NULL; |
---|
| 380 | |
---|
| 381 | /* execute the subroutine */ |
---|
| 382 | response = perl_eval_pv(line, FALSE); |
---|
| 383 | |
---|
| 384 | if (SvTRUE(ERRSV)) { |
---|
[ce6721f] | 385 | owl_function_error("Perl Error: '%s'", SvPV_nolen(ERRSV)); |
---|
[27c3a93] | 386 | sv_setsv (ERRSV, &PL_sv_undef); /* and clear the error */ |
---|
[f1e629d] | 387 | } |
---|
| 388 | |
---|
| 389 | preout=SvPV(response, len); |
---|
[909771e] | 390 | if (len == 0 || preout[len - 1] != '\n') |
---|
| 391 | out = owl_sprintf("%s\n", preout); |
---|
| 392 | else |
---|
| 393 | out = owl_strdup(preout); |
---|
[f1e629d] | 394 | |
---|
| 395 | return(out); |
---|
| 396 | } |
---|
| 397 | |
---|
[b67ab6b] | 398 | void owl_perlconfig_getmsg(owl_message *m, char *subname) |
---|
| 399 | { |
---|
| 400 | char *ptr = NULL; |
---|
| 401 | if (owl_perlconfig_is_function("BarnOwl::Hooks::_receive_msg")) { |
---|
| 402 | ptr = owl_perlconfig_call_with_message(subname?subname |
---|
| 403 | :"BarnOwl::_receive_msg_legacy_wrap", m); |
---|
[f1e629d] | 404 | } |
---|
[b67ab6b] | 405 | if (ptr) owl_free(ptr); |
---|
[0f9eca7] | 406 | } |
---|
| 407 | |
---|
| 408 | /* Called on all new messages; receivemsg is only called on incoming ones */ |
---|
| 409 | void owl_perlconfig_newmsg(owl_message *m, char *subname) |
---|
| 410 | { |
---|
| 411 | char *ptr = NULL; |
---|
| 412 | if (owl_perlconfig_is_function("BarnOwl::Hooks::_new_msg")) { |
---|
| 413 | ptr = owl_perlconfig_call_with_message(subname?subname |
---|
| 414 | :"BarnOwl::Hooks::_new_msg", m); |
---|
| 415 | } |
---|
| 416 | if (ptr) owl_free(ptr); |
---|
[f1e629d] | 417 | } |
---|
[6922edd] | 418 | |
---|
| 419 | char *owl_perlconfig_perlcmd(owl_cmd *cmd, int argc, char **argv) |
---|
| 420 | { |
---|
| 421 | int i, count; |
---|
| 422 | char * ret = NULL; |
---|
[ad15610] | 423 | SV *rv; |
---|
[6922edd] | 424 | dSP; |
---|
| 425 | |
---|
| 426 | ENTER; |
---|
| 427 | SAVETMPS; |
---|
| 428 | |
---|
| 429 | PUSHMARK(SP); |
---|
| 430 | for(i=0;i<argc;i++) { |
---|
[367fbf3] | 431 | SV *tmp = newSVpv(argv[i], 0); |
---|
| 432 | SvUTF8_on(tmp); |
---|
| 433 | XPUSHs(sv_2mortal(tmp)); |
---|
[6922edd] | 434 | } |
---|
| 435 | PUTBACK; |
---|
| 436 | |
---|
| 437 | count = call_sv(cmd->cmd_perl, G_SCALAR|G_EVAL); |
---|
| 438 | |
---|
| 439 | SPAGAIN; |
---|
| 440 | |
---|
| 441 | if(SvTRUE(ERRSV)) { |
---|
[ce6721f] | 442 | owl_function_error("%s", SvPV_nolen(ERRSV)); |
---|
[c4ba74d] | 443 | (void)POPs; |
---|
[6922edd] | 444 | } else { |
---|
| 445 | if(count != 1) |
---|
| 446 | croak("Perl command %s returned more than one value!", cmd->name); |
---|
[ad15610] | 447 | rv = POPs; |
---|
[6922edd] | 448 | if(SvTRUE(rv)) { |
---|
[ce6721f] | 449 | ret = owl_strdup(SvPV_nolen(rv)); |
---|
[6922edd] | 450 | } |
---|
| 451 | } |
---|
| 452 | |
---|
| 453 | FREETMPS; |
---|
| 454 | LEAVE; |
---|
| 455 | |
---|
| 456 | return ret; |
---|
| 457 | } |
---|
| 458 | |
---|
| 459 | void owl_perlconfig_cmd_free(owl_cmd *cmd) |
---|
| 460 | { |
---|
[ff13a6f] | 461 | SvREFCNT_dec(cmd->cmd_perl); |
---|
[6922edd] | 462 | } |
---|
[db8b00b] | 463 | |
---|
[9c7a701] | 464 | void owl_perlconfig_dispatch_free(owl_dispatch *d) |
---|
| 465 | { |
---|
| 466 | SvREFCNT_dec(d->pfunc); |
---|
| 467 | } |
---|
| 468 | |
---|
[db8b00b] | 469 | void owl_perlconfig_edit_callback(owl_editwin *e) |
---|
| 470 | { |
---|
| 471 | SV *cb = (SV*)(e->cbdata); |
---|
[367fbf3] | 472 | SV *text; |
---|
[ad15610] | 473 | dSP; |
---|
| 474 | |
---|
[db8b00b] | 475 | if(cb == NULL) { |
---|
| 476 | owl_function_error("Perl callback is NULL!"); |
---|
| 477 | } |
---|
[367fbf3] | 478 | text = newSVpv(owl_editwin_get_text(e), 0); |
---|
| 479 | SvUTF8_on(text); |
---|
[db8b00b] | 480 | |
---|
| 481 | ENTER; |
---|
| 482 | SAVETMPS; |
---|
| 483 | |
---|
| 484 | PUSHMARK(SP); |
---|
[367fbf3] | 485 | XPUSHs(sv_2mortal(text)); |
---|
[db8b00b] | 486 | PUTBACK; |
---|
| 487 | |
---|
[9364a36] | 488 | call_sv(cb, G_DISCARD|G_KEEPERR|G_EVAL); |
---|
| 489 | |
---|
| 490 | if(SvTRUE(ERRSV)) { |
---|
[ce6721f] | 491 | owl_function_error("%s", SvPV_nolen(ERRSV)); |
---|
[9364a36] | 492 | } |
---|
[db8b00b] | 493 | |
---|
| 494 | FREETMPS; |
---|
| 495 | LEAVE; |
---|
| 496 | |
---|
| 497 | SvREFCNT_dec(cb); |
---|
| 498 | e->cbdata = NULL; |
---|
| 499 | } |
---|
[f72f573] | 500 | |
---|
| 501 | void owl_perlconfig_mainloop() |
---|
| 502 | { |
---|
[ad15610] | 503 | dSP; |
---|
[0337203] | 504 | if (!owl_perlconfig_is_function("BarnOwl::Hooks::_mainloop_hook")) |
---|
[8203afd] | 505 | return; |
---|
[f72f573] | 506 | PUSHMARK(SP) ; |
---|
[0337203] | 507 | call_pv("BarnOwl::Hooks::_mainloop_hook", G_DISCARD|G_EVAL); |
---|
[a55abb3] | 508 | if(SvTRUE(ERRSV)) { |
---|
[ce6721f] | 509 | owl_function_error("%s", SvPV_nolen(ERRSV)); |
---|
[a55abb3] | 510 | } |
---|
[f72f573] | 511 | return; |
---|
| 512 | } |
---|
[9c7a701] | 513 | |
---|
| 514 | void owl_perlconfig_do_dispatch(owl_dispatch *d) |
---|
| 515 | { |
---|
| 516 | SV *cb = d->pfunc; |
---|
| 517 | dSP; |
---|
| 518 | if(cb == NULL) { |
---|
| 519 | owl_function_error("Perl callback is NULL!"); |
---|
| 520 | } |
---|
| 521 | |
---|
| 522 | ENTER; |
---|
| 523 | SAVETMPS; |
---|
| 524 | |
---|
| 525 | PUSHMARK(SP); |
---|
| 526 | PUTBACK; |
---|
| 527 | |
---|
| 528 | call_sv(cb, G_DISCARD|G_KEEPERR|G_EVAL); |
---|
| 529 | |
---|
| 530 | if(SvTRUE(ERRSV)) { |
---|
[ce6721f] | 531 | owl_function_error("%s", SvPV_nolen(ERRSV)); |
---|
[9c7a701] | 532 | } |
---|
| 533 | |
---|
| 534 | FREETMPS; |
---|
| 535 | LEAVE; |
---|
| 536 | } |
---|