summaryrefslogtreecommitdiff
path: root/src/helper/slbt_copy_file.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-02-19 01:54:51 +0000
committermidipix <writeonce@midipix.org>2024-02-19 02:59:31 +0000
commit8dc63ddc326ec54709c580a400536fcc4ef62622 (patch)
tree2a019207f3ea1ae39273fa8246c0cae7e6341ca4 /src/helper/slbt_copy_file.c
parent51c276fbf1686c340588660a754ea04e6099cd37 (diff)
downloadslibtool-8dc63ddc326ec54709c580a400536fcc4ef62622.tar.bz2
slibtool-8dc63ddc326ec54709c580a400536fcc4ef62622.tar.xz
library api's: _util_ (utility helper interfaces) namespace overhaul.
Diffstat (limited to 'src/helper/slbt_copy_file.c')
-rw-r--r--src/helper/slbt_copy_file.c76
1 files changed, 0 insertions, 76 deletions
diff --git a/src/helper/slbt_copy_file.c b/src/helper/slbt_copy_file.c
deleted file mode 100644
index 8f4d264..0000000
--- a/src/helper/slbt_copy_file.c
+++ /dev/null
@@ -1,76 +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 <slibtool/slibtool.h>
-#include "slibtool_driver_impl.h"
-#include "slibtool_spawn_impl.h"
-#include "slibtool_symlink_impl.h"
-#include "slibtool_errinfo_impl.h"
-
-int slbt_copy_file(
- const struct slbt_driver_ctx * dctx,
- struct slbt_exec_ctx * ectx,
- char * src,
- char * dst)
-{
- int fdcwd;
- char ** oargv;
- char * oprogram;
- char * cp[4];
- int ret;
-
- /* fdcwd */
- fdcwd = slbt_driver_fdcwd(dctx);
-
- /* placeholder? */
- if (slbt_symlink_is_a_placeholder(fdcwd,src))
- return 0;
-
- /* cp argv */
- cp[0] = "cp";
- cp[1] = src;
- cp[2] = dst;
- cp[3] = 0;
-
- /* alternate argument vector */
- oprogram = ectx->program;
- oargv = ectx->argv;
- ectx->argv = cp;
- ectx->program = "cp";
-
- /* step output */
- if (!(dctx->cctx->drvflags & SLBT_DRIVER_SILENT)) {
- if (dctx->cctx->mode == SLBT_MODE_LINK) {
- if (slbt_output_link(dctx,ectx)) {
- ectx->argv = oargv;
- ectx->program = oprogram;
- return SLBT_NESTED_ERROR(dctx);
- }
- } else {
- if (slbt_output_install(dctx,ectx)) {
- ectx->argv = oargv;
- ectx->program = oprogram;
- return SLBT_NESTED_ERROR(dctx);
- }
- }
- }
-
- /* cp spawn */
- if ((slbt_spawn(ectx,true) < 0) && (ectx->pid < 0)) {
- ret = SLBT_SPAWN_ERROR(dctx);
-
- } else if (ectx->exitcode) {
- ret = SLBT_CUSTOM_ERROR(
- dctx,
- SLBT_ERR_COPY_ERROR);
- } else {
- ret = 0;
- }
-
- ectx->argv = oargv;
- ectx->program = oprogram;
- return ret;
-}