blob: dd7e4a6f1393440c73c3231ac54331cf18cf5dd8 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_AMBIENT_AMBIENT_PHOTO_CONTROLLER_H_
#define ASH_AMBIENT_AMBIENT_PHOTO_CONTROLLER_H_
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "ash/ambient/ambient_constants.h"
#include "ash/ambient/ambient_photo_cache.h"
#include "ash/ambient/model/ambient_backend_model.h"
#include "ash/ambient/model/ambient_backend_model_observer.h"
#include "ash/ash_export.h"
#include "ash/public/cpp/ambient/ambient_backend_controller.h"
#include "ash/public/cpp/ambient/proto/photo_cache_entry.pb.h"
#include "base/callback_forward.h"
#include "base/macros.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/scoped_observation.h"
#include "base/timer/timer.h"
#include "net/base/backoff_entry.h"
#include "services/network/public/cpp/simple_url_loader.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
namespace gfx {
class ImageSkia;
} // namespace gfx
namespace ash {
// Class to handle photos in ambient mode.
class ASH_EXPORT AmbientPhotoController : public AmbientBackendModelObserver {
public:
// Start fetching next |ScreenUpdate| from the backdrop server. The specified
// download callback will be run upon completion and returns a null image
// if: 1. the response did not have the desired fields or urls or, 2. the
// download attempt from that url failed. The |icon_callback| also returns
// the weather temperature in Fahrenheit together with the image.
using TopicsDownloadCallback =
base::OnceCallback<void(const std::vector<AmbientModeTopic>& topics)>;
using WeatherIconDownloadCallback =
base::OnceCallback<void(absl::optional<float>, const gfx::ImageSkia&)>;
using PhotoDownloadCallback = base::OnceCallback<void(const gfx::ImageSkia&)>;
AmbientPhotoController();
~AmbientPhotoController() override;
// Start/stop updating the screen contents.
// We need different logics to update photos and weather info because they
// have different refreshing intervals. Currently we only update weather info
// one time when entering ambient mode. Photos will be refreshed every
// |kPhotoRefreshInterval|.
void StartScreenUpdate();
void StopScreenUpdate();
AmbientBackendModel* ambient_backend_model() {
return &ambient_backend_model_;
}
const base::OneShotTimer& photo_refresh_timer_for_testing() const {
return photo_refresh_timer_;
}
base::OneShotTimer& backup_photo_refresh_timer_for_testing() {
return backup_photo_refresh_timer_;
}
// AmbientBackendModelObserver:
void OnTopicsChanged() override;
// Clear cache when Settings changes.
void ClearCache();
private:
friend class AmbientAshTestBase;
friend class AmbientPhotoControllerTest;
// Initialize variables.
void Init();
void FetchTopics();
void FetchWeather();
void ScheduleFetchTopics(bool backoff);
void ScheduleRefreshImage();
void ScheduleFetchBackupImages();
// Download backup cache images.
void FetchBackupImages();
void OnBackupImageFetched(bool success);
void GetScreenUpdateInfo();
// Return a topic to download the image.
// Return nullptr when need to read from disk cache.
const AmbientModeTopic* GetNextTopic();
void OnScreenUpdateInfoFetched(const ash::ScreenUpdate& screen_update);
// Clear temporary image data to prepare next photos.
void ResetImageData();
// Fetch photo raw data by downloading or reading from cache.
void FetchPhotoRawData();
// Try to read photo raw data from cache.
void TryReadPhotoRawData();
void OnPhotoRawDataDownloaded(bool is_related_image,
base::RepeatingClosure on_done,
std::string&& data);
void OnAllPhotoRawDataDownloaded();
void OnAllPhotoRawDataAvailable(bool from_downloading);
void OnPhotoRawDataSaved(bool from_downloading);
void DecodePhotoRawData(bool from_downloading,
bool is_related_image,
base::RepeatingClosure on_done,
const std::string& data);
void OnPhotoDecoded(bool from_downloading,
bool is_related_image,
base::RepeatingClosure on_done,
const gfx::ImageSkia& image);
void OnAllPhotoDecoded(bool from_downloading,
const std::string& hash);
void StartDownloadingWeatherConditionIcon(
const absl::optional<WeatherInfo>& weather_info);
// Invoked upon completion of the weather icon download, |icon| can be a null
// image if the download attempt from the url failed.
void OnWeatherConditionIconDownloaded(float temp_f,
bool show_celsius,
const gfx::ImageSkia& icon);
void set_photo_cache_for_testing(
std::unique_ptr<AmbientPhotoCache> photo_cache) {
photo_cache_ = std::move(photo_cache);
}
AmbientPhotoCache* get_photo_cache_for_testing() {
return photo_cache_.get();
}
void set_backup_photo_cache_for_testing(
std::unique_ptr<AmbientPhotoCache> photo_cache) {
backup_photo_cache_ = std::move(photo_cache);
}
AmbientPhotoCache* get_backup_photo_cache_for_testing() {
return backup_photo_cache_.get();
}
void FetchTopicsForTesting();
void FetchImageForTesting();
void FetchBackupImagesForTesting();
AmbientBackendModel ambient_backend_model_;
// The timer to refresh photos.
base::OneShotTimer photo_refresh_timer_;
// The timer to refresh backup cache photos.
base::OneShotTimer backup_photo_refresh_timer_;
// The timer to refresh weather information.
base::RepeatingTimer weather_refresh_timer_;
// The index of a topic to download.
size_t topic_index_ = 0;
// Current index of cached image to read and display when failure happens.
// The image file of this index may not exist or may not be valid. It will try
// to read from the next cached file by increasing this index by 1.
int cache_index_for_display_ = 0;
// Current index of backup cached image to display when no other cached images
// are available.
size_t backup_cache_index_for_display_ = 0;
// Current index of cached image to save for the latest downloaded photo.
// The write command could fail. This index will increase 1 no matter writing
// successfully or not. But theoretically we could not to change this index if
// failures happen.
int cache_index_for_store_ = 0;
// Whether the image refresh started or not.
bool image_refresh_started_ = false;
// Cached image may not exist or valid. This is the max times of attempts to
// read cached images.
int retries_to_read_from_cache_ = kMaxNumberOfCachedImages;
int backup_retries_to_read_from_cache_ = 0;
// Backoff for fetch topics retries.
net::BackoffEntry fetch_topic_retry_backoff_;
// Backoff to resume fetch images.
net::BackoffEntry resume_fetch_image_backoff_;
base::ScopedObservation<AmbientBackendModel, AmbientBackendModelObserver>
ambient_backend_model_observation_{this};
std::unique_ptr<AmbientPhotoCache> photo_cache_;
std::unique_ptr<AmbientPhotoCache> backup_photo_cache_;
scoped_refptr<base::SequencedTaskRunner> task_runner_;
// Temporary data store when fetching images and details.
ambient::PhotoCacheEntry cache_entry_;
gfx::ImageSkia image_;
gfx::ImageSkia related_image_;
base::WeakPtrFactory<AmbientPhotoController> weak_factory_{this};
DISALLOW_COPY_AND_ASSIGN(AmbientPhotoController);
};
} // namespace ash
#endif // ASH_AMBIENT_AMBIENT_PHOTO_CONTROLLER_H_