]> git.tdb.fi Git - builder.git/blob - source/buildinfo.h
Support gcc's -iquote feature
[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         class Loader: public Msp::DataFile::ObjectLoader<BuildInfo>
25         {
26         public:
27                 Loader(BuildInfo &);
28         private:
29                 void incpath(const std::string &);
30                 void define(const std::string &, const std::string &);
31                 void libmode_for_lib(const std::string &, LibraryMode);
32                 void libpath(const std::string &);
33                 void library(const std::string &);
34                 void local_incpath(const std::string &);
35         };
36         
37         enum UpdateLevel
38         {
39                 LOCAL,       //< Include all information
40                 DEPENDENCY,  //< Include all but code generation options
41                 CHAINED      //< Include only compilation options
42         };
43
44         /**
45         A wrapper which tracks the set status of the wrapped variable.  A default
46         value may be provided in initialization without causing it to be treated as
47         set.  Assigning from a raw value flags the Tracked object as set.  Assigning
48         from another Tracked object will only change the value of the target if the
49         source is set.  
50         */
51         template<typename T>
52         class Tracked
53         {
54         public:
55                 typedef T LoadType;
56
57         private:
58                 T value;
59                 bool set;
60
61         public:
62                 Tracked(): value(T()), set(false) { }
63                 Tracked(T v): value(v), set(false) { }
64                 Tracked &operator=(const Tracked &v) { if(v.set) { value = v.value; set = true; } return *this; }
65
66                 Tracked &operator=(T v) { value = v; set = true; return *this; }
67                 operator T() const { return value; }
68         };
69
70         typedef std::map<std::string, std::string> DefineMap;
71         typedef std::list<Msp::FS::Path> PathList;
72         typedef std::list<std::string> WordList;
73         typedef std::map<std::string, LibraryMode> LibModeMap;
74
75         DefineMap defines;
76         PathList incpath;
77         PathList local_incpath;
78         PathList libpath;
79         WordList libs;
80         Tracked<LibraryMode> libmode;
81         LibModeMap libmodes;
82         Tracked<bool> threads;
83         Tracked<bool> debug;
84         Tracked<int> optimize;
85         Tracked<bool> strip;
86         Tracked<unsigned> warning_level;
87         Tracked<bool> fatal_warnings;
88
89         BuildInfo();
90
91         /** Returns the library mode for linking a particular library.  If no mode
92         has been specified for that library, the the global library mode is
93         returned. */
94         LibraryMode get_libmode_for(const std::string &) const;
95
96         /** Updates the BuildInfo from another one.  Lists are concatenated, with
97         the first occurrence of each item preserved.  Scalars are overwritten.
98         
99         The update level determines what information is updated. */
100         void update_from(const BuildInfo &, UpdateLevel = LOCAL);
101 };
102
103 #endif