]> git.lyx.org Git - lyx.git/blob - src/lyxtextclasslist.C
hopefully fix tex2lyx linking.
[lyx.git] / src / lyxtextclasslist.C
1 /**
2  * \file lyxtextclasslist.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "lyxtextclasslist.h"
15 #include "lyxtextclass.h"
16 #include "debug.h"
17 #include "lyxlex.h"
18
19 #include "support/filetools.h"
20
21 #include <boost/bind.hpp>
22 #include <boost/regex.hpp>
23 #include <boost/filesystem/operations.hpp>
24 #include <fstream>
25
26
27 namespace lyx {
28 namespace fs = boost::filesystem;
29
30 using support::libFileSearch;
31 using support::makeDisplayPath;
32
33 using boost::bind;
34 using boost::regex;
35 using boost::smatch;
36
37 #ifndef CXX_GLOBAL_CSTD
38 using std::exit;
39 #endif
40
41 using std::endl;
42 using std::equal_to;
43 using std::find_if;
44 using std::make_pair;
45 using std::sort;
46 using std::string;
47 using std::pair;
48 using std::ifstream;
49
50
51 // Gets textclass number from name
52 pair<bool, textclass_type> const
53 LyXTextClassList::numberOfClass(string const & textclass) const
54 {
55         ClassList::const_iterator cit =
56                 find_if(classlist_.begin(), classlist_.end(),
57                         bind(equal_to<string>(),
58                              bind(&LyXTextClass::name, _1),
59                              textclass));
60
61         return cit != classlist_.end() ?
62                 make_pair(true, textclass_type(cit - classlist_.begin())) :
63                 make_pair(false, textclass_type(0));
64 }
65
66
67 // Gets a textclass structure from number
68 LyXTextClass const &
69 LyXTextClassList::operator[](textclass_type textclass) const
70 {
71         classlist_[textclass].load();
72         if (textclass < classlist_.size())
73                 return classlist_[textclass];
74         else
75                 return classlist_[0];
76 }
77
78
79 // used when sorting the textclass list.
80 class less_textclass_avail_desc
81         : public std::binary_function<LyXTextClass, LyXTextClass, int>
82 {
83 public:
84         int operator()(LyXTextClass const & tc1,
85                        LyXTextClass const & tc2) const
86         {
87                 // Ordering criteria:
88                 //   1. Availability of text class
89                 //   2. Description (lexicographic)
90
91                 return (tc1.isTeXClassAvailable() && !tc2.isTeXClassAvailable()) ||
92                         (tc1.isTeXClassAvailable() == tc2.isTeXClassAvailable() &&
93                          tc1.description() < tc2.description());
94         }
95 };
96
97
98 // Reads LyX textclass definitions according to textclass config file
99 bool LyXTextClassList::read()
100 {
101         LyXLex lex(0, 0);
102         string real_file = libFileSearch("", "textclass.lst");
103         lyxerr[Debug::TCLASS] << "Reading textclasses from `"
104                               << real_file << '\'' << endl;
105
106         if (real_file.empty()) {
107                 lyxerr << "LyXTextClassList::Read: unable to find "
108                         "textclass file  `" << to_utf8(makeDisplayPath(real_file, 1000))
109                        << "'. Exiting." << endl;
110                 return false;
111                 // This causes LyX to end... Not a desirable behaviour. Lgb
112                 // What do you propose? That the user gets a file dialog
113                 // and is allowed to hunt for the file? (Asger)
114                 // more that we have a layout for minimal.cls statically
115                 // compiled in... (Lgb)
116         }
117
118         if (!lex.setFile(real_file)) {
119                 lyxerr << "LyXTextClassList::Read: "
120                         "lyxlex was not able to set file: "
121                        << real_file << endl;
122         }
123
124         if (!lex.isOK()) {
125                 lyxerr << "LyXTextClassList::Read: unable to open "
126                         "textclass file  `" << to_utf8(makeDisplayPath(real_file, 1000))
127                        << "'\nCheck your installation. LyX can't continue."
128                        << endl;
129                 return false;
130         }
131
132         bool finished = false;
133         // Parse config-file
134         lyxerr[Debug::TCLASS] << "Starting parsing of textclass.lst" << endl;
135         while (lex.isOK() && !finished) {
136                 lyxerr[Debug::TCLASS] << "\tline by line" << endl;
137                 switch (lex.lex()) {
138                 case LyXLex::LEX_FEOF:
139                         finished = true;
140                         break;
141                 default:
142                         string const fname = lex.getString();
143                         lyxerr[Debug::TCLASS] << "Fname: " << fname << endl;
144                         if (lex.next()) {
145                                 string const clname = lex.getString();
146                                 lyxerr[Debug::TCLASS] << "Clname: " << clname << endl;
147                                 if (lex.next()) {
148                                         string const desc = lex.getString();
149                                         lyxerr[Debug::TCLASS] << "Desc: " << desc << endl;
150                                         if (lex.next()) {
151                                                 bool avail = lex.getBool();
152                                                 lyxerr[Debug::TCLASS] << "Avail: " << avail << endl;
153                                                 // This code is run when we have
154                                                 // fname, clname, desc, and avail
155                                                 LyXTextClass tmpl(fname, clname, desc, avail);
156                                                 if (lyxerr.debugging(Debug::TCLASS)) {
157                                                         tmpl.load();
158                                                 }
159                                                 classlist_.push_back(tmpl);
160                                         }
161                                 }
162                         }
163                 }
164         }
165         lyxerr[Debug::TCLASS] << "End of parsing of textclass.lst" << endl;
166
167         if (classlist_.empty()) {
168                 lyxerr << "LyXTextClassList::Read: no textclasses found!"
169                        << endl;
170                 return false;
171         }
172         // Ok everything loaded ok, now sort the list.
173         sort(classlist_.begin(), classlist_.end(), less_textclass_avail_desc());
174         return true;
175 }
176
177
178 std::pair<bool, textclass_type> const
179 LyXTextClassList::addTextClass(std::string const & textclass, std::string const & path)
180 {
181         // only check for textclass.layout file, .cls can be anywhere in $TEXINPUTS
182         // NOTE: latex class name is defined in textclass.layout, which can be different from textclass
183         string layout_file = path + "/" + textclass + ".layout";
184         if (fs::exists(layout_file)) {
185                 lyxerr[Debug::TCLASS] << "Adding class " << textclass << " from directory " << path << endl;
186                 // Read .layout file and get description, real latex classname etc
187                 //
188                 // This is a C++ version of function processLayoutFile in configure.py,
189                 // which uses the following regex
190                 //     \Declare(LaTeX|DocBook)Class\s*(\[([^,]*)(,.*)*\])*\s*{(.*)}
191                 ifstream ifs(layout_file.c_str());
192                 static regex const reg("^#\\s*\\\\Declare(LaTeX|DocBook)Class\\s*"
193                         "(?:\\[([^,]*)(?:,.*)*\\])*\\s*\\{(.*)\\}\\s*");
194                 string line;
195                 while (getline(ifs, line)) {
196                         // look for the \DeclareXXXClass line
197                         smatch sub;
198                         if (regex_match(line, sub, reg)) {
199                                 // returns: whole string, classtype (not used here), first option, description
200                                 BOOST_ASSERT(sub.size()==4);
201                                 // now, add the layout to textclass.
202                                 LyXTextClass tmpl(textclass, sub.str(2)==""?textclass:sub.str(2), 
203                                         sub.str(3) + " <" + path + ">", true);
204                                 if (lyxerr.debugging(Debug::TCLASS))
205                                         tmpl.load(path);
206                                 classlist_.push_back(tmpl);
207                                 return make_pair(true, classlist_.size() - 1);
208                         }
209                 }
210         }
211         // If .layout is not in local directory, or an invalid layout is found, return false
212         return make_pair(false, textclass_type(0));
213 }
214         
215
216 // Global variable: textclass table.
217 LyXTextClassList textclasslist;
218
219
220 // Reads the style files
221 bool LyXSetStyle()
222 {
223         lyxerr[Debug::TCLASS] << "LyXSetStyle: parsing configuration..." << endl;
224
225         if (!textclasslist.read()) {
226                 lyxerr[Debug::TCLASS] << "LyXSetStyle: an error occured "
227                         "during parsing.\n             Exiting." << endl;
228                 return false;
229         }
230
231         lyxerr[Debug::TCLASS] << "LyXSetStyle: configuration parsed." << endl;
232         return true;
233 }
234
235
236 } // namespace lyx