X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMacroTable.cpp;h=efb111f84f4741ba3c23d2e0d3a8cebeb5875b90;hb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;hp=17e177b4228beff368d249b43bb17959d4ce662f;hpb=f7b1c86393d890d5d473279d88e26bb78f8c1275;p=features.git diff --git a/src/mathed/MacroTable.cpp b/src/mathed/MacroTable.cpp index 17e177b422..efb111f84f 100644 --- a/src/mathed/MacroTable.cpp +++ b/src/mathed/MacroTable.cpp @@ -3,53 +3,73 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ #include +#include "InsetMathSqrt.h" #include "MacroTable.h" #include "MathMacroTemplate.h" #include "MathMacroArgument.h" +#include "MathStream.h" #include "MathSupport.h" -#include "InsetMathSqrt.h" +#include "InsetMathNest.h" -#include "debug.h" +#include "Buffer.h" #include "DocIterator.h" +#include "InsetList.h" +#include "Text.h" -#include +#include "support/debug.h" + +#include "support/lassert.h" #include +using namespace std; namespace lyx { -using std::endl; -using std::istringstream; -using std::map; -using std::pair; -using std::string; -using std::vector; -using std::size_t; +///////////////////////////////////////////////////////////////////// +// +// MacroData +// +///////////////////////////////////////////////////////////////////// MacroData::MacroData() - : numargs_(0), lockCount_(0) + : queried_(true), numargs_(0), optionals_(0), lockCount_(0), + redefinition_(false), type_(MacroTypeNewcommand) {} - -MacroData::MacroData(docstring const & def, int numargs, docstring const & disp, string const & requires) - : def_(def), numargs_(numargs), disp_(disp), requires_(requires), lockCount_(0) -{} + + +MacroData::MacroData(Buffer const & buf, DocIterator const & pos) + : buffer_(&buf), pos_(pos), queried_(false), numargs_(0), + optionals_(0), lockCount_(0), redefinition_(false), + type_(MacroTypeNewcommand) +{ +} + + +MacroData::MacroData(MathMacroTemplate const & macro) + : queried_(false), numargs_(0), optionals_(0), lockCount_(0), + redefinition_(false), type_(MacroTypeNewcommand) +{ + queryData(macro); +} void MacroData::expand(vector const & args, MathData & to) const { + updateData(); + InsetMathSqrt inset; // Hack. Any inset with a cell would do. // FIXME UNICODE - asArray(disp_.empty() ? def_ : disp_, inset.cell(0)); + asArray(display_.empty() ? definition_ : display_, inset.cell(0)); //lyxerr << "MathData::expand: args: " << args << endl; //lyxerr << "MathData::expand: ar: " << inset.cell(0) << endl; for (DocIterator it = doc_iterator_begin(inset); it; it.forwardChar()) { @@ -70,25 +90,102 @@ void MacroData::expand(vector const & args, MathData & to) const } -// The global table. -MacroTable & MacroTable::globalMacros() +size_t MacroData::optionals() const { - static MacroTable theGlobalMacros; - return theGlobalMacros; + updateData(); + return optionals_; +} + + +vector const & MacroData::defaults() const +{ + updateData(); + return defaults_; +} + + +void MacroData::unlock() const +{ + --lockCount_; + LASSERT(lockCount_ >= 0, /**/); +} + + +void MacroData::queryData(MathMacroTemplate const & macro) const +{ + if (queried_) + return; + + queried_ = true; + definition_ = macro.definition(); + numargs_ = macro.numArgs(); + display_ = macro.displayDefinition(); + redefinition_ = macro.redefinition(); + type_ = macro.type(); + optionals_ = macro.numOptionals(); + + macro.getDefaults(defaults_); +} + + +void MacroData::updateData() const +{ + if (queried_) + return; + + LASSERT(buffer_ != 0, /**/); + + // Try to fix position DocIterator. Should not do anything in theory. + pos_.fixIfBroken(); + + // find macro template + Inset * inset = pos_.nextInset(); + if (inset == 0 || inset->lyxCode() != MATHMACRO_CODE) { + lyxerr << "BUG: No macro template found by MacroData" << endl; + return; + } + + // query the data from the macro template + queryData(static_cast(*inset)); } + +void MacroData::write(odocstream & os, bool overwriteRedefinition) const +{ + updateData(); -bool MacroTable::has(docstring const & name) const + // find macro template + Inset * inset = pos_.nextInset(); + if (inset == 0 || inset->lyxCode() != MATHMACRO_CODE) { + lyxerr << "BUG: No macro template found by MacroData" << endl; + return; + } + + // output template + MathMacroTemplate const & tmpl = + static_cast(*inset); + WriteStream wi(os, false, true, false); + tmpl.write(wi, overwriteRedefinition); +} + + +///////////////////////////////////////////////////////////////////// +// +// The global table of macros +// +///////////////////////////////////////////////////////////////////// + +MacroTable & MacroTable::globalMacros() { - return find(name) != end(); + static MacroTable theGlobalMacros; + return theGlobalMacros; } -MacroData const & MacroTable::get(docstring const & name) const +MacroData const * MacroTable::get(docstring const & name) const { const_iterator it = find(name); - BOOST_ASSERT(it != end()); - return it->second; + return it == end() ? 0 : &it->second; } @@ -103,22 +200,46 @@ void MacroTable::insert(docstring const & def, string const & requires) { //lyxerr << "MacroTable::insert, def: " << to_utf8(def) << endl; MathMacroTemplate mac(def); - MacroData data = mac.asMacroData(); + MacroData data(mac); data.requires() = requires; insert(mac.name(), data); } +void MacroTable::getMacroNames(std::set & names) const +{ + for (const_iterator it = begin(); it != end(); ++it) + names.insert(it->first); +} + + void MacroTable::dump() { lyxerr << "\n------------------------------------------" << endl; for (const_iterator it = begin(); it != end(); ++it) lyxerr << to_utf8(it->first) - << " [" << to_utf8(it->second.def()) << "] : " - << " [" << to_utf8(it->second.disp()) << "] : " + << " [" << to_utf8(it->second.definition()) << "] : " + << " [" << to_utf8(it->second.display()) << "] : " << endl; lyxerr << "------------------------------------------" << endl; } +///////////////////////////////////////////////////////////////////// +// +// MacroContext +// +///////////////////////////////////////////////////////////////////// + +MacroContext::MacroContext(Buffer const & buf, DocIterator const & pos) + : buf_(buf), pos_(pos) +{ +} + + +MacroData const * MacroContext::get(docstring const & name) const +{ + return buf_.getMacro(name, pos_); +} + } // namespace lyx