roswell1329 has asked for the wisdom of the Perl Monks concerning the following question:
I need to recreate that hierarchy in a UNIX path structure. There are tools provided by the application to extract the hierarchy, but their information is very segmented. The 2 tools I have are: Folder info: will give me the folder id, name, and number of subfolders under it, like so:folder |--folder2 |--folder3 | |--folderX | |--folderY |-folder4
Folder/Folder info: will give me folder ID's for each sub-folder under each folder, like so:Folder 4464 - foldername_1. count subfolders 0. Folder 4465 - foldername_2. count subfolders 0. Folder 4466 - foldername_3. count subfolders 4. ...
Based on this data, I wrote a script that would first collect the folder ID's and names. For each folder ID, it would then build a UNIX path by searching for the folder's parent folder, and then the parent for that parent folder recursively back to the root folder as shown here:Folder 1298 - foldername_ten. subfolder 1299. subfolder 1300. Folder 1299 - foldername_eleven. No sub folders. Folder 1300 - foldername_twelve. No sub folders. Folder 1311 - foldername_thirteen. subfolder 1317. subfolder 1318. subfolder 1958.
The above code looked like it was working perfectly, but I saw lots of data was missing. I later discovered that there are a few folders that appear as children under multiple parent folders. My script can identify multiple parents for each node it's looking at, but it can only return 1 match. My question is, how can I account for the multiple paths, and how can I identify those multiple paths so I know to make each duplicate path a symlink to the original when I actually build the UNIX filesystem?# %folders has each folder ID as a key and the name as the value # @subfolders is the Folder/Folder data as shown above, line-for-l +ine foreach my $k (sort (keys (%folders))) { $folderpaths{$k} = &build_path($k,@subfolders); print "$k => $folderpaths{$k}\n"; } sub build_path($@) { my $folderid = shift @_; my @dumpff = @_; my $path = "$folderid"; my $parentid = ""; foreach my $line (@dumpff) { if ($line =~ /^Folder (\d{3,5})\s+\-\s+.*\./) { $parentid = $1; } elsif ($line =~ /\s+subfolder\s+$folderid\s+\-\s+.*\./) { $path = join('/', &build_path($parentid,@subfolders),$fold +erid); } } return $path; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Building a UNIX path from Irritating data
by GrandFather (Saint) on Nov 25, 2009 at 02:11 UTC | |
by roswell1329 (Acolyte) on Nov 26, 2009 at 00:42 UTC | |
by GrandFather (Saint) on Nov 26, 2009 at 01:23 UTC | |
Re: Building a UNIX path from Irritating data
by kyle (Abbot) on Nov 25, 2009 at 02:23 UTC | |
by roswell1329 (Acolyte) on Nov 25, 2009 at 22:50 UTC | |
by kyle (Abbot) on Nov 26, 2009 at 02:14 UTC | |
by roswell1329 (Acolyte) on Nov 29, 2009 at 23:22 UTC | |
by kyle (Abbot) on Nov 30, 2009 at 13:24 UTC | |
| |
Re: Building a UNIX path from Irritating data
by spx2 (Deacon) on Nov 25, 2009 at 09:02 UTC |