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


                       
                                                   
 




                                                                          


 














                                                     

                                                


                     
                                                     
 
                                  
 


                                                       
 


                                                           
 


                                                           
 
                             
 



                                                                               
 






                                           
 
#include "normalise.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)
{
    if (paths.find(storePath) != paths.end()) return;
    paths.insert(storePath);

    PathSet references;
    queryReferences(storePath, references);

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


void storePathRequisites(const Path & storePath,
    bool includeOutputs, PathSet & paths)
{
    checkInterrupt();
    
    if (paths.find(storePath) != paths.end()) return;

    if (isDerivation(storePath)) {

        paths.insert(storePath);
        
        Derivation drv = derivationFromPath(storePath);

        for (PathSet::iterator i = drv.inputDrvs.begin();
             i != drv.inputDrvs.end(); ++i)
            storePathRequisites(*i, includeOutputs, paths);

        for (PathSet::iterator i = drv.inputSrcs.begin();
             i != drv.inputSrcs.end(); ++i)
            storePathRequisites(*i, includeOutputs, paths);

        if (includeOutputs) {

            for (DerivationOutputs::iterator i = drv.outputs.begin();
                 i != drv.outputs.end(); ++i)
                if (isValidPath(i->second.path))
                    storePathRequisites(i->second.path, includeOutputs, paths);

        }
        
    }

    else {
        computeFSClosure(storePath, paths);
    }
}