javanotify_lifecycle.c
来自「This is a resource based on j2me embedde」· C语言 代码 · 共 813 行 · 第 1/2 页
C
813 行
midp_jc_event_union e;
REPORT_INFO2(LC_CORE,"javanotify_install_midlet_from_browser() %s %s>>\n", browserUrl, localResPath);
e.eventType = MIDP_JC_EVENT_START_INSTALL;
e.data.lifecycleEvent.silentInstall = 0;
wapBrowserDownload = 1;
length1 = strlen(browserUrl);
length2 = strlen(localResPath);
if (length1 < BINARY_BUFFER_MAX_LEN && length2 < BINARY_BUFFER_MAX_LEN) {
memset(urlAddress, 0, BINARY_BUFFER_MAX_LEN);
memcpy(urlAddress, browserUrl, length1);
memset(localResAddress, 0, BINARY_BUFFER_MAX_LEN);
memcpy(localResAddress, localResPath, length2);
e.data.lifecycleEvent.urlAddress = urlAddress;
e.data.lifecycleEvent.localResPath = localResAddress;
midp_jc_event_send(&e);
}
}
/**
* A notification function for telling Java to perform installation of
* a MIDlet from filesystem,
*
* The installation will be performed in the background without launching
* the graphic installer application.
*
* The given path is the full path to MIDlet's jad file or jad.
* In case the MIDlet's jad file is specified, then
* the MIDlet's jar file muts reside in the same directory as the jad
* file.
*
* @param jadFilePath full path the jad (or jar) file which is of the form:
* file://a/b/c/d.jad
* @param jadFilePathLen length of the file path
* @param userWasAsked a flag indicating whether the platform already asked
* the user for permission to download and install the application
* so there's no need to ask again and we can immediately install.
*/
void javanotify_install_midlet_from_filesystem(const javacall_utf16* jadFilePath,
int jadFilePathLen, int userWasAsked) {
midp_jc_event_union e;
midp_jc_event_start_arbitrary_arg *data = &e.data.startMidletArbitraryArgEvent;
REPORT_INFO(LC_CORE, "javanotify_install_midlet_from_filesystem() >>\n");
e.eventType = MIDP_JC_EVENT_START_ARBITRARY_ARG;
data->argc = 0;
data->argv[data->argc++] = "runMidlet";
data->argv[data->argc++] = "-1";
data->argv[data->argc++] = "com.sun.midp.scriptutil.CommandLineInstaller";
data->argv[data->argc++] = "I";
if (jadFilePathLen >= BINARY_BUFFER_MAX_LEN)
return;
memset(urlAddress, 0, BINARY_BUFFER_MAX_LEN);
unicodeToNative(jadFilePath, jadFilePathLen,
(unsigned char *)urlAddress, BINARY_BUFFER_MAX_LEN);
data->argv[data->argc++] = urlAddress;
midp_jc_event_send(&e);
}
/**
* A notification function for telling Java to perform installation of
* a MIDlet with parameters
*
* If the given url is of the form http://www.sun.com/a/b/c/d.jad then
* java will start a graphical installer will download the MIDlet
* fom the internet.
* If the given url is a file url (see below, file:///a/b/c/d.jar or
* file:///a/b/c/d/jad) installation will be performed
* in the backgroudn without launching the graphic installer application
*
*
* @param url of MIDlet to install, can be either one of the following
* 1. A full path to the jar file, of the following form file:///a/b/c/d.jar
* 2. A full path to the JAD file, of the following form file:///a/b/c/d.jad
* 3. An http url of jad file, of the following form,
* http://www.sun.com/a/b/c/d.jad
* @param silentInstall install the MIDlet without user interaction
* @param forceUpdate install the MIDlet even if it already exist regardless
* of version
*/
void javanotify_install_midlet_wparams(const char* httpUrl,
int silentInstall, int forceUpdate) {
int length;
midp_jc_event_union e;
midp_jc_event_start_arbitrary_arg *data = &e.data.startMidletArbitraryArgEvent;
REPORT_INFO2(LC_CORE,"javanotify_install_midlet_wparams() >> "
"httpUrl = %s, silentInstall = %d\n",
httpUrl, silentInstall);
e.eventType = MIDP_JC_EVENT_START_ARBITRARY_ARG;
data->argc = 0;
data->argv[data->argc++] = "runMidlet";
data->argv[data->argc++] = "-1";
data->argv[data->argc++] = "com.sun.midp.installer.GraphicalInstaller";
if (silentInstall == 1) {
if (forceUpdate == 1) {
data->argv[data->argc++] = "FU";
} else {
data->argv[data->argc++] = "FI";
}
} else {
data->argv[data->argc++] = "I";
}
length = strlen(httpUrl);
if (length >= BINARY_BUFFER_MAX_LEN) {
return;
}
memset(urlAddress, 0, BINARY_BUFFER_MAX_LEN);
memcpy(urlAddress, httpUrl, length);
data->argv[data->argc++] = urlAddress;
midp_jc_event_send(&e);
}
/**
* The platform should invoke this function in platform context to start
* the Java VM with arbitrary arguments.
*
* @param argc number of command-line arguments
* @param argv array of command-line arguments
*
* @note This is a service function and it is introduced in the javacall
* interface for debug purposes. Please DO NOT CALL this function without
* being EXPLICITLY INSTRUCTED to do so.
*/
void javanotify_start_java_with_arbitrary_args(int argc, char* argv[]) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_start_java_with_arbitrary_args() >>\n");
if (argc > MIDP_RUNMIDLET_MAXIMUM_ARGS)
argc = MIDP_RUNMIDLET_MAXIMUM_ARGS;
e.eventType = MIDP_JC_EVENT_START_ARBITRARY_ARG;
e.data.startMidletArbitraryArgEvent.argc = argc;
memcpy(e.data.startMidletArbitraryArgEvent.argv, argv, argc * sizeof(char*));
midp_jc_event_send(&e);
}
/**
* Parse options for the VM
*
* @param argc number of command-line arguments
* @param argv array of command-line arguments
*/
void javanotify_set_vm_args(int argc, char* argv[]) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_set_vm_args() >>\n");
if (argc > MIDP_RUNMIDLET_MAXIMUM_ARGS) {
argc = MIDP_RUNMIDLET_MAXIMUM_ARGS;
}
e.eventType = MIDP_JC_EVENT_SET_VM_ARGS;
e.data.startMidletArbitraryArgEvent.argc = argc;
memcpy(e.data.startMidletArbitraryArgEvent.argv, argv, argc * sizeof(char*));
midp_jc_event_send(&e);
}
/**
* Set VM heapsize
* @param heapsize the heap size in bytes
*/
void javanotify_set_heap_size(int heapsize) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_set_heap_size() >>\n");
e.eventType = MIDP_JC_EVENT_SET_HEAP_SIZE;
e.data.heap_size.heap_size = heapsize;
midp_jc_event_send(&e);
}
/**
* list the MIDlet suites installed
*/
void javanotify_list_midlets(void) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_list_midlets() >>\n");
e.eventType = MIDP_JC_EVENT_LIST_MIDLETS;
midp_jc_event_send(&e);
}
/**
* list the MIDlet suites installed
* Each line contains one storage name
*/
void javanotify_list_storageNames(void) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_list_storageName() >>\n");
e.eventType = MIDP_JC_EVENT_LIST_STORAGE_NAMES;
midp_jc_event_send(&e);
}
/**
* Remove a MIDlet suite according to the given suite ID
*/
void javanotify_remove_suite(char* suite_id) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_remove_suite() >>\n");
e.eventType = MIDP_JC_EVENT_REMOVE_MIDLET;
e.data.removeMidletEvent.suiteID = suite_id;
midp_jc_event_send(&e);
}
/**
* Install, run, and remove the application with the specified JAD file
*/
void javanotify_transient(char* url) {
int length;
midp_jc_event_union e;
midp_jc_event_start_arbitrary_arg *data = &e.data.startMidletArbitraryArgEvent;
REPORT_INFO(LC_CORE,"javanotify_transient() >>\n");
e.eventType = MIDP_JC_EVENT_START_ARBITRARY_ARG;
data->argc = 0;
data->argv[data->argc++] = "runMidlet";
data->argv[data->argc++] = "-1";
data->argv[data->argc++] = "com.sun.midp.installer.AutoTester";
length = strlen(url);
if (length >= BINARY_BUFFER_MAX_LEN)
return;
memset(urlAddress, 0, BINARY_BUFFER_MAX_LEN);
memcpy(urlAddress, url, length);
if (strcmp(urlAddress, "none") != 0) {
data->argv[data->argc++] = urlAddress;
}
data->argv[data->argc++] = "1"; /* loop count */
midp_jc_event_send(&e);
}
/**
* The platform should invoke this function in platform context to end Java.
*/
void javanotify_shutdown(void) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_shutdown() >>\n");
e.eventType = MIDP_JC_EVENT_END;
midp_jc_event_send(&e);
}
/**
* The platform should invoke this function in platform context to pause
* Java.
*/
void javanotify_pause(void) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_pause() >>\n");
e.eventType = MIDP_JC_EVENT_PAUSE;
midp_jc_event_send(&e);
}
/**
* The platform should invoke this function in platform context to end pause
* and resume Java.
*/
void javanotify_resume(void) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_resume() >>\n");
e.eventType = MIDP_JC_EVENT_RESUME;
midp_jc_event_send(&e);
}
/**
* Decode integer parameters to locale string
*/
void decodeLanguage(char* str, short languageCode, short regionCode) {
int i;
str[1] = (languageCode & 0xFF);
languageCode >>= 8;
str[0] = (languageCode & 0xFF);
languageCode >>= 8;
str[2] = '-';
str[4] = (regionCode & 0xFF);
regionCode >>= 8;
str[3] = (regionCode & 0xFF);
regionCode >>= 8;
str[5] = '\0';
}
/**
* The platform should invoke this function for locale changing
*/
void javanotify_change_locale(short languageCode, short regionCode) {
const char tmp[6];
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_change_locale() >>\n");
e.eventType = MIDP_JC_EVENT_CHANGE_LOCALE;
decodeLanguage(tmp, languageCode, regionCode);
setSystemProperty(LOCALE, tmp);
midp_jc_event_send(&e);
}
/**
* The platform should invoke this function in platform context
* to select another running application to be the foreground.
*/
void javanotify_select_foreground_app(void) {
#if ENABLE_MULTIPLE_ISOLATES
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_switchforeground() >>\n");
e.eventType = MIDP_JC_EVENT_SWITCH_FOREGROUND;
midp_jc_event_send(&e);
#endif /* ENABLE_MULTIPLE_ISOLATES */
}
/**
* The platform should invoke this function in platform context
* to bring the Application Manager Screen to foreground.
*/
void javanotify_switch_to_ams(void) {
#if ENABLE_MULTIPLE_ISOLATES
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_selectapp() >>\n");
e.eventType = MIDP_JC_EVENT_SELECT_APP;
midp_jc_event_send(&e);
#endif /* ENABLE_MULTIPLE_ISOLATES */
}
/**
* The platform should invoke this function in platform context to pause
* Java bytecode execution (without invoking pauseApp)
*/
void javanotify_internal_pause(void) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_internal_pause() >>\n");
/* IMPL_NOTE: currently this event is not handled anywhere */
e.eventType = MIDP_JC_EVENT_INTERNAL_PAUSE;
midp_jc_event_send(&e);
}
/**
* The platform should invoke this function in platform context to end
* an internal pause and resume Java bytecode processing
*/
void javanotify_internal_resume(void) {
midp_jc_event_union e;
REPORT_INFO(LC_CORE, "javanotify_internal_resume() >>\n");
/* IMPL_NOTE: currently this event is not handled anywhere */
e.eventType = MIDP_JC_EVENT_INTERNAL_RESUME;
midp_jc_event_send(&e);
}
#ifdef __cplusplus
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?