]> git.lyx.org Git - lyx.git/blob - src/insets/InsetInclude.cpp
Cocoa based Qt-4.6 needs to paint every character separately to match metrics computa...
[lyx.git] / src / insets / InsetInclude.cpp
1 /**
2  * \file InsetInclude.cpp
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 Richard Heck (conversion to InsetCommand)
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetInclude.h"
15
16 #include "Buffer.h"
17 #include "buffer_funcs.h"
18 #include "BufferList.h"
19 #include "BufferParams.h"
20 #include "BufferView.h"
21 #include "Converter.h"
22 #include "Cursor.h"
23 #include "DispatchResult.h"
24 #include "Encoding.h"
25 #include "ErrorList.h"
26 #include "Exporter.h"
27 #include "Format.h"
28 #include "FuncRequest.h"
29 #include "FuncStatus.h"
30 #include "LaTeXFeatures.h"
31 #include "LayoutFile.h"
32 #include "LayoutModuleList.h"
33 #include "LyX.h"
34 #include "LyXRC.h"
35 #include "Lexer.h"
36 #include "MetricsInfo.h"
37 #include "output_xhtml.h"
38 #include "OutputParams.h"
39 #include "TextClass.h"
40 #include "TocBackend.h"
41
42 #include "frontends/alert.h"
43 #include "frontends/Painter.h"
44
45 #include "graphics/PreviewImage.h"
46 #include "graphics/PreviewLoader.h"
47
48 #include "insets/InsetLabel.h"
49 #include "insets/InsetListingsParams.h"
50 #include "insets/RenderPreview.h"
51
52 #include "mathed/MacroTable.h"
53
54 #include "support/convert.h"
55 #include "support/debug.h"
56 #include "support/docstream.h"
57 #include "support/FileNameList.h"
58 #include "support/filetools.h"
59 #include "support/gettext.h"
60 #include "support/lassert.h"
61 #include "support/lstrings.h" // contains
62 #include "support/lyxalgo.h"
63
64 #include "support/bind.h"
65
66 using namespace std;
67 using namespace lyx::support;
68
69 namespace lyx {
70
71 namespace Alert = frontend::Alert;
72
73
74 namespace {
75
76 docstring const uniqueID()
77 {
78         static unsigned int seed = 1000;
79         return "file" + convert<docstring>(++seed);
80 }
81
82
83 /// the type of inclusion
84 enum Types {
85         INCLUDE, VERB, INPUT, VERBAST, LISTINGS, NONE
86 };
87
88
89 Types type(string const & s)
90 {
91         if (s == "input")
92                 return INPUT;
93         if (s == "verbatiminput")
94                 return VERB;
95         if (s == "verbatiminput*")
96                 return VERBAST;
97         if (s == "lstinputlisting")
98                 return LISTINGS;
99         if (s == "include")
100                 return INCLUDE;
101         return NONE;
102 }
103
104
105 Types type(InsetCommandParams const & params)
106 {
107         return type(params.getCmdName());
108 }
109
110
111 bool isListings(InsetCommandParams const & params)
112 {
113         return type(params) == LISTINGS;
114 }
115
116
117 bool isVerbatim(InsetCommandParams const & params)
118 {
119         Types const t = type(params);
120         return t == VERB || t == VERBAST;
121 }
122
123
124 bool isInputOrInclude(InsetCommandParams const & params)
125 {
126         Types const t = type(params);
127         return t == INPUT || t == INCLUDE;
128 }
129
130
131 FileName const masterFileName(Buffer const & buffer)
132 {
133         return buffer.masterBuffer()->fileName();
134 }
135
136
137 void add_preview(RenderMonitoredPreview &, InsetInclude const &, Buffer const &);
138
139
140 string const parentFileName(Buffer const & buffer)
141 {
142         return buffer.absFileName();
143 }
144
145
146 FileName const includedFileName(Buffer const & buffer,
147                               InsetCommandParams const & params)
148 {
149         return makeAbsPath(to_utf8(params["filename"]),
150                         onlyPath(parentFileName(buffer)));
151 }
152
153
154 InsetLabel * createLabel(Buffer * buf, docstring const & label_str)
155 {
156         if (label_str.empty())
157                 return 0;
158         InsetCommandParams icp(LABEL_CODE);
159         icp["name"] = label_str;
160         return new InsetLabel(buf, icp);
161 }
162
163 } // namespace anon
164
165
166 InsetInclude::InsetInclude(Buffer * buf, InsetCommandParams const & p)
167         : InsetCommand(buf, p), include_label(uniqueID()),
168           preview_(new RenderMonitoredPreview(this)), failedtoload_(false),
169           set_label_(false), label_(0), child_buffer_(0)
170 {
171         preview_->fileChanged(bind(&InsetInclude::fileChanged, this));
172
173         if (isListings(params())) {
174                 InsetListingsParams listing_params(to_utf8(p["lstparams"]));
175                 label_ = createLabel(buffer_, from_utf8(listing_params.getParamValue("label")));
176         } else if (isInputOrInclude(params()) && buf)
177                 loadIfNeeded();
178 }
179
180
181 InsetInclude::InsetInclude(InsetInclude const & other)
182         : InsetCommand(other), include_label(other.include_label),
183           preview_(new RenderMonitoredPreview(this)), failedtoload_(false),
184           set_label_(false), label_(0), child_buffer_(0)
185 {
186         preview_->fileChanged(bind(&InsetInclude::fileChanged, this));
187
188         if (other.label_)
189                 label_ = new InsetLabel(*other.label_);
190 }
191
192
193 InsetInclude::~InsetInclude()
194 {
195         if (isBufferLoaded())
196                 buffer().invalidateBibfileCache();
197         delete label_;
198 }
199
200
201 void InsetInclude::setBuffer(Buffer & buffer)
202 {
203         InsetCommand::setBuffer(buffer);
204         if (label_)
205                 label_->setBuffer(buffer);
206 }
207
208
209 void InsetInclude::setChildBuffer(Buffer * buffer)
210 {
211         child_buffer_ = buffer;
212 }
213
214
215 ParamInfo const & InsetInclude::findInfo(string const & /* cmdName */)
216 {
217         // FIXME
218         // This is only correct for the case of listings, but it'll do for now.
219         // In the other cases, this second parameter should just be empty.
220         static ParamInfo param_info_;
221         if (param_info_.empty()) {
222                 param_info_.add("filename", ParamInfo::LATEX_REQUIRED);
223                 param_info_.add("lstparams", ParamInfo::LATEX_OPTIONAL);
224         }
225         return param_info_;
226 }
227
228
229 bool InsetInclude::isCompatibleCommand(string const & s)
230 {
231         return type(s) != NONE;
232 }
233
234
235 void InsetInclude::doDispatch(Cursor & cur, FuncRequest & cmd)
236 {
237         switch (cmd.action()) {
238
239         case LFUN_INSET_EDIT: {
240                 editIncluded(to_utf8(params()["filename"]));
241                 break;
242         }
243
244         case LFUN_INSET_MODIFY: {
245                 // It should be OK just to invalidate the cache in setParams()
246                 // If not....
247                 // child_buffer_ = 0;
248                 InsetCommandParams p(INCLUDE_CODE);
249                 if (cmd.getArg(0) == "changetype") {
250                         cur.recordUndo();
251                         InsetCommand::doDispatch(cur, cmd);
252                         p = params();
253                 } else
254                         InsetCommand::string2params(to_utf8(cmd.argument()), p);
255                 if (!p.getCmdName().empty()) {
256                         if (isListings(p)){
257                                 InsetListingsParams new_params(to_utf8(p["lstparams"]));
258                                 docstring const new_label =
259                                         from_utf8(new_params.getParamValue("label"));
260                                 
261                                 if (new_label.empty()) {
262                                         delete label_;
263                                         label_ = 0;
264                                 } else {
265                                         docstring old_label;
266                                         if (label_) 
267                                                 old_label = label_->getParam("name");
268                                         else {
269                                                 label_ = createLabel(buffer_, new_label);
270                                                 label_->setBuffer(buffer());
271                                         }                                       
272
273                                         if (new_label != old_label) {
274                                                 label_->updateCommand(new_label);
275                                                 // the label might have been adapted (duplicate)
276                                                 if (new_label != label_->getParam("name")) {
277                                                         new_params.addParam("label", "{" + 
278                                                                 to_utf8(label_->getParam("name")) + "}", true);
279                                                         p["lstparams"] = from_utf8(new_params.params());
280                                                 }
281                                         }
282                                 }
283                         }
284                         cur.recordUndo();
285                         setParams(p);
286                         cur.forceBufferUpdate();
287                 } else
288                         cur.noScreenUpdate();
289                 break;
290         }
291
292         //pass everything else up the chain
293         default:
294                 InsetCommand::doDispatch(cur, cmd);
295                 break;
296         }
297 }
298
299
300 void InsetInclude::editIncluded(string const & file)
301 {
302         string const ext = support::getExtension(file);
303         if (ext == "lyx") {
304                 FuncRequest fr(LFUN_BUFFER_CHILD_OPEN, file);
305                 lyx::dispatch(fr);
306         } else
307                 // tex file or other text file in verbatim mode
308                 formats.edit(buffer(),
309                         support::makeAbsPath(file, support::onlyPath(buffer().absFileName())),
310                         "text");
311 }
312
313
314 bool InsetInclude::getStatus(Cursor & cur, FuncRequest const & cmd,
315                 FuncStatus & flag) const
316 {
317         switch (cmd.action()) {
318
319         case LFUN_INSET_EDIT:
320                 flag.setEnabled(true);
321                 return true;
322
323         case LFUN_INSET_MODIFY:
324                 if (cmd.getArg(0) == "changetype")
325                         return InsetCommand::getStatus(cur, cmd, flag);
326                 else
327                         flag.setEnabled(true);
328                 return true;
329
330         default:
331                 return InsetCommand::getStatus(cur, cmd, flag);
332         }
333 }
334
335
336 void InsetInclude::setParams(InsetCommandParams const & p)
337 {
338         // invalidate the cache
339         child_buffer_ = 0;
340
341         InsetCommand::setParams(p);
342         set_label_ = false;
343
344         if (preview_->monitoring())
345                 preview_->stopMonitoring();
346
347         if (type(params()) == INPUT)
348                 add_preview(*preview_, *this, buffer());
349
350         buffer().invalidateBibfileCache();
351 }
352
353
354 bool InsetInclude::isChildIncluded() const
355 {
356         std::list<std::string> includeonlys =
357                 buffer().params().getIncludedChildren();
358         if (includeonlys.empty())
359                 return true;
360         return (std::find(includeonlys.begin(),
361                           includeonlys.end(),
362                           to_utf8(params()["filename"])) != includeonlys.end());
363 }
364
365
366 docstring InsetInclude::screenLabel() const
367 {
368         docstring temp;
369
370         switch (type(params())) {
371                 case INPUT:
372                         temp = buffer().B_("Input");
373                         break;
374                 case VERB:
375                         temp = buffer().B_("Verbatim Input");
376                         break;
377                 case VERBAST:
378                         temp = buffer().B_("Verbatim Input*");
379                         break;
380                 case INCLUDE:
381                         if (isChildIncluded())
382                                 temp = buffer().B_("Include");
383                         else
384                                 temp += buffer().B_("Include (excluded)");
385                         break;
386                 case LISTINGS:
387                         temp = listings_label_;
388                         break;
389                 case NONE:
390                         LASSERT(false, /**/);
391         }
392
393         temp += ": ";
394
395         if (params()["filename"].empty())
396                 temp += "???";
397         else
398                 temp += from_utf8(onlyFileName(to_utf8(params()["filename"])));
399
400         return temp;
401 }
402
403
404 Buffer * InsetInclude::getChildBuffer() const
405 {
406         Buffer * childBuffer = loadIfNeeded(); 
407
408         // FIXME: recursive includes
409         return (childBuffer == &buffer()) ? 0 : childBuffer;
410 }
411
412
413 Buffer * InsetInclude::loadIfNeeded() const
414 {
415         // This is for background export and preview. We don't even want to
416         // try to load the cloned child document again.
417         if (buffer().isClone())
418                 return child_buffer_;
419         
420         // Don't try to load it again if we failed before.
421         if (failedtoload_ || isVerbatim(params()) || isListings(params()))
422                 return 0;
423
424         FileName const included_file = includedFileName(buffer(), params());
425         // Use cached Buffer if possible.
426         if (child_buffer_ != 0) {
427                 if (theBufferList().isLoaded(child_buffer_)
428                 // additional sanity check: make sure the Buffer really is
429                     // associated with the file we want.
430                     && child_buffer_ == theBufferList().getBuffer(included_file))
431                         return child_buffer_;
432                 // Buffer vanished, so invalidate cache and try to reload.
433                 child_buffer_ = 0;
434         }
435
436         if (!isLyXFileName(included_file.absFileName()))
437                 return 0;
438
439         Buffer * child = theBufferList().getBuffer(included_file);
440         if (!child) {
441                 // the readonly flag can/will be wrong, not anymore I think.
442                 if (!included_file.exists())
443                         return 0;
444
445                 child = theBufferList().newBuffer(included_file.absFileName());
446                 if (!child)
447                         // Buffer creation is not possible.
448                         return 0;
449
450                 // Set parent before loading, such that macros can be tracked
451                 child->setParent(&buffer());
452
453                 if (child->loadLyXFile() != Buffer::ReadSuccess) {
454                         failedtoload_ = true;
455                         child->setParent(0);
456                         //close the buffer we just opened
457                         theBufferList().release(child);
458                         return 0;
459                 }
460
461                 if (!child->errorList("Parse").empty()) {
462                         // FIXME: Do something.
463                 }
464         } else {
465                 // The file was already loaded, so, simply
466                 // inform parent buffer about local macros.
467                 Buffer const * parent = &buffer();
468                 child->setParent(parent);
469                 MacroNameSet macros;
470                 child->listMacroNames(macros);
471                 MacroNameSet::const_iterator cit = macros.begin();
472                 MacroNameSet::const_iterator end = macros.end();
473                 for (; cit != end; ++cit)
474                         parent->usermacros.insert(*cit);
475         }
476
477         // Cache the child buffer.
478         child_buffer_ = child;
479         return child;
480 }
481
482
483 void InsetInclude::latex(otexstream & os, OutputParams const & runparams) const
484 {
485         string incfile = to_utf8(params()["filename"]);
486
487         // Do nothing if no file name has been specified
488         if (incfile.empty())
489                 return;
490
491         FileName const included_file = includedFileName(buffer(), params());
492
493         // Check we're not trying to include ourselves.
494         // FIXME RECURSIVE INCLUDE
495         // This isn't sufficient, as the inclusion could be downstream.
496         // But it'll have to do for now.
497         if (isInputOrInclude(params()) &&
498                 buffer().absFileName() == included_file.absFileName())
499         {
500                 Alert::error(_("Recursive input"),
501                                bformat(_("Attempted to include file %1$s in itself! "
502                                "Ignoring inclusion."), from_utf8(incfile)));
503                 return;
504         }
505
506         Buffer const * const masterBuffer = buffer().masterBuffer();
507
508         // if incfile is relative, make it relative to the master
509         // buffer directory.
510         if (!FileName::isAbsolute(incfile)) {
511                 // FIXME UNICODE
512                 incfile = to_utf8(makeRelPath(from_utf8(included_file.absFileName()),
513                                               from_utf8(masterBuffer->filePath())));
514         }
515
516         // write it to a file (so far the complete file)
517         string exportfile;
518         string mangled;
519         // bug 5681
520         if (type(params()) == LISTINGS) {
521                 exportfile = incfile;
522                 mangled = DocFileName(included_file).mangledFileName();
523         } else {
524                 exportfile = changeExtension(incfile, ".tex");
525                 mangled = DocFileName(changeExtension(included_file.absFileName(), ".tex")).
526                         mangledFileName();
527         }
528
529         FileName const writefile(makeAbsPath(mangled, masterBuffer->temppath()));
530
531         if (!runparams.nice)
532                 incfile = mangled;
533         else if (!isValidLaTeXFileName(incfile)) {
534                 frontend::Alert::warning(_("Invalid filename"),
535                         _("The following filename will cause troubles "
536                           "when running the exported file through LaTeX: ") +
537                         from_utf8(incfile));
538         }
539         else if (!isValidDVIFileName(incfile)) {
540                 frontend::Alert::warning(_("Problematic filename for DVI"),
541                         _("The following filename can cause troubles "
542                           "when running the exported file through LaTeX "
543                           "and opening the resulting DVI: ") +
544                         from_utf8(incfile), true);
545         }
546         LYXERR(Debug::LATEX, "incfile:" << incfile);
547         LYXERR(Debug::LATEX, "exportfile:" << exportfile);
548         LYXERR(Debug::LATEX, "writefile:" << writefile);
549
550         string const tex_format = flavor2format(runparams.flavor);
551         if (runparams.inComment || runparams.dryrun) {
552                 //Don't try to load or copy the file if we're
553                 //in a comment or doing a dryrun
554         } else if (isInputOrInclude(params()) &&
555                  isLyXFileName(included_file.absFileName())) {
556                 // if it's a LyX file and we're inputting or including,
557                 // try to load it so we can write the associated latex
558
559                 Buffer * tmp = loadIfNeeded();
560                 if (!tmp) {
561                         docstring text = bformat(_("Could not load included "
562                                 "file\n`%1$s'\n"
563                                 "Please, check whether it actually exists."),
564                                 included_file.displayName());
565                         Alert::warning(_("Missing included file"), text);
566                         return;
567                 }
568
569                 if (tmp->params().baseClass() != masterBuffer->params().baseClass()) {
570                         // FIXME UNICODE
571                         docstring text = bformat(_("Included file `%1$s'\n"
572                                 "has textclass `%2$s'\n"
573                                 "while parent file has textclass `%3$s'."),
574                                 included_file.displayName(),
575                                 from_utf8(tmp->params().documentClass().name()),
576                                 from_utf8(masterBuffer->params().documentClass().name()));
577                         Alert::warning(_("Different textclasses"), text, true);
578                 }
579
580                 // Make sure modules used in child are all included in master
581                 // FIXME It might be worth loading the children's modules into the master
582                 // over in BufferParams rather than doing this check.
583                 LayoutModuleList const masterModules = masterBuffer->params().getModules();
584                 LayoutModuleList const childModules = tmp->params().getModules();
585                 LayoutModuleList::const_iterator it = childModules.begin();
586                 LayoutModuleList::const_iterator end = childModules.end();
587                 for (; it != end; ++it) {
588                         string const module = *it;
589                         LayoutModuleList::const_iterator found =
590                                 find(masterModules.begin(), masterModules.end(), module);
591                         if (found == masterModules.end()) {
592                                 docstring text = bformat(_("Included file `%1$s'\n"
593                                         "uses module `%2$s'\n"
594                                         "which is not used in parent file."),
595                                         included_file.displayName(), from_utf8(module));
596                                 Alert::warning(_("Module not found"), text);
597                         }
598                 }
599
600                 tmp->markDepClean(masterBuffer->temppath());
601
602                 // Don't assume the child's format is latex
603                 string const inc_format = tmp->params().bufferFormat();
604                 FileName const tmpwritefile(changeExtension(writefile.absFileName(),
605                         formats.extension(inc_format)));
606
607                 // FIXME: handle non existing files
608                 // FIXME: Second argument is irrelevant!
609                 // since only_body is true, makeLaTeXFile will not look at second
610                 // argument. Should we set it to string(), or should makeLaTeXFile
611                 // make use of it somehow? (JMarc 20031002)
612                 // The included file might be written in a different encoding
613                 // and language.
614                 Encoding const * const oldEnc = runparams.encoding;
615                 Language const * const oldLang = runparams.master_language;
616                 // If the master has full unicode flavor (XeTeX, LuaTeX),
617                 // the children must be encoded in plain utf8!
618                 runparams.encoding = runparams.isFullUnicode() ?
619                         encodings.fromLyXName("utf8-plain")
620                         : &tmp->params().encoding();
621                 runparams.master_language = buffer().params().language;
622                 runparams.par_begin = 0;
623                 runparams.par_end = tmp->paragraphs().size();
624                 if (!tmp->makeLaTeXFile(tmpwritefile, masterFileName(buffer()).
625                                 onlyPath().absFileName(), runparams, false)) {
626                         docstring msg = bformat(_("Included file `%1$s' "
627                                         "was not exported correctly.\nWarning: "
628                                         "LaTeX export is probably incomplete."),
629                                         included_file.displayName());
630                         ErrorList & el = tmp->errorList("Export");
631                         if (!el.empty())
632                                 msg = bformat(from_ascii("%1$s\n\n%2$s\n\n%3$s"),
633                                                 msg, el.begin()->error,
634                                                 el.begin()->description);
635                         Alert::warning(_("Export failure"), msg);
636                 }
637                 runparams.encoding = oldEnc;
638                 runparams.master_language = oldLang;
639
640                 // If needed, use converters to produce a latex file from the child
641                 if (tmpwritefile != writefile) {
642                         ErrorList el;
643                         bool const success =
644                                 theConverters().convert(tmp, tmpwritefile, writefile,
645                                                         included_file,
646                                                         inc_format, tex_format, el);
647
648                         if (!success) {
649                                 docstring msg = bformat(_("Included file `%1$s' "
650                                                 "was not exported correctly.\nWarning: "
651                                                 "LaTeX export is probably incomplete."),
652                                                 included_file.displayName());
653                                 if (!el.empty())
654                                         msg = bformat(from_ascii("%1$s\n\n%2$s\n\n%3$s"),
655                                                         msg, el.begin()->error,
656                                                         el.begin()->description);
657                                 Alert::warning(_("Export failure"), msg);
658                         }
659                 }
660         } else {
661                 // In this case, it's not a LyX file, so we copy the file
662                 // to the temp dir, so that .aux files etc. are not created
663                 // in the original dir. Files included by this file will be
664                 // found via input@path, see ../Buffer.cpp.
665                 unsigned long const checksum_in  = included_file.checksum();
666                 unsigned long const checksum_out = writefile.checksum();
667
668                 if (checksum_in != checksum_out) {
669                         if (!included_file.copyTo(writefile)) {
670                                 // FIXME UNICODE
671                                 LYXERR(Debug::LATEX,
672                                         to_utf8(bformat(_("Could not copy the file\n%1$s\n"
673                                                                   "into the temporary directory."),
674                                                    from_utf8(included_file.absFileName()))));
675                                 return;
676                         }
677                 }
678         }
679
680         switch (type(params())) {
681         case VERB:
682         case VERBAST: {
683                 incfile = latex_path(incfile);
684                 // FIXME UNICODE
685                 os << '\\' << from_ascii(params().getCmdName()) << '{'
686                    << from_utf8(incfile) << '}';
687                 break;
688         } 
689         case INPUT: {
690                 runparams.exportdata->addExternalFile(tex_format, writefile,
691                                                       exportfile);
692
693                 // \input wants file with extension (default is .tex)
694                 if (!isLyXFileName(included_file.absFileName())) {
695                         incfile = latex_path(incfile);
696                         // FIXME UNICODE
697                         os << '\\' << from_ascii(params().getCmdName())
698                            << '{' << from_utf8(incfile) << '}';
699                 } else {
700                 incfile = changeExtension(incfile, ".tex");
701                 incfile = latex_path(incfile);
702                         // FIXME UNICODE
703                         os << '\\' << from_ascii(params().getCmdName())
704                            << '{' << from_utf8(incfile) <<  '}';
705                 }
706                 break;
707         } 
708         case LISTINGS: {
709                 os << '\\' << from_ascii(params().getCmdName());
710                 string const opt = to_utf8(params()["lstparams"]);
711                 // opt is set in QInclude dialog and should have passed validation.
712                 InsetListingsParams params(opt);
713                 if (!params.params().empty())
714                         os << "[" << from_utf8(params.params()) << "]";
715                 os << '{'  << from_utf8(incfile) << '}';
716                 break;
717         } 
718         case INCLUDE: {
719                 runparams.exportdata->addExternalFile(tex_format, writefile,
720                                                       exportfile);
721
722                 // \include don't want extension and demands that the
723                 // file really have .tex
724                 incfile = changeExtension(incfile, string());
725                 incfile = latex_path(incfile);
726                 // FIXME UNICODE
727                 os << '\\' << from_ascii(params().getCmdName()) << '{'
728                    << from_utf8(incfile) << '}';
729                 break;
730         }
731         case NONE:
732                 break;
733         }
734 }
735
736
737 docstring InsetInclude::xhtml(XHTMLStream & xs, OutputParams const &rp) const
738 {
739         if (rp.inComment)
740                  return docstring();
741
742         // For verbatim and listings, we just include the contents of the file as-is.
743         // In the case of listings, we wrap it in <pre>.
744         bool const listing = isListings(params());
745         if (listing || isVerbatim(params())) {
746                 if (listing)
747                         xs << html::StartTag("pre");
748                 // FIXME: We don't know the encoding of the file, default to UTF-8.
749                 xs << includedFileName(buffer(), params()).fileContents("UTF-8");
750                 if (listing)
751                         xs << html::EndTag("pre");
752                 return docstring();
753         }
754
755         // We don't (yet) know how to Input or Include non-LyX files.
756         // (If we wanted to get really arcane, we could run some tex2html
757         // converter on the included file. But that's just masochistic.)
758         FileName const included_file = includedFileName(buffer(), params());
759         if (!isLyXFileName(included_file.absFileName())) {
760                 frontend::Alert::warning(_("Unsupported Inclusion"),
761                                          bformat(_("LyX does not know how to include non-LyX files when "
762                                                    "generating HTML output. Offending file:\n%1$s"),
763                                                     params()["filename"]));
764                 return docstring();
765         }
766
767         // In the other cases, we will generate the HTML and include it.
768
769         // Check we're not trying to include ourselves.
770         // FIXME RECURSIVE INCLUDE
771         if (buffer().absFileName() == included_file.absFileName()) {
772                 Alert::error(_("Recursive input"),
773                                bformat(_("Attempted to include file %1$s in itself! "
774                                "Ignoring inclusion."), params()["filename"]));
775                 return docstring();
776         }
777
778         Buffer const * const ibuf = loadIfNeeded();
779         if (!ibuf)
780                 return docstring();
781         ibuf->writeLyXHTMLSource(xs.os(), rp, true);
782         return docstring();
783 }
784
785
786 int InsetInclude::plaintext(odocstream & os, OutputParams const &) const
787 {
788         if (isVerbatim(params()) || isListings(params())) {
789                 os << '[' << screenLabel() << '\n';
790                 // FIXME: We don't know the encoding of the file, default to UTF-8.
791                 os << includedFileName(buffer(), params()).fileContents("UTF-8");
792                 os << "\n]";
793                 return PLAINTEXT_NEWLINE + 1; // one char on a separate line
794         } else {
795                 docstring const str = '[' + screenLabel() + ']';
796                 os << str;
797                 return str.size();
798         }
799 }
800
801
802 int InsetInclude::docbook(odocstream & os, OutputParams const & runparams) const
803 {
804         string incfile = to_utf8(params()["filename"]);
805
806         // Do nothing if no file name has been specified
807         if (incfile.empty())
808                 return 0;
809
810         string const included_file = includedFileName(buffer(), params()).absFileName();
811
812         // Check we're not trying to include ourselves.
813         // FIXME RECURSIVE INCLUDE
814         // This isn't sufficient, as the inclusion could be downstream.
815         // But it'll have to do for now.
816         if (buffer().absFileName() == included_file) {
817                 Alert::error(_("Recursive input"),
818                                bformat(_("Attempted to include file %1$s in itself! "
819                                "Ignoring inclusion."), from_utf8(incfile)));
820                 return 0;
821         }
822
823         // write it to a file (so far the complete file)
824         string const exportfile = changeExtension(incfile, ".sgml");
825         DocFileName writefile(changeExtension(included_file, ".sgml"));
826
827         Buffer * tmp = loadIfNeeded();
828         if (tmp) {
829                 string const mangled = writefile.mangledFileName();
830                 writefile = makeAbsPath(mangled,
831                                         buffer().masterBuffer()->temppath());
832                 if (!runparams.nice)
833                         incfile = mangled;
834
835                 LYXERR(Debug::LATEX, "incfile:" << incfile);
836                 LYXERR(Debug::LATEX, "exportfile:" << exportfile);
837                 LYXERR(Debug::LATEX, "writefile:" << writefile);
838
839                 tmp->makeDocBookFile(writefile, runparams, true);
840         }
841
842         runparams.exportdata->addExternalFile("docbook", writefile,
843                                               exportfile);
844         runparams.exportdata->addExternalFile("docbook-xml", writefile,
845                                               exportfile);
846
847         if (isVerbatim(params()) || isListings(params())) {
848                 os << "<inlinegraphic fileref=\""
849                    << '&' << include_label << ';'
850                    << "\" format=\"linespecific\">";
851         } else
852                 os << '&' << include_label << ';';
853
854         return 0;
855 }
856
857
858 void InsetInclude::validate(LaTeXFeatures & features) const
859 {
860         string incfile = to_utf8(params()["filename"]);
861         string writefile;
862
863         LASSERT(&buffer() == &features.buffer(), /**/);
864
865         string const included_file =
866                 includedFileName(buffer(), params()).absFileName();
867
868         if (isLyXFileName(included_file))
869                 writefile = changeExtension(included_file, ".sgml");
870         else
871                 writefile = included_file;
872
873         if (!features.runparams().nice && !isVerbatim(params()) && !isListings(params())) {
874                 incfile = DocFileName(writefile).mangledFileName();
875                 writefile = makeAbsPath(incfile,
876                                         buffer().masterBuffer()->temppath()).absFileName();
877         }
878
879         features.includeFile(include_label, writefile);
880
881         if (isVerbatim(params()))
882                 features.require("verbatim");
883         else if (isListings(params()))
884                 features.require("listings");
885
886         // Here we must do the fun stuff...
887         // Load the file in the include if it needs
888         // to be loaded:
889         Buffer * const tmp = loadIfNeeded();
890         if (tmp) {
891                 // the file is loaded
892                 // make sure the buffer isn't us
893                 // FIXME RECURSIVE INCLUDES
894                 // This is not sufficient, as recursive includes could be
895                 // more than a file away. But it will do for now.
896                 if (tmp && tmp != &buffer()) {
897                         // We must temporarily change features.buffer,
898                         // otherwise it would always be the master buffer,
899                         // and nested includes would not work.
900                         features.setBuffer(*tmp);
901                         tmp->validate(features);
902                         features.setBuffer(buffer());
903                 }
904         }
905 }
906
907
908 void InsetInclude::collectBibKeys(InsetIterator const & /*di*/) const
909 {
910         Buffer * child = loadIfNeeded();
911         if (!child)
912                 return;
913         child->collectBibKeys();
914 }
915
916
917 void InsetInclude::metrics(MetricsInfo & mi, Dimension & dim) const
918 {
919         LASSERT(mi.base.bv, /**/);
920
921         bool use_preview = false;
922         if (RenderPreview::status() != LyXRC::PREVIEW_OFF) {
923                 graphics::PreviewImage const * pimage =
924                         preview_->getPreviewImage(mi.base.bv->buffer());
925                 use_preview = pimage && pimage->image();
926         }
927
928         if (use_preview) {
929                 preview_->metrics(mi, dim);
930         } else {
931                 if (!set_label_) {
932                         set_label_ = true;
933                         button_.update(screenLabel(), true);
934                 }
935                 button_.metrics(mi, dim);
936         }
937
938         Box b(0, dim.wid, -dim.asc, dim.des);
939         button_.setBox(b);
940 }
941
942
943 void InsetInclude::draw(PainterInfo & pi, int x, int y) const
944 {
945         LASSERT(pi.base.bv, /**/);
946
947         bool use_preview = false;
948         if (RenderPreview::status() != LyXRC::PREVIEW_OFF) {
949                 graphics::PreviewImage const * pimage =
950                         preview_->getPreviewImage(pi.base.bv->buffer());
951                 use_preview = pimage && pimage->image();
952         }
953
954         if (use_preview)
955                 preview_->draw(pi, x, y);
956         else
957                 button_.draw(pi, x, y);
958 }
959
960
961 docstring InsetInclude::contextMenuName() const
962 {
963         return from_ascii("context-include");
964 }
965
966
967 Inset::DisplayType InsetInclude::display() const
968 {
969         return type(params()) == INPUT ? Inline : AlignCenter;
970 }
971
972
973
974 //
975 // preview stuff
976 //
977
978 void InsetInclude::fileChanged() const
979 {
980         Buffer const * const buffer = updateFrontend();
981         if (!buffer)
982                 return;
983
984         preview_->removePreview(*buffer);
985         add_preview(*preview_.get(), *this, *buffer);
986         preview_->startLoading(*buffer);
987 }
988
989
990 namespace {
991
992 bool preview_wanted(InsetCommandParams const & params, Buffer const & buffer)
993 {
994         FileName const included_file = includedFileName(buffer, params);
995
996         return type(params) == INPUT && params.preview() &&
997                 included_file.isReadableFile();
998 }
999
1000
1001 docstring latexString(InsetInclude const & inset)
1002 {
1003         TexRow texrow;
1004         odocstringstream ods;
1005         otexstream os(ods, texrow);
1006         // We don't need to set runparams.encoding since this will be done
1007         // by latex() anyway.
1008         OutputParams runparams(0);
1009         runparams.flavor = OutputParams::LATEX;
1010         inset.latex(os, runparams);
1011
1012         return ods.str();
1013 }
1014
1015
1016 void add_preview(RenderMonitoredPreview & renderer, InsetInclude const & inset,
1017                  Buffer const & buffer)
1018 {
1019         InsetCommandParams const & params = inset.params();
1020         if (RenderPreview::status() != LyXRC::PREVIEW_OFF &&
1021             preview_wanted(params, buffer)) {
1022                 renderer.setAbsFile(includedFileName(buffer, params));
1023                 docstring const snippet = latexString(inset);
1024                 renderer.addPreview(snippet, buffer);
1025         }
1026 }
1027
1028 } // namespace anon
1029
1030
1031 void InsetInclude::addPreview(DocIterator const & /*inset_pos*/,
1032         graphics::PreviewLoader & ploader) const
1033 {
1034         Buffer const & buffer = ploader.buffer();
1035         if (!preview_wanted(params(), buffer))
1036                 return;
1037         preview_->setAbsFile(includedFileName(buffer, params()));
1038         docstring const snippet = latexString(*this);
1039         preview_->addPreview(snippet, ploader);
1040 }
1041
1042
1043 void InsetInclude::addToToc(DocIterator const & cpit) const
1044 {
1045         TocBackend & backend = buffer().tocBackend();
1046
1047         if (isListings(params())) {
1048                 if (label_)
1049                         label_->addToToc(cpit);
1050
1051                 InsetListingsParams p(to_utf8(params()["lstparams"]));
1052                 string caption = p.getParamValue("caption");
1053                 if (caption.empty())
1054                         return;
1055                 Toc & toc = backend.toc("listing");
1056                 docstring str = convert<docstring>(toc.size() + 1)
1057                         + ". " +  from_utf8(caption);
1058                 DocIterator pit = cpit;
1059                 toc.push_back(TocItem(pit, 0, str));
1060                 return;
1061         }
1062         Buffer const * const childbuffer = getChildBuffer();
1063         if (!childbuffer)
1064                 return;
1065
1066         Toc & toc = backend.toc("child");
1067         docstring str = childbuffer->fileName().displayName();
1068         toc.push_back(TocItem(cpit, 0, str));
1069
1070         TocList & toclist = backend.tocs();
1071         childbuffer->tocBackend().update();
1072         TocList const & childtoclist = childbuffer->tocBackend().tocs();
1073         TocList::const_iterator it = childtoclist.begin();
1074         TocList::const_iterator const end = childtoclist.end();
1075         for(; it != end; ++it)
1076                 toclist[it->first].insert(toclist[it->first].end(),
1077                         it->second.begin(), it->second.end());
1078 }
1079
1080
1081 void InsetInclude::updateCommand()
1082 {
1083         if (!label_)
1084                 return;
1085
1086         docstring old_label = label_->getParam("name");
1087         label_->updateCommand(old_label, false);
1088         // the label might have been adapted (duplicate)
1089         docstring new_label = label_->getParam("name");
1090         if (old_label == new_label)
1091                 return;
1092
1093         // update listings parameters...
1094         InsetCommandParams p(INCLUDE_CODE);
1095         p = params();
1096         InsetListingsParams par(to_utf8(params()["lstparams"]));
1097         par.addParam("label", "{" + to_utf8(new_label) + "}", true);
1098         p["lstparams"] = from_utf8(par.params());
1099         setParams(p);   
1100 }
1101
1102 void InsetInclude::updateBuffer(ParIterator const & it, UpdateType utype)
1103 {
1104         Buffer const * const childbuffer = getChildBuffer();
1105         if (childbuffer) {
1106                 childbuffer->updateBuffer(Buffer::UpdateChildOnly, utype);
1107                 return;
1108         }
1109         if (!isListings(params()))
1110                 return;
1111
1112         if (label_)
1113                 label_->updateBuffer(it, utype);
1114
1115         InsetListingsParams const par(to_utf8(params()["lstparams"]));
1116         if (par.getParamValue("caption").empty()) {
1117                 listings_label_ = buffer().B_("Program Listing");
1118                 return;
1119         }
1120         Buffer const & master = *buffer().masterBuffer();
1121         Counters & counters = master.params().documentClass().counters();
1122         docstring const cnt = from_ascii("listing");
1123         listings_label_ = master.B_("Program Listing");
1124         if (counters.hasCounter(cnt)) {
1125                 counters.step(cnt, utype);
1126                 listings_label_ += " " + convert<docstring>(counters.value(cnt));
1127         }
1128 }
1129
1130
1131 } // namespace lyx