summaryrefslogtreecommitdiff
path: root/java/JACE/netsvcs/Logger/LogRecord.java
blob: 972cf45af74fe39d10d839d7e16c4f29b07bbbfc (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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/*************************************************
 *
 * = PACKAGE
 *    JACE.netsvcs.Logger
 *
 * = FILENAME
 *    LogRecord.java
 *
 *@author Chris Cleeland, Everett Anderson
 *
 *************************************************/
package JACE.netsvcs.Logger;

import java.util.*;
import java.io.*;
import JACE.OS.*;

/**
 * Communicates logging information.  Compatible with the C++ ACE
 * ACE_Log_Record class.
 */
public class LogRecord
{
  /**
   * Maximum size of a LogRecord
   */
  final public int MAXLOGMSGLEN = 4 * 1024;

  private int type_;
  private int length_;
  private long msec_;
  private int pid_;
  private byte[] msgData_;
  private final static int numIntMembers = 5;
  private final static int sizeofIntInBytes = 4;

  /**
   * Create a default instance.
   */
  public LogRecord()
  {
    type(0);
    timeStamp((int)new Date().getTime());
    length(0);
    pid(0);
  }

  /**
   * Create a LogRecord.  This is the designated initializer.
   * @param priority a numeric specification of the priority (ascending)
   * @param milliseconds time attached to the log entry in Unix <pre>time_t</pre> format 
   * @param pid the process ID 
   */
  public LogRecord(int priority,
		   long milliseconds,
		   int pid)
  {
    type(priority);
    timeStamp(milliseconds);
    length(0);
    pid(pid);
  }

  /**
   * Create a LogRecord with the current time and the given message.
   *
   *@param message message to log
   */
  public LogRecord (String message)
  {
    this ();

    msgData (message);
  }

  /**
   * Conversion to string.  Only includes the <pre>msgData_</pre> member.
   */
  public String toString()
  {
    String result = null;
    try {
      result = new String (msgData_,
			   "US-ASCII");
    } catch (UnsupportedEncodingException e) {
      result = new String (msgData_);
    }

    return result;
  }

  /**
   * Place a textual representation of the record on a PrintStream.
   * When verbose is specified to be true, the output takes the form
   * <PRE>(Date)@(host name)@(PID)@(type)@(message)</PRE>
   * Otherwise it just prints the message.
   * @param hostname name of the host generating this record
   * @param verbose specify how much information to print (see above)
   * @param ps A PrintStream instance to which the output should go.
   */
  public void print(String hostname,
		    boolean verbose,
		    PrintStream ps)
  {
    String toprint;
    if (verbose)
      {
	Date now = new Date(this.timeStamp());

	/* 01234567890123456789012345 */
	/* Wed Oct 18 14:25:36 1989n0 */
	toprint = now.toString().substring(4) + "@"
                + hostname + "@" + pid_ + "@" + type_ + "@"
                + this.toString();
      }
    else
      {
	toprint = this.toString();
      }
    ps.println(toprint);
  }

  /**
   * Read in the data for this LogRecord from the given InputStream.
   *
   *@param is InputStream to read from
   *@exception IOException error during transmission
   */
  public void streamInFrom (InputStream is) throws IOException
  {
    BufferedInputStream bis = new BufferedInputStream (is);

    DataInputStream dis = new DataInputStream (bis);

    streamInFrom (dis);
  }

  /**
   * Read in the data for this LogRecord from the given DataInputStream.
   *
   *@param dis DataInputStream to read from
   *@exception IOException error during transmission
   */
  public void streamInFrom(DataInputStream dis) throws IOException
  {
    // Order here must match layout order in the C++ class.
    length(dis.readInt());
    type(dis.readInt());
    this.timeStamp((long)dis.readInt() * 1000);

    // Skip smaller time resolution info since we're lucky if Java's
    // timer can handle more than millisecond precision, anyway
    dis.skipBytes(4); 

    pid(dis.readInt());

    int dataLength = (int) (length_ - numIntMembers * sizeofIntInBytes);

    msgData_ = new byte[dataLength];

    dis.readFully(msgData_, 0, dataLength);
  }

  /** 
   * Write this LogRecord out to the given OutputStream.
   *
   *@param os OutputStream to write to
   *@exception IOException error during transmission
   */
  public void streamOutTo (OutputStream os) throws IOException
  {
    BufferedOutputStream bos = new BufferedOutputStream (os);

    DataOutputStream dos = new DataOutputStream (bos);

    streamOutTo (dos);
  }

  /**
   * Write this LogRecord out to the given DataOutputStream.
   *
   *@param dos OutputStream to write to
   *@exception IOException error during transmission
   */
  public void streamOutTo(DataOutputStream dos) throws IOException
  {
    dos.writeInt(length());
    dos.writeInt(type());
    dos.writeInt((int)(this.msec_ / 1000));
    dos.writeInt(0);  
    dos.writeInt(pid());

    dos.write(msgData_);

    dos.flush ();
  }

  /**
   * Return the LogRecord type.
   */
  public int type()            { return type_; }

  /**
   * Set the LogRecord type.
   */
  public void type(int t)      { type_ = t; }

  /**
   * Return the length of this LogRecord.
   */
  public int length()          { return length_;  }

  /**
   * Set the length of this LogRecord.
   */
  public void length(int l)    { length_ = l; }

  /**
   * Calculate the length of this LogRecord from the size of
   * the message and the header.
   */
  private void setLen(int msgLen)
       { length(msgLen + numIntMembers * sizeofIntInBytes); }

  /**
   * Return the millisec time stamp of this LogRecord.
   */
  public long timeStamp()      { return this.msec_; }

  /**
   * Set the millisec time stamp of this LogRecord.
   */
  public void timeStamp(long msec){ this.msec_ = msec; }

  /**
   * Return the PID of this LogRecord.
   */
  public int pid()             { return pid_; }

  /**
   * Set the PID of this LogRecord.
   */
  public void pid(int p)       { pid_ = p; }

  /**
   * Return the message of this LogRecord as a byte array.
   */
  public byte[] msgData()      { return msgData_; }

  /**
   * Set the message of this LogRecord to a given byte array.
   */
  public void msgData(byte[] m)
    { 
      int size = m.length;

      if (size > MAXLOGMSGLEN) 
	size = MAXLOGMSGLEN;

      this.msgData_ = new byte[size];
 
      System.arraycopy(m, 0, msgData_, 0, size);

      setLen(size);
    }

  /**
   * Set the message of this LogRecord to a given byte array.  First
   * tries to use US-ASCII encoding, then uses the default encoding
   * if that fails.  The toString method is essentially the opposite
   * version.
   */
  public void msgData(String m)
  {
    byte temp[] = null;
    try {
      temp = m.getBytes("US-ASCII");
    } catch (UnsupportedEncodingException e) {
      temp = m.getBytes ();
    }
    if (temp.length > MAXLOGMSGLEN) {
      this.msgData_ = new byte[MAXLOGMSGLEN];
      
      System.arraycopy(temp, 0, msgData_, 0, MAXLOGMSGLEN);
    } else
      this.msgData_ = temp;
    
    setLen(msgData_.length);
  }
}