From 20863da90f1ca4923013f03733acbd8e43d428b2 Mon Sep 17 00:00:00 2001 From: musil Date: Wed, 4 Mar 2009 14:01:11 +0000 Subject: repare some warnings, changed iem_pbank_csv, made it o.s. independent, no comma separation svn path=/trunk/externals/iemlib/; revision=10832 --- iemlib2/src/bpe.c | 16 +-- iemlib2/src/iem_pbank_csv.c | 246 +++++++++++++++++++++++--------------------- iemlib2/src/iem_sel_any.c | 8 +- 3 files changed, 139 insertions(+), 131 deletions(-) (limited to 'iemlib2') diff --git a/iemlib2/src/bpe.c b/iemlib2/src/bpe.c index a1311cc..00ef577 100644 --- a/iemlib2/src/bpe.c +++ b/iemlib2/src/bpe.c @@ -34,7 +34,7 @@ static void bpe_stop(t_bpe *x) static void bpe_tick(t_bpe *x) { t_atom *vec = x->x_beg; - t_float val, time; + t_float val, ftime; if(x->x_curindex >= x->x_curnum) { @@ -45,27 +45,27 @@ static void bpe_tick(t_bpe *x) { vec += x->x_curindex; val = atom_getfloat(vec++); - time = atom_getfloat(vec); - outlet_float(x->x_out_time, time); + ftime = atom_getfloat(vec); + outlet_float(x->x_out_time, ftime); outlet_float(x->x_out_val, val); x->x_curindex += 2; - clock_delay(x->x_clock, time); + clock_delay(x->x_clock, ftime); } } static void bpe_bang(t_bpe *x) { t_atom *vec = x->x_beg; - t_float val, time; + t_float val, ftime; if(x->x_curnum) { x->x_curindex = 2; val = atom_getfloat(vec++); - time = atom_getfloat(vec); - outlet_float(x->x_out_time, time); + ftime = atom_getfloat(vec); + outlet_float(x->x_out_time, ftime); outlet_float(x->x_out_val, val); - clock_delay(x->x_clock, time); + clock_delay(x->x_clock, ftime); } } diff --git a/iemlib2/src/iem_pbank_csv.c b/iemlib2/src/iem_pbank_csv.c index d5f834a..d67f365 100644 --- a/iemlib2/src/iem_pbank_csv.c +++ b/iemlib2/src/iem_pbank_csv.c @@ -1,7 +1,7 @@ /* For information on usage and redistribution, and for a DISCLAIMER OF ALL * WARRANTIES, see the file, "LICENSE.txt," in this distribution. -iemlib2 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2006 */ +iemlib2 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2009 */ #include "m_pd.h" @@ -18,26 +18,24 @@ iemlib2 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2006 /* read and write method needs 2 symbols, 1. symbol is a filename, -2. symbol is a 3 character descriptor +2. symbol is a 2 character descriptor 1.char: 'b'...for blank as ITEM_SEPARATOR (" ") - 1.char: 'c'...for comma as ITEM_SEPARATOR (",") 1.char: 's'...for semicolon as ITEM_SEPARATOR (";") 1.char: 't'...for tabulator as ITEM_SEPARATOR (" " = 0x09) 2.char: 'b'...for blank,return as END_OF_LINE (" \n") - 2.char: 'r'...for return-only as END_OF_LINE ("\n") 2.char: 's'...for semicolon,return as END_OF_LINE (";\n") - - 3.char: 'l'...for linux RETURN (0x0A) - 3.char: 'w'...for windows RETURN (0x0D,0x0A) - 3.char: 'm'...for mac RETURN (0x0D) - - + 2.char: 't'...for tabulator,return as END_OF_LINE (" \n") + 2.char: 'r'...for return-only as END_OF_LINE ("\n") change: recall + offset + number */ +#define IEM_PBANK_ITEM_SEPARATOR 0 +#define IEM_PBANK_END_OF_LINE 1 +#define IEM_PBANK_FORMAT_SIZE 2 + static t_class *iem_pbank_csv_class; typedef struct _iem_pbank_csv @@ -56,25 +54,25 @@ typedef struct _iem_pbank_csv static void iem_pbank_csv_write(t_iem_pbank_csv *x, t_symbol *filename, t_symbol *format) { - char completefilename[400], eol[4], sep, mode[4], string[200]; + char completefilename[400], eol[8], sep, mode[4], string[200]; int size, p, l, nrl=x->x_nr_line, nrp=x->x_nr_para; - int state, max=nrl*nrp, org_size, eollen; + int state, max=nrl*nrp, org_size, eol_offset; FILE *fh; t_atom *ap=x->x_atbegmem; char formattext[100]; - strcpy(mode, "bsl"); /*blank-separator, semicolon-return-eol, linux_return*/ + strcpy(mode, "br"); // default: blank-separator, return-eol, return depends on operating system sep = ' '; - eol[0] = ';'; - eol[1] = 0x0a; - eol[2] = 0; - if(filename->s_name[0] == '/') + sprintf(eol, ";\n"); + eol_offset = 1; + + if(filename->s_name[0] == '/')// linux, OSX { strcpy(completefilename, filename->s_name); } else if(((filename->s_name[0] >= 'A')&&(filename->s_name[0] <= 'Z')|| (filename->s_name[0] >= 'a')&&(filename->s_name[0] <= 'z'))&& - (filename->s_name[1] == ':')&&(filename->s_name[2] == '/')) + (filename->s_name[1] == ':')&&(filename->s_name[2] == '/'))// windows, backslash becomes slash in pd { strcpy(completefilename, filename->s_name); } @@ -92,78 +90,65 @@ static void iem_pbank_csv_write(t_iem_pbank_csv *x, t_symbol *filename, t_symbol } else { - if(strlen(format->s_name) >= 3) + if(strlen(format->s_name) >= IEM_PBANK_FORMAT_SIZE) { - for(p=0; p<3; p++) + for(p=0; ps_name[p] >= 'A')&&(format->s_name[p] <= 'Z')) format->s_name[p] += 'a' - 'A'; } - if((format->s_name[0] == 'b')||(format->s_name[0] == 'c')||(format->s_name[0] == 's')||(format->s_name[0] == 't')) - mode[0] = format->s_name[0]; - if((format->s_name[1] == 'b')||(format->s_name[1] == 'r')||(format->s_name[1] == 's')) - mode[1] = format->s_name[1]; - if((format->s_name[2] == 'l')||(format->s_name[2] == 'w')||(format->s_name[2] == 'm')) - mode[2] = format->s_name[2]; + + if((format->s_name[IEM_PBANK_ITEM_SEPARATOR] == 'b') + ||(format->s_name[IEM_PBANK_ITEM_SEPARATOR] == 's') + ||(format->s_name[IEM_PBANK_ITEM_SEPARATOR] == 't')) + mode[IEM_PBANK_ITEM_SEPARATOR] = format->s_name[IEM_PBANK_ITEM_SEPARATOR]; + + if((format->s_name[IEM_PBANK_END_OF_LINE] == 'b') + ||(format->s_name[IEM_PBANK_END_OF_LINE] == 's') + ||(format->s_name[IEM_PBANK_END_OF_LINE] == 't') + ||(format->s_name[IEM_PBANK_END_OF_LINE] == 'r')) + mode[IEM_PBANK_END_OF_LINE] = format->s_name[IEM_PBANK_END_OF_LINE]; } else post("iem_pbank_csv_write: use default format %s !!\n", mode); - if(mode[0] == 'b') + if(mode[IEM_PBANK_ITEM_SEPARATOR] == 'b') { sep = ' '; strcpy(formattext, "item-separator = BLANK; "); } - else if(mode[0] == 'c') - { - sep = ','; - strcpy(formattext, "item-separator = COMMA; "); - } - else if(mode[0] == 's') + else if(mode[IEM_PBANK_ITEM_SEPARATOR] == 's') { sep = ';'; strcpy(formattext, "item-separator = SEMICOLON; "); } - else if(mode[0] == 't') + else if(mode[IEM_PBANK_ITEM_SEPARATOR] == 't') { sep = 0x09; strcpy(formattext, "item-separator = TABULATOR; "); } - eollen = 1; - if(mode[1] == 'b') + eol_offset = 0; + if(mode[IEM_PBANK_END_OF_LINE] == 'b') { eol[0] = ' '; - strcat(formattext, "end_of_line_terminator = BLANK-RETURN in "); + strcat(formattext, "end_of_line_terminator = BLANK-RETURN."); } - else if(mode[1] == 'r') - { - eollen = 0; - strcat(formattext, "end_of_line_terminator = RETURN in "); - } - else if(mode[1] == 's') + else if(mode[IEM_PBANK_END_OF_LINE] == 's') { eol[0] = ';'; - strcat(formattext, "end_of_line_terminator = SEMICOLON-RETURN in "); + strcat(formattext, "end_of_line_terminator = SEMICOLON-RETURN."); } - - if(mode[2] == 'l') + else if(mode[IEM_PBANK_END_OF_LINE] == 't') { - eol[eollen++] = 0x0a; - strcat(formattext, "LINUX-Format."); + eol[0] = 0x09; + strcat(formattext, "end_of_line_terminator = TABULATOR-RETURN."); } - else if(mode[2] == 'w') + else if(mode[IEM_PBANK_END_OF_LINE] == 'r') { - eol[eollen++] = 0x0d; - eol[eollen++] = 0x0a; - strcat(formattext, "WINDOWS-Format."); + eol_offset = 1; + strcat(formattext, "end_of_line_terminator = RETURN."); } - else if(mode[2] == 'm') - { - eol[eollen++] = 0x0d; - strcat(formattext, "MACINTOSH-Format."); - } - eol[eollen] = 0; ap = x->x_atbegmem; for(l=0; la_w.w_float, eol); + fprintf(fh, "%g%s", ap->a_w.w_float, eol+eol_offset); else if(IS_A_SYMBOL(ap, 0)) - fprintf(fh, "%s%s", ap->a_w.w_symbol->s_name, eol); + fprintf(fh, "%s%s", ap->a_w.w_symbol->s_name, eol+eol_offset); ap++; } fclose(fh); @@ -345,18 +330,19 @@ char c='0'; static void iem_pbank_csv_read(t_iem_pbank_csv *x, t_symbol *filename, t_symbol *format) { - char completefilename[400], eol[4], sep, mode[4], *txbuf1, *txbuf2, *txvec_src, *txvec_dst; + char completefilename[400], eol[8], sep, mode[4], *txbuf1, *txbuf2, *txvec_src, *txvec_src2, *txvec_dst; int size, p, l, i, j, nrl=x->x_nr_line, nrp=x->x_nr_para, atlen=0; - int txlen, txalloc, hat_alloc, max, eollen; + int txlen, txalloc, txalloc1, hat_alloc, max, eol_offset, eol_length; FILE *fh; t_atom *ap, *hap, *at; char formattext[100]; - strcpy(mode, "bsl"); /*blank-separator, semicolon-return-eol, linux_return*/ + strcpy(mode, "br"); // blank-separator, return-eol sep = ' '; - eol[0] = ';'; - eol[1] = 0x0a; - eol[2] = 0; + sprintf(eol, ";\n"); + eol_offset = 1; + eol_length = strlen(eol+eol_offset); + if(filename->s_name[0] == '/')/*make complete path + filename*/ { strcpy(completefilename, filename->s_name); @@ -381,77 +367,64 @@ static void iem_pbank_csv_read(t_iem_pbank_csv *x, t_symbol *filename, t_symbol } else { - if(strlen(format->s_name) >= 3) + if(strlen(format->s_name) >= IEM_PBANK_FORMAT_SIZE) { - for(p=0; p<3; p++) + for(p=0; ps_name[p] >= 'A')&&(format->s_name[p] <= 'Z')) format->s_name[p] += 'a' - 'A'; } - if((format->s_name[0] == 'b')||(format->s_name[0] == 'c')||(format->s_name[0] == 's')||(format->s_name[0] == 't')) - mode[0] = format->s_name[0]; - if((format->s_name[1] == 'b')||(format->s_name[1] == 'r')||(format->s_name[1] == 's')) - mode[1] = format->s_name[1]; - if((format->s_name[2] == 'l')||(format->s_name[2] == 'w')||(format->s_name[2] == 'm')) - mode[2] = format->s_name[2]; + if((format->s_name[IEM_PBANK_ITEM_SEPARATOR] == 'b') + ||(format->s_name[IEM_PBANK_ITEM_SEPARATOR] == 's') + ||(format->s_name[IEM_PBANK_ITEM_SEPARATOR] == 't')) + mode[IEM_PBANK_ITEM_SEPARATOR] = format->s_name[IEM_PBANK_ITEM_SEPARATOR]; + + if((format->s_name[IEM_PBANK_END_OF_LINE] == 'b') + ||(format->s_name[IEM_PBANK_END_OF_LINE] == 's') + ||(format->s_name[IEM_PBANK_END_OF_LINE] == 't') + ||(format->s_name[IEM_PBANK_END_OF_LINE] == 'r')) + mode[IEM_PBANK_END_OF_LINE] = format->s_name[IEM_PBANK_END_OF_LINE]; } else post("iem_pbank_csv_read: use default format %s !!\n", mode); - if(mode[0] == 'b') + if(mode[IEM_PBANK_ITEM_SEPARATOR] == 'b') { sep = ' '; strcpy(formattext, "item-separator = BLANK; "); } - else if(mode[0] == 'c') - { - sep = ','; - strcpy(formattext, "item-separator = COMMA; "); - } - else if(mode[0] == 's') + else if(mode[IEM_PBANK_ITEM_SEPARATOR] == 's') { sep = ';'; strcpy(formattext, "item-separator = SEMICOLON; "); } - else if(mode[0] == 't') + else if(mode[IEM_PBANK_ITEM_SEPARATOR] == 't') { sep = 0x09; strcpy(formattext, "item-separator = TABULATOR; "); } - eollen = 1; - if(mode[1] == 'b') + eol_offset = 0; + if(mode[IEM_PBANK_END_OF_LINE] == 'b') { eol[0] = ' '; - strcat(formattext, "end_of_line_terminator = BLANK-RETURN in "); - } - else if(mode[1] == 'r') - { - eollen = 0; - strcat(formattext, "end_of_line_terminator = RETURN in "); + strcat(formattext, "end_of_line_terminator = BLANK-RETURN."); } - else if(mode[1] == 's') + else if(mode[IEM_PBANK_END_OF_LINE] == 's') { eol[0] = ';'; - strcat(formattext, "end_of_line_terminator = SEMICOLON-RETURN in "); + strcat(formattext, "end_of_line_terminator = SEMICOLON-RETURN."); } - - if(mode[2] == 'l') + else if(mode[IEM_PBANK_END_OF_LINE] == 't') { - eol[eollen++] = 0x0a; - strcat(formattext, "LINUX-Format."); + eol[0] = 0x09; + strcat(formattext, "end_of_line_terminator = TABULATOR-RETURN."); } - else if(mode[2] == 'w') + else if(mode[IEM_PBANK_END_OF_LINE] == 'r') { - eol[eollen++] = 0x0d; - eol[eollen++] = 0x0a; - strcat(formattext, "WINDOWS-Format."); + eol_offset = 1; + strcat(formattext, "end_of_line_terminator = RETURN."); } - else if(mode[2] == 'm') - { - eol[eollen++] = 0x0d; - strcat(formattext, "MACINTOSH-Format."); - } - eol[eollen] = 0; + eol_length = strlen(eol+eol_offset); fseek(fh, 0, SEEK_END); txalloc = ftell(fh); @@ -461,38 +434,79 @@ static void iem_pbank_csv_read(t_iem_pbank_csv *x, t_symbol *filename, t_symbol fread(txbuf1, sizeof(char), txalloc, fh); fclose(fh); + // windows return + txvec_src = txbuf1; + txvec_src2 = txbuf1 + 1; + txalloc1 = txalloc - 1; + for(l=0; l= ' ') && (*txvec_src <= '~')) { - *txvec_dst++ = *txvec_src++; + *txvec_dst++ = *txvec_src++;// copy the same char p++; } + else + txvec_src++;// drop anything else } txlen = p; + txvec_src = txbuf2; txvec_dst = txbuf1; p = 0; for(l=0; lx_any, x->x_max_ac * sizeof(t_symbol *)); } -static void *iem_sel_any_new(t_floatarg fmax) +static void *iem_sel_any_new(t_floatarg ffmax) { t_iem_sel_any *x = (t_iem_sel_any *)pd_new(iem_sel_any_class); int i; t_symbol *default_sym=gensym("no_entry"); - if(fmax <= 0.0) - fmax = 10.0; - x->x_max_ac = (int)fmax; + if(ffmax <= 0.0) + ffmax = 10.0; + x->x_max_ac = (int)ffmax; x->x_any = (t_symbol **)getbytes(x->x_max_ac * sizeof(t_symbol *)); x->x_ac = 0; x->x_set = gensym("set"); -- cgit v1.2.1