| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
| 6 | |
| 7 #include "fpdfsdk/fpdfxfa/fpdfxfa_util.h" | |
| 8 | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "fpdfsdk/cpdfsdk_environment.h" | |
| 12 #include "fpdfsdk/fsdk_define.h" | |
| 13 | |
| 14 std::vector<CFWL_TimerInfo*>* CXFA_FWLAdapterTimerMgr::s_TimerArray = nullptr; | |
| 15 | |
| 16 FWL_Error CXFA_FWLAdapterTimerMgr::Start(IFWL_Timer* pTimer, | |
| 17 uint32_t dwElapse, | |
| 18 bool bImmediately, | |
| 19 IFWL_TimerInfo** pTimerInfo) { | |
| 20 if (!m_pEnv) | |
| 21 return FWL_Error::Indefinite; | |
| 22 | |
| 23 int32_t id_event = m_pEnv->SetTimer(dwElapse, TimerProc); | |
| 24 if (!s_TimerArray) | |
| 25 s_TimerArray = new std::vector<CFWL_TimerInfo*>; | |
| 26 | |
| 27 s_TimerArray->push_back(new CFWL_TimerInfo(id_event, pTimer)); | |
| 28 *pTimerInfo = s_TimerArray->back(); | |
| 29 return FWL_Error::Succeeded; | |
| 30 } | |
| 31 | |
| 32 FWL_Error CXFA_FWLAdapterTimerMgr::Stop(IFWL_TimerInfo* pTimerInfo) { | |
| 33 if (!pTimerInfo || !m_pEnv) | |
| 34 return FWL_Error::Indefinite; | |
| 35 | |
| 36 CFWL_TimerInfo* pInfo = static_cast<CFWL_TimerInfo*>(pTimerInfo); | |
| 37 m_pEnv->KillTimer(pInfo->idEvent); | |
| 38 if (s_TimerArray) { | |
| 39 auto it = std::find(s_TimerArray->begin(), s_TimerArray->end(), pInfo); | |
| 40 if (it != s_TimerArray->end()) { | |
| 41 s_TimerArray->erase(it); | |
| 42 delete pInfo; | |
| 43 } | |
| 44 } | |
| 45 return FWL_Error::Succeeded; | |
| 46 } | |
| 47 | |
| 48 // static | |
| 49 void CXFA_FWLAdapterTimerMgr::TimerProc(int32_t idEvent) { | |
| 50 if (!s_TimerArray) | |
| 51 return; | |
| 52 | |
| 53 for (CFWL_TimerInfo* pInfo : *s_TimerArray) { | |
| 54 if (pInfo->idEvent == idEvent) { | |
| 55 pInfo->pTimer->Run(pInfo); | |
| 56 break; | |
| 57 } | |
| 58 } | |
| 59 } | |
| OLD | NEW |