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
|
/* $Xorg: await.c,v 1.4 2001/02/09 02:05:46 xorgcvs Exp $ */
/**** module await.c ****/
/******************************************************************************
Copyright 1993, 1994, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
NOTICE
This software is being provided by AGE Logic, Inc. under the
following license. By obtaining, using and/or copying this software,
you agree that you have read, understood, and will comply with these
terms and conditions:
Permission to use, copy, modify, distribute and sell this
software and its documentation for any purpose and without
fee or royalty and to grant others any or all rights granted
herein is hereby granted, provided that you agree to comply
with the following copyright notice and statements, including
the disclaimer, and that the same appears on all copies and
derivative works of the software and documentation you make.
"Copyright 1993, 1994 by AGE Logic, Inc."
THIS SOFTWARE IS PROVIDED "AS IS". AGE LOGIC MAKES NO
REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. By way of
example, but not limitation, AGE LOGIC MAKE NO
REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS
FOR ANY PARTICULAR PURPOSE OR THAT THE SOFTWARE DOES NOT
INFRINGE THIRD-PARTY PROPRIETARY RIGHTS. AGE LOGIC
SHALL BEAR NO LIABILITY FOR ANY USE OF THIS SOFTWARE. IN NO
EVENT SHALL EITHER PARTY BE LIABLE FOR ANY INDIRECT,
INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOSS
OF PROFITS, REVENUE, DATA OR USE, INCURRED BY EITHER PARTY OR
ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT OR
BASED ON A WARRANTY, EVEN IF AGE LOGIC LICENSEES
HEREUNDER HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
The name of AGE Logic, Inc. may not be used in
advertising or publicity pertaining to this software without
specific, written prior permission from AGE Logic.
Title to this software shall at all times remain with AGE
Logic, Inc.
*****************************************************************************
await.c -- await flo element test
Syd Logan -- AGE Logic, Inc.
*****************************************************************************/
/* $XFree86: xc/programs/xieperf/await.c,v 3.6 2001/12/14 20:01:46 dawes Exp $ */
#ifdef WIN32
#include <X11/Xthreads.h>
#endif
#include "xieperf.h"
#include <stdio.h>
#include <signal.h>
#include <sys/wait.h>
static XieLut XIELut;
static XiePhotoElement *flograph;
static XiePhotoflo flo;
static unsigned char *lut;
static int lutSize;
static int AwaitHandlerSeen;
static XParms xplocal; /* we can't pass args to signal handler */
int
InitAwait(XParms xp, Parms p, int reps)
{
XieDataClass class;
XieOrientation band_order;
XieLTriplet length, levels;
Bool merge;
XieLTriplet start;
int i;
lut = ( unsigned char * ) NULL;
flograph = ( XiePhotoElement * ) NULL;
flo = ( XiePhotoflo ) NULL;
XIELut = ( XieLut ) NULL;
xplocal = xp; /* so the signal handler can access it */
lutSize = ( ( AwaitParms * ) ( p->ts ) )->lutSize;
lut = (unsigned char *)malloc( lutSize );
if ( lut == ( unsigned char * ) NULL )
{
fprintf( stderr, "malloc failed\n" );
reps = 0;
}
else
{
for ( i = 0; i < lutSize; i++ )
{
if ( i % 5 == 0 )
{
lut[ i ] = ( lutSize - 1 ) - i;
}
else
{
lut[ i ] = i;
}
}
if ( !(XIELut = XieCreateLUT( xp->d ) ) )
{
fprintf( stderr, "XieCreateLUT failed\n" );
reps = 0;
}
}
if ( reps )
{
/* set up a flo to read the lut from client */
flograph = XieAllocatePhotofloGraph(2);
if ( flograph == ( XiePhotoElement * ) NULL )
{
fprintf(stderr,"XieAllocatePhotofloGraph failed\n");
return( 0 );
}
class = xieValSingleBand;
band_order = xieValLSFirst;
length[ 0 ] = lutSize;
length[ 1 ] = 0;
length[ 2 ] = 0;
levels[ 0 ] = ( ( AwaitParms * ) ( p->ts ) )->lutLevels;
levels[ 1 ] = 0;
levels[ 2 ] = 0;
XieFloImportClientLUT(&flograph[0],
class,
band_order,
length,
levels
);
merge = False;
start[ 0 ] = 0;
start[ 1 ] = 0;
start[ 2 ] = 0;
XieFloExportLUT(&flograph[1],
1, /* source phototag number */
XIELut,
merge,
start
);
flo = XieCreatePhotoflo( xp->d, flograph, 2 );
}
if ( !reps )
{
FreeAwaitStuff( xp, p );
}
return( reps );
}
void
AbortFlo(XParms xp)
{
XieExtensionInfo *xieInfo;
xp->d = Open_Display( xp->displayName );
if ( XieInitialize( xp->d, &xieInfo ) )
{
/* abort the flo */
XieAbort( xp->d, 0, flo );
}
XCloseDisplay( xp->d );
}
#ifdef SIGALRM
SIGNAL_T
AwaitHandler(int sig)
{
int pid;
/*
hmmmm... bad news. some possibilities include ( first time in this
function e.g. AwaitHandlerSeen is 0 on entry ):
1 --> Signals are messed up and SIGALRM was triggered by mistake,
although this is an unlikely possibility.
2 --> It took more time than we expected to do the tasks in DoAwait() so increase the alarm() value or start pleading with your boss
for a faster system or network
3 --> The flo didn't finish for some reason - maybe the child had
problems executing
4 --> XieAwait is broken: possibly it did not notice that the flo
had finished and thus XieQueryPhotoflo never was executed, or
it *did* notice that the flo had finished but *still* did not
allow XieQueryPhotoflo to get out.
*/
/* We have a big problem now: we could try waiting some more ( nah ),
or we could just take the easy way out and exit, or we could
spawn a child which makes a new connection to the server and
aborts the photoflo. Let's try spawning and see if we can abort
the flo. Also, we will restart this alarm and if we timeout
again we have no choice but to exit as things seem severly hosed.
First, however, let's check the value of AwaitHandlerSeen. If it
happens to be 2 then we have already have timed out a second time
and it is time to exit. */
if ( ++AwaitHandlerSeen == 2 )
{
_exit( 1 );
}
if ( ( pid = fork() ) == -1 )
{
_exit( 1 );
}
else if ( pid == 0 ) /* child */
{
AbortFlo(xplocal); /* XXX is this safe ? */
_exit( 0 );
}
else /* parent */
{
/* if this alarm triggers, the XieAbort failed,
or it worked and we have a situation similar
to one of those listed above */
alarm( GetTimeout() );
}
}
#endif
#ifdef WIN32
struct _data {XParms xp; Parms p;};
void
ChildProc(struct _data *data)
{
XieExtensionInfo *xieInfo;
struct _XParms _xp;
XParms xp = &_xp;
Parms p = data->p;
*xp = *data->xp;
xp->d = Open_Display( xp->displayName );
if ( XieInitialize( xp->d, &xieInfo ) )
{
PumpTheClientData( xp, p, flo, 0, 1,
(char *)lut, lutSize, 0 );
}
XCloseDisplay(xp->d);
}
#endif
void
DoAwait(XParms xp, Parms p, int reps)
{
int i, pid;
int status;
XieExtensionInfo *xieInfo;
XiePhotofloState state;
XiePhototag *expected, *avail;
unsigned int nexpected, navail;
#ifdef WIN32
struct _data data;
HANDLE child;
DWORD threadId;
#endif
/* this is fun! */
for (i = 0; i != reps; i++) {
AwaitHandlerSeen = 0;
XieExecutePhotoflo( xp->d, flo, 0 );
XSync( xp->d, 0 );
XieAwait( xp->d, 0, flo );
#ifdef WIN32
data.xp = xp;
data.p = p;
child = CreateThread(NULL, 0,
(LPTHREAD_START_ROUTINE)ChildProc,
(LPVOID)&data, 0, &threadId);
if (WaitForSingleObject(child, GetTimeout() * 1000) ==
WAIT_TIMEOUT)
{
HANDLE child2;
fprintf(stderr, "transfer timed out\n");
child2 = CreateThread(NULL, 0,
(LPTHREAD_START_ROUTINE)AbortFlo,
(LPVOID)xplocal, 0, &threadId);
if (WaitForSingleObject(child2, GetTimeout() * 1000) ==
WAIT_TIMEOUT)
{
fprintf(stderr, "abort timed out\n");
TerminateThread(child2, 0);
}
TerminateThread(child, 0);
}
#else
if ( ( pid = fork() ) == -1 ) /* gasp */
{
fprintf( stderr, "couldn't fork\n" );
exit( 1 );
}
else if ( pid == 0 ) /* child */
{
/* connect to the server */
xp->d = Open_Display( xp->displayName );
if ( XieInitialize( xp->d, &xieInfo ) )
{
PumpTheClientData( xp, p, flo, 0, 1,
(char *)lut, lutSize, 0 );
}
XCloseDisplay(xp->d);
exit( 0 );
}
else /* parent */
{
#ifdef SIGALRM
signal( SIGALRM, AwaitHandler );
alarm( GetTimeout() );
#endif
#endif /* WIN32 */
/* if we query the photoflo and it is active, then
XieAwait didn't really do what we wanted it to */
if ( !XieQueryPhotoflo( xp->d, 0, flo, &state,
&expected, &nexpected, &avail, &navail ) )
{
fprintf( stderr, "XieQueryPhotoflo failed\n" );
break;
}
if ( expected )
XFree( expected );
if ( avail )
XFree( avail );
if ( state != xieValInactive )
{
fprintf( stderr,
"Flo state was not inactive\n" );
break;
}
#ifndef WIN32
wait( &status );
if ( status & 0xff )
{
fprintf( stderr, "Child process abnormal termination: %x\n", status & 0xff );
break;
}
}
/* whew! somehow we got through this mess unscathed */
#ifdef SIGALRM
alarm( 0 );
#endif
#endif
}
}
void
EndAwait(XParms xp, Parms p)
{
FreeAwaitStuff( xp, p );
}
void
FreeAwaitStuff(XParms xp, Parms p)
{
if ( lut )
{
free( lut );
lut = ( unsigned char * ) NULL;
}
if ( flograph )
{
XieFreePhotofloGraph(flograph,2);
flograph = ( XiePhotoElement * ) NULL;
}
if ( flo )
{
XieDestroyPhotoflo( xp->d, flo );
flo = ( XiePhotoflo ) NULL;
}
if ( XIELut )
{
XieDestroyLUT( xp->d, XIELut );
XIELut = ( XieLut ) NULL;
}
}
|