/* cmd-versions.c * **************************************************************** * Copyright (C) 2003 Tom Lord * * See the file "COPYING" for further information about * the copyright and warranty status of this work. */ #include "config-options.h" #include "po/gettext.h" #include "hackerlab/cmd/main.h" #include "libarch/namespace.h" #include "libarch/project-tree.h" #include "libarch/my.h" #include "libarch/archive.h" #include "commands/versions.h" #include "commands/cmdutils.h" #include "commands/version.h" static t_uchar * usage = N_("[options] [branch]"); #define OPTS(OP) \ OP (opt_help_msg, "h", "help", 0, \ N_("Display a help message and exit.")) \ OP (opt_long_help, "H", 0, 0, \ N_("Display a verbose help message and exit.")) \ OP (opt_version, "V", "version", 0, \ N_("Display a release identifier string\n" \ "and exit.")) \ OP (opt_archive, "A", "archive", 1, \ N_("Override `my-default-archive'")) \ OP (opt_reverse, "r", "reverse", 0, \ N_("sort from newest to oldest")) t_uchar arch_cmd_versions_help[] = N_("list the versions in an archive branch\n" "Print a list of versions within an archive branch.\n" "\n" "The list is ordinarily sorted from oldest to newest,\n" "but the order can be changed with -r (--reverse).\n"); enum options { OPTS (OPT_ENUM) }; static struct opt_desc opts[] = { OPTS (OPT_DESC) {-1, 0, 0, 0, 0} }; int arch_cmd_versions (t_uchar * program_name, int argc, char * argv[]) { int o; struct opt_parsed * option; t_uchar * default_archive; int reverse; default_archive = 0; reverse = 0; safe_buffer_fd (1, 0, O_WRONLY, 0); option = 0; while (1) { o = opt_standard (lim_use_must_malloc, &option, opts, &argc, argv, program_name, usage, libarch_version_string, arch_cmd_versions_help, opt_help_msg, opt_long_help, opt_version); if (o == opt_none) break; switch (o) { default: safe_printfmt (2, "unhandled option `%s'\n", option->opt_string); panic ("internal error parsing arguments"); usage_error: opt_usage (2, argv[0], program_name, usage, 1); exit (1); /* bogus_arg: */ safe_printfmt (2, "ill-formed argument for `%s' (`%s')\n", option->opt_string, option->arg_string); goto usage_error; case opt_archive: { default_archive = str_save (0, option->arg_string); break; } case opt_reverse: { reverse = 1; break; } } } if (argc > 2) goto usage_error; default_archive = arch_my_default_archive (default_archive); { t_uchar * branch_spec = 0; t_uchar * branch = 0; struct arch_archive * arch = 0; rel_table versions = 0; if (argc == 2) { branch_spec = str_save (0, argv[1]); } else { t_uchar * default_archive = arch_my_default_archive (NULL); branch_spec = arch_try_tree_version (program_name); branch_spec = str_replace (branch_spec, arch_fully_qualify (default_archive, branch_spec)); branch_spec = str_replace (branch_spec, arch_parse_package_name (arch_ret_package, 0, branch_spec)); lim_free (0, default_archive); } arch = arch_archive_connect_branch (branch_spec, &branch); if (!arch) { safe_printfmt (2, _("Could not connect to archive %s\n"), branch_spec); exit (2); } if (!arch_valid_package_name (branch, arch_maybe_archive, arch_req_package, 0)) { safe_printfmt (2, "%s: invalid branch name (%s)\n", argv[0], branch); exit (2); } branch = str_replace (branch, arch_parse_package_name (arch_ret_package, 0, branch)); if (argc == 2) arch_check_for (arch, arch_req_package, branch); versions = arch_archive_versions (arch, branch); if (reverse) arch_sort_table_by_name_field (1, versions, 0); rel_print_table (1, versions); lim_free (0, branch_spec); } return 0; } /* tag: Tom Lord Tue May 20 15:12:27 2003 (versions.c) */