Mikhail Glushenkov | aa3bb17 | 2008-05-30 06:17:29 +0000 | [diff] [blame^] | 1 | //===--- Action.h - The LLVM Compiler Driver --------------------*- C++ -*-===// |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 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 | // Action - encapsulates a single shell command. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_TOOLS_LLVMC2_ACTION_H |
| 15 | #define LLVM_TOOLS_LLVMC2_ACTION_H |
| 16 | |
| 17 | #include <string> |
| 18 | #include <vector> |
| 19 | |
Mikhail Glushenkov | be9d9a1 | 2008-05-06 18:08:59 +0000 | [diff] [blame] | 20 | namespace llvmc { |
| 21 | |
Mikhail Glushenkov | aa3bb17 | 2008-05-30 06:17:29 +0000 | [diff] [blame^] | 22 | typedef std::vector<std::string> StrVector; |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 23 | |
Mikhail Glushenkov | 4561ab5 | 2008-05-07 21:50:19 +0000 | [diff] [blame] | 24 | /// Action - A class that encapsulates a single shell command. |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 25 | class Action { |
Mikhail Glushenkov | 4561ab5 | 2008-05-07 21:50:19 +0000 | [diff] [blame] | 26 | /// Command_ - The actual command (for example, 'ls'). |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 27 | std::string Command_; |
Mikhail Glushenkov | b5ccfbf | 2008-05-30 06:10:19 +0000 | [diff] [blame] | 28 | /// Args_ - Command arguments. Stdout redirection ("> file") is allowed. |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 29 | std::vector<std::string> Args_; |
| 30 | public: |
Mikhail Glushenkov | b5ccfbf | 2008-05-30 06:10:19 +0000 | [diff] [blame] | 31 | Action() {} |
Mikhail Glushenkov | aa3bb17 | 2008-05-30 06:17:29 +0000 | [diff] [blame^] | 32 | Action (const std::string& C, const StrVector& A) |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 33 | : Command_(C), Args_(A) |
| 34 | {} |
| 35 | |
Mikhail Glushenkov | 4561ab5 | 2008-05-07 21:50:19 +0000 | [diff] [blame] | 36 | /// Execute - Executes the represented action. |
Mikhail Glushenkov | aa4948f | 2008-05-06 16:34:39 +0000 | [diff] [blame] | 37 | int Execute() const; |
Mikhail Glushenkov | b90cd83 | 2008-05-06 16:34:12 +0000 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | } |
| 41 | |
| 42 | #endif // LLVM_TOOLS_LLVMC2_ACTION_H |