aboutsummaryrefslogtreecommitdiffstats
path: root/LogSyslog.st
blob: 38642651fdd3f21abf794fd3d6d29823e65d5f00 (plain)
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
"
 (C) 2011 by Holger Hans Peter Freyther
 All Rights Reserved

 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Affero General Public License as
 published by the Free Software Foundation, either version 3 of the
 License, or (at your option) any later version.

 This program 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 Affero General Public License for more details.

 You should have received a copy of the GNU Affero General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
"

LogTarget subclass: LogTargetSyslog [
    <comment: 'I can log everything to the syslog.'>
    <category: 'osmo-logging-syslog'>

    LogMap := nil.

    LogTargetSyslog class >> LOG_USER [
        <category: 'c-facility'>
        ^ 8
    ]

    LogTargetSyslog class >> logLevelMap [
        ^ LogMap ifNil: [ LogMap := Dictionary new
            at: LogLevel debug put: 7;
            at: LogLevel info  put: 6;
            at: LogLevel notice put: 5;
            at: LogLevel error put: 3;
            yourself
        ]
    ]

    LogTargetSyslog class >> openlog: aIdent option: aOption facility: aFacility [
        "Free any previous string"
        SYSLOG_NAME ifNotNil: [
            SYSLOG_NAME free.
            Smalltalk at: #SYSLOG_NAME put: nil.
        ].

        Smalltalk at: #SYSLOG_NAME put: aIdent asCData.

        self c_closelog.
        self c_openlog: SYSLOG_NAME opt: aOption facility: aFacility.
        ^ self new
    ]

    LogTargetSyslog class >> c_openlog: ident opt: aOpt facility: aFac [
        <category: 'c-interface'>
        <cCall: 'openlog' returning: #void args: #(#cObject #int #int)>
    ]

    LogTargetSyslog class >> c_syslog: prio fmt: aFormat args: args[
        <category: 'c-interface'>
        <cCall: 'syslog' returning: #void args: #(#int #string #variadic)>
    ]

    LogTargetSyslog class >> c_closelog [
        <category: 'c-interface'>
        <cCall: 'closelog' returning: #void args: #()>
    ]

    LogTargetSyslog class >> initialize [
        <category: 'c-interface'>
        DLD addLibrary: 'libc'.
    ]

    LogTargetSyslog class >> update: aSymbol []

    print: aMessage [
        <category: 'output'>
        | level |
        level := self class logLevelMap at: aMessage level.
        self class c_syslog: level fmt: '%s' args: {aMessage msg}.
    ]

    exception: aMessage [
        self class c_syslog: aMessage level fmt: '%s' args: {'EXCEPTION occured'}.
        self print: aMessage.
    ]
]

Eval [
    LogTargetSyslog initialize.
]