mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-29 05:01:49 +00:00
* high performance text completion with weighted btrees to get pseudo
random-access (i.e. O(log n)) to the n-th element in a list/set. Try it with 1000000 keys ... no problem. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23213 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b78dbb5999
commit
9f21b7f9ad
@ -138,6 +138,7 @@ src_header_files = Split('''
|
|||||||
sgml.h
|
sgml.h
|
||||||
update_flags.h
|
update_flags.h
|
||||||
version.h
|
version.h
|
||||||
|
WordList.h
|
||||||
''')
|
''')
|
||||||
|
|
||||||
|
|
||||||
@ -234,6 +235,7 @@ src_pre_files = Split('''
|
|||||||
rowpainter.cpp
|
rowpainter.cpp
|
||||||
sgml.cpp
|
sgml.cpp
|
||||||
version.cpp
|
version.cpp
|
||||||
|
WordList.cpp
|
||||||
''')
|
''')
|
||||||
|
|
||||||
|
|
||||||
|
@ -127,6 +127,7 @@ SOURCEFILESCORE = \
|
|||||||
lengthcommon.cpp \
|
lengthcommon.cpp \
|
||||||
Lexer.cpp \
|
Lexer.cpp \
|
||||||
LyX.cpp \
|
LyX.cpp \
|
||||||
|
LyXAction.cpp
|
||||||
lyxfind.cpp \
|
lyxfind.cpp \
|
||||||
LyXFunc.cpp \
|
LyXFunc.cpp \
|
||||||
LyXRC.cpp \
|
LyXRC.cpp \
|
||||||
@ -142,6 +143,7 @@ SOURCEFILESCORE = \
|
|||||||
output_plaintext.cpp \
|
output_plaintext.cpp \
|
||||||
Paragraph.cpp \
|
Paragraph.cpp \
|
||||||
paragraph_funcs.cpp \
|
paragraph_funcs.cpp \
|
||||||
|
ParagraphMetrics.cpp \
|
||||||
ParagraphParameters.cpp \
|
ParagraphParameters.cpp \
|
||||||
ParIterator.cpp \
|
ParIterator.cpp \
|
||||||
PDFOptions.cpp \
|
PDFOptions.cpp \
|
||||||
@ -165,8 +167,7 @@ SOURCEFILESCORE = \
|
|||||||
VCBackend.cpp \
|
VCBackend.cpp \
|
||||||
version.cpp \
|
version.cpp \
|
||||||
VSpace.cpp \
|
VSpace.cpp \
|
||||||
ParagraphMetrics.cpp \
|
WordList.cpp
|
||||||
LyXAction.cpp
|
|
||||||
|
|
||||||
HEADERFILESCORE = \
|
HEADERFILESCORE = \
|
||||||
Author.h \
|
Author.h \
|
||||||
@ -270,8 +271,9 @@ HEADERFILESCORE = \
|
|||||||
update_flags.h \
|
update_flags.h \
|
||||||
VCBackend.h \
|
VCBackend.h \
|
||||||
version.h \
|
version.h \
|
||||||
|
VSpace.h \
|
||||||
WordLangTuple.h \
|
WordLangTuple.h \
|
||||||
VSpace.h
|
WordList.h
|
||||||
|
|
||||||
STANDALONEFILES = \
|
STANDALONEFILES = \
|
||||||
Layout.cpp \
|
Layout.cpp \
|
||||||
|
80
src/WordList.cpp
Normal file
80
src/WordList.cpp
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
/**
|
||||||
|
* \file GuiCompleter.cpp
|
||||||
|
* This file is part of LyX, the document processor.
|
||||||
|
* Licence details can be found in the file COPYING.
|
||||||
|
*
|
||||||
|
* \author Stefan Schimanski
|
||||||
|
*
|
||||||
|
* Full author contact details are available in file CREDITS.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
|
||||||
|
#include <boost/assert.hpp>
|
||||||
|
|
||||||
|
#include <support/convert.h>
|
||||||
|
#include <support/debug.h>
|
||||||
|
#include <support/docstring.h>
|
||||||
|
#include <support/weighted_btree.h>
|
||||||
|
|
||||||
|
#include <WordList.h>
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
|
#include <map>
|
||||||
|
#include <iostream>
|
||||||
|
#include <set>
|
||||||
|
|
||||||
|
namespace lyx {
|
||||||
|
|
||||||
|
///
|
||||||
|
struct WordList::Impl {
|
||||||
|
///
|
||||||
|
size_t c_;
|
||||||
|
///
|
||||||
|
typedef stx::weighted_btree<docstring, size_t> Words;
|
||||||
|
///
|
||||||
|
Words words_;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
WordList::WordList()
|
||||||
|
{
|
||||||
|
d = new Impl;
|
||||||
|
d->c_ = 0;
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
for (size_t i = 1000000; i > 0; --i) {
|
||||||
|
d->words_.insert("a" + convert<docstring>(i), size_t(1), stx::Void());
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
WordList::~WordList()
|
||||||
|
{
|
||||||
|
delete d;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
docstring const & WordList::word(size_t idx) const
|
||||||
|
{
|
||||||
|
Impl::Words::const_iterator it
|
||||||
|
= d->words_.find_summed_weight(idx);
|
||||||
|
BOOST_ASSERT(it != d->words_.end());
|
||||||
|
return it->first;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
size_t WordList::size() const
|
||||||
|
{
|
||||||
|
return d->words_.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void WordList::insert(docstring const & w)
|
||||||
|
{
|
||||||
|
d->words_.insert(w, size_t(1), stx::Void());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
} // namespace lyx
|
40
src/WordList.h
Normal file
40
src/WordList.h
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
// -*- C++ -*-
|
||||||
|
/**
|
||||||
|
* \file WordList.h
|
||||||
|
* This file is part of LyX, the document processor.
|
||||||
|
* Licence details can be found in the file COPYING.
|
||||||
|
*
|
||||||
|
* \author Stefan Schimanski
|
||||||
|
*
|
||||||
|
* Full author contact details are available in file CREDITS.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef WORDLIST_H
|
||||||
|
#define WORDLIST_H
|
||||||
|
|
||||||
|
#include "support/docstring.h"
|
||||||
|
|
||||||
|
namespace lyx {
|
||||||
|
|
||||||
|
class WordList {
|
||||||
|
public:
|
||||||
|
///
|
||||||
|
WordList();
|
||||||
|
///
|
||||||
|
~WordList();
|
||||||
|
|
||||||
|
///
|
||||||
|
docstring const & word(size_t idx) const;
|
||||||
|
///
|
||||||
|
size_t size() const;
|
||||||
|
///
|
||||||
|
void insert(docstring const & w);
|
||||||
|
|
||||||
|
private:
|
||||||
|
class Impl;
|
||||||
|
Impl * d;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace lyx
|
||||||
|
|
||||||
|
#endif // WORDLIST_H
|
Loading…
Reference in New Issue
Block a user