sbCharsetDetector.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set sw=2 :miv */
3 /*
4  *=BEGIN SONGBIRD GPL
5  *
6  * This file is part of the Songbird web player.
7  *
8  * Copyright(c) 2005-2010 POTI, Inc.
9  * http://www.songbirdnest.com
10  *
11  * This file may be licensed under the terms of of the
12  * GNU General Public License Version 2 (the ``GPL'').
13  *
14  * Software distributed under the License is distributed
15  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
16  * express or implied. See the GPL for the specific language
17  * governing rights and limitations.
18  *
19  * You should have received a copy of the GPL along with this
20  * program. If not, go to http://www.gnu.org/licenses/gpl.html
21  * or write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23  *
24  *=END SONGBIRD GPL
25  */
26 
27 #ifndef _SB_CHARSET_DETECTOR_H_
28 #define _SB_CHARSET_DETECTOR_H_
29 
30 //------------------------------------------------------------------------------
31 //------------------------------------------------------------------------------
32 //
33 // Songbird charset detector defs.
34 //
35 //------------------------------------------------------------------------------
36 //------------------------------------------------------------------------------
37 
43 //------------------------------------------------------------------------------
44 //
45 // Songbird charset detector imported services.
46 //
47 //------------------------------------------------------------------------------
48 
49 // Mozilla imports.
50 #include <nsCOMPtr.h>
51 #include <nsICharsetDetectionObserver.h>
52 #include <nsStringGlue.h>
53 
54 // Songbird imports.
55 #include <sbICharsetDetector.h>
56 
57 
58 //------------------------------------------------------------------------------
59 //
60 // Songbird charset detector definitions.
61 //
62 //------------------------------------------------------------------------------
63 
64 //
65 // Songbird charset detector XPCOM component definitions.
66 //
67 
68 #define SB_CHARSETDETECTOR_CLASSNAME "sbCharsetDetector"
69 #define SB_CHARSETDETECTOR_DESCRIPTION "Songbird Charset Detector Utilities"
70 #define SB_CHARSETDETECTOR_CID \
71 { \
72  0x32f9b560, \
73  0x4830, \
74  0x11df, \
75  { 0x98, 0x79, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66 } \
76 }
77 
78 
79 //------------------------------------------------------------------------------
80 //
81 // Songbird charset detector classes.
82 //
83 //------------------------------------------------------------------------------
84 
89 class nsICharsetDetector;
90 
92  public nsICharsetDetectionObserver
93 {
94  //----------------------------------------------------------------------------
95  //
96  // Public interface.
97  //
98  //----------------------------------------------------------------------------
99 
100 public:
101 
102  //
103  // Implemented interfaces.
104  //
105 
107  NS_DECL_SBICHARSETDETECTOR
108 
109  //
110  // Public services.
111  //
112 
114 
115  virtual ~sbCharsetDetector();
116 
117  /* nsICharsetDetectionObserver */
118  NS_IMETHOD Notify(const char* aCharset, nsDetectionConfident aConf);
119 
120 private:
121 
122  nsresult RunCharsetDetector(const nsACString& aStringToDetect);
123 
124  nsCOMPtr<nsICharsetDetector> mDetector;
125  nsCString mDetectedCharset;
126  nsCString mLastCharset;
127  nsDetectionConfident mLastConfidence;
128  PRBool mIsCharsetFound;
129  PRBool mIsDone;
130 };
131 
132 
133 #endif /* _SB_CHARSET_DETECTOR_H_ */
134 
NS_DECL_ISUPPORTS NS_DECL_SBICHARSETDETECTOR sbCharsetDetector()
A helper class to detect the string charset.
NS_IMETHOD Notify(const char *aCharset, nsDetectionConfident aConf)