Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
(*******************************************************************************
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
*
* The Original Code is OmniXML_Dictionary.pas
*
* The Initial Developer of the Original Code is Miha Remec
* http://omnixml.com/
*
* Contributor(s):
* (op) Ondrej Pokorny
*
*******************************************************************************)
unit OmniXML_Dictionary;
interface
{$I OmniXML.inc}
{$IFDEF OmniXML_HasZeroBasedStrings}
{$ZEROBASEDSTRINGS OFF}
{$ENDIF}
uses
{$IFDEF OmniXML_Namespaces}
System.Classes, System.SysUtils, System.IniFiles,
{$ELSE}
Classes, SysUtils,
{$IFDEF FPC}contnrs, {$ELSE}IniFiles, {$ENDIF}
{$ENDIF}
OmniXML_Types;
const
CInvalidDicId = High(LongWord);
type
TDicId = LongWord;
TDictionary = class
private
{$IFDEF FPC}
FHashTable: TFPHashList;
{$ELSE}
FHashTable: TStringHash;
{$ENDIF}
FTextList: TStringList;
FMaxItemsBeforeResize: Integer;
FLastHashSize: Integer;
procedure Resize;
public
constructor Create; reintroduce;
destructor Destroy; override;
function Add(const Text: XmlString): TDicId;
function Get(const Id: TDicId): XmlString;
end;
implementation
const
// customized version from http://planetmath.org/encyclopedia/GoodHashTablePrimes.html
CGoodHashTablePrimes: array [6..30] of Cardinal = (97, 193, 389, 769, 1543, 3079, 6151,
12289, 24593, 49157, 98317, 196613, 393241, 786433, 1572869, 3145739, 6291469,
12582917, 25165843, 50331653, 100663319, 201326611, 402653189, 805306457, 1610612741);
function GetGoodHashSize(const Size: Cardinal): Cardinal;
var
UpToSize: Cardinal;
TableIndex: Integer;
begin
TableIndex := Low(CGoodHashTablePrimes);
UpToSize := 1 shl TableIndex;
while Size > UpToSize do
begin
Inc(TableIndex);
UpToSize := UpToSize shl 1;
end;
Result := CGoodHashTablePrimes[TableIndex];
end;
{$IFNDEF UNICODE}
function ToUTF8(const Unicode: WideString): UTF8String; {$IFDEF DELPHI2005_UP}inline;{$ENDIF}
begin
Result := UTF8Encode(Unicode);
end;
function ToUnicode(const UTF8: UTF8String): WideString; {$IFDEF DELPHI2005_UP}inline;{$ENDIF}
begin
Result := UTF8Decode(UTF8);
end;
{$ENDIF} // UNICODE
{ TDictionary }
constructor TDictionary.Create;
begin
inherited;
FTextList := TStringList.Create;
Resize;
end;
destructor TDictionary.Destroy;
begin
FreeAndNil(FHashTable);
FreeAndNil(FTextList);
inherited;
end;
function TDictionary.Add(const Text: XmlString): TDicId;
var
{$IFDEF FPC}
Value: NativeInt;
{$ELSE}
Value: Integer;
{$ENDIF}
{$IFNDEF UNICODE}
UTF8Text: UTF8String;
{$ENDIF} // UNICODE
begin
{$IFDEF UNICODE}
{$IFDEF FPC}
Value := FHashTable.FindIndexOf(Text);
{$ELSE}
Value := FHashTable.ValueOf(Text);
{$ENDIF}
{$ELSE}
UTF8Text := ToUTF8(Text);
Value := FHashTable.ValueOf(UTF8Text);
{$ENDIF} // UNICODE
if Value >= 0 then
Result := Value
else
begin
{$IFDEF UNICODE}
Value := FTextList.Add(Text);
{$ELSE}
Value := FTextList.Add(UTF8Text);
{$ENDIF} // UNICODE
if FTextList.Count < FMaxItemsBeforeResize then
{$IFDEF UNICODE}
FHashTable.Add(Text, {$IFDEF FPC}{%H-}Pointer(Value){$ELSE}Value{$ENDIF})
{$ELSE}
FHashTable.Add(UTF8Text, Value)
{$ENDIF} // UNICODE
else
Resize;
Result := Value;
end;
end;
function TDictionary.Get(const Id: TDicId): XmlString;
begin
{$IFDEF UNICODE}
Result := FTextList[Id];
{$ELSE}
Result := ToUnicode(FTextList[Id]);
{$ENDIF} // UNICODE
end;
procedure TDictionary.Resize;
var
ItemIndex: Integer;
HashSize: Cardinal;
begin
FHashTable.Free;
HashSize := GetGoodHashSize(FLastHashSize+1);
FLastHashSize := HashSize;
{$IFDEF FPC}
FHashTable := TFPHashList.Create;
FHashTable.Capacity := HashSize;
{$ELSE}
FHashTable := TStringHash.Create(HashSize);
{$ENDIF}
FMaxItemsBeforeResize := Trunc((HashSize / 3) * 2);
// re-add items to hash
for ItemIndex := 0 to FTextList.Count - 1 do
FHashTable.Add(FTextList[ItemIndex], {$IFDEF FPC}{%H-}Pointer(ItemIndex){$ELSE}ItemIndex{$ENDIF});
end;
end.