]> git.lyx.org Git - lyx.git/blob - src/insets/InsetInclude.cpp
Added support for natively zipped file formats that do not need decompression for...
[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_->updateLabelAndRefs(new_label, &cur);
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         string exppath = incfile;
517         if (!runparams.export_folder.empty()) {
518                 exppath = makeAbsPath(exppath, runparams.export_folder).realPath();
519                 FileName(exppath).onlyPath().createPath();
520         }
521
522         // write it to a file (so far the complete file)
523         string exportfile;
524         string mangled;
525         // bug 5681
526         if (type(params()) == LISTINGS) {
527                 exportfile = exppath;
528                 mangled = DocFileName(included_file).mangledFileName();
529         } else {
530                 exportfile = changeExtension(exppath, ".tex");
531                 mangled = DocFileName(changeExtension(included_file.absFileName(), ".tex")).
532                         mangledFileName();
533         }
534
535         FileName const writefile(makeAbsPath(mangled, masterBuffer->temppath()));
536
537         if (!runparams.nice)
538                 incfile = mangled;
539         else if (!isValidLaTeXFileName(incfile)) {
540                 frontend::Alert::warning(_("Invalid filename"),
541                         _("The following filename will cause troubles "
542                           "when running the exported file through LaTeX: ") +
543                         from_utf8(incfile));
544         }
545         else if (!isValidDVIFileName(incfile)) {
546                 frontend::Alert::warning(_("Problematic filename for DVI"),
547                         _("The following filename can cause troubles "
548                           "when running the exported file through LaTeX "
549                           "and opening the resulting DVI: ") +
550                         from_utf8(incfile), true);
551         }
552         LYXERR(Debug::LATEX, "incfile:" << incfile);
553         LYXERR(Debug::LATEX, "exportfile:" << exportfile);
554         LYXERR(Debug::LATEX, "writefile:" << writefile);
555
556         string const tex_format = flavor2format(runparams.flavor);
557         if (runparams.inComment || runparams.dryrun) {
558                 //Don't try to load or copy the file if we're
559                 //in a comment or doing a dryrun
560         } else if (isInputOrInclude(params()) &&
561                  isLyXFileName(included_file.absFileName())) {
562                 // if it's a LyX file and we're inputting or including,
563                 // try to load it so we can write the associated latex
564
565                 Buffer * tmp = loadIfNeeded();
566                 if (!tmp) {
567                         docstring text = bformat(_("Could not load included "
568                                 "file\n`%1$s'\n"
569                                 "Please, check whether it actually exists."),
570                                 included_file.displayName());
571                         Alert::warning(_("Missing included file"), text);
572                         return;
573                 }
574
575                 if (tmp->params().baseClass() != masterBuffer->params().baseClass()) {
576                         // FIXME UNICODE
577                         docstring text = bformat(_("Included file `%1$s'\n"
578                                 "has textclass `%2$s'\n"
579                                 "while parent file has textclass `%3$s'."),
580                                 included_file.displayName(),
581                                 from_utf8(tmp->params().documentClass().name()),
582                                 from_utf8(masterBuffer->params().documentClass().name()));
583                         Alert::warning(_("Different textclasses"), text, true);
584                 }
585
586                 // Make sure modules used in child are all included in master
587                 // FIXME It might be worth loading the children's modules into the master
588                 // over in BufferParams rather than doing this check.
589                 LayoutModuleList const masterModules = masterBuffer->params().getModules();
590                 LayoutModuleList const childModules = tmp->params().getModules();
591                 LayoutModuleList::const_iterator it = childModules.begin();
592                 LayoutModuleList::const_iterator end = childModules.end();
593                 for (; it != end; ++it) {
594                         string const module = *it;
595                         LayoutModuleList::const_iterator found =
596                                 find(masterModules.begin(), masterModules.end(), module);
597                         if (found == masterModules.end()) {
598                                 docstring text = bformat(_("Included file `%1$s'\n"
599                                         "uses module `%2$s'\n"
600                                         "which is not used in parent file."),
601                                         included_file.displayName(), from_utf8(module));
602                                 Alert::warning(_("Module not found"), text);
603                         }
604                 }
605
606                 tmp->markDepClean(masterBuffer->temppath());
607
608                 // Don't assume the child's format is latex
609                 string const inc_format = tmp->params().bufferFormat();
610                 FileName const tmpwritefile(changeExtension(writefile.absFileName(),
611                         formats.extension(inc_format)));
612
613                 // FIXME: handle non existing files
614                 // The included file might be written in a different encoding
615                 // and language.
616                 Encoding const * const oldEnc = runparams.encoding;
617                 Language const * const oldLang = runparams.master_language;
618                 // If the master has full unicode flavor (XeTeX, LuaTeX),
619                 // the children must be encoded in plain utf8!
620                 runparams.encoding = runparams.isFullUnicode() ?
621                         encodings.fromLyXName("utf8-plain")
622                         : &tmp->params().encoding();
623                 runparams.master_language = buffer().params().language;
624                 runparams.par_begin = 0;
625                 runparams.par_end = tmp->paragraphs().size();
626                 if (!tmp->makeLaTeXFile(tmpwritefile, runparams, false)) {
627                         docstring msg = bformat(_("Included file `%1$s' "
628                                         "was not exported correctly.\nWarning: "
629                                         "LaTeX export is probably incomplete."),
630                                         included_file.displayName());
631                         ErrorList const & el = tmp->errorList("Export");
632                         if (!el.empty())
633                                 msg = bformat(from_ascii("%1$s\n\n%2$s\n\n%3$s"),
634                                                 msg, el.begin()->error,
635                                                 el.begin()->description);
636                         Alert::warning(_("Export failure"), msg);
637                 }
638                 runparams.encoding = oldEnc;
639                 runparams.master_language = oldLang;
640
641                 // If needed, use converters to produce a latex file from the child
642                 if (tmpwritefile != writefile) {
643                         ErrorList el;
644                         bool const success =
645                                 theConverters().convert(tmp, tmpwritefile, writefile,
646                                                         included_file,
647                                                         inc_format, tex_format, el);
648
649                         if (!success) {
650                                 docstring msg = bformat(_("Included file `%1$s' "
651                                                 "was not exported correctly.\nWarning: "
652                                                 "LaTeX export is probably incomplete."),
653                                                 included_file.displayName());
654                                 if (!el.empty())
655                                         msg = bformat(from_ascii("%1$s\n\n%2$s\n\n%3$s"),
656                                                         msg, el.begin()->error,
657                                                         el.begin()->description);
658                                 Alert::warning(_("Export failure"), msg);
659                         }
660                 }
661         } else {
662                 // In this case, it's not a LyX file, so we copy the file
663                 // to the temp dir, so that .aux files etc. are not created
664                 // in the original dir. Files included by this file will be
665                 // found via the environment variable TEXINPUTS, which may be
666                 // set in preferences and by default includes the original dir.
667                 unsigned long const checksum_in  = included_file.checksum();
668                 unsigned long const checksum_out = writefile.checksum();
669
670                 if (checksum_in != checksum_out) {
671                         if (!included_file.copyTo(writefile)) {
672                                 // FIXME UNICODE
673                                 LYXERR(Debug::LATEX,
674                                         to_utf8(bformat(_("Could not copy the file\n%1$s\n"
675                                                                   "into the temporary directory."),
676                                                    from_utf8(included_file.absFileName()))));
677                                 return;
678                         }
679                 }
680         }
681
682         switch (type(params())) {
683         case VERB:
684         case VERBAST: {
685                 incfile = latex_path(incfile);
686                 // FIXME UNICODE
687                 os << '\\' << from_ascii(params().getCmdName()) << '{'
688                    << from_utf8(incfile) << '}';
689                 break;
690         } 
691         case INPUT: {
692                 runparams.exportdata->addExternalFile(tex_format, writefile,
693                                                       exportfile);
694
695                 // \input wants file with extension (default is .tex)
696                 if (!isLyXFileName(included_file.absFileName())) {
697                         incfile = latex_path(incfile);
698                         // FIXME UNICODE
699                         os << '\\' << from_ascii(params().getCmdName())
700                            << '{' << from_utf8(incfile) << '}';
701                 } else {
702                         incfile = changeExtension(incfile, ".tex");
703                         incfile = latex_path(incfile);
704                         // FIXME UNICODE
705                         os << '\\' << from_ascii(params().getCmdName())
706                            << '{' << from_utf8(incfile) <<  '}';
707                 }
708                 break;
709         } 
710         case LISTINGS: {
711                 runparams.exportdata->addExternalFile(tex_format, writefile,
712                                                       exportfile);
713                 os << '\\' << from_ascii(params().getCmdName());
714                 string const opt = to_utf8(params()["lstparams"]);
715                 // opt is set in QInclude dialog and should have passed validation.
716                 InsetListingsParams params(opt);
717                 if (!params.params().empty())
718                         os << "[" << from_utf8(params.params()) << "]";
719                 os << '{'  << from_utf8(incfile) << '}';
720                 break;
721         } 
722         case INCLUDE: {
723                 runparams.exportdata->addExternalFile(tex_format, writefile,
724                                                       exportfile);
725
726                 // \include don't want extension and demands that the
727                 // file really have .tex
728                 incfile = changeExtension(incfile, string());
729                 incfile = latex_path(incfile);
730                 // FIXME UNICODE
731                 os << '\\' << from_ascii(params().getCmdName()) << '{'
732                    << from_utf8(incfile) << '}';
733                 break;
734         }
735         case NONE:
736                 break;
737         }
738 }
739
740
741 docstring InsetInclude::xhtml(XHTMLStream & xs, OutputParams const & rp) const
742 {
743         if (rp.inComment)
744                  return docstring();
745
746         // For verbatim and listings, we just include the contents of the file as-is.
747         // In the case of listings, we wrap it in <pre>.
748         bool const listing = isListings(params());
749         if (listing || isVerbatim(params())) {
750                 if (listing)
751                         xs << html::StartTag("pre");
752                 // FIXME: We don't know the encoding of the file, default to UTF-8.
753                 xs << includedFileName(buffer(), params()).fileContents("UTF-8");
754                 if (listing)
755                         xs << html::EndTag("pre");
756                 return docstring();
757         }
758
759         // We don't (yet) know how to Input or Include non-LyX files.
760         // (If we wanted to get really arcane, we could run some tex2html
761         // converter on the included file. But that's just masochistic.)
762         FileName const included_file = includedFileName(buffer(), params());
763         if (!isLyXFileName(included_file.absFileName())) {
764                 frontend::Alert::warning(_("Unsupported Inclusion"),
765                                          bformat(_("LyX does not know how to include non-LyX files when "
766                                                    "generating HTML output. Offending file:\n%1$s"),
767                                                     params()["filename"]));
768                 return docstring();
769         }
770
771         // In the other cases, we will generate the HTML and include it.
772
773         // Check we're not trying to include ourselves.
774         // FIXME RECURSIVE INCLUDE
775         if (buffer().absFileName() == included_file.absFileName()) {
776                 Alert::error(_("Recursive input"),
777                                bformat(_("Attempted to include file %1$s in itself! "
778                                "Ignoring inclusion."), params()["filename"]));
779                 return docstring();
780         }
781
782         Buffer const * const ibuf = loadIfNeeded();
783         if (!ibuf)
784                 return docstring();
785
786         // are we generating only some paragraphs, or all of them?
787         bool const all_pars = !rp.dryrun || 
788                         (rp.par_begin == 0 && 
789                          rp.par_end == (int)buffer().text().paragraphs().size());
790         
791         OutputParams op = rp;
792         if (all_pars) {
793                 op.par_begin = 0;
794                 op.par_end = 0;
795                 ibuf->writeLyXHTMLSource(xs.os(), op, true);
796         } else
797                 xs << XHTMLStream::ESCAPE_NONE 
798                    << "<!-- Included file: " 
799                    << from_utf8(included_file.absFileName()) 
800                    << XHTMLStream::ESCAPE_NONE 
801                          << " -->";
802         return docstring();
803 }
804
805
806 int InsetInclude::plaintext(odocstream & os, OutputParams const &) const
807 {
808         if (isVerbatim(params()) || isListings(params())) {
809                 os << '[' << screenLabel() << '\n';
810                 // FIXME: We don't know the encoding of the file, default to UTF-8.
811                 os << includedFileName(buffer(), params()).fileContents("UTF-8");
812                 os << "\n]";
813                 return PLAINTEXT_NEWLINE + 1; // one char on a separate line
814         } else {
815                 docstring const str = '[' + screenLabel() + ']';
816                 os << str;
817                 return str.size();
818         }
819 }
820
821
822 int InsetInclude::docbook(odocstream & os, OutputParams const & runparams) const
823 {
824         string incfile = to_utf8(params()["filename"]);
825
826         // Do nothing if no file name has been specified
827         if (incfile.empty())
828                 return 0;
829
830         string const included_file = includedFileName(buffer(), params()).absFileName();
831
832         // Check we're not trying to include ourselves.
833         // FIXME RECURSIVE INCLUDE
834         // This isn't sufficient, as the inclusion could be downstream.
835         // But it'll have to do for now.
836         if (buffer().absFileName() == included_file) {
837                 Alert::error(_("Recursive input"),
838                                bformat(_("Attempted to include file %1$s in itself! "
839                                "Ignoring inclusion."), from_utf8(incfile)));
840                 return 0;
841         }
842
843         string exppath = incfile;
844         if (!runparams.export_folder.empty()) {
845                 exppath = makeAbsPath(exppath, runparams.export_folder).realPath();
846                 FileName(exppath).onlyPath().createPath();
847         }
848
849         // write it to a file (so far the complete file)
850         string const exportfile = changeExtension(exppath, ".sgml");
851         DocFileName writefile(changeExtension(included_file, ".sgml"));
852
853         Buffer * tmp = loadIfNeeded();
854         if (tmp) {
855                 string const mangled = writefile.mangledFileName();
856                 writefile = makeAbsPath(mangled,
857                                         buffer().masterBuffer()->temppath());
858                 if (!runparams.nice)
859                         incfile = mangled;
860
861                 LYXERR(Debug::LATEX, "incfile:" << incfile);
862                 LYXERR(Debug::LATEX, "exportfile:" << exportfile);
863                 LYXERR(Debug::LATEX, "writefile:" << writefile);
864
865                 tmp->makeDocBookFile(writefile, runparams, true);
866         }
867
868         runparams.exportdata->addExternalFile("docbook", writefile,
869                                               exportfile);
870         runparams.exportdata->addExternalFile("docbook-xml", writefile,
871                                               exportfile);
872
873         if (isVerbatim(params()) || isListings(params())) {
874                 os << "<inlinegraphic fileref=\""
875                    << '&' << include_label << ';'
876                    << "\" format=\"linespecific\">";
877         } else
878                 os << '&' << include_label << ';';
879
880         return 0;
881 }
882
883
884 void InsetInclude::validate(LaTeXFeatures & features) const
885 {
886         string incfile = to_utf8(params()["filename"]);
887         string writefile;
888
889         LASSERT(&buffer() == &features.buffer(), /**/);
890
891         string const included_file =
892                 includedFileName(buffer(), params()).absFileName();
893
894         if (isLyXFileName(included_file))
895                 writefile = changeExtension(included_file, ".sgml");
896         else
897                 writefile = included_file;
898
899         if (!features.runparams().nice && !isVerbatim(params()) && !isListings(params())) {
900                 incfile = DocFileName(writefile).mangledFileName();
901                 writefile = makeAbsPath(incfile,
902                                         buffer().masterBuffer()->temppath()).absFileName();
903         }
904
905         features.includeFile(include_label, writefile);
906
907         if (isVerbatim(params()))
908                 features.require("verbatim");
909         else if (isListings(params()))
910                 features.require("listings");
911
912         // Here we must do the fun stuff...
913         // Load the file in the include if it needs
914         // to be loaded:
915         Buffer * const tmp = loadIfNeeded();
916         if (tmp) {
917                 // the file is loaded
918                 // make sure the buffer isn't us
919                 // FIXME RECURSIVE INCLUDES
920                 // This is not sufficient, as recursive includes could be
921                 // more than a file away. But it will do for now.
922                 if (tmp && tmp != &buffer()) {
923                         // We must temporarily change features.buffer,
924                         // otherwise it would always be the master buffer,
925                         // and nested includes would not work.
926                         features.setBuffer(*tmp);
927                         tmp->validate(features);
928                         features.setBuffer(buffer());
929                 }
930         }
931 }
932
933
934 void InsetInclude::collectBibKeys(InsetIterator const & /*di*/) const
935 {
936         Buffer * child = loadIfNeeded();
937         if (!child)
938                 return;
939         child->collectBibKeys();
940 }
941
942
943 void InsetInclude::metrics(MetricsInfo & mi, Dimension & dim) const
944 {
945         LASSERT(mi.base.bv, /**/);
946
947         bool use_preview = false;
948         if (RenderPreview::status() != LyXRC::PREVIEW_OFF) {
949                 graphics::PreviewImage const * pimage =
950                         preview_->getPreviewImage(mi.base.bv->buffer());
951                 use_preview = pimage && pimage->image();
952         }
953
954         if (use_preview) {
955                 preview_->metrics(mi, dim);
956         } else {
957                 if (!set_label_) {
958                         set_label_ = true;
959                         button_.update(screenLabel(), true);
960                 }
961                 button_.metrics(mi, dim);
962         }
963
964         Box b(0, dim.wid, -dim.asc, dim.des);
965         button_.setBox(b);
966 }
967
968
969 void InsetInclude::draw(PainterInfo & pi, int x, int y) const
970 {
971         LASSERT(pi.base.bv, /**/);
972
973         bool use_preview = false;
974         if (RenderPreview::status() != LyXRC::PREVIEW_OFF) {
975                 graphics::PreviewImage const * pimage =
976                         preview_->getPreviewImage(pi.base.bv->buffer());
977                 use_preview = pimage && pimage->image();
978         }
979
980         if (use_preview)
981                 preview_->draw(pi, x, y);
982         else
983                 button_.draw(pi, x, y);
984 }
985
986
987 docstring InsetInclude::contextMenuName() const
988 {
989         return from_ascii("context-include");
990 }
991
992
993 Inset::DisplayType InsetInclude::display() const
994 {
995         return type(params()) == INPUT ? Inline : AlignCenter;
996 }
997
998
999
1000 //
1001 // preview stuff
1002 //
1003
1004 void InsetInclude::fileChanged() const
1005 {
1006         Buffer const * const buffer = updateFrontend();
1007         if (!buffer)
1008                 return;
1009
1010         preview_->removePreview(*buffer);
1011         add_preview(*preview_.get(), *this, *buffer);
1012         preview_->startLoading(*buffer);
1013 }
1014
1015
1016 namespace {
1017
1018 bool preview_wanted(InsetCommandParams const & params, Buffer const & buffer)
1019 {
1020         FileName const included_file = includedFileName(buffer, params);
1021
1022         return type(params) == INPUT && params.preview() &&
1023                 included_file.isReadableFile();
1024 }
1025
1026
1027 docstring latexString(InsetInclude const & inset)
1028 {
1029         TexRow texrow;
1030         odocstringstream ods;
1031         otexstream os(ods, texrow);
1032         // We don't need to set runparams.encoding since this will be done
1033         // by latex() anyway.
1034         OutputParams runparams(0);
1035         runparams.flavor = OutputParams::LATEX;
1036         inset.latex(os, runparams);
1037
1038         return ods.str();
1039 }
1040
1041
1042 void add_preview(RenderMonitoredPreview & renderer, InsetInclude const & inset,
1043                  Buffer const & buffer)
1044 {
1045         InsetCommandParams const & params = inset.params();
1046         if (RenderPreview::status() != LyXRC::PREVIEW_OFF &&
1047             preview_wanted(params, buffer)) {
1048                 renderer.setAbsFile(includedFileName(buffer, params));
1049                 docstring const snippet = latexString(inset);
1050                 renderer.addPreview(snippet, buffer);
1051         }
1052 }
1053
1054 } // namespace anon
1055
1056
1057 void InsetInclude::addPreview(DocIterator const & /*inset_pos*/,
1058         graphics::PreviewLoader & ploader) const
1059 {
1060         Buffer const & buffer = ploader.buffer();
1061         if (!preview_wanted(params(), buffer))
1062                 return;
1063         preview_->setAbsFile(includedFileName(buffer, params()));
1064         docstring const snippet = latexString(*this);
1065         preview_->addPreview(snippet, ploader);
1066 }
1067
1068
1069 void InsetInclude::addToToc(DocIterator const & cpit) const
1070 {
1071         TocBackend & backend = buffer().tocBackend();
1072
1073         if (isListings(params())) {
1074                 if (label_)
1075                         label_->addToToc(cpit);
1076
1077                 InsetListingsParams p(to_utf8(params()["lstparams"]));
1078                 string caption = p.getParamValue("caption");
1079                 if (caption.empty())
1080                         return;
1081                 Toc & toc = backend.toc("listing");
1082                 docstring str = convert<docstring>(toc.size() + 1)
1083                         + ". " +  from_utf8(caption);
1084                 DocIterator pit = cpit;
1085                 toc.push_back(TocItem(pit, 0, str));
1086                 return;
1087         }
1088         Buffer const * const childbuffer = getChildBuffer();
1089         if (!childbuffer)
1090                 return;
1091
1092         Toc & toc = backend.toc("child");
1093         docstring str = childbuffer->fileName().displayName();
1094         toc.push_back(TocItem(cpit, 0, str));
1095
1096         TocList & toclist = backend.tocs();
1097         childbuffer->tocBackend().update();
1098         TocList const & childtoclist = childbuffer->tocBackend().tocs();
1099         TocList::const_iterator it = childtoclist.begin();
1100         TocList::const_iterator const end = childtoclist.end();
1101         for(; it != end; ++it)
1102                 toclist[it->first].insert(toclist[it->first].end(),
1103                         it->second.begin(), it->second.end());
1104 }
1105
1106
1107 void InsetInclude::updateCommand()
1108 {
1109         if (!label_)
1110                 return;
1111
1112         docstring old_label = label_->getParam("name");
1113         label_->updateLabel(old_label);
1114         // the label might have been adapted (duplicate)
1115         docstring new_label = label_->getParam("name");
1116         if (old_label == new_label)
1117                 return;
1118
1119         // update listings parameters...
1120         InsetCommandParams p(INCLUDE_CODE);
1121         p = params();
1122         InsetListingsParams par(to_utf8(params()["lstparams"]));
1123         par.addParam("label", "{" + to_utf8(new_label) + "}", true);
1124         p["lstparams"] = from_utf8(par.params());
1125         setParams(p);   
1126 }
1127
1128
1129 void InsetInclude::updateBuffer(ParIterator const & it, UpdateType utype)
1130 {
1131         Buffer const * const childbuffer = getChildBuffer();
1132         if (childbuffer) {
1133                 childbuffer->updateBuffer(Buffer::UpdateChildOnly, utype);
1134                 return;
1135         }
1136         if (!isListings(params()))
1137                 return;
1138
1139         if (label_)
1140                 label_->updateBuffer(it, utype);
1141
1142         InsetListingsParams const par(to_utf8(params()["lstparams"]));
1143         if (par.getParamValue("caption").empty()) {
1144                 listings_label_ = buffer().B_("Program Listing");
1145                 return;
1146         }
1147         Buffer const & master = *buffer().masterBuffer();
1148         Counters & counters = master.params().documentClass().counters();
1149         docstring const cnt = from_ascii("listing");
1150         listings_label_ = master.B_("Program Listing");
1151         if (counters.hasCounter(cnt)) {
1152                 counters.step(cnt, utype);
1153                 listings_label_ += " " + convert<docstring>(counters.value(cnt));
1154         }
1155 }
1156
1157
1158 } // namespace lyx