2003-08-19 10:04:35 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file tex2lyx.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-02-11 12:37:27 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2003-02-12 11:09:22 +00:00
|
|
|
|
// {[(
|
|
|
|
|
|
2003-08-23 00:17:00 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2003-04-17 09:47:21 +00:00
|
|
|
|
#include "tex2lyx.h"
|
2003-08-04 10:26:10 +00:00
|
|
|
|
#include "context.h"
|
2003-04-17 09:47:21 +00:00
|
|
|
|
|
2003-07-26 00:15:38 +00:00
|
|
|
|
#include "debug.h"
|
2003-07-27 00:39:35 +00:00
|
|
|
|
#include "lyx_main.h"
|
2003-07-26 00:15:38 +00:00
|
|
|
|
#include "lyxtextclass.h"
|
2003-07-27 19:26:36 +00:00
|
|
|
|
#include "support/path_defines.h"
|
|
|
|
|
#include "support/os.h"
|
2003-07-26 00:15:38 +00:00
|
|
|
|
|
2003-02-11 12:37:27 +00:00
|
|
|
|
#include <cctype>
|
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <string>
|
2003-06-30 11:36:08 +00:00
|
|
|
|
#include <sstream>
|
2003-02-11 12:37:27 +00:00
|
|
|
|
#include <vector>
|
|
|
|
|
|
2003-09-08 00:33:41 +00:00
|
|
|
|
using std::endl;
|
2003-02-11 12:37:27 +00:00
|
|
|
|
using std::cout;
|
|
|
|
|
using std::cerr;
|
|
|
|
|
using std::getline;
|
2003-09-08 00:33:41 +00:00
|
|
|
|
|
2003-02-11 13:14:48 +00:00
|
|
|
|
using std::ifstream;
|
|
|
|
|
using std::istringstream;
|
|
|
|
|
using std::ostringstream;
|
2003-04-23 15:14:43 +00:00
|
|
|
|
using std::stringstream;
|
2003-06-30 11:36:08 +00:00
|
|
|
|
using std::string;
|
2003-02-11 12:37:27 +00:00
|
|
|
|
using std::vector;
|
|
|
|
|
|
2003-07-27 00:39:35 +00:00
|
|
|
|
// Hacks to allow the thing to link in the lyxlayout stuff
|
|
|
|
|
Debug::type const Debug::ANY = Debug::type(0);
|
2003-07-26 00:15:38 +00:00
|
|
|
|
DebugStream lyxerr;
|
|
|
|
|
|
|
|
|
|
void LyX::emergencyCleanup() {}
|
|
|
|
|
|
2003-04-17 09:47:21 +00:00
|
|
|
|
void handle_comment(Parser & p)
|
2003-04-16 12:52:49 +00:00
|
|
|
|
{
|
2003-04-17 09:47:21 +00:00
|
|
|
|
string s;
|
2003-04-16 12:52:49 +00:00
|
|
|
|
while (p.good()) {
|
2003-04-23 15:14:43 +00:00
|
|
|
|
Token const & t = p.get_token();
|
2003-04-17 09:47:21 +00:00
|
|
|
|
if (t.cat() == catNewline)
|
2003-04-16 12:52:49 +00:00
|
|
|
|
break;
|
2003-04-17 09:47:21 +00:00
|
|
|
|
s += t.asString();
|
|
|
|
|
}
|
|
|
|
|
//cerr << "comment: " << s << "\n";
|
2003-04-25 15:54:29 +00:00
|
|
|
|
p.skip_spaces();
|
2003-04-16 12:52:49 +00:00
|
|
|
|
}
|
2003-04-14 11:57:09 +00:00
|
|
|
|
|
2003-02-20 17:05:54 +00:00
|
|
|
|
|
2003-04-17 09:47:21 +00:00
|
|
|
|
string const trim(string const & a, char const * p)
|
2003-02-11 15:57:08 +00:00
|
|
|
|
{
|
|
|
|
|
// lyx::Assert(p);
|
|
|
|
|
|
|
|
|
|
if (a.empty() || !*p)
|
|
|
|
|
return a;
|
|
|
|
|
|
|
|
|
|
string::size_type r = a.find_last_not_of(p);
|
|
|
|
|
string::size_type l = a.find_first_not_of(p);
|
|
|
|
|
|
|
|
|
|
// Is this the minimal test? (lgb)
|
|
|
|
|
if (r == string::npos && l == string::npos)
|
|
|
|
|
return string();
|
|
|
|
|
|
|
|
|
|
return a.substr(l, r - l + 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-04-17 09:47:21 +00:00
|
|
|
|
void split(string const & s, vector<string> & result, char delim)
|
2003-02-11 12:37:27 +00:00
|
|
|
|
{
|
2003-04-16 17:34:43 +00:00
|
|
|
|
//cerr << "split 1: '" << s << "'\n";
|
2003-06-30 11:36:08 +00:00
|
|
|
|
istringstream is(s);
|
2003-02-11 12:37:27 +00:00
|
|
|
|
string t;
|
|
|
|
|
while (getline(is, t, delim))
|
|
|
|
|
result.push_back(t);
|
2003-04-16 12:52:49 +00:00
|
|
|
|
//cerr << "split 2\n";
|
2003-02-11 12:37:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-06 10:39:54 +00:00
|
|
|
|
string join(vector<string> const & input, char const * delim)
|
2003-02-11 12:37:27 +00:00
|
|
|
|
{
|
|
|
|
|
ostringstream os;
|
2003-04-16 17:34:43 +00:00
|
|
|
|
for (size_t i = 0; i < input.size(); ++i) {
|
2003-02-11 12:37:27 +00:00
|
|
|
|
if (i)
|
2003-03-17 16:25:00 +00:00
|
|
|
|
os << delim;
|
|
|
|
|
os << input[i];
|
2003-02-11 12:37:27 +00:00
|
|
|
|
}
|
2003-06-30 11:36:08 +00:00
|
|
|
|
return os.str();
|
2003-02-11 12:37:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-20 17:05:54 +00:00
|
|
|
|
char const ** is_known(string const & str, char const ** what)
|
|
|
|
|
{
|
|
|
|
|
for ( ; *what; ++what)
|
|
|
|
|
if (str == *what)
|
|
|
|
|
return what;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-11 15:57:08 +00:00
|
|
|
|
|
2003-04-17 09:47:21 +00:00
|
|
|
|
// current stack of nested environments
|
2003-04-23 15:14:43 +00:00
|
|
|
|
vector<string> active_environments;
|
2003-02-12 11:09:22 +00:00
|
|
|
|
|
|
|
|
|
|
2003-04-23 15:14:43 +00:00
|
|
|
|
string active_environment()
|
2003-02-11 12:37:27 +00:00
|
|
|
|
{
|
2003-04-23 15:14:43 +00:00
|
|
|
|
return active_environments.empty() ? string() : active_environments.back();
|
2003-02-11 12:37:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char * argv[])
|
|
|
|
|
{
|
|
|
|
|
if (argc <= 1) {
|
|
|
|
|
cerr << "Usage: " << argv[0] << " <infile.tex>" << endl;
|
|
|
|
|
return 2;
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-27 19:26:36 +00:00
|
|
|
|
lyx::support::os::init(&argc, &argv);
|
|
|
|
|
lyx::support::setLyxPaths();
|
|
|
|
|
|
2003-02-11 12:37:27 +00:00
|
|
|
|
ifstream is(argv[1]);
|
|
|
|
|
Parser p(is);
|
2003-04-23 15:14:43 +00:00
|
|
|
|
//p.dump();
|
|
|
|
|
|
|
|
|
|
stringstream ss;
|
2003-07-26 00:15:38 +00:00
|
|
|
|
LyXTextClass textclass = parse_preamble(p, ss);
|
2003-04-23 15:14:43 +00:00
|
|
|
|
active_environments.push_back("document");
|
2003-08-04 10:26:10 +00:00
|
|
|
|
Context context(true, textclass);
|
|
|
|
|
parse_text(p, ss, FLAG_END, true, context);
|
|
|
|
|
context.check_end_layout(ss);
|
2003-07-28 23:50:24 +00:00
|
|
|
|
ss << "\n\\end_document\n";
|
2003-04-23 15:14:43 +00:00
|
|
|
|
|
|
|
|
|
ss.seekg(0);
|
2003-07-28 21:58:09 +00:00
|
|
|
|
cout << ss.str();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2003-02-12 11:09:22 +00:00
|
|
|
|
|
|
|
|
|
// }])
|