os/persistentdata/persistentstorage/store/INC/S32HUF.H
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#if !defined(__S32HUF_H__)
sl@0
    17
#define __S32HUF_H__
sl@0
    18
#if !defined(__S32BUF_H__)
sl@0
    19
#include <s32buf.h>
sl@0
    20
#endif
sl@0
    21
#if !defined(__S32STRM_H__)
sl@0
    22
#include <s32strm.h>
sl@0
    23
#endif
sl@0
    24
sl@0
    25
class Huffman // Huffman primitives: sell to base
sl@0
    26
	{
sl@0
    27
public:
sl@0
    28
	IMPORT_C static const TUint* DefaultBits(); // long code needs to be sorted out
sl@0
    29
	IMPORT_C static const TUint8* DefaultTree(); // is there a real case for default tables?
sl@0
    30
//
sl@0
    31
	IMPORT_C void Encode(...); // incremental encoding and decoding primitives
sl@0
    32
	IMPORT_C void Decode(...); // suitable for sharing between descriptors and filters
sl@0
    33
	};
sl@0
    34
//
sl@0
    35
class THufEncodeFilter : public TStreamFilter
sl@0
    36
	{
sl@0
    37
public:
sl@0
    38
	IMPORT_C THufEncodeFilter();
sl@0
    39
	IMPORT_C void Set(MStreamBuf* aHost,const TUint* aHufBits,TInt aMode=EWrite);
sl@0
    40
protected:
sl@0
    41
	IMPORT_C TInt Capacity(TInt aMaxLength);
sl@0
    42
	IMPORT_C TInt FilterL(TAny* aPtr,TInt aMaxLength,const TUint8*& aFrom,const TUint8* anEnd);
sl@0
    43
	IMPORT_C void DoSynchL();
sl@0
    44
private:
sl@0
    45
	const TUint* iTable;
sl@0
    46
	TInt iMaxBits;
sl@0
    47
	TUint iOut;
sl@0
    48
	TInt iBit;
sl@0
    49
	};
sl@0
    50
class THufDecodeFilter : public TStreamFilter
sl@0
    51
	{
sl@0
    52
public:
sl@0
    53
	IMPORT_C THufDecodeFilter();
sl@0
    54
	IMPORT_C void Set(MStreamBuf* aHost,const TUint8* aHufTree,TInt aMode=ERead);
sl@0
    55
protected:
sl@0
    56
	IMPORT_C TInt Capacity(TInt aMaxLength);
sl@0
    57
	IMPORT_C TInt FilterL(TAny* aPtr,TInt aMaxLength,const TUint8*& aFrom,const TUint8* anEnd);
sl@0
    58
	IMPORT_C void DoSynchL();
sl@0
    59
private:
sl@0
    60
	const TUint8* iRoot;
sl@0
    61
	const TUint8* iNode;
sl@0
    62
	TUint iBits;
sl@0
    63
	};
sl@0
    64
//
sl@0
    65
class RHufDecodeReadStream : public RReadStream
sl@0
    66
	{
sl@0
    67
public:
sl@0
    68
	RHufDecodeReadStream() {}
sl@0
    69
	IMPORT_C RHufDecodeReadStream(RReadStream& aHost,const TUint8* aHufTree=Huffman::DefaultTree());
sl@0
    70
	IMPORT_C void Open(RReadStream& aHost,const TUint8* aHufTree=Huffman::DefaultTree());
sl@0
    71
private:
sl@0
    72
	THufDecodeFilter iFilter;
sl@0
    73
	};
sl@0
    74
class RHufEncodeWriteStream : public RWriteStream
sl@0
    75
	{
sl@0
    76
public:
sl@0
    77
	RHufEncodeWriteStream() {}
sl@0
    78
	inline RHufEncodeWriteStream(const MExternalizer<TStreamRef>& anExter);
sl@0
    79
	IMPORT_C RHufEncodeWriteStream(RWriteStream& aHost,const TUint* aHufBits=Huffman::DefaultBits());
sl@0
    80
	IMPORT_C void Open(RWriteStream& aHost,const TUint* aHufBits=Huffman::DefaultBits());
sl@0
    81
private:
sl@0
    82
	THufEncodeFilter iFilter;
sl@0
    83
	};
sl@0
    84
//
sl@0
    85
class RHufEncodeReadStream : public RReadStream
sl@0
    86
	{
sl@0
    87
public:
sl@0
    88
	RHufEncodeReadStream() {}
sl@0
    89
	IMPORT_C RHufEncodeReadStream(RReadStream& aHost,const TUint* aHufBits=Huffman::DefaultBits());
sl@0
    90
	IMPORT_C void Open(RReadStream& aHost,const TUint* aHufBits=Huffman::DefaultBits());
sl@0
    91
private:
sl@0
    92
	THufEncodeFilter iFilter;
sl@0
    93
	};
sl@0
    94
class RHufDecodeWriteStream : public RWriteStream
sl@0
    95
	{
sl@0
    96
public:
sl@0
    97
	RHufDecodeWriteStream() {}
sl@0
    98
	inline RHufDecodeWriteStream(const MExternalizer<TStreamRef>& anExter);
sl@0
    99
	IMPORT_C RHufDecodeWriteStream(RWriteStream& aHost,const TUint8* aHufTree=Huffman::DefaultTree());
sl@0
   100
	IMPORT_C void Open(RWriteStream& aHost,const TUint8* aHufTree=Huffman::DefaultTree());
sl@0
   101
private:
sl@0
   102
	THufDecodeFilter iFilter;
sl@0
   103
	};
sl@0
   104
sl@0
   105
#include "S32HUF.INL"
sl@0
   106
#endif