Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: chrome/browser/chromeos/extensions/file_manager/event_router.cc

Issue 507293002: Enrich fileBrowserPrivate.onFileTransfersUpdated event to support displaying total number of jobs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/extensions/file_manager/event_router.h" 5 #include "chrome/browser/chromeos/extensions/file_manager/event_router.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/files/file_util.h" 8 #include "base/files/file_util.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "base/prefs/pref_change_registrar.h" 10 #include "base/prefs/pref_change_registrar.h"
11 #include "base/prefs/pref_service.h" 11 #include "base/prefs/pref_service.h"
12 #include "base/stl_util.h" 12 #include "base/stl_util.h"
13 #include "base/thread_task_runner_handle.h"
13 #include "base/threading/sequenced_worker_pool.h" 14 #include "base/threading/sequenced_worker_pool.h"
14 #include "base/values.h" 15 #include "base/values.h"
15 #include "chrome/browser/app_mode/app_mode_utils.h" 16 #include "chrome/browser/app_mode/app_mode_utils.h"
16 #include "chrome/browser/chrome_notification_types.h" 17 #include "chrome/browser/chrome_notification_types.h"
17 #include "chrome/browser/chromeos/drive/drive_integration_service.h" 18 #include "chrome/browser/chromeos/drive/drive_integration_service.h"
18 #include "chrome/browser/chromeos/drive/file_change.h" 19 #include "chrome/browser/chromeos/drive/file_change.h"
19 #include "chrome/browser/chromeos/drive/file_system_interface.h" 20 #include "chrome/browser/chromeos/drive/file_system_interface.h"
20 #include "chrome/browser/chromeos/drive/file_system_util.h" 21 #include "chrome/browser/chromeos/drive/file_system_util.h"
21 #include "chrome/browser/chromeos/extensions/file_manager/device_event_router.h" 22 #include "chrome/browser/chromeos/extensions/file_manager/device_event_router.h"
22 #include "chrome/browser/chromeos/extensions/file_manager/private_api_util.h" 23 #include "chrome/browser/chromeos/extensions/file_manager/private_api_util.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 using drive::DriveIntegrationService; 55 using drive::DriveIntegrationService;
55 using drive::DriveIntegrationServiceFactory; 56 using drive::DriveIntegrationServiceFactory;
56 using file_manager::util::EntryDefinition; 57 using file_manager::util::EntryDefinition;
57 using file_manager::util::FileDefinition; 58 using file_manager::util::FileDefinition;
58 59
59 namespace file_browser_private = extensions::api::file_browser_private; 60 namespace file_browser_private = extensions::api::file_browser_private;
60 61
61 namespace file_manager { 62 namespace file_manager {
62 namespace { 63 namespace {
63 // Constants for the "transferState" field of onFileTransferUpdated event. 64 // Constants for the "transferState" field of onFileTransferUpdated event.
65 const char kFileTransferStateAdded[] = "added";
64 const char kFileTransferStateStarted[] = "started"; 66 const char kFileTransferStateStarted[] = "started";
65 const char kFileTransferStateInProgress[] = "in_progress"; 67 const char kFileTransferStateInProgress[] = "in_progress";
66 const char kFileTransferStateCompleted[] = "completed"; 68 const char kFileTransferStateCompleted[] = "completed";
67 const char kFileTransferStateFailed[] = "failed"; 69 const char kFileTransferStateFailed[] = "failed";
68 70
69 // Frequency of sending onFileTransferUpdated. 71 // Frequency of sending onFileTransferUpdated.
70 const int64 kProgressEventFrequencyInMilliseconds = 1000; 72 const int64 kProgressEventFrequencyInMilliseconds = 1000;
71 73
72 // Maximim size of detailed change info on directory change event. If the size 74 // Maximim size of detailed change info on directory change event. If the size
73 // exceeds the maximum size, the detailed info is omitted and the force refresh 75 // exceeds the maximum size, the detailed info is omitted and the force refresh
(...skipping 17 matching lines...) Expand all
91 93
92 scoped_ptr<base::DictionaryValue> result(new base::DictionaryValue); 94 scoped_ptr<base::DictionaryValue> result(new base::DictionaryValue);
93 GURL url = util::ConvertDrivePathToFileSystemUrl( 95 GURL url = util::ConvertDrivePathToFileSystemUrl(
94 profile, job_info.file_path, extension_id); 96 profile, job_info.file_path, extension_id);
95 status->file_url = url.spec(); 97 status->file_url = url.spec();
96 status->transfer_state = file_browser_private::ParseTransferState(job_status); 98 status->transfer_state = file_browser_private::ParseTransferState(job_status);
97 status->transfer_type = 99 status->transfer_type =
98 IsUploadJob(job_info.job_type) ? 100 IsUploadJob(job_info.job_type) ?
99 file_browser_private::TRANSFER_TYPE_UPLOAD : 101 file_browser_private::TRANSFER_TYPE_UPLOAD :
100 file_browser_private::TRANSFER_TYPE_DOWNLOAD; 102 file_browser_private::TRANSFER_TYPE_DOWNLOAD;
103 status->num_total_jobs = job_info.num_total_jobs;
101 // JavaScript does not have 64-bit integers. Instead we use double, which 104 // JavaScript does not have 64-bit integers. Instead we use double, which
102 // is in IEEE 754 formant and accurate up to 52-bits in JS, and in practice 105 // is in IEEE 754 formant and accurate up to 52-bits in JS, and in practice
103 // in C++. Larger values are rounded. 106 // in C++. Larger values are rounded.
104 status->processed.reset( 107 status->processed.reset(
105 new double(static_cast<double>(job_info.num_completed_bytes))); 108 new double(static_cast<double>(job_info.num_completed_bytes)));
106 status->total.reset( 109 status->total.reset(
107 new double(static_cast<double>(job_info.num_total_bytes))); 110 new double(static_cast<double>(job_info.num_total_bytes)));
108 } 111 }
109 112
110 // Checks if the Recovery Tool is running. This is a temporary solution. 113 // Checks if the Recovery Tool is running. This is a temporary solution.
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 // Pass dummy value to JobInfo's constructor for make it default constructible. 360 // Pass dummy value to JobInfo's constructor for make it default constructible.
358 EventRouter::DriveJobInfoWithStatus::DriveJobInfoWithStatus() 361 EventRouter::DriveJobInfoWithStatus::DriveJobInfoWithStatus()
359 : job_info(drive::TYPE_DOWNLOAD_FILE) { 362 : job_info(drive::TYPE_DOWNLOAD_FILE) {
360 } 363 }
361 364
362 EventRouter::DriveJobInfoWithStatus::DriveJobInfoWithStatus( 365 EventRouter::DriveJobInfoWithStatus::DriveJobInfoWithStatus(
363 const drive::JobInfo& info, const std::string& status) 366 const drive::JobInfo& info, const std::string& status)
364 : job_info(info), status(status) { 367 : job_info(info), status(status) {
365 } 368 }
366 369
370 bool EventRouter::DriveJobInfoWithStatus::empty() {
371 return status.empty();
372 }
373
367 EventRouter::EventRouter(Profile* profile) 374 EventRouter::EventRouter(Profile* profile)
368 : pref_change_registrar_(new PrefChangeRegistrar), 375 : pref_change_registrar_(new PrefChangeRegistrar),
369 profile_(profile), 376 profile_(profile),
370 multi_user_window_manager_observer_registered_(false), 377 multi_user_window_manager_observer_registered_(false),
371 device_event_router_(new DeviceEventRouterImpl(profile)), 378 device_event_router_(new DeviceEventRouterImpl(profile)),
372 weak_factory_(this) { 379 weak_factory_(this) {
373 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 380 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
374 } 381 }
375 382
376 EventRouter::~EventRouter() { 383 EventRouter::~EventRouter() {
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 } 620 }
614 621
615 BroadcastEvent( 622 BroadcastEvent(
616 profile_, 623 profile_,
617 file_browser_private::OnPreferencesChanged::kEventName, 624 file_browser_private::OnPreferencesChanged::kEventName,
618 file_browser_private::OnPreferencesChanged::Create()); 625 file_browser_private::OnPreferencesChanged::Create());
619 } 626 }
620 627
621 void EventRouter::OnJobAdded(const drive::JobInfo& job_info) { 628 void EventRouter::OnJobAdded(const drive::JobInfo& job_info) {
622 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 629 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
623 OnJobUpdated(job_info); 630 if (!drive::IsActiveFileTransferJobInfo(job_info))
631 return;
632 DriveJobInfoWithStatus job_info_with_status =
633 DriveJobInfoWithStatus(job_info, kFileTransferStateAdded);
634 ScheduleEvent(job_info_with_status, false /* immediate */);
624 } 635 }
625 636
626 void EventRouter::OnJobUpdated(const drive::JobInfo& job_info) { 637 void EventRouter::OnJobUpdated(const drive::JobInfo& job_info) {
627 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 638 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
628 if (!drive::IsActiveFileTransferJobInfo(job_info)) 639 if (!drive::IsActiveFileTransferJobInfo(job_info))
629 return; 640 return;
630 641
631 bool is_new_job = (drive_jobs_.find(job_info.job_id) == drive_jobs_.end()); 642 bool is_new_job = (drive_jobs_.find(job_info.job_id) == drive_jobs_.end());
632 643
633 // Replace with the latest job info. 644 // Replace with the latest job info.
634 drive_jobs_[job_info.job_id] = DriveJobInfoWithStatus( 645 drive_jobs_[job_info.job_id] = DriveJobInfoWithStatus(
635 job_info, 646 job_info,
636 is_new_job ? kFileTransferStateStarted : kFileTransferStateInProgress); 647 is_new_job ? kFileTransferStateStarted : kFileTransferStateInProgress);
637 648
638 // Fire event if needed. 649 ScheduleEvent(drive_jobs_[job_info.job_id], false /* immediate */);
639 bool always = is_new_job;
640 SendDriveFileTransferEvent(always);
641 } 650 }
642 651
643 void EventRouter::OnJobDone(const drive::JobInfo& job_info, 652 void EventRouter::OnJobDone(const drive::JobInfo& job_info,
644 drive::FileError error) { 653 drive::FileError error) {
645 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 654 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
646 if (!drive::IsActiveFileTransferJobInfo(job_info)) 655 if (!drive::IsActiveFileTransferJobInfo(job_info))
647 return; 656 return;
648 657
649 // Replace with the latest job info. 658 // Replace with the latest job info.
650 drive_jobs_[job_info.job_id] = DriveJobInfoWithStatus( 659 drive_jobs_[job_info.job_id] = DriveJobInfoWithStatus(
651 job_info, 660 job_info,
652 error == drive::FILE_ERROR_OK ? kFileTransferStateCompleted 661 error == drive::FILE_ERROR_OK ? kFileTransferStateCompleted
653 : kFileTransferStateFailed); 662 : kFileTransferStateFailed);
654 663
655 // Fire event if needed. 664 ScheduleEvent(drive_jobs_[job_info.job_id], true /* immediate */);
656 bool always = true;
657 SendDriveFileTransferEvent(always);
658 665
659 // Forget about the job. 666 // Forget about the job.
660 drive_jobs_.erase(job_info.job_id); 667 drive_jobs_.erase(job_info.job_id);
661 } 668 }
662 669
663 void EventRouter::SendDriveFileTransferEvent(bool always) { 670 void EventRouter::ScheduleEvent(DriveJobInfoWithStatus& job_info_with_status,
664 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 671 bool immediate) {
672 // Update next send time.
673 base::Time now = base::Time::Now();
674 if (immediate) {
675 nextSendTime_ = now;
676 } else if (drive_job_info_with_status_.empty()) {
677 nextSendTime_ =
678 std::max(now + base::TimeDelta::FromMilliseconds(100), nextSendTime_);
679 }
665 680
666 // When |always| flag is not set, we don't send the event until certain 681 // Update the latest event.
667 // amount of time passes after the previous one. This is to avoid 682 drive_job_info_with_status_ = job_info_with_status;
668 // flooding the IPC between extensions by many onFileTransferUpdated events. 683
669 if (!ShouldSendProgressEvent(always, &last_file_transfer_event_)) 684 // Schedule event.
685 if (nextSendTime_ < now) {
686 SendDriveFileTransferEvent();
687 } else {
688 base::TimeDelta delta = nextSendTime_ - now;
689 base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
690 FROM_HERE,
691 base::Bind(&EventRouter::SendDriveFileTransferEvent,
692 weak_factory_.GetWeakPtr()),
693 delta);
694 }
695 }
696
697 void EventRouter::SendDriveFileTransferEvent() {
698 base::Time now = base::Time::Now();
699 if (now < nextSendTime_ || drive_job_info_with_status_.empty())
670 return; 700 return;
671 701
672 // Convert the current |drive_jobs_| to IDL type. 702 // Convert the drive_job_info_with_status_ to IDL type.
673 std::vector<linked_ptr<file_browser_private::FileTransferStatus> > 703 std::vector<linked_ptr<file_browser_private::FileTransferStatus> >
674 status_list; 704 status_list;
675 for (std::map<drive::JobID, DriveJobInfoWithStatus>::iterator 705
676 iter = drive_jobs_.begin(); iter != drive_jobs_.end(); ++iter) { 706 linked_ptr<file_browser_private::FileTransferStatus> status(
677 linked_ptr<file_browser_private::FileTransferStatus> status( 707 new file_browser_private::FileTransferStatus());
678 new file_browser_private::FileTransferStatus()); 708 JobInfoToTransferStatus(profile_,
679 JobInfoToTransferStatus(profile_, 709 kFileManagerAppId,
680 kFileManagerAppId, 710 drive_job_info_with_status_.status,
681 iter->second.status, 711 drive_job_info_with_status_.job_info,
682 iter->second.job_info, 712 status.get());
683 status.get()); 713 status_list.push_back(status);
684 status_list.push_back(status); 714
685 }
686 BroadcastEvent( 715 BroadcastEvent(
687 profile_, 716 profile_,
688 file_browser_private::OnFileTransfersUpdated::kEventName, 717 file_browser_private::OnFileTransfersUpdated::kEventName,
689 file_browser_private::OnFileTransfersUpdated::Create(status_list)); 718 file_browser_private::OnFileTransfersUpdated::Create(status_list));
719
720 drive_job_info_with_status_.status.clear();
hirono 2014/09/01 03:53:44 nit: How about using scoped_ptr instead of using a
iseki 2014/09/01 06:45:40 Done.
721 nextSendTime_ = now + base::TimeDelta::FromMilliseconds(1000);
690 } 722 }
691 723
692 void EventRouter::OnDirectoryChanged(const base::FilePath& drive_path) { 724 void EventRouter::OnDirectoryChanged(const base::FilePath& drive_path) {
693 HandleFileWatchNotification(NULL, drive_path, false); 725 HandleFileWatchNotification(NULL, drive_path, false);
694 } 726 }
695 727
696 void EventRouter::OnFileChanged(const drive::FileChange& changed_files) { 728 void EventRouter::OnFileChanged(const drive::FileChange& changed_files) {
697 typedef std::map<base::FilePath, drive::FileChange> FileChangeMap; 729 typedef std::map<base::FilePath, drive::FileChange> FileChangeMap;
698 730
699 FileChangeMap map; 731 FileChangeMap map;
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
966 } 998 }
967 } 999 }
968 1000
969 void EventRouter::OnOwnerEntryChanged(aura::Window* window) { 1001 void EventRouter::OnOwnerEntryChanged(aura::Window* window) {
970 BroadcastEvent(profile_, 1002 BroadcastEvent(profile_,
971 file_browser_private::OnDesktopChanged::kEventName, 1003 file_browser_private::OnDesktopChanged::kEventName,
972 file_browser_private::OnDesktopChanged::Create()); 1004 file_browser_private::OnDesktopChanged::Create());
973 } 1005 }
974 1006
975 } // namespace file_manager 1007 } // namespace file_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698