Hashes help in Perl


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Hashes help in Perl
# 1  
Old 03-25-2009
Hashes help in Perl

Hi,

I am stuck at this problem where part of my code would store all the websites that has been accessed by a user. I pull these values from a log file. I want to create a HASH of HASHES ? (Please correct me if this is not the right approach) where I would store all the hits to website with time and the page that was accessed. For example:

log file could look something like:

http://www.yahoo.com/blah.html : 12:54
http://www.yahoo.com/blah2.html : 12:54
http://www.yahoo.com/blah.html : 12:55
http://www.google.com/one.html : 12:55
http://www.google.com/two.html : 12:55
http://www.google.com/three.html : 12:56
http://www.google.com/two.html : 12:57


* Notice that there is nothing really UNIQUE that I could use as a KEY ? My question is : How should I store this data in a HASH where I can see all the pages that were accessed by a user and their respected times?

Any help is highly appreciated.
# 2  
Old 03-26-2009
I guess you would use the top level domain name as the top level hash keys and the individual pages would be sub hashes and each sub hash would have even more sub hashes, or arrays, to hold the information you want. Are you stuck on writing actual code? What have you tried so far? What does the real data look like?
# 3  
Old 03-26-2009
Thx Kevin but I can't seem to picture how to write the structure , populate it and then output it.

So this part of code is going to be part of bigger code , where what I am ultimately trying to do is show all the SITES a person visited outputted to a webpage with timings etc but in a TREE sort of fashion, something like:

Google
|______ search.html : time
|______ search2.html : time
|______ search3.html : time

So in my bigger code , i am trying to temporarily store these values in ARRAY and eventually would spit it out on a webpage.

I am stuck at writing a structure/code for this which will give me the desired result. First basically put these value in the best suited structure and then output the values of the structure.

The real data actually looks like:
The log file has these:

www.google.com/test1.asp:11:27
www.google.com/test2.asp:11:27
www.google.com/test2.asp:11:27
www.google.com/test2.asp:11:28

Thanks in advance.
# 4  
Old 03-26-2009
I generally do not write any code for someone that has demonstrated no effort to first try and solve, or to at least start, there own code. But here something that is meant only as an example of how to create a hash of hash of arrays from your log file:

Code:
my %hash;
while(<DATA>){
   chomp;
   my ($domain,$page,$h,$m) = split(/[\/:]/);
   push @{$hash{$domain}{$page}},"$h:$m";
}
foreach my $domain (keys %hash) {
   print "$domain\n";
   foreach my $page (keys %{$hash{$domain}}){
      print "\t$page @{$hash{$domain}{$page}}\n";
   }
}
__DATA__
www.google.com/test1.asp:11:27
www.google.com/test2.asp:11:27
www.google.com/test2.asp:11:27
www.google.com/test2.asp:11:28

There are any number of data strucutes you could try and use, which one you eventually use depends on your programming requirements. A more complete hash of hashes/arrays might be better suited for the purpose but I like to keep data structures as simple as possible for the task at hand. If you know you will need to scale up the program in the future you could add any fields to the data structure now that will be used later.
# 5  
Old 03-26-2009
Kevin,

This is great help. I really really appreciate you going out of way to help me design better structure in my prog. I am already working on DHTML aspect of this tree view.

Once again. Big Thanks.

-Dabheeruz
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl hash of hashes anonymous array

Hello experts. I'm having problems with a snippet of code. I was hoping to get help/advice to correct. A file that this script parses has changed to the point where I can no longer use a scalar, it looks as though I need to create an array for a hash of hashes below. The first output of... (1 Reply)
Discussion started by: timj123
1 Replies

2. Shell Programming and Scripting

Perl : array of hashes help

Hi, I have array of hashes and each key has array like below. @array1 = ( { 'url' => , 'bill' => }, { 'url' => , 'bill' => }, { 'url' => , ... (0 Replies)
Discussion started by: ragilla
0 Replies

3. Shell Programming and Scripting

perl: dereferencing a hash of hashes

Hi there, I am trying to dereference my hash of hashes but post dereferencing, it seems to lose its structure I am using Data::dumper to help me anaylise. This is the code im using to build the HoH, (data comes from a file). I have also performed a Dumper on the data structure before and after... (1 Reply)
Discussion started by: rethink
1 Replies

4. Shell Programming and Scripting

PERL - another quick hash of hashes question

Hi, sorry, two hash related questions in one day .. but this has got me a bit stuck. I have a mysql database table that kind of looks like this, the table is called "view1" and a snippet of that table (SELECT'ing just rows with serial number 0629AN1200) is below serial nic_name ... (2 Replies)
Discussion started by: hcclnoodles
2 Replies

5. Shell Programming and Scripting

PERL - printing a hash of hashes to screen

Hi there I have a hash of hashes made up of the following data bge0|100|half|10.36.100.21 bge1|1000|full|10.36.100.22 bge2|1000|full|10.36.100.23 which when i turn into a hash, would look like this inside the system bge0 -> nic_speed -> 100 nic_duplex -> half ... (6 Replies)
Discussion started by: hcclnoodles
6 Replies

6. Shell Programming and Scripting

perl hash of hashes from database

hi there, I have some database output that looks like this SELECT nic_name,nic_duplex,nic_speed,nic_ip FROM network_table WHERE hostname = "server1" result is this (ive delimited with a pipe for ease of reading) bge0|full|1000|10.32.100.1 bge1|full|1000|11.12.101.7 ... (1 Reply)
Discussion started by: hcclnoodles
1 Replies

7. Shell Programming and Scripting

Perl Hashes, reading and hashing 2 files

So I have two files that I want to put together via hashes and am having a terrible time with syntax. For example: File1 A apple B banana C citrusFile2 A red B yellow C orangeWhat I want to enter on the command line is: program.pl File1 File2And have the result... (11 Replies)
Discussion started by: silkiechicken
11 Replies

8. Shell Programming and Scripting

perl hashes question

hi guys im running into a problem here this is my script #!/usr/bin/perl use CGI qw(:standard); $header = "MIME-Version: 1.0\n"; $header .= "Content-type: text/html\n"; $header .= "\n"; #get the point parameter from nhl.html $Team = param("points"); print "$header"; open(INFILE,... (1 Reply)
Discussion started by: lucho_1
1 Replies

9. Shell Programming and Scripting

How to declare hashes in KSH similar to Perl ?

Hi, Is it possible to delcare hashes in KSH the way we do it in Perl. Like I want to declare something like: fruits="Juicy" fruits="healthy" fruits="sour" echo fruits Ofcourse this piece of code does not work in KSH. Please let me know if there is a way of doing it in KSH. ... (2 Replies)
Discussion started by: tipsy
2 Replies

10. Shell Programming and Scripting

perl: hashes, whiles, and last

hello everyone, i am creating 2 hashes from 2 different files, then looking for the value of one in the value of the other to make a new file. for example: file1: DENV => Denver file2: H224-0A-12 => DENVER if Denver is found in DENVER (case insensitive), a new hash now contains H224-0A-12... (0 Replies)
Discussion started by: effigy
0 Replies
Login or Register to Ask a Question