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
|
#error FIXME, FGC: I don't have fixed the const propagation in this code.
Yep, you must run into this error. Please, fix all errors the compiler tells
you. You may do the work in this order:
0) Comment off this lines until the next true comment.
1) Ignore errors for the first time. Look for each "static" function. Change
all "xxx *" into "const xxx *" and every typedef'ed type (e.g.
paramboxptr) into the c(onst) variant (e.g cparamboxptr). ONLY do this
in the arguments.
Recompile and check for error messages in the the static function.
Remove all "const" from the parameters where an "readonly l-value
assignment" is the error.
In the other cases try to fix the errors with changing local variables
in the static functions. In nearly all cases you have to change a running
variable from types like "xxx *" to "const xxx *".
Recompile.
Remove the bogus const declarations from all arguments in the static which
you don't have fixed.
You are ready.
2) AFTER STEP 1:
You have to redo the above work for the global functions. Don't process
this step before step 1.
There is one exception to step 1: Don't try to change any parameters. Only
try to fix local variables.
3) Send back all changes to Mark Hessling if you are not Mark Hessling :-)
/*
* The Regina Rexx Interpreter
* Copyright (C) 1992 Anders Christensen <anders@pvv.unit.no>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* $Id: vmscmd.c,v 1.3 2001/01/25 22:22:48 mark Exp $
*/
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <processes.h>
#include <descrip.h>
#include <dvidef.h>
#include <clidef.h>
#include <climsgdef.h>
#include <ssdef.h>
#include <iodef.h>
#include <jpidef.h>
#include <rmsdef.h>
#include "rexx.h"
#include "strings.h"
struct mbox_status {
unsigned short status ;
unsigned short size ;
int pid ;
} ;
#define BUFSIZE 128
#define NUMBUFS 1
/* #define VMS_DEBUG */
#define MAX(a,b) (((a)>(b))?(a):(b))
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX_SYM_LENGTH 256
typedef struct { /* vms_tsd: static variables of this module (thread-safe) */
volatile int ichan ;
volatile int ochan ;
volatile int pid ;
volatile int oflag ;
volatile int comp_stat ;
int dead ;
volatile int queue ;
char buffer[BUFSIZE] ;
struct mbox_status ostat ;
struct mbox_status istat ;
streng * kill ;
} vms_tsd_t; /* thread-specific but only needed by this module. see
* init_vms
*/
/* init_vms initializes the module.
* Currently, we set up the thread specific data.
* The function returns 1 on success, 0 if memory is short.
*/
int init_vms( tsd_t *TSD )
{
vms_tsd_t *vt;
if (TSD->vms_tsd != NULL)
return(1);
if ((vt = TSD->vms_tsd = MallocTSD(sizeof(vms_tsd_t))) == NULL)
return(0);
memset(vt,0,sizeof(vms_tsd_t)); /* correct for all values */
return(1);
}
static void vms_error (int error_code)
{
LIB$SIGNAL(error_code);
return;
}
static void complain (tsd_t *TSD, int rc)
{
vms_tsd_t *vt;
vt = TSD->vms_tsd;
# ifdef VMS_DEBUG
printf ("About to complain ... rc=%d, pid=%d, ochan=%d, ichan=%d\n",
rc, vt->pid, vt->ochan, vt->ichan) ;
# endif
if ((rc != SS$_NORMAL) && vt->pid)
sys$delprc( &vt->pid, NULL ), vt->pid=0 ;
/*
if (vt->ochan) sys$dassgn ((short)vt->ochan), vt->ochan=0 ;
*/
if (vt->ichan) sys$dassgn ((short)vt->ichan), vt->ichan=0 ;
# ifdef VMS_DEBUG
printf( "No more complains left ...about to give error\n" ) ;
# endif
if (rc && (rc != SS$_NORMAL)) vms_error (rc) ;
# ifdef VMS_DEBUG
printf ("Exiting complain\n") ;
# endif
return ;
}
static void read_in_ast( int read )
{
streng *ptr ;
int rc ;
tsd_t *TSD;
vms_tsd_t *vt;
TSD = __regina_get_tsd(); /* This seems to be a system callback function.
* The TSD must be fetched directly.
*/
vt = TSD->vms_tsd;
if (read) {
switch ( vt->ostat.status ) {
case SS$_NORMAL:
if (vt->ostat.size >= BUFSIZE)
complain( TSD, SS$_NORMAL ) ;
ptr = Str_makeTSD( vt->ostat.size ) ;
ptr = Str_ncatstrTSD( ptr, vt->buffer, vt->ostat.size ) ;
tmp_stack( TSD, ptr, 1 ) ;
break ;
case SS$_ENDOFFILE:
rc = sys$dassgn( (short)vt->ochan ) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
vt->ochan = 0 ;
rc = sys$setef( vt->oflag ) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
break ;
default:
fprintf( stderr,
"sys$qio() return unexpected status value %d\n",
vt->ostat.status ) ;
complain( TSD, rc ) ;
}
}
if (vt->ochan) {
rc = sys$qio(0, (short)vt->ochan, IO$_READVBLK, &vt->ostat,
read_in_ast, 1,
vt->buffer, BUFSIZE, 0, 0, 0, 0 ) ;
# ifdef VMS_DEBUG
printf( "I" ) ;
fflush( stdout ) ;
# endif
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
}
return;
}
static void write_out_ast()
{
int rc, len ;
tsd_t *TSD;
vms_tsd_t *vt;
TSD = __regina_get_tsd(); /* This seems to be a system callback function.
* The TSD must be fetched directly.
*/
vt = TSD->vms_tsd;
if (vt->queue++)
return ;
start:
if (vt->kill) {
FreeTSD( vt->kill ) ;
vt->kill = NULL ;
}
if (! stack_empty( TSD )) {
vt->kill = popline( TSD, NULL, NULL, 0 ) ;
if (!vt->ichan) return ;
rc = sys$qio(0, vt->ichan, IO$_WRITEVBLK, &vt->istat,
write_out_ast, 0, vt->kill->value, Str_len(vt->kill), 0, 0,
0, 0 ) ;
# ifdef VMS_DEBUG
printf( "O" ) ;
fflush( stdout ) ;
# endif
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
} else {
if (vt->dead++ >= 5) {
vt->dead = 0 ;
return ;
}
if (!vt->ichan) return ;
rc = sys$qio(0, vt->ichan, IO$_WRITEOF, &vt->istat,
write_out_ast, 0, 0, 0, 0, 0, 0, 0 ) ;
if (rc == SS$_IVCHAN) return ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
}
if (--vt->queue) goto start ;
return;
}
int vms_do_command( tsd_t *TSD, const streng *cmd, int in, int out, int fout, int envir )
{
struct dsc$descriptor_s name, input, output, prc_name ;
int fdin[2], fdout[2], strval[2], strval2[2], lim=0, max=0 ;
int rc, rc1, child, status, fin, eflag, olen, ilen ;
char line[128], obuf[32], buf2[32], ibuf[32], nbuf[32] ;
struct mbox_status stat ;
vms_tsd_t *vt;
vt = TSD->vms_tsd;
name.dsc$w_length = Str_len( cmd ) ;
name.dsc$b_dtype = DSC$K_DTYPE_T ;
name.dsc$b_class = DSC$K_CLASS_S ;
name.dsc$a_pointer = cmd->value ;
vt->ichan = vt->ochan = 0 ;
if (in) {
vt->dead = vt->queue = 0 ;
rc = sys$crembx(0, &vt->ichan, BUFSIZE, BUFSIZE*NUMBUFS, 0, 0, 0) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
strval[0] = sizeof(ibuf) ;
strval[1] = (int) ibuf ;
rc = lib$getdvi( &DVI$_DEVNAM, &vt->ichan, 0, 0, strval, &ilen) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
input.dsc$w_length = ilen ;
input.dsc$b_dtype = DSC$K_DTYPE_T ;
input.dsc$b_class = DSC$K_CLASS_S ;
input.dsc$a_pointer = ibuf ;
}
if (out || fout) {
rc = sys$crembx(0,&vt->ochan,BUFSIZE,BUFSIZE*NUMBUFS,0,0,0) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
# ifdef VMS_DEBUG
printf( "sys$crembx() ochan=%d, rc=%d\n", vt->ochan, rc ) ;
# endif
strval[0] = sizeof(obuf) ;
strval[1] = (int) obuf ;
rc=lib$getdvi( &DVI$_DEVNAM, &vt->ochan, 0, 0, strval, &olen) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
# ifdef VMS_DEBUG
printf( "lib$getdvi() name=(%d) <%s>\n", olen, obuf ) ;
# endif
output.dsc$w_length = olen ;
output.dsc$b_dtype = DSC$K_DTYPE_T ;
output.dsc$b_class = DSC$K_CLASS_S ;
output.dsc$a_pointer = obuf ;
}
sprintf( nbuf, "REXX-%d", getpid()) ;
prc_name.dsc$w_length = strlen( nbuf ) ;
prc_name.dsc$b_dtype = DSC$K_DTYPE_T ;
prc_name.dsc$b_class = DSC$K_CLASS_S ;
prc_name.dsc$a_pointer = nbuf ;
if (out || fout) {
rc = lib$get_ef( &vt->oflag ) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
rc = sys$clref( vt->oflag ) ;
/* if (rc != SS$_NORMAL) complain( TSD, rc ) ; */
}
rc = lib$get_ef( &eflag ) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
rc = sys$clref( eflag ) ;
/* if (rc != SS$_NORMAL) complain( TSD, rc ) ; */
vt->comp_stat = 0 ;
rc = lib$spawn( &name,
((in) ? &input : NULL),
((out || fout) ? &output : NULL),
&CLI$M_NOWAIT, &prc_name, &vt->pid, &vt->comp_stat,
&eflag, NULL, NULL, NULL, NULL ) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
# ifdef VMS_DEBUG
printf( "lib$spawn() rc=%d\n", rc ) ;
# endif
if (in) write_out_ast() ;
if (out || fout) read_in_ast( 0 ) ;
# ifdef VMS_DEBUG
printf( "Input and output asts started, synching on process\n" ) ;
# endif
rc = sys$synch( eflag, NULL ) ;
# ifdef VMS_DEBUG
printf( "sys$synch() rc=%d, ochan=%d\n", rc, vt->ochan ) ;
# endif
if (vt->ichan) {
rc = sys$dassgn( (short)vt->ichan ) ;
vt->ichan = 0 ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
}
if (out || fout) {
rc = sys$synch( vt->oflag, NULL ) ;
if (vt->ochan)
printf( "Warning ... output channel still exists ochan=%d\n",
vt->ochan);
if (rc != SS$_NORMAL)
complain( TSD, rc ) ;
rc = lib$free_ef( &vt->oflag ) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
}
rc = lib$free_ef( &eflag ) ;
if (rc != SS$_NORMAL) complain( TSD, rc ) ;
/*
* Warning, kludge ahead!!! When a process under VMS exits, it
* seems like there is a little delay until the PRCCNT (process
* count) is decremented. So ... if we just continues without
* sync'ing up against the PRCCNT, we might get a 'quota exceeded'
* on the next command (if it is started very soon)
*/
lib$getjpi( &JPI$_PRCLM, 0, 0, &max, 0, 0 ) ;
for (lim=max; lim>=max; )
lib$getjpi( &JPI$_PRCCNT, 0, 0, &lim, 0, 0 ) ;
complain( TSD, 0 ) ;
if (out || fout)
flush_stack( TSD, fout ) ;
/*
* I have no idea _why_, but bit 28 is sometimes set in the comp_stat.
* Manuals indicate that this is an internal field, but at least it
* kills checking against the predefined symbols, so I strip it away.
* This should most probably have been handled differently, can someone
* educate me on this? .... please???
*/
if ((vt->comp_stat & 0x0fffffff) == CLI$_NORMAL) vt->comp_stat = SS$_NORMAL ;
return (((vt->comp_stat & 0x0fffffff)==SS$_NORMAL) ? 0 : vt->comp_stat) ;
}
int vms_killproc( tsd_t *TSD )
{
vms_tsd_t *vt;
vt = TSD->vms_tsd;
if (vt->pid)
sys$delprc( &vt->pid, NULL ) ;
vt->pid = 0 ;
return 0;
}
streng *vms_resolv_symbol( tsd_t *TSD, streng *name, streng *new, streng *pool )
{
struct dsc$descriptor_s sym_name, sym_val, new_val ;
char buffer[MAX_SYM_LENGTH] ;
unsigned int length=0 ;
int rc ;
streng *old ;
vms_tsd_t *vt;
vt = TSD->vms_tsd;
sym_name.dsc$w_length = Str_len( name ) ;
sym_name.dsc$b_dtype = DSC$K_DTYPE_T ;
sym_name.dsc$b_class = DSC$K_CLASS_S ;
sym_name.dsc$a_pointer = name->value ;
if (new) {
new_val.dsc$w_length = Str_len( new ) ;
new_val.dsc$b_dtype = DSC$K_DTYPE_T ;
new_val.dsc$b_class = DSC$K_CLASS_S ;
new_val.dsc$a_pointer = new->value ;
}
sym_val.dsc$w_length = MAX_SYM_LENGTH ;
sym_val.dsc$b_dtype = DSC$K_DTYPE_T ;
sym_val.dsc$b_class = DSC$K_CLASS_S ;
sym_val.dsc$a_pointer = buffer ;
if (strncmp( pool->value, "SYMBOL", MAX(6,Str_len(pool))) ||
strncmp( pool->value, "SYSTEM", MAX(6,Str_len(pool))))
{
rc = lib$get_symbol( &sym_name, &sym_val, &length ) ;
if (new)
lib$set_symbol( &sym_name, &new_val ) ;
}
else if (strncmp( pool->value, "LOGICAL", MAX(7, Str_len(pool))))
{
/* rc = lib$get_logical( ... ) */
if (new)
lib$set_symbol( &sym_name, &new_val ) ;
else
lib$delete_logical( &sym_name ) ;
} else {
return(NULL) ;
}
old = Str_makeTSD( length ) ;
Str_ncatstrTSD( old, buffer, length ) ;
return(old) ;
}
|