blob: 3c45aa6ae7559531f6a8529489a4c79a745dfe4d [file] [log] [blame]
Maurus Cuelenaerebe0bccf2008-07-03 23:30:51 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2008 Maurus Cuelenaere
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
Maurus Cuelenaerebe0bccf2008-07-03 23:30:51 +000022
23#include <stdio.h>
24#include <string.h>
25#include <stddef.h>
26#include <stdlib.h>
27#include <wchar.h>
28#include <stdbool.h>
Dominik Riebelingeebde2a2009-06-08 18:04:10 +000029#include <windows.h>
Maurus Cuelenaerebe0bccf2008-07-03 23:30:51 +000030
Dominik Riebelingeebde2a2009-06-08 18:04:10 +000031#include "MTP_DLL/MTP_DLL.h"
Maurus Cuelenaerebe0bccf2008-07-03 23:30:51 +000032
33void usage(void)
34{
35 fprintf(stderr, "usage: sendfirm <local filename>\n");
36}
37
38int filesize(char* filename)
39{
Maurus Cuelenaere79177ed2008-08-27 23:07:08 +000040 FILE* fd;
Maurus Cuelenaerebe0bccf2008-07-03 23:30:51 +000041 int tmp;
Maurus Cuelenaere79177ed2008-08-27 23:07:08 +000042 fd = fopen(filename, "r");
Maurus Cuelenaerebe0bccf2008-07-03 23:30:51 +000043 if(fd == NULL)
44 {
45 fprintf(stderr, "Error while opening %s!\n", filename);
46 return -1;
47 }
48 fseek(fd, 0, SEEK_END);
49 tmp = ftell(fd);
Maurus Cuelenaere79177ed2008-08-27 23:07:08 +000050 fclose(fd);
Maurus Cuelenaerebe0bccf2008-07-03 23:30:51 +000051 return tmp;
52}
53
Maurus Cuelenaere79177ed2008-08-27 23:07:08 +000054void callback(unsigned int progress, unsigned int max)
55{
56 unsigned int normalized = progress*1000/max;
57 printf("Progress: %d.%d%%\r", normalized/10, normalized%10);
58 fflush(stdout);
59}
60
Maurus Cuelenaerebe0bccf2008-07-03 23:30:51 +000061int main(int argc, char **argv)
62{
63 if (argc < 2)
64 {
65 usage();
66 return 1;
67 }
68
69 wchar_t *tmp;
70
71 tmp = (LPWSTR)malloc(strlen(argv[1])*2+1);
72 mbstowcs(tmp, argv[1], strlen(argv[1])*2+1);
73
74 wprintf(tmp);
75 printf("\n");
76
77 fprintf(stdout, "Sending firmware...\n");
78
Dominik Riebelingeebde2a2009-06-08 18:04:10 +000079 if(mtp_sendnk(tmp, filesize(argv[1]), &callback))
Maurus Cuelenaerebe0bccf2008-07-03 23:30:51 +000080 fprintf(stdout, "Firmware sent successfully!\n");
81 else
82 fprintf(stdout, "Error occured during sending!\n");
83
84 free(tmp);
85
86 exit(0);
87}