22 struct DIR *dir
= (struct DIR *)xmalloc (sizeof (struct DIR));
23 struct NAM
*dnam
= (struct NAM
*)xmalloc (sizeof (struct NAM
));
24 struct FAB
*dfab
= &dir
->fab
;
25 char *searchspec
= (char *)xmalloc (MAXNAMLEN
+ 1);
27 memset (dir
, 0, sizeof *dir
);
31 sprintf (searchspec
, "%s*.*;", dspec
);
33 dfab
->fab$l_fna
= searchspec
;
34 dfab
->fab$b_fns
= strlen (searchspec
);
35 dfab
->fab$l_nam
= dnam
;
38 dnam
->nam$l_esa
= searchspec
;
39 dnam
->nam$b_ess
= MAXNAMLEN
;
41 if (! (sys$
parse (dfab
) & 1))
52 #define uppercasify(str) \
56 for (tmp = (str); *tmp != '\0'; tmp++) \
57 if (islower ((unsigned char)*tmp)) \
58 *tmp = toupper ((unsigned char)*tmp); \
66 struct FAB
*dfab
= &dir
->fab
;
67 struct NAM
*dnam
= (struct NAM
*)(dfab
->fab$l_nam
);
68 struct direct
*dentry
= &dir
->dir
;
71 memset (dentry
, 0, sizeof *dentry
);
73 dnam
->nam$l_rsa
= dir
->d_result
;
74 dnam
->nam$b_rss
= MAXNAMLEN
;
79 if (!((i
= sys$
search (dfab
)) & 1))
82 printf ("sys$search failed with %d\n", i
);
87 if (dnam
->nam$w_fid
== 0)
90 dentry
->d_fileno
= dnam
->nam$w_fid
[0] + (dnam
->nam$w_fid
[1] << 16);
92 dentry
->d_reclen
= sizeof (struct direct
);
93 dentry
->d_namlen
= dnam
->nam$b_name
+ dnam
->nam$b_type
;
94 strncpy (dentry
->d_name
, dnam
->nam$l_name
, dentry
->d_namlen
);
95 dentry
->d_name
[dentry
->d_namlen
] = '\0';
96 uppercasify (dentry
->d_name
);
107 struct FAB
*dfab
= &dir
->fab
;
108 struct NAM
*dnam
= (struct NAM
*)(dfab
->fab$l_nam
);
110 free (dnam
->nam$l_esa
);
117 #endif /* compiled for OpenVMS prior to V7.x */
123 static char buf
[512];
126 return (getcwd (cwd
, 512));
128 return (getcwd (buf
, 512));
139 static struct FAB Fab
;
140 static struct NAM Nam
;
141 static struct fibdef Fib
; /* short fib */
142 static struct dsc$descriptor FibDesc
=
143 { sizeof (Fib
), DSC$K_DTYPE_Z
, DSC$K_CLASS_S
, (char *) &Fib
};
144 static struct dsc$descriptor_s DevDesc
=
145 { 0, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, &Nam
.nam$t_dvi
[1] };
146 static char EName
[NAM$C_MAXRSS
];
147 static char RName
[NAM$C_MAXRSS
];
148 static struct dsc$descriptor_s FileName
=
149 { 0, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, 0 };
150 static struct dsc$descriptor_s string
=
151 { 0, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, 0 };
152 static unsigned long Rdate
[2];
153 static unsigned long Cdate
[2];
154 static struct atrdef Atr
[] =
158 { sizeof (Rdate
), ATR$C_REVDATE
, (unsigned int) &Rdate
[0] },
160 { sizeof (Cdate
), ATR$C_CREDATE
, (unsigned int) &Cdate
[0] },
163 { sizeof (Rdate
), ATR$C_REVDATE
, &Rdate
[0] },
165 { sizeof (Cdate
), ATR$C_CREDATE
, &Cdate
[0]},
169 static short int DevChan
;
170 static short int iosb
[4];
172 name
= vmsify (name
, 0);
174 /* initialize RMS structures, we need a NAM to retrieve the FID */
176 Fab
.fab$l_fna
= name
; /* name of file */
177 Fab
.fab$b_fns
= strlen (name
);
178 Fab
.fab$l_nam
= &Nam
; /* FAB has an associated NAM */
181 Nam
.nam$l_esa
= EName
; /* expanded filename */
182 Nam
.nam$b_ess
= sizeof (EName
);
183 Nam
.nam$l_rsa
= RName
; /* resultant filename */
184 Nam
.nam$b_rss
= sizeof (RName
);
186 /* do $PARSE and $SEARCH here */
187 status
= sys$
parse (&Fab
);
191 DevDesc
.dsc$w_length
= Nam
.nam$t_dvi
[0];
192 status
= sys$
assign (&DevDesc
, &DevChan
, 0, 0);
196 FileName
.dsc$a_pointer
= Nam
.nam$l_name
;
197 FileName
.dsc$w_length
= Nam
.nam$b_name
+ Nam
.nam$b_type
+ Nam
.nam$b_ver
;
199 /* Initialize the FIB */
200 for (i
= 0; i
< 3; i
++)
203 Fib
.fib$w_fid
[i
] = Nam
.nam$w_fid
[i
];
204 Fib
.fib$w_did
[i
] = Nam
.nam$w_did
[i
];
206 Fib
.fib$r_fid_overlay
.fib$w_fid
[i
] = Nam
.nam$w_fid
[i
];
207 Fib
.fib$r_did_overlay
.fib$w_did
[i
] = Nam
.nam$w_did
[i
];
211 status
= sys$
qiow (0, DevChan
, IO$_ACCESS
, &iosb
, 0, 0,
212 &FibDesc
, &FileName
, 0, 0, &Atr
, 0);
213 sys$
dassgn (DevChan
);
220 status
= stat (name
, buf
);
224 buf
->st_mtime
= ((Rdate
[0] >> 24) & 0xff) + ((Rdate
[1] << 8) & 0xffffff00);
225 buf
->st_ctime
= ((Cdate
[0] >> 24) & 0xff) + ((Cdate
[1] << 8) & 0xffffff00);
234 static long int date
[2];
236 static struct dsc$descriptor date_str
=
237 { 26, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, str
};
239 date
[0] = (tval
& 0xff) << 24;
240 date
[1] = ((tval
>> 8) & 0xffffff);
242 if ((date
[0] == 0) && (date
[1] == 0))
245 sys$
asctim (0, &date_str
, date
, 0);
257 while (*s1
!= '\0' && toupper(*s1
) == toupper(*s2
))
263 return toupper(*(unsigned char *) s1
) - toupper(*(unsigned char *) s2
);
272 while (*s1
!= '\0' && toupper(*s1
) == toupper(*s2
))
278 return toupper(*(unsigned char *) s1
) - toupper(*(unsigned char *) s2
);