Crate logged_stream
source ·Expand description
This library provides a LoggedStream structure which can be used as a wrapper for
underlying IO object which implements Write and Read traits or their
asynchronous analogues from tokio library to enable logging of all read and write
operations, errors and drop.
LoggedStream structure constructs from four parts:
- Underlying IO object, which must implement
WriteandReadtraits or their asynchronous analogues fromtokiolibrary:AsyncReadandAsyncWrite. - Buffer formatting part, which must implement
BufferFormattertrait provided by this library. This part ofLoggedStreamis responsible for the form you will see the input and output bytes. Currently this library provides the following implementations ofBufferFormattertrait:UppercaseHexadecimalFormatter,LowercaseHexadecimalFormatter,DecimalFormatter,BinaryFormatterandOctalFormatter. AlsoBufferFormatteris public trait so you are free to construct your own implementation. - Filtering part, which must implement
RecordFiltertrait provide by this library. This part ofLoggedStreamis responsible for log records filtering. Currently this library provides the following implementation ofRecordFiltertrait:DefaultFilterwhich accepts all log records andRecordKindFilterwhich accepts logs with kinds specified during construct. AlsoRecordFilteris public trait and you are free to construct your own implementation. - Logging part, which must implement
Loggertrait provided by this library. This part ofLoggedStreamis responsible for further work with constructed, formatter and filtered log record. For example, it can be outputted to console, written to the file, written to database, written to the memory for further use or sended by the channel. Currently this library provides the following implementations ofLoggertrait:ConsoleLogger,MemoryStorageLoggerandChannelLogger. AlsoLoggeris public trait and you are free to construct you own implementation.
Structs§
- This implementation of
BufferFormattertrait formats provided bytes buffer in binary number system. - This implementation of
Loggertrait sends log records (Record) by the sending-half of underlying asynchronous channel. You are able to take receiving-half usingtake_receiverandtake_receiver_uncheckedmethods. - This implementation of
Loggertrait writes log record (Record) into console using providedlog::Level. Log records withErrorkind ignore providedlog::Leveland always write withlog::Level::Error. - This implementation of
BufferFormattertrait formats provided bytes buffer in decimal number system. - This is default implementation of
RecordFiltertrait whichcheckmethod always returntrue. It should be constructed usingDefault::defaultmethod. - This is a structure that can be used as a wrapper for underlying IO object which implements
ReadandWritetraits or their asynchronous analogues fromtokiolibraryAsyncReadandAsyncWriteto enable logging of all read and write operations, errors and drop. - This implementation of
BufferFormattertrait formats provided bytes buffer in hexdecimal number system. - This implementation of
Loggertrait writes log record (Record) into inner collection (collections::VecDeque). Inner collection length limited by number provided during structure construction. You are able to retrieve accumulated log records from inner collection usingget_log_recordsmethod and clean inner collection usingclear_log_recordsmethod. - This implementation of
BufferFormattertrait formats provided bytes buffer in octal number system. - This structure represents a log record and contains message string, creation timestamp (
DateTime<Utc>) and record kind (RecordKind). - This implementation of
RecordFiltertrait accepts allowed log record kinds (RecordKind) array during construction and itscheckmethod returnstrueif received log record kind presented inside this array. - This implementation of
BufferFormattertrait formats provided bytes buffer in hexadecimal number system.
Enums§
- This enumeration represents log record kind. It is contained inside
Recordand helps to determine how to work with log record message content which is different for each log record kind.
Traits§
- This trait allows to format bytes buffer using
format_buffermethod. It should be implemented for structures which are going to be used as formatting part insideLoggedStream. - This trait allows to process log record (
Record) usinglogmethod. It should be implemented for structures which are going to be used as logging part insideLoggedStream. Methodlogis called byLoggedStreamfor further log record processing (writing to the console, to the memory or database, etc.) after log record message was formatted by some implementation ofBufferFormatterand the entire log record was filtered by some implementation ofRecordFilter. - This trait allows to filter log records (
Record) usingcheckmethod which returnsboolvalue. It should be implemented for structures which are going to be used as filtering part insideLoggedStream.