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
|
/*
* *********************************************************************
* * Copyright (C) 1988, 1990 Stanford University. *
* * Permission to use, copy, modify, and distribute this *
* * software and its documentation for any purpose and without *
* * fee is hereby granted, provided that the above copyright *
* * notice appear in all copies. Stanford University *
* * makes no representations about the suitability of this *
* * software for any purpose. It is provided "as is" without *
* * express or implied warranty. Export of this software outside *
* * of the United States of America may require an export license. *
* *********************************************************************
*/
/*
* Logic analyzer event manager.
*/
#include <stdio.h>
#include <signal.h>
#include <fcntl.h>
#include <sys/types.h> /* **mdg** */
#ifdef SYS_V
# include <termio.h>
# ifdef hpux
# define SigBlock( sig ) sigsetmask( sigmask( sig ) )
# define SigRelease( sig ) \
sigsetmask( sigsetmask( 0 ) & ~sigmask( sig ) )
# else
# include <sys/filio.h>
# include <stropts.h>
# define signal( A, B ) sigset( A, B )
# define SigBlock( sig ) sighold( sig )
# define SigRelease( sig ) sigrelse( sig )
# endif
# define vfork() fork()
#else
# include <sys/ioctl.h>
# ifndef sigmask
# define sigmask( m ) ( 1 << (( m ) - 1 ) )
# endif
# define SigBlock( sig ) sigsetmask( sigmask( sig ) )
# define SigRelease( sig ) \
sigsetmask( sigsetmask( 0 ) & ~sigmask( sig ) )
#endif /* SYS_V */
#include "ana.h"
#include "X11/Xutil.h"
#include "ana_glob.h"
#include "graphics.h"
#ifndef HAVE_PTHREADS
#include "helper.h"
#endif
#define WITHINY( Y, Box ) ( (Y <= (Box).bot) and (Y >= (Box).top) )
#define WITHINX( X, Box ) ( (X >= (Box).left) and (X <= (Box).right) )
private int x_server = 0;
private int x_helper = 0; /* process id of helper process */
public Func FGetEvent = NULL; /* used also in thread.c */
public void WindowResize( ev )
XConfigureEvent *ev;
{
int ret;
if( ev->width != XWINDOWSIZE or ev->height != YWINDOWSIZE )
{
XWINDOWSIZE = ev->width;
YWINDOWSIZE = ev->height;
ret = WindowChanges();
}
}
public void WindowExposed( event )
XExposeEvent *event;
{
BBox box;
box.left = event->x;
box.right = event->x + event->width - 1;
box.top = event->y;
box.bot = event->y + event->height - 1;
RedrawWindow( box );
}
public void HandleButton( ev )
XButtonEvent *ev;
{
if( WITHINY( ev->y, scrollBox ) )
DoScrollBar( ev );
else if( WITHINY( ev->y, traceBox) )
{
if( WITHINX( ev->x, namesBox ) )
MoveTrace( ev->y );
else if( WITHINX( ev->x, traceBox ) )
DoCursor( ev );
else if( WITHINX( ev->x, cursorBox ) )
SelectCursTrace( ev->y );
}
else if( WITHINY( ev->y, bannerBox ) )
{
if( WITHINX( ev->x, iconBox ) )
IconifyMe();
else if( WITHINX( ev->x, sizeBox ) )
ResizeMe();
else if( WITHINX( ev->x, menuBox ) )
DoMenu( ev->x, ev->y );
else
{
switch( ev->button & (Button1 | Button2 | Button3) )
{
case Button1 : XRaiseWindow( display, window ); break;
case Button2 : MoveMe( ev->x, ev->y ); break;
case Button3 : XLowerWindow( display, window ); break;
}
}
}
}
public void HandleKey( ev )
XKeyEvent *ev;
{
char buff[ 40 ];
int nChars, i;
nChars = XLookupString( ev, buff, sizeof( buff ), NULL, NULL );
for( i = 0; i < nChars; i++ )
{
switch( buff[i] )
{
case 'i' :
case 'o' :
Zoom( buff );
break;
case 'd' :
DeltaT( buff );
break;
case 'm' :
MoveToTime( buff );
break;
case 'p' :
printPS( buff );
break;
case 'w' :
SetWidth( buff );
break;
default:
XBell( display, 0 );
}
}
}
public void SendEventTo( f )
Func f;
{
FGetEvent = f;
}
#ifndef HAVE_PTHREADS
private void EventHandler()
{
XEvent event;
if( XEventsQueued( display, QueuedAfterReading ) > 0 )
{
do
{
XNextEvent( display, &event );
/* printf("XNextEvent type %d\n", event.type); */
switch( event.type )
{
case ButtonPress :
if( windowState.tooSmall )
;
else if( FGetEvent != NULL )
(*FGetEvent)( &event );
else
HandleButton( &event.xbutton );
break;
case KeyPress :
if( windowState.tooSmall )
;
else if( FGetEvent != NULL )
(*FGetEvent)( &event.xkey );
else
HandleKey( &event.xkey );
break;
case EnterNotify :
if( event.xcrossing.window == window )
WindowCrossed( TRUE );
break;
case LeaveNotify :
if( event.xcrossing.window == window )
WindowCrossed( FALSE );
break;
case Expose :
if( event.xexpose.window == iconW )
RedrawIcon( &event.xexpose );
else if( windowState.tooSmall )
RedrawSmallW();
else if( event.xexpose.window == window )
WindowExposed( &event.xexpose );
break;
case ConfigureNotify :
WindowResize( &event.xconfigure );
break;
case UnmapNotify :
windowState.iconified = TRUE;
break;
case MapNotify :
windowState.iconified = FALSE;
windowState.selected = FALSE;
(void) WindowChanges();
break;
default : ;
}
}
while( XPending( display ) );
}
#ifdef NEED_HELPER
if( x_helper != 0 )
(void) kill( x_helper, SIGINT );
#endif
#if defined( SYS_V ) || defined( LINUX )
/* printf("signal( SIGIO, EventHandler ) at exit\n"); */
(void) signal( SIGIO, EventHandler );
#endif
}
private void DisabledEventHandler()
{
XEvent event;
if( XEventsQueued( display, QueuedAfterReading ) > 0 )
{
do
{
XNextEvent( display, &event );
switch( event.type )
{
case EnterNotify :
if( event.xcrossing.window == window )
WindowCrossed( TRUE );
break;
case LeaveNotify :
if( event.xcrossing.window == window )
WindowCrossed( FALSE );
break;
case Expose :
if( event.xexpose.window == iconW )
RedrawIcon( &event );
else if( windowState.tooSmall )
RedrawSmallW();
break;
case ConfigureNotify :
WindowResize( &event.xconfigure );
break;
case UnmapNotify :
windowState.iconified = TRUE;
break;
case MapNotify :
windowState.iconified = FALSE;
windowState.selected = FALSE;
break;
default : ;
}
}
while( XPending( display ) );
}
#ifdef NEED_HELPER
if( x_helper != 0 )
(void) kill( x_helper, SIGINT );
#endif
#if defined( SYS_V ) || defined( LINUX )
(void) signal( SIGIO, DisabledEventHandler );
#endif
}
#ifdef NEED_HELPER
private int StartHelper( fd )
int fd;
{
extern char *cad_bin, *getenv();
static char helper_name[] = "anXhelper";
char helper_proc[ 256 ];
(void) sprintf( helper_proc, "%s/%s", cad_bin, helper_name );
if( x_helper == 0 ) /* never start 2 processes */
x_helper = vfork();
if( x_helper == -1 )
{
fprintf( stderr, "can't fork helper process\n" );
x_helper = 0;
return( FALSE );
}
else if( x_helper == 0 ) /* child process */
{
if( dup2( fd, 0 ) == -1 )
{
fprintf( stderr, "can't dup descriptor\n" );
_exit( 1 );
}
(void) execl( helper_proc, helper_name, NULL );
fprintf( stderr, "can't exec helper process: %s/%s\n", helper_proc, helper_name );
_exit( 1 );
}
(void) sleep( (unsigned) 1 ); /* make sure process started */
if( kill( x_helper, SIGUSR1 ) != 0 )
{
x_helper = 0;
fprintf( stderr, "helper process is dead\n" );
return( FALSE );
}
return( TRUE );
}
#endif /* NEED_HELPER */
public int InitHandler( fd )
int fd;
{
int flags;
char *senv;
x_server = fd;
(void) signal( SIGIO, EventHandler );
#ifdef NEED_HELPER
return( StartHelper( fd ) );
#endif /* NEED_HELPER */
# ifdef SYS_V
flags = 1;
if( ioctl( fd, FIOASYNC, &flags ) == -1 )
{
fprintf( stderr, "ioctl: can not set FIOASYNC\n" );
return( FALSE );
}
# else
if( (flags = fcntl( fd, F_GETFL, 0 )) == -1 )
{
fprintf( stderr, "fctl: can not do F_GETFL\n" );
return( FALSE );
}
if( (flags & FASYNC) == 0 )
{
if( fcntl( fd, F_SETFL, flags | FASYNC ) == -1 )
{
fprintf( stderr, "fctl: can not do F_SETFL\n" );
return( FALSE );
}
}
# endif /* SYS_V */
# ifdef I_SETSIG
if( ioctl( fd, I_SETSIG, S_INPUT ) == -1 )
{
fprintf( stderr, "ioctl: can not do I_SETSIG\n" );
return( FALSE );
}
# else
# ifdef F_SETOWN
if( fcntl( fd, F_SETOWN, getpid() ) == -1 )
{
fprintf( stderr, "fctl: can not do F_SETOWN\n" );
return( FALSE );
}
# endif
# endif
return( TRUE );
}
public void DisableInput()
{
(void) SigBlock( SIGIO );
}
public void EnableInput()
{
if( XPending( display ) )
{
EventHandler();
}
else
{
#ifdef NEED_HELPER
if( x_helper != 0 )
(void) kill( x_helper, SIGINT );
#endif
;
}
(void) SigRelease( SIGIO );
}
public void DisableAnalyzer()
{
(void) SigBlock( SIGIO );
(void) signal( SIGIO, DisabledEventHandler );
(void) SigRelease( SIGIO );
}
public void EnableAnalyzer()
{
int change;
DisableInput();
updatePending = FALSE;
if( FGetEvent != NULL )
{
(*FGetEvent)( (XEvent *) NULL ); /* let handler know */
FGetEvent = NULL;
}
(void) signal( SIGIO, EventHandler );
if( windowState.iconified == 0 and windowState.tooSmall == 0 )
{
change = WindowChanges();
if( not (change & RESIZED) )
{
BBox box;
box.left = box.top = 0;
box.right = XWINDOWSIZE - 1;
box.bot = YWINDOWSIZE - 1;
RedrawWindow( box );
}
}
EnableInput();
}
public void TerminateAnalyzer()
{
if( x_helper != 0 )
(void) kill( x_helper, SIGKILL );
}
#endif /* !HAVE_PTHREADS */
|