1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
---|
2 | /* ***** BEGIN LICENSE BLOCK ***** |
---|
3 | * Version: NPL 1.1/GPL 2.0/LGPL 2.1 |
---|
4 | * |
---|
5 | * The contents of this file are subject to the Netscape Public License |
---|
6 | * Version 1.1 (the "License"); you may not use this file except in |
---|
7 | * compliance with the License. You may obtain a copy of the License at |
---|
8 | * http://www.mozilla.org/NPL/ |
---|
9 | * |
---|
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. |
---|
14 | * |
---|
15 | * The Original Code is mozilla.org code. |
---|
16 | * |
---|
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. |
---|
21 | * |
---|
22 | * Contributor(s): |
---|
23 | * |
---|
24 | * |
---|
25 | * Alternatively, the contents of this file may be used under the terms of |
---|
26 | * either the GNU General Public License Version 2 or later (the "GPL"), or |
---|
27 | * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), |
---|
28 | * in which case the provisions of the GPL or the LGPL are applicable instead |
---|
29 | * of those above. If you wish to allow use of your version of this file only |
---|
30 | * under the terms of either the GPL or the LGPL, and not to allow others to |
---|
31 | * use your version of this file under the terms of the NPL, indicate your |
---|
32 | * decision by deleting the provisions above and replace them with the notice |
---|
33 | * and other provisions required by the GPL or the LGPL. If you do not delete |
---|
34 | * the provisions above, a recipient may use your version of this file under |
---|
35 | * the terms of any one of the NPL, the GPL or the LGPL. |
---|
36 | * |
---|
37 | * ***** END LICENSE BLOCK ***** */ |
---|
38 | |
---|
39 | /** |
---|
40 | * MODULE NOTES: |
---|
41 | * @update gess 4/1/98 |
---|
42 | * |
---|
43 | */ |
---|
44 | |
---|
45 | #ifndef __CParserContext |
---|
46 | #define __CParserContext |
---|
47 | |
---|
48 | #include "nsIParser.h" |
---|
49 | #include "nsIURL.h" |
---|
50 | #include "nsIDTD.h" |
---|
51 | #include "nsIStreamListener.h" |
---|
52 | #include "nsIRequest.h" |
---|
53 | #include "nsScanner.h" |
---|
54 | #include "nsString.h" |
---|
55 | #include "nsCOMPtr.h" |
---|
56 | |
---|
57 | /** |
---|
58 | * Note that the parser is given FULL access to all |
---|
59 | * data in a parsercontext. Hey, that what it's for! |
---|
60 | */ |
---|
61 | |
---|
62 | class CParserContext { |
---|
63 | |
---|
64 | public: |
---|
65 | |
---|
66 | enum {eTransferBufferSize=4096}; |
---|
67 | enum eContextType {eCTNone,eCTURL,eCTString,eCTStream}; |
---|
68 | |
---|
69 | CParserContext( nsScanner* aScanner, |
---|
70 | void* aKey=0, |
---|
71 | eParserCommands aCommand=eViewNormal, |
---|
72 | nsIRequestObserver* aListener=0, |
---|
73 | nsIDTD *aDTD=0, |
---|
74 | eAutoDetectResult aStatus=eUnknownDetect, |
---|
75 | PRBool aCopyUnused=PR_FALSE); |
---|
76 | |
---|
77 | CParserContext( const CParserContext& aContext); |
---|
78 | ~CParserContext(); |
---|
79 | |
---|
80 | nsresult GetTokenizer(PRInt32 aType, nsITokenizer*& aTokenizer); |
---|
81 | void SetMimeType(const nsACString& aMimeType); |
---|
82 | |
---|
83 | nsCOMPtr<nsIRequest> mRequest; // provided by necko to differnciate different input streams |
---|
84 | // why is mRequest strongly referenced? see bug 102376. |
---|
85 | nsIDTD* mDTD; |
---|
86 | nsIRequestObserver* mListener; |
---|
87 | char* mTransferBuffer; |
---|
88 | void* mKey; |
---|
89 | nsITokenizer* mTokenizer; |
---|
90 | CParserContext* mPrevContext; |
---|
91 | nsScanner* mScanner; |
---|
92 | |
---|
93 | nsCString mMimeType; |
---|
94 | nsDTDMode mDTDMode; |
---|
95 | |
---|
96 | eParserDocType mDocType; |
---|
97 | eStreamState mStreamListenerState; //this is really only here for debug purposes. |
---|
98 | eContextType mContextType; |
---|
99 | eAutoDetectResult mAutoDetectStatus; |
---|
100 | eParserCommands mParserCommand; //tells us to viewcontent/viewsource/viewerrors... |
---|
101 | |
---|
102 | PRPackedBool mMultipart; |
---|
103 | PRPackedBool mCopyUnused; |
---|
104 | PRUint32 mTransferBufferSize; |
---|
105 | }; |
---|
106 | |
---|
107 | |
---|
108 | |
---|
109 | #endif |
---|
110 | |
---|
111 | |
---|