blob: c657bef95af06106a0b94c06548b894c29afbd06 [file] [log] [blame]
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001//===--- InputInfo.h - Input Source & Type Information ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef CLANG_LIB_DRIVER_INPUTINFO_H_
11#define CLANG_LIB_DRIVER_INPUTINFO_H_
12
Daniel Dunbar871adcf2009-03-18 07:06:02 +000013#include "clang/Driver/Types.h"
14
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000015#include <cassert>
Daniel Dunbar5c3c1d72009-03-17 22:47:06 +000016#include <string>
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000017
18namespace clang {
19namespace driver {
20 class PipedJob;
21
22/// InputInfo - Wrapper for information about an input source.
23class InputInfo {
Daniel Dunbar115a7922009-03-19 07:29:38 +000024 // FIXME: The distinction between filenames and inputarg here is
25 // gross; we should probably drop the idea of a "linker
26 // input". Doing so means tweaking pipelining to still create link
27 // steps when it sees linker inputs (but not treat them as
28 // arguments), and making sure that arguments get rendered
29 // correctly.
30 enum Class {
31 Nothing,
32 Filename,
33 InputArg,
34 Pipe
35 };
36
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000037 union {
38 const char *Filename;
Daniel Dunbar115a7922009-03-19 07:29:38 +000039 const Arg *InputArg;
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000040 PipedJob *Pipe;
41 } Data;
Daniel Dunbar115a7922009-03-19 07:29:38 +000042 Class Kind;
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000043 types::ID Type;
44 const char *BaseInput;
45
46public:
47 InputInfo() {}
Daniel Dunbar5c3c1d72009-03-17 22:47:06 +000048 InputInfo(types::ID _Type, const char *_BaseInput)
Daniel Dunbar115a7922009-03-19 07:29:38 +000049 : Kind(Nothing), Type(_Type), BaseInput(_BaseInput) {
Daniel Dunbar5c3c1d72009-03-17 22:47:06 +000050 }
Daniel Dunbar115a7922009-03-19 07:29:38 +000051 InputInfo(const char *_Filename, types::ID _Type, const char *_BaseInput)
52 : Kind(Filename), Type(_Type), BaseInput(_BaseInput) {
53 Data.Filename = _Filename;
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000054 }
Daniel Dunbar115a7922009-03-19 07:29:38 +000055 InputInfo(const Arg *_InputArg, types::ID _Type, const char *_BaseInput)
56 : Kind(InputArg), Type(_Type), BaseInput(_BaseInput) {
57 Data.InputArg = _InputArg;
58 }
59 InputInfo(PipedJob *_Pipe, types::ID _Type, const char *_BaseInput)
60 : Kind(Pipe), Type(_Type), BaseInput(_BaseInput) {
61 Data.Pipe = _Pipe;
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000062 }
63
Daniel Dunbar115a7922009-03-19 07:29:38 +000064 bool isNothing() const { return Kind == Nothing; }
65 bool isFilename() const { return Kind == Filename; }
66 bool isInputArg() const { return Kind == InputArg; }
67 bool isPipe() const { return Kind == Pipe; }
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000068 types::ID getType() const { return Type; }
69 const char *getBaseInput() const { return BaseInput; }
70
Daniel Dunbar115a7922009-03-19 07:29:38 +000071 const char *getFilename() const {
72 assert(isFilename() && "Invalid accessor.");
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000073 return Data.Filename;
74 }
Daniel Dunbar115a7922009-03-19 07:29:38 +000075 const Arg &getInputArg() const {
76 assert(isInputArg() && "Invalid accessor.");
77 return *Data.InputArg;
78 }
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000079 PipedJob &getPipe() const {
80 assert(isPipe() && "Invalid accessor.");
81 return *Data.Pipe;
82 }
Daniel Dunbar5c3c1d72009-03-17 22:47:06 +000083
84 /// getAsString - Return a string name for this input, for
85 /// debugging.
86 std::string getAsString() const {
87 if (isPipe())
88 return "(pipe)";
Daniel Dunbar115a7922009-03-19 07:29:38 +000089 else if (isFilename())
90 return std::string("\"") + getFilename() + '"';
91 else if (isInputArg())
92 return "(input arg)";
Daniel Dunbar5c3c1d72009-03-17 22:47:06 +000093 else
94 return "(nothing)";
95 }
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000096};
97
98} // end namespace driver
99} // end namespace clang
100
101#endif