about summary refs log blame commit diff
path: root/src/nix-hash/nix-hash.cc
blob: 2cef7818e857135eadcb959b4d2a4c0ecfc5c40d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                    






                                                       



                      
                        
                      
    

                                            
     
                                        




                                                                                   
                                                   

                                                                          
            

                                                              
     




                              
#include <iostream>

#include "hash.hh"
#include "shared.hh"
#include "help.txt.hh"


void printHelp()
{
    cout << string((char *) helpText, sizeof helpText);
}


void run(Strings args)
{
    HashType ht = htMD5;
    bool flat = false;
    
    for (Strings::iterator i = args.begin();
         i != args.end(); i++)
    {
        if (*i == "--flat") flat = true;
        else if (*i == "--type") {
            ++i;
            if (i == args.end()) throw UsageError("`--type' requires an argument");
            if (*i == "md5") ht = htMD5;
            else if (*i == "sha1") ht = htSHA1;
            else if (*i == "sha256") ht = htSHA256;
            else throw UsageError(format("unknown hash type `%1%'") % *i);
        }
        else
            cout << format("%1%\n") % printHash(
                (flat ? hashFile(*i, ht) : hashPath(*i, ht)));
    }
}


string programId = "nix-hash";