Use (actions) instead of option properties, support external options.
[oota-llvm.git] / include / llvm / CompilerDriver / Tool.h
1 //===--- Tool.h - The LLVM Compiler Driver ----------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open
6 // Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  Tool abstract base class - an interface to tool descriptions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TOOLS_LLVMC2_TOOL_H
15 #define LLVM_TOOLS_LLVMC2_TOOL_H
16
17 #include "llvm/CompilerDriver/Action.h"
18
19 #include "llvm/ADT/IntrusiveRefCntPtr.h"
20 #include "llvm/ADT/StringSet.h"
21 #include "llvm/System/Path.h"
22
23 #include <string>
24 #include <vector>
25
26 namespace llvmc {
27
28   class LanguageMap;
29   typedef std::vector<llvm::sys::Path> PathVector;
30   typedef llvm::StringSet<> InputLanguagesSet;
31
32   /// Tool - A class
33   class Tool : public llvm::RefCountedBaseVPTR<Tool> {
34   public:
35
36     virtual ~Tool() {}
37
38     virtual Action GenerateAction (const PathVector& inFiles,
39                                    bool  HasChildren,
40                                    const llvm::sys::Path& TempDir,
41                                    const InputLanguagesSet& InLangs,
42                                    const LanguageMap& LangMap) const = 0;
43
44     virtual Action GenerateAction (const llvm::sys::Path& inFile,
45                                    bool  HasChildren,
46                                    const llvm::sys::Path& TempDir,
47                                    const InputLanguagesSet& InLangs,
48                                    const LanguageMap& LangMap) const = 0;
49
50     virtual const char*  Name() const = 0;
51     virtual const char** InputLanguages() const = 0;
52     virtual const char*  OutputLanguage() const = 0;
53
54     virtual bool IsJoin() const = 0;
55
56   protected:
57     /// OutFileName - Generate the output file name.
58     llvm::sys::Path OutFilename(const llvm::sys::Path& In,
59                                 const llvm::sys::Path& TempDir,
60                                 bool StopCompilation,
61                                 const char* OutputSuffix) const;
62   };
63
64   /// JoinTool - A Tool that has an associated input file list.
65   class JoinTool : public Tool {
66   public:
67     void AddToJoinList(const llvm::sys::Path& P) { JoinList_.push_back(P); }
68     void ClearJoinList() { JoinList_.clear(); }
69     bool JoinListEmpty() const { return JoinList_.empty(); }
70
71     Action GenerateAction(bool  HasChildren,
72                           const llvm::sys::Path& TempDir,
73                           const InputLanguagesSet& InLangs,
74                           const LanguageMap& LangMap) const {
75       return GenerateAction(JoinList_, HasChildren, TempDir, InLangs, LangMap);
76     }
77     // We shouldn't shadow base class's version of GenerateAction.
78     using Tool::GenerateAction;
79
80   private:
81     PathVector JoinList_;
82   };
83
84 }
85
86 #endif //LLVM_TOOLS_LLVMC2_TOOL_H