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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
//
// srecord - manipulate eprom load files
// Copyright (C) 1998-2008 Peter Miller
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program 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, see
// <http://www.gnu.org/licenses/>.
//
#ifndef INCLUDE_SREC_ARGLEX_H
#define INCLUDE_SREC_ARGLEX_H
#include <lib/arglex.h>
class interval; // forward
class srec_input; // forward
class srec_output; // forward
/**
* The srec_arglex is used to parse command line with srec-specific
* arguments.
*/
class srec_arglex:
public arglex
{
public:
enum
{
token_a430 = arglex::token_MAX,
token_and,
token_aomf,
token_ascii_hex,
token_assembler,
token_atmel_generic_be,
token_atmel_generic_le,
token_basic_data,
token_binary,
token_brecord,
token_byte_swap,
token_c_array,
token_c_compressed,
token_checksum_be_bitnot,
token_checksum_be_negative,
token_checksum_be_positive,
token_checksum_le_bitnot,
token_checksum_le_negative,
token_checksum_le_positive,
token_cl430,
token_constant,
token_constant_not,
token_cosmac,
token_crc16_augment,
token_crc16_augment_not,
token_crc16_be,
token_crc16_broken,
token_crc16_ccitt,
token_crc16_le,
token_crc16_xmodem,
token_crc32_be,
token_crc32_le,
token_crop,
token_dec_binary,
token_emon52,
token_exclude,
token_fairchild,
token_fast_load,
token_fill,
token_formatted_binary,
token_four_packed_code,
token_generator,
token_guess,
token_hexdump,
token_ignore_checksums,
token_include,
token_include_not,
token_intel,
token_intel16,
token_intersection,
token_length,
token_length_be,
token_length_le,
token_maximum,
token_maximum_be,
token_maximum_le,
token_minimum,
token_minimum_be,
token_minimum_le,
token_minus,
token_mos_tech,
token_motorola,
token_multiple,
token_needham_hex,
token_not,
token_offset,
token_ohio_scientific,
token_or,
token_output,
token_output_word,
token_over,
token_paren_begin,
token_paren_end,
token_random,
token_random_fill,
token_range_padding,
token_repeat_data,
token_repeat_string,
token_round_down,
token_round_nearest,
token_round_up,
token_sequence_warnings_disable,
token_sequence_warnings_enable,
token_signetics,
token_spasm_be,
token_spasm_le,
token_spectrum,
token_split,
token_stewie,
token_style_dot,
token_style_hexadecimal,
token_style_hexadecimal_not,
token_style_section,
token_tektronix,
token_tektronix_extended,
token_ti_tagged,
token_ti_tagged_16,
token_ti_txt,
token_unfill,
token_union,
token_unsplit,
token_vhdl,
token_vmem,
token_wilson,
token_within,
token_xor,
token_MAX
};
/**
* The destructor.
*/
virtual ~srec_arglex();
/**
* The constructor. Pass the argc and argv as given to main;
* there is not need to change the values at all.
*/
srec_arglex(int argc, char **argv);
/**
* The get_input method is used to parse an input specification
* (filename, file format, filters, everything) from the
* command line.
*
* If the parse is unsuccessful (is not present on command
* line) a fatal error will be issued and the method call will
* not return.
*/
srec_input *get_input();
/**
* The get_output method is used to parse an output specification
* (filename and file format) from the command line.
*
* If the parse is unsuccessful (is not present on command
* line) a fatal error will be issued and the method call will
* not return.
*/
srec_output *get_output();
/**
* The get_number method is used to parse a numeric value from the
* command line.
*/
unsigned long get_number(const char *caption);
/**
* The get_number method is used to parse a numeric value
* from the command line, and check it agains a specified range.
*
* @param caption
* for the error message, if necessary
* @param min
* The minimum acceptable value (inclusive)
* @param max
* The maximum acceptable value (inclusive)
*/
unsigned long get_number(const char *caption, long min, long max);
/**
* The can_get_number method is used to determine if it is possible
* to parse a number from the next token on the command line.
*/
bool can_get_number() const;
/**
* The get_interval method is used to parse an interval
* set form the command line. It consists of as many
* get_interval_inner()s as possible.
*
* Used by the get_input method to parse the address intervals used
* by various filters. It is the lowest precedence level, and
* handsles set union (the implicit operator) and set difference
* (the - operator).
*
* If the parse is unsuccessful (is not present on command
* line) a fatal error will be issued and the method call will
* not return.
*/
interval get_interval(const char *err_msg_caption);
/**
* The get_string method may be used to get a string from the
* command line, or issue a fatal error if one is not available.
*
* @param caption
* The text for the error message.
*/
std::string get_string(const char *caption);
// See base class for documentation.
void default_command_line_processing();
private:
/**
* The get_interval_factor method is used to parse a single
* interval from the command line (usually, a pair of number
* representing the [lower, upper) bounds, but it could be
* -over or -within, too).
*
* This method parses the highest precedence operators in the range
* parsing.
*
* This method should only every be called by the get_interval_term
* method.
*
* If the parse is unsuccessful (is not present on command
* line) a fatal error will be issued and the method call will
* not return.
*/
interval get_interval_factor(const char *err_msg_caption);
/**
* The get_interval_term method is used to parse set-intersection
* precedence intervals from the command line. This method parses
* the middle precedence operators in the range parsing.
*
* This method should only every be called by the get_interval_term
* method.
*
* If the parse is unsuccessful (is not present on command
* line) a fatal error will be issued and the method call will
* not return.
*/
interval get_interval_term(const char *err_msg_caption);
/**
* The get_address method is used to parse an address from the
* command line.
*
* If the parse is unsuccessful (is not present on command
* line) a fatal error will be issued and the method call will
* not return.
*/
void get_address(const char *err_msg_caption, unsigned long &addr);
/**
* The get_address_and_nbytes method is used to parse an address
* and a byte count from the command line.
*
* If the parse is unsuccessful (is not present on command
* line) a fatal error will be issued and the method call will
* not return.
*/
void get_address_and_nbytes(const char *err_msg_caption,
unsigned long &addr, int &nbytes);
/**
* The get_address_nbytes_width method is used to parse an address
* a byte count and a width from the command line.
*
* If the parse is unsuccessful (is not present on command
* line) a fatal error will be issued and the method call will
* not return.
*/
void get_address_nbytes_width(const char *err_msg_caption,
unsigned long &addr, int &nbytes, int &width);
/**
* The stdin_used instance variable is used to remember whether
* or not the standard input has been used by a filter, yet.
* Only one use of the standard input may be made; the second
* use will result in a fatal error.
*/
bool stdin_used;
/**
* The stdout_used instance variable is used to remember whether
* or not the standard output has been used by a filter, yet.
* Only one use of the standard output may be made; the second
* use will result in a fatal error.
*/
bool stdout_used;
/**
* The issue_sequence_warnings instance variable is used to
* remember whether or not to issue data sequence warnings when
* data records are not in strictly ascending address order.
*
* Negative means not set from the command line, zero means diabled
* from the command line, positive means enabled on the command
* line.
*/
int issue_sequence_warnings;
/**
* The get_simple_input method is used to parse an input filename
* or generator from the command line. It shall only be used by
* the #get_input method.
*
* If the parse is unsuccessful (is not present on command
* line) a fatal error will be issued and the method call will
* not return.
*/
srec_input *get_simple_input();
/**
* The default constructor. Do not use.
*/
srec_arglex();
/**
* The copy constructor. Do not use.
*/
srec_arglex(const srec_arglex &);
/**
* The assignment operator. Do not use.
*/
srec_arglex &operator=(const srec_arglex &);
};
#endif // INCLUDE_SREC_ARGLEX_H
|