blob: 45fb0b6d9fc04df5f615221a4d8487a765b153f1 [file] [log] [blame]
Alex Deymo23949d42014-02-05 15:20:59 -08001// Copyright (c) 2014 The Chromium OS 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
Gilad Arnold48415f12014-06-27 07:10:58 -07005#ifndef UPDATE_ENGINE_UPDATE_MANAGER_EVALUATION_CONTEXT_INL_H_
6#define UPDATE_ENGINE_UPDATE_MANAGER_EVALUATION_CONTEXT_INL_H_
7
8#include <string>
Alex Deymo23949d42014-02-05 15:20:59 -08009
10#include <base/logging.h>
11
Alex Deymo63784a52014-05-28 10:46:14 -070012namespace chromeos_update_manager {
Alex Deymo23949d42014-02-05 15:20:59 -080013
14template<typename T>
15const T* EvaluationContext::GetValue(Variable<T>* var) {
Alex Deymocc0e5cf2014-04-23 20:20:11 -070016 if (var == nullptr) {
Alex Deymo23949d42014-02-05 15:20:59 -080017 LOG(ERROR) << "GetValue received an uninitialized variable.";
Alex Deymocc0e5cf2014-04-23 20:20:11 -070018 return nullptr;
Alex Deymo23949d42014-02-05 15:20:59 -080019 }
20
21 // Search for the value on the cache first.
22 ValueCacheMap::iterator it = value_cache_.find(var);
23 if (it != value_cache_.end())
24 return reinterpret_cast<const T*>(it->second.value());
25
26 // Get the value from the variable if not found on the cache.
27 std::string errmsg;
28 const T* result = var->GetValue(RemainingTime(), &errmsg);
Alex Deymocc0e5cf2014-04-23 20:20:11 -070029 if (result == nullptr) {
Alex Deymo23949d42014-02-05 15:20:59 -080030 LOG(WARNING) << "Error reading Variable " << var->GetName() << ": \""
31 << errmsg << "\"";
Alex Deymo23949d42014-02-05 15:20:59 -080032 }
Alex Deymocc0e5cf2014-04-23 20:20:11 -070033 // Cache the value for the next time. The map of CachedValues keeps the
34 // ownership of the pointer until the map is destroyed.
35 value_cache_.emplace(
36 static_cast<BaseVariable*>(var),
37 std::move(BoxedValue(result)));
Alex Deymo23949d42014-02-05 15:20:59 -080038 return result;
39}
40
Alex Deymo63784a52014-05-28 10:46:14 -070041} // namespace chromeos_update_manager
Alex Deymo23949d42014-02-05 15:20:59 -080042
Gilad Arnold48415f12014-06-27 07:10:58 -070043#endif // UPDATE_ENGINE_UPDATE_MANAGER_EVALUATION_CONTEXT_INL_H_