about summary refs log blame commit diff
path: root/src/libexpr/get-drvs.hh
blob: 82fb8a3ac6a8a5d6386b13113c7d47d55c7adfed (plain) (tree)
1
2
3
4
5
6
7
8
            
 

                  


                 
 


               

              


                                           
        

                      




                              
                    
 
                                                           
 
                                                 


                         

                              
       
                                                      
 

                                                                          
 




                                   

                                                                                                          
 


                                                

                                                               

                                                      
 
      
                                                    
                                                                          
      
 


                                                      
 

                                        


  


                                                              
                               
      

 

                                                                    

                                                               
 
                                                                            

                                         
 
 
 
#pragma once

#include "eval.hh"

#include <string>
#include <map>


namespace nix {


struct DrvInfo
{
public:
    typedef std::map<string, Path> Outputs;

private:
    EvalState * state;

    mutable string name;
    mutable string system;
    mutable string drvPath;
    mutable string outPath;
    mutable string outputName;
    Outputs outputs;

    bool failed = false; // set if we get an AssertionError

    Bindings * attrs = nullptr, * meta = nullptr;

    Bindings * getMeta();

    bool checkMeta(Value & v);

public:
    string attrPath; /* path towards the derivation */

    DrvInfo(EvalState & state) : state(&state) { };
    DrvInfo(EvalState & state, const string & attrPath, Bindings * attrs);

    string queryName() const;
    string querySystem() const;
    string queryDrvPath() const;
    string queryOutPath() const;
    string queryOutputName() const;
    /** Return the list of outputs. The "outputs to install" are determined by `mesa.outputsToInstall`. */
    Outputs queryOutputs(bool onlyOutputsToInstall = false);

    StringSet queryMetaNames();
    Value * queryMeta(const string & name);
    string queryMetaString(const string & name);
    NixInt queryMetaInt(const string & name, NixInt def);
    NixFloat queryMetaFloat(const string & name, NixFloat def);
    bool queryMetaBool(const string & name, bool def);
    void setMeta(const string & name, Value * v);

    /*
    MetaInfo queryMetaInfo(EvalState & state) const;
    MetaValue queryMetaInfo(EvalState & state, const string & name) const;
    */

    void setName(const string & s) { name = s; }
    void setDrvPath(const string & s) { drvPath = s; }
    void setOutPath(const string & s) { outPath = s; }

    void setFailed() { failed = true; };
    bool hasFailed() { return failed; };
};


#if HAVE_BOEHMGC
typedef list<DrvInfo, traceable_allocator<DrvInfo> > DrvInfos;
#else
typedef list<DrvInfo> DrvInfos;
#endif


/* If value `v' denotes a derivation, store information about the
   derivation in `drv' and return true.  Otherwise, return false. */
bool getDerivation(EvalState & state, Value & v, DrvInfo & drv,
    bool ignoreAssertionFailures);

void getDerivations(EvalState & state, Value & v, const string & pathPrefix,
    Bindings & autoArgs, DrvInfos & drvs,
    bool ignoreAssertionFailures);


}