ReadFileAdaptor ComponentA simple component that reads data from a file, line by line, or in chunks of bytes, at a constant rate that you specify. Example UsageRead one line at a time from a text file every 0.2 seconds, outputting to standard output: Pipeline( ReadFileAdaptor("myfile.text", readmode='line', readsize=1, steptime=0.2), ConsoleEchoer(), ).run() Read from a file at 1 Kilobits per second, in chunks of 256 bytes and send it to a server over a TCP network socket: Pipeline( ReadFileAdaptor("myfile.data", readmode='bitrate', readsize=1, bitrate=1024*10), TCPClient("remoteServer.provider.com", port=1500), ).run() How to use itThis component takes input from the outside world, and makes it available on it's outbox. It can take input from the following data sources:
Clearly some of these modes are mutually exclusive! Once ReadFileAdaptor has finished reading from the file, it finishes by sending a producerFinished() message out of its "signal" outbox, then immediately terminates. There is no way to tell ReadFileAdaptor to prematurely stop. It ignores all messages sent to its "control" inbox. To doThe default standalone behaviour is to read in from stdin, and dump to stdout in a teletype fashion the data it recieves. It _may_ gain command line parsing at some point, which would be wacky. (And probably a good way of initialising components - useful standalone & externally) XXX TODO: Signal EOF on an external output to allow clients to destroy us. XXX Implement the closeDown method - ideally add to the component XXX framework. Kamaelia.File.ReadFileAdaptor.ReadFileAdaptorclass ReadFileAdaptor(Axon.Component.component)An instance of this class is a read file adaptor component. It's constructor arguments are all optional. If no arguments are provided, then the default is to read from stdin, one line at a time, as fast as possible. Note that this will cause the outbox to fill at the same rate as stdin can provide data. (Be wary of memory constraints this will cause!)
After setting the ReadFileAdaptor in motion, you can then hook it into your linkages like any other component. Inboxes
Outboxes
Methods defined hereWarning! You should be using the inbox/outbox interface, not these methods (except construction). This documentation is designed as a roadmap as to their functionalilty for maintainers and new component developers. __init__(self[, filename][, command][, readmode][, readsize][, steptime][, bitrate][, chunkrate][, debug])Standard constructor, see class docs for details closeDownComponent(self)#!!!! Called at component exit... Closes the file handle getDataByteLen(self)This method attempts to read data of a specific block size from the file handle. If null, the file is EOF. This method is never called directly. If the readmode is block or bitrate, then the attribute self.getData is set to this function, and then this function is called using self.getData(). The reason for this indirection is to make it so that the check for which readmode we are in is done once, and once only getDataReadline(self)This method attempts to read a line of data from the file handle. If null, the file is EOF. As with getDataByteLen, this method is never called directly. If the readmode is readline (or ""), then the attribute self.getData is set to this function, and then this function is called using self.getData(). Same reason for indirection as above. initialiseComponent(self)Opens the appropriate file handle mainBody(self)We check whether it's time to perform a new read, if it is, we read some data. If we get some data, we put it in out outbox "outbox", and to stdout (if debugging). If we had an error state (eg EOF), we return 0, stopping this component, otherwise we return 1 to live for another line/block. FeedbackGot a problem with the documentation? Something unclear that could be clearer? Want to help improve it? Constructive criticism is very welcome - especially if you can suggest a better rewording! Please leave you feedback here in reply to the documentation thread in the Kamaelia blog. -- Automatic documentation generator, 05 Jun 2009 at 03:01:38 UTC/GMT |
Kamaelia
is an open source project originated from and guided by BBC
Research. For more information browse the site or get in
contact.
This is an ongoing community based development site. As a result the contents of this page is the opinions of the contributors of the pages involved not the organisations involved. Specificially, this page may contain personal views which are not the views of the BBC. (the site is powered by a wiki engine)
(C) Copyright 2008 Kamaelia Contributors, including the British Broadcasting Corporation, All Rights Reserved.