[PD-cvs] externals/zexy/reference freadln-help.pd, NONE, 1.1 fwriteln-help.pd, NONE, 1.1 0.INTRO.txt, 1.1, 1.2

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Mon May 21 14:15:11 CEST 2007


Update of /cvsroot/pure-data/externals/zexy/reference
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26896

Modified Files:
	0.INTRO.txt 
Added Files:
	freadln-help.pd fwriteln-help.pd 
Log Message:
added help-patches for fz's [freadln]/[fwriteln]


--- NEW FILE: fwriteln-help.pd ---
#N canvas 94 78 859 363 10;
#X text 72 260 see also:;
#X obj 130 281 textfile;
#X text 482 150 output one line as a list and move to the next;
#X text 618 7 part of zexy;
#X text 15 95 features are :;
#X text 58 199 no random access!;
#X text 9 183 drawbacks are :;
#X msg 433 248 close;
#X text 578 117 open a file in 'cr' mode;
#X obj 73 9 fwriteln;
#X text 127 9 write text-files line-by-line;
#X text 18 57 The [fwriteln] object is a simplified version if [textfile].
It only supports writing files.;
#X text 60 108 the file is not cached in the object's buffer. instead
the current line will be streamed directly into the file. this allows
to write _large_ files (which need not fit into the main memory at
all);
#X obj 130 262 freadln;
#X obj 406 271 fwriteln;
#X msg 441 172 1 2 3.666;
#X msg 441 194 foo bar;
#X msg 443 216 list is a list is a list;
#X msg 435 116 open /tmp/test.txt cr;
#X text 489 249 close the file (ensure that it gets written);
#X connect 7 0 14 0;
#X connect 15 0 14 0;
#X connect 16 0 14 0;
#X connect 17 0 14 0;
#X connect 18 0 14 0;

--- NEW FILE: freadln-help.pd ---
#N canvas 94 78 859 363 10;
#X obj 443 239 print done;
#X text 72 260 see also:;
#X msg 433 149 bang;
#X text 334 293 this outlet gets the lines in sequence.;
#X obj 130 281 textfile;
#X text 482 150 output one line as a list and move to the next;
#X text 508 222 This outlet gets a bang when you hit the end of the
sequence \; it will also get the current position when using "when"
;
#X text 618 7 part of zexy;
#X obj 406 267 print data;
#X obj 73 9 freadln;
#X text 127 9 read text-files line-by-line;
#X text 18 57 The [freadln] object is a simplified version if [textfile].
It only supports reading files.;
#X text 15 95 features are :;
#X text 60 108 the file is not read into the objects buffer. instead
only the current line will be streamed from the file. this allows to
read _large_ files (which need not fit into the main memory at all)
;
#X text 58 199 no random access!;
#X text 9 183 drawbacks are :;
#X obj 130 262 fwriteln;
#X msg 433 178 close;
#X text 548 117 open a file in 'cr' mode;
#X obj 406 201 freadln;
#X msg 435 116 open test.mtx cr;
#X connect 2 0 19 0;
#X connect 17 0 19 0;
#X connect 19 0 8 0;
#X connect 19 1 0 0;
#X connect 20 0 19 0;

Index: 0.INTRO.txt
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/reference/0.INTRO.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** 0.INTRO.txt	14 Mar 2007 09:08:54 -0000	1.1
--- 0.INTRO.txt	21 May 2007 12:15:07 -0000	1.2
***************
*** 74,77 ****
--- 74,79 ----
  index		map symbols to indices
  msgfile		a powerful "textfile" derivative
+ freadln		a simplified "textfile" derivative for reading line-wise
+ fwriteln	a simplified "textfile" derivative for writing line-wise
  demultiplex	demultiplex the input to a specified outlet
  lpt		write to the (parallel) port





More information about the Pd-cvs mailing list