diff options
author | Felix Rohrbach <fxrh@gmx.de> | 2016-10-11 23:19:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-11 23:19:39 +0200 |
commit | 45f38a1d6687d1ceaca87a6d6d94ac2515debb02 (patch) | |
tree | b8c783c118b674d11d75256c2317803644473f99 /jobs | |
parent | 7b0de25eaea285385a7e46183b487a7c7d1fdecd (diff) | |
parent | 29bff90ecb0d1febfa8728383195f0f41c9a29ef (diff) | |
download | libquotient-45f38a1d6687d1ceaca87a6d6d94ac2515debb02.tar.gz libquotient-45f38a1d6687d1ceaca87a6d6d94ac2515debb02.zip |
Merge pull request #32 from Fxrh/kitsune-memory-care
Event objects leaks plugged
Diffstat (limited to 'jobs')
-rw-r--r-- | jobs/syncjob.cpp | 2 | ||||
-rw-r--r-- | jobs/syncjob.h | 45 |
2 files changed, 42 insertions, 5 deletions
diff --git a/jobs/syncjob.cpp b/jobs/syncjob.cpp index 2b2705b1..59c40785 100644 --- a/jobs/syncjob.cpp +++ b/jobs/syncjob.cpp @@ -83,7 +83,7 @@ QString SyncJob::nextBatch() const return d->nextBatch; } -const SyncData& SyncJob::roomData() const +SyncData& SyncJob::roomData() { return d->roomData; } diff --git a/jobs/syncjob.h b/jobs/syncjob.h index ed99b38b..a9138a65 100644 --- a/jobs/syncjob.h +++ b/jobs/syncjob.h @@ -26,10 +26,42 @@ namespace QMatrixClient { + /** + * @brief A crude wrapper around a container of pointers that owns pointers + * to contained objects + * + * Similar to vector<unique_ptr<>>, upon deletion, EventsHolder + * will delete all events contained in it. + */ + template <typename ContainerT> + class Owning : public ContainerT + { + public: + Owning() = default; +#if defined(_MSC_VER) && _MSC_VER < 1900 + // Workaround: Dangerous (auto_ptr style) copy constructor because + // VS2013 (unnecessarily) instantiates EventList::QVector<>::toList() + // which instantiates QList< Owning<> > which needs the contained + // object to have a non-deleted copy constructor. + Owning(Owning& other) : ContainerT(std::move(other)) { } +#else + Owning(Owning&) = delete; +#endif + Owning(Owning&& other) : ContainerT(std::move(other)) { } + ~Owning() { for (auto e: *this) delete e; } + + /** + * @brief returns the underlying events and releases the ownership + * + * Acts similar to unique_ptr::release. + */ + ContainerT release() { return std::move(*this); } + }; + class SyncRoomData { public: - class EventList : public Events + class EventList : public Owning<Events> { private: QString jsonKey; @@ -55,7 +87,13 @@ namespace QMatrixClient JoinState joinState_ = JoinState::Join, const QJsonObject& room_ = QJsonObject()); }; - using SyncData = QVector<SyncRoomData>; +} +Q_DECLARE_TYPEINFO(QMatrixClient::SyncRoomData, Q_MOVABLE_TYPE); + +namespace QMatrixClient +{ + // QVector cannot work with non-copiable objects, std::vector can. + using SyncData = std::vector<SyncRoomData>; class ConnectionData; class SyncJob: public BaseJob @@ -69,7 +107,7 @@ namespace QMatrixClient void setPresence(QString presence); void setTimeout(int timeout); - const SyncData& roomData() const; + SyncData& roomData(); QString nextBatch() const; protected: @@ -82,6 +120,5 @@ namespace QMatrixClient Private* d; }; } -Q_DECLARE_TYPEINFO(QMatrixClient::SyncRoomData, Q_MOVABLE_TYPE); #endif // QMATRIXCLIENT_SYNCJOB_H |