summaryrefslogtreecommitdiff
path: root/java/src/Ice/SysLoggerI.java
blob: 5076a53f79058d60d48db79a6db122882ac37024 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// **********************************************************************
//
// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

package Ice;

import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.io.IOException;

public final class SysLoggerI implements Logger
{
    public
    SysLoggerI(String prefix, String facilityString)
    {
        int facility;
        if(facilityString.equals("LOG_KERN"))
        {
            facility = LOG_KERN;
        }
        else if(facilityString.equals("LOG_USER"))
        {
            facility = LOG_USER;
        }
        else if(facilityString.equals("LOG_MAIL"))
        {
            facility = LOG_MAIL;
        }
        else if(facilityString.equals("LOG_DAEMON"))
        {
            facility = LOG_DAEMON;
        }
        else if(facilityString.equals("LOG_AUTH"))
        {
            facility = LOG_AUTH;
        }
        else if(facilityString.equals("LOG_SYSLOG"))
        {
            facility = LOG_SYSLOG;
        }
        else if(facilityString.equals("LOG_LPR"))
        {
            facility = LOG_LPR;
        }
        else if(facilityString.equals("LOG_NEWS"))
        {
            facility = LOG_NEWS;
        }
        else if(facilityString.equals("LOG_UUCP"))
        {
            facility = LOG_UUCP;
        }
        else if(facilityString.equals("LOG_CRON"))
        {
            facility = LOG_CRON;
        }
        else if(facilityString.equals("LOG_AUTHPRIV"))
        {
            facility = LOG_AUTHPRIV;
        }
        else if(facilityString.equals("LOG_FTP"))
        {
            facility = LOG_FTP;
        }
        else if(facilityString.equals("LOG_LOCAL0"))
        {
            facility = LOG_LOCAL0;
        }
        else if(facilityString.equals("LOG_LOCAL1"))
        {
            facility = LOG_LOCAL1;
        }
        else if(facilityString.equals("LOG_LOCAL2"))
        {
            facility = LOG_LOCAL2;
        }
        else if(facilityString.equals("LOG_LOCAL3"))
        {
            facility = LOG_LOCAL3;
        }
        else if(facilityString.equals("LOG_LOCAL4"))
        {
            facility = LOG_LOCAL4;
        }
        else if(facilityString.equals("LOG_LOCAL5"))
        {
            facility = LOG_LOCAL5;
        }
        else if(facilityString.equals("LOG_LOCAL6"))
        {
            facility = LOG_LOCAL6;
        }
        else if(facilityString.equals("LOG_LOCAL7"))
        {
            facility = LOG_LOCAL7;
        }
        else
        {
            throw new Ice.InitializationException("Invalid value for Ice.SyslogFacility: " + facilityString);
        }
        initialize(prefix, facility);
    }

    private
    SysLoggerI(String prefix, int facility)
    {
        initialize(prefix, facility);
    }

    private void
    initialize(String prefix, int facility)
    {
        _prefix = prefix;
        _facility = facility;

        //
        // Open a datagram socket to communicate with the localhost
        // syslog daemon.
        //
        try
        {
            _host = IceInternal.Network.getLocalAddress(IceInternal.Network.EnableBoth);
            _socket = new DatagramSocket();
            _socket.connect(_host, _port);
        }
        catch(IOException ex)
        {
            throw new Ice.SocketException(ex);
        }
    }

    @Override
    public void
    print(String message)
    {
        log(LOG_INFO, message);
    }

    @Override
    public void
    trace(String category, String message)
    {
        log(LOG_INFO, category + ": " + message);
    }

    @Override
    public void
    warning(String message)
    {
        log(LOG_WARNING, message);
    }

    @Override
    public void
    error(String message)
    {
        log(LOG_ERR, message);
    }

    
    @Override
    public String
    getPrefix()
    {
        return _prefix;
    }

    @Override
    public Logger
    cloneWithPrefix(String prefix)
    {
        return new SysLoggerI(prefix, _facility);
    }

    private void
    log(int severity, String message)
    {
        try
        {
            //
            // Create a syslog message as defined by the RFC 3164:
            // <PRI>HEADER MSG. PRI is the priority and is calculated
            // from the facility and the severity. We don't specify
            // the HEADER. MSG contains the identifier followed by a
            // colon character and the message.
            //

            int priority = (_facility << 3) | severity;

            String msg = '<' + Integer.toString(priority) + '>' + _prefix + ": " + message;

            byte buf[] = msg.getBytes();
            DatagramPacket p = new DatagramPacket(buf, buf.length, _host, _port);
            _socket.send(p);
        }
        catch(IOException ex)
        {
            throw new Ice.SocketException(ex);
        }
    }

    private String _prefix;
    private int _facility;
    private DatagramSocket _socket;
    private InetAddress _host;
    private static int _port = 514;

    //
    // Syslog facilities (as defined in syslog.h)
    //
    private final static int LOG_KERN = 0;
    private final static int LOG_USER = 1;
    private final static int LOG_MAIL = 2;
    private final static int LOG_DAEMON = 3;
    private final static int LOG_AUTH = 4;
    private final static int LOG_SYSLOG = 5;
    private final static int LOG_LPR = 6;
    private final static int LOG_NEWS = 7;
    private final static int LOG_UUCP = 8;
    private final static int LOG_CRON = 9;
    private final static int LOG_AUTHPRIV = 10;
    private final static int LOG_FTP = 11;
    private final static int LOG_LOCAL0 = 16;
    private final static int LOG_LOCAL1 = 17;
    private final static int LOG_LOCAL2 = 18;
    private final static int LOG_LOCAL3 = 19;
    private final static int LOG_LOCAL4 = 20;
    private final static int LOG_LOCAL5 = 21;
    private final static int LOG_LOCAL6 = 22;
    private final static int LOG_LOCAL7 = 23;

    //
    // Syslog priorities (as defined in syslog.h)
    //
    private final static int LOG_ERR = 3;
    private final static int LOG_WARNING = 4;
    private final static int LOG_INFO = 6;
}