|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectlejos.util.NXTDataLogger
public class NXTDataLogger
Logger class for the NXT that supports real time and deferred (cached) data logging of the primitive datatypes.
This class communicates with
lejos.pc.charting.DataLogger
via Bluetooth or USB which is used by the NXT Charting Logger tool.
When instantiated, the NXTDataLogger
starts out in cached mode (
) as default.
Cache mode uses a growable ring buffer that consumes (if needed) up to all available memory during a logging run.
startCachingLog()
Hints for real-time logging efficiency:
writeLog()
method calls to avoid the protocol
overhead that is incurred when
switching datatypes. For instance, every time you change between writeLog(int)
and writeLog(long)
, a
synchronization message must be sent to change the datatype on the receiver (lejos.pc.charting.DataLogger
).
writeLog()
method with the smallest datatype that fits your data. Less data means better
throughput overall. Note that this implementation always use 4 bytes for datatypes boolean
, short
,
int
, and float
and 8 bytes for long
and double
.
Constructor Summary | |
---|---|
NXTDataLogger()
Default constructor establishes a data logger instance in cache mode. |
Method Summary | |
---|---|
void |
finishLine()
Finish the row and start a new one. |
void |
sendCache(DataOutputStream out,
DataInputStream in)
Sends the log cache. |
void |
sendCache(NXTConnection connection)
Sends the log cache using passed NXTConnection to retrieve the data streams. |
void |
setColumns(LogColumn[] columnDefs)
Set the data set header information for the data log and chart series. |
void |
startCachingLog()
Sets caching (deferred) logging. |
void |
startRealtimeLog(DataOutputStream out,
DataInputStream in)
Start a realtime logging session using passed data streams. |
void |
startRealtimeLog(NXTConnection connection)
Start a realtime logging session using passed NXTConnection to retrieve the data streams. |
void |
stopLogging()
Stop the logging session and close down the connection and data streams. |
void |
writeComment(String comment)
Log a text comment. |
void |
writeLog(boolean datapoint)
Write a boolean value as an int 1 (true ) or 0 (false ) to the log. |
void |
writeLog(byte datapoint)
Write a byte value to the log. |
void |
writeLog(double datapoint)
Write an double to the log. |
void |
writeLog(float datapoint)
Write an float to the log. |
void |
writeLog(int datapoint)
Write an int to the log. |
void |
writeLog(long datapoint)
Write an long to the log. |
void |
writeLog(short datapoint)
Write a short value to the log. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public NXTDataLogger()
startCachingLog()
,
startRealtimeLog(NXTConnection)
Method Detail |
---|
public void startRealtimeLog(DataOutputStream out, DataInputStream in) throws IOException
setColumns()
method must be called after this method is called and before the first
writeLog()
method is called.
The use of this method is mutually exclusive with startCachingLog()
and will reset internal state
to realtime mode.
startRealtimeLog
in interface Logger
out
- A valid DataOutputStream
in
- A valid DataInputStream
IOException
- if the data streams are not validstopLogging()
,
startRealtimeLog(NXTConnection)
,
setColumns(lejos.util.LogColumn[])
public void startRealtimeLog(NXTConnection connection) throws IOException
NXTConnection
to retrieve the data streams. The
connection must already be established.
The setColumns()
method must be called after this method is called and before the first
writeLog()
method is called.
The use of this method is mutually exclusive with startCachingLog()
and will reset internal state
to realtime mode.
startRealtimeLog
in interface Logger
connection
- A connected NXTConnection
instance
IOException
- if the data streams are not validstopLogging()
,
startRealtimeLog(DataOutputStream, DataInputStream)
,
setColumns(lejos.util.LogColumn[])
public void stopLogging()
stopLogging
in interface Logger
startRealtimeLog(NXTConnection)
,
startCachingLog()
public void startCachingLog()
setColumns()
method must be called after this method is called and before the first
writeLog()
method is called.
The use of this method is mutually exclusive with the startRealtimeLog()
methods and will reset internal state
to caching mode.
startCachingLog
in interface Logger
stopLogging()
,
sendCache(NXTConnection)
,
startRealtimeLog(NXTConnection)
public void sendCache(DataOutputStream out, DataInputStream in) throws IOException
sendCache
in interface Logger
out
- A valid DataOutputStream
in
- A valid DataInputStream
IOException
- if the data streams are not valid
IllegalStateException
- if startCachingLog()
has not been calledpublic void sendCache(NXTConnection connection) throws IOException
NXTConnection
to retrieve the data streams. The
connection must already be established. Valid only for caching (deferred) logging using startCachingLog()
.
sendCache
in interface Logger
connection
- A connected NXTConnection
instance
IOException
- if the data streams are not valid
IllegalStateException
- if startCachingLog()
has not been calledpublic void finishLine()
The Column count is set by calling
setColumns()
and you must ensure that you call the appropriate writeLog()
method the same number of
times as that column count before this method is called.
finishLine
in interface Logger
IllegalStateException
- if all the columns defined with setColumns()
per row have not been logged.setColumns(lejos.util.LogColumn[])
public void writeLog(boolean datapoint)
boolean
value as an int
1 (true
) or 0 (false
) to the log.
In realtime logging mode, if an IOException
occurs, the connection
and data streams are silently closed down and no exception is thrown from this method.
writeLog
in interface Logger
datapoint
- The boolean
value to log.
IllegalStateException
- if the column datatype for the column position this method was called for does not match
the datatype that was set in setColumns()
, the column position exceeds the total column count (i.e.
finishLine()
was not called after last column logged), or the column
definitions have not been set with setColumns()
.
OutOfMemoryError
- if in cache mode and memory is exhausted.setColumns(lejos.util.LogColumn[])
,
finishLine()
public void writeLog(byte datapoint)
byte
value to the log.
In realtime logging mode, if an IOException
occurs, the connection
and data streams are silently closed down and no exception is thrown from this method.
writeLog
in interface Logger
datapoint
- The byte
value to log.
IllegalStateException
- if the column datatype for the column position this method was called for does not match
the datatype that was set in setColumns()
, the column position exceeds the total column count (i.e.
finishLine()
was not called after last column logged), or the column
definitions have not been set with setColumns()
.
OutOfMemoryError
- if in cache mode and memory is exhausted.setColumns(lejos.util.LogColumn[])
,
finishLine()
public void writeLog(short datapoint)
short
value to the log.
In realtime logging mode, if an IOException
occurs, the connection
and data streams are silently closed down and no exception is thrown from this method.
writeLog
in interface Logger
datapoint
- The short
value to log.
IllegalStateException
- if the column datatype for the column position this method was called for does not match
the datatype that was set in setColumns()
, the column position exceeds the total column count (i.e.
finishLine()
was not called after last column logged), or the column
definitions have not been set with setColumns()
.
OutOfMemoryError
- if in cache mode and memory is exhausted.setColumns(lejos.util.LogColumn[])
,
finishLine()
public void writeLog(int datapoint)
int
to the log. In realtime logging mode, if an IOException
occurs, the connection
and data streams are silently closed down and no exception is thrown from this method.
writeLog
in interface Logger
datapoint
- The int
value to log.
IllegalStateException
- if the column datatype for the column position this method was called for does not match
the datatype that was set in setColumns()
, the column position exceeds the total column count (i.e.
finishLine()
was not called after last column logged), or the column
definitions have not been set with setColumns()
.setColumns(lejos.util.LogColumn[])
,
finishLine()
public void writeLog(long datapoint)
long
to the log. In realtime logging mode, if an IOException
occurs, the connection
and data streams are silently closed down and no exception is thrown from this method.
writeLog
in interface Logger
datapoint
- The long
value to log.
IllegalStateException
- if the column datatype for the column position this method was called for does not match
the datatype that was set in setColumns()
, the column position exceeds the total column count (i.e.
finishLine()
was not called after last column logged), or the column
definitions have not been set with setColumns()
.setColumns(lejos.util.LogColumn[])
,
finishLine()
public void writeLog(float datapoint)
float
to the log. In realtime logging mode, if an IOException
occurs, the connection
and data streams are silently closed down and no exception is thrown from this method.
writeLog
in interface Logger
datapoint
- The float
value to log.
IllegalStateException
- if the column datatype for the column position this method was called for does not match
the datatype that was set in setColumns()
, the column position exceeds the total column count (i.e.
finishLine()
was not called after last column logged), or the column
definitions have not been set with setColumns()
.setColumns(lejos.util.LogColumn[])
,
finishLine()
public void writeLog(double datapoint)
double
to the log. In realtime logging mode, if an IOException
occurs, the connection
and data streams are silently closed down and no exception is thrown from this method.
writeLog
in interface Logger
datapoint
- The double
value to log.
IllegalStateException
- if the column datatype for the column position this method was called for does not match
the datatype that was set in setColumns()
, the column position exceeds the total column count (i.e.
finishLine()
was not called after last column logged), or the column
definitions have not been set with setColumns()
.setColumns(lejos.util.LogColumn[])
,
finishLine()
public void writeComment(String comment)
finishLine()
is called)
writeComment
in interface Logger
comment
- The commentpublic void setColumns(LogColumn[] columnDefs)
writeLog()
item would be column 1, element 2 is column 2, so on and so forth.
The items per log row
must match the number of headers you define in this method.
This method must be called after the startCachingLog()
or either of the startRealtimeLog()
methods is called or an IllegalStateException
will be
thrown in the writeLog()
methods.
The number and datatype of writeLog()
calls per log row must match the number of columns and the datatypes
you define here. You must
end each log row with finishLine()
or an IllegalStateException
will be thrown on the
next writeLog()
call. If using the NXT ChartingLogger tool, the chart
will only reflect the new data sent after this call since the series are redefined.
In realtime mode, if headers are set during logging with the writeLog()
methods, the log will reflect
the changes from that point on. In cached mode, if headers are set during logging with the writeLog()
methods, an UnsupportedOperationException
is thrown.
If length of the passed array is zero or if length > 255, the method does nothing and returns immediately.
setColumns
in interface Logger
columnDefs
- The array of LogColumn
instances to use for the data log column definitions
UnsupportedOperationException
- if setColumns
is called more than once in cached mode.LogColumn
,
finishLine()
,
startCachingLog()
,
startRealtimeLog(NXTConnection)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |