summaryrefslogtreecommitdiff
path: root/src/arbits/output/slbt_au_output_arname.c
blob: 28e081dccba700e5638372198e86212c6b83bc61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*******************************************************************/
/*  slibtool: a strong 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/slibtool_output.h>
#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_au_output_arname_impl(
	const struct slbt_driver_ctx *  dctx,
	const struct slbt_archive_ctx * actx,
	const struct slbt_fd_ctx *      fdctx,
	const char *                    fmt)
{
	const char * path;
	const char   mema[] = "<memory_object>";

	path = actx->path && *actx->path ? *actx->path : mema;

	if (slbt_dprintf(fdctx->fdout,fmt,path) < 0)
		return SLBT_SYSTEM_ERROR(dctx,0);

	return 0;
}

static int slbt_au_output_arname_posix(
	const struct slbt_driver_ctx *  dctx,
	const struct slbt_archive_ctx * actx,
	const struct slbt_fd_ctx *      fdctx)
{
	if (slbt_au_output_arname_impl(
			dctx,actx,fdctx,
			"%s:\n") < 0)
		return SLBT_NESTED_ERROR(dctx);

	return 0;
}

static int slbt_au_output_arname_yaml(
	const struct slbt_driver_ctx *  dctx,
	const struct slbt_archive_ctx * actx,
	const struct slbt_fd_ctx *      fdctx)
{
	if (slbt_au_output_arname_impl(
			dctx,actx,fdctx,
			"Archive:\n"
			"  - Meta:\n"
			"    - [ name: %s ]\n\n") < 0)
		return SLBT_NESTED_ERROR(dctx);

	return 0;
}

int slbt_au_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_lib_get_driver_fdctx(dctx,&fdctx) < 0)
		return SLBT_NESTED_ERROR(dctx);

	switch (dctx->cctx->fmtflags & SLBT_PRETTY_FLAGS) {
		case SLBT_PRETTY_YAML:
			return slbt_au_output_arname_yaml(
				dctx,actx,&fdctx);

		case SLBT_PRETTY_POSIX:
			return slbt_au_output_arname_posix(
				dctx,actx,&fdctx);

		default:
			return slbt_au_output_arname_yaml(
				dctx,actx,&fdctx);
	}
}