about summary refs log blame commit diff
path: root/scripts/readmanifest.pm.in
blob: d5527bf3b32ac431de5dab59fe4747d0c36f002d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12




                         
                                





                                                        
                                                                              
                                       
                                    




                                
                  
               










                            
                                 
                              






                                        
 
                                                        
                                               

                                        
                                                  



                                                    
                                
             

                                               















                                                 
use strict;

sub processURL {
    my $manifest = shift;
    my $url = shift;
    my $storePaths2urls = shift;
    my $urls2hashes = shift;
    my $successors = shift;

    $url =~ s/\/$//;
    print "obtaining list of Nix archives at $url...\n";

    system("@curl@ --fail --silent --show-error --location --max-redirs 20 " .
           "'$url' > '$manifest'") == 0
           or die "curl failed: $?";
        
    open MANIFEST, "<$manifest";

    my $inside = 0;

    my $storePath;
    my $narurl;
    my $hash;
    my @preds;

    while (<MANIFEST>) {
        chomp;
        s/\#.*$//g;
        next if (/^$/);

        if (!$inside) {
            if (/^\{$/) { 
                $inside = 1;
                undef $storePath;
                undef $narurl;
                undef $hash;
                @preds = ();
	    }
            else { die "bad line: $_"; }
        } else {
            if (/^\}$/) {
                $inside = 0;

		$$storePaths2urls{$storePath} = $narurl;
		$$urls2hashes{$narurl} = $hash;

                foreach my $p (@preds) {
		    $$successors{$p} = $storePath;
                }

            }
            elsif (/^\s*StorePath:\s*(\/\S+)\s*$/) {
                $storePath = $1;
            }
            elsif (/^\s*NarURL:\s*(\S+)\s*$/) {
                $narurl = $1;
	    }
            elsif (/^\s*MD5:\s*(\S+)\s*$/) {
                $hash = $1;
            }
            elsif (/^\s*SuccOf:\s*(\/\S+)\s*$/) {
                push @preds, $1;
            }
            else { die "bad line: $_"; }
        }
    }

    close MANIFEST;
}


return 1;