summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/logging/LogEntry.java
blob: cc64ea6f659bd85b9fcfa75982a0772d7211c38f (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
// --- BEGIN COPYRIGHT BLOCK ---
// This program 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; version 2 of the License.
//
// 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package com.netscape.cms.logging;


import java.io.*;
import java.util.*;
import java.text.*;
import com.netscape.certsrv.base.*;
import com.netscape.certsrv.logging.*;


/**
 * A log entry of LogFile
 *
 * @version $Revision$, $Date$
 */
public class LogEntry {
    private String mEntry;
    private String mLevel;
    private String mSource;
    private String mDetail;
    private String mDate;
    private String mTime;
    private Vector mRow;

    private final String DATE_PATTERN = "dd/MMM/yyyy:HH:mm:ss z";

    /**
     * Constructor for a LogEntry.
     *
     */
    public LogEntry(String entry) throws ParseException {
        mEntry = entry;
        mRow = parse();
    }

    /**
     * parse a log entry
     *
     * return a vector of the segments of the entry
     */
     
    public Vector parse() throws ParseException {
        int x = mEntry.indexOf("[");

        if (x == -1)
            throw new ParseException(mEntry, 0);
        String temp = mEntry.substring(x + 1);

        x = temp.indexOf("]");
        if (x == -1)
            throw new ParseException(mEntry, 0);

        String dateStr = temp.substring(0, x);
        SimpleDateFormat format = new SimpleDateFormat(DATE_PATTERN);
        Date date = format.parse(dateStr);

        mDate = DateFormat.getDateInstance().format(date);
        mTime = DateFormat.getTimeInstance().format(date);

        temp = temp.substring(x + 2);
        x = temp.indexOf("]");
        if (x == -1)
            throw new ParseException(mEntry, 0);
        mSource = temp.substring(1, x);

        temp = temp.substring(x + 2);
        x = temp.indexOf("]");
        if (x == -1)
            throw new ParseException(mEntry, 0);
        mLevel = temp.substring(1, x);

        mDetail = temp.substring(x + 2);

        Vector row = new Vector();

        row.addElement(mSource);
        row.addElement(mLevel);
        row.addElement(mDate);
        row.addElement(mTime);
        row.addElement(mDetail);

        //System.out.println(mSource +"," + mLevel +","+ mDate+","+mTime+","+mDetail);
        return row;

    }

    public String getSource() {
        return mSource;
    }

    public String getLevel() {
        return mLevel;
    }

    public String getDetail() {
        return mDetail;
    }

    public String getDate() {
        return mDate;
    }

    public String getTime() {
        return mTime;
    }

    public Vector getRow() {
        return mRow;
    }

    public String getEntry() {
        return mEntry;
    }

    public void appendDetail(String msg) {
        mDetail = mDetail + "\n" + msg;
        mEntry = mEntry + "\n" + msg;
    }
}