X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fmessage.c;h=41a1da17502ea5e18386cdecb5c0d99df2c3afae;hb=f20d313de2b85419c3e2e22a78cdcdce499af43d;hp=bbba1c5506e9cdb1dad009d4eeedce06401e7f24;hpb=1a26ffe4489b411bda630d9e5b87e2d2e4538fdb;p=pspp diff --git a/src/libpspp/message.c b/src/libpspp/message.c index bbba1c5506..41a1da1750 100644 --- a/src/libpspp/message.c +++ b/src/libpspp/message.c @@ -105,12 +105,18 @@ msg_set_handler (void (*handler) (const struct msg *, void *aux), void *aux) /* msg_location. */ +void +msg_location_uninit (struct msg_location *loc) +{ + free (loc->file_name); +} + void msg_location_destroy (struct msg_location *loc) { if (loc) { - free (loc->file_name); + msg_location_uninit (loc); free (loc); } } @@ -197,6 +203,30 @@ msg_location_format (const struct msg_location *loc, struct string *s) } } +/* msg_stack */ + +void +msg_stack_destroy (struct msg_stack *stack) +{ + if (stack) + { + msg_location_destroy (stack->location); + free (stack->description); + free (stack); + } +} + +struct msg_stack * +msg_stack_dup (const struct msg_stack *src) +{ + struct msg_stack *dst = xmalloc (sizeof *src); + *dst = (struct msg_stack) { + .location = msg_location_dup (src->location), + .description = xstrdup_if_nonnull (src->description), + }; + return dst; +} + /* Working with messages. */ const char * @@ -218,10 +248,16 @@ msg_severity_to_string (enum msg_severity severity) struct msg * msg_dup (const struct msg *src) { + struct msg_stack **ms = xmalloc (src->n_stack * sizeof *ms); + for (size_t i = 0; i < src->n_stack; i++) + ms[i] = msg_stack_dup (src->stack[i]); + struct msg *dst = xmalloc (sizeof *dst); *dst = (struct msg) { .category = src->category, .severity = src->severity, + .stack = ms, + .n_stack = src->n_stack, .location = msg_location_dup (src->location), .command_name = xstrdup_if_nonnull (src->command_name), .text = xstrdup (src->text), @@ -239,6 +275,9 @@ msg_destroy (struct msg *m) { if (m) { + for (size_t i = 0; i < m->n_stack; i++) + msg_stack_destroy (m->stack[i]); + free (m->stack); msg_location_destroy (m->location); free (m->text); free (m->command_name); @@ -253,6 +292,16 @@ msg_to_string (const struct msg *m) ds_init_empty (&s); + for (size_t i = 0; i < m->n_stack; i++) + { + const struct msg_stack *ms = m->stack[i]; + if (!msg_location_is_empty (ms->location)) + { + msg_location_format (ms->location, &s); + ds_put_cstr (&s, ": "); + } + ds_put_format (&s, "%s\n", ms->description); + } if (m->category != MSG_C_GENERAL && !msg_location_is_empty (m->location)) { msg_location_format (m->location, &s);