Add missing files
[bcusdk.git] / bcugen / loadimage.cpp
blob7a865b13006080aeafc0a298637648f43aad9b81
1 /*
2 BCU SDK bcu development enviroment
3 Copyright (C) 2005-2011 Martin Koegler <mkoegler@auto.tuwien.ac.at>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include <stdio.h>
21 #include "eibclient.h"
22 #include "common.h"
23 #include "types.h"
24 #include "image.h"
25 #include "loadimage.h"
27 int
28 main (int ac, char *ag[])
30 Array < uint8_t > p;
31 int len;
32 uint8_t buf[200];
33 EIBConnection *con;
35 bool dump = 0;
36 if (ac != 3 && ac != 4)
37 die (_("%s [-d] url image"), ag[0]);
39 if (ac == 4 && strcmp (ag[1], "-d"))
40 die (_("%s [-d] url image"), ag[0]);
41 if (ac == 4)
42 ag++, dump = 1;
44 FILE *f = fopen (ag[2], "r");
45 if (!f)
46 die (_("open of %s failed"), ag[2]);
48 while (!feof (f))
50 int i = fread (buf, 1, sizeof (buf), f);
51 p.setpart (buf, p (), i);
53 fclose (f);
55 if (dump)
56 printf ("%s", HexDump (p) ());
58 BCUImage *i;
59 int res;
61 BCU_LOAD_RESULT r = PrepareLoadImage (p, i);
63 if (r != IMG_IMAGE_LOADABLE)
65 printf ("%s\n", decodeBCULoadResult (r) ());
66 return 1;
69 con = EIBSocketURL (ag[1]);
70 if (!con)
71 die ("Open failed");
73 res = EIB_LoadImage (con, p (), p.array ());
75 if (res == - 1)
76 printf ("Communication with EIBD failed\n");
77 else
78 printf ("%s\n", decodeBCULoadResult (res) ());
80 EIBClose (con);
81 return 0;