symbhxdir.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:9k
源码类别:

Symbian

开发平台:

C/C++

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