1 /* Interface to `ar' archives for GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1997,
3 2002 Free Software Foundation, Inc.
4 This file is part of GNU Make.
6 GNU Make is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Make is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Make; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
29 /* Defined in arscan.c. */
30 extern long int ar_scan
PARAMS ((char *archive
, long int (*function
) (), long int arg
));
31 extern int ar_name_equal
PARAMS ((char *name
, char *mem
, int truncated
));
33 extern int ar_member_touch
PARAMS ((char *arname
, char *memname
));
36 /* Return nonzero if NAME is an archive-member reference, zero if not.
37 An archive-member reference is a name like `lib(member)'.
38 If a name like `lib((entry))' is used, a fatal error is signaled at
39 the attempt to use this unsupported feature. */
44 char *p
= strchr (name
, '(');
47 if (p
== 0 || p
== name
)
50 end
= p
+ strlen (p
) - 1;
54 if (p
[1] == '(' && end
[-1] == ')')
55 fatal (NILF
, _("attempt to use unsupported feature: `%s'"), name
);
61 /* Parse the archive-member reference NAME into the archive and member names.
62 Put the malloc'd archive name in *ARNAME_P if ARNAME_P is non-nil;
63 put the malloc'd member name in *MEMNAME_P if MEMNAME_P is non-nil. */
66 ar_parse_name (char *name
, char **arname_p
, char **memname_p
)
68 char *p
= strchr (name
, '('), *end
= name
+ strlen (name
) - 1;
71 *arname_p
= savestring (name
, p
- name
);
74 *memname_p
= savestring (p
+ 1, end
- (p
+ 1));
77 static long int ar_member_date_1
PARAMS ((int desc
, char *mem
, int truncated
, long int hdrpos
,
78 long int datapos
, long int size
, long int date
, int uid
, int gid
, int mode
, char *name
));
80 /* Return the modtime of NAME. */
83 ar_member_date (char *name
)
90 ar_parse_name (name
, &arname
, &memname
);
92 /* Make sure we know the modtime of the archive itself because we are
93 likely to be called just before commands to remake a member are run,
94 and they will change the archive itself.
96 But we must be careful not to enter_file the archive itself if it does
97 not exist, because pattern_search assumes that files found in the data
98 base exist or can be made. */
101 arfile
= lookup_file (arname
);
102 if (arfile
== 0 && file_exists_p (arname
))
104 arfile
= enter_file (arname
);
109 (void) f_mtime (arfile
, 0);
112 val
= ar_scan (arname
, ar_member_date_1
, (long int) memname
);
118 return (val
<= 0 ? (time_t) -1 : (time_t) val
);
121 /* This function is called by `ar_scan' to find which member to look at. */
125 ar_member_date_1 (int desc UNUSED
, char *mem
, int truncated
,
126 long int hdrpos UNUSED
, long int datapos UNUSED
,
127 long int size UNUSED
, long int date
,
128 int uid UNUSED
, int gid UNUSED
, int mode UNUSED
, char *name
)
130 return ar_name_equal (name
, mem
, truncated
) ? date
: 0;
133 /* Set the archive-member NAME's modtime to now. */
137 ar_touch (char *name
)
139 error (NILF
, _("touch archive member is not available on VMS"));
144 ar_touch (char *name
)
146 char *arname
, *memname
;
150 ar_parse_name (name
, &arname
, &memname
);
152 /* Make sure we know the modtime of the archive itself before we
153 touch the member, since this will change the archive itself. */
156 arfile
= lookup_file (arname
);
159 arfile
= enter_file (arname
);
163 (void) f_mtime (arfile
, 0);
167 switch (ar_member_touch (arname
, memname
))
170 error (NILF
, _("touch: Archive `%s' does not exist"), arname
);
173 error (NILF
, _("touch: `%s' is not a valid archive"), arname
);
176 perror_with_name ("touch: ", arname
);
180 _("touch: Member `%s' does not exist in `%s'"), memname
, arname
);
187 _("touch: Bad return code from ar_member_touch on `%s'"), name
);
198 /* State of an `ar_glob' run, passed to `ar_glob_match'. */
205 struct nameseq
*chain
;
209 /* This function is called by `ar_scan' to match one archive
210 element against the pattern in STATE. */
213 ar_glob_match (int desc UNUSED
, char *mem
, int truncated UNUSED
,
214 long int hdrpos UNUSED
, long int datapos UNUSED
,
215 long int size UNUSED
, long int date UNUSED
, int uid UNUSED
,
216 int gid UNUSED
, int mode UNUSED
, struct ar_glob_state
*state
)
218 if (fnmatch (state
->pattern
, mem
, FNM_PATHNAME
|FNM_PERIOD
) == 0)
220 /* We have a match. Add it to the chain. */
221 struct nameseq
*new = (struct nameseq
*) xmalloc (state
->size
);
222 new->name
= concat (state
->arname
, mem
, ")");
223 new->next
= state
->chain
;
231 /* Return nonzero if PATTERN contains any metacharacters.
232 Metacharacters can be quoted with backslashes if QUOTE is nonzero. */
234 glob_pattern_p (const char *pattern
, int quote
)
239 for (p
= pattern
; *p
!= '\0'; ++p
)
264 /* Glob for MEMBER_PATTERN in archive ARNAME.
265 Return a malloc'd chain of matching elements (or nil if none). */
268 ar_glob (char *arname
, char *member_pattern
, unsigned int size
)
270 struct ar_glob_state state
;
275 if (! glob_pattern_p (member_pattern
, 1))
278 /* Scan the archive for matches.
279 ar_glob_match will accumulate them in STATE.chain. */
281 state
.arname
= (char *) alloca (i
+ 2);
282 bcopy (arname
, state
.arname
, i
);
283 state
.arname
[i
] = '(';
284 state
.arname
[i
+ 1] = '\0';
285 state
.pattern
= member_pattern
;
289 (void) ar_scan (arname
, ar_glob_match
, (long int) &state
);
291 if (state
.chain
== 0)
294 /* Now put the names into a vector for sorting. */
295 names
= (char **) alloca (state
.n
* sizeof (char *));
297 for (n
= state
.chain
; n
!= 0; n
= n
->next
)
298 names
[i
++] = n
->name
;
300 /* Sort them alphabetically. */
301 qsort ((char *) names
, i
, sizeof (*names
), alpha_compare
);
303 /* Put them back into the chain in the sorted order. */
305 for (n
= state
.chain
; n
!= 0; n
= n
->next
)
306 n
->name
= names
[i
++];
311 #endif /* Not NO_ARCHIVES. */