Maurus Cuelenaere | be0bccf | 2008-07-03 23:30:51 +0000 | [diff] [blame] | 1 | /***************************************************************************
|
| 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 Cuelenaere | be0bccf | 2008-07-03 23:30:51 +0000 | [diff] [blame] | 22 |
|
| 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 Riebeling | eebde2a | 2009-06-08 18:04:10 +0000 | [diff] [blame] | 29 | #include <windows.h>
|
Maurus Cuelenaere | be0bccf | 2008-07-03 23:30:51 +0000 | [diff] [blame] | 30 |
|
Dominik Riebeling | eebde2a | 2009-06-08 18:04:10 +0000 | [diff] [blame] | 31 | #include "MTP_DLL/MTP_DLL.h"
|
Maurus Cuelenaere | be0bccf | 2008-07-03 23:30:51 +0000 | [diff] [blame] | 32 |
|
| 33 | void usage(void)
|
| 34 | {
|
| 35 | fprintf(stderr, "usage: sendfirm <local filename>\n");
|
| 36 | }
|
| 37 |
|
| 38 | int filesize(char* filename)
|
| 39 | {
|
Maurus Cuelenaere | 79177ed | 2008-08-27 23:07:08 +0000 | [diff] [blame] | 40 | FILE* fd;
|
Maurus Cuelenaere | be0bccf | 2008-07-03 23:30:51 +0000 | [diff] [blame] | 41 | int tmp;
|
Maurus Cuelenaere | 79177ed | 2008-08-27 23:07:08 +0000 | [diff] [blame] | 42 | fd = fopen(filename, "r");
|
Maurus Cuelenaere | be0bccf | 2008-07-03 23:30:51 +0000 | [diff] [blame] | 43 | 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 Cuelenaere | 79177ed | 2008-08-27 23:07:08 +0000 | [diff] [blame] | 50 | fclose(fd);
|
Maurus Cuelenaere | be0bccf | 2008-07-03 23:30:51 +0000 | [diff] [blame] | 51 | return tmp;
|
| 52 | }
|
| 53 |
|
Maurus Cuelenaere | 79177ed | 2008-08-27 23:07:08 +0000 | [diff] [blame] | 54 | void 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 Cuelenaere | be0bccf | 2008-07-03 23:30:51 +0000 | [diff] [blame] | 61 | int 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 Riebeling | eebde2a | 2009-06-08 18:04:10 +0000 | [diff] [blame] | 79 | if(mtp_sendnk(tmp, filesize(argv[1]), &callback))
|
Maurus Cuelenaere | be0bccf | 2008-07-03 23:30:51 +0000 | [diff] [blame] | 80 | 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 | }
|