SWITCH_DECLARE(void) switch_console_loop(void)
{
- char cmd[2048];
- int32_t activity = 1;
- switch_size_t x = 0;
-
+ char cmd[2048] = "";
+ int32_t activity = 1, r;
gethostname(hostname, sizeof(hostname));
while (running) {
int32_t arg;
-#ifndef _MSC_VER
+#ifdef _MSC_VER
+ HANDLE stdinHandle = GetStdHandle(STD_INPUT_HANDLE);
+ INPUT_RECORD in[128];
+#else
fd_set rfds, efds;
struct timeval tv = { 0, 20000 };
#endif
switch_log_printf(SWITCH_CHANNEL_LOG_CLEAN, SWITCH_LOG_CONSOLE, "\nfreeswitch@%s> ", hostname);
}
#ifdef _MSC_VER
- activity = WaitForSingleObject(GetStdHandle(STD_INPUT_HANDLE), 20);
+ r = WaitForSingleObject(stdinHandle, 200);
+ activity = 0;
+
+ if (r == WAIT_OBJECT_0) {
+ DWORD bytes = 0;
+ DWORD read, i;
+ PeekConsoleInput(stdinHandle, in, 128, &read);
+ for (i = 0; i < read; i++) {
+ if (in[i].EventType == KEY_EVENT && !in[i].Event.KeyEvent.bKeyDown) {
+ activity = 1;
+ break;
+ }
+ }
+ if (activity) {
+ char *end;
+ ReadConsole(stdinHandle, cmd, sizeof(cmd), &bytes, NULL);
+ end = end_of_p(cmd);
+ while(*end == '\r' || *end == '\n') {
+ *end-- = '\0';
+ }
+ }
- if (activity == 102) {
- fflush(stdout);
- continue;
+ if (cmd[0]) {
+ running = switch_console_process(cmd, 0);
+ memset(cmd, 0, sizeof(cmd));
+ }
+
}
#else
FD_ZERO(&rfds);
fflush(stdout);
continue;
}
-#endif
+
memset(&cmd, 0, sizeof(cmd));
for (x = 0; x < (sizeof(cmd) - 1); x++) {
int c = getchar();
if (cmd[0]) {
running = switch_console_process(cmd, 0);
}
+#endif
}
}
#endif
}
break;
case SCSC_SHUTDOWN:
+
+#ifdef _MSC_VER
+ {
+ HANDLE shutdown_event;
+ char path[512];
+ /* for windows we need the event to signal for shutting down a background FreeSWITCH */
+ snprintf(path, sizeof(path), "Global\\Freeswitch.%d", getpid());
+
+ /* open the event so we can signal it */
+ shutdown_event = OpenEvent(EVENT_MODIFY_STATE, FALSE, path);
+
+
+ if (shutdown_event) {
+ /* signal the event to shutdown */
+ SetEvent(shutdown_event);
+ /* cleanup */
+ CloseHandle(shutdown_event);
+ }
+ }
+#endif
+
+
if (*val) {
switch_set_flag((&runtime), SCF_RESTART);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Restarting\n");
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Shutting down\n");
+#ifdef _MSC_VER
+ fclose(stdin);
+#endif
}
runtime.running = 0;
break;