2 * Copyright (c) 2017 Jiri Svoboda
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 /** @file Package installer
34 * Utility to simplify installation of coastline packages
42 #include <str_error.h>
47 static void print_syntax(void)
49 fprintf(stderr
, "syntax: " NAME
" install <package-name>\n");
52 static errno_t
cmd_runl(const char *path
, ...)
60 arg
= va_arg(ap
, const char *);
62 } while (arg
!= NULL
);
68 errno_t rc
= task_spawn(&id
, &wait
, path
, cnt
, ap
);
72 printf("Error spawning %s (%s)\n", path
, str_error(rc
));
77 printf("Error spawning %s (invalid task ID)\n", path
);
83 rc
= task_wait(&wait
, &texit
, &retval
);
85 printf("Error waiting for %s (%s)\n", path
, str_error(rc
));
89 if (texit
!= TASK_EXIT_NORMAL
) {
90 printf("Command %s unexpectedly terminated\n", path
);
95 printf("Command %s returned non-zero exit code %d)\n",
99 return retval
== 0 ? EOK
: EPARTY
;
102 static errno_t
pkg_install(int argc
, char *argv
[])
118 ret
= asprintf(&src_uri
, "http://ci.helenos.org/latest/" STRING(UARCH
)
119 "/%s-for-helenos-" STRING(UARCH
) ".tar.gz",
122 printf("Out of memory.\n");
126 ret
= asprintf(&fname
, "/tmp/%s-for-helenos-" STRING(UARCH
)
127 ".tar.gz", pkg_name
);
129 printf("Out of memory.\n");
133 ret
= asprintf(&fnunpack
, "/tmp/%s-for-helenos-" STRING(UARCH
) ".tar",
136 printf("Out of memory.\n");
139 /* XXX error cleanup */
141 printf("Downloading '%s'.\n", src_uri
);
143 rc
= cmd_runl("/app/download", "/app/download", "-o", fname
,
146 printf("Error downloading package archive.\n");
150 printf("Extracting package\n");
152 rc
= cmd_runl("/app/gunzip", "/app/gunzip", fname
, fnunpack
, NULL
);
154 printf("Error uncompressing package archive.\n");
158 if (remove(fname
) != 0) {
159 printf("Error deleting package archive.\n");
163 rc
= cmd_runl("/app/untar", "/app/untar", fnunpack
, NULL
);
165 printf("Error extracting package archive.\n");
169 if (remove(fnunpack
) != 0) {
170 printf("Error deleting package archive.\n");
174 printf("Package '%s' installed.\n", pkg_name
);
179 int main(int argc
, char *argv
[])
185 fprintf(stderr
, "Arguments missing.\n");
192 if (str_cmp(cmd
, "install") == 0) {
193 rc
= pkg_install(argc
, argv
);
195 fprintf(stderr
, "Unknown command.\n");