Merge branch 'avrdudes:main' into partdesc
This commit is contained in:
commit
43e2955c61
|
@ -579,7 +579,7 @@ AVRPART * avr_new_part(void)
|
||||||
p->reset_disposition = RESET_DEDICATED;
|
p->reset_disposition = RESET_DEDICATED;
|
||||||
p->retry_pulse = PIN_AVR_SCK;
|
p->retry_pulse = PIN_AVR_SCK;
|
||||||
p->flags = AVRPART_SERIALOK | AVRPART_PARALLELOK | AVRPART_ENABLEPAGEPROGRAMMING;
|
p->flags = AVRPART_SERIALOK | AVRPART_PARALLELOK | AVRPART_ENABLEPAGEPROGRAMMING;
|
||||||
p->config_file[0] = 0;
|
p->config_file = NULL;
|
||||||
p->lineno = 0;
|
p->lineno = 0;
|
||||||
memset(p->signature, 0xFF, 3);
|
memset(p->signature, 0xFF, 3);
|
||||||
p->ctl_stack_type = CTL_STACK_NONE;
|
p->ctl_stack_type = CTL_STACK_NONE;
|
||||||
|
|
65
src/config.c
65
src/config.c
|
@ -50,8 +50,8 @@ LISTID part_list;
|
||||||
LISTID programmers;
|
LISTID programmers;
|
||||||
bool is_alias;
|
bool is_alias;
|
||||||
|
|
||||||
int lineno;
|
int cfg_lineno;
|
||||||
const char * infile;
|
char * cfg_infile;
|
||||||
|
|
||||||
extern char * yytext;
|
extern char * yytext;
|
||||||
|
|
||||||
|
@ -76,8 +76,8 @@ int init_config(void)
|
||||||
programmers = lcreat(NULL, 0);
|
programmers = lcreat(NULL, 0);
|
||||||
is_alias = false;
|
is_alias = false;
|
||||||
|
|
||||||
lineno = 1;
|
cfg_lineno = 1;
|
||||||
infile = NULL;
|
cfg_infile = NULL;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -99,7 +99,7 @@ int yyerror(char * errmsg, ...)
|
||||||
va_start(args, errmsg);
|
va_start(args, errmsg);
|
||||||
|
|
||||||
vsnprintf(message, sizeof(message), errmsg, args);
|
vsnprintf(message, sizeof(message), errmsg, args);
|
||||||
avrdude_message(MSG_INFO, "%s: error at %s:%d: %s\n", progname, infile, lineno, message);
|
avrdude_message(MSG_INFO, "%s: error at %s:%d: %s\n", progname, cfg_infile, cfg_lineno, message);
|
||||||
|
|
||||||
va_end(args);
|
va_end(args);
|
||||||
|
|
||||||
|
@ -116,7 +116,7 @@ int yywarning(char * errmsg, ...)
|
||||||
va_start(args, errmsg);
|
va_start(args, errmsg);
|
||||||
|
|
||||||
vsnprintf(message, sizeof(message), errmsg, args);
|
vsnprintf(message, sizeof(message), errmsg, args);
|
||||||
avrdude_message(MSG_INFO, "%s: warning at %s:%d: %s\n", progname, infile, lineno, message);
|
avrdude_message(MSG_INFO, "%s: warning at %s:%d: %s\n", progname, cfg_infile, cfg_lineno, message);
|
||||||
|
|
||||||
va_end(args);
|
va_end(args);
|
||||||
|
|
||||||
|
@ -329,15 +329,22 @@ int read_config(const char * file)
|
||||||
FILE * f;
|
FILE * f;
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
f = fopen(file, "r");
|
if(!(cfg_infile = realpath(file, NULL))) {
|
||||||
if (f == NULL) {
|
avrdude_message(MSG_INFO, "%s: can't determine realpath() of config file \"%s\": %s\n",
|
||||||
avrdude_message(MSG_INFO, "%s: can't open config file \"%s\": %s\n",
|
|
||||||
progname, file, strerror(errno));
|
progname, file, strerror(errno));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
lineno = 1;
|
f = fopen(cfg_infile, "r");
|
||||||
infile = file;
|
if (f == NULL) {
|
||||||
|
avrdude_message(MSG_INFO, "%s: can't open config file \"%s\": %s\n",
|
||||||
|
progname, cfg_infile, strerror(errno));
|
||||||
|
free(cfg_infile);
|
||||||
|
cfg_infile = NULL;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
cfg_lineno = 1;
|
||||||
yyin = f;
|
yyin = f;
|
||||||
|
|
||||||
r = yyparse();
|
r = yyparse();
|
||||||
|
@ -349,5 +356,41 @@ int read_config(const char * file)
|
||||||
|
|
||||||
fclose(f);
|
fclose(f);
|
||||||
|
|
||||||
|
if(cfg_infile) {
|
||||||
|
free(cfg_infile);
|
||||||
|
cfg_infile = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Linear-search cache for a few often-referenced strings
|
||||||
|
char *cache_string(const char *file) {
|
||||||
|
static char **fnames;
|
||||||
|
static int n=0;
|
||||||
|
|
||||||
|
if(!file)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
// Exists in cache?
|
||||||
|
for(int i=0; i<n; i++)
|
||||||
|
if(strcmp(fnames[i], file) == 0)
|
||||||
|
return fnames[i];
|
||||||
|
|
||||||
|
// Expand cache?
|
||||||
|
if(n%128 == 0) {
|
||||||
|
if(!(fnames = realloc(fnames, (n+128)*sizeof*fnames))) {
|
||||||
|
yyerror("cache_string(): out of memory");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fnames[n] = strdup(file);
|
||||||
|
if(!fnames[n]) {
|
||||||
|
yyerror("cache_string(): out of memory");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return fnames[n++];
|
||||||
|
}
|
||||||
|
|
10
src/config.h
10
src/config.h
|
@ -25,6 +25,10 @@
|
||||||
|
|
||||||
#include "libavrdude.h"
|
#include "libavrdude.h"
|
||||||
|
|
||||||
|
#if defined(WIN32) || defined(_MSC_VER) || defined(__MINGW32__)
|
||||||
|
#define realpath(N,R) _fullpath((R), (N), PATH_MAX)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#define MAX_STR_CONST 1024
|
#define MAX_STR_CONST 1024
|
||||||
|
|
||||||
|
@ -50,8 +54,8 @@ extern FILE * yyin;
|
||||||
extern PROGRAMMER * current_prog;
|
extern PROGRAMMER * current_prog;
|
||||||
extern AVRPART * current_part;
|
extern AVRPART * current_part;
|
||||||
extern AVRMEM * current_mem;
|
extern AVRMEM * current_mem;
|
||||||
extern int lineno;
|
extern int cfg_lineno;
|
||||||
extern const char * infile;
|
extern char * cfg_infile;
|
||||||
extern LISTID string_list;
|
extern LISTID string_list;
|
||||||
extern LISTID number_list;
|
extern LISTID number_list;
|
||||||
extern bool is_alias; // current entry is alias
|
extern bool is_alias; // current entry is alias
|
||||||
|
@ -97,6 +101,8 @@ void pyytext(void);
|
||||||
|
|
||||||
char * dup_string(const char * str);
|
char * dup_string(const char * str);
|
||||||
|
|
||||||
|
char * cache_string(const char * file);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -288,10 +288,10 @@ prog_def :
|
||||||
existing_prog = locate_programmer(programmers, id);
|
existing_prog = locate_programmer(programmers, id);
|
||||||
if (existing_prog) {
|
if (existing_prog) {
|
||||||
{ /* temporarily set lineno to lineno of programmer start */
|
{ /* temporarily set lineno to lineno of programmer start */
|
||||||
int temp = lineno; lineno = current_prog->lineno;
|
int temp = cfg_lineno; cfg_lineno = current_prog->lineno;
|
||||||
yywarning("programmer %s overwrites previous definition %s:%d.",
|
yywarning("programmer %s overwrites previous definition %s:%d.",
|
||||||
id, existing_prog->config_file, existing_prog->lineno);
|
id, existing_prog->config_file, existing_prog->lineno);
|
||||||
lineno = temp;
|
cfg_lineno = temp;
|
||||||
}
|
}
|
||||||
lrmv_d(programmers, existing_prog);
|
lrmv_d(programmers, existing_prog);
|
||||||
pgm_free(existing_prog);
|
pgm_free(existing_prog);
|
||||||
|
@ -311,8 +311,8 @@ prog_decl :
|
||||||
yyerror("could not create pgm instance");
|
yyerror("could not create pgm instance");
|
||||||
YYABORT;
|
YYABORT;
|
||||||
}
|
}
|
||||||
strcpy(current_prog->config_file, infile);
|
current_prog->config_file = cache_string(cfg_infile);
|
||||||
current_prog->lineno = lineno;
|
current_prog->lineno = cfg_lineno;
|
||||||
}
|
}
|
||||||
|
|
|
|
||||||
K_PROGRAMMER K_PARENT TKN_STRING
|
K_PROGRAMMER K_PARENT TKN_STRING
|
||||||
|
@ -329,8 +329,8 @@ prog_decl :
|
||||||
free_token($3);
|
free_token($3);
|
||||||
YYABORT;
|
YYABORT;
|
||||||
}
|
}
|
||||||
strcpy(current_prog->config_file, infile);
|
current_prog->config_file = cache_string(cfg_infile);
|
||||||
current_prog->lineno = lineno;
|
current_prog->lineno = cfg_lineno;
|
||||||
free_token($3);
|
free_token($3);
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
@ -380,11 +380,11 @@ part_def :
|
||||||
existing_part = locate_part(part_list, current_part->id);
|
existing_part = locate_part(part_list, current_part->id);
|
||||||
if (existing_part) {
|
if (existing_part) {
|
||||||
{ /* temporarily set lineno to lineno of part start */
|
{ /* temporarily set lineno to lineno of part start */
|
||||||
int temp = lineno; lineno = current_part->lineno;
|
int temp = cfg_lineno; cfg_lineno = current_part->lineno;
|
||||||
yywarning("part %s overwrites previous definition %s:%d.",
|
yywarning("part %s overwrites previous definition %s:%d.",
|
||||||
current_part->id,
|
current_part->id,
|
||||||
existing_part->config_file, existing_part->lineno);
|
existing_part->config_file, existing_part->lineno);
|
||||||
lineno = temp;
|
cfg_lineno = temp;
|
||||||
}
|
}
|
||||||
lrmv_d(part_list, existing_part);
|
lrmv_d(part_list, existing_part);
|
||||||
avr_free_part(existing_part);
|
avr_free_part(existing_part);
|
||||||
|
@ -402,8 +402,8 @@ part_decl :
|
||||||
yyerror("could not create part instance");
|
yyerror("could not create part instance");
|
||||||
YYABORT;
|
YYABORT;
|
||||||
}
|
}
|
||||||
strcpy(current_part->config_file, infile);
|
current_part->config_file = cache_string(cfg_infile);
|
||||||
current_part->lineno = lineno;
|
current_part->lineno = cfg_lineno;
|
||||||
} |
|
} |
|
||||||
K_PART K_PARENT TKN_STRING
|
K_PART K_PARENT TKN_STRING
|
||||||
{
|
{
|
||||||
|
@ -420,8 +420,8 @@ part_decl :
|
||||||
free_token($3);
|
free_token($3);
|
||||||
YYABORT;
|
YYABORT;
|
||||||
}
|
}
|
||||||
strcpy(current_part->config_file, infile);
|
current_part->config_file = cache_string(cfg_infile);
|
||||||
current_part->lineno = lineno;
|
current_part->lineno = cfg_lineno;
|
||||||
|
|
||||||
free_token($3);
|
free_token($3);
|
||||||
}
|
}
|
||||||
|
@ -1362,7 +1362,7 @@ mem_spec :
|
||||||
if (ps <= 0)
|
if (ps <= 0)
|
||||||
avrdude_message(MSG_INFO,
|
avrdude_message(MSG_INFO,
|
||||||
"%s, line %d: invalid page size %d, ignored\n",
|
"%s, line %d: invalid page size %d, ignored\n",
|
||||||
infile, lineno, ps);
|
cfg_infile, cfg_lineno, ps);
|
||||||
else
|
else
|
||||||
current_mem->page_size = ps;
|
current_mem->page_size = ps;
|
||||||
free_token($3);
|
free_token($3);
|
||||||
|
|
|
@ -73,19 +73,19 @@ SIGN [+-]
|
||||||
# { /* The following eats '#' style comments to end of line */
|
# { /* The following eats '#' style comments to end of line */
|
||||||
BEGIN(comment); }
|
BEGIN(comment); }
|
||||||
<comment>[^\n] { /* eat comments */ }
|
<comment>[^\n] { /* eat comments */ }
|
||||||
<comment>\n { lineno++; BEGIN(INITIAL); }
|
<comment>\n { cfg_lineno++; BEGIN(INITIAL); }
|
||||||
|
|
||||||
|
|
||||||
"/*" { /* The following eats multiline C style comments */
|
"/*" { /* The following eats multiline C style comments */
|
||||||
int c;
|
int c;
|
||||||
int comment_start;
|
int comment_start;
|
||||||
|
|
||||||
comment_start = lineno;
|
comment_start = cfg_lineno;
|
||||||
while (1) {
|
while (1) {
|
||||||
while (((c = input()) != '*') && (c != EOF)) {
|
while (((c = input()) != '*') && (c != EOF)) {
|
||||||
/* eat up text of comment, but keep counting lines */
|
/* eat up text of comment, but keep counting lines */
|
||||||
if (c == '\n')
|
if (c == '\n')
|
||||||
lineno++;
|
cfg_lineno++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c == '*') {
|
if (c == '*') {
|
||||||
|
@ -256,7 +256,7 @@ yes { yylval=new_token(K_YES); return K_YES; }
|
||||||
"(" { yylval = NULL; pyytext(); return TKN_LEFT_PAREN; }
|
"(" { yylval = NULL; pyytext(); return TKN_LEFT_PAREN; }
|
||||||
")" { yylval = NULL; pyytext(); return TKN_RIGHT_PAREN; }
|
")" { yylval = NULL; pyytext(); return TKN_RIGHT_PAREN; }
|
||||||
|
|
||||||
"\n" { lineno++; }
|
"\n" { cfg_lineno++; }
|
||||||
[ \r\t]+ { /* ignore whitespace */ }
|
[ \r\t]+ { /* ignore whitespace */ }
|
||||||
|
|
||||||
c: { yyerror("possible old-style config file entry\n"
|
c: { yyerror("possible old-style config file entry\n"
|
||||||
|
|
|
@ -277,7 +277,7 @@ typedef struct avrpart {
|
||||||
|
|
||||||
LISTID mem; /* avr memory definitions */
|
LISTID mem; /* avr memory definitions */
|
||||||
LISTID mem_alias; /* memory alias definitions */
|
LISTID mem_alias; /* memory alias definitions */
|
||||||
char config_file[PATH_MAX]; /* config file where defined */
|
char *config_file; /* config file where defined */
|
||||||
int lineno; /* config file line number */
|
int lineno; /* config file line number */
|
||||||
} AVRPART;
|
} AVRPART;
|
||||||
|
|
||||||
|
@ -726,7 +726,7 @@ typedef struct programmer_t {
|
||||||
int (*parseextparams) (struct programmer_t * pgm, LISTID xparams);
|
int (*parseextparams) (struct programmer_t * pgm, LISTID xparams);
|
||||||
void (*setup) (struct programmer_t * pgm);
|
void (*setup) (struct programmer_t * pgm);
|
||||||
void (*teardown) (struct programmer_t * pgm);
|
void (*teardown) (struct programmer_t * pgm);
|
||||||
char config_file[PATH_MAX]; /* config file where defined */
|
char *config_file; /* config file where defined */
|
||||||
int lineno; /* config file line number */
|
int lineno; /* config file line number */
|
||||||
void *cookie; /* for private use by the programmer */
|
void *cookie; /* for private use by the programmer */
|
||||||
char flag; /* for private use of the programmer */
|
char flag; /* for private use of the programmer */
|
||||||
|
|
|
@ -79,7 +79,7 @@ PROGRAMMER * pgm_new(void)
|
||||||
pgm->usbpid = lcreat(NULL, 0);
|
pgm->usbpid = lcreat(NULL, 0);
|
||||||
pgm->desc[0] = 0;
|
pgm->desc[0] = 0;
|
||||||
pgm->type[0] = 0;
|
pgm->type[0] = 0;
|
||||||
pgm->config_file[0] = 0;
|
pgm->config_file = NULL;
|
||||||
pgm->lineno = 0;
|
pgm->lineno = 0;
|
||||||
pgm->baudrate = 0;
|
pgm->baudrate = 0;
|
||||||
pgm->initpgm = NULL;
|
pgm->initpgm = NULL;
|
||||||
|
|
Loading…
Reference in New Issue