os/ossrv/genericservices/mimerecognitionfw/apmime/APMSTD.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <s32strm.h>
    17 
    18 #include "APMSTD.H"
    19 #include "APMPAN.H"
    20 
    21 //
    22 // class TDataType
    23 //
    24 
    25 EXPORT_C TDataType::TDataType()
    26 	:iDataType(),
    27 	iUid(KNullUid)
    28 /** Default constructor.
    29 
    30 Sets an empty data type string and sets the associated UID to KNullUid. */
    31 	{}
    32 
    33 EXPORT_C TDataType::TDataType(const TDataType& aDataType)
    34 	:iDataType(aDataType.iDataType),
    35 	iUid(aDataType.iUid)
    36 /** Copy constructor.
    37 
    38 @param aDataType The data type to be copied. */
    39 	{}
    40 
    41 EXPORT_C TDataType::TDataType(const TDesC8& aDataType)
    42 	:iDataType(aDataType),
    43 	iUid(KNullUid)
    44 /** Constructor taking a descriptor.
    45 
    46 The data type string is copied from the specified descriptor. By default, 
    47 the associated UID is set to KNullUid.
    48 
    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".
    52 
    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.
    55 
    56 @param aDataType The source for the data type string. Note that this is an 
    57 8 bit descriptor. */
    58 	{
    59 	ParseDes();
    60 	}
    61 
    62 EXPORT_C TDataType::TDataType(TUid aUid)
    63 	:iUid(aUid)
    64 /** Constructor taking a UID.
    65 
    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.
    69 
    70 @param aUid The associated UID. */
    71 	{
    72 	iDataType=KApaAppTypeDes;
    73 	iDataType.AppendNum(STATIC_CAST(TInt,iUid.iUid));
    74 	}
    75 
    76 EXPORT_C TInt TDataType::operator==(const TDataType& aDataType) const
    77 /** Compares this data type for equality with the specified data type.
    78 
    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.
    82 
    83 @param aDataType The data type taking part in the comparison.
    84 @return True, if the data types are equal; false, otherwise. */
    85 	{
    86 	return (iDataType.CompareF(aDataType.iDataType)==0);
    87 	}
    88 
    89 EXPORT_C TInt TDataType::operator!=(const TDataType& aDataType) const
    90 /** Compares this data type for inequality with the specified data type.
    91 
    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.
    95 
    96 @param aDataType The data type taking part in the comparison.
    97 @return True, if the data types are not equal; false, otherwise. */
    98 	{
    99 	return iDataType.CompareF(aDataType.iDataType);
   100 	}
   101 
   102 EXPORT_C TBool TDataType::IsNative() const
   103 /** Tests whether the data type is a native Symbian type.
   104 
   105 @return True, if the data type is a native Symbian type; false, otherwise. */
   106 	{
   107 	return iUid!=KNullUid;
   108 	}
   109 
   110 EXPORT_C TUid TDataType::Uid() const
   111 /** Gets the UID associated with this data type.
   112 
   113 @return The UID. */
   114 	{
   115 	return iUid;
   116 	}
   117 
   118 EXPORT_C TBuf<KMaxDataTypeLength> TDataType::Des() const
   119 /** Gets a copy of the data type string.
   120 
   121 @return A modifiable buffer descriptor containing a copy of the data type 
   122 string. Note that this descriptor is a build independent type. */
   123 	{
   124 #ifdef _UNICODE
   125 	TBuf16<KMaxDataTypeLength> buf;
   126 	buf.Copy(iDataType);
   127 	return buf;
   128 #else
   129 	return iDataType;
   130 #endif // _UNICODE
   131 	}
   132 
   133 EXPORT_C TPtrC8 TDataType::Des8() const
   134 /** Gets an 8 bit non-modifiable pointer descriptor to the data type string.
   135 
   136 @return A pointer descriptor to the data type string. */
   137 	{
   138 	return iDataType;
   139 	}
   140 
   141 void TDataType::ParseDes()
   142 	{
   143 	TInt desLen=KApaAppTypeDes.Length();
   144 	if (iDataType.Length()<=desLen)
   145 		iUid=KNullUid;
   146 	else
   147 		{
   148 		if (iDataType.Left(desLen).CompareF(KApaAppTypeDes)==0)
   149 			{
   150 			TLex8 lex(iDataType);
   151 			lex.SkipAndMark(desLen);
   152 			TInt err=lex.Val(iUid.iUid);
   153 			if (err!=KErrNone)
   154 				iUid=KNullUid;
   155 			}
   156 		}
   157 	}
   158 
   159 EXPORT_C void TDataType::InternalizeL(RReadStream& aReadStream)
   160 /** Internalizes the data type from a stream.
   161 
   162 The presence of this function means that the standard templated stream operator>>() 
   163 is available to internalize objects of this class.
   164 
   165 @param aReadStream The read stream. */
   166 	{
   167 	aReadStream >> iDataType;
   168 	ParseDes();
   169 	}
   170 
   171 EXPORT_C void TDataType::ExternalizeL(RWriteStream& aWriteStream) const
   172 /** Externalizes the data type to a stream.
   173 
   174 The presence of this function means that the standard templated stream operator<<() 
   175 is available to externalise objects of this class.
   176 
   177 @param aWriteStream The write stream. */
   178 	{
   179 	aWriteStream << iDataType;
   180 	}
   181 
   182 //
   183 // class TDataTypeWithPriority
   184 //
   185 
   186 /** Default constructor */
   187 EXPORT_C TDataTypeWithPriority::TDataTypeWithPriority()
   188 	{
   189 	}
   190 
   191 /** Constructor taking a data type and a priority value.
   192 
   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),
   197 	iPriority(aPriority)
   198 	{}
   199 	
   200 /** Internalizes the data type from a stream.
   201 
   202 The presence of this function means that the standard templated stream operator>>() 
   203 is available to internalize objects of this class.
   204 
   205 @param aReadStream The read stream. */
   206 EXPORT_C void TDataTypeWithPriority::InternalizeL(RReadStream& aReadStream)
   207 	{
   208 	aReadStream >> iDataType;
   209 	aReadStream >> iPriority;
   210 	}
   211 
   212 /** Externalizes the data type to a stream.
   213 
   214 The presence of this function means that the standard templated stream operator<<() 
   215 is available to externalise objects of this class.
   216 
   217 @param aWriteStream The write stream. */
   218 EXPORT_C void TDataTypeWithPriority::ExternalizeL(RWriteStream& aWriteStream) const
   219 	{
   220 	aWriteStream << iDataType;
   221 	aWriteStream << iPriority;
   222 	}
   223 
   224 GLDEF_C void Panic(TApmPanic aPanic)
   225 //
   226 // Panic the process with APMIME as the category.
   227 //
   228 	{
   229 	_LIT(KApMimePanicCat,"APMIME");
   230 	User::Panic(KApMimePanicCat,aPanic);
   231 	}
   232 
   233