VirtualBox

source: vbox/trunk/src/VBox/Main/include/UpdateAgentImpl.h@ 94645

Last change on this file since 94645 was 94645, checked in by vboxsync, 3 years ago

Main/Update check: Big overhaul of the API and functionality [build fix]. bugref:7983

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.1 KB
Line 
1/* $Id: UpdateAgentImpl.h 94645 2022-04-20 09:33:24Z vboxsync $ */
2/** @file
3 * Update agent COM class implementation - Header
4 */
5
6/*
7 * Copyright (C) 2020-2022 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef MAIN_INCLUDED_UpdateAgentImpl_h
19#define MAIN_INCLUDED_UpdateAgentImpl_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include <iprt/http.h>
25
26#include <VBox/settings.h>
27
28#include "UpdateAgentWrap.h"
29#include "HostUpdateAgentWrap.h"
30
31class UpdateAgentTask;
32struct UpdateAgentTaskParms;
33
34struct UpdateAgentTaskResult
35{
36 Utf8Str strVer;
37 Utf8Str strWebUrl;
38 Utf8Str strDownloadUrl;
39 UpdateSeverity_T enmSeverity;
40 Utf8Str strReleaseNotes;
41};
42
43class ATL_NO_VTABLE UpdateAgent
44 : public UpdateAgentWrap
45{
46public:
47 DECLARE_COMMON_CLASS_METHODS(UpdateAgent)
48
49 /** @name COM and internal init/term/mapping cruft.
50 * @{ */
51 HRESULT FinalConstruct();
52 void FinalRelease();
53
54 HRESULT init(VirtualBox *aVirtualBox);
55 void uninit(void);
56 /** @} */
57
58 /** @name Public methods for internal purposes only
59 * (ensure there is a caller and a read lock before calling them!) */
60 HRESULT i_loadSettings(const settings::UpdateAgent &data);
61 HRESULT i_saveSettings(settings::UpdateAgent &data);
62
63 virtual HRESULT i_setCheckCount(ULONG aCount);
64 virtual HRESULT i_setLastCheckDate(const com::Utf8Str &aDate);
65 /** @} */
66
67protected:
68 /** @name Wrapped IUpdateAgent attributes and methods
69 * @{ */
70 virtual HRESULT check(ComPtr<IProgress> &aProgress);
71 virtual HRESULT download(ComPtr<IProgress> &aProgress);
72 virtual HRESULT install(ComPtr<IProgress> &aProgress);
73 virtual HRESULT rollback(void) RT_OVERRIDE;
74
75 virtual HRESULT getName(com::Utf8Str &aName);
76 virtual HRESULT getOrder(ULONG *aOrder);
77 virtual HRESULT getDependsOn(std::vector<com::Utf8Str> &aDeps);
78 virtual HRESULT getVersion(com::Utf8Str &aVer);
79 virtual HRESULT getDownloadUrl(com::Utf8Str &aUrl);
80 virtual HRESULT getWebUrl(com::Utf8Str &aUrl);
81 virtual HRESULT getReleaseNotes(com::Utf8Str &aRelNotes);
82 virtual HRESULT getEnabled(BOOL *aEnabled);
83 virtual HRESULT setEnabled(BOOL aEnabled);
84 virtual HRESULT getHidden(BOOL *aHidden);
85 virtual HRESULT getState(UpdateState_T *aState);
86 virtual HRESULT getCheckCount(ULONG *aCount);
87 virtual HRESULT getCheckFrequency(ULONG *aFreqSeconds);
88 virtual HRESULT setCheckFrequency(ULONG aFreqSeconds);
89 virtual HRESULT getChannel(UpdateChannel_T *aChannel);
90 virtual HRESULT setChannel(UpdateChannel_T aChannel);
91 virtual HRESULT getRepositoryURL(com::Utf8Str &aRepo);
92 virtual HRESULT setRepositoryURL(const com::Utf8Str &aRepo);
93 virtual HRESULT getProxyMode(ProxyMode_T *aMode);
94 virtual HRESULT setProxyMode(ProxyMode_T aMode);
95 virtual HRESULT getProxyURL(com::Utf8Str &aAddress);
96 virtual HRESULT setProxyURL(const com::Utf8Str &aAddress);
97 virtual HRESULT getLastCheckDate(com::Utf8Str &aData);
98 /** @} */
99
100 /** @name Internal task callbacks.
101 * @{ */
102 friend UpdateAgentTask;
103 virtual DECLCALLBACK(HRESULT) i_updateTask(UpdateAgentTask *pTask) = 0;
104 /** @} */
105
106 /** @name Static helper methods.
107 * @{ */
108 static Utf8Str i_getPlatformInfo(void);
109 /** @} */
110
111protected:
112 VirtualBox * const m_VirtualBox;
113
114 /** @name Data members.
115 * @{ */
116 settings::UpdateAgent *m;
117
118 struct Data
119 {
120 UpdateAgentTaskResult m_lastResult;
121
122 Utf8Str m_strName;
123 bool m_fHidden;
124 UpdateState_T m_enmState;
125 uint32_t m_uOrder;
126
127 Data(void)
128 {
129 m_fHidden = true;
130 m_enmState = UpdateState_Invalid;
131 m_uOrder = UINT32_MAX;
132 }
133 } mData;
134 /** @} */
135};
136
137/** @todo Put this into an own module, e.g. HostUpdateAgentImpl.[cpp|h]. */
138
139class ATL_NO_VTABLE HostUpdateAgent :
140 public UpdateAgent
141{
142public:
143 /** @name COM and internal init/term/mapping cruft.
144 * @{ */
145 DECLARE_COMMON_CLASS_METHODS(HostUpdateAgent)
146
147 HRESULT init(VirtualBox *aVirtualBox);
148 void uninit(void);
149
150 HRESULT FinalConstruct(void);
151 void FinalRelease(void);
152 /** @} */
153
154 virtual DECLCALLBACK(HRESULT) i_updateTask(UpdateAgentTask *pTask);
155
156private:
157 /** @name Implemented (pure) virtual methods from UpdateAgent.
158 * @{ */
159 HRESULT check(ComPtr<IProgress> &aProgress) RT_OVERRIDE;
160 /** @} */
161
162#ifdef VBOX_WITH_UPDATE_AGENT
163 HRESULT i_updateAgentTask(UpdateAgentTask *pTask);
164 HRESULT i_checkForUpdate(void);
165 HRESULT i_checkForUpdateInner(RTHTTP hHttp, com::Utf8Str const &strUrl, com::Utf8Str const &strUserAgent);
166#endif
167};
168
169#endif /* !MAIN_INCLUDED_UpdateAgentImpl_h */
170
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette