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

Unified Diff: common/config_manager.h

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « common/command_line_unittest.cc ('k') | common/config_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: common/config_manager.h
diff --git a/common/config_manager.h b/common/config_manager.h
deleted file mode 100644
index ece20a218609d4698cc12b5e8646ecb76a1e5986..0000000000000000000000000000000000000000
--- a/common/config_manager.h
+++ /dev/null
@@ -1,256 +0,0 @@
-// Copyright 2005-2010 Google Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-// ========================================================================
-//
-// The configuration manager that is used to provide the locations of the
-// directory and the registration entries that are to be used by goopdate.
-
-// TODO(omaha): consider removing some of the functions below and have a
-// parameter is_machine instead. This is consistent with the rest of the code
-// and it reduces the number of functions in the public interface.
-
-#ifndef OMAHA_COMMON_CONFIG_MANAGER_H_
-#define OMAHA_COMMON_CONFIG_MANAGER_H_
-
-#include <windows.h>
-#include <atlstr.h>
-#include "base/basictypes.h"
-#include "omaha/base/constants.h"
-#include "omaha/base/synchronized.h"
-
-namespace omaha {
-
-class ConfigManager {
- public:
- const TCHAR* user_registry_clients() const { return USER_REG_CLIENTS; }
- const TCHAR* user_registry_clients_goopdate() const {
- return USER_REG_CLIENTS_GOOPDATE;
- }
- const TCHAR* user_registry_client_state() const {
- return USER_REG_CLIENT_STATE;
- }
- const TCHAR* user_registry_client_state_goopdate() const {
- return USER_REG_CLIENT_STATE_GOOPDATE;
- }
- const TCHAR* user_registry_update() const { return USER_REG_UPDATE; }
- const TCHAR* user_registry_google() const { return USER_REG_GOOGLE; }
-
- const TCHAR* machine_registry_clients() const { return MACHINE_REG_CLIENTS; }
- const TCHAR* machine_registry_clients_goopdate() const {
- return MACHINE_REG_CLIENTS_GOOPDATE;
- }
- const TCHAR* machine_registry_client_state() const {
- return MACHINE_REG_CLIENT_STATE;
- }
- const TCHAR* machine_registry_client_state_goopdate() const {
- return MACHINE_REG_CLIENT_STATE_GOOPDATE;
- }
- const TCHAR* machine_registry_client_state_medium() const {
- return MACHINE_REG_CLIENT_STATE_MEDIUM;
- }
- const TCHAR* machine_registry_update() const { return MACHINE_REG_UPDATE; }
- const TCHAR* machine_registry_google() const { return MACHINE_REG_GOOGLE; }
-
- const TCHAR* registry_clients(bool is_machine) const {
- return is_machine ? machine_registry_clients() : user_registry_clients();
- }
- const TCHAR* registry_clients_goopdate(bool is_machine) const {
- return is_machine ? machine_registry_clients_goopdate() :
- user_registry_clients_goopdate();
- }
- const TCHAR* registry_client_state(bool is_machine) const {
- return is_machine ? machine_registry_client_state() :
- user_registry_client_state();
- }
- const TCHAR* registry_client_state_goopdate(bool is_machine) const {
- return is_machine ? machine_registry_client_state_goopdate() :
- user_registry_client_state_goopdate();
- }
- const TCHAR* registry_update(bool is_machine) const {
- return is_machine ? machine_registry_update() : user_registry_update();
- }
- const TCHAR* registry_google(bool is_machine) const {
- return is_machine ? machine_registry_google() : user_registry_google();
- }
-
- // Gets the temporary download dir for the current thread token:
- // %UserProfile%/AppData/Local/Temp
- CString GetTempDownloadDir() const;
-
- // Gets the total disk size limit for cached packages. When this limit is hit,
- // packages should be deleted from oldest until total size is below the limit.
- int GetPackageCacheSizeLimitMBytes() const;
-
- // Gets the package cache life limit. If a cached package is older than this
- // limit, it should be removed.
- int GetPackageCacheExpirationTimeDays() const;
-
- // Creates download data dir:
- // %UserProfile%/Application Data/Google/Update/Download
- // This is the root of the package cache for the user.
- // TODO(omaha): consider renaming.
- CString GetUserDownloadStorageDir() const;
-
- // Creates install data dir:
- // %UserProfile%/Application Data/Google/Update/Install
- // Files pending user installs are copied in this directory.
- CString GetUserInstallWorkingDir() const;
-
- // Creates offline data dir:
- // %UserProfile%/Application Data/Google/Update/Offline
- CString GetUserOfflineStorageDir() const;
-
- // Returns goopdate install dir:
- // %UserProfile%/Application Data/Google/Update
- CString GetUserGoopdateInstallDirNoCreate() const;
-
- // Creates goopdate install dir:
- // %UserProfile%/Application Data/Google/Update
- CString GetUserGoopdateInstallDir() const;
-
- // Checks if the running program is executing from the User Goopdate dir.
- bool IsRunningFromUserGoopdateInstallDir() const;
-
- // Creates crash reports dir:
- // %UserProfile%/Local Settings/Application Data/Google/CrashReports
- CString GetUserCrashReportsDir() const;
-
- // Creates crash reports dir: %ProgramFiles%/Google/CrashReports
- CString GetMachineCrashReportsDir() const;
-
- // Creates machine download data dir:
- // %ProgramFiles%/Google/Update/Download
- // This directory is the root of the package cache for the machine.
- // TODO(omaha): consider renaming.
- CString GetMachineSecureDownloadStorageDir() const;
-
- // Creates install data dir:
- // %ProgramFiles%/Google/Update/Install
- // Files pending machine installs are copied in this directory.
- CString GetMachineInstallWorkingDir() const;
-
- // Creates machine offline data dir:
- // %ProgramFiles%/Google/Update/Offline
- CString GetMachineSecureOfflineStorageDir() const;
-
- // Creates machine Gogole Update install dir:
- // %ProgramFiles%/Google/Update
- CString GetMachineGoopdateInstallDirNoCreate() const;
-
- // Creates machine Gogole Update install dir:
- // %ProgramFiles%/Google/Update
- CString GetMachineGoopdateInstallDir() const;
-
- // Checks if the running program is executing from the User Goopdate dir.
- bool IsRunningFromMachineGoopdateInstallDir() const;
-
- // Returns the service endpoint where the install/update/uninstall pings
- // are being sent.
- HRESULT GetPingUrl(CString* url) const;
-
- // Returns the service endpoint where the update checks are sent.
- HRESULT GetUpdateCheckUrl(CString* url) const;
-
- // Returns the service endpoint where the crashes are sent.
- HRESULT GetCrashReportUrl(CString* url) const;
-
- // Returns the web page url where the 'Get Help' requests are sent.
- HRESULT GetMoreInfoUrl(CString* url) const;
-
- // Returns the service endpoint where the usage stats requests are sent.
- HRESULT GetUsageStatsReportUrl(CString* url) const;
-
- // Returns the time interval between update checks in seconds.
- // 0 indicates updates are disabled.
- int GetLastCheckPeriodSec(bool* is_overridden) const;
-
- // Returns the number of seconds since the last successful update check.
- int GetTimeSinceLastCheckedSec(bool is_machine) const;
-
- // Gets and sets the last time a successful server update check was made.
- DWORD GetLastCheckedTime(bool is_machine) const;
- HRESULT SetLastCheckedTime(bool is_machine, DWORD time) const;
-
- // Checks registry to see if user has enabled us to collect anonymous
- // usage stats.
- bool CanCollectStats(bool is_machine) const;
-
- // Returns true if over-installing with the same version is allowed.
- bool CanOverInstall() const;
-
- // Returns the Autoupdate timer interval. This is the frequency of the
- // auto update timer run by the core.
- int GetAutoUpdateTimerIntervalMs() const;
-
- // Returns the wait time in ms to start the first worker.
- int GetUpdateWorkerStartUpDelayMs() const;
-
- // Returns the Code Red timer interval. This is the frequency of the
- // code red timer run by the core.
- int GetCodeRedTimerIntervalMs() const;
-
- // Returns true if event logging to the Windows Event Log is enabled.
- bool CanLogEvents(WORD event_type) const;
-
- // Retrieves TestSource which is to be set on dev, qa, and prober machines.
- CString GetTestSource() const;
-
- // Returns true if it is okay to do update checks and send pings.
- bool CanUseNetwork(bool is_machine) const;
-
- // Returns true if running in Windows Audit mode (OEM install).
- // USE OemInstall::IsOemInstalling() INSTEAD in most cases.
- bool IsWindowsInstalling() const;
-
- // Returns true if the user is considered an internal user.
- bool IsInternalUser() const;
-
- // Returns true if installation of the specified app is allowed.
- bool CanInstallApp(const GUID& app_guid) const;
-
- // Returns true if updates are allowed for the specified app.
- bool CanUpdateApp(const GUID& app_guid, bool is_manual) const;
-
- // Returns true if crash uploading is allowed all the time, no matter the
- // build flavor or other configuration parameters.
- bool AlwaysAllowCrashUploads() const;
-
- // Returns the network configuration override as a string.
- static HRESULT GetNetConfig(CString* configuration_override);
-
- // Gets the time when Goopdate was last updated or installed.
- static DWORD GetInstallTime(bool is_machine);
-
- // Returns true if it has been more than 24 hours since Goopdate was updated
- // or installed.
- static bool Is24HoursSinceInstall(bool is_machine);
-
- static ConfigManager* Instance();
- static void DeleteInstance();
-
- private:
- static LLock lock_;
- static ConfigManager* config_manager_;
-
- ConfigManager();
-
- bool is_running_from_official_user_dir_;
- bool is_running_from_official_machine_dir_;
-
- DISALLOW_EVIL_CONSTRUCTORS(ConfigManager);
-};
-
-} // namespace omaha
-
-#endif // OMAHA_COMMON_CONFIG_MANAGER_H_
« no previous file with comments | « common/command_line_unittest.cc ('k') | common/config_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698