]> git.lyx.org Git - lyx.git/blob - src/graphics/epstools.cpp
Replace Boost.Signals with Boost.Signals2
[lyx.git] / src / graphics / epstools.cpp
1 /**
2  * \file epstools.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * parts Copyright 1985, 1990, 1993 Free Software Foundation, Inc.
7  *
8  * \author Ivan Schreter
9  * \author Dirk Niggemann
10  * \author Asger Alstrup
11  * \author Lars Gullik Bjønnes
12  * \author Jean-Marc Lasgouttes
13  * \author Angus Leeming
14  * \author John Levon
15  * \author Herbert Voß
16  *
17  * Full author contact details are available in file CREDITS.
18  *
19  * Utilities for manipulation of Encapsulated Postscript files
20  */
21
22 #include <config.h>
23
24 #include "graphics/epstools.h"
25
26 #include "Format.h"
27
28 #include "support/debug.h"
29 #include "support/filetools.h"
30 #include "support/FileName.h"
31 #include "support/regex.h"
32
33 using namespace std;
34 using namespace lyx::support;
35
36 namespace lyx {
37 namespace graphics {
38
39
40 string const readBB_from_PSFile(FileName const & file)
41 {
42         // in a (e)ps-file it's an entry like %%BoundingBox:23 45 321 345
43         // It seems that every command in the header has an own line,
44         // getline() should work for all files.
45         // On the other hand some plot programs write the bb at the
46         // end of the file. Than we have in the header:
47         // %%BoundingBox: (atend)
48         // In this case we must check the end.
49         bool const zipped = formats.isZippedFile(file);
50         FileName const file_ = zipped ? unzipFile(file) : file;
51         string const format = formats.getFormatFromFile(file_);
52
53         if (!Formats::isPostScriptFileFormat(format)) {
54                 LYXERR(Debug::GRAPHICS, "[readBB_from_PSFile] no(e)ps-format");
55                 if (zipped)
56                         file_.removeFile();
57                 return string();
58         }
59
60         static lyx::regex bbox_re("^%%BoundingBox:\\s*([-]*[[:digit:]]+)"
61                 "\\s+([-]*[[:digit:]]+)\\s+([-]*[[:digit:]]+)\\s+([-]*[[:digit:]]+)");
62         ifstream is(file_.toFilesystemEncoding().c_str());
63         while (is) {
64                 string s;
65                 getline(is,s);
66                 lyx::smatch what;
67                 if (regex_match(s, what, bbox_re)) {
68                         // Our callers expect the tokens in the string
69                         // separated by single spaces.
70                         // FIXME: change return type from string to something
71                         // sensible
72                         ostringstream os;
73                         os << what.str(1) << ' ' << what.str(2) << ' '
74                            << what.str(3) << ' ' << what.str(4);
75                         string const bb = os.str();
76                         LYXERR(Debug::GRAPHICS, "[readBB_from_PSFile] " << bb);
77                         if (zipped)
78                                 file_.removeFile();
79                         return bb;
80                 }
81         }
82         LYXERR(Debug::GRAPHICS, "[readBB_from_PSFile] no bb found");
83         if (zipped)
84                 file_.removeFile();
85         return string();
86 }
87
88
89 } // namespace graphics
90 } // namespace lyx