summaryrefslogtreecommitdiffstats
path: root/stream.h
Commit message (Collapse)AuthorAgeFilesLines
* changed some files to grant LGPLv3 extended persmissions on top of GPLv3Rainer Gerhards2008-04-151-7/+8
| | | | | this also is the first sign of something that will evolve into a well-defined "rsyslog runtime library"
* - added "debug" command to debug environment settingsRainer Gerhards2008-02-291-0/+6
| | | | | | | | | - changed the object/interface system to use a new way of calling, giving up the numerical object ID. This was necessary as we needed more extensibility for third-party modules (which don't play at all with the previous fixed object ID). This is stage work for the object loader. Please note that I needed to change the object (de)serializer, I can't outrule that I have introduced bugs there.
* - bugfix: queue aborted when it was shut down, DA-enabled, DA mode was justRainer Gerhards2008-02-271-0/+2
| | | | | | | | | initiated but not fully initialized (a race condition) - bugfix: queue properties sizeOnDisk, bytesRead were persisted to disk with wrong data type (long instead of int64) - could cause problems on 32 bit machines - fixed a problem introduced today, on-disk queue size was now wrongly calculated (but not in any released version)
* changed rsCStrObj name to cstr_t, which is more inline with the rest ofRainer Gerhards2008-02-211-1/+1
| | | | rsyslog (now) and also much easier to type
* added ability to monitor file accross rotationRainer Gerhards2008-02-131-2/+3
|
* - introduced a new, more powerful, message submission interface submitMsg()Rainer Gerhards2008-02-131-0/+1
| | | | | | in additon to logmsg() - a first, rough implementation of imfile that is able to read files (but does not persist or handle rotation or whatever)
* bugfix: having fun with 32/64 bit portability - after 15 years, I finallyRainer Gerhards2008-01-311-4/+4
| | | | | was trapped again ;) -- now fixed, sizes > 2GB supported on 32bit platforms
* - implemented limiting disk space allocated to queuesRainer Gerhards2008-01-301-0/+1
| | | | | - addded $MainMsgQueueMaxDiskSpace config directive - addded $ActionQueueMaxDiskSpace config directive
* worked on threadingRainer Gerhards2008-01-171-1/+1
|
* - implemented $MainMsgQueueTimeoutActionCompletion config directiveRainer Gerhards2008-01-141-1/+2
| | | | | | - implemented $MainMsgQueueTimeoutEnqueue config directive - implemented $MainMsgQueueTimeoutShutdown config directive - some cleanup
* support for reading back persistet queue information completedRainer Gerhards2008-01-131-0/+2
|
* partial ability to read a disk queue back in (not completed, but would likeRainer Gerhards2008-01-111-1/+1
| | | | to save source for the weekend)
* support for de-serializing strm objects addedRainer Gerhards2008-01-111-1/+1
|
* file stream objects are now persistet on immediate queue shutdown (queueRainer Gerhards2008-01-111-4/+6
| | | | itself is not yet fully persisted)
* - implemented strm object serializer (untested as the code required forRainer Gerhards2008-01-101-7/+6
| | | | test is not yet present - hen/egg problem...)
* - added write functions for several types to stream classRainer Gerhards2008-01-101-9/+13
| | | | - changed objSerialize methods to work directly on the stream class
* data record support added to stream output writerRainer Gerhards2008-01-101-0/+1
|
* added buffered output to stream classRainer Gerhards2008-01-101-2/+13
|
* made queue file names better readableRainer Gerhards2008-01-101-1/+4
|
* changed queue file name generation (to be more generic)Rainer Gerhards2008-01-101-0/+2
|
* some cleanup on object modelRainer Gerhards2008-01-091-2/+4
|
* changed queue class to use stream classRainer Gerhards2008-01-091-0/+9
|
* created a generic stream class (for file access)Rainer Gerhards2008-01-091-0/+83