Follow-on fix for bug 457825. Use sheet principal for agent and user sheets. r=dbaron...
[wine-gecko.git] / intl / chardet / src / nsDebugDetector.h
blobc2806aa89a6499c5ee11d5c797c13054fe78a07e
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
24 * Alternatively, the contents of this file may be used under the terms of
25 * either of the GNU General Public License Version 2 or later (the "GPL"),
26 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
37 #ifndef nsDebugDetector_h__
38 #define nsDebugDetector_h__
40 #include "nsIFactory.h"
41 #include "nsICharsetDetector.h"
44 // {12BB8F18-2389-11d3-B3BF-00805F8A6670}
45 #define NS_1STBLKDBG_DETECTOR_CID \
46 { 0x12bb8f18, 0x2389, 0x11d3, { 0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70 } }
48 // {12BB8F19-2389-11d3-B3BF-00805F8A6670}
49 #define NS_2NDBLKDBG_DETECTOR_CID \
50 { 0x12bb8f19, 0x2389, 0x11d3, { 0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70 } }
52 // {12BB8F1A-2389-11d3-B3BF-00805F8A6670}
53 #define NS_LASTBLKDBG_DETECTOR_CID \
54 { 0x12bb8f1a, 0x2389, 0x11d3, { 0xb3, 0xbf, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70 } }
58 typedef enum {
59 k1stBlk,
60 k2ndBlk,
61 klastBlk
62 } nsDebugDetectorSel;
64 class nsDebugDetector : public nsICharsetDetector
66 NS_DECL_ISUPPORTS
68 public:
69 nsDebugDetector(nsDebugDetectorSel aSel);
70 virtual ~nsDebugDetector();
72 NS_IMETHOD Init(nsICharsetDetectionObserver* aObserver);
74 NS_IMETHOD DoIt(const char* aBytesArray, PRUint32 aLen, PRBool* oDontFeedMe);
76 NS_IMETHOD Done();
78 protected:
80 virtual void Report();
82 private:
83 PRInt32 mBlks;
84 nsDebugDetectorSel mSel;
85 nsICharsetDetectionObserver* mObserver;
86 PRBool mStop;
89 class ns1stBlkDbgDetector : public nsDebugDetector
91 public:
92 ns1stBlkDbgDetector () : nsDebugDetector(k1stBlk) {}
95 class ns2ndBlkDbgDetector : public nsDebugDetector
97 public:
98 ns2ndBlkDbgDetector () : nsDebugDetector(k2ndBlk) {}
101 class nsLastBlkDbgDetector : public nsDebugDetector
103 public:
104 nsLastBlkDbgDetector () : nsDebugDetector(klastBlk) {}
107 #endif // nsDebugDetector_h__