From 551fc3268637eb694842ee5913e85ae3f8c3357e Mon Sep 17 00:00:00 2001 From: midipix Date: Tue, 20 Feb 2024 02:33:37 +0000 Subject: code base: separate slbt_ar_create_mapfile() from slbt_au_output_mapfile(). --- project/common.mk | 3 +- src/arbits/output/slbt_ar_output_mapfile.c | 111 ----------------------------- src/arbits/output/slbt_au_output_mapfile.c | 12 ++++ src/arbits/slbt_archive_mapfile.c | 105 +++++++++++++++++++++++++++ 4 files changed, 119 insertions(+), 112 deletions(-) delete mode 100644 src/arbits/output/slbt_ar_output_mapfile.c create mode 100644 src/arbits/output/slbt_au_output_mapfile.c create mode 100644 src/arbits/slbt_archive_mapfile.c diff --git a/project/common.mk b/project/common.mk index e82ddc1..ef4c8af 100644 --- a/project/common.mk +++ b/project/common.mk @@ -1,5 +1,6 @@ API_SRCS = \ src/arbits/slbt_archive_ctx.c \ + src/arbits/slbt_archive_mapfile.c \ src/arbits/slbt_archive_mapstrv.c \ src/arbits/slbt_archive_merge.c \ src/arbits/slbt_archive_meta.c \ @@ -9,7 +10,7 @@ API_SRCS = \ src/arbits/slbt_armap_sysv_32.c \ src/arbits/slbt_armap_sysv_64.c \ src/arbits/output/slbt_ar_output_arname.c \ - src/arbits/output/slbt_ar_output_mapfile.c \ + src/arbits/output/slbt_au_output_mapfile.c \ src/arbits/output/slbt_ar_output_members.c \ src/arbits/output/slbt_ar_output_symbols.c \ src/driver/slbt_amain.c \ diff --git a/src/arbits/output/slbt_ar_output_mapfile.c b/src/arbits/output/slbt_ar_output_mapfile.c deleted file mode 100644 index f8cc1b7..0000000 --- a/src/arbits/output/slbt_ar_output_mapfile.c +++ /dev/null @@ -1,111 +0,0 @@ -/*******************************************************************/ -/* slibtool: a skinny libtool implementation, written in C */ -/* Copyright (C) 2016--2024 SysDeer Technologies, LLC */ -/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */ -/*******************************************************************/ - -#include -#include -#include -#include -#include -#include -#include "slibtool_driver_impl.h" -#include "slibtool_dprintf_impl.h" -#include "slibtool_errinfo_impl.h" -#include "slibtool_ar_impl.h" - -static int slbt_au_output_mapfile_impl( - const struct slbt_driver_ctx * dctx, - struct slbt_archive_meta_impl * mctx, - int fdout) -{ - bool fsort; - bool fcoff; - const char * regex; - const char ** symv; - const char ** symstrv; - regex_t regctx; - regmatch_t pmatch[2] = {{0,0},{0,0}}; - - fsort = !(dctx->cctx->fmtflags & SLBT_OUTPUT_ARCHIVE_NOSORT); - fcoff = (mctx->ofmtattr == AR_OBJECT_ATTR_COFF); - - if (slbt_dprintf(fdout,"{\n" "\t" "global:\n") < 0) - return SLBT_SYSTEM_ERROR(dctx,0); - - if (fsort && !mctx->mapstrv) - if (slbt_update_mapstrv(dctx,mctx) < 0) - return SLBT_NESTED_ERROR(dctx); - - if ((regex = dctx->cctx->regex)) - if (regcomp(®ctx,regex,REG_NEWLINE)) - return SLBT_CUSTOM_ERROR( - dctx, - SLBT_ERR_FLOW_ERROR); - - symstrv = fsort ? mctx->mapstrv : mctx->symstrv; - - for (symv=symstrv; *symv; symv++) - if (!fcoff || strncmp(*symv,"__imp_",6)) - if (!regex || !regexec(®ctx,*symv,1,pmatch,0)) - if (slbt_dprintf(fdout,"\t\t%s;\n",*symv) < 0) - return SLBT_SYSTEM_ERROR(dctx,0); - - if (regex) - regfree(®ctx); - - if (slbt_dprintf(fdout,"\n\t" "local:\n" "\t\t*;\n" "};\n") < 0) - return SLBT_SYSTEM_ERROR(dctx,0); - - return 0; -} - - -static int slbt_ar_create_mapfile_impl( - const struct slbt_archive_meta * meta, - const char * path, - mode_t mode) -{ - struct slbt_archive_meta_impl * mctx; - const struct slbt_driver_ctx * dctx; - struct slbt_fd_ctx fdctx; - int fdout; - - mctx = slbt_archive_meta_ictx(meta); - dctx = (slbt_archive_meta_ictx(meta))->dctx; - - if (slbt_lib_get_driver_fdctx(dctx,&fdctx) < 0) - return SLBT_NESTED_ERROR(dctx); - - if (!meta->a_memberv) - return 0; - - if (path) { - if ((fdout = openat( - fdctx.fdcwd,path, - O_WRONLY|O_CREAT|O_TRUNC, - mode)) < 0) - return SLBT_SYSTEM_ERROR(dctx,0); - } else { - fdout = fdctx.fdout; - } - - return slbt_au_output_mapfile_impl( - dctx,mctx,fdout); -} - - -int slbt_au_output_mapfile(const struct slbt_archive_meta * meta) -{ - return slbt_ar_create_mapfile_impl(meta,0,0); -} - - -int slbt_ar_create_mapfile( - const struct slbt_archive_meta * meta, - const char * path, - mode_t mode) -{ - return slbt_ar_create_mapfile_impl(meta,path,mode); -} diff --git a/src/arbits/output/slbt_au_output_mapfile.c b/src/arbits/output/slbt_au_output_mapfile.c new file mode 100644 index 0000000..8a84cc2 --- /dev/null +++ b/src/arbits/output/slbt_au_output_mapfile.c @@ -0,0 +1,12 @@ +/*******************************************************************/ +/* slibtool: a skinny libtool implementation, written in C */ +/* Copyright (C) 2016--2024 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */ +/*******************************************************************/ + +#include + +int slbt_au_output_mapfile(const struct slbt_archive_meta * meta) +{ + return slbt_ar_create_mapfile(meta,0,0); +} diff --git a/src/arbits/slbt_archive_mapfile.c b/src/arbits/slbt_archive_mapfile.c new file mode 100644 index 0000000..2bca16d --- /dev/null +++ b/src/arbits/slbt_archive_mapfile.c @@ -0,0 +1,105 @@ +/*******************************************************************/ +/* slibtool: a skinny libtool implementation, written in C */ +/* Copyright (C) 2016--2024 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */ +/*******************************************************************/ + +#include +#include +#include +#include +#include +#include +#include "slibtool_driver_impl.h" +#include "slibtool_dprintf_impl.h" +#include "slibtool_errinfo_impl.h" +#include "slibtool_ar_impl.h" + +static int slbt_ar_output_mapfile_impl( + const struct slbt_driver_ctx * dctx, + struct slbt_archive_meta_impl * mctx, + int fdout) +{ + bool fsort; + bool fcoff; + const char * regex; + const char ** symv; + const char ** symstrv; + regex_t regctx; + regmatch_t pmatch[2] = {{0,0},{0,0}}; + + fsort = !(dctx->cctx->fmtflags & SLBT_OUTPUT_ARCHIVE_NOSORT); + fcoff = (mctx->ofmtattr == AR_OBJECT_ATTR_COFF); + + if (slbt_dprintf(fdout,"{\n" "\t" "global:\n") < 0) + return SLBT_SYSTEM_ERROR(dctx,0); + + if (fsort && !mctx->mapstrv) + if (slbt_update_mapstrv(dctx,mctx) < 0) + return SLBT_NESTED_ERROR(dctx); + + if ((regex = dctx->cctx->regex)) + if (regcomp(®ctx,regex,REG_NEWLINE)) + return SLBT_CUSTOM_ERROR( + dctx, + SLBT_ERR_FLOW_ERROR); + + symstrv = fsort ? mctx->mapstrv : mctx->symstrv; + + for (symv=symstrv; *symv; symv++) + if (!fcoff || strncmp(*symv,"__imp_",6)) + if (!regex || !regexec(®ctx,*symv,1,pmatch,0)) + if (slbt_dprintf(fdout,"\t\t%s;\n",*symv) < 0) + return SLBT_SYSTEM_ERROR(dctx,0); + + if (regex) + regfree(®ctx); + + if (slbt_dprintf(fdout,"\n\t" "local:\n" "\t\t*;\n" "};\n") < 0) + return SLBT_SYSTEM_ERROR(dctx,0); + + return 0; +} + + +static int slbt_ar_create_mapfile_impl( + const struct slbt_archive_meta * meta, + const char * path, + mode_t mode) +{ + struct slbt_archive_meta_impl * mctx; + const struct slbt_driver_ctx * dctx; + struct slbt_fd_ctx fdctx; + int fdout; + + mctx = slbt_archive_meta_ictx(meta); + dctx = (slbt_archive_meta_ictx(meta))->dctx; + + if (slbt_lib_get_driver_fdctx(dctx,&fdctx) < 0) + return SLBT_NESTED_ERROR(dctx); + + if (!meta->a_memberv) + return 0; + + if (path) { + if ((fdout = openat( + fdctx.fdcwd,path, + O_WRONLY|O_CREAT|O_TRUNC, + mode)) < 0) + return SLBT_SYSTEM_ERROR(dctx,0); + } else { + fdout = fdctx.fdout; + } + + return slbt_ar_output_mapfile_impl( + dctx,mctx,fdout); +} + + +int slbt_ar_create_mapfile( + const struct slbt_archive_meta * meta, + const char * path, + mode_t mode) +{ + return slbt_ar_create_mapfile_impl(meta,path,mode); +} -- cgit v1.2.3