First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
25 EXPORT_C TDataType::TDataType()
28 /** Default constructor.
30 Sets an empty data type string and sets the associated UID to KNullUid. */
33 EXPORT_C TDataType::TDataType(const TDataType& aDataType)
34 :iDataType(aDataType.iDataType),
38 @param aDataType The data type to be copied. */
41 EXPORT_C TDataType::TDataType(const TDesC8& aDataType)
42 :iDataType(aDataType),
44 /** Constructor taking a descriptor.
46 The data type string is copied from the specified descriptor. By default,
47 the associated UID is set to KNullUid.
49 If the data type string begins with the characters "x-epoc/x-app", identifying
50 data as a native Symbian type, then the associated UID is set to the UID value
51 which is expected to follow the characters "x-epoc/x-app".
53 If no sensible UID can be extracted from the characters following: "x-epoc/x-app",
54 then the associated UID is set to KNullUid.
56 @param aDataType The source for the data type string. Note that this is an
62 EXPORT_C TDataType::TDataType(TUid aUid)
64 /** Constructor taking a UID.
66 The data type string is set to "x-epoc/x-app" concatenated with the decimal
67 character representation of the specified UID value. The data type is assumed
68 to identify data as a native Symbian type.
70 @param aUid The associated UID. */
72 iDataType=KApaAppTypeDes;
73 iDataType.AppendNum(STATIC_CAST(TInt,iUid.iUid));
76 EXPORT_C TInt TDataType::operator==(const TDataType& aDataType) const
77 /** Compares this data type for equality with the specified data type.
79 Two data types are equal if their data type strings are the same. Text is
80 folded for the purpose of the comparison, removing accents and converting
81 letters to a common case form.
83 @param aDataType The data type taking part in the comparison.
84 @return True, if the data types are equal; false, otherwise. */
86 return (iDataType.CompareF(aDataType.iDataType)==0);
89 EXPORT_C TInt TDataType::operator!=(const TDataType& aDataType) const
90 /** Compares this data type for inequality with the specified data type.
92 Two data types are only equal if their data type strings are the same. Text
93 is folded for the purpose of the comparison, removing accents and converting
94 letters to a common case form.
96 @param aDataType The data type taking part in the comparison.
97 @return True, if the data types are not equal; false, otherwise. */
99 return iDataType.CompareF(aDataType.iDataType);
102 EXPORT_C TBool TDataType::IsNative() const
103 /** Tests whether the data type is a native Symbian type.
105 @return True, if the data type is a native Symbian type; false, otherwise. */
107 return iUid!=KNullUid;
110 EXPORT_C TUid TDataType::Uid() const
111 /** Gets the UID associated with this data type.
118 EXPORT_C TBuf<KMaxDataTypeLength> TDataType::Des() const
119 /** Gets a copy of the data type string.
121 @return A modifiable buffer descriptor containing a copy of the data type
122 string. Note that this descriptor is a build independent type. */
125 TBuf16<KMaxDataTypeLength> buf;
133 EXPORT_C TPtrC8 TDataType::Des8() const
134 /** Gets an 8 bit non-modifiable pointer descriptor to the data type string.
136 @return A pointer descriptor to the data type string. */
141 void TDataType::ParseDes()
143 TInt desLen=KApaAppTypeDes.Length();
144 if (iDataType.Length()<=desLen)
148 if (iDataType.Left(desLen).CompareF(KApaAppTypeDes)==0)
150 TLex8 lex(iDataType);
151 lex.SkipAndMark(desLen);
152 TInt err=lex.Val(iUid.iUid);
159 EXPORT_C void TDataType::InternalizeL(RReadStream& aReadStream)
160 /** Internalizes the data type from a stream.
162 The presence of this function means that the standard templated stream operator>>()
163 is available to internalize objects of this class.
165 @param aReadStream The read stream. */
167 aReadStream >> iDataType;
171 EXPORT_C void TDataType::ExternalizeL(RWriteStream& aWriteStream) const
172 /** Externalizes the data type to a stream.
174 The presence of this function means that the standard templated stream operator<<()
175 is available to externalise objects of this class.
177 @param aWriteStream The write stream. */
179 aWriteStream << iDataType;
183 // class TDataTypeWithPriority
186 /** Default constructor */
187 EXPORT_C TDataTypeWithPriority::TDataTypeWithPriority()
191 /** Constructor taking a data type and a priority value.
193 @param aDataType The data type.
194 @param aPriority The priority value. */
195 EXPORT_C TDataTypeWithPriority::TDataTypeWithPriority(const TDataType& aDataType, TDataTypePriority aPriority)
196 : iDataType(aDataType),
200 /** Internalizes the data type from a stream.
202 The presence of this function means that the standard templated stream operator>>()
203 is available to internalize objects of this class.
205 @param aReadStream The read stream. */
206 EXPORT_C void TDataTypeWithPriority::InternalizeL(RReadStream& aReadStream)
208 aReadStream >> iDataType;
209 aReadStream >> iPriority;
212 /** Externalizes the data type to a stream.
214 The presence of this function means that the standard templated stream operator<<()
215 is available to externalise objects of this class.
217 @param aWriteStream The write stream. */
218 EXPORT_C void TDataTypeWithPriority::ExternalizeL(RWriteStream& aWriteStream) const
220 aWriteStream << iDataType;
221 aWriteStream << iPriority;
224 GLDEF_C void Panic(TApmPanic aPanic)
226 // Panic the process with APMIME as the category.
229 _LIT(KApMimePanicCat,"APMIME");
230 User::Panic(KApMimePanicCat,aPanic);