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
|
/*
* Copyright (C) 2009 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* The "SDK Launcher" is for Windows only.
* This simple .exe will sit at the root of the Windows SDK
* and currently simply executes tools\android.bat.
* Eventually it should simply replace the batch file.
*
* TODO:
* - detect that java is installed; error dialog if not, explaning where to get it.
* - create temp dir, always copy *.jar there, exec android.jar
* - get jars to copy from some file
* - use a version number to copy jars only if needed (tools.revision?)
*/
#ifdef _WIN32
#include <stdio.h>
#include <windows.h>
int sdk_launcher() {
STARTUPINFO startup;
PROCESS_INFORMATION pinfo;
char program_path[MAX_PATH];
int ret;
ZeroMemory(&startup, sizeof(startup));
startup.cb = sizeof(startup);
ZeroMemory(&pinfo, sizeof(pinfo));
/* get path of current program */
GetModuleFileName(NULL, program_path, sizeof(program_path));
ret = CreateProcess(
NULL, /* program path */
"tools\\android.bat update sdk", /* command-line */
NULL, /* process handle is not inheritable */
NULL, /* thread handle is not inheritable */
TRUE, /* yes, inherit some handles */
CREATE_NO_WINDOW, /* we don't want a console */
NULL, /* use parent's environment block */
NULL, /* use parent's starting directory */
&startup, /* startup info, i.e. std handles */
&pinfo);
if (!ret) {
DWORD err = GetLastError();
fprintf(stderr, "CreateProcess failure, error %ld\n", err);
LPSTR s;
if (FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | /* dwFlags */
FORMAT_MESSAGE_FROM_SYSTEM,
NULL, /* lpSource */
err, /* dwMessageId */
0, /* dwLanguageId */
(LPSTR)&s, /* lpBuffer */
0, /* nSize */
NULL) != 0) { /* va_list args */
fprintf(stderr, "%s", s);
LocalFree(s);
}
return -1;
}
return 0;
}
int main(int argc, char **argv) {
return sdk_launcher();
}
#endif /* _WIN32 */
|