sl@0
|
1 |
// Copyright (c) 2007-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 |
// ULogger
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalTechnology
|
sl@0
|
21 |
@prototype
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef INPUTDATA_H_
|
sl@0
|
25 |
#define INPUTDATA_H_
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifdef __SYMBIAN32__
|
sl@0
|
28 |
#include <e32base.h>
|
sl@0
|
29 |
#include <e32cmn.h>
|
sl@0
|
30 |
#else
|
sl@0
|
31 |
#include <iostream.h>
|
sl@0
|
32 |
#include <memory.h>
|
sl@0
|
33 |
#endif
|
sl@0
|
34 |
|
sl@0
|
35 |
|
sl@0
|
36 |
//define ControlData type
|
sl@0
|
37 |
typedef char ControlData;
|
sl@0
|
38 |
|
sl@0
|
39 |
//const values
|
sl@0
|
40 |
const char DATA_SEPARATOR = ' '; //space
|
sl@0
|
41 |
const char CD_CR = 0x0D; //end os line in MacOS style
|
sl@0
|
42 |
const char CD_LF = 0x0A; //end of line in Unix/Linux style
|
sl@0
|
43 |
const int SIZE_OF_EOL = 2;
|
sl@0
|
44 |
const char CD_EOL[SIZE_OF_EOL] = {CD_CR,CD_LF}; //end of line in Windows OS style
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
/**This class should be used to create, update and parse Control Data packages.
|
sl@0
|
49 |
Write type functions create new control data chunk and update existing one, whereas
|
sl@0
|
50 |
read type functions can parse and return certain data from existing control data packages.
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
class CInputData
|
sl@0
|
53 |
{
|
sl@0
|
54 |
public:
|
sl@0
|
55 |
IMPORT_C CInputData(unsigned int aMinPackageSize=2);
|
sl@0
|
56 |
IMPORT_C virtual ~CInputData();
|
sl@0
|
57 |
|
sl@0
|
58 |
//read type functions
|
sl@0
|
59 |
IMPORT_C unsigned long GetSize(const ControlData *aDataPtr);
|
sl@0
|
60 |
IMPORT_C unsigned long GetChunksCount(const ControlData *aDataPtr);
|
sl@0
|
61 |
IMPORT_C const void* GetChunk(const ControlData* aDataPtr, unsigned long aChunkNumber, unsigned long &aChunkSize);
|
sl@0
|
62 |
|
sl@0
|
63 |
//write type functions
|
sl@0
|
64 |
IMPORT_C ControlData* CreatePackage(void* aCommand, signed long aCommandSize);
|
sl@0
|
65 |
IMPORT_C unsigned long AppendNewData(ControlData *&aDataPtr, const void* aAddData, unsigned long aAddDataSize);
|
sl@0
|
66 |
|
sl@0
|
67 |
private:
|
sl@0
|
68 |
unsigned int iMinPackageSize;
|
sl@0
|
69 |
unsigned long FindAvailablePlace(const ControlData *aDataPtr);
|
sl@0
|
70 |
unsigned long CalcNumberOfPaddingChars(const ControlData *aDataPtr);
|
sl@0
|
71 |
|
sl@0
|
72 |
};
|
sl@0
|
73 |
|
sl@0
|
74 |
#endif /*CONTROLDATAMANAGER_H_*/
|