symbhxdir.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:10k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: symbhxdir.cpp,v 1.4.28.3 2004/07/09 01:44:20 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. /************************************************************************
  50.  *  Includes
  51.  */
  52. #include "findfile.h"
  53. #include "hxdir.h"
  54. #include "hxheap.h"
  55. #include "hlxosstr.h"
  56. #include "hxstrutl.h"
  57. #include "symbsessionmgr.h"
  58. #include "chxdataf.h"
  59. #include "symbianff.h"
  60. /************************************************************************
  61.  *  Constructor/Destructor
  62.  */
  63. CHXDirectory::CHXDirectory(IUnknown** ppCommonObj)
  64. : m_pFileFinder(NULL)
  65. , m_pSessionManager(NULL)
  66. {
  67.     CSymbSessionMgr::Create(m_pSessionManager, ppCommonObj);
  68. }
  69. CHXDirectory::~CHXDirectory()
  70. {
  71.     HX_DELETE(m_pFileFinder);
  72.     HX_RELEASE(m_pSessionManager);
  73. }
  74. BOOL CHXDirectory::GetSession(void)
  75. {
  76.     if (m_pSessionManager)
  77.     {
  78. return (m_pSessionManager->GetSession(m_symbSession) == HXR_OK);
  79.     }
  80.     
  81.     return FALSE;
  82. }
  83. BOOL CHXDirectory::GetFileAttributes(const char* szPath, TUint& symbAttValue)
  84. {
  85.     BOOL bRetVal = FALSE;
  86.     if (GetSession())
  87.     {
  88. OS_STRING_TYPE osFileName(szPath);
  89. TPtrC symbNameDesc((TText*) ((OS_TEXT_PTR) osFileName));
  90. bRetVal = (m_symbSession.Att(symbNameDesc, symbAttValue) == KErrNone);
  91.     }
  92.     return bRetVal;
  93. }
  94. BOOL CHXDirectory::IsWritable()
  95. {
  96.     TUint symbAttValue;
  97.     BOOL bRetVal = FALSE;
  98.     
  99.     if ((!m_strPath.IsEmpty()) && GetFileAttributes(m_strPath, symbAttValue))
  100.     {
  101. bRetVal = (!(symbAttValue & KEntryAttReadOnly));
  102.     }
  103.     return bRetVal;
  104. }
  105. BOOL CHXDirectory::IsWritable(const char* szPath)
  106. {
  107.     TUint symbAttValue;
  108.     BOOL bRetVal = FALSE;
  109.     
  110.     if (GetFileAttributes(szPath, symbAttValue))
  111.     {
  112. bRetVal = (!(symbAttValue & KEntryAttReadOnly));
  113.     }
  114.     return bRetVal;
  115. }
  116. void CHXDirectory::SetPath(const char* szPath)
  117. {
  118.     if (szPath)
  119.     {
  120. m_strPath = szPath;
  121. // make sure path ends with a '' 
  122. if (m_strPath.IsEmpty() || (m_strPath.Right(1) != OS_SEPARATOR_STRING))
  123. {
  124.     m_strPath += OS_SEPARATOR_STRING;
  125. }
  126.     }
  127. }
  128. BOOL CHXDirectory::SetTempPath(HXXHANDLE , const char* szRelPath)
  129. {
  130.     // caller must specify a sub-directory
  131.     if ((szRelPath == NULL) || (szRelPath[0] == ''))
  132.     {
  133. return FALSE;
  134.     }
  135.     m_strPath.Empty();
  136.     // try current working directory
  137.     if (!SetCurrentDir() || !IsWritable(m_strPath))
  138.     {
  139. return FALSE;
  140.     }
  141.     
  142.     // now append the sub-directory, separating if necessary
  143.     if ((m_strPath.IsEmpty() || (m_strPath.Right(1) != OS_SEPARATOR_STRING)) && 
  144. (szRelPath[0] != OS_SEPARATOR_CHAR))
  145.     {
  146. m_strPath += OS_SEPARATOR_STRING;
  147.     }
  148.     m_strPath += szRelPath;
  149.     if (m_strPath.Right(1) != OS_SEPARATOR_STRING)
  150.     {
  151. m_strPath += OS_SEPARATOR_STRING;
  152.     }
  153.     return TRUE;
  154. }
  155. BOOL CHXDirectory::Create()
  156. {
  157.     BOOL bRetVal = FALSE;
  158.     if ((!m_strPath.IsEmpty()) && GetSession())
  159.     {
  160. TInt symbError;
  161. OS_STRING_TYPE osFileName(m_strPath);
  162. TPtrC symbNameDesc((TText*) ((OS_TEXT_PTR) osFileName));
  163. symbError = m_symbSession.MkDirAll(symbNameDesc);
  164. bRetVal = (symbError == KErrNone);
  165.     }
  166.     return bRetVal;
  167. }
  168. BOOL CHXDirectory::IsValid()
  169. {
  170.     TUint symbAttValue;
  171.     BOOL bRetVal = FALSE;
  172.     
  173.     if ((!m_strPath.IsEmpty()) && GetFileAttributes(m_strPath, symbAttValue))
  174.     {
  175. bRetVal = ((symbAttValue & KEntryAttDir) != 0);
  176.     }
  177.     return bRetVal;
  178. }
  179. BOOL CHXDirectory::DeleteDirectory()
  180. {
  181.     BOOL bRetVal = FALSE;
  182.     if ((!m_strPath.IsEmpty()) && GetSession())
  183.     {
  184. OS_STRING_TYPE osFileName(m_strPath);
  185. TPtrC symbNameDesc((TText*) ((OS_TEXT_PTR) osFileName));
  186. bRetVal = (m_symbSession.RmDir(symbNameDesc) == KErrNone);
  187.     }
  188.     return bRetVal;
  189. }
  190. CHXDirectory::FSOBJ CHXDirectory::FindNextEntry(char*  szPath,
  191. UINT16 nSize,
  192. const char* szPattern,
  193. BOOL bReset)
  194. {
  195.     FSOBJ RetVal = FSOBJ_NOTVALID;
  196.     char* szMatch = NULL;
  197.     char* szMatchPath = NULL;
  198.     BOOL  bDone = FALSE;
  199.     TUint symbAttValue;
  200.     
  201.     // Find the first file that matches the specified pattern
  202.     if (bReset || szPattern || (!m_pFileFinder))
  203.     {
  204. HX_DELETE(m_pFileFinder); 
  205. m_pFileFinder = new CSymbianFindFile(m_strPath,
  206.      0,
  207.      szPattern,
  208.      (IUnknown**) (&m_pSessionManager),
  209.      TRUE); // Find sub-dirs
  210. if (!m_pFileFinder)
  211. {
  212.     return RetVal;
  213. }
  214. szMatch = m_pFileFinder->FindFirst();
  215.     }
  216.     else
  217.     {
  218. szMatch = m_pFileFinder->FindNext();
  219.     }
  220.     while (szMatch && !bDone)
  221.     {
  222. szMatchPath = m_pFileFinder->GetCurFilePath();
  223. if (!GetFileAttributes(szMatchPath, symbAttValue))
  224. {
  225.     return RetVal;
  226. }
  227. if (symbAttValue & KEntryAttDir)
  228. {
  229.     RetVal = FSOBJ_DIRECTORY;
  230.     bDone = TRUE;
  231. }
  232. else if (!(symbAttValue & KEntryAttVolume))
  233. {
  234.     RetVal = FSOBJ_FILE;
  235.     bDone = TRUE;
  236. }
  237. else
  238. {
  239.     // If we couldn't use this one, find another
  240.     szMatch = m_pFileFinder->FindNext();
  241. }
  242. if (RetVal != FSOBJ_NOTVALID)
  243. {
  244.     SafeStrCpy(szPath, szMatchPath, nSize);
  245. }
  246.     }
  247.     return RetVal;
  248. }
  249. CHXDirectory::FSOBJ CHXDirectory::FindFirst(const char* szPattern, char* szPath, UINT16 nSize)
  250. {
  251.     return FindNextEntry(szPath, nSize, szPattern, TRUE);
  252. }
  253. CHXDirectory::FSOBJ CHXDirectory::FindNext(char* szPath, UINT16 nSize)
  254. {
  255.     return FindNextEntry(szPath, nSize);
  256. }
  257. BOOL CHXDirectory::DeleteFile(const char* szRelPath)
  258. {
  259.     CHXString strPath;
  260.     BOOL bRetVal = FALSE;
  261.     if (!szRelPath)
  262.     {
  263.         return FALSE;
  264.     }
  265.     if (strlen(szRelPath) > 1 && szRelPath[1] == ':')
  266.     {
  267.         strPath = szRelPath;
  268.     }
  269.     else
  270.     {
  271. strPath = m_strPath;
  272. strPath += szRelPath;
  273.     }
  274.     CHXDataFile * pSymbCHXFile = CHXDataFile::Construct(0,(IUnknown**)&m_pSessionManager);
  275.     bRetVal = pSymbCHXFile->Delete(strPath);
  276.     HX_DELETE(pSymbCHXFile);
  277.     return bRetVal;
  278. }
  279. BOOL CHXDirectory::SetCurrentDir()
  280. {
  281.     BOOL bRetVal = FALSE;
  282.     if (GetSession())
  283.     {
  284. TFileName* psymbCurrentDir = new TFileName;
  285. if (psymbCurrentDir)
  286. {
  287.     bRetVal = (m_symbSession.SessionPath(*psymbCurrentDir) == KErrNone);
  288.     if (bRetVal)
  289.     {
  290. m_strPath = (const char *) OS_STRING2((OS_TEXT_PTR) psymbCurrentDir->Ptr(), 
  291.       psymbCurrentDir->Length());
  292.     }
  293.     delete psymbCurrentDir;
  294. }
  295.     }
  296.     return bRetVal;
  297. }
  298. BOOL CHXDirectory::MakeCurrentDir()
  299. {
  300.     BOOL bRetVal = FALSE;
  301.     HX_ASSERT("MakeCurrentDir Not Working As Expected" == NULL);
  302.     if (GetSession() && (!m_strPath.IsEmpty()))
  303.     {
  304. OS_STRING_TYPE osFileName(m_strPath);
  305. TPtrC symbNameDesc((TText*) ((OS_TEXT_PTR) osFileName));
  306. bRetVal = (m_symbSession.SetSessionPath(symbNameDesc) == KErrNone);
  307. if (bRetVal)
  308. {
  309.     bRetVal = (m_symbSession.SetDefaultPath(symbNameDesc) == KErrNone);
  310. }
  311.     }
  312.     return bRetVal;
  313. }
  314. UINT32 CHXDirectory::Rename(const char* szOldName, const char* szNewName)
  315. {
  316.     HX_RESULT retVal = HXR_FAIL;
  317.     if (GetSession())
  318.     {
  319. OS_STRING_TYPE osFileNameOld(szOldName);
  320. OS_STRING_TYPE osFileNameNew(szNewName);
  321. TPtrC symbNameDescOld((TText*) ((OS_TEXT_PTR) osFileNameOld));
  322. TPtrC symbNameDescNew((TText*) ((OS_TEXT_PTR) osFileNameNew));
  323. if (m_symbSession.Rename(symbNameDescOld, symbNameDescNew) == KErrNone)
  324. {
  325.     retVal = HXR_OK;
  326. }
  327.     }
  328.     return retVal;
  329. }
  330. BOOL CHXDirectory::IsValidFileDirName(const char* szPath)
  331. {
  332.     BOOL bRetVal = FALSE;
  333.     if (GetSession())
  334.     {
  335. OS_STRING_TYPE osFileName(szPath);
  336. TPtrC symbNameDesc((TText*) ((OS_TEXT_PTR) osFileName));
  337. bRetVal = m_symbSession.IsValidName(symbNameDesc) ? TRUE : FALSE;
  338.     }
  339.     return bRetVal;
  340. }