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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: rpfile.h,v 1.1.26.1 2004/07/09 01:54:36 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. #ifndef RPFILE_H
  50. #define RPFILE_H
  51. class CHXMapLongToObj;
  52. class CHXSimpleList;
  53. class PXRealPixFile : public CHXBaseCountingObject,
  54.                       public CUnknownIMP
  55. {
  56.     DECLARE_UNKNOWN(PXRealPixFile)
  57. public:
  58.     enum
  59.     {
  60.         kTimeFormatDHMS         = 0,
  61.         kTimeFormatMilliseconds = 1
  62.     };
  63.     HX_RESULT   SetTitle(const char* pszTitle);
  64.     HX_RESULT   SetTitle(IHXBuffer* pTitleStr);
  65.     HX_RESULT   GetTitle(IHXBuffer** ppTitleStr);
  66.     HX_RESULT   SetAuthor(const char* pszAuthor);
  67.     HX_RESULT   SetAuthor(IHXBuffer* pAuthorStr);
  68.     HX_RESULT   GetAuthor(IHXBuffer** ppAuthorStr);
  69.     HX_RESULT   SetCopyright(const char* pszCopyright);
  70.     HX_RESULT   SetCopyright(IHXBuffer* pCopyrightStr);
  71.     HX_RESULT   GetCopyright(IHXBuffer** ppCopyrightStr);
  72.     void        SetStart(UINT32 ulStart);
  73.     UINT32      GetStart() const;
  74.     void        SetDuration(UINT32 ulDuration);
  75.     UINT32      GetDuration() const;
  76.     void        SetPreroll(UINT32 ulPreroll);
  77.     UINT32      GetPreroll() const;
  78.     void        SetBitrate(UINT32 ulBitrate);
  79.     UINT32      GetBitrate() const;
  80.     void        SetDisplayWidth(UINT32 ulWidth);
  81.     UINT32      GetDisplayWidth() const;
  82.     void        SetDisplayHeight(UINT32 ulHeight);
  83.     UINT32      GetDisplayHeight() const;
  84.     HX_RESULT   SetTimeFormat(UINT32 ulTimeFormat);
  85.     UINT32      GetTimeFormat() const;
  86.     void        SetBackgroundColor(UINT32 ulColor); // in 0x00RRGGBB register format
  87.     void        SetBackgroundColor(BYTE ucRed, BYTE ucGreen, BYTE ucBlue);
  88.     UINT32      GetBackgroundColor() const;
  89.     void        SetBackgroundOpacity(UINT32 ulOpacity);
  90.     UINT32      GetBackgroundOpacity() const;
  91.     void        SetDefaultMaxFps(UINT32 ulMaxFps);
  92.     UINT32      GetDefaultMaxFps() const;
  93.     void        SetDefaultAspectFlag(BOOL bAspectFlag);
  94.     BOOL        GetDefaultAspectFlag() const;
  95.     void        SetDefaultCenterFlag(BOOL bCenterFlag);
  96.     BOOL        GetDefaultCenterFlag() const;
  97.     HX_RESULT   SetDefaultURL(const char* pszDefaultURL);
  98.     HX_RESULT   SetDefaultURL(IHXBuffer* pDefaultURLStr);
  99.     HX_RESULT   GetDefaultURL(IHXBuffer** ppDefaultURLStr);
  100.     void        SetContentVersion(UINT32 ulVersion);
  101.     void        SetContentVersionToAtLeast(UINT32 ulVersion);
  102.     UINT32      GetContentVersion() const;
  103.     HX_RESULT   AddImage(UINT32 ulHandle, const char* pszName);
  104.     HX_RESULT   AddImage(UINT32 ulHandle, IHXBuffer* pName);
  105.     UINT32      GetNumImages() const;
  106.     UINT32      GetNumImagesWithNoSize() const;
  107.     HX_RESULT   GetImageIterator(REF(void*) rpIterator);
  108.     HX_RESULT   GetNextImageHandle(REF(void*) rpIterator, REF(UINT32) rulHandle);
  109.     BOOL        IsImagePresent(UINT32 ulHandle);
  110.     HX_RESULT   GetImageName(UINT32 ulHandle, REF(IHXBuffer*) rpNameStr);
  111.     HX_RESULT   GetImageName(UINT32 ulHandle, REF(const char*) rpszName);
  112.     const char* GetImageName(UINT32 ulHandle);
  113.     HX_RESULT   SetImageName(UINT32 ulHandle, IHXBuffer* pNameStr);
  114.     HX_RESULT   SetImageName(UINT32 ulHandle, const char* pszName);
  115.     HX_RESULT   GetImageErrorStatus(UINT32 ulHandle, REF(HX_RESULT) rlStatus);
  116.     HX_RESULT   SetImageErrorStatus(UINT32 ulHandle, HX_RESULT lStatus);
  117.     HX_RESULT   GetImageSize(UINT32 ulHandle, REF(UINT32) rulSize);
  118.     UINT32      GetImageSize(UINT32 ulHandle);
  119.     HX_RESULT   SetImageSize(UINT32 ulHandle, UINT32 ulSize);
  120.     BOOL        IsImageSizeInitialized(UINT32 ulHandle);
  121.     HX_RESULT   GetImageFileMimeType(UINT32 ulHandle, REF(IHXBuffer*) rpMimeStr);
  122.     HX_RESULT   GetImageFileMimeType(UINT32 ulHandle, REF(const char*) rpszMime);
  123.     const char* GetImageFileMimeType(UINT32 ulHandle);
  124.     HX_RESULT   SetImageFileMimeType(UINT32 ulHandle, IHXBuffer* pMimeStr);
  125.     HX_RESULT   SetImageFileMimeType(UINT32 ulHandle, const char* pszMime);
  126.     HX_RESULT   GetImageStreamMimeType(UINT32 ulHandle, REF(IHXBuffer*) rpMimeStr);
  127.     HX_RESULT   GetImageStreamMimeType(UINT32 ulHandle, REF(const char*) rpszMime);
  128.     const char* GetImageStreamMimeType(UINT32 ulHandle);
  129.     HX_RESULT   SetImageStreamMimeType(UINT32 ulHandle, IHXBuffer* pMimeStr);
  130.     HX_RESULT   SetImageStreamMimeType(UINT32 ulHandle, const char* pszMime);
  131.     HX_RESULT   GetAllImageInfo(UINT32 ulHandle, REF(UINT32) rulSize, REF(IHXBuffer*) rpNameStr,
  132.                                 REF(IHXBuffer*) rpFileMimeStr, REF(IHXBuffer*) rpStreamMimeStr);
  133.     HX_RESULT   GetAllImageInfo(UINT32 ulHandle, REF(UINT32) rulSize, REF(const char*) rpszName,
  134.                                 REF(const char*) rpszFileMime, REF(const char*) rpszStreamMime);
  135.     BOOL        AllImageSizesInitialized();
  136.     BOOL        AllImageSizesOK();
  137.     HX_RESULT   GetFailedImageName(REF(IHXBuffer*) rpFailedNameStr);
  138.     HX_RESULT   AddEffect(PXEffect* pEffect);
  139.     UINT32      GetNumEffects() const;
  140.     HX_RESULT   GetEffectHeadIterator(REF(void*) rpIterator);
  141.     HX_RESULT   GetEffectTailIterator(REF(void*) rpIterator);
  142.     HX_RESULT   GetAtNextEffect(REF(void*) rpIterator, REF(PXEffect*) rpEffect);
  143.     HX_RESULT   GetNextEffect(REF(void*) rpIterator, REF(PXEffect*) rpEffect);
  144.     HX_RESULT   GetPrevEffect(REF(void*) rpIterator, REF(PXEffect*) rpEffect);
  145.     HX_RESULT   GetCurrentEffect(void* pIterator, REF(PXEffect*) rpEffect);
  146.     HX_RESULT   SetFileName(const char* pszFileName);
  147.     HX_RESULT   SetFileName(IHXBuffer* pFileNameStr);
  148.     HX_RESULT   GetFileName(IHXBuffer** ppFileNameStr);
  149.     const char* GetFileName();
  150.     HX_RESULT   PostParseInit();
  151. protected:
  152.     PXRealPixFile();
  153.     virtual ~PXRealPixFile();
  154.     // private enums
  155.     enum
  156.     {
  157.         kMinDuration = 100
  158.     };
  159.     class PXImageInfo
  160.     {
  161.     public:
  162.         PXImageInfo()
  163.         {
  164.             m_ulHandle       = 0;
  165.             m_ulSize         = 0xFFFFFFFF;
  166.             m_pNameStr       = NULL;
  167.             m_pFileMimeStr   = NULL;
  168.             m_pStreamMimeStr = NULL;
  169.             m_lErrorStatus   = HXR_NOT_INITIALIZED;
  170.         };
  171.         ~PXImageInfo()
  172.         {
  173.             HX_RELEASE(m_pNameStr);
  174.             HX_RELEASE(m_pFileMimeStr);
  175.             HX_RELEASE(m_pStreamMimeStr);
  176.         };
  177.         UINT32      m_ulHandle;
  178.         UINT32      m_ulSize;
  179.         IHXBuffer* m_pNameStr;
  180.         IHXBuffer* m_pFileMimeStr;
  181.         IHXBuffer* m_pStreamMimeStr;
  182.         HX_RESULT   m_lErrorStatus;
  183.     };
  184.     void            ClearImageMap();
  185.     void            ClearEffectsList();
  186.     HX_RESULT       SetString(const char* pszStr, IHXBuffer** ppStr);
  187.     HX_RESULT       SetString(IHXBuffer* pStr, IHXBuffer** ppStr);
  188.     HX_RESULT       GetString(IHXBuffer* pInStr, IHXBuffer** ppOutStr);
  189.     HX_RESULT       GetImageInfo(UINT32 ulHandle, REF(PXImageInfo*) rpInfo);
  190.     IHXBuffer*       m_pTitleStr;
  191.     IHXBuffer*       m_pAuthorStr;
  192.     IHXBuffer*       m_pCopyrightStr;
  193.     UINT32           m_ulStart;
  194.     UINT32           m_ulDuration;
  195.     UINT32           m_ulPreroll;
  196.     UINT32           m_ulBitrate;
  197.     UINT32           m_ulWidth;
  198.     UINT32           m_ulHeight;
  199.     UINT32           m_ulTimeFormat;
  200.     UINT32           m_ulBackgroundColor;
  201.     UINT32           m_ulBackgroundOpacity;
  202.     UINT32           m_ulDefaultMaxFps;
  203.     BOOL             m_bDefaultAspectFlag;
  204.     BOOL             m_bDefaultCenterFlag;
  205.     IHXBuffer*       m_pDefaultURLStr;
  206.     UINT32           m_ulContentVersion;
  207.     CHXMapLongToObj* m_pImageMap;
  208.     CHXSimpleList*   m_pEffectsList;
  209.     IHXBuffer*       m_pFileNameStr;
  210. };
  211. inline HX_RESULT PXRealPixFile::SetString(const char* pszStr, IHXBuffer** ppStr)
  212. {
  213.     HX_RESULT retVal = HXR_OK;
  214.     if (pszStr && ppStr)
  215.     {
  216.         HX_RELEASE(*ppStr);
  217.         *ppStr = (IHXBuffer*) new CHXBuffer();
  218.         if (*ppStr)
  219.         {
  220.             (*ppStr)->AddRef();
  221.             retVal = (*ppStr)->SetSize(strlen(pszStr) + 1);
  222.             if (SUCCEEDED(retVal))
  223.             {
  224.                 strcpy((char*) (*ppStr)->GetBuffer(), pszStr); /* Flawfinder: ignore */
  225.             }
  226.         }
  227.         else
  228.         {
  229.             retVal = HXR_OUTOFMEMORY;
  230.         }
  231.     }
  232.     else
  233.     {
  234.         return HXR_INVALID_PARAMETER;
  235.     }
  236.     return retVal;
  237. }
  238. inline HX_RESULT PXRealPixFile::SetString(IHXBuffer* pStr, IHXBuffer** ppStr)
  239. {
  240.     HX_RESULT retVal = HXR_OK;
  241.     if (pStr && ppStr)
  242.     {
  243.         if (pStr->GetBuffer())
  244.         {
  245.             if (strlen((const char*) pStr->GetBuffer()) > 0)
  246.             {
  247.                 HX_RELEASE(*ppStr);
  248.                 *ppStr = pStr;
  249.                 (*ppStr)->AddRef();
  250.             }
  251.             else
  252.             {
  253.                 retVal = HXR_FAIL;
  254.             }
  255.         }
  256.         else
  257.         {
  258.             retVal = HXR_FAIL;
  259.         }
  260.     }
  261.     else
  262.     {
  263.         retVal = HXR_INVALID_PARAMETER;
  264.     }
  265.     
  266.     return retVal;
  267. }
  268. inline HX_RESULT PXRealPixFile::GetString(IHXBuffer* pInStr, IHXBuffer** ppOutStr)
  269. {
  270.     HX_RESULT retVal = HXR_OK;
  271.     if (ppOutStr)
  272.     {
  273.         if (pInStr)
  274.         {
  275.             *ppOutStr = pInStr;
  276.             (*ppOutStr)->AddRef();
  277.         }
  278.         else
  279.         {
  280.             retVal = HXR_NOT_INITIALIZED;
  281.         }
  282.     }
  283.     else
  284.     {
  285.         retVal = HXR_INVALID_PARAMETER;
  286.     }
  287.     return retVal;
  288. }
  289. inline HX_RESULT PXRealPixFile::SetTitle(const char* pszTitle)
  290. {
  291.     return SetString(pszTitle, &m_pTitleStr);
  292. }
  293. inline HX_RESULT PXRealPixFile::SetTitle(IHXBuffer* pTitleStr)
  294. {
  295.     return SetString(pTitleStr, &m_pTitleStr);
  296. }
  297. inline HX_RESULT PXRealPixFile::GetTitle(IHXBuffer** ppTitleStr)
  298. {
  299.     return GetString(m_pTitleStr, ppTitleStr);
  300. }
  301. inline HX_RESULT PXRealPixFile::SetAuthor(const char* pszAuthor)
  302. {
  303.     return SetString(pszAuthor, &m_pAuthorStr);
  304. }
  305. inline HX_RESULT PXRealPixFile::SetAuthor(IHXBuffer* pAuthorStr)
  306. {
  307.     return SetString(pAuthorStr, &m_pAuthorStr);
  308. }
  309. inline HX_RESULT PXRealPixFile::GetAuthor(IHXBuffer** ppAuthorStr)
  310. {
  311.     return GetString(m_pAuthorStr, ppAuthorStr);
  312. }
  313. inline HX_RESULT PXRealPixFile::SetCopyright(const char* pszCopyright)
  314. {
  315.     return SetString(pszCopyright, &m_pCopyrightStr);
  316. }
  317. inline HX_RESULT PXRealPixFile::SetCopyright(IHXBuffer* pCopyrightStr)
  318. {
  319.     return SetString(pCopyrightStr, &m_pCopyrightStr);
  320. }
  321. inline HX_RESULT PXRealPixFile::GetCopyright(IHXBuffer** ppCopyrightStr)
  322. {
  323.     return GetString(m_pCopyrightStr, ppCopyrightStr);
  324. }
  325. inline HX_RESULT PXRealPixFile::SetDefaultURL(const char* pszDefaultURL)
  326. {
  327.     return SetString(pszDefaultURL, &m_pDefaultURLStr);
  328. }
  329. inline HX_RESULT PXRealPixFile::SetDefaultURL(IHXBuffer* pDefaultURLStr)
  330. {
  331.     return SetString(pDefaultURLStr, &m_pDefaultURLStr);
  332. }
  333. inline HX_RESULT PXRealPixFile::GetDefaultURL(IHXBuffer** ppDefaultURLStr)
  334. {
  335.     return GetString(m_pDefaultURLStr, ppDefaultURLStr);
  336. }
  337. inline void PXRealPixFile::SetStart(UINT32 ulStart)
  338. {
  339.     m_ulStart = ulStart;
  340. }
  341. inline UINT32 PXRealPixFile::GetStart() const
  342. {
  343.     return m_ulStart;
  344. }
  345. inline void PXRealPixFile::SetDuration(UINT32 ulDuration)
  346. {
  347.     m_ulDuration = ulDuration;
  348. }
  349. inline UINT32 PXRealPixFile::GetDuration() const
  350. {
  351.     return m_ulDuration;
  352. }
  353. inline void PXRealPixFile::SetPreroll(UINT32 ulPreroll)
  354. {
  355.     m_ulPreroll = ulPreroll;
  356. }
  357. inline UINT32 PXRealPixFile::GetPreroll() const
  358. {
  359.     return m_ulPreroll;
  360. }
  361. inline void PXRealPixFile::SetBitrate(UINT32 ulBitrate)
  362. {
  363.     m_ulBitrate = ulBitrate;
  364. }
  365. inline UINT32 PXRealPixFile::GetBitrate() const
  366. {
  367.     return m_ulBitrate;
  368. }
  369. inline void PXRealPixFile::SetDisplayWidth(UINT32 ulWidth)
  370. {
  371.     m_ulWidth = ulWidth;
  372. }
  373. inline UINT32 PXRealPixFile::GetDisplayWidth() const
  374. {
  375.     return m_ulWidth;
  376. }
  377. inline void PXRealPixFile::SetDisplayHeight(UINT32 ulHeight)
  378. {
  379.     m_ulHeight = ulHeight;
  380. }
  381. inline UINT32 PXRealPixFile::GetDisplayHeight() const
  382. {
  383.     return m_ulHeight;
  384. }
  385. inline HX_RESULT PXRealPixFile::SetTimeFormat(UINT32 ulTimeFormat)
  386. {
  387.     HX_RESULT retVal = HXR_OK;
  388.     if (ulTimeFormat == kTimeFormatDHMS ||
  389.         ulTimeFormat == kTimeFormatMilliseconds)
  390.     {    
  391.         m_ulTimeFormat = ulTimeFormat;
  392.     }
  393.     else
  394.     {
  395.         retVal = HXR_FAIL;
  396.     }
  397.     return retVal;
  398. }
  399. inline UINT32 PXRealPixFile::GetTimeFormat() const
  400. {
  401.     return m_ulTimeFormat;
  402. }
  403. inline void PXRealPixFile::SetBackgroundColor(UINT32 ulColor)
  404. {
  405.     m_ulBackgroundColor = ulColor;
  406. }
  407. inline void PXRealPixFile::SetBackgroundColor(BYTE ucRed, BYTE ucGreen, BYTE ucBlue)
  408. {
  409.     m_ulBackgroundColor = (ucRed << 16) | (ucGreen << 8) | ucBlue;
  410. }
  411. inline UINT32 PXRealPixFile::GetBackgroundColor() const
  412. {
  413.     return m_ulBackgroundColor;
  414. }
  415. inline void PXRealPixFile::SetBackgroundOpacity(UINT32 ulOpacity)
  416. {
  417.     m_ulBackgroundOpacity = (ulOpacity > 255 ? 255 : ulOpacity);
  418. }
  419. inline UINT32 PXRealPixFile::GetBackgroundOpacity() const
  420. {
  421.     return m_ulBackgroundOpacity;
  422. }
  423. inline void PXRealPixFile::SetDefaultMaxFps(UINT32 ulMaxFps)
  424. {
  425.     m_ulDefaultMaxFps = ulMaxFps;
  426. }
  427. inline UINT32 PXRealPixFile::GetDefaultMaxFps() const
  428. {
  429.     return m_ulDefaultMaxFps;
  430. }
  431. inline void PXRealPixFile::SetDefaultAspectFlag(BOOL bAspectFlag)
  432. {
  433.     m_bDefaultAspectFlag = bAspectFlag;
  434. }
  435. inline BOOL PXRealPixFile::GetDefaultAspectFlag() const
  436. {
  437.     return m_bDefaultAspectFlag;
  438. }
  439. inline void PXRealPixFile::SetDefaultCenterFlag(BOOL bCenterFlag)
  440. {
  441.     m_bDefaultCenterFlag = bCenterFlag;
  442. }
  443. inline BOOL PXRealPixFile::GetDefaultCenterFlag() const
  444. {
  445.     return m_bDefaultCenterFlag;
  446. }
  447. inline void PXRealPixFile::SetContentVersion(UINT32 ulVersion)
  448. {
  449.     m_ulContentVersion = ulVersion;
  450. }
  451. inline void PXRealPixFile::SetContentVersionToAtLeast(UINT32 ulVersion)
  452. {
  453.     if (m_ulContentVersion < ulVersion)
  454.     {
  455.         m_ulContentVersion = ulVersion;
  456.     }
  457. }
  458. inline UINT32 PXRealPixFile::GetContentVersion() const
  459. {
  460.     return m_ulContentVersion;
  461. }
  462. inline HX_RESULT PXRealPixFile::SetFileName(const char* pszFileName)
  463. {
  464.     return SetString(pszFileName, &m_pFileNameStr);
  465. }
  466. inline HX_RESULT PXRealPixFile::SetFileName(IHXBuffer* pFileNameStr)
  467. {
  468.     return SetString(pFileNameStr, &m_pFileNameStr);
  469. }
  470. inline HX_RESULT PXRealPixFile::GetFileName(IHXBuffer** ppFileNameStr)
  471. {
  472.     return GetString(m_pFileNameStr, ppFileNameStr);
  473. }
  474. inline const char* PXRealPixFile::GetFileName()
  475. {
  476.     const char* pszRet = NULL;
  477.     if (m_pFileNameStr)
  478.     {
  479.         pszRet = (const char*) m_pFileNameStr->GetBuffer();
  480.     }
  481.     return pszRet;
  482. }
  483. #endif