Reduce usage of sys::Path in the graph writer.
[oota-llvm.git] / lib / Support / GraphWriter.cpp
1 //===-- GraphWriter.cpp - Implements GraphWriter support routines ---------===//
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 // This file implements misc. GraphWriter support routines.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Support/GraphWriter.h"
15 #include "llvm/Config/config.h"
16 #include "llvm/Support/CommandLine.h"
17 #include "llvm/Support/FileSystem.h"
18 #include "llvm/Support/Path.h"
19 #include "llvm/Support/Program.h"
20 using namespace llvm;
21
22 static cl::opt<bool> ViewBackground("view-background", cl::Hidden,
23   cl::desc("Execute graph viewer in the background. Creates tmp file litter."));
24
25 std::string llvm::DOT::EscapeString(const std::string &Label) {
26   std::string Str(Label);
27   for (unsigned i = 0; i != Str.length(); ++i)
28   switch (Str[i]) {
29     case '\n':
30       Str.insert(Str.begin()+i, '\\');  // Escape character...
31       ++i;
32       Str[i] = 'n';
33       break;
34     case '\t':
35       Str.insert(Str.begin()+i, ' ');  // Convert to two spaces
36       ++i;
37       Str[i] = ' ';
38       break;
39     case '\\':
40       if (i+1 != Str.length())
41         switch (Str[i+1]) {
42           case 'l': continue; // don't disturb \l
43           case '|': case '{': case '}':
44             Str.erase(Str.begin()+i); continue;
45           default: break;
46         }
47     case '{': case '}':
48     case '<': case '>':
49     case '|': case '"':
50       Str.insert(Str.begin()+i, '\\');  // Escape character...
51       ++i;  // don't infinite loop
52       break;
53   }
54   return Str;
55 }
56
57 /// \brief Get a color string for this node number. Simply round-robin selects
58 /// from a reasonable number of colors.
59 StringRef llvm::DOT::getColorString(unsigned ColorNumber) {
60   static const int NumColors = 20;
61   static const char* Colors[NumColors] = {
62     "aaaaaa", "aa0000", "00aa00", "aa5500", "0055ff", "aa00aa", "00aaaa",
63     "555555", "ff5555", "55ff55", "ffff55", "5555ff", "ff55ff", "55ffff",
64     "ffaaaa", "aaffaa", "ffffaa", "aaaaff", "ffaaff", "aaffff"};
65   return Colors[ColorNumber % NumColors];
66 }
67
68 std::string llvm::createGraphFilename(const Twine &Name) {
69   std::string ErrMsg;
70   sys::Path Filename = sys::Path::GetTemporaryDirectory(&ErrMsg);
71   if (Filename.isEmpty()) {
72     errs() << "Error: " << ErrMsg << "\n";
73     return "";
74   }
75   Filename.appendComponent((Name + ".dot").str());
76   if (Filename.makeUnique(true,&ErrMsg)) {
77     errs() << "Error: " << ErrMsg << "\n";
78     return "";
79   }
80   return Filename.str();
81 }
82
83 // Execute the graph viewer. Return true if successful.
84 static bool LLVM_ATTRIBUTE_UNUSED
85 ExecGraphViewer(StringRef ExecPath, std::vector<const char*> &args,
86                 StringRef Filename, bool wait, std::string &ErrMsg) {
87   if (wait) {
88     if (sys::ExecuteAndWait(sys::Path(ExecPath), &args[0],0,0,0,0,&ErrMsg)) {
89       errs() << "Error: " << ErrMsg << "\n";
90       return false;
91     }
92     bool Existed;
93     sys::fs::remove(Filename, Existed);
94     errs() << " done. \n";
95   }
96   else {
97     sys::ExecuteNoWait(sys::Path(ExecPath), &args[0],0,0,0,&ErrMsg);
98     errs() << "Remember to erase graph file: " << Filename.str() << "\n";
99   }
100   return true;
101 }
102
103 void llvm::DisplayGraph(StringRef Filename, bool wait,
104                         GraphProgram::Name program) {
105   wait &= !ViewBackground;
106   std::string ErrMsg;
107 #if HAVE_GRAPHVIZ
108   sys::Path Graphviz(LLVM_PATH_GRAPHVIZ);
109
110   std::vector<const char*> args;
111   args.push_back(Graphviz.c_str());
112   args.push_back(Filename.c_str());
113   args.push_back(0);
114
115   errs() << "Running 'Graphviz' program... ";
116   if (!ExecGraphViewer(Graphviz, args, Filename, wait, ErrMsg))
117     return;
118
119 #elif HAVE_XDOT_PY
120   std::vector<const char*> args;
121   args.push_back(LLVM_PATH_XDOT_PY);
122   args.push_back(Filename.c_str());
123
124   switch (program) {
125   case GraphProgram::DOT:   args.push_back("-f"); args.push_back("dot"); break;
126   case GraphProgram::FDP:   args.push_back("-f"); args.push_back("fdp"); break;
127   case GraphProgram::NEATO: args.push_back("-f"); args.push_back("neato");break;
128   case GraphProgram::TWOPI: args.push_back("-f"); args.push_back("twopi");break;
129   case GraphProgram::CIRCO: args.push_back("-f"); args.push_back("circo");break;
130   }
131
132   args.push_back(0);
133
134   errs() << "Running 'xdot.py' program... ";
135   if (!ExecGraphViewer(sys::Path(LLVM_PATH_XDOT_PY), args, Filename, wait, ErrMsg))
136     return;
137
138 #elif (HAVE_GV && (HAVE_DOT || HAVE_FDP || HAVE_NEATO || \
139                    HAVE_TWOPI || HAVE_CIRCO))
140   sys::Path PSFilename = sys::Path(Filename);
141   PSFilename.appendSuffix("ps");
142
143   std::string prog;
144
145   // Set default grapher
146 #if HAVE_CIRCO
147   prog = LLVM_PATH_CIRCO;
148 #endif
149 #if HAVE_TWOPI
150   prog = LLVM_PATH_TWOPI;
151 #endif
152 #if HAVE_NEATO
153   prog = LLVM_PATH_NEATO;
154 #endif
155 #if HAVE_FDP
156   prog = LLVM_PATH_FDP;
157 #endif
158 #if HAVE_DOT
159   prog = LLVM_PATH_DOT;
160 #endif
161
162   // Find which program the user wants
163 #if HAVE_DOT
164   if (program == GraphProgram::DOT)
165     prog = LLVM_PATH_DOT;
166 #endif
167 #if (HAVE_FDP)
168   if (program == GraphProgram::FDP)
169     prog = LLVM_PATH_FDP;
170 #endif
171 #if (HAVE_NEATO)
172   if (program == GraphProgram::NEATO)
173     prog = LLVM_PATH_NEATO;
174 #endif
175 #if (HAVE_TWOPI)
176   if (program == GraphProgram::TWOPI)
177     prog = LLVM_PATH_TWOPI;
178 #endif
179 #if (HAVE_CIRCO)
180   if (program == GraphProgram::CIRCO)
181     prog = LLVM_PATH_CIRCO;
182 #endif
183
184   std::vector<const char*> args;
185   std::string FilenameStr = Filename;
186   args.push_back(prog.c_str());
187   args.push_back("-Tps");
188   args.push_back("-Nfontname=Courier");
189   args.push_back("-Gsize=7.5,10");
190   args.push_back(FilenameStr.c_str());
191   args.push_back("-o");
192   args.push_back(PSFilename.c_str());
193   args.push_back(0);
194
195   errs() << "Running '" << prog << "' program... ";
196
197   if (!ExecGraphViewer(prog, args, Filename, wait, ErrMsg))
198     return;
199
200   std::string gv(LLVM_PATH_GV);
201   args.clear();
202   args.push_back(gv.c_str());
203   args.push_back(PSFilename.c_str());
204   args.push_back("--spartan");
205   args.push_back(0);
206
207   ErrMsg.clear();
208   if (!ExecGraphViewer(gv, args, PSFilename.str(), wait, ErrMsg))
209     return;
210
211 #elif HAVE_DOTTY
212   sys::Path dotty(LLVM_PATH_DOTTY);
213
214   std::vector<const char*> args;
215   args.push_back(dotty.c_str());
216   args.push_back(Filename.c_str());
217   args.push_back(0);
218
219 // Dotty spawns another app and doesn't wait until it returns
220 #if defined (__MINGW32__) || defined (_WINDOWS)
221   wait = false;
222 #endif
223   errs() << "Running 'dotty' program... ";
224   if (!ExecGraphViewer(dotty, args, Filename, wait, ErrMsg))
225     return;
226 #endif
227 }