From 5d46be2ef1d419ac006be29bd894a30e2cf94ad9 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 27 Jan 2024 20:18:57 +0000 Subject: archiver output api: added slbt_ar_output_arname(). --- src/arbits/output/slbt_ar_output_arname.c | 72 +++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/arbits/output/slbt_ar_output_arname.c (limited to 'src/arbits/output') diff --git a/src/arbits/output/slbt_ar_output_arname.c b/src/arbits/output/slbt_ar_output_arname.c new file mode 100644 index 0000000..94d3fa8 --- /dev/null +++ b/src/arbits/output/slbt_ar_output_arname.c @@ -0,0 +1,72 @@ +/*******************************************************************/ +/* 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 "slibtool_driver_impl.h" +#include "slibtool_dprintf_impl.h" +#include "slibtool_errinfo_impl.h" +#include "slibtool_ar_impl.h" + +#define SLBT_PRETTY_FLAGS (SLBT_PRETTY_YAML \ + | SLBT_PRETTY_POSIX \ + | SLBT_PRETTY_HEXDATA) + + +static int slbt_ar_output_arname_posix( + const struct slbt_driver_ctx * dctx, + const struct slbt_archive_ctx * actx, + const struct slbt_fd_ctx * fdctx) +{ + (void)dctx; + (void)actx; + (void)fdctx; + + /* posix ar(1) does not print the file-name */ + + return 0; +} + +static int slbt_ar_output_arname_yaml( + const struct slbt_driver_ctx * dctx, + const struct slbt_archive_ctx * actx, + const struct slbt_fd_ctx * fdctx) +{ + const char * path; + const char mema[] = ""; + + path = actx->path && *actx->path ? *actx->path : mema; + + if (slbt_dprintf(fdctx->fdout,"Archive: %s\n",path) < 0) + return SLBT_SYSTEM_ERROR(dctx,0); + + return 0; +} + +int slbt_ar_output_arname(const struct slbt_archive_ctx * actx) +{ + const struct slbt_driver_ctx * dctx; + struct slbt_fd_ctx fdctx; + + dctx = (slbt_get_archive_ictx(actx))->dctx; + + if (slbt_get_driver_fdctx(dctx,&fdctx) < 0) + return SLBT_NESTED_ERROR(dctx); + + switch (dctx->cctx->fmtflags & SLBT_PRETTY_FLAGS) { + case SLBT_PRETTY_YAML: + return slbt_ar_output_arname_yaml( + dctx,actx,&fdctx); + + case SLBT_PRETTY_POSIX: + return slbt_ar_output_arname_posix( + dctx,actx,&fdctx); + + default: + return slbt_ar_output_arname_yaml( + dctx,actx,&fdctx); + } +} -- cgit v1.2.3