1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
#include "main.h"
#include "./updateService.h"
#include "./api.h"
#include "./externalCOM.h"
#include "../omBrowser/obj_ombrowser.h"
#include "../omBrowser/ifc_omservice.h"
#include "../omBrowser/browserPopup.h"
#include "../omBrowser/ifc_omdebugconfig.h"
HRESULT ServiceSubclass_Attach(HWND hwnd, UpdateService *service);
UpdateService::UpdateService(obj_ombrowser *browserObject, LPWSTR pszUrl)
: ref(1), url(pszUrl), browserManager(browserObject)
{
if (NULL != browserManager)
browserManager->AddRef();
}
UpdateService::~UpdateService()
{
Finish();
}
HRESULT UpdateService::CreateInstance(LPCSTR pszUrl, UpdateService **instance)
{
if (NULL == instance)
return E_POINTER;
*instance = NULL;
waServiceFactory *sf = WASABI_API_SVC->service_getServiceByGuid(OBJ_OmBrowser);
if (NULL == sf) return E_FAIL;
obj_ombrowser *browserManager = reinterpret_cast<obj_ombrowser*>(sf->getInterface());
sf->Release();
if (NULL == browserManager)
return E_NOINTERFACE;
HRESULT hr = browserManager->Initialize(NULL, hMainWindow);
if (SUCCEEDED(hr))
{
LPWSTR url = NULL;
if (NULL != pszUrl)
{
UINT cchUrlMax = MultiByteToWideChar(CP_UTF8, 0, pszUrl, -1, NULL, 0);
if (0 != cchUrlMax)
{
cchUrlMax++;
url = (LPWSTR)calloc(cchUrlMax, sizeof(WCHAR));
if (NULL == url) hr = E_OUTOFMEMORY;
else
{
if (0 == MultiByteToWideChar(CP_UTF8, 0, pszUrl, -1, url, cchUrlMax))
hr = E_FAIL;
}
}
}
if (SUCCEEDED(hr))
{
*instance = new UpdateService(browserManager, url);
if (NULL == *instance)
{
if (NULL != url) free(url);
hr = E_OUTOFMEMORY;
}
}
}
browserManager->Release();
return hr;
}
size_t UpdateService::AddRef()
{
return InterlockedIncrement((LONG*)&ref);
}
size_t UpdateService::Release()
{
if (0 == ref)
return ref;
LONG r = InterlockedDecrement((LONG*)&ref);
if (0 == r)
delete(this);
return r;
}
int UpdateService::QueryInterface(GUID interface_guid, void **object)
{
if (NULL == object) return E_POINTER;
if (IsEqualIID(interface_guid, IFC_OmService))
*object = static_cast<ifc_omservice*>(this);
else
{
*object = NULL;
return E_NOINTERFACE;
}
if (NULL == *object)
return E_UNEXPECTED;
AddRef();
return S_OK;
}
unsigned int UpdateService::GetId()
{
return 505;
}
HRESULT UpdateService::GetName(wchar_t *pszBuffer, int cchBufferMax)
{
getStringW(IDS_WINAMP_UPDATE, pszBuffer, cchBufferMax);
return S_OK;
}
HRESULT UpdateService::GetUrl(wchar_t *pszBuffer, int cchBufferMax)
{
return StringCchCopyExW(pszBuffer, cchBufferMax, url, NULL, NULL, STRSAFE_IGNORE_NULLS );
}
HRESULT UpdateService::GetIcon(wchar_t *pszBuffer, int cchBufferMax)
{
return E_NOTIMPL;
}
HRESULT UpdateService::GetExternal(IDispatch **ppDispatch)
{
if (NULL == ppDispatch)
return E_POINTER;
ExternalCOM *external;
HRESULT hr = JSAPI1_GetExternal(&external);
if (FAILED(hr)) external = NULL;
*ppDispatch = (IDispatch*)external;
return S_OK;
}
HRESULT UpdateService::Show()
{
if (NULL == browserManager)
return E_UNEXPECTED;
LONG cx = 300;
LONG cy = 200;
RECT centerRect;
HWND hCenter = (NULL != g_dialog_box_parent) ? g_dialog_box_parent : hMainWindow;
if (NULL == hCenter ||
0 == GetWindowRect(hCenter, ¢erRect) ||
((centerRect.right - centerRect.left) < cx) ||
((centerRect.bottom - centerRect.top) < cy))
{
HMONITOR hMonitor = MonitorFromWindow(hCenter, MONITOR_DEFAULTTONEAREST);
MONITORINFO info;
info.cbSize = sizeof(info);
if (NULL != hMonitor && 0 != GetMonitorInfo(hMonitor, &info))
CopyRect(¢erRect, &info.rcWork);
else
SetRectEmpty(¢erRect);
}
LONG x = centerRect.left + (centerRect.right - centerRect.left - cx)/2;
LONG y = centerRect.top + (centerRect.bottom - centerRect.top - cy)/2;
if (x < centerRect.left) x = centerRect.left;
if (y < centerRect.top) y = centerRect.top;
UINT popupFlags = NBCS_NOTOOLBAR | NBCS_NOSTATUSBAR | NBCS_DIALOGMODE | NBCS_BLOCKPOPUP;
ifc_omdebugconfig *debugConfig;
if (SUCCEEDED(browserManager->GetConfig(&IFC_OmDebugConfig, (void**)&debugConfig)))
{
if (S_OK == debugConfig->GetMenuFilterEnabled())
popupFlags |= NBCS_DISABLECONTEXTMENU;
debugConfig->Release();
}
HWND hPopup;
HRESULT hr = browserManager->CreatePopup(this, x, y, cx, cy, hMainWindow, NULL, popupFlags, &hPopup);
if (SUCCEEDED(hr))
{
if (FAILED(ServiceSubclass_Attach(hPopup, this)))
{
ShowWindowAsync(hPopup, SW_SHOWNORMAL);
}
}
return hr;
}
HRESULT UpdateService::Finish()
{
if (NULL != browserManager)
{
browserManager->Finish();
browserManager->Release();
browserManager = NULL;
}
if (NULL != url)
{
free(url);
url = NULL;
}
return S_OK;
}
#define CBCLASS UpdateService
START_DISPATCH;
CB(ADDREF, AddRef)
CB(RELEASE, Release)
CB(QUERYINTERFACE, QueryInterface)
CB(API_GETID, GetId)
CB(API_GETNAME, GetName)
CB(API_GETURL, GetUrl)
CB(API_GETICON, GetIcon)
CB(API_GETEXTERNAL, GetExternal)
END_DISPATCH;
#undef CBCLASS
|