forked from len0rd/rockbox
MTP:
* Add Win32 progress callback reporting support git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18355 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e320446f0e
commit
79177edfb2
6 changed files with 178 additions and 95 deletions
Binary file not shown.
|
@ -12,7 +12,7 @@
|
||||||
BOOL APIENTRY DllMain( HMODULE hModule,
|
BOOL APIENTRY DllMain( HMODULE hModule,
|
||||||
DWORD ul_reason_for_call,
|
DWORD ul_reason_for_call,
|
||||||
LPVOID lpReserved
|
LPVOID lpReserved
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,8 @@
|
||||||
#define MTP_DLL_API __declspec(dllimport)
|
#define MTP_DLL_API __declspec(dllimport)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern "C" {
|
extern "C"
|
||||||
__declspec(dllexport) bool send_fw(LPWSTR file, int filesize);
|
{
|
||||||
|
__declspec(dllexport) bool send_fw(LPWSTR file, int filesize, void (*callback)(unsigned int progress, unsigned int max));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,26 @@
|
||||||
#include "sac.h"
|
#include "sac.h"
|
||||||
#include "scclient.h"
|
#include "scclient.h"
|
||||||
|
|
||||||
|
class CProgressHelper :
|
||||||
|
public IWMDMProgress
|
||||||
|
{
|
||||||
|
void (*m_callback)(unsigned int progress, unsigned int max);
|
||||||
|
DWORD m_max_ticks;
|
||||||
|
DWORD m_cur_ticks;
|
||||||
|
DWORD m_counter;
|
||||||
|
|
||||||
|
public:
|
||||||
|
CProgressHelper( void (*callback)(unsigned int progress, unsigned int max) );
|
||||||
|
~CProgressHelper();
|
||||||
|
STDMETHOD(Begin)( DWORD dwEstimatedTicks );
|
||||||
|
STDMETHOD(Progress)( DWORD dwTranspiredTicks );
|
||||||
|
STDMETHOD(End)();
|
||||||
|
|
||||||
|
STDMETHOD(QueryInterface) ( REFIID riid, void __RPC_FAR *__RPC_FAR *ppvObject );
|
||||||
|
STDMETHOD_(ULONG, AddRef)( void );
|
||||||
|
STDMETHOD_(ULONG, Release)( void );
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Compilation requirements:
|
* Compilation requirements:
|
||||||
*
|
*
|
||||||
|
@ -21,74 +41,66 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
extern "C" {
|
extern "C" {
|
||||||
__declspec(dllexport) bool send_fw(LPWSTR file, int filesize)
|
__declspec(dllexport) bool send_fw(LPWSTR file, int filesize, void (*callback)(unsigned int progress, unsigned int max))
|
||||||
{
|
{
|
||||||
bool return_value = false;
|
bool return_value = false;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
IComponentAuthenticate* pICompAuth;
|
IComponentAuthenticate* pICompAuth;
|
||||||
CSecureChannelClient *m_pSacClient = new CSecureChannelClient;
|
CSecureChannelClient *m_pSacClient = new CSecureChannelClient;
|
||||||
IWMDeviceManager3* m_pIdvMgr = NULL;
|
IWMDeviceManager3* m_pIdvMgr = NULL;
|
||||||
|
|
||||||
/* these are generic keys */
|
/* these are generic keys */
|
||||||
BYTE abPVK[] = {0x00};
|
BYTE abPVK[] = {0x00};
|
||||||
BYTE abCert[] = {0x00};
|
BYTE abCert[] = {0x00};
|
||||||
|
|
||||||
CoInitialize(NULL);
|
CoInitialize(NULL);
|
||||||
|
|
||||||
/* get an authentication interface */
|
/* get an authentication interface */
|
||||||
hr = CoCreateInstance(CLSID_MediaDevMgr, NULL, CLSCTX_ALL ,IID_IComponentAuthenticate, (void **)&pICompAuth);
|
hr = CoCreateInstance(CLSID_MediaDevMgr, NULL, CLSCTX_ALL ,IID_IComponentAuthenticate, (void **)&pICompAuth);
|
||||||
if SUCCEEDED(hr)
|
if SUCCEEDED(hr)
|
||||||
{
|
{
|
||||||
/* create a secure channel client certificate */
|
/* create a secure channel client certificate */
|
||||||
hr = m_pSacClient->SetCertificate(SAC_CERT_V1, (BYTE*) abCert, sizeof(abCert), (BYTE*) abPVK, sizeof(abPVK));
|
hr = m_pSacClient->SetCertificate(SAC_CERT_V1, (BYTE*) abCert, sizeof(abCert), (BYTE*) abPVK, sizeof(abPVK));
|
||||||
if SUCCEEDED(hr)
|
if SUCCEEDED(hr)
|
||||||
{
|
{
|
||||||
/* bind the authentication interface to the secure channel client */
|
/* bind the authentication interface to the secure channel client */
|
||||||
m_pSacClient->SetInterface(pICompAuth);
|
m_pSacClient->SetInterface(pICompAuth);
|
||||||
|
|
||||||
/* trigger communication */
|
/* trigger communication */
|
||||||
hr = m_pSacClient->Authenticate(SAC_PROTOCOL_V1);
|
hr = m_pSacClient->Authenticate(SAC_PROTOCOL_V1);
|
||||||
if SUCCEEDED(hr)
|
if SUCCEEDED(hr)
|
||||||
{
|
{
|
||||||
/* get main interface to media device manager */
|
/* get main interface to media device manager */
|
||||||
hr = pICompAuth->QueryInterface(IID_IWMDeviceManager2, (void**)&m_pIdvMgr);
|
hr = pICompAuth->QueryInterface(IID_IWMDeviceManager2, (void**)&m_pIdvMgr);
|
||||||
if SUCCEEDED(hr)
|
if SUCCEEDED(hr)
|
||||||
{
|
{
|
||||||
/* enumerate devices... */
|
/* enumerate devices... */
|
||||||
IWMDMEnumDevice *pIEnumDev;
|
IWMDMEnumDevice *pIEnumDev;
|
||||||
hr = m_pIdvMgr->EnumDevices2(&pIEnumDev);
|
hr = m_pIdvMgr->EnumDevices2(&pIEnumDev);
|
||||||
if SUCCEEDED(hr)
|
if SUCCEEDED(hr)
|
||||||
{
|
{
|
||||||
hr = pIEnumDev->Reset(); /* Next will now return the first device */
|
hr = pIEnumDev->Reset(); /* Next will now return the first device */
|
||||||
if SUCCEEDED(hr)
|
if SUCCEEDED(hr)
|
||||||
{
|
{
|
||||||
IWMDMDevice3* pIDevice;
|
IWMDMDevice3* pIDevice;
|
||||||
unsigned long ulNumFetched;
|
unsigned long ulNumFetched;
|
||||||
hr = pIEnumDev->Next(1, (IWMDMDevice **)&pIDevice, &ulNumFetched);
|
hr = pIEnumDev->Next(1, (IWMDMDevice **)&pIDevice, &ulNumFetched);
|
||||||
while (SUCCEEDED(hr) && (hr != S_FALSE))
|
while (SUCCEEDED(hr) && (hr != S_FALSE))
|
||||||
{
|
{
|
||||||
#if 0
|
/* get storage info */
|
||||||
/* output device name */
|
DWORD tempDW;
|
||||||
wchar_t pwsString[256];
|
pIDevice->GetType(&tempDW);
|
||||||
hr = pIDevice->GetName(pwsString, 256);
|
if (tempDW & WMDM_DEVICE_TYPE_STORAGE)
|
||||||
if SUCCEEDED(hr)
|
|
||||||
wprintf(L"Found device %s\n", pwsString);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* get storage info */
|
|
||||||
DWORD tempDW;
|
|
||||||
pIDevice->GetType(&tempDW);
|
|
||||||
if (tempDW & WMDM_DEVICE_TYPE_STORAGE)
|
|
||||||
{
|
{
|
||||||
IWMDMEnumStorage *pIEnumStorage = NULL;
|
IWMDMEnumStorage *pIEnumStorage = NULL;
|
||||||
IWMDMStorage *pIStorage = NULL;
|
IWMDMStorage *pIStorage = NULL;
|
||||||
IWMDMStorage3 *pIFileStorage = NULL;
|
IWMDMStorage3 *pIFileStorage = NULL;
|
||||||
hr = pIDevice->EnumStorage(&pIEnumStorage);
|
hr = pIDevice->EnumStorage(&pIEnumStorage);
|
||||||
if SUCCEEDED(hr)
|
if SUCCEEDED(hr)
|
||||||
{
|
{
|
||||||
pIEnumStorage->Reset();
|
pIEnumStorage->Reset();
|
||||||
hr = pIEnumStorage->Next(1, (IWMDMStorage **)&pIStorage, &ulNumFetched);
|
hr = pIEnumStorage->Next(1, (IWMDMStorage **)&pIStorage, &ulNumFetched);
|
||||||
while (SUCCEEDED(hr) && (hr != S_FALSE))
|
while (SUCCEEDED(hr) && (hr != S_FALSE))
|
||||||
{
|
{
|
||||||
IWMDMStorage3 *pNewStorage;
|
IWMDMStorage3 *pNewStorage;
|
||||||
hr = pIStorage->QueryInterface(IID_IWMDMStorage3, (void **)&pNewStorage);
|
hr = pIStorage->QueryInterface(IID_IWMDMStorage3, (void **)&pNewStorage);
|
||||||
|
@ -113,14 +125,15 @@ __declspec(dllexport) bool send_fw(LPWSTR file, int filesize)
|
||||||
if (SUCCEEDED(hr))
|
if (SUCCEEDED(hr))
|
||||||
{
|
{
|
||||||
IWMDMStorage *pNewObject = NULL;
|
IWMDMStorage *pNewObject = NULL;
|
||||||
|
CProgressHelper *progress = new CProgressHelper(callback);
|
||||||
|
|
||||||
hr = pIWMDMStorageControl->Insert3(
|
hr = pIWMDMStorageControl->Insert3(
|
||||||
WMDM_MODE_BLOCK | WMDM_CONTENT_FILE,
|
WMDM_MODE_BLOCK | WMDM_CONTENT_FILE | WMDM_MODE_PROGRESS,
|
||||||
0,
|
0,
|
||||||
file,
|
file,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
(callback == NULL ? NULL : (IWMDMProgress*)progress),
|
||||||
pIWMDMMetaData,
|
pIWMDMMetaData,
|
||||||
NULL,
|
NULL,
|
||||||
(IWMDMStorage **)&pNewObject);
|
(IWMDMStorage **)&pNewObject);
|
||||||
|
@ -135,27 +148,88 @@ __declspec(dllexport) bool send_fw(LPWSTR file, int filesize)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pIEnumStorage->Release();
|
pIEnumStorage->Release();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* move to next device */
|
/* move to next device */
|
||||||
if(!return_value)
|
if(!return_value)
|
||||||
hr = pIEnumDev->Next(1, (IWMDMDevice **)&pIDevice, &ulNumFetched);
|
hr = pIEnumDev->Next(1, (IWMDMDevice **)&pIDevice, &ulNumFetched);
|
||||||
}
|
}
|
||||||
pIEnumDev->Release();
|
pIEnumDev->Release();
|
||||||
}
|
}
|
||||||
m_pIdvMgr->Release();
|
m_pIdvMgr->Release();
|
||||||
}
|
}
|
||||||
pICompAuth->Release();
|
pICompAuth->Release();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CoUninitialize();
|
CoUninitialize();
|
||||||
|
|
||||||
return return_value;
|
return return_value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
CProgressHelper::CProgressHelper( void (*callback)(unsigned int progress, unsigned int max) )
|
||||||
|
{
|
||||||
|
m_cur_ticks = 0;
|
||||||
|
m_max_ticks = 0;
|
||||||
|
m_counter = 0;
|
||||||
|
|
||||||
|
m_callback = callback;
|
||||||
|
}
|
||||||
|
|
||||||
|
CProgressHelper::~CProgressHelper()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
HRESULT CProgressHelper::Begin( DWORD dwEstimatedTicks )
|
||||||
|
{
|
||||||
|
m_max_ticks = dwEstimatedTicks;
|
||||||
|
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HRESULT CProgressHelper::Progress( DWORD dwTranspiredTicks )
|
||||||
|
{
|
||||||
|
m_cur_ticks = dwTranspiredTicks;
|
||||||
|
|
||||||
|
if(m_callback != NULL)
|
||||||
|
m_callback(m_cur_ticks, max(m_max_ticks, m_cur_ticks));
|
||||||
|
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HRESULT CProgressHelper::End()
|
||||||
|
{
|
||||||
|
m_cur_ticks = m_max_ticks;
|
||||||
|
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
HRESULT CProgressHelper::QueryInterface( REFIID riid, void __RPC_FAR *__RPC_FAR *ppvObject )
|
||||||
|
{
|
||||||
|
if(riid == IID_IWMDMProgress || riid == IID_IUnknown)
|
||||||
|
{
|
||||||
|
*ppvObject = this;
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
*ppvObject = NULL;
|
||||||
|
return E_NOINTERFACE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ULONG CProgressHelper::AddRef()
|
||||||
|
{
|
||||||
|
return m_counter++;
|
||||||
|
}
|
||||||
|
ULONG CProgressHelper::Release()
|
||||||
|
{
|
||||||
|
return m_counter--;
|
||||||
|
}
|
||||||
|
|
|
@ -7,23 +7,23 @@
|
||||||
|
|
||||||
// Modify the following defines if you have to target a platform prior to the ones specified below.
|
// Modify the following defines if you have to target a platform prior to the ones specified below.
|
||||||
// Refer to MSDN for the latest info on corresponding values for different platforms.
|
// Refer to MSDN for the latest info on corresponding values for different platforms.
|
||||||
#ifndef WINVER // Allow use of features specific to Windows XP or later.
|
#ifndef WINVER // Allow use of features specific to Windows XP or later.
|
||||||
#define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
|
#define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
|
#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
|
||||||
#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
|
#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
|
#ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
|
||||||
#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
|
#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
|
#ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
|
||||||
#define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
|
#define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
||||||
// Windows Header Files:
|
// Windows Header Files:
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
extern __declspec(dllimport) bool send_fw(LPWSTR file, int filesize);
|
extern __declspec(dllimport) bool send_fw(LPWSTR file, int filesize, void (*callback)(unsigned int progress, unsigned int max));
|
||||||
|
|
||||||
void usage(void)
|
void usage(void)
|
||||||
{
|
{
|
||||||
|
@ -37,9 +37,9 @@ void usage(void)
|
||||||
|
|
||||||
int filesize(char* filename)
|
int filesize(char* filename)
|
||||||
{
|
{
|
||||||
FILE* fd;
|
FILE* fd;
|
||||||
int tmp;
|
int tmp;
|
||||||
fd = fopen(filename, "r");
|
fd = fopen(filename, "r");
|
||||||
if(fd == NULL)
|
if(fd == NULL)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Error while opening %s!\n", filename);
|
fprintf(stderr, "Error while opening %s!\n", filename);
|
||||||
|
@ -47,10 +47,17 @@ int filesize(char* filename)
|
||||||
}
|
}
|
||||||
fseek(fd, 0, SEEK_END);
|
fseek(fd, 0, SEEK_END);
|
||||||
tmp = ftell(fd);
|
tmp = ftell(fd);
|
||||||
fclose(fd);
|
fclose(fd);
|
||||||
return tmp;
|
return tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void callback(unsigned int progress, unsigned int max)
|
||||||
|
{
|
||||||
|
unsigned int normalized = progress*1000/max;
|
||||||
|
printf("Progress: %d.%d%%\r", normalized/10, normalized%10);
|
||||||
|
fflush(stdout);
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
if (argc < 2)
|
if (argc < 2)
|
||||||
|
@ -69,7 +76,7 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
fprintf(stdout, "Sending firmware...\n");
|
fprintf(stdout, "Sending firmware...\n");
|
||||||
|
|
||||||
if(send_fw(tmp, filesize(argv[1])))
|
if(send_fw(tmp, filesize(argv[1]), &callback))
|
||||||
fprintf(stdout, "Firmware sent successfully!\n");
|
fprintf(stdout, "Firmware sent successfully!\n");
|
||||||
else
|
else
|
||||||
fprintf(stdout, "Error occured during sending!\n");
|
fprintf(stdout, "Error occured during sending!\n");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue