// Copyright 2014 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #include "fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h" #include #include #include "fpdfsdk/cpdfsdk_formfillenvironment.h" #include "fpdfsdk/cpdfsdk_helpers.h" namespace { class CFWL_FWLAdapterTimerInfo final : public CFWL_TimerInfo { public: CFWL_FWLAdapterTimerInfo(IFWL_AdapterTimerMgr* mgr, int32_t event, CFWL_Timer* timer) : CFWL_TimerInfo(mgr), idEvent(event), pTimer(timer) {} int32_t idEvent; CFWL_Timer* pTimer; }; } // namespace std::vector* CXFA_FWLAdapterTimerMgr::s_TimerArray = nullptr; CXFA_FWLAdapterTimerMgr::CXFA_FWLAdapterTimerMgr( CPDFSDK_FormFillEnvironment* pFormFillEnv) : m_pFormFillEnv(pFormFillEnv) {} CXFA_FWLAdapterTimerMgr::~CXFA_FWLAdapterTimerMgr() {} void CXFA_FWLAdapterTimerMgr::Start(CFWL_Timer* pTimer, uint32_t dwElapse, bool bImmediately, CFWL_TimerInfo** pTimerInfo) { if (!m_pFormFillEnv) return; int32_t id_event = m_pFormFillEnv->SetTimer(dwElapse, TimerProc); if (!s_TimerArray) s_TimerArray = new std::vector; *pTimerInfo = new CFWL_FWLAdapterTimerInfo(this, id_event, pTimer); s_TimerArray->push_back(*pTimerInfo); } void CXFA_FWLAdapterTimerMgr::Stop(CFWL_TimerInfo* pTimerInfo) { if (!pTimerInfo || !m_pFormFillEnv) return; CFWL_FWLAdapterTimerInfo* pInfo = static_cast(pTimerInfo); m_pFormFillEnv->KillTimer(pInfo->idEvent); if (!s_TimerArray) return; auto it = std::find(s_TimerArray->begin(), s_TimerArray->end(), pInfo); if (it != s_TimerArray->end()) { s_TimerArray->erase(it); delete pInfo; } } // static void CXFA_FWLAdapterTimerMgr::TimerProc(int32_t idEvent) { if (!s_TimerArray) return; for (auto* info : *s_TimerArray) { CFWL_FWLAdapterTimerInfo* pInfo = static_cast(info); if (pInfo->idEvent == idEvent) { pInfo->pTimer->Run(pInfo); break; } } }