📄 lookup.cpp
字号:
/* * This file is part of the KDE libraries * Copyright (C) 1999-2000 Harri Porten (porten@kde.org) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#include <stdio.h>#include <string.h>#include "lookup.h"#ifdef HAVE_CONFIG_H#include <config.h>#endifusing namespace KJS;int Lookup::find(const struct HashTable *table, const UChar *c, unsigned int len){ // we only know about version 1 so far if (table->type != 1) { fprintf(stderr, "Unknown hash table version.\n"); return -1; } int h = hash(c, len) % table->hashSize; const HashEntry *e = &table->entries[h]; // empty bucket ? if (!e->c) return -1; do { // compare strings#ifdef KJS_SWAPPED_CHAR /* TODO: not exactly as optimized as the other version ... */ if (len == e->len) { const UChar *u = (const UChar*)e->c; const UChar *c2 = c; unsigned int i; for (i = 0; i < len; i++, u++, c2++) if (!(*c2 == UChar(u->low(), u->high()))) // reverse byte order goto next; return e->value; }next:#else if ((len == e->len) && (memcmp(c, e->c, len * sizeof(UChar)) == 0)) return e->value;#endif // try next bucket e = e->next; } while (e); return -1;}int Lookup::find(const struct HashTable *table, const UString &s){ return find(table, s.data(), s.size());}int Lookup::find(const struct HashTable2 *table, const UChar *c, unsigned int len){ if (table->type != 2) { fprintf(stderr, "Unknown hash table version.\n"); return -1; } char *ascii = new char[len+1]; unsigned int i; for(i = 0; i < len; i++, c++) { if (!c->high()) ascii[i] = c->low(); else break; } ascii[i] = '\0'; int h = hash(ascii) % table->hashSize; const HashEntry2 *e = &table->entries[h]; // empty bucket ? if (!e->s) { delete [] ascii; return -1; } do { // compare strings if (strcmp(ascii, e->s) == 0) { delete [] ascii; return e->value; } // try next bucket e = e->next; } while (e); delete [] ascii; return -1;}int Lookup::find(const struct HashTable2 *table, const UString &s){ return find(table, s.data(), s.size());}unsigned int Lookup::hash(const UChar *c, unsigned int len){ unsigned int val = 0; // ignoring higher byte for (unsigned int i = 0; i < len; i++, c++) val += c->low(); return val;}unsigned int Lookup::hash(const UString &key){ return hash(key.data(), key.size());}unsigned int Lookup::hash(const char *s){ unsigned int val = 0; while (*s) val += *s++; return val;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -