Blame view

src/com/sitech/ismp/ice/syslogd/LineDisplay.java 4.96 KB
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

package com.sitech.ismp.ice.syslogd;

import com.sitech.ismp.ice.syslog.SyslogDefs;
import com.sitech.ismp.ice.util.AWTUtilities;
import com.sitech.ismp.ice.util.UserProperties;
import com.sitech.ismp.ice.widget.BorderPanel;
import com.sitech.ismp.ice.widget.SimpleLabel;

import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import java.util.*;


public class
LineDisplay extends Frame
		implements SyslogDisplayInterface, WindowListener
	{
	public static final String		RCS_ID = "$Id: LineDisplay.java,v 1.1.1.1 1998/02/22 05:47:54 time Exp $";
	public static final String		RCS_REV = "$Revision: 1.1.1.1 $";
	public static final String		RCS_NAME = "$Name:  $";

	private static final String		DEFAULT_FIELD_LIST = "TFPHNIM";

	protected String				fieldList;
	protected SimpleLabel			messageLabel;


	public
	LineDisplay()
		{
		super();
		this.messageLabel = null;
		this.fieldList = LineDisplay.DEFAULT_FIELD_LIST;		
		}

	public void
	setFieldList( String fieldList )
		{
		if ( fieldList == null || fieldList.equals( "*" ) )
			this.fieldList = LineDisplay.DEFAULT_FIELD_LIST;
		else
			this.fieldList = fieldList;
		}

	public void
	openDisplay(
			String title, int bufLength,
			int x, int y, int w, int h,
			String[] parameters )
		{
		this.setTitle( title );

		this.establishContents();

		if ( parameters.length > 0 )
			this.setFieldList( parameters[0] );

		if ( parameters.length > 2 )
			{
			Font labelFont =
				com.sitech.ismp.ice.util.AWTUtilities.getFont( parameters[2] );

			if ( labelFont != null )
				{
				this.messageLabel.setFont( labelFont );
				}
			}

		this.setLocation( x, y );

		this.setSize( w, h );

		if ( parameters.length < 2 )
			{
			this.show();
			}
		else if ( parameters[1].equalsIgnoreCase( "visible" ) )
			{
			this.show();
			}

		this.addWindowListener( this );
		}
	
	public void
	closeDisplay()
		{
		this.dispose();
		}

	public void
	bringToFront()
		{
		this.show();
		this.toFront();
		}

	public void
	sendToBack()
		{
		this.show();
		this.toBack();
		}

	public void
	hideDisplay()
		{
		this.setVisible( false );
		}

	public void
	showDisplay()
		{
		this.setVisible( true );
		}

	public void
	restart()
		{
		}

	public void
	processMessage( SyslogMessage logMsg )
		{
		this.messageLabel.setText
			( this.buildLogMessage( logMsg ) );
		}

	public void
	windowOpened(WindowEvent e)
		{
		}

	public void
	windowClosing(WindowEvent e)
		{
		this.hideDisplay();
		}

	public void
	windowClosed(WindowEvent e)
		{
		}

	public void
	windowActivated(WindowEvent e)
		{
		}

	public void
	windowDeactivated(WindowEvent e)
		{
		}

	public void
	windowIconified(WindowEvent e)
		{
		}

	public void
	windowDeiconified(WindowEvent e)
		{
		}

	private String
	buildLogMessage( SyslogMessage logMsg )
		{
		StringBuffer buf = new StringBuffer();

		int length = this.fieldList.length();

		for ( int fIdx = 0 ; fIdx < length ; ++fIdx )
			{
			String seper = "";

			char ch = this.fieldList.charAt( fIdx );

			switch ( ch )
				{
				case 'F': case 'f':
					if ( Character.isUpperCase(ch) )
						{
						seper = " ";
						buf.append( SyslogDefs.getFacilityName
											( logMsg.facility ) );
						}
					break;

				case 'P': case 'p':
					if ( Character.isUpperCase(ch) )
						{
						seper = " ";
						buf.append( SyslogDefs.getPriorityName
											( logMsg.priority ) );
						}
					break;

				case 'H': case 'h':
					if ( Character.isUpperCase(ch) )
						{
						seper = " ";
						buf.append( logMsg.hostName );
						}
					break;

				case 'M': case 'm':
					if ( Character.isUpperCase(ch) )
						{
						seper = " ";
						buf.append( logMsg.message );
						}
					break;

				case 'N': case 'n':
					seper = " ";
					if ( Character.isUpperCase(ch) )
						{
						seper = " ";
						buf.append( logMsg.processName );
						}
					break;

				case 'I': case 'i':
					if ( Character.isUpperCase(ch) )
						{
						seper = " ";
						buf.append( "[" );
						buf.append( logMsg.processId );
						buf.append( "]" );
						}
					break;

				case 'T': case 't':
					if ( Character.isUpperCase(ch) )
						{
						seper = " ";
						buf.append( logMsg.timestamp );
						}
					break;
				}

			buf.append( seper );
			}
		
		return buf.toString();
		}

	public void
	establishContents()
		{
		int			row;
		Label		lbl;
		Panel		pan;
		int			cols, rows;
		String		title;

		Color backColor =
			UserProperties.getColor(
				"lineDisplayWindow.bg",
				new Color( 200, 215, 250 ) );
		this.setBackground( backColor );

		Font labelFont =
			UserProperties.getFont(
				"lineDisplayWindow.font",
				new Font( "Serif", Font.BOLD, 12 ) );

		this.setLayout( new GridBagLayout() );

		pan = new BorderPanel( 5, 2, 2, BorderPanel.RIDGE );
		pan.setLayout( new GridBagLayout() );

		this.messageLabel = new SimpleLabel( "" );
		this.messageLabel.setFont( labelFont );
		AWTUtilities.constrain(
			pan, this.messageLabel,
			GridBagConstraints.BOTH,
			GridBagConstraints.CENTER,
			0, 0, 1, 1, 1.0, 1.0 );

		this.setLayout( new BorderLayout() );
		this.add( pan, "Center" );
		}
	}