2003-11-05 12:06:20 +00:00
|
|
|
/**
|
2007-04-26 04:41:58 +00:00
|
|
|
* \file output_plaintext.cpp
|
2003-11-05 12:06:20 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2003-11-05 12:06:20 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "output_plaintext.h"
|
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Buffer.h"
|
|
|
|
#include "BufferParams.h"
|
2007-09-29 20:02:32 +00:00
|
|
|
#include "Layout.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
#include "output.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "OutputParams.h"
|
|
|
|
#include "Paragraph.h"
|
2006-03-23 20:11:06 +00:00
|
|
|
#include "ParagraphList.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
#include "ParagraphParameters.h"
|
|
|
|
|
2020-11-30 20:34:16 +00:00
|
|
|
#include "insets/Inset.h"
|
|
|
|
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/debug.h"
|
|
|
|
#include "support/gettext.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
#include "support/lstrings.h"
|
2005-01-20 21:34:23 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2007-12-12 18:57:56 +00:00
|
|
|
using namespace lyx::support;
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2007-01-18 22:29:50 +00:00
|
|
|
void writePlaintextFile(Buffer const & buf, FileName const & fname,
|
2006-10-21 00:16:43 +00:00
|
|
|
OutputParams const & runparams)
|
2003-11-05 12:06:20 +00:00
|
|
|
{
|
2008-11-16 12:21:29 +00:00
|
|
|
ofdocstream ofs;
|
2006-10-21 00:16:43 +00:00
|
|
|
if (!openFileWrite(ofs, fname))
|
2003-11-05 12:06:20 +00:00
|
|
|
return;
|
2011-05-05 20:18:16 +00:00
|
|
|
|
|
|
|
// make sure we are ready to export
|
|
|
|
buf.updateBuffer();
|
2011-05-07 11:57:08 +00:00
|
|
|
buf.updateMacroInstances(OutputUpdate);
|
2013-02-02 18:23:21 +00:00
|
|
|
buf.makeCitationLabels();
|
2011-05-05 20:18:16 +00:00
|
|
|
|
2007-01-18 22:29:50 +00:00
|
|
|
writePlaintextFile(buf, ofs, runparams);
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-18 22:29:50 +00:00
|
|
|
void writePlaintextFile(Buffer const & buf, odocstream & os,
|
2004-03-25 09:16:36 +00:00
|
|
|
OutputParams const & runparams)
|
2003-11-05 12:06:20 +00:00
|
|
|
{
|
2005-07-15 19:10:25 +00:00
|
|
|
bool ref_printed = false;
|
2008-09-06 13:49:10 +00:00
|
|
|
ParagraphList const & par = buf.paragraphs();
|
2004-05-17 11:28:31 +00:00
|
|
|
ParagraphList::const_iterator beg = par.begin();
|
|
|
|
ParagraphList::const_iterator end = par.end();
|
|
|
|
ParagraphList::const_iterator it = beg;
|
2003-11-05 12:06:20 +00:00
|
|
|
for (; it != end; ++it) {
|
2019-12-27 08:01:06 +00:00
|
|
|
bool const merged_par = (*it).parEndChange().deleted();
|
2007-01-18 22:29:50 +00:00
|
|
|
writePlaintextParagraph(buf, *it, os, runparams, ref_printed);
|
2019-12-27 08:01:06 +00:00
|
|
|
if (!merged_par)
|
|
|
|
os << "\n";
|
|
|
|
if (runparams.linelen > 0 && !merged_par)
|
2007-01-20 15:35:39 +00:00
|
|
|
os << "\n";
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
static pair<int, docstring> addDepth(int depth, int ldepth)
|
2003-11-05 12:06:20 +00:00
|
|
|
{
|
|
|
|
int d = depth * 2;
|
|
|
|
if (ldepth > depth)
|
|
|
|
d += (ldepth - depth) * 2;
|
2006-10-11 19:40:50 +00:00
|
|
|
return make_pair(d, docstring(d, ' '));
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
|
2007-01-18 22:29:50 +00:00
|
|
|
void writePlaintextParagraph(Buffer const & buf,
|
2003-11-05 12:06:20 +00:00
|
|
|
Paragraph const & par,
|
2013-03-08 19:52:18 +00:00
|
|
|
odocstream & ods,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const & runparams,
|
2013-03-08 19:52:18 +00:00
|
|
|
bool & ref_printed, size_t max_length)
|
2003-11-05 12:06:20 +00:00
|
|
|
{
|
|
|
|
int ltype = 0;
|
2006-10-21 00:16:43 +00:00
|
|
|
depth_type ltype_depth = 0;
|
|
|
|
depth_type depth = par.params().depth();
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
// First write the layout
|
2008-03-06 21:31:27 +00:00
|
|
|
string const tmp = to_utf8(par.layout().name());
|
2007-02-26 18:54:03 +00:00
|
|
|
if (compare_ascii_no_case(tmp, "itemize") == 0) {
|
2003-11-05 12:06:20 +00:00
|
|
|
ltype = 1;
|
|
|
|
ltype_depth = depth + 1;
|
|
|
|
} else if (compare_ascii_no_case(tmp, "enumerate") == 0) {
|
|
|
|
ltype = 2;
|
|
|
|
ltype_depth = depth + 1;
|
|
|
|
} else if (contains(ascii_lowercase(tmp), "ection")) {
|
|
|
|
ltype = 3;
|
|
|
|
ltype_depth = depth + 1;
|
|
|
|
} else if (contains(ascii_lowercase(tmp), "aragraph")) {
|
|
|
|
ltype = 4;
|
|
|
|
ltype_depth = depth + 1;
|
|
|
|
} else if (compare_ascii_no_case(tmp, "description") == 0) {
|
|
|
|
ltype = 5;
|
|
|
|
ltype_depth = depth + 1;
|
|
|
|
} else if (compare_ascii_no_case(tmp, "abstract") == 0) {
|
|
|
|
ltype = 6;
|
|
|
|
ltype_depth = 0;
|
|
|
|
} else if (compare_ascii_no_case(tmp, "bibliography") == 0) {
|
|
|
|
ltype = 7;
|
|
|
|
ltype_depth = 0;
|
|
|
|
} else {
|
|
|
|
ltype = 0;
|
|
|
|
ltype_depth = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the labelwidthstring used in lists */
|
|
|
|
|
|
|
|
/* noindent ? */
|
|
|
|
|
|
|
|
/* what about the alignment */
|
|
|
|
|
2007-01-20 14:51:40 +00:00
|
|
|
// runparams.linelen == 0 is special and means we don't have paragraph breaks
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
string::size_type currlinelen = 0;
|
|
|
|
|
2013-03-08 19:52:18 +00:00
|
|
|
odocstringstream os;
|
2006-10-11 19:40:50 +00:00
|
|
|
os << docstring(depth * 2, ' ');
|
2005-07-15 19:10:25 +00:00
|
|
|
currlinelen += depth * 2;
|
|
|
|
|
|
|
|
//--
|
|
|
|
// we should probably change to the paragraph language in the
|
2007-11-29 07:04:28 +00:00
|
|
|
// support/gettext.here (if possible) so that strings are output in
|
2005-07-15 19:10:25 +00:00
|
|
|
// the correct language! (20012712 Jug)
|
|
|
|
//--
|
|
|
|
switch (ltype) {
|
|
|
|
case 0: // Standard
|
|
|
|
case 4: // (Sub)Paragraph
|
|
|
|
case 5: // Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 6: // Abstract
|
|
|
|
if (runparams.linelen > 0) {
|
2007-05-01 08:26:40 +00:00
|
|
|
os << buf.B_("Abstract") << "\n\n";
|
2005-07-15 19:10:25 +00:00
|
|
|
currlinelen = 0;
|
|
|
|
} else {
|
2007-05-01 08:26:40 +00:00
|
|
|
docstring const abst = buf.B_("Abstract: ");
|
2005-07-15 19:10:25 +00:00
|
|
|
os << abst;
|
|
|
|
currlinelen += abst.length();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 7: // Bibliography
|
|
|
|
if (!ref_printed) {
|
2003-11-05 12:06:20 +00:00
|
|
|
if (runparams.linelen > 0) {
|
2007-05-01 08:26:40 +00:00
|
|
|
os << buf.B_("References") << "\n\n";
|
2003-11-05 12:06:20 +00:00
|
|
|
currlinelen = 0;
|
|
|
|
} else {
|
2007-05-01 08:26:40 +00:00
|
|
|
docstring const refs = buf.B_("References: ");
|
2005-07-15 19:10:25 +00:00
|
|
|
os << refs;
|
|
|
|
currlinelen += refs.length();
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
2005-07-15 19:10:25 +00:00
|
|
|
ref_printed = true;
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
2005-07-15 19:10:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: {
|
2006-10-21 00:16:43 +00:00
|
|
|
docstring const label = par.params().labelString();
|
2007-01-20 16:14:39 +00:00
|
|
|
if (!label.empty()) {
|
|
|
|
os << label << ' ';
|
|
|
|
currlinelen += label.length() + 1;
|
|
|
|
}
|
2005-07-15 19:10:25 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-20 16:14:39 +00:00
|
|
|
if (currlinelen == 0) {
|
2006-10-11 19:40:50 +00:00
|
|
|
pair<int, docstring> p = addDepth(depth, ltype_depth);
|
2003-11-05 12:06:20 +00:00
|
|
|
os << p.second;
|
|
|
|
currlinelen += p.first;
|
|
|
|
}
|
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
docstring word;
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
for (pos_type i = 0; i < par.size(); ++i) {
|
2007-02-20 17:56:55 +00:00
|
|
|
// deleted characters don't make much sense in plain text output
|
|
|
|
if (par.isDeleted(i))
|
2007-01-20 16:25:52 +00:00
|
|
|
continue;
|
|
|
|
|
2013-03-08 19:52:18 +00:00
|
|
|
if (os.str().size() > max_length)
|
|
|
|
break;
|
|
|
|
|
2018-07-15 12:26:29 +00:00
|
|
|
char_type c = par.getUChar(buf.params(), runparams, i);
|
2007-02-20 17:56:55 +00:00
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
if (par.isInset(i) || c == ' ') {
|
2007-02-15 16:07:36 +00:00
|
|
|
if (runparams.linelen > 0 &&
|
|
|
|
currlinelen + word.length() > runparams.linelen) {
|
|
|
|
os << '\n';
|
|
|
|
pair<int, docstring> p = addDepth(depth, ltype_depth);
|
|
|
|
os << p.second;
|
|
|
|
currlinelen = p.first;
|
|
|
|
}
|
2007-01-19 16:17:39 +00:00
|
|
|
os << word;
|
|
|
|
currlinelen += word.length();
|
|
|
|
word.erase();
|
2007-02-20 17:56:55 +00:00
|
|
|
}
|
2007-01-20 16:25:52 +00:00
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
if (par.isInset(i)) {
|
2004-08-16 00:32:04 +00:00
|
|
|
OutputParams rp = runparams;
|
|
|
|
rp.depth = par.params().depth();
|
2013-03-08 19:52:18 +00:00
|
|
|
int len = par.getInset(i)->plaintext(os, rp, max_length);
|
2007-04-29 13:39:47 +00:00
|
|
|
if (len >= Inset::PLAINTEXT_NEWLINE)
|
|
|
|
currlinelen = len - Inset::PLAINTEXT_NEWLINE;
|
2007-02-15 16:07:36 +00:00
|
|
|
else
|
|
|
|
currlinelen += len;
|
2007-10-24 07:08:55 +00:00
|
|
|
continue;
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
|
|
|
|
2007-10-24 07:08:55 +00:00
|
|
|
switch (c) {
|
2003-11-28 08:55:12 +00:00
|
|
|
case ' ':
|
2007-02-20 17:56:55 +00:00
|
|
|
os << ' ';
|
2014-07-05 17:13:10 +00:00
|
|
|
++currlinelen;
|
2003-11-28 08:55:12 +00:00
|
|
|
break;
|
2003-11-05 12:06:20 +00:00
|
|
|
|
2003-11-28 08:55:12 +00:00
|
|
|
case '\0':
|
2008-04-07 20:43:02 +00:00
|
|
|
LYXERR(Debug::INFO, "writePlaintextFile: NUL char in structure.");
|
2003-11-28 08:55:12 +00:00
|
|
|
break;
|
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
default:
|
|
|
|
word += c;
|
2003-11-05 12:06:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-01-20 16:38:58 +00:00
|
|
|
|
2007-02-17 15:43:11 +00:00
|
|
|
// currlinelen may be greater than runparams.linelen!
|
|
|
|
// => check whether word is empty and do nothing in this case
|
|
|
|
if (!word.empty()) {
|
|
|
|
if (runparams.linelen > 0 &&
|
|
|
|
currlinelen + word.length() > runparams.linelen) {
|
|
|
|
os << '\n';
|
|
|
|
pair<int, docstring> p = addDepth(depth, ltype_depth);
|
|
|
|
os << p.second;
|
|
|
|
currlinelen = p.first;
|
|
|
|
}
|
|
|
|
os << word;
|
2007-01-20 16:38:58 +00:00
|
|
|
}
|
2013-03-08 19:52:18 +00:00
|
|
|
ods << os.str();
|
2003-11-05 12:06:20 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|