mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 10:40:48 +00:00
c5a4f61f33
I had no choice but to use string for the map key. This is because the only information that could be passed to the controller is a string. With this new architecture, persistent error lists are now possible. * Buffer - errorList_, addError(), : deleted - std::map<std::string, ErrorList> errorLists_ : new member - errorList(std::string const & type): associated accessors * buffer_funcs.C - bufferErrors(Buffer const & buf, TeXErrors const & terr): now needs a third errorList argument - bufferErrors(Buffer const & buf, ErrorList const & el): deleted. * Converter - convert(): now needs an ErrorList argument instead of filling the Buffer errorList member directly. - runLaTeX(): ditto - scanLog(): ditto * CutAndPaste.C - pasteParagraphList(): ditto - pasteSelection(): ditto * lyxtext.h/text.C - readParagraph(): ditto - LyXText::read(): ditto * importer: - Importer::Import(): ditto * BufferView_pimpl.C - loadLyXFile(): send the Buffer::errors() signal instead of calling LyXView::showErrorList() directly. * exporter.C - Export(): send the Buffer::errors() signal instead of calling LyXView::showErrorList() directly in lyxfunc.C * ControlErrorList.C - initialiseParams(): translation operation transfered here from LyXView::showErrorList(). * LyXView.C - LoadLyXFile(): add a showErrorList("Parse") call. - showErrorList(): simplified due to code transferred to the ControlErrorList. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14652 a592a061-630c-0410-9148-cb99ea01b6c8
161 lines
4.1 KiB
C++
161 lines
4.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file converter.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Dekel Tsur
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef CONVERTER_H
|
|
#define CONVERTER_H
|
|
|
|
#include "graph.h"
|
|
#include "outputparams.h"
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
|
|
class Buffer;
|
|
class ErrorList;
|
|
class Format;
|
|
class Formats;
|
|
class OutputParams;
|
|
|
|
|
|
///
|
|
class Converter {
|
|
public:
|
|
///
|
|
Converter(std::string const & f, std::string const & t, std::string const & c,
|
|
std::string const & l);
|
|
///
|
|
void readFlags();
|
|
///
|
|
std::string from;
|
|
///
|
|
std::string to;
|
|
///
|
|
std::string command;
|
|
///
|
|
std::string flags;
|
|
///
|
|
Format const * From;
|
|
///
|
|
Format const * To;
|
|
|
|
/// The converter is latex or its derivatives
|
|
bool latex;
|
|
/// The converter is xml
|
|
bool xml;
|
|
/// Do we need to run the converter in the original directory?
|
|
bool original_dir;
|
|
/// This converter needs the .aux files
|
|
bool need_aux;
|
|
/// If the converter put the result in a directory, then result_dir
|
|
/// is the name of the directory
|
|
std::string result_dir;
|
|
/// If the converter put the result in a directory, then result_file
|
|
/// is the name of the main file in that directory
|
|
std::string result_file;
|
|
/// Command to convert the program output to a LaTeX log file format
|
|
std::string parselog;
|
|
};
|
|
|
|
|
|
///
|
|
class Converters {
|
|
public:
|
|
///
|
|
typedef std::vector<int> EdgePath; // to be removed SOON
|
|
///
|
|
typedef std::vector<Converter> ConverterList;
|
|
///
|
|
typedef ConverterList::const_iterator const_iterator;
|
|
///
|
|
Converter const & get(int i) const {
|
|
return converterlist_[i];
|
|
}
|
|
///
|
|
Converter const * getConverter(std::string const & from,
|
|
std::string const & to) const;
|
|
///
|
|
int getNumber(std::string const & from, std::string const & to) const;
|
|
///
|
|
void add(std::string const & from, std::string const & to,
|
|
std::string const & command, std::string const & flags);
|
|
//
|
|
void erase(std::string const & from, std::string const & to);
|
|
///
|
|
void sort();
|
|
///
|
|
std::vector<Format const *> const
|
|
getReachableTo(std::string const & target, bool clear_visited);
|
|
///
|
|
std::vector<Format const *> const
|
|
getReachable(std::string const & from, bool only_viewable,
|
|
bool clear_visited);
|
|
/// Does a conversion path from format \p from to format \p to exist?
|
|
bool isReachable(std::string const & from, std::string const & to);
|
|
///
|
|
Graph::EdgePath const getPath(std::string const & from, std::string const & to);
|
|
///
|
|
OutputParams::FLAVOR getFlavor(Graph::EdgePath const & path);
|
|
///
|
|
bool convert(Buffer const * buffer,
|
|
std::string const & from_file, std::string const & to_file_base,
|
|
std::string const & from_format, std::string const & to_format,
|
|
std::string & to_file, ErrorList & errorList,
|
|
bool try_default = false);
|
|
///
|
|
bool convert(Buffer const * buffer,
|
|
std::string const & from_file, std::string const & to_file_base,
|
|
std::string const & from_format, std::string const & to_format,
|
|
ErrorList & errorList, bool try_default = false);
|
|
///
|
|
void update(Formats const & formats);
|
|
///
|
|
void updateLast(Formats const & formats);
|
|
///
|
|
bool formatIsUsed(std::string const & format);
|
|
///
|
|
const_iterator begin() const {
|
|
return converterlist_.begin();
|
|
}
|
|
const_iterator end() const {
|
|
return converterlist_.end();
|
|
}
|
|
///
|
|
void buildGraph();
|
|
private:
|
|
///
|
|
std::vector<Format const *> const
|
|
intToFormat(std::vector<int> const & input);
|
|
///
|
|
bool scanLog(Buffer const & buffer, std::string const & command,
|
|
std::string const & filename, ErrorList & errorList);
|
|
///
|
|
bool runLaTeX(Buffer const & buffer, std::string const & command,
|
|
OutputParams const &, ErrorList & errorList);
|
|
///
|
|
ConverterList converterlist_;
|
|
///
|
|
std::string latex_command_;
|
|
/// If \p from = /path/file.ext and \p to = /path2/file2.ext2 then
|
|
/// this method moves each /path/file*.ext file to /path2/file2*.ext2
|
|
bool move(std::string const & fmt,
|
|
std::string const & from, std::string const & to,
|
|
bool copy);
|
|
///
|
|
Graph G_;
|
|
};
|
|
|
|
extern Converters converters;
|
|
|
|
extern Converters system_converters;
|
|
|
|
#endif //CONVERTER_H
|