aboutsummaryrefslogtreecommitdiff
path: root/src/mktags.c
blob: 27ea32747bb2b990918638a2d4401aa99e5dc8fe (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* This file is part of Eclat.
   Copyright (C) 2012-2018 Sergey Poznyakoff.
 
   Eclat is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.
 
   Eclat 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 Eclat.  If not, see <http://www.gnu.org/licenses/>. */

#include "eclat.h"
#include "mktags-cl.h"

static int
process_tags(eclat_command_env_t *env, int argc, char **argv, int require_tags)
{
	int i, j;
	struct ec2_request *q = env->request;
	char *bufptr = NULL;
	size_t bufsize = 0;
	struct grecs_list_entry *ep;
	
	if (!require_tags)
		proginfo.args_doc = "[TAG[=VALUE...]]";
	parse_options(env, argc, argv, &i);
	argv += i;
	argc -= i;

	if (!reslist->head)
		die(EX_USAGE, "no resource IDs supplied");
	if (require_tags && argc == 0 && !from_file)
		die(EX_USAGE, "no tags supplied");

	for (ep = reslist->head, i = 1; ep; ep = ep->next, i++) {
		struct resource *res = ep->data;
		grecs_asprintf(&bufptr, &bufsize, "ResourceId.%d", i);
		if (res->map)
			translate_ids(1, &res->resid, res->map);
		eclat_request_add_param(q, bufptr, res->resid);
	}

	j = 1;
	if (from_file) {
		FILE *fp;
		char *inbuf = NULL;
		size_t insize = 0;
		ssize_t rc;
		char *p;
		struct wordsplit ws;
		int wsflags;
		
		if (strcmp(from_file, "-") == 0) {
			from_file = "<stdin>";
			fp = stdin;
		} else {
			fp = fopen(from_file, "r");
			if (!fp)
				die(EX_NOINPUT, "cannot open file \"%s\": %s",
				    from_file, strerror(errno));
		}

		wsflags = WRDSF_DEFFLAGS|WRDSF_NOSPLIT;
		while ((rc = grecs_getline(&inbuf, &insize, fp)) > 0) {
			char *text;
			if (wordsplit(inbuf, &ws, wsflags)) {
				die(EX_SOFTWARE, "%s", wordsplit_strerror(&ws));
			}
			wsflags |= WRDSF_REUSE;
			text = ws.ws_wordv[0];
			p = strchr(text, '=');
			if (p)
				*p++ = 0;
			grecs_asprintf(&bufptr, &bufsize, "Tag.%d.Key", j);
			eclat_request_add_param(q, bufptr, text);
			if (p) {
				grecs_asprintf(&bufptr, &bufsize,
					       "Tag.%d.Value", j);
				eclat_request_add_param(q, bufptr, p);
			}
			++j;
		}
		if (wsflags & WRDSF_REUSE)
			wordsplit_free(&ws);
		
		fclose(fp);
		free(inbuf);
	}
	
	for (i = 0; i < argc; i++, j++) {
		char *p = strchr(argv[i], '=');
		if (p)
			*p++ = 0;
		grecs_asprintf(&bufptr, &bufsize, "Tag.%d.Key", j);
		eclat_request_add_param(q, bufptr, argv[i]);
		if (p) {
			grecs_asprintf(&bufptr, &bufsize, "Tag.%d.Value", j);
			eclat_request_add_param(q, bufptr, p);
		}
	}
	free(bufptr);

	return 0;
}
	
int
eclat_create_tags(eclat_command_env_t *env, int argc, char **argv)
{
	proginfo.progname = "eclat create-tags";
	proginfo.docstring = "create tags for the specified resources";
	return process_tags(env, argc, argv, 1);
}

int
eclat_delete_tags(eclat_command_env_t *env, int argc, char **argv)
{
	proginfo.progname = "eclat delete-tags";
	proginfo.docstring = "delete tags from the specified resources";
	return process_tags(env, argc, argv, 0);
}

Return to:

Send suggestions and report system problems to the System administrator.