Nico Huber | 34e783a | 2023-02-11 00:30:27 +0100 | [diff] [blame] | 1 | /* |
| 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 Huber | 0da839b | 2023-02-11 01:40:07 +0100 | [diff] [blame] | 18 | #include "libflashprog.h" |
| 19 | |
Nico Huber | 34e783a | 2023-02-11 00:30:27 +0100 | [diff] [blame] | 20 | enum { |
Nico Huber | df6ce9f | 2023-02-11 16:16:04 +0100 | [diff] [blame] | 21 | OPTION_VERBOSE = 'V', |
| 22 | OPTION_LOGFILE = 'o', |
Nico Huber | 34e783a | 2023-02-11 00:30:27 +0100 | [diff] [blame] | 23 | OPTION_CHIP = 'c', |
| 24 | OPTION_PROGRAMMER = 'p', |
Nico Huber | d91822a | 2023-02-11 00:43:54 +0100 | [diff] [blame] | 25 | OPTION_LAYOUT = 'l', |
Nico Huber | e7899a9 | 2023-02-11 00:39:47 +0100 | [diff] [blame] | 26 | |
| 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 Huber | 34e783a | 2023-02-11 00:30:27 +0100 | [diff] [blame] | 35 | }; |
| 36 | |
Nico Huber | df6ce9f | 2023-02-11 16:16:04 +0100 | [diff] [blame] | 37 | struct log_args { |
| 38 | enum flashprog_log_level screen_level; |
| 39 | enum flashprog_log_level logfile_level; |
| 40 | char *logfile; |
| 41 | }; |
| 42 | |
Nico Huber | 34e783a | 2023-02-11 00:30:27 +0100 | [diff] [blame] | 43 | struct flash_args { |
| 44 | char *chip; |
| 45 | char *prog_name; |
| 46 | char *prog_args; |
| 47 | }; |
| 48 | |
Nico Huber | d91822a | 2023-02-11 00:43:54 +0100 | [diff] [blame] | 49 | struct layout_args { |
| 50 | bool ifd; |
| 51 | bool fmap; |
| 52 | char *fmapfile; |
| 53 | char *layoutfile; |
| 54 | }; |
| 55 | |
| 56 | int cli_check_filename(const char *filename, const char *type); |
| 57 | |
Nico Huber | df6ce9f | 2023-02-11 16:16:04 +0100 | [diff] [blame] | 58 | int cli_parse_log_args(struct log_args *, int opt, const char *optarg); |
Nico Huber | 34e783a | 2023-02-11 00:30:27 +0100 | [diff] [blame] | 59 | int cli_parse_flash_args(struct flash_args *, int opt, const char *optarg); |
Nico Huber | d91822a | 2023-02-11 00:43:54 +0100 | [diff] [blame] | 60 | int cli_parse_layout_args(struct layout_args *, int opt, const char *optarg); |
Nico Huber | 0da839b | 2023-02-11 01:40:07 +0100 | [diff] [blame] | 61 | int cli_process_layout_args(struct flashprog_layout **, struct flashprog_flashctx *, const struct layout_args *); |
Nico Huber | 34e783a | 2023-02-11 00:30:27 +0100 | [diff] [blame] | 62 | |
Nico Huber | d39c7d6 | 2023-02-11 00:53:08 +0100 | [diff] [blame] | 63 | int cli_init(void); |
| 64 | |
Nico Huber | a705043 | 2023-02-11 18:01:26 +0100 | [diff] [blame] | 65 | int flashprog_classic_main(int argc, char *argv[]); |
| 66 | |
Nico Huber | b82aadc | 2023-02-11 18:27:30 +0100 | [diff] [blame] | 67 | extern enum flashprog_log_level verbose_screen; |
| 68 | extern enum flashprog_log_level verbose_logfile; |
| 69 | int open_logfile(const char * const filename); |
| 70 | int close_logfile(void); |
| 71 | void start_logging(void); |
| 72 | |
Nico Huber | 24c0977 | 2024-11-02 13:46:21 +0100 | [diff] [blame^] | 73 | void print_generic_options(void); |
| 74 | |
Nico Huber | 34e783a | 2023-02-11 00:30:27 +0100 | [diff] [blame] | 75 | #endif |