Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Keeping track of hundres of file handles 3

Status
Not open for further replies.

travs69

MIS
Dec 21, 2006
1,431
US
I need to parse through millions of lines of dataand parse them into smaller files. The original data is all mixed up and I might need to write to file A once or hundreds of times.

Instead of opening/closing every file handle I thought I'd open it up if needed, mark it in an hash to I know it's already open and close all of them when I'm done. The problem is I'm not doing something right or I wouldn't be posting :)


Code:
my %fileopen;
my @data= qw(1 2 3 4 5 6 7 8 9);

for my $data (@data) {
 if (! defined($fileopen{$data}){
  open($data, ">>$data.log");
 }
 print $data "$data\n";
}

for my $key (keys %data) {
 close($key);
}
Basically every line in my data has a number in it and I'd like to somehow associate that number to a filehandle.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
Maybe along the lines of...

Code:
my @handles = ();

open ($handles[0], "whatever-file.txt");
open ($handles[1], "whatever.txt");
open ($handles[2], "blah.txt");

Kirsle.net | My personal homepage
Code:
perl -e '$|=$i=1;print" oo\n<|>\n_|_";x:sleep$|;print"\b",$i++%2?"/":"_";goto x;'
 
Thanks.. I guess I was just over thinking the issue.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
That works for opening the handles.. but how do you print to those handles then?



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
perldoc -f print said:
Note that if you're storing FILEHANDLES in an array or other
expression, you will have to use a block returning its value
instead:

print { $files[$i] } "stuff\n";

Note also that you'll need to open them as ">>whatever.txt", per your original code...

Annihilannic.
 
Beat me to it, Annihilannic. I just found that perldoc and was about to post the same thing. :p

Kirsle.net | My personal homepage
Code:
perl -e '$|=$i=1;print" oo\n<|>\n_|_";x:sleep$|;print"\b",$i++%2?"/":"_";goto x;'
 
very cool :) thanks again guys, you won't believe how many filehandles the current code is opening/closing :)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
I went from processing one file a minute to one file every 10 secs with this update. Thanks guys!!

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top