blob: 744466cc9c3ec4d30284cbf2b217824d165dfe43 [file] [log] [blame]
// Copyright 2017 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 COMPONENTS_OPTIMIZATION_GUIDE_OPTIMIZATION_GUIDE_SERVICE_H_
#define COMPONENTS_OPTIMIZATION_GUIDE_OPTIMIZATION_GUIDE_SERVICE_H_
#include <memory>
#include "base/files/file_path.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/observer_list.h"
#include "base/sequence_checker.h"
#include "base/sequenced_task_runner.h"
#include "base/single_thread_task_runner.h"
#include "base/version.h"
#include "components/optimization_guide/optimization_guide_service_observer.h"
#include "components/optimization_guide/proto/hints.pb.h"
namespace optimization_guide {
// Encapsulates information about a version of optimization hints data received
// from the components server.
struct ComponentInfo {
ComponentInfo(const base::Version& hints_version,
const base::FilePath& hints_path);
~ComponentInfo();
// The version of the hints content.
const base::Version hints_version;
// The path to the file containing the hints protobuf file.
const base::FilePath hints_path;
};
// Processes the hints downloaded from the Component Updater as part of the
// Optimization Hints component.
class OptimizationGuideService {
public:
explicit OptimizationGuideService(
const scoped_refptr<base::SingleThreadTaskRunner>& io_thread_task_runner);
virtual ~OptimizationGuideService();
void AddObserver(OptimizationGuideServiceObserver* observer);
void RemoveObserver(OptimizationGuideServiceObserver* observer);
// Processes hints from the given unindexed hints, unless its |hints_version|
// matches that of the most recently parsed version, in which case it does
// nothing.
//
// Virtual so it can be mocked out in tests.
virtual void ProcessHints(const ComponentInfo& component_info);
// Sets the latest processed version for testing.
void SetLatestProcessedVersionForTesting(const base::Version& version);
private:
// Always called as part of a background priority task.
void ProcessHintsInBackground(const ComponentInfo& component_info);
// Adds the observer on IO thread.
void AddObserverOnIOThread(OptimizationGuideServiceObserver* observer);
// Removes the observer on IO thread, if present.
void RemoveObserverOnIOThread(OptimizationGuideServiceObserver* observer);
// Dispatches hints to listeners on IO thread.
void DispatchHintsOnIOThread(const proto::Configuration& config);
// Runner for indexing tasks.
scoped_refptr<base::SequencedTaskRunner> background_task_runner_;
SEQUENCE_CHECKER(sequence_checker_);
// Runner for IO Thread tasks.
scoped_refptr<base::SingleThreadTaskRunner> io_thread_task_runner_;
// Observers receiving notifications on hints being processed.
base::ObserverList<OptimizationGuideServiceObserver> observers_;
base::Version latest_processed_version_;
DISALLOW_COPY_AND_ASSIGN(OptimizationGuideService);
};
} // namespace optimization_guide
#endif // COMPONENTS_OPTIMIZATION_GUIDE_OPTIMIZATION_GUIDE_SERVICE_H_