X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=inline;f=ucw%2Flog-stream.c;h=5dbd71ff1c5bf63b3a090dc0d6693700eb9b4244;hb=77c84c65dc22afe21bc52d95cd3996b8e1c7d065;hp=8b697f8bf9816bad3ac05f1b5f4147b7f2033557;hpb=2ce3523cd91426310d4bd1e2563cb7af09d0d5bd;p=libucw.git diff --git a/ucw/log-stream.c b/ucw/log-stream.c index 8b697f8b..5dbd71ff 100644 --- a/ucw/log-stream.c +++ b/ucw/log-stream.c @@ -2,16 +2,16 @@ * UCW Library -- Logging: Management of Log Streams * * (c) 2008 Tomas Gavenciak - * (c) 2009 Martin Mares + * (c) 2009--2012 Martin Mares * * This software may be freely distributed and used according to the terms * of the GNU Lesser General Public License. */ -#include "ucw/lib.h" -#include "ucw/log.h" -#include "ucw/log-internal.h" -#include "ucw/simple-lists.h" +#include +#include +#include +#include #include @@ -170,20 +170,29 @@ log_set_format(struct log_stream *ls, uns mask, uns data) log_set_format(i->p, mask, data); } +void +log_set_default_stream(struct log_stream *ls) +{ + struct log_stream *def = log_stream_by_flags(0); + log_rm_substream(def, NULL); + log_add_substream(def, ls); + log_close_stream(ls); +} + /*** Registry of type names ***/ int log_register_type(const char *name) { if (!log_type_names) { - log_type_names = xmalloc_zero(LS_GET_TYPE(~0U) * sizeof(char *)); + log_type_names = xmalloc_zero(LS_NUM_TYPES * sizeof(char *)); log_type_names[0] = "default"; } uns id; - for (id=0; id < LS_GET_TYPE(~0U) && log_type_names[id]; id++) + for (id=0; id < LS_NUM_TYPES && log_type_names[id]; id++) if (!strcmp(log_type_names[id], name)) return LS_SET_TYPE(id); - ASSERT(id < LS_GET_TYPE(~0U)); + ASSERT(id < LS_NUM_TYPES); log_type_names[id] = xstrdup(name); return LS_SET_TYPE(id); } @@ -196,7 +205,7 @@ int log_find_type(const char *name) if (!log_type_names) return -1; - for (uns id=0; id < LS_GET_TYPE(~0U) && log_type_names[id]; id++) + for (uns id=0; id < LS_NUM_TYPES && log_type_names[id]; id++) if (!strcmp(log_type_names[id], name)) return LS_SET_TYPE(id); return -1;