os/persistentdata/featuremgmt/featuremgr/src/serverexe/featmgrfeatureentry.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef FEATMGRFEATUREENTRY_H
    21 #define FEATMGRFEATUREENTRY_H
    22 
    23 #include <e32cmn.h>
    24 #include <featmgr/featurecmn.h>
    25 
    26 class RReadStream;
    27 class RWriteStream;
    28 
    29 
    30 /** 
    31 An enumeration for accessing internal feature status flags bits 24..31 used
    32 inside the server. See TFeatureFlags in published header featurecmn.h for the
    33 flag definitions 0..23. 
    34 
    35 @see TFeatureFlags
    36 @see TBitFlagsT
    37 @internalComponent 
    38 */
    39 enum TFeatureFlagsServer 
    40     {
    41     // Do not define flags here for values 0..23. See TFeatureFlags enum.
    42    
    43     /** If set, the feature flag is a Runtime feature flag (created at run time).
    44     if not set means source of feature flag is ROM or plug-in */
    45     EFeatureRuntime         = 24,
    46     
    47     // Reserved flags, these are not currently used in the server
    48     EFeatureFlagUnused25    = 25,
    49     EFeatureFlagUnused26    = 26,
    50     EFeatureFlagUnused27    = 27,
    51     EFeatureFlagUnused28    = 28,
    52     EFeatureFlagUnused29    = 29,
    53     EFeatureFlagUnused30    = 30,
    54     EFeatureFlagUnused31    = 31
    55     };
    56 
    57 
    58 // CLASS DECLARATION
    59 // @see corresponding client side class TFeatureEntry
    60 
    61 class TFeatureServerEntry
    62     {
    63     public:
    64                                                     
    65         /** 
    66         * Constructors.
    67         */
    68         TFeatureServerEntry();
    69         TFeatureServerEntry( TUid aFeature );
    70         TFeatureServerEntry( TUid aFeature, TBitFlags32 aFlags, TUint32 aData );
    71         TFeatureServerEntry( TFeatureEntry& aEntry );
    72             
    73         /** 
    74         * Returns feature status flags.
    75         */
    76         TBitFlags32 FeatureFlags() const;
    77 
    78         /** 
    79         * Returns feature data.
    80         */
    81         TUint32 FeatureData() const;
    82         
    83         /** 
    84         * Returns feature UID.
    85         */
    86         TUid FeatureUid() const;
    87         
    88         /**
    89         * Internalize object from stream
    90         */
    91         void InternalizeL( RReadStream& aStream );
    92         
    93         /**
    94         * Externalize object from stream
    95         */
    96         void ExternalizeL( RWriteStream& aStream ) const;
    97         
    98         /**
    99          *This sets a feature's flags and data
   100          */
   101         void inline Set( TFeatureServerEntry aEntry)
   102             {
   103             iFlags = aEntry.FeatureFlags();
   104             iData = aEntry.FeatureData();
   105             }
   106        
   107         /**
   108          *This sets a feature's flags and data
   109          */
   110         void inline Set(TBitFlags32 aFlags, TUint32 aData)
   111             {
   112             iFlags = aFlags;
   113             iData = aData;
   114             }
   115 
   116     private:
   117 
   118         /** UID of the feature. */         
   119         TUid iFeatureID;
   120         
   121         /** Value of the feature status flags.
   122         @see TFeatureFlags
   123         @see TFeatureFlagsServer */
   124         TBitFlags32 iFlags;
   125         
   126         /** Data associated with feature. */
   127         TUint32 iData;
   128     };
   129 
   130 /**
   131 * Defines TFeatureEntry array. 
   132 */
   133 typedef RArray<TFeatureServerEntry> RFeatureServerArray;
   134 
   135 #endif  // FEATMGRFEATUREENTRY_H
   136 
   137 // End of File