~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/xpcom/io/nsIAsyncOutputStream.idl

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

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 License Version
 
5
 * 1.1 (the "License"); you may not use this file except in compliance with
 
6
 * the License. You may obtain a copy of the License at
 
7
 * http://www.mozilla.org/MPL/
 
8
 *
 
9
 * Software distributed under the License is distributed on an "AS IS" basis,
 
10
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
11
 * for the specific language governing rights and limitations under the
 
12
 * License.
 
13
 *
 
14
 * The Original Code is Mozilla.
 
15
 *
 
16
 * The Initial Developer of the Original Code is
 
17
 * Netscape Communications Corporation.
 
18
 * Portions created by the Initial Developer are Copyright (C) 2002
 
19
 * the Initial Developer. All Rights Reserved.
 
20
 *
 
21
 * Contributor(s):
 
22
 *   Darin Fisher <darin@netscape.com>
 
23
 *
 
24
 * Alternatively, the contents of this file may be used under the terms of
 
25
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
26
 * 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 "nsIOutputStream.idl"
 
39
 
 
40
interface nsIOutputStreamCallback;
 
41
interface nsIEventTarget;
 
42
 
 
43
/**
 
44
 * If an output stream is non-blocking, it may return NS_BASE_STREAM_WOULD_BLOCK
 
45
 * when written to.  The caller must then wait for the stream to become
 
46
 * writable.  If the stream implements nsIAsyncOutputStream, then the caller can
 
47
 * use this interface to request an asynchronous notification when the stream
 
48
 * becomes writable or closed (via the AsyncWait method).
 
49
 *
 
50
 * While this interface is almost exclusively used with non-blocking streams, it
 
51
 * is not necessary that nsIOutputStream::isNonBlocking return true.  Nor is it
 
52
 * necessary that a non-blocking nsIOutputStream implementation also implement
 
53
 * nsIAsyncOutputStream.
 
54
 */
 
55
[scriptable, uuid(10dc9c94-8aff-49c6-8af9-d7fdb7339dae)]
 
56
interface nsIAsyncOutputStream : nsIOutputStream
 
57
{
 
58
    /**
 
59
     * This method closes the stream and sets its internal status.  If the 
 
60
     * stream is already closed, then this method is ignored.  Once the stream
 
61
     * is closed, the stream's status cannot be changed.  Any successful status
 
62
     * code passed to this method is treated as NS_BASE_STREAM_CLOSED, which
 
63
     * is equivalent to nsIInputStream::close. 
 
64
     *
 
65
     * NOTE: this method exists in part to support pipes, which have both an 
 
66
     * input end and an output end.  If the output end of a pipe is closed, then
 
67
     * reads from the input end of the pipe will fail.  The error code returned 
 
68
     * when an attempt is made to read from a "closed" pipe corresponds to the
 
69
     * status code passed in when the output end of the pipe is closed, which
 
70
     * greatly simplifies working with pipes in some cases.
 
71
     *
 
72
     * @param aStatus
 
73
     *        The error that will be reported if this stream is accessed after
 
74
     *        it has been closed.
 
75
     */
 
76
    void closeWithStatus(in nsresult reason);
 
77
 
 
78
    /**
 
79
     * Asynchronously wait for the stream to be writable or closed.  The
 
80
     * notification is one-shot, meaning that each asyncWait call will result
 
81
     * in exactly one notification callback.  After the OnOutputStreamReady event
 
82
     * is dispatched, the stream releases its reference to the 
 
83
     * nsIOutputStreamCallback object.  It is safe to call asyncWait again from the
 
84
     * notification handler.
 
85
     *
 
86
     * This method may be called at any time (even if write has not been called).
 
87
     * In other words, this method may be called when the stream already has
 
88
     * room for more data.  It may also be called when the stream is closed.  If
 
89
     * the stream is already writable or closed when AsyncWait is called, then the
 
90
     * OnOutputStreamReady event will be dispatched immediately.  Otherwise, the
 
91
     * event will be dispatched when the stream becomes writable or closed.
 
92
     * 
 
93
     * @param aCallback
 
94
     *        This object is notified when the stream becomes ready.
 
95
     * @param aFlags
 
96
     *        This parameter specifies optional flags passed in to configure
 
97
     *        the behavior of this method.  Pass zero to specify no flags.
 
98
     * @param aRequestedCount
 
99
     *        Wait until at least this many bytes can be written.  This is only
 
100
     *        a suggestion to the underlying stream; it may be ignored.  The
 
101
     *        caller may pass zero to indicate no preference.
 
102
     * @param aEventTarget
 
103
     *        Specify NULL to receive notification on ANY thread (possibly even
 
104
     *        recursively on the calling thread -- i.e., synchronously), or
 
105
     *        specify that the notification be delivered to a specific event
 
106
     *        target.
 
107
     */
 
108
    void asyncWait(in nsIOutputStreamCallback aCallback,
 
109
                   in unsigned long aFlags,
 
110
                   in unsigned long aRequestedCount,
 
111
                   in nsIEventTarget aEventTarget);
 
112
 
 
113
    /**
 
114
     * If passed to asyncWait, this flag overrides the default behavior,
 
115
     * causing the OnOutputStreamReady notification to be suppressed until the
 
116
     * stream becomes closed (either as a result of closeWithStatus/close being
 
117
     * called on the stream or possibly due to some error in the underlying
 
118
     * stream).
 
119
     */
 
120
    const unsigned long WAIT_CLOSURE_ONLY = (1<<0);
 
121
};
 
122
 
 
123
/**
 
124
 * This is a companion interface for nsIAsyncOutputStream::asyncWait.
 
125
 */
 
126
[scriptable, uuid(40dbcdff-9053-42c5-a57c-3ec910d0f148)]
 
127
interface nsIOutputStreamCallback : nsISupports
 
128
{
 
129
    /**
 
130
     * Called to indicate that the stream is either writable or closed.
 
131
     *
 
132
     * @param aStream
 
133
     *        The stream whose asyncWait method was called.
 
134
     */
 
135
    void onOutputStreamReady(in nsIAsyncOutputStream aStream);
 
136
};