Doxygen
Loading...
Searching...
No Matches
dotrunner.cpp
Go to the documentation of this file.
1/******************************************************************************
2*
3* Copyright (C) 1997-2019 by Dimitri van Heesch.
4*
5* Permission to use, copy, modify, and distribute this software and its
6* documentation under the terms of the GNU General Public License is hereby
7* granted. No representations are made about the suitability of this software
8* for any purpose. It is provided "as is" without express or implied warranty.
9* See the GNU General Public License for more details.
10*
11* Documents produced by Doxygen are derivative works derived from the
12* input used in their production; they are not affected by this license.
13*
14*/
15
16#include <cassert>
17#include <cmath>
18
19#ifdef _MSC_VER
20#pragma warning( push )
21#pragma warning( disable : 4242 )
22#pragma warning( disable : 4244 )
23#pragma warning( disable : 4996 )
24#pragma warning( disable : 4456 )
25#pragma warning( disable : 4805 )
26#endif
27#if defined(__clang__)
28#pragma clang diagnostic push
29#pragma clang diagnostic ignored "-Wdeprecated-declarations"
30#pragma clang diagnostic ignored "-Wshadow"
31#endif
32#if defined(__GNUC__)
33#pragma GCC diagnostic push
34#pragma GCC diagnostic ignored "-Wshadow"
35#endif
36#include <gunzip.hh>
37#if defined(__GNUC__)
38#pragma GCC diagnostic pop
39#endif
40#if defined(__clang__)
41#pragma clang diagnostic pop
42#endif
43#ifdef _MSC_VER
44#pragma warning( pop )
45#endif
46
47#include "dotrunner.h"
48#include "util.h"
49#include "portable.h"
50#include "dot.h"
51#include "message.h"
52#include "config.h"
53#include "dir.h"
54#include "doxygen.h"
55
56// the graphicx LaTeX has a limitation of maximum size of 16384
57// To be on the save side we take it a little bit smaller i.e. 150 inch * 72 dpi
58// It is anyway hard to view these size of images
59#define MAX_LATEX_GRAPH_INCH 150
60#define MAX_LATEX_GRAPH_SIZE (MAX_LATEX_GRAPH_INCH * 72)
61
62//#define DBG(x) printf x
63#define DBG(x) do {} while(0)
64
65//-----------------------------------------------------------------------------------------
66
67// since dot silently reproduces the input file when it does not
68// support the PNG format, we need to check the result.
69static void checkPngResult(const QCString &imgName)
70{
71 FILE *f = Portable::fopen(imgName,"rb");
72 if (f)
73 {
74 char data[4];
75 if (fread(data,1,4,f)==4)
76 {
77 if (!(data[1]=='P' && data[2]=='N' && data[3]=='G'))
78 {
79 err("Image '{}' produced by dot is not a valid PNG!\n"
80 "You should either select a different format "
81 "(DOT_IMAGE_FORMAT in the config file) or install a more "
82 "recent version of graphviz (1.7+)\n",imgName
83 );
84 }
85 }
86 else
87 {
88 err("Could not read image '{}' generated by dot!\n",imgName);
89 }
90 fclose(f);
91 }
92 else
93 {
94 err("Could not open image '{}' generated by dot!\n",imgName);
95 }
96}
97
98static bool resetPDFSize(const int width,const int height, const QCString &base)
99{
100 QCString tmpName = base+".tmp";
101 QCString patchFile = base+".dot";
102 Dir thisDir;
103 if (!thisDir.rename(patchFile.str(),tmpName.str()))
104 {
105 err("Failed to rename file {} to {}!\n",patchFile,tmpName);
106 return FALSE;
107 }
108 std::ifstream fi = Portable::openInputStream(tmpName);
109 std::ofstream t = Portable::openOutputStream(patchFile);
110 if (!fi.is_open())
111 {
112 err("problem opening file {} for patching!\n",tmpName);
113 thisDir.rename(tmpName.str(),patchFile.str());
114 return FALSE;
115 }
116 if (!t.is_open())
117 {
118 err("problem opening file {} for patching!\n",patchFile);
119 thisDir.rename(tmpName.str(),patchFile.str());
120 return FALSE;
121 }
122 std::string line;
123 while (getline(fi,line)) // foreach line
124 {
125 if (line.find("LATEX_PDF_SIZE") != std::string::npos)
126 {
127 double scale = (width > height ? width : height)/double(MAX_LATEX_GRAPH_INCH);
128 t << " size=\""<<width/scale << "," <<height/scale << "\";\n";
129 }
130 else
131 t << line << "\n";
132 }
133 fi.close();
134 t.close();
135 // remove temporary file
136 thisDir.remove(tmpName.str());
137 return TRUE;
138}
139
140bool DotRunner::readBoundingBox(const QCString &fileName,int *width,int *height,bool isEps)
141{
142 std::ifstream f = Portable::openInputStream(fileName);
143 if (!f.is_open())
144 {
145 err("Failed to open file {} for extracting bounding box\n",fileName);
146 return false;
147 }
148
149 // read file contents into string 'contents'
150 std::stringstream buffer;
151 buffer << f.rdbuf();
152 std::string contents = buffer.str();
153
154 // start of bounding box marker we are looking for
155 const std::string boundingBox = isEps ? "%%PageBoundingBox:" : "/MediaBox [";
156
157 // helper routine to extract the bounding boxes width and height
158 auto extractBoundingBox = [&fileName,&boundingBox,&width,&height](const char *s) -> bool
159 {
160 int x=0, y=0;
161 double w=0, h=0;
162 if (sscanf(s+boundingBox.length(),"%d %d %lf %lf",&x,&y,&w,&h)==4)
163 {
164 *width = static_cast<int>(std::ceil(w));
165 *height = static_cast<int>(std::ceil(h));
166 return true;
167 }
168 err("Failed to extract bounding box from generated diagram file {}\n",fileName);
169 return false;
170 };
171
172 // compressed segment start and end markers
173 const std::string streamStart = "stream\n";
174 const std::string streamEnd = "\nendstream";
175
176 auto detectDeflateStreamStart = [&streamStart](const char *s)
177 {
178 size_t len = streamStart.length();
179 bool streamOK = strncmp(s,streamStart.c_str(),len)==0;
180 if (streamOK) // ASCII marker matches, check stream header bytes as well
181 {
182 unsigned short header1 = static_cast<unsigned char>(s[len])<<8; // CMF byte
183 if (header1) // not end of string
184 {
185 unsigned short header = (static_cast<unsigned char>(s[len+1])) | header1; // FLG byte
186 // check for correct header (see https://www.rfc-editor.org/rfc/rfc1950)
187 return ((header&0x8F20)==0x0800) && (header%31)==0;
188 }
189 }
190 return false;
191 };
192
193 const size_t l = contents.length();
194 size_t i=0;
195 while (i<l)
196 {
197 if (!isEps && contents[i]=='s' && detectDeflateStreamStart(&contents[i]))
198 { // compressed stream start
199 int col=17;
200 i+=streamStart.length();
201 const size_t start=i;
202 DBG(("---- start stream at offset %08x\n",(int)i));
203 while (i<l)
204 {
205 if (contents[i]=='\n' && strncmp(&contents[i],streamEnd.c_str(),streamEnd.length())==0)
206 { // compressed block found in range [start..i]
207 DBG(("\n---- end stream at offset %08x\n",(int)i));
208 // decompress it into decompressBuf
209 std::vector<char> decompressBuf;
210 const char *source = &contents[start];
211 const size_t sourceLen = i-start;
212 size_t sourcePos = 0;
213 decompressBuf.reserve(sourceLen*2);
214 auto getter = [source,&sourcePos,sourceLen]() -> int {
215 return sourcePos<sourceLen ? static_cast<unsigned char>(source[sourcePos++]) : EOF;
216 };
217 auto putter = [&decompressBuf](const char c) -> int {
218 decompressBuf.push_back(c); return c;
219 };
220 Deflate(getter,putter);
221 // convert decompression buffer to string
222 std::string s(decompressBuf.begin(), decompressBuf.end());
223 DBG(("decompressed_data=[[[\n%s\n]]]\n",s.c_str()));
224 // search for bounding box marker
225 const size_t idx = s.find(boundingBox);
226 if (idx!=std::string::npos) // found bounding box in uncompressed data
227 {
228 return extractBoundingBox(s.c_str()+idx);
229 }
230 // continue searching after end stream marker
231 i+=streamEnd.length();
232 break;
233 }
234 else // compressed stream character
235 {
236 if (col>16) { col=0; DBG(("\n%08x: ",static_cast<int>(i))); }
237 DBG(("%02x ",static_cast<unsigned char>(contents[i])));
238 col++;
239 i++;
240 }
241 }
242 }
243 else if (((isEps && contents[i]=='%') || (!isEps && contents[i]=='/')) &&
244 strncmp(&contents[i],boundingBox.c_str(),boundingBox.length())==0)
245 { // uncompressed bounding box
246 return extractBoundingBox(&contents[i]);
247 }
248 else // uncompressed stream character
249 {
250 i++;
251 }
252 }
253 err("Failed to find bounding box in generated diagram file {}\n",fileName);
254 // nothing found
255 return false;
256}
257
258//---------------------------------------------------------------------------------
259
260DotRunner::DotRunner(const QCString& absDotName, const QCString& md5Hash)
261 : m_file(absDotName)
262 , m_md5Hash(md5Hash)
263 , m_dotExe(Doxygen::verifiedDotPath)
264 , m_cleanUp(Config_getBool(DOT_CLEANUP))
265{
266}
267
268
269void DotRunner::addJob(const QCString &format, const QCString &output,
270 const QCString &srcFile,int srcLine)
271{
272
273 for (auto& s: m_jobs)
274 {
275 if (s.format != format) continue;
276 if (s.output != output) continue;
277 // we have this job already
278 return;
279 }
280 auto args = QCString("-T") + format + " -o \"" + output + "\"";
281 m_jobs.emplace_back(format, output, args, srcFile, srcLine);
282}
283
285{
286 int index = output.findRev('.');
287 if (index < 0) return output;
288 return output.left(index);
289}
290
292{
293 int exitCode=0;
294
295 QCString dotArgs;
296
297 QCString srcFile;
298 int srcLine=-1;
299
300 // create output
301 if (Config_getBool(DOT_MULTI_TARGETS))
302 {
303 dotArgs=QCString("\"")+m_file+"\"";
304 for (auto& s: m_jobs)
305 {
306 dotArgs+=' ';
307 dotArgs+=s.args;
308 }
309 if (!m_jobs.empty())
310 {
311 srcFile = m_jobs.front().srcFile;
312 srcLine = m_jobs.front().srcLine;
313 }
314 if ((exitCode=Portable::system(m_dotExe,dotArgs,FALSE))!=0) goto error;
315 }
316 else
317 {
318 for (auto& s : m_jobs)
319 {
320 srcFile = s.srcFile;
321 srcLine = s.srcLine;
322 dotArgs=QCString("\"")+m_file+"\" "+s.args;
323 if ((exitCode=Portable::system(m_dotExe,dotArgs,FALSE))!=0) goto error;
324 }
325 }
326
327 // check output
328 // As there should be only one pdf file be generated, we don't need code for regenerating multiple pdf files in one call
329 for (auto& s : m_jobs)
330 {
331 if (s.format.startsWith("pdf"))
332 {
333 int width=0,height=0;
334 if (!readBoundingBox(s.output,&width,&height,FALSE)) goto error;
335 if ((width > MAX_LATEX_GRAPH_SIZE) || (height > MAX_LATEX_GRAPH_SIZE))
336 {
337 if (!resetPDFSize(width,height,getBaseNameOfOutput(s.output))) goto error;
338 dotArgs=QCString("\"")+m_file+"\" "+s.args;
339 if ((exitCode=Portable::system(m_dotExe,dotArgs,FALSE))!=0) goto error;
340 }
341 }
342
343 if (s.format.startsWith("png"))
344 {
345 checkPngResult(s.output);
346 }
347 }
348
349 // remove .dot files
350 if (m_cleanUp)
351 {
352 //printf("removing dot file %s\n",qPrint(m_file));
354 }
355
356 // create checksum file
357 if (!m_md5Hash.isEmpty())
358 {
359 QCString md5Name = getBaseNameOfOutput(m_file) + ".md5";
360 FILE *f = Portable::fopen(md5Name,"w");
361 if (f)
362 {
363 fwrite(m_md5Hash.data(),1,32,f);
364 fclose(f);
365 }
366 }
367 return TRUE;
368error:
369 err_full(srcFile,srcLine,"Problems running dot: exit code={}, command='{}', arguments='{}'",
370 exitCode,m_dotExe,dotArgs);
371 return FALSE;
372}
373
374
Class representing a directory in the file system.
Definition dir.h:75
bool remove(const std::string &path, bool acceptsAbsPath=true) const
Definition dir.cpp:314
bool rename(const std::string &orgName, const std::string &newName, bool acceptsAbsPath=true) const
Definition dir.cpp:321
QCString m_file
Definition dotrunner.h:64
bool m_cleanUp
Definition dotrunner.h:67
QCString m_md5Hash
Definition dotrunner.h:65
DotRunner(const QCString &absDotName, const QCString &md5Hash=QCString())
Creates a runner for a dot file.
void addJob(const QCString &format, const QCString &output, const QCString &srcFile, int srcLine)
Adds an additional job to the run.
bool run()
Runs dot for all jobs added.
std::vector< DotJob > m_jobs
Definition dotrunner.h:68
static bool readBoundingBox(const QCString &fileName, int *width, int *height, bool isEps)
QCString m_dotExe
Definition dotrunner.h:66
This class serves as a namespace for global variables used by doxygen.
Definition doxygen.h:94
This is an alternative implementation of QCString.
Definition qcstring.h:101
const std::string & str() const
Definition qcstring.h:537
int findRev(char c, int index=-1, bool cs=TRUE) const
Definition qcstring.cpp:91
QCString left(size_t len) const
Definition qcstring.h:214
#define Config_getBool(name)
Definition config.h:33
#define MAX_LATEX_GRAPH_INCH
Definition dotrunner.cpp:59
#define DBG(x)
Definition dotrunner.cpp:63
QCString getBaseNameOfOutput(const QCString &output)
static void checkPngResult(const QCString &imgName)
Definition dotrunner.cpp:69
#define MAX_LATEX_GRAPH_SIZE
Definition dotrunner.cpp:60
static bool resetPDFSize(const int width, const int height, const QCString &base)
Definition dotrunner.cpp:98
static bool extractBoundingBox(const QCString &formBase, int *x1, int *y1, int *x2, int *y2, double *x1hi, double *y1hi, double *x2hi, double *y2hi)
Definition formula.cpp:299
#define err(fmt,...)
Definition message.h:127
#define err_full(file, line, fmt,...)
Definition message.h:132
std::ifstream openInputStream(const QCString &name, bool binary=false, bool openAtEnd=false)
Definition portable.cpp:676
std::ofstream openOutputStream(const QCString &name, bool append=false)
Definition portable.cpp:665
void unlink(const QCString &fileName)
Definition portable.cpp:561
FILE * fopen(const QCString &fileName, const QCString &mode)
Definition portable.cpp:366
int system(const QCString &command, const QCString &args, bool commandHasConsole=true)
Definition portable.cpp:106
Portable versions of functions that are platform dependent.
#define TRUE
Definition qcstring.h:37
#define FALSE
Definition qcstring.h:34
A bunch of utility functions.