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