[dovecot-cvs] dovecot/src/plugins/fts-lucene lucene-wrapper.cc, 1.6, 1.7
tss at dovecot.org
tss at dovecot.org
Wed Dec 13 13:45:42 UTC 2006
- Previous message: [dovecot-cvs] dovecot/src/lib Makefile.am, 1.67, 1.68 unichar.c, NONE, 1.1 unichar.h, NONE, 1.1
- Next message: [dovecot-cvs] dovecot/src/plugins/fts-squat squat-trie.c, 1.9, 1.10 squat-trie.h, 1.3, 1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/plugins/fts-lucene
In directory talvi:/tmp/cvs-serv28894
Modified Files:
lucene-wrapper.cc
Log Message:
Removed utf8_strlen_n() here and used the one from unichar.h
Index: lucene-wrapper.cc
===================================================================
RCS file: /var/lib/cvs/dovecot/src/plugins/fts-lucene/lucene-wrapper.cc,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- lucene-wrapper.cc 25 Oct 2006 20:25:03 -0000 1.6
+++ lucene-wrapper.cc 13 Dec 2006 13:45:39 -0000 1.7
@@ -2,6 +2,7 @@
extern "C" {
#include "lib.h"
+#include "unichar.h"
#include "str-sanitize.h"
#include "lucene-wrapper.h"
};
@@ -30,17 +31,6 @@
uint32_t prev_uid, last_uid;
};
-static const uint8_t utf8_skip_table[256] = {
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
- 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,1,1
-};
-
class RawTokenStream : public TokenStream {
CL_NS(util)::Reader *reader;
@@ -271,21 +261,6 @@
return 0;
}
-static unsigned int utf8_strlen_n(const void *datap, size_t size)
-{
- const unsigned char *data = (const unsigned char *)datap;
- const unsigned char *end = data + size;
- unsigned int skip, len = 0;
- size_t i;
-
- for (i = 0; i < size && data[i] != '\0'; ) {
- i += utf8_skip_table[data[i] & 0xff];
- i_assert(i <= size);
- len++;
- }
- return len;
-}
-
static int lucene_index_build_flush(struct lucene_index *index)
{
int ret = 0;
@@ -315,7 +290,7 @@
i_assert(uid > index->last_uid);
i_assert(size > 0);
- len = utf8_strlen_n(data, size);
+ len = uni_utf8_strlen_n(data, size);
wchar_t dest[len+1];
lucene_utf8towcs(dest, (const char *)data, len + 1);
@@ -452,7 +427,7 @@
quoted_key = strchr(key, ' ') == NULL ?
t_strdup_printf("%s*", key) :
t_strdup_printf("\"%s\"", key);
- unsigned int len = utf8_strlen_n(quoted_key, (size_t)-1);
+ unsigned int len = uni_utf8_strlen_n(quoted_key, (size_t)-1);
wchar_t tkey[len + 1];
lucene_utf8towcs(tkey, quoted_key, len + 1);
t_pop();
- Previous message: [dovecot-cvs] dovecot/src/lib Makefile.am, 1.67, 1.68 unichar.c, NONE, 1.1 unichar.h, NONE, 1.1
- Next message: [dovecot-cvs] dovecot/src/plugins/fts-squat squat-trie.c, 1.9, 1.10 squat-trie.h, 1.3, 1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list