[864ed35] | 1 | #define OWL_PERL |
---|
[bd3f232] | 2 | #include "owl.h" |
---|
| 3 | |
---|
[fde6d80] | 4 | /* Assumes owenership of one existing ref on `obj`*/ |
---|
[e19eb97] | 5 | void owl_style_create_perl(owl_style *s, const char *name, SV *obj) |
---|
[bd3f232] | 6 | { |
---|
| 7 | s->name=owl_strdup(name); |
---|
[fde6d80] | 8 | s->perlobj = obj; |
---|
[bd3f232] | 9 | } |
---|
| 10 | |
---|
[1fdab04] | 11 | int owl_style_matches_name(const owl_style *s, const char *name) |
---|
[bd3f232] | 12 | { |
---|
| 13 | if (!strcmp(s->name, name)) return(1); |
---|
| 14 | return(0); |
---|
| 15 | } |
---|
| 16 | |
---|
[1fdab04] | 17 | const char *owl_style_get_name(const owl_style *s) |
---|
[ef56a67] | 18 | { |
---|
| 19 | return(s->name); |
---|
| 20 | } |
---|
| 21 | |
---|
[1fdab04] | 22 | const char *owl_style_get_description(const owl_style *s) |
---|
[f1e629d] | 23 | { |
---|
[864ed35] | 24 | SV *sv = NULL; |
---|
| 25 | OWL_PERL_CALL_METHOD(s->perlobj, |
---|
| 26 | "description", |
---|
[c0ddaea] | 27 | ;, |
---|
[864ed35] | 28 | "Error in style_get_description: %s", |
---|
| 29 | 0, |
---|
| 30 | sv = SvREFCNT_inc(POPs); |
---|
| 31 | ); |
---|
| 32 | if(sv) { |
---|
| 33 | return SvPV_nolen(sv_2mortal(sv)); |
---|
| 34 | } else { |
---|
| 35 | return "[error getting description]"; |
---|
| 36 | } |
---|
[f1e629d] | 37 | } |
---|
| 38 | |
---|
[5639bf2] | 39 | /* Use style 's' to format message 'm' into fmtext 'fm'. |
---|
| 40 | * 'fm' should already be be initialzed |
---|
| 41 | */ |
---|
[1fdab04] | 42 | void owl_style_get_formattext(const owl_style *s, owl_fmtext *fm, const owl_message *m) |
---|
[bd3f232] | 43 | { |
---|
[e19eb97] | 44 | const char *body; |
---|
[65b2173] | 45 | char *indent; |
---|
[864ed35] | 46 | int curlen; |
---|
[bd3f232] | 47 | |
---|
[864ed35] | 48 | SV *sv = NULL; |
---|
| 49 | |
---|
| 50 | /* Call the perl object */ |
---|
| 51 | OWL_PERL_CALL_METHOD(s->perlobj, |
---|
| 52 | "format_message", |
---|
[1639ff7] | 53 | XPUSHs(sv_2mortal(owl_perlconfig_message2hashref(m)));, |
---|
[864ed35] | 54 | "Error in format_message: %s", |
---|
| 55 | 0, |
---|
| 56 | sv = SvREFCNT_inc(POPs); |
---|
| 57 | ); |
---|
[282ec9b] | 58 | |
---|
[864ed35] | 59 | if(sv) { |
---|
| 60 | body = SvPV_nolen(sv); |
---|
| 61 | } else { |
---|
| 62 | body = "<unformatted message>"; |
---|
[bd3f232] | 63 | } |
---|
[864ed35] | 64 | |
---|
| 65 | /* indent and ensure ends with a newline */ |
---|
| 66 | indent=owl_malloc(strlen(body)+(owl_text_num_lines(body))*OWL_TAB+10); |
---|
| 67 | owl_text_indent(indent, body, OWL_TAB); |
---|
| 68 | curlen = strlen(indent); |
---|
| 69 | if (curlen==0 || indent[curlen-1] != '\n') { |
---|
| 70 | indent[curlen] = '\n'; |
---|
| 71 | indent[curlen+1] = '\0'; |
---|
| 72 | } |
---|
| 73 | |
---|
| 74 | /* fmtext_append. This needs to change */ |
---|
| 75 | owl_fmtext_append_ztext(fm, indent); |
---|
| 76 | |
---|
| 77 | owl_free(indent); |
---|
| 78 | if(sv) |
---|
[e574a00] | 79 | SvREFCNT_dec(sv); |
---|
[bd3f232] | 80 | } |
---|
| 81 | |
---|
[1fdab04] | 82 | int owl_style_validate(const owl_style *s) { |
---|
[864ed35] | 83 | if (!s || !s->perlobj || !SvOK(s->perlobj)) { |
---|
[f1e629d] | 84 | return -1; |
---|
| 85 | } |
---|
[864ed35] | 86 | return 0; |
---|
[f1e629d] | 87 | } |
---|
| 88 | |
---|
[b585ba2] | 89 | void owl_style_cleanup(owl_style *s) |
---|
[bd3f232] | 90 | { |
---|
| 91 | if (s->name) owl_free(s->name); |
---|
[864ed35] | 92 | SvREFCNT_dec(s->perlobj); |
---|
[bd3f232] | 93 | } |
---|
[516c27e] | 94 | |
---|
| 95 | void owl_style_delete(owl_style *s) |
---|
| 96 | { |
---|
[b585ba2] | 97 | owl_style_cleanup(s); |
---|
[516c27e] | 98 | owl_free(s); |
---|
| 99 | } |
---|