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
|
/* This file was copied from Paludis src/clients/instruo/command_line.cc that is licensed as follows: */
/*
* Copyright (c) 2007, 2008, 2009, 2010 Ciaran McCreesh
*
* This file is part of the Paludis package manager. Paludis is free software;
* you can redistribute it and/or modify it under the terms of the GNU General
* Public License version 2, as published by the Free Software Foundation.
*
* Paludis 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
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "command_line.h"
#include <paludis/util/singleton-impl.hh>
using namespace paludis;
template class paludis::Singleton<CommandLine>;
CommandLine::CommandLine() :
ArgsHandler(),
action_args(main_options_section(), "Actions",
"Selects which basic action to perform. Exactly one action should "
"be specified."),
a_generate_cache(&action_args, "generate-cache", 'g', "Generate cache", false),
a_version(&action_args, "version", 'V', "Display program version", false),
a_help(&action_args, "help", 'h', "Display program help", false),
general_args(main_options_section(), "General options",
"Options which are relevant for most or all actions."),
a_log_level(&general_args, "log-level", '\0'),
a_no_colour(&general_args, "no-colour", '\0', "Do not use colour", false),
a_no_color(&a_no_colour, "no-color"),
a_force_colour(&general_args, "force-colour", '\0', "Force the use of colour", false),
a_force_color(&a_force_colour, "force-color"),
a_repository_directory(&general_args, "repository-dir", 'D',
"Where to find the repository (default: current directory)"),
a_output_directory(&general_args, "output-dir", 'o',
"Where to place generated metadata (default: current directory)"),
a_master_repository_name(&general_args, "master-repository-name", '\0',
"Use the specified name for the master repository. Specify the location using --extra-repository-dir. "
"Only for repositories with no metadata/layout.conf."),
a_extra_repository_dir(&general_args, "extra-repository-dir", '\0',
"Also include the repository at this location. May be specified multiple times, in creation order."),
a_report_file(&general_args, "report-file", 'r',
"Write report to the specified file, rather than stdout")
{
add_usage_line("--generate-cache [ at least one of --repository-dir /dir or --output-dir /dir ]");
add_description_line("instruo is configured purely from the command line. It does not use any user "
"configuration files.");
add_environment_variable("INSTRUO_OPTIONS", "Default command-line options.");
add_environment_variable("INSTRUO_THREADS", "Number of threads to use. Default: 5");
}
std::string
CommandLine::app_name() const
{
return "instruo";
}
std::string
CommandLine::app_synopsis() const
{
return "Metadata generation client for Paludis";
}
std::string
CommandLine::app_description() const
{
return
"instruo is a metadata generation client for Paludis. It generates metadata cache for every ID in a "
"given repository and produces a report of any failures.";
}
CommandLine::~CommandLine()
{
}
|