~ubuntu-branches/ubuntu/precise/enigmail/precise-security

« back to all changes in this revision

Viewing changes to extensions/enigmail/src/nsPipeFilterListener.h

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-12 16:36:01 UTC
  • mfrom: (0.12.15)
  • Revision ID: package-import@ubuntu.com-20121112163601-t8e8skdfi3ni9iqp
Tags: 2:1.4.6-0ubuntu0.12.04.1
* New upstream release v1.4.6
  - see LP: #1080212 for USN information
* Drop unneeded patches
  - remove debian/patches/correct-version-number.diff
  - remove debian/patches/dont_register_cids_multiple_times.diff
  - update debian/patches/series
* Support building in an objdir
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* ***** BEGIN LICENSE BLOCK *****
2
 
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3
 
 *
4
 
 * The contents of this file are subject to the Mozilla Public
5
 
 * License Version 1.1 (the "MPL"); you may not use this file
6
 
 * except in compliance with the MPL. You may obtain a copy of
7
 
 * the MPL at http://www.mozilla.org/MPL/
8
 
 *
9
 
 * Software distributed under the MPL is distributed on an "AS
10
 
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
11
 
 * implied. See the MPL for the specific language governing
12
 
 * rights and limitations under the MPL.
13
 
 *
14
 
 * The Original Code is protoZilla.
15
 
 *
16
 
 * The Initial Developer of the Original Code is Ramalingam Saravanan.
17
 
 * Portions created by Ramalingam Saravanan <sarava@sarava.net> are
18
 
 * Copyright (C) 2000 Ramalingam Saravanan. All Rights Reserved.
19
 
 *
20
 
 * Contributor(s):
21
 
 * Patrick Brunschwig <patrick@mozilla-enigmail.org>
22
 
 *
23
 
 * Alternatively, the contents of this file may be used under the terms of
24
 
 * either the GNU General Public License Version 2 or later (the "GPL"), or
25
 
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
26
 
 * in which case the provisions of the GPL or the LGPL are applicable instead
27
 
 * of those above. If you wish to allow use of your version of this file only
28
 
 * under the terms of either the GPL or the LGPL, and not to allow others to
29
 
 * use your version of this file under the terms of the MPL, indicate your
30
 
 * decision by deleting the provisions above and replace them with the notice
31
 
 * and other provisions required by the GPL or the LGPL. If you do not delete
32
 
 * the provisions above, a recipient may use your version of this file under
33
 
 * the terms of any one of the MPL, the GPL or the LGPL.
34
 
 * ***** END LICENSE BLOCK ***** */
35
 
 
36
 
#ifndef nsPipeFilterListener_h__
37
 
#define nsPipeFilterListener_h__
38
 
 
39
 
#include "nspr.h"
40
 
 
41
 
#include "enigmail.h"
42
 
#include "nsIPipeFilterListener.h"
43
 
#include "nsCOMPtr.h"
44
 
 
45
 
#include "nsStringGlue.h"
46
 
#include "nsIInputStream.h"
47
 
 
48
 
typedef struct LineMatchStatus LineMatchStatus;
49
 
struct LineMatchStatus {
50
 
  PRUint32 skipCount;
51
 
  EMBool matchedLine;
52
 
  EMBool matchedCR;
53
 
  PRUint32 matchOffset;
54
 
  PRUint32 matchCount;
55
 
};
56
 
 
57
 
// Implementation class for nsIPipeFilterListener
58
 
class nsPipeFilterListener : public nsIPipeFilterListener,
59
 
                             public nsIInputStream
60
 
{
61
 
public:
62
 
    NS_DECL_ISUPPORTS
63
 
    NS_DECL_NSIREQUESTOBSERVER
64
 
    NS_DECL_NSISTREAMLISTENER
65
 
    NS_DECL_NSIPIPEFILTERLISTENER
66
 
    NS_DECL_NSIINPUTSTREAM
67
 
 
68
 
    nsPipeFilterListener();
69
 
    virtual ~nsPipeFilterListener();
70
 
 
71
 
    // Define a Create method to be used with a factory:
72
 
    static NS_METHOD
73
 
    Create(nsISupports *aOuter, REFNSIID aIID, void **aResult);
74
 
 
75
 
protected:
76
 
    NS_METHOD TransmitData(const char* buf, PRUint32 count,
77
 
                           nsIStreamListener* listener,
78
 
                           nsIRequest* aRequest, nsISupports* aContext);
79
 
 
80
 
    NS_METHOD EndRequest(nsIRequest* aRequest, nsISupports* aContext);
81
 
 
82
 
    PRInt32  MatchDelimiter(const char* buf, PRUint32 bufLen,
83
 
                            LineMatchStatus& delim,
84
 
                            nsCString& delimStr,
85
 
                            nsCString& delimLine);
86
 
 
87
 
    PRUint32 MatchString(const char* buf, PRUint32 count,
88
 
                         const char* str, PRUint32 length,
89
 
                         PRUint32& strOffset);
90
 
 
91
 
    nsresult HeaderSearch(const char* buf, PRUint32 count,
92
 
                          PRUint32 *headerOffset);
93
 
 
94
 
    nsresult ParseMimeHeaders(const char* mimeHeaders, PRUint32 count,
95
 
                              PRInt32 *retval);
96
 
 
97
 
    nsresult ParseHeader(const char* header, PRUint32 count);
98
 
 
99
 
    static const char* const LineBreaks[3];
100
 
 
101
 
    EMBool                              mInitialized;
102
 
    EMBool                              mRequestStarted;
103
 
    EMBool                              mRequestEnded;
104
 
    EMBool                              mTailRequestStarted;
105
 
 
106
 
    nsCString                           mStartDelimiter;
107
 
    nsCString                           mEndDelimiter;
108
 
 
109
 
    nsCString                           mStartLine;
110
 
    nsCString                           mEndLine;
111
 
 
112
 
    LineMatchStatus                     mStart;
113
 
    LineMatchStatus                     mEnd;
114
 
 
115
 
    EMBool                              mKeepDelimiters;
116
 
    EMBool                              mMimeMultipart;
117
 
 
118
 
    EMBool                              mAutoMimeBoundary;
119
 
    EMBool                              mFirstMatch;
120
 
    EMBool                              mLastMatch;
121
 
    EMBool                              mSavePartMatch;
122
 
 
123
 
    nsCString                           mOldPartMatch;
124
 
    nsCString                           mPartMatch;
125
 
    PRUint32                            mLinebreak;
126
 
 
127
 
    const char*                         mStreamBuf;
128
 
    PRUint32                            mStreamOffset;
129
 
    PRUint32                            mStreamLength;
130
 
 
131
 
    // Owning refs
132
 
    nsCOMPtr<nsIStreamListener>         mListener;
133
 
    nsCOMPtr<nsIStreamListener>         mTailListener;
134
 
    nsCOMPtr<nsISupports>               mContext;
135
 
};
136
 
 
137
 
#endif // nsPipeFilterListener_h__