1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
---|
2 | /* ***** BEGIN LICENSE BLOCK *****
|
---|
3 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
---|
4 | *
|
---|
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/
|
---|
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 | * 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.
|
---|
35 | *
|
---|
36 | * ***** END LICENSE BLOCK ***** */
|
---|
37 |
|
---|
38 | #include "nsScriptableInputStream.h"
|
---|
39 | #include "nsMemory.h"
|
---|
40 |
|
---|
41 | NS_IMPL_ISUPPORTS1(nsScriptableInputStream, nsIScriptableInputStream)
|
---|
42 |
|
---|
43 | // nsIBaseStream methods
|
---|
44 | NS_IMETHODIMP
|
---|
45 | nsScriptableInputStream::Close(void) {
|
---|
46 | if (!mInputStream) return NS_ERROR_NOT_INITIALIZED;
|
---|
47 | return mInputStream->Close();
|
---|
48 | }
|
---|
49 |
|
---|
50 | // nsIScriptableInputStream methods
|
---|
51 | NS_IMETHODIMP
|
---|
52 | nsScriptableInputStream::Init(nsIInputStream *aInputStream) {
|
---|
53 | if (!aInputStream) return NS_ERROR_NULL_POINTER;
|
---|
54 | mInputStream = aInputStream;
|
---|
55 | return NS_OK;
|
---|
56 | }
|
---|
57 |
|
---|
58 | NS_IMETHODIMP
|
---|
59 | nsScriptableInputStream::Available(PRUint32 *_retval) {
|
---|
60 | if (!mInputStream) return NS_ERROR_NOT_INITIALIZED;
|
---|
61 | return mInputStream->Available(_retval);
|
---|
62 | }
|
---|
63 |
|
---|
64 | NS_IMETHODIMP
|
---|
65 | nsScriptableInputStream::Read(PRUint32 aCount, char **_retval) {
|
---|
66 | nsresult rv = NS_OK;
|
---|
67 | PRUint32 count = 0;
|
---|
68 | char *buffer = nsnull;
|
---|
69 |
|
---|
70 | if (!mInputStream) return NS_ERROR_NOT_INITIALIZED;
|
---|
71 |
|
---|
72 | rv = mInputStream->Available(&count);
|
---|
73 | if (NS_FAILED(rv)) return rv;
|
---|
74 |
|
---|
75 | count = PR_MIN(count, aCount);
|
---|
76 | buffer = (char*)nsMemory::Alloc(count+1); // make room for '\0'
|
---|
77 | if (!buffer) return NS_ERROR_OUT_OF_MEMORY;
|
---|
78 |
|
---|
79 | PRUint32 amtRead = 0;
|
---|
80 | rv = mInputStream->Read(buffer, count, &amtRead);
|
---|
81 | if (NS_FAILED(rv)) {
|
---|
82 | nsMemory::Free(buffer);
|
---|
83 | return rv;
|
---|
84 | }
|
---|
85 |
|
---|
86 | buffer[amtRead] = '\0';
|
---|
87 | *_retval = buffer;
|
---|
88 | return NS_OK;
|
---|
89 | }
|
---|
90 |
|
---|
91 | NS_METHOD
|
---|
92 | nsScriptableInputStream::Create(nsISupports *aOuter, REFNSIID aIID, void **aResult) {
|
---|
93 | if (aOuter) return NS_ERROR_NO_AGGREGATION;
|
---|
94 |
|
---|
95 | nsScriptableInputStream *sis = new nsScriptableInputStream();
|
---|
96 | if (!sis) return NS_ERROR_OUT_OF_MEMORY;
|
---|
97 |
|
---|
98 | NS_ADDREF(sis);
|
---|
99 | nsresult rv = sis->QueryInterface(aIID, aResult);
|
---|
100 | NS_RELEASE(sis);
|
---|
101 | return rv;
|
---|
102 | }
|
---|