/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include #include #include SalUserEventList::SalUserEventList() : m_bAllUserEventProcessedSignaled( true ) , m_aProcessingThread(0) { } SalUserEventList::~SalUserEventList() { } void SalUserEventList::insertFrame( SalFrame* pFrame ) { auto aPair = m_aFrames.insert( pFrame ); assert( aPair.second ); (void) aPair; } void SalUserEventList::eraseFrame( SalFrame* pFrame ) { auto it = m_aFrames.find( pFrame ); assert( it != m_aFrames.end() ); if ( it != m_aFrames.end() ) m_aFrames.erase( it ); } bool SalUserEventList::DispatchUserEvents( bool bHandleAllCurrentEvents ) { bool bWasEvent = false; oslThreadIdentifier aCurId = osl::Thread::getCurrentIdentifier(); DBG_TESTSOLARMUTEX(); // cleared after we pop a single event and are save in the 2nd guard. // this way we guarantee to process at least one event, if available. osl::ResettableMutexGuard aResettableGuard(m_aUserEventsMutex); if (!m_aUserEvents.empty()) { if (bHandleAllCurrentEvents) { if (m_aProcessingUserEvents.empty()) m_aProcessingUserEvents.swap(m_aUserEvents); else m_aProcessingUserEvents.splice(m_aProcessingUserEvents.end(), m_aUserEvents); } else if (m_aProcessingUserEvents.empty()) { m_aProcessingUserEvents.push_back( m_aUserEvents.front() ); m_aUserEvents.pop_front(); } } if (HasUserEvents()) { bWasEvent = true; m_aProcessingThread = aCurId; SalUserEvent aEvent( nullptr, nullptr, SalEvent::NONE ); do { { osl::MutexGuard aGuard(m_aUserEventsMutex); aResettableGuard.clear(); if (m_aProcessingUserEvents.empty() || aCurId != m_aProcessingThread) break; aEvent = m_aProcessingUserEvents.front(); m_aProcessingUserEvents.pop_front(); } if ( !isFrameAlive( aEvent.m_pFrame ) ) { if ( aEvent.m_nEvent == SalEvent::UserEvent ) delete static_cast< ImplSVEvent* >( aEvent.m_pData ); continue; } try { ProcessEvent( aEvent ); } catch (css::uno::Exception& e) { auto const e2 = cppu::getCaughtException(); SAL_WARN("vcl", "Uncaught " << e2.getValueTypeName() << " " << e.Message); std::abort(); } catch (std::exception& e) { SAL_WARN("vcl", "Uncaught " << typeid(e).name() << " " << e.what()); std::abort(); } catch (...) { SAL_WARN("vcl", "Uncaught exception during DispatchUserEvents!"); std::abort(); } if (!bHandleAllCurrentEvents) break; } while( true ); aResettableGuard.reset(); } if ( !m_bAllUserEventProcessedSignaled && !HasUserEvents() ) { m_bAllUserEventProcessedSignaled = true; TriggerAllUserEventsProcessed(); } return bWasEvent; } void SalUserEventList::RemoveEvent( SalFrame* pFrame, void* pData, SalEvent nEvent ) { SalUserEvent aEvent( pFrame, pData, nEvent ); osl::MutexGuard aGuard( m_aUserEventsMutex ); auto it = std::find( m_aUserEvents.begin(), m_aUserEvents.end(), aEvent ); if ( it != m_aUserEvents.end() ) { m_aUserEvents.erase( it ); } else { it = std::find( m_aProcessingUserEvents.begin(), m_aProcessingUserEvents.end(), aEvent ); if ( it != m_aProcessingUserEvents.end() ) { m_aProcessingUserEvents.erase( it ); } } if ( !m_bAllUserEventProcessedSignaled && !HasUserEvents() ) { m_bAllUserEventProcessedSignaled = true; TriggerAllUserEventsProcessed(); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */