diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-12-20 18:49:50 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-01-04 07:07:20 +0100 |
commit | 146ea5360e7ce60693a1c80f1774856520b83cd4 (patch) | |
tree | df9cbf8e8aedfcb8f99b728d1d0f5b02f44afd38 /sax/source | |
parent | bc613dc5dba6a9fc2ad2bdb3fbd160ba7615788f (diff) |
osl::Mutex->std::mutex in FastSaxParserImpl
Change-Id: I3bb067a0aafe8d7ca1171ab7119acbf94323725c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127915
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sax/source')
-rw-r--r-- | sax/source/fastparser/fastparser.cxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index cc7dd91b82ab..f6fe5ee43bec 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -153,7 +153,7 @@ struct Entity : public ParserData std::optional<EventList> mxProducedEvents; std::queue<EventList> maPendingEvents; std::queue<EventList> maUsedEvents; - osl::Mutex maEventProtector; + std::mutex maEventProtector; static const size_t mnEventLowWater = 4; static const size_t mnEventHighWater = 8; @@ -537,12 +537,12 @@ EventList& Entity::getEventList() { if (!mxProducedEvents) { - osl::ClearableMutexGuard aGuard(maEventProtector); + std::unique_lock aGuard(maEventProtector); if (!maUsedEvents.empty()) { mxProducedEvents = std::move(maUsedEvents.front()); maUsedEvents.pop(); - aGuard.clear(); // unlock + aGuard.unlock(); // unlock mnProducedEventsSize = 0; } if (!mxProducedEvents) @@ -856,7 +856,7 @@ void FastSaxParserImpl::parseStream(const InputSource& rStructSource) rEntity.maConsumeResume.wait(); rEntity.maConsumeResume.reset(); - osl::ResettableMutexGuard aGuard(rEntity.maEventProtector); + std::unique_lock aGuard(rEntity.maEventProtector); while (!rEntity.maPendingEvents.empty()) { if (rEntity.maPendingEvents.size() <= Entity::mnEventLowWater) @@ -864,16 +864,16 @@ void FastSaxParserImpl::parseStream(const InputSource& rStructSource) EventList aEventList = std::move(rEntity.maPendingEvents.front()); rEntity.maPendingEvents.pop(); - aGuard.clear(); // unlock + aGuard.unlock(); // unlock if (!consume(aEventList)) done = true; - aGuard.reset(); // lock + aGuard.lock(); // lock if ( rEntity.maPendingEvents.size() <= Entity::mnEventLowWater ) { - aGuard.clear(); + aGuard.unlock(); for (auto& rEvent : aEventList.maEvents) { if (rEvent.mxAttributes.is()) @@ -884,7 +884,7 @@ void FastSaxParserImpl::parseStream(const InputSource& rStructSource) } aEventList.mbIsAttributesEmpty = true; } - aGuard.reset(); + aGuard.lock(); } rEntity.maUsedEvents.push(std::move(aEventList)); @@ -973,7 +973,7 @@ void FastSaxParserImpl::setCustomEntityNames( void FastSaxParserImpl::deleteUsedEvents() { Entity& rEntity = getEntity(); - osl::ResettableMutexGuard aGuard(rEntity.maEventProtector); + std::unique_lock aGuard(rEntity.maEventProtector); while (!rEntity.maUsedEvents.empty()) { @@ -981,10 +981,10 @@ void FastSaxParserImpl::deleteUsedEvents() EventList aEventList = std::move(rEntity.maUsedEvents.front()); rEntity.maUsedEvents.pop(); - aGuard.clear(); // unlock + aGuard.unlock(); // unlock } - aGuard.reset(); // lock + aGuard.lock(); // lock } } @@ -995,21 +995,21 @@ void FastSaxParserImpl::produce( bool bForceFlush ) rEntity.mnProducedEventsSize >= Entity::mnEventListSize)) return; - osl::ResettableMutexGuard aGuard(rEntity.maEventProtector); + std::unique_lock aGuard(rEntity.maEventProtector); while (rEntity.maPendingEvents.size() >= Entity::mnEventHighWater) { // pause parsing for a bit - aGuard.clear(); // unlock + aGuard.unlock(); // unlock rEntity.maProduceResume.wait(); rEntity.maProduceResume.reset(); - aGuard.reset(); // lock + aGuard.lock(); // lock } rEntity.maPendingEvents.push(std::move(*rEntity.mxProducedEvents)); rEntity.mxProducedEvents.reset(); assert(!rEntity.mxProducedEvents); - aGuard.clear(); // unlock + aGuard.unlock(); // unlock rEntity.maConsumeResume.set(); } |