Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
command_line.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2000-2022 Inria
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * * Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * * Neither the name of the ALICE Project-Team nor the names of its
14 * contributors may be used to endorse or promote products derived from this
15 * software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE.
28 *
29 * Contact: Bruno Levy
30 *
31 * https://www.inria.fr/fr/bruno-levy
32 *
33 * Inria,
34 * Domaine de Voluceau,
35 * 78150 Le Chesnay - Rocquencourt
36 * FRANCE
37 *
38 */
39
40#ifndef GEOGRAM_BASIC_COMMAND_LINE
41#define GEOGRAM_BASIC_COMMAND_LINE
42
47
53namespace GEO {
54
60 namespace CmdLine {
61
69 void GEOGRAM_API initialize();
70
78 void GEOGRAM_API terminate();
79
80
91 void GEOGRAM_API set_config_file_name(
92 const std::string& filename,
93 bool auto_create_args = false
94 );
95
104 bool GEOGRAM_API config_file_loaded();
105
112 std::string GEOGRAM_API get_config_file_name();
113
121 void GEOGRAM_API load_config(
122 const std::string& filename, const std::string& program_name = "*"
123 );
124
129 void GEOGRAM_API save_config(const std::string& filename);
130
148
158
179 void GEOGRAM_API declare_arg_group(
180 const std::string& name,
181 const std::string& description,
183 );
184
204 void GEOGRAM_API declare_arg(
205 const std::string& name,
206 ArgType type,
207 const std::string& default_value,
208 const std::string& description,
210 );
211
218 ArgType GEOGRAM_API get_arg_type(const std::string& name);
219
226 bool GEOGRAM_API arg_is_declared(const std::string& name);
227
235 inline void declare_arg(
236 const std::string& name,
237 const std::string& default_value,
238 const std::string& description,
240 ) {
242 name, ARG_STRING, default_value,
243 description, flags
244 );
245 }
246
254 inline void declare_arg(
255 const std::string& name,
256 const char* default_value,
257 const std::string& description,
259 ) {
261 name, ARG_STRING, default_value,
262 description, flags
263 );
264 }
265
273 inline void declare_arg(
274 const std::string& name,
275 int default_value,
276 const std::string& description,
278 ) {
280 name, ARG_INT, String::to_string(default_value),
281 description, flags
282 );
283 }
284
292 inline void declare_arg(
293 const std::string& name,
294 double default_value,
295 const std::string& description,
297 ) {
299 name, ARG_DOUBLE, String::to_string(default_value),
300 description, flags
301 );
302 }
303
311 inline void declare_arg(
312 const std::string& name,
313 bool default_value,
314 const std::string& description,
316 ) {
318 name, ARG_BOOL, default_value ? "true" : "false",
319 description, flags
320 );
321 }
322
333 const std::string& name,
334 double default_value,
335 const std::string& description = "...",
337 ) {
339 name, ARG_PERCENT, String::to_string(default_value) + "%",
340 description, flags
341 );
342 }
343
382 bool GEOGRAM_API parse(
383 int argc, char** argv, std::vector<std::string>& unparsed_args,
384 const std::string& additional_arg_specs = ""
385 );
386
396 bool GEOGRAM_API parse(
397 int argc, char** argv
398 );
399
405 int GEOGRAM_API argc();
406
407
408 typedef char** charptrptr; // Need to do that else the compiler thinks
409 // that GEOGRAM_API qualifies the ptr instead
410 // of the function.
411
418 charptrptr GEOGRAM_API argv();
419
432 void GEOGRAM_API show_usage(
433 const std::string& additional_args = "",
434 bool advanced = false
435 );
436
444 std::string GEOGRAM_API get_arg(const std::string& name);
445
456 int GEOGRAM_API get_arg_int(const std::string& name);
457
468 unsigned int GEOGRAM_API get_arg_uint(const std::string& name);
469
480 double GEOGRAM_API get_arg_double(const std::string& name);
481
500 double GEOGRAM_API get_arg_percent(
501 const std::string& name, double reference
502 );
503
514 bool GEOGRAM_API get_arg_bool(const std::string& name);
515
528 bool GEOGRAM_API set_arg(
529 const std::string& name, const std::string& value
530 );
531
544 inline bool set_arg(const std::string& name, const char* value) {
545 return set_arg(name, std::string(value));
546 }
547
558 void GEOGRAM_API set_arg(const std::string& name, Numeric::int32 value);
559
560 /*
561 * \brief Sets an argument value from an integer
562 * \details This replaces the value of argument \p name by the given
563 * integer \p value. If the declared type of the argument is not
564 * compatible with an integer then the function aborts (compatible
565 * argument types are: int, double or string). If the argument does
566 * not exist, it is added as a new argument of undefined type.
567 * \param[in] name the argument name
568 * \param[in] value the new value as an integer
569 */
570 void GEOGRAM_API set_arg(
571 const std::string& name, Numeric::uint32 value
572 );
573
574 /*
575 * \brief Sets an argument value from an integer
576 * \details This replaces the value of argument \p name by the given
577 * integer \p value. If the declared type of the argument is not
578 * compatible with an integer then the function aborts (compatible
579 * argument types are: int, double or string). If the argument does
580 * not exist, it is added as a new argument of undefined type.
581 * \param[in] name the argument name
582 * \param[in] value the new value as an integer
583 */
584 void GEOGRAM_API set_arg(const std::string& name, Numeric::int64 value);
585
586 /*
587 * \brief Sets an argument value from an integer
588 * \details This replaces the value of argument \p name by the given
589 * integer \p value. If the declared type of the argument is not
590 * compatible with an integer then the function aborts (compatible
591 * argument types are: int, double or string). If the argument does
592 * not exist, it is added as a new argument of undefined type.
593 * \param[in] name the argument name
594 * \param[in] value the new value as an integer
595 */
596 void GEOGRAM_API set_arg(
597 const std::string& name, Numeric::uint64 value
598 );
599
610 void GEOGRAM_API set_arg(const std::string& name, double value);
611
622 void GEOGRAM_API set_arg(const std::string& name, bool value);
623
636 void GEOGRAM_API set_arg_percent(const std::string& name, double value);
637
638 /********************************************************************/
639
646 void GEOGRAM_API get_args(std::vector<std::string>& args);
647
653
681 void GEOGRAM_API ui_separator(
682 const std::string& title,
683 const std::string& short_title = ""
684 );
685
699 void GEOGRAM_API ui_separator();
700
713 void GEOGRAM_API ui_close_separator();
714
733 void GEOGRAM_API ui_message(
734 const std::string& message,
735 index_t wrap_margin
736 );
737
746 void GEOGRAM_API ui_message(
747 const std::string& message
748 );
749
755 void GEOGRAM_API ui_clear_line();
756
778 void GEOGRAM_API ui_progress(
779 const std::string& task_name, index_t val,
780 index_t percent, bool clear = true
781 );
782
794 void GEOGRAM_API ui_progress_time(
795 const std::string& task_name,
796 double elapsed, bool clear = true
797 );
798
811 void GEOGRAM_API ui_progress_canceled(
812 const std::string& task_name,
813 double elapsed, index_t percent, bool clear = true
814 );
815
843 std::string GEOGRAM_API ui_feature(
844 const std::string& feature, bool show = true
845 );
846 }
847}
848
849
850#ifdef GEO_OS_ANDROID
851struct android_app;
852
853namespace GEO {
854 namespace CmdLine {
859 void GEOGRAM_API set_android_app(android_app* app);
860
865 android_app* GEOGRAM_API get_android_app();
866 }
867}
868
869#endif
870
871
872#endif
Assertion checking mechanism.
Common include file, providing basic definitions. Should be included before anything else by all head...
std::string ui_feature(const std::string &feature, bool show=true)
Formats a Logger feature name.
void ui_progress_canceled(const std::string &task_name, double elapsed, index_t percent, bool clear=true)
Displays the time elapsed for a canceled task.
bool config_file_loaded()
Tests whether the configuration file was loaded.
void show_usage(const std::string &additional_args="", bool advanced=false)
Displays program help.
void declare_arg(const std::string &name, ArgType type, const std::string &default_value, const std::string &description, ArgFlags flags=ARG_FLAGS_DEFAULT)
Declares an argument.
bool get_arg_bool(const std::string &name)
Gets an argument value as a boolean.
void declare_arg_percent(const std::string &name, double default_value, const std::string &description="...", ArgFlags flags=ARG_FLAGS_DEFAULT)
Declares an argument of type percentage.
int argc()
Gets the number of arguments of the command line.
std::string get_config_file_name()
Gets the name of the configuration file.
void load_config(const std::string &filename, const std::string &program_name="*")
Loads command line argument values from a file.
charptrptr argv()
Gets the command line arguments.
bool parse(int argc, char **argv, std::vector< std::string > &unparsed_args, const std::string &additional_arg_specs="")
Parses the command line arguments.
bool set_arg(const std::string &name, const std::string &value)
Sets an argument value from a string.
void save_config(const std::string &filename)
Saves command line argument values to a file.
void ui_close_separator()
Closes an opened separator.
ArgFlags
Command line group or argument flags.
void ui_separator()
Outputs a separator without a title on the console.
double get_arg_percent(const std::string &name, double reference)
Gets an argument value as a percentage.
void initialize()
Initializes the command line framework.
void ui_clear_line()
Clears the last line.
index_t ui_terminal_width()
Gets the width of the console.
void ui_progress_time(const std::string &task_name, double elapsed, bool clear=true)
Displays the time elapsed for a completed task.
std::string get_arg(const std::string &name)
Gets an argument value.
bool arg_is_declared(const std::string &name)
Checks if an argument exists.
int get_arg_int(const std::string &name)
Gets an argument value as an integer.
double get_arg_double(const std::string &name)
Gets an argument value as a floating point.
void get_args(std::vector< std::string > &args)
Gets the value of all arguments.
ArgType get_arg_type(const std::string &name)
Gets the type of an argument.
ArgType
Command line argument types.
void declare_arg_group(const std::string &name, const std::string &description, ArgFlags flags=ARG_FLAGS_DEFAULT)
Declares an argument group.
void ui_progress(const std::string &task_name, index_t val, index_t percent, bool clear=true)
Displays a progress bar.
unsigned int get_arg_uint(const std::string &name)
Gets an argument value as an unsigned integer.
void ui_message(const std::string &message, index_t wrap_margin)
Outputs a message on the console.
void set_config_file_name(const std::string &filename, bool auto_create_args=false)
Defines the name of the configuration file.
void terminate()
Cleans up the command line framework.
void set_arg_percent(const std::string &name, double value)
Sets an argument value from a percentage.
uint64_t uint64
Definition numeric.h:144
int32_t int32
Definition numeric.h:129
uint32_t uint32
Definition numeric.h:141
int64_t int64
Definition numeric.h:132
Global Vorpaline namespace.
geo_index_t index_t
The type for storing and manipulating indices.
Definition numeric.h:329
Types and functions for numbers manipulation.
Functions for string manipulation.