2017-06-22 01:19:47 +02:00
|
|
|
//===- GraphWriter.cpp - Implements GraphWriter support routines ----------===//
|
2006-06-27 18:49:46 +02:00
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2006-06-27 18:49:46 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements misc. GraphWriter support routines.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-07-29 00:21:01 +02:00
|
|
|
#include "llvm/Support/GraphWriter.h"
|
2017-06-22 01:19:47 +02:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
2012-12-03 17:50:05 +01:00
|
|
|
#include "llvm/Config/config.h"
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
2017-06-22 01:19:47 +02:00
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/ErrorOr.h"
|
2013-06-13 19:20:48 +02:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2010-11-29 19:16:10 +01:00
|
|
|
#include "llvm/Support/Program.h"
|
2017-06-22 01:19:47 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include <cassert>
|
|
|
|
#include <system_error>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2006-06-27 18:49:46 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2012-03-07 01:18:27 +01:00
|
|
|
static cl::opt<bool> ViewBackground("view-background", cl::Hidden,
|
|
|
|
cl::desc("Execute graph viewer in the background. Creates tmp file litter."));
|
|
|
|
|
2009-08-23 09:19:13 +02:00
|
|
|
std::string llvm::DOT::EscapeString(const std::string &Label) {
|
|
|
|
std::string Str(Label);
|
|
|
|
for (unsigned i = 0; i != Str.length(); ++i)
|
|
|
|
switch (Str[i]) {
|
|
|
|
case '\n':
|
|
|
|
Str.insert(Str.begin()+i, '\\'); // Escape character...
|
|
|
|
++i;
|
|
|
|
Str[i] = 'n';
|
|
|
|
break;
|
|
|
|
case '\t':
|
|
|
|
Str.insert(Str.begin()+i, ' '); // Convert to two spaces
|
|
|
|
++i;
|
|
|
|
Str[i] = ' ';
|
|
|
|
break;
|
|
|
|
case '\\':
|
|
|
|
if (i+1 != Str.length())
|
|
|
|
switch (Str[i+1]) {
|
|
|
|
case 'l': continue; // don't disturb \l
|
|
|
|
case '|': case '{': case '}':
|
|
|
|
Str.erase(Str.begin()+i); continue;
|
|
|
|
default: break;
|
|
|
|
}
|
2017-05-23 00:46:31 +02:00
|
|
|
LLVM_FALLTHROUGH;
|
2009-08-23 09:19:13 +02:00
|
|
|
case '{': case '}':
|
|
|
|
case '<': case '>':
|
|
|
|
case '|': case '"':
|
|
|
|
Str.insert(Str.begin()+i, '\\'); // Escape character...
|
|
|
|
++i; // don't infinite loop
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return Str;
|
|
|
|
}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Get a color string for this node number. Simply round-robin selects
|
2013-01-25 08:45:25 +01:00
|
|
|
/// from a reasonable number of colors.
|
|
|
|
StringRef llvm::DOT::getColorString(unsigned ColorNumber) {
|
|
|
|
static const int NumColors = 20;
|
|
|
|
static const char* Colors[NumColors] = {
|
|
|
|
"aaaaaa", "aa0000", "00aa00", "aa5500", "0055ff", "aa00aa", "00aaaa",
|
|
|
|
"555555", "ff5555", "55ff55", "ffff55", "5555ff", "ff55ff", "55ffff",
|
|
|
|
"ffaaaa", "aaffaa", "ffffaa", "aaaaff", "ffaaff", "aaffff"};
|
|
|
|
return Colors[ColorNumber % NumColors];
|
|
|
|
}
|
|
|
|
|
2020-05-06 01:58:44 +02:00
|
|
|
static std::string replaceIllegalFilenameChars(std::string Filename,
|
|
|
|
const char ReplacementChar) {
|
|
|
|
#ifdef _WIN32
|
|
|
|
std::string IllegalChars = "\\/:?\"<>|";
|
|
|
|
#else
|
|
|
|
std::string IllegalChars = "/";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (char IllegalChar : IllegalChars) {
|
|
|
|
std::replace(Filename.begin(), Filename.end(), IllegalChar,
|
|
|
|
ReplacementChar);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Filename;
|
|
|
|
}
|
|
|
|
|
2013-06-14 18:43:15 +02:00
|
|
|
std::string llvm::createGraphFilename(const Twine &Name, int &FD) {
|
|
|
|
FD = -1;
|
|
|
|
SmallString<128> Filename;
|
2020-05-06 01:58:44 +02:00
|
|
|
|
|
|
|
// Windows can't always handle long paths, so limit the length of the name.
|
|
|
|
std::string N = Name.str();
|
|
|
|
N = N.substr(0, std::min<std::size_t>(N.size(), 140));
|
|
|
|
|
|
|
|
// Replace illegal characters in graph Filename with '_' if needed
|
|
|
|
std::string CleansedName = replaceIllegalFilenameChars(N, '_');
|
|
|
|
|
|
|
|
std::error_code EC =
|
|
|
|
sys::fs::createTemporaryFile(CleansedName, "dot", FD, Filename);
|
2013-06-14 18:43:15 +02:00
|
|
|
if (EC) {
|
|
|
|
errs() << "Error: " << EC.message() << "\n";
|
2013-06-13 19:20:48 +02:00
|
|
|
return "";
|
|
|
|
}
|
2013-06-14 18:43:15 +02:00
|
|
|
|
|
|
|
errs() << "Writing '" << Filename << "'... ";
|
2020-01-28 20:23:46 +01:00
|
|
|
return std::string(Filename.str());
|
2013-06-13 19:20:48 +02:00
|
|
|
}
|
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
// Execute the graph viewer. Return true if there were errors.
|
2018-06-12 19:43:52 +02:00
|
|
|
static bool ExecGraphViewer(StringRef ExecPath, std::vector<StringRef> &args,
|
2014-06-02 03:40:04 +02:00
|
|
|
StringRef Filename, bool wait,
|
|
|
|
std::string &ErrMsg) {
|
2012-03-07 01:18:27 +01:00
|
|
|
if (wait) {
|
2018-06-12 19:43:52 +02:00
|
|
|
if (sys::ExecuteAndWait(ExecPath, args, None, {}, 0, 0, &ErrMsg)) {
|
2012-03-07 01:18:27 +01:00
|
|
|
errs() << "Error: " << ErrMsg << "\n";
|
2014-06-02 03:40:04 +02:00
|
|
|
return true;
|
2012-03-07 01:18:27 +01:00
|
|
|
}
|
2014-01-10 22:40:29 +01:00
|
|
|
sys::fs::remove(Filename);
|
2012-03-07 01:18:27 +01:00
|
|
|
errs() << " done. \n";
|
2014-06-02 03:40:04 +02:00
|
|
|
} else {
|
2018-06-12 19:43:52 +02:00
|
|
|
sys::ExecuteNoWait(ExecPath, args, None, {}, 0, &ErrMsg);
|
2015-03-30 17:42:36 +02:00
|
|
|
errs() << "Remember to erase graph file: " << Filename << "\n";
|
2012-03-07 01:18:27 +01:00
|
|
|
}
|
2014-06-02 03:40:04 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-23 13:30:58 +01:00
|
|
|
namespace {
|
2017-06-22 01:19:47 +02:00
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
struct GraphSession {
|
|
|
|
std::string LogBuffer;
|
2017-06-22 01:19:47 +02:00
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
bool TryFindProgram(StringRef Names, std::string &ProgramPath) {
|
|
|
|
raw_string_ostream Log(LogBuffer);
|
|
|
|
SmallVector<StringRef, 8> parts;
|
2015-09-10 08:12:31 +02:00
|
|
|
Names.split(parts, '|');
|
2014-06-02 03:40:04 +02:00
|
|
|
for (auto Name : parts) {
|
2014-11-07 22:30:36 +01:00
|
|
|
if (ErrorOr<std::string> P = sys::findProgramByName(Name)) {
|
2014-11-04 02:29:59 +01:00
|
|
|
ProgramPath = *P;
|
2014-06-02 03:40:04 +02:00
|
|
|
return true;
|
2014-11-04 02:29:59 +01:00
|
|
|
}
|
2014-06-02 03:40:04 +02:00
|
|
|
Log << " Tried '" << Name << "'\n";
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
2017-06-22 01:19:47 +02:00
|
|
|
|
|
|
|
} // end anonymous namespace
|
2014-06-02 03:40:04 +02:00
|
|
|
|
|
|
|
static const char *getProgramName(GraphProgram::Name program) {
|
|
|
|
switch (program) {
|
|
|
|
case GraphProgram::DOT:
|
|
|
|
return "dot";
|
|
|
|
case GraphProgram::FDP:
|
|
|
|
return "fdp";
|
|
|
|
case GraphProgram::NEATO:
|
|
|
|
return "neato";
|
|
|
|
case GraphProgram::TWOPI:
|
|
|
|
return "twopi";
|
|
|
|
case GraphProgram::CIRCO:
|
|
|
|
return "circo";
|
|
|
|
}
|
2014-06-02 06:34:10 +02:00
|
|
|
llvm_unreachable("bad kind");
|
2012-03-07 01:18:27 +01:00
|
|
|
}
|
2009-08-23 09:19:13 +02:00
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
bool llvm::DisplayGraph(StringRef FilenameRef, bool wait,
|
2009-07-09 19:06:18 +02:00
|
|
|
GraphProgram::Name program) {
|
2020-01-28 20:23:46 +01:00
|
|
|
std::string Filename = std::string(FilenameRef);
|
2006-08-21 08:04:45 +02:00
|
|
|
std::string ErrMsg;
|
2014-06-02 03:40:04 +02:00
|
|
|
std::string ViewerPath;
|
|
|
|
GraphSession S;
|
|
|
|
|
2015-04-03 19:22:36 +02:00
|
|
|
#ifdef __APPLE__
|
[GraphWriter] Don't wait on xdg-open when not on Apple.
By default, the GraphWriter code assumes that the generic file open
program (`open` on Apple, `xdg-open` on other systems) can wait on the
forked proces to complete. When the fork ends, the code would delete
the temporary dot files created, and return.
On GNU/Linux, the xdg-open program does not have a "wait for your fork
to complete before dying" option. So the behaviour was that xdg-open
would launch a process, quickly die itself, and then the GraphWriter
code would think its OK to quickly delete all the temporary files.
Once the temporary files were deleted, the dot viewers would get very
upset, and often give you weird errors.
This change only waits on the generic open program on Apple platforms.
Elsewhere, we don't wait on the process, and hence we don't try and
clean up the temporary files.
llvm-svn: 241250
2015-07-02 11:32:07 +02:00
|
|
|
wait &= !ViewBackground;
|
2015-04-03 19:22:36 +02:00
|
|
|
if (S.TryFindProgram("open", ViewerPath)) {
|
2018-06-12 19:43:52 +02:00
|
|
|
std::vector<StringRef> args;
|
|
|
|
args.push_back(ViewerPath);
|
2015-04-03 19:22:36 +02:00
|
|
|
if (wait)
|
|
|
|
args.push_back("-W");
|
2018-06-12 19:43:52 +02:00
|
|
|
args.push_back(Filename);
|
2015-04-03 19:22:36 +02:00
|
|
|
errs() << "Trying 'open' program... ";
|
|
|
|
if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (S.TryFindProgram("xdg-open", ViewerPath)) {
|
2018-06-12 19:43:52 +02:00
|
|
|
std::vector<StringRef> args;
|
|
|
|
args.push_back(ViewerPath);
|
|
|
|
args.push_back(Filename);
|
2015-04-03 19:22:36 +02:00
|
|
|
errs() << "Trying 'xdg-open' program... ";
|
|
|
|
if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
// Graphviz
|
|
|
|
if (S.TryFindProgram("Graphviz", ViewerPath)) {
|
2018-06-12 19:43:52 +02:00
|
|
|
std::vector<StringRef> args;
|
|
|
|
args.push_back(ViewerPath);
|
|
|
|
args.push_back(Filename);
|
2014-06-02 03:40:04 +02:00
|
|
|
|
|
|
|
errs() << "Running 'Graphviz' program... ";
|
|
|
|
return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg);
|
2010-09-27 18:28:34 +02:00
|
|
|
}
|
2012-03-07 01:18:27 +01:00
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
// xdot
|
|
|
|
if (S.TryFindProgram("xdot|xdot.py", ViewerPath)) {
|
2018-06-12 19:43:52 +02:00
|
|
|
std::vector<StringRef> args;
|
|
|
|
args.push_back(ViewerPath);
|
|
|
|
args.push_back(Filename);
|
2010-09-27 18:28:34 +02:00
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
args.push_back("-f");
|
|
|
|
args.push_back(getProgramName(program));
|
2010-09-27 18:28:34 +02:00
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
errs() << "Running 'xdot.py' program... ";
|
|
|
|
return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg);
|
|
|
|
}
|
2009-07-09 19:06:18 +02:00
|
|
|
|
2015-08-18 14:17:37 +02:00
|
|
|
enum ViewerKind {
|
|
|
|
VK_None,
|
|
|
|
VK_OSXOpen,
|
|
|
|
VK_XDGOpen,
|
|
|
|
VK_Ghostview,
|
|
|
|
VK_CmdStart
|
|
|
|
};
|
|
|
|
ViewerKind Viewer = VK_None;
|
2014-06-02 03:40:04 +02:00
|
|
|
#ifdef __APPLE__
|
2015-08-18 14:17:37 +02:00
|
|
|
if (!Viewer && S.TryFindProgram("open", ViewerPath))
|
|
|
|
Viewer = VK_OSXOpen;
|
|
|
|
#endif
|
|
|
|
if (!Viewer && S.TryFindProgram("gv", ViewerPath))
|
|
|
|
Viewer = VK_Ghostview;
|
|
|
|
if (!Viewer && S.TryFindProgram("xdg-open", ViewerPath))
|
|
|
|
Viewer = VK_XDGOpen;
|
2018-04-29 02:45:03 +02:00
|
|
|
#ifdef _WIN32
|
2015-08-18 14:17:37 +02:00
|
|
|
if (!Viewer && S.TryFindProgram("cmd", ViewerPath)) {
|
|
|
|
Viewer = VK_CmdStart;
|
|
|
|
}
|
2009-07-08 23:53:41 +02:00
|
|
|
#endif
|
2014-06-02 03:40:04 +02:00
|
|
|
|
2015-08-18 14:17:37 +02:00
|
|
|
// PostScript or PDF graph generator + PostScript/PDF viewer
|
2014-06-02 03:40:04 +02:00
|
|
|
std::string GeneratorPath;
|
2015-08-18 14:17:37 +02:00
|
|
|
if (Viewer &&
|
2014-06-02 03:40:04 +02:00
|
|
|
(S.TryFindProgram(getProgramName(program), GeneratorPath) ||
|
2014-06-02 06:14:23 +02:00
|
|
|
S.TryFindProgram("dot|fdp|neato|twopi|circo", GeneratorPath))) {
|
2015-08-18 14:17:37 +02:00
|
|
|
std::string OutputFilename =
|
|
|
|
Filename + (Viewer == VK_CmdStart ? ".pdf" : ".ps");
|
2014-06-02 03:40:04 +02:00
|
|
|
|
2018-06-12 19:43:52 +02:00
|
|
|
std::vector<StringRef> args;
|
|
|
|
args.push_back(GeneratorPath);
|
2015-08-18 14:17:37 +02:00
|
|
|
if (Viewer == VK_CmdStart)
|
|
|
|
args.push_back("-Tpdf");
|
|
|
|
else
|
|
|
|
args.push_back("-Tps");
|
2014-06-02 03:40:04 +02:00
|
|
|
args.push_back("-Nfontname=Courier");
|
|
|
|
args.push_back("-Gsize=7.5,10");
|
2018-06-12 19:43:52 +02:00
|
|
|
args.push_back(Filename);
|
2014-06-02 03:40:04 +02:00
|
|
|
args.push_back("-o");
|
2018-06-12 19:43:52 +02:00
|
|
|
args.push_back(OutputFilename);
|
2014-06-02 03:40:04 +02:00
|
|
|
|
|
|
|
errs() << "Running '" << GeneratorPath << "' program... ";
|
|
|
|
|
2015-09-18 12:56:30 +02:00
|
|
|
if (ExecGraphViewer(GeneratorPath, args, Filename, true, ErrMsg))
|
2014-06-02 03:40:04 +02:00
|
|
|
return true;
|
|
|
|
|
2015-08-18 14:17:37 +02:00
|
|
|
// The lifetime of StartArg must include the call of ExecGraphViewer
|
|
|
|
// because the args are passed as vector of char*.
|
|
|
|
std::string StartArg;
|
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
args.clear();
|
2018-06-12 19:43:52 +02:00
|
|
|
args.push_back(ViewerPath);
|
2015-08-18 14:17:37 +02:00
|
|
|
switch (Viewer) {
|
|
|
|
case VK_OSXOpen:
|
2014-06-02 03:40:04 +02:00
|
|
|
args.push_back("-W");
|
2018-06-12 19:43:52 +02:00
|
|
|
args.push_back(OutputFilename);
|
2014-06-02 03:40:04 +02:00
|
|
|
break;
|
2015-08-18 14:17:37 +02:00
|
|
|
case VK_XDGOpen:
|
2014-06-04 05:57:44 +02:00
|
|
|
wait = false;
|
2018-06-12 19:43:52 +02:00
|
|
|
args.push_back(OutputFilename);
|
2014-06-04 05:57:44 +02:00
|
|
|
break;
|
2015-08-18 14:17:37 +02:00
|
|
|
case VK_Ghostview:
|
2014-06-02 03:40:04 +02:00
|
|
|
args.push_back("--spartan");
|
2018-06-12 19:43:52 +02:00
|
|
|
args.push_back(OutputFilename);
|
2015-08-18 14:17:37 +02:00
|
|
|
break;
|
|
|
|
case VK_CmdStart:
|
|
|
|
args.push_back("/S");
|
|
|
|
args.push_back("/C");
|
|
|
|
StartArg =
|
|
|
|
(StringRef("start ") + (wait ? "/WAIT " : "") + OutputFilename).str();
|
2018-06-12 19:43:52 +02:00
|
|
|
args.push_back(StartArg);
|
2014-06-02 03:40:04 +02:00
|
|
|
break;
|
2015-08-18 14:17:37 +02:00
|
|
|
case VK_None:
|
2014-06-02 03:40:04 +02:00
|
|
|
llvm_unreachable("Invalid viewer");
|
|
|
|
}
|
2006-06-27 18:49:46 +02:00
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
ErrMsg.clear();
|
2015-08-18 14:17:37 +02:00
|
|
|
return ExecGraphViewer(ViewerPath, args, OutputFilename, wait, ErrMsg);
|
2014-06-02 03:40:04 +02:00
|
|
|
}
|
2006-06-27 18:49:46 +02:00
|
|
|
|
2014-06-02 03:40:04 +02:00
|
|
|
// dotty
|
|
|
|
if (S.TryFindProgram("dotty", ViewerPath)) {
|
2018-06-12 19:43:52 +02:00
|
|
|
std::vector<StringRef> args;
|
|
|
|
args.push_back(ViewerPath);
|
|
|
|
args.push_back(Filename);
|
2012-03-07 01:18:27 +01:00
|
|
|
|
2010-04-13 06:35:39 +02:00
|
|
|
// Dotty spawns another app and doesn't wait until it returns
|
2018-04-29 02:45:03 +02:00
|
|
|
#ifdef _WIN32
|
2014-06-02 03:40:04 +02:00
|
|
|
wait = false;
|
2006-06-27 18:49:46 +02:00
|
|
|
#endif
|
2014-06-02 03:40:04 +02:00
|
|
|
errs() << "Running 'dotty' program... ";
|
|
|
|
return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg);
|
|
|
|
}
|
|
|
|
|
|
|
|
errs() << "Error: Couldn't find a usable graph viewer program:\n";
|
|
|
|
errs() << S.LogBuffer << "\n";
|
|
|
|
return true;
|
2006-06-27 18:49:46 +02:00
|
|
|
}
|