sbMetadataManager.h
Go to the documentation of this file.
1 /*
2 //
3 // BEGIN SONGBIRD GPL
4 //
5 // This file is part of the Songbird web player.
6 //
7 // Copyright(c) 2005-2008 POTI, Inc.
8 // http://songbirdnest.com
9 //
10 // This file may be licensed under the terms of of the
11 // GNU General Public License Version 2 (the "GPL").
12 //
13 // Software distributed under the License is distributed
14 // on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
15 // express or implied. See the GPL for the specific language
16 // governing rights and limitations.
17 //
18 // You should have received a copy of the GPL along with this
19 // program. If not, go to http://www.gnu.org/licenses/gpl.html
20 // or write to the Free Software Foundation, Inc.,
21 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 //
23 // END SONGBIRD GPL
24 //
25 */
26 
32 #ifndef __METADATA_MANAGER_H__
33 #define __METADATA_MANAGER_H__
34 
35 // INCLUDES ===================================================================
36 #include <nscore.h>
37 #include <prlock.h>
38 #include <prlog.h>
39 #include "sbIMetadataManager.h"
40 #include "sbIMetadataHandler.h"
41 #include <nsCOMPtr.h>
42 #include <nsStringGlue.h>
43 
44 #include <set>
45 #include <list>
46 
47 // DEFINES ====================================================================
48 #define SONGBIRD_METADATAMANAGER_CONTRACTID \
49  "@songbirdnest.com/Songbird/MetadataManager;1"
50 #define SONGBIRD_METADATAMANAGER_CLASSNAME \
51  "Songbird Metadata Manager Interface"
52 #define SONGBIRD_METADATAMANAGER_CID \
53 { /* 32bfdede-854d-448f-bada-7a3b4b192034 */ \
54  0x32bfdede, \
55  0x854d, \
56  0x448f, \
57  {0xba, 0xda, 0x7a, 0x3b, 0x4b, 0x19, 0x20, 0x34} \
58 }
59 // FUNCTIONS ==================================================================
60 
61 // CLASSES ====================================================================
63 {
65  NS_DECL_SBIMETADATAMANAGER
66 
68  virtual ~sbMetadataManager();
69 
70  static sbMetadataManager *GetSingleton();
71  static void DestroySingleton();
72 
73  struct sbMetadataHandlerItem
74  {
75  nsCOMPtr<sbIMetadataHandler> m_Handler;
76  PRInt32 m_Vote;
77  bool operator < ( const sbMetadataManager::sbMetadataHandlerItem &T ) const
78  {
79  return m_Vote < T.m_Vote;
80  }
81  bool operator == ( const sbMetadataManager::sbMetadataHandlerItem &T ) const
82  {
83  return m_Vote == T.m_Vote;
84  }
85  #if PR_LOGGING
86  nsCString m_ContractID;
87  #endif
88  };
89  class handlerlist_t : public std::set< sbMetadataHandlerItem > {};
90  class contractlist_t : public std::list< nsCString > {};
91  contractlist_t m_ContractList;
92  PRLock *m_pContractListLock;
93 
94  nsresult GetHandlerInternal(sbIMetadataHandler *aHandler,
95  const nsAString &strURL,
96  sbIMetadataHandler **_retval);
97 };
98 
100 
101 #endif // __METADATA_MANAGER_H__
102 
bool operator==(sbFraction const &aLeft, sbFraction const &aRight)
Definition: sbFraction.h:166
The manager from which to request a metadata handler.
bool operator<(sbFraction const &aLeft, sbFraction const &aRight)
Definition: sbFraction.h:185
An object capable of manipulating the metadata tags for a media file.
sbMetadataManager * gMetadataManager