neighbor/udisks: move code to class UDisks2::ParseObjects(ReadMessageIter)
This commit is contained in:
parent
0150131984
commit
9626523420
|
@ -19,6 +19,7 @@
|
|||
|
||||
#include "UDisks2.hxx"
|
||||
#include "ReadIter.hxx"
|
||||
#include "ObjectManager.hxx"
|
||||
#include "util/StringAPI.hxx"
|
||||
#include "Compiler.h"
|
||||
|
||||
|
@ -98,4 +99,18 @@ ParseObject(Object &o, ODBus::ReadMessageIter &&i) noexcept
|
|||
});
|
||||
}
|
||||
|
||||
void
|
||||
ParseObjects(ODBus::ReadMessageIter &&i,
|
||||
std::function<void(Object &&o)> callback)
|
||||
{
|
||||
using namespace ODBus;
|
||||
|
||||
ForEachInterface(std::move(i), [&callback](const char *path, auto &&j){
|
||||
Object o(path);
|
||||
ParseObject(o, std::move(j));
|
||||
if (o.IsValid())
|
||||
callback(std::move(o));
|
||||
});
|
||||
}
|
||||
|
||||
} // namespace UDisks2
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#define UDISKS2_HXX
|
||||
|
||||
#include <string>
|
||||
#include <functional>
|
||||
|
||||
#define UDISKS2_PATH "/org/freedesktop/UDisks2"
|
||||
#define UDISKS2_INTERFACE "org.freedesktop.UDisks2"
|
||||
|
@ -57,6 +58,14 @@ struct Object {
|
|||
void
|
||||
ParseObject(Object &o, ODBus::ReadMessageIter &&i) noexcept;
|
||||
|
||||
/**
|
||||
* Parse objects from an array/dictionary and invoke the callback for
|
||||
* each.
|
||||
*/
|
||||
void
|
||||
ParseObjects(ODBus::ReadMessageIter &&i,
|
||||
std::function<void(Object &&o)> callback);
|
||||
|
||||
} // namespace UDisks2
|
||||
|
||||
#endif
|
||||
|
|
|
@ -231,12 +231,9 @@ UdisksNeighborExplorer::OnListNotify(ODBus::Message reply) noexcept
|
|||
return;
|
||||
}
|
||||
|
||||
ForEachInterface(i.Recurse(), [this](const char *path, auto &&j){
|
||||
UDisks2::Object o(path);
|
||||
UDisks2::ParseObject(o, std::move(j));
|
||||
if (o.IsValid())
|
||||
Insert(std::move(o));
|
||||
});
|
||||
ParseObjects(i.Recurse(),
|
||||
std::bind(&UdisksNeighborExplorer::Insert,
|
||||
this, std::placeholders::_1));
|
||||
}
|
||||
|
||||
inline DBusHandlerResult
|
||||
|
|
Loading…
Reference in New Issue