StdDisplayFrame.java 11.2 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 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559

package com.sitech.ismp.ice.syslogd;

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

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


public class
StdDisplayFrame extends Frame
		implements ActionListener, ItemListener,
					SyslogDisplayInterface, WindowListener
	{
	public static final String		RCS_ID = "$Id: StdDisplayFrame.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 Vector		logBuffer;
	protected int			logBufferSize;

	protected MenuBar		mBar;
	protected Menu			mFile;
	protected List			msgList;

	protected String			fieldList;

	protected boolean			showFacility;
	protected boolean			showPriority;
	protected boolean			showTimestamp;
	protected boolean			showHostname;
	protected boolean			showProcessName;
	protected boolean			showProcessId;
	protected boolean			showMessage;

	protected CheckboxMenuItem	menuItemF;
	protected CheckboxMenuItem	menuItemP;
	protected CheckboxMenuItem	menuItemT;
	protected CheckboxMenuItem	menuItemH;
	protected CheckboxMenuItem	menuItemN;
	protected CheckboxMenuItem	menuItemI;
	protected CheckboxMenuItem	menuItemM;


	public
	StdDisplayFrame()
		{
		super();
		this.logBufferSize = 0;
		this.logBuffer = null;

		this.showFacility = true;
		this.showPriority = true;
		this.showTimestamp = true;
		this.showHostname = true;
		this.showProcessName = true;
		this.showProcessId = true;
		this.showMessage = true;

		this.fieldList = StdDisplayFrame.DEFAULT_FIELD_LIST;		
		}

    public void
    itemStateChanged( ItemEvent event )
        {
		boolean		redisplay = false;

		if ( event.getItemSelectable() == this.menuItemM )
			{
			redisplay = true;
			this.showMessage = this.menuItemM.getState();
			}
		else if ( event.getItemSelectable() == this.menuItemF )
			{
			redisplay = true;
			this.showFacility = this.menuItemF.getState();
			}
		else if ( event.getItemSelectable() == this.menuItemP )
			{
			redisplay = true;
			this.showPriority = this.menuItemP.getState();
			}
		else if ( event.getItemSelectable() == this.menuItemT )
			{
			redisplay = true;
			this.showTimestamp = this.menuItemT.getState();
			}
		else if ( event.getItemSelectable() == this.menuItemN )
			{
			redisplay = true;
			this.showProcessName = this.menuItemN.getState();
			}
		else if ( event.getItemSelectable() == this.menuItemI )
			{
			redisplay = true;
			this.showProcessId = this.menuItemI.getState();
			}
		else if ( event.getItemSelectable() == this.menuItemH )
			{
			redisplay = true;
			this.showHostname = this.menuItemH.getState();
			}

		if ( redisplay )
			{
			this.redisplayList();
			}
		}

	public void
	redisplayList()
		{
		this.msgList.setVisible( false );

		this.msgList.removeAll();

		int size = this.logBuffer.size();

		for ( int i = 0 ; i < size ; ++i )
			{
			String itemStr =
				this.getLogMessage( i );

			this.msgList.addItem( itemStr, i );
			}

		this.msgList.setVisible( true );
		}

    public void
    actionPerformed( ActionEvent event )
        {
	    String command = event.getActionCommand();
		
		if ( command.equals( "HIDE" ) )
			{
			this.hideDisplay();
			}
        }

	private void
	establishMenuBar()
		{
        MenuItem	mItem;

		this.mBar = new MenuBar();

		this.mFile = new Menu( "File", true );
		this.mBar.add( this.mFile );

        mItem = new MenuItem( "Hide Display" );
        mItem.setActionCommand( "HIDE" );
        mItem.addActionListener( this );
	    this.mFile.add( mItem );

		this.addAdditionalMenus( mBar );

		this.setMenuBar( this.mBar );
		}

	public void
	addAdditionalMenus( MenuBar menuBar )
		{
        CheckboxMenuItem	mItem;

		Menu methodMenu = new Menu( "Fields", true );
		this.mBar.add( methodMenu );

		this.fieldList = fieldList;
		int len = fieldList.length();
		
		for ( int fIdx = 0 ; fIdx < len ; ++fIdx )
			{
			mItem = null;
			char ch = this.fieldList.charAt( fIdx );

			switch ( ch )
				{
				case 'F': case 'f':
					mItem = new CheckboxMenuItem( "Facility" );
					mItem.setActionCommand( "FAC" );
					this.menuItemF = mItem;
					break;
				case 'P': case 'p':
					mItem = new CheckboxMenuItem( "Priority" );
					mItem.setActionCommand( "PRI" );
					this.menuItemP = mItem;
					break;
				case 'T': case 't':
					mItem = new CheckboxMenuItem( "Timestamp" );
					mItem.setActionCommand( "STAMP" );
					this.menuItemT = mItem;
					break;
				case 'H': case 'h':
					mItem = new CheckboxMenuItem( "Hostname" );
					mItem.setActionCommand( "HOST" );
					this.menuItemH = mItem;
					break;
				case 'N': case 'n':
					mItem = new CheckboxMenuItem( "ProcessName" );
					mItem.setActionCommand( "NAME" );
					this.menuItemN = mItem;
					break;
				case 'I': case 'i':
					mItem = new CheckboxMenuItem( "ProcessID" );
					mItem.setActionCommand( "ID" );
					this.menuItemI = mItem;
					break;
				case 'M': case 'm':
					mItem = new CheckboxMenuItem( "Message" );
					mItem.setActionCommand( "MSG" );
					this.menuItemM = mItem;
					break;
				}

			if ( mItem != null )
				{
				mItem.setState( Character.isUpperCase( ch ) );
				mItem.addItemListener( this );
				methodMenu.add( mItem );
				}
			}
		}

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

		int len = fieldList.length();
		for ( int fIdx = 0 ; fIdx < len ; ++fIdx )
			{
			char ch = this.fieldList.charAt( fIdx );
			switch ( ch )
				{
				case 'F': case 'f':
					this.showFacility = Character.isUpperCase( ch );
					break;
				case 'P': case 'p':
					this.showPriority = Character.isUpperCase( ch );
					break;
				case 'T': case 't':
					this.showTimestamp = Character.isUpperCase( ch );
					break;
				case 'H': case 'h':
					this.showHostname = Character.isUpperCase( ch );
					break;
				case 'N': case 'n':
					this.showProcessName = Character.isUpperCase( ch );
					break;
				case 'I': case 'i':
					this.showProcessId = Character.isUpperCase( ch );
					break;
				case 'M': case 'm':
					this.showMessage = Character.isUpperCase( ch );
					break;
				}
			}
		}

	public void
	openDisplay(
			String title, int bufLength,
			int x, int y, int w, int h,
			String[] parameters )
		{
		this.logBufferSize = bufLength;
		this.logBuffer =
			new Vector( this.logBufferSize );

		if ( parameters != null && parameters.length > 0 )
			this.setFieldList( parameters[0] );

		this.setTitle( title );

		this.establishMenuBar();

		this.setMenuBar( this.mBar );

		this.establishMenuBar();

		this.establishContents();

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

			if ( listFont != null )
				{
				this.msgList.setFont( listFont );
				}
			}

		this.setLocation( x, y );

		this.setSize( w, h );

        if ( parameters != null )
            {
    		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()
		{
		}

	private String
	getLogMessage( int index )
		{
		SyslogMessage logMsg = (SyslogMessage)
				this.logBuffer.elementAt( index );

		if ( logMsg != null )
			{
			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 ( this.showFacility )
							{
							seper = " ";
							buf.append( SyslogDefs.getFacilityName
												( logMsg.facility ) );
							}
						break;

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

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

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

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

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

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

				buf.append( seper );
				}
			
			return buf.toString();
			}
		else
			{
			return "ERROR null logMsg at '" + index + "'";
			}
		}

	public void
	processMessage( SyslogMessage logMsg )
		{
		this.logBuffer.insertElementAt( logMsg, 0 );

		String itemStr =
			this.getLogMessage( 0 );

		this.msgList.addItem( itemStr, 0 );

		if ( this.logBuffer.size() > this.logBufferSize )
			{
			this.logBuffer.removeElementAt
				( this.logBuffer.size() - 1 );
			}
		if ( this.msgList.getItemCount() > this.logBufferSize )
			{
			this.msgList.delItem
				( this.msgList.getItemCount() - 1 );
			}
		}

	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)
		{
		}


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

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

		Font textFont =
			UserProperties.getFont(
				"stdDisplayWindow.text.font",
				new Font( "Serif", Font.PLAIN, 14 ) );
		Font labelFont =
			UserProperties.getFont(
				"stdDisplayWindow.labels.font",
				new Font( "Serif", Font.BOLD, 14 ) );
		Font listFont =
			UserProperties.getFont(
				"stdDisplayWindow.list.font",
				new Font( "Serif", Font.PLAIN, 14 ) );

		this.setLayout( new GridBagLayout() );

		pan = new BorderPanel( 5, 2, 2, BorderPanel.RIDGE );
		pan.setLayout( new GridBagLayout() );
		AWTUtilities.constrain(
			this, pan,
			GridBagConstraints.BOTH,
			GridBagConstraints.CENTER,
			0, 0, 1, 1, 1.0, 1.0 );

		this.msgList = new List();
		this.msgList.setFont( listFont );
		AWTUtilities.constrain(
			pan, this.msgList,
			GridBagConstraints.BOTH,
			GridBagConstraints.CENTER,
			0, 0, 1, 1, 1.0, 1.0 );
		}
	}