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
;
76 DB (DB_VERBOSE
, ("."));
78 if (!((i
= sys$
search (dfab
)) & 1))
80 DB (DB_VERBOSE
, (_("sys$search failed with %d\n"), i
));
85 if (dnam
->nam$w_fid
== 0)
88 dentry
->d_fileno
= dnam
->nam$w_fid
[0] + (dnam
->nam$w_fid
[1] << 16);
90 dentry
->d_reclen
= sizeof (struct direct
);
91 dentry
->d_namlen
= dnam
->nam$b_name
+ dnam
->nam$b_type
;
92 strncpy (dentry
->d_name
, dnam
->nam$l_name
, dentry
->d_namlen
);
93 dentry
->d_name
[dentry
->d_namlen
] = '\0';
94 uppercasify (dentry
->d_name
);
105 struct FAB
*dfab
= &dir
->fab
;
106 struct NAM
*dnam
= (struct NAM
*)(dfab
->fab$l_nam
);
108 free (dnam
->nam$l_esa
);
115 #endif /* compiled for OpenVMS prior to V7.x */
121 static char buf
[512];
124 return (getcwd (cwd
, 512));
126 return (getcwd (buf
, 512));
137 static struct FAB Fab
;
138 static struct NAM Nam
;
139 static struct fibdef Fib
; /* short fib */
140 static struct dsc$descriptor FibDesc
=
141 { sizeof (Fib
), DSC$K_DTYPE_Z
, DSC$K_CLASS_S
, (char *) &Fib
};
142 static struct dsc$descriptor_s DevDesc
=
143 { 0, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, &Nam
.nam$t_dvi
[1] };
144 static char EName
[NAM$C_MAXRSS
];
145 static char RName
[NAM$C_MAXRSS
];
146 static struct dsc$descriptor_s FileName
=
147 { 0, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, 0 };
148 static struct dsc$descriptor_s string
=
149 { 0, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, 0 };
150 static unsigned long Rdate
[2];
151 static unsigned long Cdate
[2];
152 static struct atrdef Atr
[] =
156 { sizeof (Rdate
), ATR$C_REVDATE
, (unsigned int) &Rdate
[0] },
158 { sizeof (Cdate
), ATR$C_CREDATE
, (unsigned int) &Cdate
[0] },
161 { sizeof (Rdate
), ATR$C_REVDATE
, &Rdate
[0] },
163 { sizeof (Cdate
), ATR$C_CREDATE
, &Cdate
[0]},
167 static short int DevChan
;
168 static short int iosb
[4];
170 name
= vmsify (name
, 0);
172 /* initialize RMS structures, we need a NAM to retrieve the FID */
174 Fab
.fab$l_fna
= name
; /* name of file */
175 Fab
.fab$b_fns
= strlen (name
);
176 Fab
.fab$l_nam
= &Nam
; /* FAB has an associated NAM */
179 Nam
.nam$l_esa
= EName
; /* expanded filename */
180 Nam
.nam$b_ess
= sizeof (EName
);
181 Nam
.nam$l_rsa
= RName
; /* resultant filename */
182 Nam
.nam$b_rss
= sizeof (RName
);
184 /* do $PARSE and $SEARCH here */
185 status
= sys$
parse (&Fab
);
189 DevDesc
.dsc$w_length
= Nam
.nam$t_dvi
[0];
190 status
= sys$
assign (&DevDesc
, &DevChan
, 0, 0);
194 FileName
.dsc$a_pointer
= Nam
.nam$l_name
;
195 FileName
.dsc$w_length
= Nam
.nam$b_name
+ Nam
.nam$b_type
+ Nam
.nam$b_ver
;
197 /* Initialize the FIB */
198 for (i
= 0; i
< 3; i
++)
201 Fib
.fib$w_fid
[i
] = Nam
.nam$w_fid
[i
];
202 Fib
.fib$w_did
[i
] = Nam
.nam$w_did
[i
];
204 Fib
.fib$r_fid_overlay
.fib$w_fid
[i
] = Nam
.nam$w_fid
[i
];
205 Fib
.fib$r_did_overlay
.fib$w_did
[i
] = Nam
.nam$w_did
[i
];
209 status
= sys$
qiow (0, DevChan
, IO$_ACCESS
, &iosb
, 0, 0,
210 &FibDesc
, &FileName
, 0, 0, &Atr
, 0);
211 sys$
dassgn (DevChan
);
218 status
= stat (name
, buf
);
222 buf
->st_mtime
= ((Rdate
[0] >> 24) & 0xff) + ((Rdate
[1] << 8) & 0xffffff00);
223 buf
->st_ctime
= ((Cdate
[0] >> 24) & 0xff) + ((Cdate
[1] << 8) & 0xffffff00);
232 static long int date
[2];
234 static struct dsc$descriptor date_str
=
235 { 26, DSC$K_DTYPE_T
, DSC$K_CLASS_S
, str
};
237 date
[0] = (tval
& 0xff) << 24;
238 date
[1] = ((tval
>> 8) & 0xffffff);
240 if ((date
[0] == 0) && (date
[1] == 0))
243 sys$
asctim (0, &date_str
, date
, 0);
254 while (*s1
!= '\0' && toupper(*s1
) == toupper(*s2
))
260 return toupper(*(unsigned char *) s1
) - toupper(*(unsigned char *) s2
);