]> git.tdb.fi Git - builder.git/blob - source/sourcegenerator.h
Allow specifying fixed arguments for source generators
[builder.git] / source / sourcegenerator.h
1 #ifndef SOURCEGENERATOR_H_
2 #define SOURCEGENERATOR_H_
3
4 #include <msp/datafile/objectloader.h>
5 #include "conditionalloader.h"
6 #include "sourcepackage.h"
7 #include "tool.h"
8
9 class SourceGenerator: public Tool
10 {
11 public:
12         class Loader: public Msp::DataFile::ObjectLoader<SourceGenerator>, public ConditionalLoader
13         {
14         public:
15                 Loader(SourceGenerator &);
16
17         private:
18                 void argument(const std::string &);
19                 void command(const std::string &);
20                 void in_suffix(const std::string &);
21                 void out_suffix(const std::string &);
22         };
23
24 private:
25         const SourcePackage &package;
26         std::list<std::string> out_suffixes;
27         std::list<std::string> arguments;
28
29 public:
30         SourceGenerator(Builder &, const SourcePackage &, const std::string &);
31
32         virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
33         virtual Target *create_target(const std::list<Target *> &, const std::string &);
34
35         virtual Task *run(const Target &) const;
36 };
37
38 #endif