summaryrefslogtreecommitdiffstats
path: root/obj.h
Commit message (Collapse)AuthorAgeFilesLines
* bugfix: memory leaks in script engineRainer Gerhards2008-04-031-1/+0
|
* implemented module unload handling (required a number of interface changes)Rainer Gerhards2008-03-111-2/+6
|
* - added RSYSLOGD_MODDIR environment variableRainer Gerhards2008-03-071-1/+1
| | | | | - added -M rsyslogd option (allows to specify module directory location) - converted net.c into a loadable library plugin
* corrected invalid function definitionRainer Gerhards2008-02-291-1/+1
|
* - added "debug" command to debug environment settingsRainer Gerhards2008-02-291-6/+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.
* changed obj base object's calling interface to use the new obj_if_tRainer Gerhards2008-02-291-17/+33
| | | | interface structure
* simplified var object, now only supports strings and numbers as a singleRainer Gerhards2008-02-221-4/+4
| | | | type
* used new classes in expr.cRainer Gerhards2008-02-201-0/+1
|
* created var class out of property_tRainer Gerhards2008-02-201-4/+5
|
* - renamed Msg object to usual all-lowercase object name (else we ran intoRainer Gerhards2008-01-301-0/+1
| | | | | | troubles with the framework, also it was somewhat ugly...) - fixed a memory leak in object destruction (was recently introduced by object naming, not present in any released version)
* implemented naming for all objects (mostly as a debug aid, but you neverRainer Gerhards2008-01-291-2/+4
| | | | know what else it will be good for)
* redesigned queue to utilize helper classes for threading support. This isRainer Gerhards2008-01-241-14/+0
| | | | | | finally in a running state for regular (non disk-assisted) queues, with a minor nit at shutdown. So I can finally commit the work again to CVS...
* Module OMSNMP intially added, not completed yet.Andre Lorbach2008-01-221-1/+1
|
* added debug aides for mutex operationsRainer Gerhards2008-01-221-0/+14
|
* worked on threadingRainer Gerhards2008-01-171-1/+1
|
* implemented $MainMsgQueueDiscardMar and $MainMsgQueueDiscardSeverity (butRainer Gerhards2008-01-141-0/+1
| | | | serverity needs to be specified numerically for the time being)
* support for reading back persistet queue information completedRainer Gerhards2008-01-131-1/+1
|
* partial ability to read a disk queue back in (not completed, but would likeRainer Gerhards2008-01-111-0/+1
| | | | to save source for the weekend)
* added function to de-serialize a property bag (untested as other code isRainer Gerhards2008-01-111-0/+1
| | | | yet missing)
* support for object property bags addedRainer Gerhards2008-01-111-0/+1
|
* file stream objects are now persistet on immediate queue shutdown (queueRainer Gerhards2008-01-111-2/+8
| | | | itself is not yet fully persisted)
* - implemented strm object serializer (untested as the code required forRainer Gerhards2008-01-101-0/+2
| | | | test is not yet present - hen/egg problem...)
* changed some config parameters and some cleanupRainer Gerhards2008-01-101-1/+1
|
* - added write functions for several types to stream classRainer Gerhards2008-01-101-8/+7
| | | | - changed objSerialize methods to work directly on the stream class
* made queue file names better readableRainer Gerhards2008-01-101-0/+28
|
* some cleanup on object modelRainer Gerhards2008-01-091-123/+3
|
* changed queue class to use stream classRainer Gerhards2008-01-091-0/+10
|
* created a generic stream class (for file access)Rainer Gerhards2008-01-091-5/+34
|
* completed object deserializerRainer Gerhards2008-01-081-1/+1
|
* - first implementation of "disk" queue mode finished. It still needs someRainer Gerhards2008-01-081-2/+3
| | | | | | | work and the deserializer needs also to be expanded, but the queue at least performs well now. - fixed a race condition that could occur when input modules were terminated
* - MsgSetProperty() implementedRainer Gerhards2008-01-071-7/+36
| | | | | - defined a property class - implemented deserializer (needs some more work)
* implemented class type registryRainer Gerhards2008-01-071-1/+5
|
* performance-tuned stringbuf classRainer Gerhards2008-01-071-1/+1
|
* worked on object header (now also contains the size)Rainer Gerhards2008-01-061-2/+3
|
* completed serializer for msg (but needs review)Rainer Gerhards2008-01-061-1/+7
|
* worked a bit on object serializationRainer Gerhards2008-01-061-3/+21
|
* utilized the new auto-destruction capability so that the queue can nowRainer Gerhards2008-01-041-1/+1
| | | | destruct user objects if needed
* removed serialization pointer from queue; used new base class insteadRainer Gerhards2008-01-041-2/+3
|
* - begun some work on Msg Object serializiationRainer Gerhards2008-01-041-0/+82
- created a kind of general base class