File: ErrorLogModel.java

package info (click to toggle)
idm-console-framework 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 6,640 kB
  • sloc: java: 70,430; makefile: 486; sh: 345; xml: 254; perl: 23
file content (128 lines) | stat: -rw-r--r-- 3,392 bytes parent folder | download | duplicates (5)
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
/** BEGIN COPYRIGHT BLOCK
 * Copyright (C) 2001 Sun Microsystems, Inc.  Used by permission.
 * Copyright (C) 2005 Red Hat, Inc.
 * All rights reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation version
 * 2.1 of the License.
 *                                                                                 
 * This library 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
 * Lesser General Public License for more details.
 *                                                                                 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 * END COPYRIGHT BLOCK **/
package supermail.status;

import java.util.*;
import java.awt.*;
import java.awt.event.*;
import com.sun.java.swing.*;
import com.sun.java.swing.tree.*;
import com.netscape.management.client.*;
import com.netscape.management.client.console.*;
import com.netscape.management.client.util.*;
import com.netscape.management.client.logging.*;
import com.netscape.management.nmclf.*;
import netscape.ldap.*;

public class ErrorLogModel extends LogViewerModel
{
	private boolean _isInitialized = false;

	private String date[] = 
	{ 
		"Mon, 11 Aug 1998",
		"Tue, 12 Aug 1998",
		"Wed, 13 Aug 1998",
		"Thu, 14 Aug 1998",
		"Fri, 15 Aug 1998",
		"Sat, 16 Aug 1998",
		"Sun, 17 Aug 1998",
	};
	
	private String time[] = 
	{ 
		"00:19:19 -0700 (PDT)",
		"10:14:24 -0700 (PDT)",
		"06:22:56 -0700 (PDT)",
		"20:15:25 -0700 (PDT)",
		"03:23:31 -0700 (PDT)",
	};
	
	private String level[] =
	{
		"Warning",
		"Severe",
		"Information",
		"Information",
		"Information",
		"Information",
	};
	
	private String detail[] =
	{
		"Out of disk space",
		"Hack attempt",
		"Indexes corrupt",
		"Unable to deliver message",
		"Unable to deliver message",
		"Unable to deliver message",
		"Unable to deliver message",
		"Unable to deliver message",
		"Unable to deliver message",
		"Unable to deliver message",
		"Unable to deliver message",
		"Unable to deliver message",
		"Unable to deliver message",
		"Unknown Mailbox",
		"Unknown Mailbox",
		"Unknown Mailbox",
		"Unknown Mailbox",
		"Unknown Mailbox",
		"Unknown Mailbox",
		"Unknown Mailbox",
	};
	
	public ErrorLogModel()
	{
		super();
		addColumn("#");
		addColumn("Date");
		addColumn("Time");
		addColumn("Level");
		addColumn("Detail");
		_isInitialized = true;
	}

	public void populateRows(int rowOffset, int numRows)
	{
		Object row[] = new Object[5];
		for(int rowIndex = 0; rowIndex < numRows; rowIndex++)
		{
			row[0] = Integer.toString(rowOffset + rowIndex);
			row[1] = date[rowIndex % date.length];
			row[2] = time[rowIndex % time.length];
			row[3] = level[rowIndex % level.length];
			row[4] = detail[rowIndex % detail.length];
			setValueAt(row[0], rowIndex, 0);
			setValueAt(row[1], rowIndex, 1);
			setValueAt(row[2], rowIndex, 2);
			setValueAt(row[3], rowIndex, 3);
			setValueAt(row[4], rowIndex, 4);
		}
	}

	public int getLogLength()
	{
		if(!_isInitialized)
			return -1;

		return 500;
	}
}