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
|
/*---------------------------------------------------------------------------
VMSmunch.c version 1.3 28 Apr 1992
This routine is a blatant and unrepentent appropriation of all the nasty
and difficult-to-do and complicated VMS shenanigans which Joe Meadows has
so magnificently captured in his FILE utility. Not only that, it's even
allowed! (see below). But let it be clear at the outset that Joe did all
the work; yea, verily, he is truly a godlike unit.
The appropriations and modifications herein were performed primarily by
him known as "Cave Newt," although the Info-ZIP working group probably had
their fingers in it somewhere along the line. The idea is to put the raw
power of Joe's original routine at the disposal of various routines used
by UnZip (and Zip, possibly), not least among them the utime() function.
Read on for details...
18-JUL-1994 Hunter Goatley <goathunter@WKU.EDU>
Fixed IO$_ACCESS call.
18-Jul-1994 Richard Levitte levitte@e.kth.se
Changed VMSmunch() to deassign the channel before
returning when an error has occured.
02-Apr-1994 Jamie Hanrahan jeh@cmkrnl.com
Moved definition of VMStimbuf struct from here
to vmsmunch.h
---------------------------------------------------------------------------
Usage (i.e., "interface," in geek-speak):
int VMSmunch( char *filename, int action, char *ptr );
filename the name of the file on which to be operated, obviously
action an integer which specifies what action to take
ptr pointer to any extra item which may be needed (else NULL)
The possible values for the action argument are as follows:
GET_TIMES get the creation and revision dates of filename; ptr
must point to an empty VMStimbuf struct, as defined
in vmsmunch.h
(with room for at least 24 characters, including term.)
SET_TIMES set the creation and revision dates of filename (utime
option); ptr must point to a valid VMStimbuf struct,
as defined in vmsmunch.h
GET_RTYPE get the record type of filename; ptr must point to an
integer which, on return, is set to the type (as defined
in VMSmunch.h: FAT$C_* defines)
CHANGE_RTYPE change the record type to that specified by the integer
to which ptr points; save the old record type (later
saves overwrite earlier ones)
RESTORE_RTYPE restore the record type to the previously saved value;
or, if none, set it to "fixed-length, 512-byte" record
format (ptr not used)
---------------------------------------------------------------------------
Comments from FILE.C, a utility to modify file characteristics:
Written by Joe Meadows Jr, at the Fred Hutchinson Cancer Research Center
BITNET: JOE@FHCRCVAX
PHONE: (206) 467-4970
There are no restrictions on this code, you may sell it, include it
with any commercial package, or feed it to a whale.. However, I would
appreciate it if you kept this comment in the source code so that anyone
receiving this code knows who to contact in case of problems. Note that
I do not demand this condition..
---------------------------------------------------------------------------*/
/*****************************/
/* Includes, Defines, etc. */
/*****************************/
#include <descrip.h>
#include <rms.h>
#include <stdio.h>
#include <iodef.h>
#include <string.h>
#include <starlet.h>
#include <atrdef.h> /* this gets created with the c3.0 compiler */
#include <fibdef.h> /* this gets created with the c3.0 compiler */
#include "VMSmunch.h" /* GET/SET_TIMES, RTYPE, etc. */
#include "VMSmunch_private.h" /* fatdef.h, etc. */
#define RTYPE fat$r_rtype_overlay.fat$r_rtype_bits
#define RATTRIB fat$r_rattrib_overlay.fat$r_rattrib_bits
static void asctim();
static void bintim();
/* from <ssdef.h> */
#ifndef SS$_NORMAL
# define SS$_NORMAL 1
# define SS$_BADPARAM 20
#endif
/*************************/
/* Function VMSmunch() */
/*************************/
int VMSmunch( filename, action, ptr )
char *filename, *ptr;
int action;
{
/* original file.c variables */
static struct FAB Fab;
static struct NAM Nam;
static struct fibdef Fib; /* short fib */
static struct dsc$descriptor FibDesc =
{sizeof(Fib),DSC$K_DTYPE_Z,DSC$K_CLASS_S,(char *)&Fib};
static struct dsc$descriptor_s DevDesc =
{0,DSC$K_DTYPE_T,DSC$K_CLASS_S,&Nam.nam$t_dvi[1]};
static struct fatdef Fat;
static union {
struct fchdef fch;
long int dummy;
} uchar;
static struct fjndef jnl;
static long int Cdate[2],Rdate[2],Edate[2],Bdate[2];
static short int revisions;
static unsigned long uic;
static union {
unsigned short int value;
struct {
unsigned system : 4;
unsigned owner : 4;
unsigned group : 4;
unsigned world : 4;
} bits;
} prot;
static struct atrdef Atr[] = {
{ATR$S_RECATTR,ATR$C_RECATTR,&Fat}, /* record attributes */
{ATR$S_UCHAR,ATR$C_UCHAR,&uchar}, /* File characteristics */
{ATR$S_CREDATE,ATR$C_CREDATE,&Cdate[0]}, /* Creation date */
{ATR$S_REVDATE,ATR$C_REVDATE,&Rdate[0]}, /* Revision date */
{ATR$S_EXPDATE,ATR$C_EXPDATE,&Edate[0]}, /* Expiration date */
{ATR$S_BAKDATE,ATR$C_BAKDATE,&Bdate[0]}, /* Backup date */
{ATR$S_ASCDATES,ATR$C_ASCDATES,&revisions}, /* number of revisions */
{ATR$S_FPRO,ATR$C_FPRO,&prot}, /* file protection */
{ATR$S_UIC,ATR$C_UIC,&uic}, /* file owner */
{ATR$S_JOURNAL,ATR$C_JOURNAL,&jnl}, /* journal flags */
{0,0,0}
} ;
static char EName[NAM$C_MAXRSS];
static char RName[NAM$C_MAXRSS];
static struct dsc$descriptor_s FileName =
{0,DSC$K_DTYPE_T,DSC$K_CLASS_S,0};
static struct dsc$descriptor_s string = {0,DSC$K_DTYPE_T,DSC$K_CLASS_S,0};
static short int DevChan;
static short int iosb[4];
static long int i,status;
/* static char *retval; */
/* new VMSmunch variables */
static int old_rtype=FAT$C_FIXED; /* storage for record type */
/*---------------------------------------------------------------------------
Initialize attribute blocks, parse filename, resolve any wildcards, and
get the file info.
---------------------------------------------------------------------------*/
/* initialize RMS structures, we need a NAM to retrieve the FID */
Fab = cc$rms_fab;
Fab.fab$l_fna = filename;
Fab.fab$b_fns = strlen(filename);
Fab.fab$l_nam = &Nam; /* FAB has an associated NAM */
Nam = cc$rms_nam;
Nam.nam$l_esa = EName; /* expanded filename */
Nam.nam$b_ess = sizeof(EName);
Nam.nam$l_rsa = RName; /* resultant filename */
Nam.nam$b_rss = sizeof(RName);
/* do $PARSE and $SEARCH here */
status = sys$parse(&Fab);
if (!(status & 1)) return(status);
/* search for the first file.. If none signal error */
status = sys$search(&Fab);
if (!(status & 1)) return(status);
while (status & 1) {
/* initialize Device name length, note that this points into the NAM
to get the device name filled in by the $PARSE, $SEARCH services */
DevDesc.dsc$w_length = Nam.nam$t_dvi[0];
status = sys$assign(&DevDesc,&DevChan,0,0);
if (!(status & 1)) return(status);
FileName.dsc$a_pointer = Nam.nam$l_name;
FileName.dsc$w_length = Nam.nam$b_name+Nam.nam$b_type+Nam.nam$b_ver;
/* Initialize the FIB */
for (i=0;i<3;i++)
#ifdef VAXC
Fib.fib$r_fid_overlay.fib$w_fid[i]=Nam.nam$w_fid[i];
#else
Fib.fib$w_fid[i]=Nam.nam$w_fid[i];
#endif
for (i=0;i<3;i++)
#ifdef VAXC
Fib.fib$r_did_overlay.fib$w_did[i]=Nam.nam$w_did[i];
#else
Fib.fib$w_did[i]=Nam.nam$w_did[i];
#endif
/* Use the IO$_ACCESS function to return info about the file */
/* Note, used this way, the file is not opened, and the expiration */
/* and revision dates are not modified */
status = sys$qiow(0,DevChan,IO$_ACCESS,&iosb,0,0,
&FibDesc,&FileName,0,0,&Atr,0);
if (!(status & 1))
{
sys$dassgn(DevChan);
return(status);
}
status = iosb[0];
if (!(status & 1))
{
sys$dassgn(DevChan);
return(status);
}
/*-----------------------------------------------------------------------
We have the current information from the file: now see what user
wants done with it.
-----------------------------------------------------------------------*/
switch (action) {
case GET_TIMES:
asctim(((struct VMStimbuf *)ptr)->modtime, Cdate);
asctim(((struct VMStimbuf *)ptr)->actime, Rdate);
break;
case SET_TIMES:
bintim(((struct VMStimbuf *)ptr)->modtime, Cdate);
bintim(((struct VMStimbuf *)ptr)->actime, Rdate);
break;
case GET_RTYPE: /* non-modifying */
*(int *)ptr = Fat.RTYPE.fat$v_rtype;
return RMS$_NORMAL; /* return to user */
break;
case CHANGE_RTYPE:
old_rtype = Fat.RTYPE.fat$v_rtype; /* save current one */
if ((*(int *)ptr < FAT$C_UNDEFINED) ||
(*(int *)ptr > FAT$C_STREAMCR))
Fat.RTYPE.fat$v_rtype = FAT$C_STREAMLF; /* Unix I/O happy */
else
Fat.RTYPE.fat$v_rtype = *(int *)ptr;
break;
case RESTORE_RTYPE:
Fat.RTYPE.fat$v_rtype = old_rtype;
break;
default:
return SS$_BADPARAM; /* anything better? */
}
/*-----------------------------------------------------------------------
Go back and write modified data to the file header.
-----------------------------------------------------------------------*/
/* note, part of the FIB was cleared by earlier QIOW, so reset it */
#ifdef VAXC
Fib.fib$r_acctl_overlay.fib$l_acctl = FIB$M_NORECORD;
#else
Fib.fib$l_acctl = FIB$M_NORECORD;
#endif
for (i=0;i<3;i++)
#ifdef VAXC
Fib.fib$r_fid_overlay.fib$w_fid[i]=Nam.nam$w_fid[i];
#else
Fib.fib$w_fid[i]=Nam.nam$w_fid[i];
#endif
for (i=0;i<3;i++)
#ifdef VAXC
Fib.fib$r_did_overlay.fib$w_did[i]=Nam.nam$w_did[i];
#else
Fib.fib$w_did[i]=Nam.nam$w_did[i];
#endif
/* Use the IO$_MODIFY function to change info about the file */
/* Note, used this way, the file is not opened, however this would */
/* normally cause the expiration and revision dates to be modified. */
/* Using FIB$M_NORECORD prohibits this from happening. */
status = sys$qiow(0,DevChan,IO$_MODIFY,&iosb,0,0,
&FibDesc,&FileName,0,0,&Atr,0);
if (!(status & 1))
{
sys$dassgn(DevChan);
return(status);
}
status = iosb[0];
if (!(status & 1))
{
sys$dassgn(DevChan);
return(status);
}
status = sys$dassgn(DevChan);
if (!(status & 1)) return(status);
/* look for next file, if none, no big deal.. */
status = sys$search(&Fab);
}
} /* end function VMSmunch() */
/***********************/
/* Function bintim() */
/***********************/
void asctim(time,binval) /* convert 64-bit binval to string, put in time */
char *time;
long int binval[2];
{
static struct dsc$descriptor date_str={23,DSC$K_DTYPE_T,DSC$K_CLASS_S,0};
/* dsc$w_length, dsc$b_dtype, dsc$b_class, dsc$a_pointer */
date_str.dsc$a_pointer = time;
sys$asctim(0, &date_str, binval, 0);
time[23] = '\0';
}
/***********************/
/* Function bintim() */
/***********************/
void bintim(time,binval) /* convert time string to 64 bits, put in binval */
char *time;
long int binval[2];
{
static struct dsc$descriptor date_str={0,DSC$K_DTYPE_T,DSC$K_CLASS_S,0};
date_str.dsc$w_length = strlen(time);
date_str.dsc$a_pointer = time;
sys$bintim(&date_str, binval);
}
|