00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef SEN_XML_UTILS_H
00023 #define SEN_XML_UTILS_H
00024
00025
00026 #include <e32base.h>
00027 #include <stringpool.h>
00028
00029
00030 namespace Xml
00031 {
00032
00033 class RAttribute;
00034
00035
00036 typedef RArray<RAttribute> RAttributeArray;
00037 }
00038
00039 using namespace Xml;
00040
00041 class CSenElement;
00042 class CSenBaseAttribute;
00043
00044
00045
00046 namespace
00047 {
00048 const TInt KMaxEscapedLength = 8;
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067 }
00068
00069
00070
00082 class SenXmlUtils
00083 {
00084 public:
00091 IMPORT_C static HBufC8* ToUtf8LC(const TDesC16& aUnicodeString);
00092
00099 IMPORT_C static HBufC16* ToUnicodeLC(const TDesC8& aUtf8String);
00100
00109 IMPORT_C static TBool StartsWith(const TDesC8& aDes,
00110 const TDesC8& aPrefix);
00111
00120 IMPORT_C static TBool EndsWith(const TDesC8& aDes, const TDesC8& aPostfix);
00121
00130 IMPORT_C static TPtrC8 AttrValue( const RAttributeArray& aAttributes,
00131 const TDesC8& aAttrName);
00132
00142 IMPORT_C static HBufC8* AllocAttrValueL(const RAttributeArray& apAttrs,
00143 const TDesC8& aAttrName);
00144
00155 IMPORT_C static void BuildQNameL( const TDesC8& aPrefix,
00156 const TDesC8& aLocalName,
00157 HBufC8*& aQName);
00158
00175 IMPORT_C static TBool EncodeHttpCharactersL(const TDesC8& aOriginal,
00176 HBufC8*& aEncoded);
00186 IMPORT_C static void LeaveOnXmlEscapesL(const TDesC8& aCandidate);
00187
00199 static void LeaveOnInvalidElementNameL(const TDesC8& aCandidate);
00200
00215 IMPORT_C static HBufC8* EncodeHttpCharactersLC(const TDesC8& aOriginal);
00216
00229 IMPORT_C static TBool DecodeHttpCharactersL(const TDesC8& aOriginal,
00230 HBufC8*& aDecoded);
00231
00241 IMPORT_C static HBufC8* DecodeHttpCharactersLC(const TDesC8& aOriginal);
00242
00250 IMPORT_C static TPtrC8 NsPrefix(const TDesC8& aQName);
00251
00259 IMPORT_C static TPtrC8 LocalName(const TDesC8& aQName);
00260
00269 IMPORT_C static CSenBaseAttribute* RemoveAttributeL(CSenElement& aElement,
00270 const TDesC8& aAttrName);
00271
00280 IMPORT_C static CSenBaseAttribute* RemoveAttributeL(CSenElement& aElement,
00281 CSenBaseAttribute* apAttribute);
00282
00295 IMPORT_C static const TDesC8& AddAttributeL(CSenElement& aElement,
00296 const TDesC8& aQName,
00297 const TDesC8& aLocalName,
00298 const TDesC8& aValue);
00299
00311 IMPORT_C static const TDesC8& AddAttributeL(CSenElement& aElement,
00312 const TDesC8& aAttrName,
00313 const TDesC8& aValue);
00320 IMPORT_C static const TDesC8& AddAttributeL(CSenElement& aElement,
00321 CSenBaseAttribute* apAttribute);
00322
00323 private:
00324
00328 SenXmlUtils() { }
00329
00333 SenXmlUtils( const SenXmlUtils& );
00334
00338 SenXmlUtils& operator=( const SenXmlUtils& );
00339
00343 static TBool ReplaceAll( TPtr8 aDestination,
00344 const TDesC8& aFrom,
00345 const TDesC8& aTo );
00346
00350 static CSenBaseAttribute* FindAttrL( CSenElement& aElement,
00351 const TDesC8& aName );
00352 };
00353
00354 #endif // SEN_XML_UTILS_H
00355
00356
00357