about summary refs log tree commit diff
path: root/src/nix-hash/nix-hash.cc
blob: af3dda4ad7b85026160f6650f5c79b3516a33e46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include "hash.hh"
#include "shared.hh"

#include <iostream>


using namespace nix;


void printHelp()
{
    showManPage("nix-hash");
}


void run(Strings args)
{
    HashType ht = htMD5;
    bool flat = false;
    bool base32 = false;
    bool truncate = false;
    enum { opHash, opTo32, opTo16 } op = opHash;

    Strings ss;

    for (Strings::iterator i = args.begin();
         i != args.end(); i++)
    {
        if (*i == "--flat") flat = true;
        else if (*i == "--base32") base32 = true;
        else if (*i == "--truncate") truncate = true;
        else if (*i == "--type") {
            ++i;
            if (i == args.end()) throw UsageError("`--type' requires an argument");
            ht = parseHashType(*i);
            if (ht == htUnknown)
                throw UsageError(format("unknown hash type `%1%'") % *i);
        }
        else if (*i == "--to-base16") op = opTo16;
        else if (*i == "--to-base32") op = opTo32;
        else ss.push_back(*i);
    }

    if (op == opHash) {
        foreach (Strings::iterator, i, ss) {
            Hash h = flat ? hashFile(ht, *i) : hashPath(ht, *i).first;
            if (truncate && h.hashSize > 20) h = compressHash(h, 20);
            std::cout << format("%1%\n") %
                (base32 ? printHash32(h) : printHash(h));
        }
    }

    else {
        foreach (Strings::iterator, i, ss) {
            Hash h = parseHash16or32(ht, *i);
            std::cout << format("%1%\n") %
                (op == opTo16 ? printHash(h) : printHash32(h));
        }
    }
}


string programId = "nix-hash";