1 // Copyright (c) 2012 The Chromium 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.
5 #include "base/ios/scoped_critical_action.h"
7 #import <UIKit/UIKit.h>
9 #include "base/logging.h"
10 #include "base/memory/ref_counted.h"
11 #include "base/synchronization/lock.h"
16 ScopedCriticalAction::ScopedCriticalAction()
17 : core_(new ScopedCriticalAction::Core()) {
20 ScopedCriticalAction::~ScopedCriticalAction() {
21 core_->EndBackgroundTask();
24 // This implementation calls |beginBackgroundTaskWithExpirationHandler:| when
25 // instantiated and |endBackgroundTask:| when destroyed, creating a scope whose
26 // execution will continue (temporarily) even after the app is backgrounded.
27 ScopedCriticalAction::Core::Core() {
28 scoped_refptr<ScopedCriticalAction::Core> core = this;
29 background_task_id_ = [[UIApplication sharedApplication]
30 beginBackgroundTaskWithExpirationHandler:^{
31 DLOG(WARNING) << "Background task with id " << background_task_id_
33 // Note if |endBackgroundTask:| is not called for each task before time
34 // expires, the system kills the application.
35 core->EndBackgroundTask();
37 if (background_task_id_ == UIBackgroundTaskInvalid) {
39 "beginBackgroundTaskWithExpirationHandler: returned an invalid ID";
41 VLOG(3) << "Beginning background task with id " << background_task_id_;
45 ScopedCriticalAction::Core::~Core() {
46 DCHECK_EQ(background_task_id_, UIBackgroundTaskInvalid);
49 void ScopedCriticalAction::Core::EndBackgroundTask() {
50 UIBackgroundTaskIdentifier task_id;
52 AutoLock lock_scope(background_task_id_lock_);
53 if (background_task_id_ == UIBackgroundTaskInvalid)
55 task_id = background_task_id_;
56 background_task_id_ = UIBackgroundTaskInvalid;
59 VLOG(3) << "Ending background task with id " << task_id;
60 [[UIApplication sharedApplication] endBackgroundTask:task_id];