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