blob: 69b01466dfa78a692b412146d7ab9aa3934ae5c5 [file] [log] [blame]
Nico Huber34e783a2023-02-11 00:30:27 +01001/*
2 * This file is part of the flashprog project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15#ifndef FLASHPROG_CLI_H
16#define FLASHPROG_CLI_H
17
Nico Huber0da839b2023-02-11 01:40:07 +010018#include "libflashprog.h"
19
Nico Huber34e783a2023-02-11 00:30:27 +010020enum {
Nico Huberdf6ce9f2023-02-11 16:16:04 +010021 OPTION_VERBOSE = 'V',
22 OPTION_LOGFILE = 'o',
Nico Huber34e783a2023-02-11 00:30:27 +010023 OPTION_CHIP = 'c',
24 OPTION_PROGRAMMER = 'p',
Nico Huberd91822a2023-02-11 00:43:54 +010025 OPTION_LAYOUT = 'l',
Nico Hubere7899a92023-02-11 00:39:47 +010026
27 /* Options below have only long option names, i.e. no single char: */
28 OPTION_IFD = 0x0100,
29 OPTION_FMAP,
30 OPTION_FMAP_FILE,
31 OPTION_FLASH_CONTENTS,
32 OPTION_FLASH_NAME,
33 OPTION_FLASH_SIZE,
34 OPTION_PROGRESS,
Nico Huber1f693db2023-02-11 18:28:33 +010035 OPTION_CONFIG_GET,
36 OPTION_CONFIG_SET,
37 OPTION_CONFIG_VOLATILE,
Nico Huber34e783a2023-02-11 00:30:27 +010038};
39
Nico Huberdf6ce9f2023-02-11 16:16:04 +010040struct log_args {
41 enum flashprog_log_level screen_level;
42 enum flashprog_log_level logfile_level;
43 char *logfile;
44};
45
Nico Huber34e783a2023-02-11 00:30:27 +010046struct flash_args {
47 char *chip;
48 char *prog_name;
49 char *prog_args;
50};
51
Nico Huberd91822a2023-02-11 00:43:54 +010052struct layout_args {
53 bool ifd;
54 bool fmap;
55 char *fmapfile;
56 char *layoutfile;
57};
58
59int cli_check_filename(const char *filename, const char *type);
60
Nico Huberdf6ce9f2023-02-11 16:16:04 +010061int cli_parse_log_args(struct log_args *, int opt, const char *optarg);
Nico Huber34e783a2023-02-11 00:30:27 +010062int cli_parse_flash_args(struct flash_args *, int opt, const char *optarg);
Nico Huberd91822a2023-02-11 00:43:54 +010063int cli_parse_layout_args(struct layout_args *, int opt, const char *optarg);
Nico Huber0da839b2023-02-11 01:40:07 +010064int cli_process_layout_args(struct flashprog_layout **, struct flashprog_flashctx *, const struct layout_args *);
Nico Huber34e783a2023-02-11 00:30:27 +010065
Nico Huberd39c7d62023-02-11 00:53:08 +010066int cli_init(void);
67
Nico Hubera7050432023-02-11 18:01:26 +010068int flashprog_classic_main(int argc, char *argv[]);
Nico Huber1f693db2023-02-11 18:28:33 +010069int flashprog_config_main(int argc, char *argv[]);
Nico Hubera7050432023-02-11 18:01:26 +010070
Nico Huberb82aadc2023-02-11 18:27:30 +010071extern enum flashprog_log_level verbose_screen;
72extern enum flashprog_log_level verbose_logfile;
73int open_logfile(const char * const filename);
74int close_logfile(void);
75void start_logging(void);
76
Nico Huber85c2cf82024-11-02 13:47:06 +010077/* generic helper, like getopt_long() but without `--' prefix, re-uses `optind` */
78struct opt_command {
79 const char *name;
80 int val;
81};
82int getopt_command(int argc, char *const argv[], const struct opt_command *);
83
Nico Huber24c09772024-11-02 13:46:21 +010084void print_generic_options(void);
85
Nico Huber34e783a2023-02-11 00:30:27 +010086#endif