about summary refs log blame commit diff
path: root/src/libstore/misc.cc
blob: 5f20ee27751346974d8da0a04b6af860c2e1cc2f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                   

 
                                                   
 




                                                                          


 
                                             
                                        




                                                     
                      
                                                    
        
                                                      


                                                  
                                                   
 
#include "build.hh"


Derivation derivationFromPath(const Path & drvPath)
{
    assertStorePath(drvPath);
    ensurePath(drvPath);
    ATerm t = ATreadFromNamedFile(drvPath.c_str());
    if (!t) throw Error(format("cannot read aterm from `%1%'") % drvPath);
    return parseDerivation(t);
}


void computeFSClosure(const Path & storePath,
    PathSet & paths, bool flipDirection)
{
    if (paths.find(storePath) != paths.end()) return;
    paths.insert(storePath);

    PathSet references;
    if (flipDirection)
        queryReferers(noTxn, storePath, references);
    else
        queryReferences(noTxn, storePath, references);

    for (PathSet::iterator i = references.begin();
         i != references.end(); ++i)
        computeFSClosure(*i, paths, flipDirection);
}