Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/hybridapp_8cpp_source.html
changeset 6 43e37759235e
equal deleted inserted replaced
5:f345bda72bc4 6:43e37759235e
       
     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
       
     2 <html xmlns="http://www.w3.org/1999/xhtml">
       
     3 <head>
       
     4 <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
       
     5 <title>TB9.2 Example Applications: examples/PIPS/hybridapp/src/hybridapp.cpp Source File</title>
       
     6 <link href="tabs.css" rel="stylesheet" type="text/css"/>
       
     7 <link href="doxygen.css" rel="stylesheet" type="text/css"/>
       
     8 </head>
       
     9 <body>
       
    10 <!-- Generated by Doxygen 1.6.2 -->
       
    11 <h1>examples/PIPS/hybridapp/src/hybridapp.cpp</h1><a href="hybridapp_8cpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).</span>
       
    12 <a name="l00002"></a>00002 <span class="comment">// All rights reserved.</span>
       
    13 <a name="l00003"></a>00003 <span class="comment">// This component and the accompanying materials are made available</span>
       
    14 <a name="l00004"></a>00004 <span class="comment">// under the terms of &quot;Eclipse Public License v1.0&quot;</span>
       
    15 <a name="l00005"></a>00005 <span class="comment">// which accompanies this distribution, and is available</span>
       
    16 <a name="l00006"></a>00006 <span class="comment">// at the URL &quot;http://www.eclipse.org/legal/epl-v10.html&quot;.</span>
       
    17 <a name="l00007"></a>00007 <span class="comment">//</span>
       
    18 <a name="l00008"></a>00008 <span class="comment">// Initial Contributors:</span>
       
    19 <a name="l00009"></a>00009 <span class="comment">// Nokia Corporation - initial contribution.</span>
       
    20 <a name="l00010"></a>00010 <span class="comment">//</span>
       
    21 <a name="l00011"></a>00011 <span class="comment">// Contributors:</span>
       
    22 <a name="l00012"></a>00012 <span class="comment">//</span>
       
    23 <a name="l00013"></a>00013 <span class="comment">// Description:</span>
       
    24 <a name="l00014"></a>00014 <span class="comment">// Demonstrates an OE hybrid application.</span>
       
    25 <a name="l00015"></a>00015 <span class="comment">//</span>
       
    26 <a name="l00016"></a>00016 
       
    27 <a name="l00017"></a>00017 
       
    28 <a name="l00018"></a>00018 
       
    29 <a name="l00022"></a>00022 <span class="preprocessor">#include &lt;stdio.h&gt;</span>
       
    30 <a name="l00023"></a>00023 <span class="preprocessor">#include &lt;f32file.h&gt;</span>
       
    31 <a name="l00024"></a>00024 <span class="preprocessor">#include &lt;stdlib.h&gt;</span>
       
    32 <a name="l00025"></a>00025 <span class="preprocessor">#include &lt;string.h&gt;</span>
       
    33 <a name="l00026"></a>00026 
       
    34 <a name="l00032"></a><a class="code" href="hybridapp_8cpp.html#a2cb8584577937cf1b54bedf5f339d32b">00032</a> <span class="keywordtype">char</span>* <a class="code" href="hybridapp_8cpp.html#a2cb8584577937cf1b54bedf5f339d32b">DescToChar</a>(<span class="keyword">const</span> TDesC&amp; aDes)
       
    35 <a name="l00033"></a>00033         {
       
    36 <a name="l00034"></a>00034         <span class="comment">// Get the length of the descriptor.</span>
       
    37 <a name="l00035"></a>00035         TInt length = aDes.Length();
       
    38 <a name="l00036"></a>00036 
       
    39 <a name="l00037"></a>00037         <span class="comment">// Allocate memory to the array of characters.</span>
       
    40 <a name="l00038"></a>00038         <span class="comment">// An additional byte of memory is allocated to the array as </span>
       
    41 <a name="l00039"></a>00039         <span class="comment">// Symbian descriptors do not end with the end of string &#39;\0&#39; character.</span>
       
    42 <a name="l00040"></a>00040         <span class="keywordtype">char</span>* ptr = (<span class="keywordtype">char</span>*)malloc(<span class="keyword">sizeof</span>(<span class="keywordtype">char</span>)*(length + 1));
       
    43 <a name="l00041"></a>00041         <span class="keywordflow">if</span>(ptr == NULL)
       
    44 <a name="l00042"></a>00042                 {
       
    45 <a name="l00043"></a>00043                 <span class="comment">// Return NULL if memory was not allocated properly.</span>
       
    46 <a name="l00044"></a>00044                 <span class="keywordflow">return</span> NULL;
       
    47 <a name="l00045"></a>00045                 }
       
    48 <a name="l00046"></a>00046         <span class="comment">// The loop index.</span>
       
    49 <a name="l00047"></a>00047         TInt ix = 0;
       
    50 <a name="l00048"></a>00048         <span class="keywordflow">for</span>(; ix &lt; length; ix++)
       
    51 <a name="l00049"></a>00049                 {
       
    52 <a name="l00050"></a>00050                 <span class="comment">// Copy the contents of the descriptor into the array of characters.</span>
       
    53 <a name="l00051"></a>00051                 ptr[ix] = aDes[ix];
       
    54 <a name="l00052"></a>00052                 }
       
    55 <a name="l00053"></a>00053         <span class="comment">// Append the end of string to the &#39;C&#39; style string.</span>
       
    56 <a name="l00054"></a>00054         ptr[ix] = <span class="charliteral">&#39;\0&#39;</span>;
       
    57 <a name="l00055"></a>00055 
       
    58 <a name="l00056"></a>00056         <span class="comment">// return the pointer to the array.</span>
       
    59 <a name="l00057"></a>00057         <span class="keywordflow">return</span> ptr;
       
    60 <a name="l00058"></a>00058         }
       
    61 <a name="l00059"></a>00059 
       
    62 <a name="l00065"></a><a class="code" href="hybridapp_8cpp.html#acd930fa97b9d63260709595e22a0f881">00065</a> <span class="keywordtype">void</span> <a class="code" href="hybridapp_8cpp.html#acd930fa97b9d63260709595e22a0f881">PrintDriveInfoL</a>(<span class="keyword">const</span> RFs&amp; aFs, <span class="keyword">const</span> TInt aDriveNumber)
       
    63 <a name="l00066"></a>00066         {
       
    64 <a name="l00067"></a>00067         <span class="comment">// Get the drive information</span>
       
    65 <a name="l00068"></a>00068         TDriveInfo driveInfo;
       
    66 <a name="l00069"></a>00069         TInt errDrive = aFs.Drive(driveInfo,aDriveNumber);
       
    67 <a name="l00070"></a>00070         <span class="keywordflow">if</span>(errDrive != KErrNone)
       
    68 <a name="l00071"></a>00071                 <span class="keywordflow">return</span>;
       
    69 <a name="l00072"></a>00072 
       
    70 <a name="l00073"></a>00073         <span class="comment">// Get the name of the drive.</span>
       
    71 <a name="l00074"></a>00074         TBuf&lt;KMaxFileName&gt; driveName;
       
    72 <a name="l00075"></a>00075         TInt errName = aFs.GetDriveName(aDriveNumber,driveName);
       
    73 <a name="l00076"></a>00076         <span class="keywordflow">if</span>(errName != KErrNone)
       
    74 <a name="l00077"></a>00077                 <span class="keywordflow">return</span>;
       
    75 <a name="l00078"></a>00078 
       
    76 <a name="l00079"></a>00079         <span class="comment">// Convert the drive name from native Symbian descriptor string to a &#39;C&#39; string.</span>
       
    77 <a name="l00080"></a>00080         <span class="keywordtype">char</span>* cptr = <a class="code" href="hybridapp_8cpp.html#a2cb8584577937cf1b54bedf5f339d32b">DescToChar</a>(driveName);
       
    78 <a name="l00081"></a>00081         CleanupStack::PushL(cptr);
       
    79 <a name="l00082"></a>00082         <span class="comment">// Check if a name has been specified for the drive.</span>
       
    80 <a name="l00083"></a>00083         <span class="keywordflow">if</span>(strlen(cptr))
       
    81 <a name="l00084"></a>00084                 {
       
    82 <a name="l00085"></a>00085                 <span class="comment">// Print the name of the drive.</span>
       
    83 <a name="l00086"></a>00086                 printf(<span class="stringliteral">&quot;Drive Name :%s\n&quot;</span>,cptr);
       
    84 <a name="l00087"></a>00087                 }
       
    85 <a name="l00088"></a>00088         
       
    86 <a name="l00089"></a>00089         <span class="comment">// Print the memory information for the drive.</span>
       
    87 <a name="l00090"></a>00090         <span class="comment">// The memory size is defined for a drive only if it is formattable.</span>
       
    88 <a name="l00091"></a>00091         <span class="keywordflow">if</span>((driveInfo.iMediaAtt &amp; KMediaAttFormattable))
       
    89 <a name="l00092"></a>00092                 {
       
    90 <a name="l00093"></a>00093                 TChar driveLetter;
       
    91 <a name="l00094"></a>00094                 <span class="comment">// if drive-list entry non-zero, drive is available</span>
       
    92 <a name="l00095"></a>00095                 TInt errDLetter = aFs.DriveToChar(aDriveNumber,driveLetter);
       
    93 <a name="l00096"></a>00096                 <span class="keywordflow">if</span>(errDLetter != KErrNone)
       
    94 <a name="l00097"></a>00097                         <span class="keywordflow">return</span>;
       
    95 <a name="l00098"></a>00098                 <span class="comment">// The following line prints the drive letter followed by the hex value</span>
       
    96 <a name="l00099"></a>00099                 <span class="comment">// of the integer indicating that drive&#39;s attributes</span>
       
    97 <a name="l00100"></a>00100                 printf(<span class="stringliteral">&quot;Drive Letter: %c\n&quot;</span>,TUint(driveLetter));                        
       
    98 <a name="l00101"></a>00101         
       
    99 <a name="l00102"></a>00102                 <span class="comment">// Get the volume information for the formatted device.</span>
       
   100 <a name="l00103"></a>00103                 TVolumeInfo volumeInfo;
       
   101 <a name="l00104"></a>00104                 TInt errVol = aFs.Volume(volumeInfo,aDriveNumber);
       
   102 <a name="l00105"></a>00105                 <span class="keywordflow">if</span>(errVol != KErrNone)
       
   103 <a name="l00106"></a>00106                         <span class="keywordflow">return</span>;
       
   104 <a name="l00107"></a>00107 
       
   105 <a name="l00108"></a>00108                 <span class="comment">// Get the total size and the free space of the drive.</span>
       
   106 <a name="l00109"></a>00109                 TInt64 driveTotalSize = volumeInfo.iSize;
       
   107 <a name="l00110"></a>00110                 TInt64 driveFreeSize =  volumeInfo.iFree;
       
   108 <a name="l00111"></a>00111                 <span class="comment">// Print the memory information for the drive.</span>
       
   109 <a name="l00112"></a>00112                 printf(<span class="stringliteral">&quot;Total size of the drive: %d\n&quot;</span>, driveTotalSize);
       
   110 <a name="l00113"></a>00113                 printf(<span class="stringliteral">&quot;Free space: %d\n&quot;</span>, driveFreeSize);
       
   111 <a name="l00114"></a>00114                 
       
   112 <a name="l00115"></a>00115                 printf(<span class="stringliteral">&quot; [press the enter key to continue]\n&quot;</span>);
       
   113 <a name="l00116"></a>00116                 <span class="comment">// Wait for a key press.</span>
       
   114 <a name="l00117"></a>00117                 getchar();
       
   115 <a name="l00118"></a>00118                 }
       
   116 <a name="l00119"></a>00119         
       
   117 <a name="l00120"></a>00120         CleanupStack::PopAndDestroy(cptr);
       
   118 <a name="l00121"></a>00121         }
       
   119 <a name="l00122"></a>00122 
       
   120 <a name="l00123"></a><a class="code" href="hybridapp_8cpp.html#a689e0bf9aa924a1d7dc108665d44736c">00123</a> LOCAL_C <span class="keywordtype">void</span> MainL()
       
   121 <a name="l00124"></a>00124         {
       
   122 <a name="l00125"></a>00125         <span class="comment">// The file server session.</span>
       
   123 <a name="l00126"></a>00126         RFs fs;
       
   124 <a name="l00127"></a>00127         <span class="comment">// Connect to the file server.</span>
       
   125 <a name="l00128"></a>00128         User::LeaveIfError(fs.Connect());
       
   126 <a name="l00129"></a>00129         CleanupClosePushL(fs);
       
   127 <a name="l00130"></a>00130         printf(<span class="stringliteral">&quot;\nValid drives as characters (and as numbers) are:\n&quot;</span>);
       
   128 <a name="l00131"></a>00131 
       
   129 <a name="l00132"></a>00132         <span class="comment">// Initialise drive number to the first drive.</span>
       
   130 <a name="l00133"></a>00133         TInt driveNumber=EDriveA;
       
   131 <a name="l00134"></a>00134         TChar driveLetter;
       
   132 <a name="l00135"></a>00135 
       
   133 <a name="l00136"></a>00136     <span class="keywordflow">for</span> (; driveNumber&lt;=EDriveZ; driveNumber++)
       
   134 <a name="l00137"></a>00137         {
       
   135 <a name="l00138"></a>00138         <span class="keywordflow">if</span> (fs.IsValidDrive(driveNumber))
       
   136 <a name="l00139"></a>00139             {
       
   137 <a name="l00140"></a>00140                         <span class="comment">// Indicates that the drive exists and is valid.</span>
       
   138 <a name="l00141"></a>00141             TInt errDrive = fs.DriveToChar(driveNumber,driveLetter);
       
   139 <a name="l00142"></a>00142             <span class="keywordflow">if</span>(errDrive == KErrNone)
       
   140 <a name="l00143"></a>00143                 {
       
   141 <a name="l00144"></a>00144                                 <span class="comment">// Print the drive letter.</span>
       
   142 <a name="l00145"></a>00145                     printf(<span class="stringliteral">&quot;%c&quot;</span>,TUint(driveLetter));
       
   143 <a name="l00146"></a>00146                                 <span class="comment">// Convert the drive letter to the drive number.</span>
       
   144 <a name="l00147"></a>00147                     TInt errChar = fs.CharToDrive(driveLetter, driveNumber);
       
   145 <a name="l00148"></a>00148                     <span class="keywordflow">if</span>(errChar == KErrNone)
       
   146 <a name="l00149"></a>00149                         {
       
   147 <a name="l00150"></a>00150                                         <span class="comment">// Print the drive number.</span>
       
   148 <a name="l00151"></a>00151                             printf(<span class="stringliteral">&quot;(%d) &quot;</span>,driveNumber);
       
   149 <a name="l00152"></a>00152                         }
       
   150 <a name="l00153"></a>00153                 }
       
   151 <a name="l00154"></a>00154             }
       
   152 <a name="l00155"></a>00155         }
       
   153 <a name="l00156"></a>00156 
       
   154 <a name="l00157"></a>00157     printf(<span class="stringliteral">&quot;\n&quot;</span>);
       
   155 <a name="l00158"></a>00158 
       
   156 <a name="l00159"></a>00159         <span class="comment">// Get a list of the available drives.</span>
       
   157 <a name="l00160"></a>00160     TDriveList drivelist;
       
   158 <a name="l00161"></a>00161     User::LeaveIfError(fs.DriveList(drivelist));
       
   159 <a name="l00162"></a>00162 
       
   160 <a name="l00163"></a>00163         <span class="comment">// A TDriveList (the list of available drives), is an array of</span>
       
   161 <a name="l00164"></a>00164     <span class="comment">// 26 bytes. Each byte with a non zero value signifies that the</span>
       
   162 <a name="l00165"></a>00165     <span class="comment">// corresponding drive is available.</span>
       
   163 <a name="l00166"></a>00166 
       
   164 <a name="l00167"></a>00167     printf(<span class="stringliteral">&quot;\nUsing DriveList(), available drives are: \n&quot;</span>);
       
   165 <a name="l00168"></a>00168     <span class="keywordflow">for</span> (driveNumber=EDriveA; driveNumber&lt;=EDriveZ;driveNumber++)
       
   166 <a name="l00169"></a>00169         {
       
   167 <a name="l00170"></a>00170         <span class="keywordflow">if</span> (drivelist[driveNumber])
       
   168 <a name="l00171"></a>00171             {
       
   169 <a name="l00172"></a>00172                         <span class="comment">// if drive-list entry non-zero, drive is available</span>
       
   170 <a name="l00173"></a>00173             TInt errDrive = fs.DriveToChar(driveNumber,driveLetter);
       
   171 <a name="l00174"></a>00174             <span class="keywordflow">if</span>(errDrive == KErrNone)
       
   172 <a name="l00175"></a>00175                 {
       
   173 <a name="l00176"></a>00176                     <span class="comment">// The following line prints the drive letter followed by the hex value</span>
       
   174 <a name="l00177"></a>00177                     <span class="comment">// of the integer indicating that drive&#39;s attributes</span>
       
   175 <a name="l00178"></a>00178                     printf(<span class="stringliteral">&quot;Drive Letter: %c\n&quot;</span>,TUint(driveLetter));
       
   176 <a name="l00179"></a>00179                                 printf(<span class="stringliteral">&quot; [press the enter key to continue]\n&quot;</span>);
       
   177 <a name="l00180"></a>00180                                 <span class="comment">// Wait for a key press.</span>
       
   178 <a name="l00181"></a>00181                                 getchar();
       
   179 <a name="l00182"></a>00182                 }
       
   180 <a name="l00183"></a>00183             }
       
   181 <a name="l00184"></a>00184         }
       
   182 <a name="l00185"></a>00185     
       
   183 <a name="l00186"></a>00186         printf(<span class="stringliteral">&quot;Memory information for formattable drives:\n&quot;</span>);
       
   184 <a name="l00187"></a>00187         printf(<span class="stringliteral">&quot; [press the enter key to continue]\n&quot;</span>);
       
   185 <a name="l00188"></a>00188         <span class="comment">// Wait for a key press.</span>
       
   186 <a name="l00189"></a>00189         getchar();
       
   187 <a name="l00190"></a>00190         <span class="keywordflow">for</span> (driveNumber=EDriveA; driveNumber&lt;=EDriveZ;driveNumber++)
       
   188 <a name="l00191"></a>00191         {
       
   189 <a name="l00192"></a>00192         <span class="keywordflow">if</span> (drivelist[driveNumber])
       
   190 <a name="l00193"></a>00193             {
       
   191 <a name="l00194"></a>00194                         <a class="code" href="hybridapp_8cpp.html#acd930fa97b9d63260709595e22a0f881">PrintDriveInfoL</a>(fs,driveNumber);
       
   192 <a name="l00195"></a>00195                         }
       
   193 <a name="l00196"></a>00196                 }       
       
   194 <a name="l00197"></a>00197 
       
   195 <a name="l00198"></a>00198         CleanupStack::PopAndDestroy(&amp;fs);
       
   196 <a name="l00199"></a>00199         }
       
   197 <a name="l00200"></a>00200 
       
   198 <a name="l00201"></a>00201 
       
   199 <a name="l00202"></a><a class="code" href="hybridapp_8cpp.html#a0f358e9c4355138f629b8c4f37310295">00202</a> GLDEF_C TInt E32Main()
       
   200 <a name="l00203"></a>00203         {
       
   201 <a name="l00204"></a>00204         <span class="comment">// Create cleanup stack</span>
       
   202 <a name="l00205"></a>00205         __UHEAP_MARK;
       
   203 <a name="l00206"></a>00206         CTrapCleanup* cleanup = CTrapCleanup::New();
       
   204 <a name="l00207"></a>00207 
       
   205 <a name="l00208"></a>00208         <span class="comment">// Run application code inside TRAP harness, wait for key press when terminated</span>
       
   206 <a name="l00209"></a>00209         TRAPD(mainError, MainL());
       
   207 <a name="l00210"></a>00210         <span class="keywordflow">if</span> (mainError)
       
   208 <a name="l00211"></a>00211                 {
       
   209 <a name="l00212"></a>00212                 printf(<span class="stringliteral">&quot; failed, leave code = %d&quot;</span>, mainError);
       
   210 <a name="l00213"></a>00213                 }
       
   211 <a name="l00214"></a>00214 
       
   212 <a name="l00215"></a>00215         printf(<span class="stringliteral">&quot; [press the enter key to exit]\n&quot;</span>);
       
   213 <a name="l00216"></a>00216         getchar();
       
   214 <a name="l00217"></a>00217 
       
   215 <a name="l00218"></a>00218         <span class="keyword">delete</span> cleanup;
       
   216 <a name="l00219"></a>00219         __UHEAP_MARKEND;
       
   217 <a name="l00220"></a>00220         <span class="keywordflow">return</span> KErrNone;
       
   218 <a name="l00221"></a>00221         }
       
   219 <a name="l00222"></a>00222 
       
   220 </pre></div></div>
       
   221 <hr size="1"/><address style="text-align: right;"><small>Generated by&nbsp;
       
   222 <a href="http://www.doxygen.org/index.html">
       
   223 <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.2 </small></address>
       
   224 </body>
       
   225 </html>