2002-03-18 13:46:27 +01:00
|
|
|
/* Binutils emulation layer.
|
2010-12-10 09:51:47 +01:00
|
|
|
Copyright 2002, 2003, 2005, 2007, 2008, 2010
|
|
|
|
Free Software Foundation, Inc.
|
2005-07-18 16:16:51 +02:00
|
|
|
Written by Tom Rix, Red Hat Inc.
|
2002-03-18 13:46:27 +01:00
|
|
|
|
|
|
|
This file is part of GNU Binutils.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-05 18:54:46 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2002-03-18 13:46:27 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-05 18:54:46 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
2002-03-18 13:46:27 +01:00
|
|
|
|
|
|
|
#include "binemul.h"
|
|
|
|
|
|
|
|
extern bin_emulation_xfer_type bin_dummy_emulation;
|
|
|
|
|
|
|
|
void
|
2003-09-14 14:20:17 +02:00
|
|
|
ar_emul_usage (FILE *fp)
|
2002-03-18 13:46:27 +01:00
|
|
|
{
|
|
|
|
if (bin_dummy_emulation.ar_usage)
|
|
|
|
bin_dummy_emulation.ar_usage (fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-09-14 14:20:17 +02:00
|
|
|
ar_emul_default_usage (FILE *fp)
|
2002-03-18 13:46:27 +01:00
|
|
|
{
|
|
|
|
AR_EMUL_USAGE_PRINT_OPTION_HEADER (fp);
|
|
|
|
/* xgettext:c-format */
|
|
|
|
fprintf (fp, _(" No emulation specific options\n"));
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean
|
2010-09-15 19:10:15 +02:00
|
|
|
ar_emul_append (bfd **after_bfd, char *file_name, const char *target,
|
|
|
|
bfd_boolean verbose, bfd_boolean flatten)
|
2002-03-18 13:46:27 +01:00
|
|
|
{
|
|
|
|
if (bin_dummy_emulation.ar_append)
|
2010-09-15 19:10:15 +02:00
|
|
|
return bin_dummy_emulation.ar_append (after_bfd, file_name, target,
|
|
|
|
verbose, flatten);
|
2002-03-18 13:46:27 +01:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
2002-03-18 13:46:27 +01:00
|
|
|
}
|
|
|
|
|
2008-03-28 07:49:44 +01:00
|
|
|
static bfd_boolean
|
2010-12-10 09:51:47 +01:00
|
|
|
any_ok (bfd *new_bfd ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
bfd_boolean
|
|
|
|
do_ar_emul_append (bfd **after_bfd, bfd *new_bfd,
|
|
|
|
bfd_boolean verbose, bfd_boolean flatten,
|
|
|
|
bfd_boolean (*check) (bfd *))
|
|
|
|
{
|
2008-03-28 07:49:44 +01:00
|
|
|
/* When flattening, add the members of an archive instead of the
|
|
|
|
archive itself. */
|
|
|
|
if (flatten && bfd_check_format (new_bfd, bfd_archive))
|
|
|
|
{
|
|
|
|
bfd *elt;
|
|
|
|
bfd_boolean added = FALSE;
|
|
|
|
|
|
|
|
for (elt = bfd_openr_next_archived_file (new_bfd, NULL);
|
|
|
|
elt;
|
|
|
|
elt = bfd_openr_next_archived_file (new_bfd, elt))
|
|
|
|
{
|
2010-12-10 09:51:47 +01:00
|
|
|
if (do_ar_emul_append (after_bfd, elt, verbose, TRUE, check))
|
2008-03-28 07:49:44 +01:00
|
|
|
{
|
|
|
|
added = TRUE;
|
|
|
|
after_bfd = &((*after_bfd)->archive_next);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return added;
|
|
|
|
}
|
|
|
|
|
2010-12-10 09:51:47 +01:00
|
|
|
if (!check (new_bfd))
|
|
|
|
return FALSE;
|
|
|
|
|
2008-03-28 07:49:44 +01:00
|
|
|
AR_EMUL_APPEND_PRINT_VERBOSE (verbose, new_bfd->filename);
|
|
|
|
|
|
|
|
new_bfd->archive_next = *after_bfd;
|
|
|
|
*after_bfd = new_bfd;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean
|
2003-09-14 14:20:17 +02:00
|
|
|
ar_emul_default_append (bfd **after_bfd, char *file_name,
|
2010-09-15 19:10:15 +02:00
|
|
|
const char *target, bfd_boolean verbose,
|
|
|
|
bfd_boolean flatten)
|
2002-03-18 13:46:27 +01:00
|
|
|
{
|
2008-03-28 07:49:44 +01:00
|
|
|
bfd *new_bfd;
|
2002-03-18 13:46:27 +01:00
|
|
|
|
2010-09-15 19:10:15 +02:00
|
|
|
new_bfd = bfd_openr (file_name, target);
|
2008-03-28 07:49:44 +01:00
|
|
|
AR_EMUL_ELEMENT_CHECK (new_bfd, file_name);
|
2010-12-10 09:51:47 +01:00
|
|
|
return do_ar_emul_append (after_bfd, new_bfd, verbose, flatten, any_ok);
|
2002-03-18 13:46:27 +01:00
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean
|
2010-09-15 19:10:15 +02:00
|
|
|
ar_emul_replace (bfd **after_bfd, char *file_name, const char *target,
|
|
|
|
bfd_boolean verbose)
|
2002-03-18 13:46:27 +01:00
|
|
|
{
|
|
|
|
if (bin_dummy_emulation.ar_replace)
|
2010-09-15 19:10:15 +02:00
|
|
|
return bin_dummy_emulation.ar_replace (after_bfd, file_name,
|
|
|
|
target, verbose);
|
2002-03-18 13:46:27 +01:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
2002-03-18 13:46:27 +01:00
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean
|
2003-09-14 14:20:17 +02:00
|
|
|
ar_emul_default_replace (bfd **after_bfd, char *file_name,
|
2010-09-15 19:10:15 +02:00
|
|
|
const char *target, bfd_boolean verbose)
|
2002-03-18 13:46:27 +01:00
|
|
|
{
|
2010-12-10 09:51:47 +01:00
|
|
|
bfd *new_bfd;
|
2002-03-18 13:46:27 +01:00
|
|
|
|
2010-12-10 09:51:47 +01:00
|
|
|
new_bfd = bfd_openr (file_name, target);
|
|
|
|
AR_EMUL_ELEMENT_CHECK (new_bfd, file_name);
|
2002-03-18 13:46:27 +01:00
|
|
|
|
|
|
|
AR_EMUL_REPLACE_PRINT_VERBOSE (verbose, file_name);
|
|
|
|
|
2010-12-10 09:51:47 +01:00
|
|
|
new_bfd->archive_next = *after_bfd;
|
|
|
|
*after_bfd = new_bfd;
|
2002-03-18 13:46:27 +01:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
2002-03-18 13:46:27 +01:00
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean
|
2003-09-14 14:20:17 +02:00
|
|
|
ar_emul_parse_arg (char *arg)
|
2002-03-18 13:46:27 +01:00
|
|
|
{
|
|
|
|
if (bin_dummy_emulation.ar_parse_arg)
|
|
|
|
return bin_dummy_emulation.ar_parse_arg (arg);
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
2002-03-18 13:46:27 +01:00
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean
|
2003-09-14 14:20:17 +02:00
|
|
|
ar_emul_default_parse_arg (char *arg ATTRIBUTE_UNUSED)
|
2002-03-18 13:46:27 +01:00
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
2002-03-18 13:46:27 +01:00
|
|
|
}
|