]> git.tdb.fi Git - builder.git/blob - source/buildinfo.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / buildinfo.h
1 #ifndef BUILDINFO_H_
2 #define BUILDINFO_H_
3
4 #include <list>
5 #include <string>
6 #include <msp/datafile/objectloader.h>
7 #include <msp/fs/path.h>
8
9 /**
10 Stores information about compiler command line parameters in a more abstract
11 form.  Allows combining with other BuildInfos to support package dependencies.
12 */
13 class BuildInfo
14 {
15 public:
16         enum LibraryMode
17         {
18                 FORCE_STATIC,  //< Only accept static libraries
19                 STATIC,        //< Prefer static libraries but accept dynamic as well
20                 DYNAMIC,       //< Prefer dynamic libraries but accept static as well
21                 FORCE_DYNAMIC  //< Only accept dynamic libraries
22         };
23
24         enum RuntimePathMode
25         {
26                 NO_RPATH,  //< Do not record rpath in binaries
27                 RELATIVE,  //< Record relative rpath in binaries
28                 ABSOLUTE   //< Record absolute rpath in binaries
29         };
30
31         class Loader: public Msp::DataFile::ObjectLoader<BuildInfo>
32         {
33         public:
34                 Loader(BuildInfo &);
35         private:
36                 void incpath(const std::string &);
37                 void define(const std::string &, const std::string &);
38                 void keep_symbol(const std::string &);
39                 void libmode_for_lib(const std::string &, LibraryMode);
40                 void libpath(const std::string &);
41                 void library(const std::string &);
42                 void local_incpath(const std::string &);
43                 void standard(Msp::DataFile::Symbol, const std::string &);
44                 void sysroot(const std::string &);
45         };
46         
47         enum UpdateLevel
48         {
49                 LOCAL,       //< Include all information
50                 DEPENDENCY,  //< Include all but code generation options
51                 CHAINED      //< Include only compilation options
52         };
53
54         /**
55         A wrapper which tracks the set status of the wrapped variable.  A default
56         value may be provided in initialization without causing it to be treated as
57         set.  Assigning from a raw value flags the Tracked object as set.  Assigning
58         from another Tracked object will only change the value of the target if the
59         source is set.  
60         */
61         template<typename T>
62         class Tracked
63         {
64         public:
65                 typedef T LoadType;
66
67         private:
68                 T value;
69                 bool set;
70
71         public:
72                 Tracked(): value(T()), set(false) { }
73                 Tracked(T v): value(v), set(false) { }
74                 Tracked &operator=(const Tracked &v) { if(v.set) { value = v.value; set = true; } return *this; }
75
76                 Tracked &operator=(const T &v) { value = v; set = true; return *this; }
77                 operator const T &() const { return value; }
78         };
79
80         typedef std::map<std::string, std::string> DefineMap;
81         typedef std::list<Msp::FS::Path> PathList;
82         typedef std::list<std::string> WordList;
83         typedef std::map<std::string, LibraryMode> LibModeMap;
84         typedef std::map<std::string, std::string> StandardMap;
85
86         Tracked<Msp::FS::Path> sysroot;
87         DefineMap defines;
88         PathList incpath;
89         PathList local_incpath;
90         PathList libpath;
91         WordList libs;
92         Tracked<LibraryMode> libmode;
93         Tracked<RuntimePathMode> rpath_mode;
94         LibModeMap libmodes;
95         WordList keep_symbols;
96         StandardMap standards;
97         Tracked<bool> threads;
98         Tracked<bool> debug;
99         Tracked<int> optimize;
100         Tracked<bool> strip;
101         Tracked<unsigned> warning_level;
102         Tracked<bool> fatal_warnings;
103
104         BuildInfo();
105
106         /** Returns the library mode for linking a particular library.  If no mode
107         has been specified for that library, the the global library mode is
108         returned. */
109         LibraryMode get_libmode_for(const std::string &) const;
110
111         /** Updates the BuildInfo from another one.  Lists are concatenated, with
112         the first occurrence of each item preserved.  Scalars are overwritten.
113         
114         The update level determines what information is updated. */
115         void update_from(const BuildInfo &, UpdateLevel = LOCAL);
116 };
117
118 #endif