1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
[comment {-*- tcl -*- doctools manpage}]
[manpage_begin transfer::copy::queue n 0.1]
[copyright {2006 Andreas Kupries <andreas_kupries@users.sourceforge.net>}]
[moddesc {Data transfer facilities}]
[titledesc {Queued transfers}]
[require Tcl 8.4]
[require snit [opt 1.0]]
[require struct::queue [opt 1.4]]
[require transfer::copy [opt 0.1]]
[require transfer::copy::queue [opt 0.1]]
[description]
[keywords transfer copy channel queue]
[para]
This package provides objects which serialize transfer requests for a
single channel by means of a fifo queue. Accumulating requests are
executed in order of entrance, with the first request reaching an idle
object starting the execution in general. New requests can be added
while the object is active and are defered until all requests entered
before them have been completed successfully.
[para]
When a request causes a transfer error execution stops and all
requests coming after it are not served. Currently this means that
their completion callbacks are never triggered at all.
[para]
[emph NOTE]:
Not triggering the completion callbacks of the unserved
requests after an error stops the queue object is something I
am not fully sure that it makes sense. It forces the user of
the queue to remember the callbacks as well and run
them. Because otherwise everything in the system which depends
on getting a notification about the status of a request will
hang in the air. I am slowly convincing myself that it is more
sensible to trigger the relevant completion callbacks with an
error message about the queue abort, and 0 bytes transfered.
[para]
All transfer requests are of the form
[para][example {
{type data options...}
}][para]
where [arg type] is in {[const chan], [const string]}, and [arg data]
specifies the information to transfer.
For [const chan] the data is the handle of the channel containing the
actual information to transfer, whereas for [const string] [arg data]
contains directly the information to transfer.
The [arg options] are a list of them and their values, and are the
same as are accepted by the low-level copy operations of the package
[package transfer::copy].
Note how just prepending the request with [cmd transfer::copy::do] and
inserting a channel handle in between [arg data] and [arg options]
easily transforms it from a pure data structure into a command whose
evaluation will perform the request.
[section API]
[list_begin definitions]
[call [cmd transfer::copy::queue] \
[arg object] \
[arg outchannel] \
[opt [arg options]...]]
This command creates a new queue [arg object] for the management of
the channel [arg outchannel]. The fully qualified name of the object
command is returned as the result of the command.
[para]
The only option known is [option -on-status-change]. It is optional
and defaults to empty, disabling the reporting of status
changes. Otherwise it argument is command prefix which is invoked
whenever the internal status of the object changed. The callback is
invoked with two additional arguments, the result of the methods
[method pending] and [method busy], in this order. This allows any
user to easily know, for example, when the object has processed all
outstanding requests.
[call [arg object] [method destroy]]
This method destroys the object. Doing so while the object is busy
will cause errors later on, when the currently executed request
completes and tries to access the now missing data structures of the
destroyed object.
[call [arg object] [method busy]]
This method returns a boolean value telling us if the object is
currently serving a request (i.e. [term busy], value [const True]), or
not (i.e. [term idle], value [const False]).
[call [arg object] [method pending]]
This method returns the number of requests currently waiting in the
queue for their execution. A request currently served is not counted
as waiting.
[call [arg object] [method put] [arg request]]
This method enters the transfer [arg request] into the object's queue
of waiting requests.
If the object is [term idle] it will become [term busy], immediately
servicing the request. Otherwise servicing the new request will be
defered until all preceding requests have been served.
[list_end]
[section Use]
A possible application of this package and class is within a HTTP 1.1
server, managing the results waiting for transfer to the client.
[para]
It should be noted that in this application the system also needs an
additional data structure which keeps track of outstanding results as
they may come back in a different order than the requests from the
client, and releases them to the actual queue in the proper order.
[section {BUGS, IDEAS, FEEDBACK}]
This document, and the package it describes, will undoubtedly contain
bugs and other problems.
Please report such in the category [emph transfer] of the
[uri {http://sourceforge.net/tracker/?group_id=12883} {Tcllib SF Trackers}].
Please also report any ideas for enhancements you may have for either
package and/or documentation.
[manpage_end]
|