summaryrefslogtreecommitdiff
path: root/src/l_log.c
blob: e61c66c3c69bfcdf2c3f04eddfa4a7320ff9427d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
 *  anylike
 *
 *  anylike is a ...
 *  
 *
 *  Copyright (C) 2009-2010 Markus Grueneis <gimpf@anylike.org>
 *                          Christian Pointner <equinox@anylike.org>
 *
 *  This file is part of anylike.
 *
 *  anylike is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  any later version.
 *
 *  anylike is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with anylike. If not, see <http://www.gnu.org/licenses/>.
 */

#include <lua50/lua.h>

#include <stdlib.h>
#include "log.h"

#include "l_log.h"

/* void log_printf(log_prio_t prio, const char* fmt, ...); */
/* void log_print_hex_dump(log_prio_t prio, const u_int8_t* buf, u_int32_t len); */

static int l_log_init(lua_State *L)
{
  log_init();
  return 0;
}

static int l_log_close(lua_State *L)
{
  log_close();
  return 0;
}

static int l_log_print(lua_State *L)
{
  const char* prio_str = luaL_checklstring(L,1,NULL);
  log_prio_t prio;
  if(prio_str) {
    if(!strncmp("ERROR", prio_str, 6))
      prio = ERROR;
    else if(!strncmp("WARNING", prio_str, 6))
      prio = WARNING;
    else if(!strncmp("NOTICE", prio_str, 6))
      prio = NOTICE;
    else if(!strncmp("INFO", prio_str, 6))
      prio = INFO;
    else if(!strncmp("DEBUG", prio_str, 6))
      prio = DEBUG;
    else {
      lua_pushstring(L, "invalid log priority");
      lua_error(L);
    }
  }
  else {
    lua_pushstring(L, "invalid log priority");
    lua_error(L);
  }

  log_printf(prio, "lua: %s", luaL_checklstring(L, 2, NULL));
  return 0;
}

static int l_log_add_target(lua_State *L)
{
  int ret = log_add_target(luaL_checklstring(L,1,NULL));
  if(ret) {
    lua_pushboolean(L, 0);
    switch(ret) {
    case -2: lua_pushstring(L, "memory error at log_add_target"); break;
    case -3: lua_pushstring(L, "unknown log target"); break;
    case -4: lua_pushstring(L, "this log target is only allowed once"); break;
    default: lua_pushstring(L, "syntax error"); break;
    }
    return 2;
  } 

  lua_pushboolean(L, 1);
  return 1;
}

static const struct luaL_reg loglib [] = {
  { "init", l_log_init }, 
  { "close", l_log_close }, 
  { "print", l_log_print },
  { "add_target", l_log_add_target },
  { NULL, NULL }
};


LUALIB_API int luaopen_log (lua_State *L) {
  luaL_openlib(L, "log", loglib, 0);
  return 1;
}