summaryrefslogtreecommitdiffstats
path: root/manager.hpp
Commit message (Collapse)AuthorAgeFilesLines
* Add support for createObjects actionBrad Bishop2017-02-011-0/+4
| | | | | Change-Id: I999a5e506a236eac8ca0944b0e2b003c57612e54 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Maker factory refactoringBrad Bishop2017-02-011-11/+18
| | | | | | | | | | Prepare for the addition of new iface -> class op adapters. Get ready to pass the interface properties to the sdbusplus server binding constructor, once that method is available. Change-Id: I002cc187ac3d8d8a7fd02cc820f831e345e49a61 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Remove Object from testcaseBrad Bishop2017-02-011-3/+1
| | | | | | | | Currently the testcase and the application both define their own Object type. Move to a common header. Change-Id: I05dba67dca7855f522be299fcfd361913ed73fbc Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Minor event refactoringBrad Bishop2017-02-011-4/+4
| | | | | | | | | | | | Assert that all events will share the same filter interface by moving event filters to event base class. Remove virtual on destructors in classes with final. Improve comments in a number of places. Change-Id: Ia32c13fd0f3b9a5fa147a2198a285bce37c27cfb Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Allow multiple objects to be destroyedBrad Bishop2017-01-311-2/+3
| | | | | | | | Enhance the destroyObject action to take an array rather than a single path. Change-Id: Ic1de7274afc253042b590c71ca200618a6ff54d2 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Fix a bug with new interface signalsBrad Bishop2017-01-161-3/+4
| | | | | | | | When creating new objects, Defer sending of interface added signals until all interfaces have been created. Change-Id: I031846861bb8f569be054e1d0303810fc0dd6ba6 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Regenerate manager bindingsBrad Bishop2017-01-161-3/+3
| | | | | | | Re-run sdbus++ and react to the sdbusplus interface namespace move and a real object path type. Change-Id: Id6241b55cd3f2d4c3b85e5545e4ac6e5dd439e34
* Add volatile keyword on shutdownBrad Bishop2017-01-131-1/+1
| | | | | Change-Id: I7448507cf8f18036be6c25bf4ba9d5dd8c2ba768 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Remove decltype where unnecessaryBrad Bishop2017-01-121-1/+1
| | | | | Change-Id: I0d1b9107810a3aaac1f52517b3ff220fdf567ee3 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Run astyleBrad Bishop2017-01-121-157/+157
| | | | | Change-Id: Iec4802e9837465a7deb1fd7fd57a2068cc18c50d Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Add setProperty actionBrad Bishop2017-01-121-0/+27
| | | | | | | | The setProperty action sets a property to a predefined value when a match occurs. Change-Id: Ibd3cbb0da86a99e823b9cc00cc0240772d895f7f Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Add interface exposing utility functionsBrad Bishop2017-01-121-0/+42
| | | | | | | | Add utility functions enabling easy method calls on sdbusplus interface binding objects. Change-Id: Ie1d01f82604406705869fea0ec19d84c95d90474 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Allow arrays of dbus eventsBrad Bishop2017-01-121-4/+7
| | | | | | | | The current event <-> action relationship is one to many. Allow a many to many relationship to be expressed. Change-Id: Ibfb995cbf677b21757864dc62d9a3818af6c2aa3 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Add event frameworkBrad Bishop2017-01-111-5/+4
| | | | | | | | Introduce the concept of events, where the existing Dbus signal match event is one of many possible event classes. Change-Id: I9b0c6ca12daaa109f8ceb537a5fb0cc6b5f7181b Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Use a vector for eventsBrad Bishop2016-12-151-1/+1
| | | | | | | | | The events structure is never inserted into, searched and the keys aren't used. This was a poor choice of data structure. Change-Id: I46135e9128b3380712234e86674e53af10b37053 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Move filters.hpp to events.hppBrad Bishop2016-12-151-1/+1
| | | | | | | | | Prepare for a more generalized event description framework enabling event classes other than DBus signal matches. Filters become a sub-concept within that framework so rename the file. Change-Id: I0be9f9997239aad6e798ca16055aedc3e1233994 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Enable multiple actions per eventBrad Bishop2016-12-151-1/+1
| | | | | | | | Reduce the number of dbus signal callbacks by enabling multiple actions for a single event. Change-Id: I944eea6ac450c2ea9a201e724765edbef4e677b4 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Removed duplicated Holder adaptersBrad Bishop2016-12-151-62/+22
| | | | | | | | Refactor copy/pasted action/filter/interface object adapter types into a single templated framework. Change-Id: Iafbd814572a7db13fddc5314617e310fe5f0a062 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Use sdbusplus object wrapperBrad Bishop2016-11-221-1/+8
| | | | | | | | | | | Use sdbusplus::server::object::object to wrap interfaces. This is the preferred way to ensure created objects emit freedesktop ObjectManager signals. Resolves openbmc/openbmc#756 Change-Id: Ia57057e0227ed92bef77f28e42942194f5e802f3 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* build: Fix out of tree build issuesBrad Bishop2016-11-211-1/+1
| | | | | | | | Eventually server.hpp will come from an external shared library. Until then, iquote it while it lives in-tree. Change-Id: If0f7da8e2c951443fea0d623ad03a7c54a5a5ee9 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Switch to generated interface factory methodsBrad Bishop2016-11-081-0/+6
| | | | | | | | Automatically populate the association of interface with an appropriate sdbusplus server side interface binding. Change-Id: Ie46d91cf2e6726b033789be6228c10ca14a76220 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* actions: Add destroy actionBrad Bishop2016-11-081-0/+3
| | | | | | | Add an action to destroy an object on signal match. Change-Id: I23fb160bcf7507d0d0a5f2d82f1cfb24131adf76 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Add actionsBrad Bishop2016-11-081-1/+5
| | | | | | | | | | Provide tooling to enable specification of pre-implemented actions to perform after a signal match. Add a default 'noop' action to be used when an action isn't specified. Change-Id: I8d3b1ef2cfc26771322820be931a61bba3ad8d94 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Enable filtering of signal matchesBrad Bishop2016-11-081-1/+2
| | | | | | | | | | Provide tooling to enable specification of pre-implemented filtering functors for signal matches. Add a default 'none' filter to be used when a filter isn't specified. Change-Id: I3549d8cf44c5f475626875fa94ca3ee8f74d6d26 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Add manager skeletonBrad Bishop2016-11-081-0/+168
Add stubbed Notify implementation and register for generated signal callbacks. Add a unit test; which, at this point does little more than verify we don't coredump on startup. Change-Id: I0cda71935947c0d082612a5c52e2b7eba98516ab Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
OpenPOWER on IntegriCloud