| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139 |
- //
- // Copyright (c) 2014-2016 THUNDERBEAST GAMES LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #include <Atomic/Core/CoreEvents.h>//
- #include <Atomic/IO/IOEvents.h>
- #include <Atomic/Input/InputEvents.h>
- #include <Atomic/Graphics/Graphics.h>
- #include <Atomic/Graphics/GraphicsEvents.h>
- #include <Atomic/IPC/IPCEvents.h>
- #include <AtomicJS/Javascript/JSIPCEvents.h>
- #include "IPCPlayerAppEvents.h"
- #include <Atomic/Engine/Engine.h>
- #include <Atomic/IPC/IPC.h>
- #include <AtomicJS/Javascript/Javascript.h>
- #include <Atomic/UI/SystemUI/DebugHud.h>
- #include "IPCPlayerApp.h"
- #include <stdio.h>
- #include <stdio.h>
- namespace Atomic
- {
- IPCPlayerApp *arobj = NULL;
- void do_reconnect() // hack to call object method
- {
- if (arobj)
- arobj->Reconnect();
- }
- #ifdef ATOMIC_PLATFORM_WINDOWS
- /*
- * Example debug transport using a Windows TCP socket
- *
- * Provides a TCP server socket which a debug client can connect to.
- * After that data is just passed through.
- *
- * https://msdn.microsoft.com/en-us/library/windows/desktop/ms737593(v=vs.85).aspx
- *
- * Compiling 'duk' with debugger support using MSVC (Visual Studio):
- *
- * > python2 tools\configure.py \
- * --output-directory prep
- * -DDUK_USE_DEBUGGER_SUPPORT -DDUK_USE_INTERRUPT_COUNTER
- * > cl /W3 /O2 /Feduk.exe \
- * /DDUK_CMDLINE_DEBUGGER_SUPPORT
- * /Iexamples\debug-trans-socket /Iprep
- * examples\cmdline\duk_cmdline.c
- * examples\debug-trans-socket\duk_trans_socket_windows.c
- * prep\duktape.c
- *
- * With MinGW:
- *
- * $ python2 tools\configure.py \
- * --output-directory prep
- * -DDUK_USE_DEBUGGER_SUPPORT -DDUK_USE_INTERRUPT_COUNTER
- * $ gcc -oduk.exe -Wall -O2 \
- * -DDUK_CMDLINE_DEBUGGER_SUPPORT \
- * -Iexamples/debug-trans-socket -Iprep \
- * examples/cmdline/duk_cmdline.c \
- * examples/debug-trans-socket/duk_trans_socket_windows.c \
- * prep/duktape.c -lm -lws2_32
- */
- #undef UNICODE
- #if !defined(WIN32_LEAN_AND_MEAN)
- #define WIN32_LEAN_AND_MEAN
- #endif
- /* MinGW workaround for missing getaddrinfo() etc:
- * http://programmingrants.blogspot.fi/2009/09/tips-on-undefined-reference-to.html
- */
- #if defined(__MINGW32__) || defined(__MINGW64__)
- #if !defined(_WIN32_WINNT)
- #define _WIN32_WINNT 0x0501
- #endif
- #endif
- #include <windows.h>
- #include <winsock2.h>
- #include <ws2tcpip.h>
- #include <stdio.h>
- #include <string.h>
- #include "duktape.h"
- #if defined(_MSC_VER)
- #pragma comment (lib, "Ws2_32.lib")
- #endif
- #if !defined(DUK_DEBUG_PORT)
- #define DUK_DEBUG_PORT 9091
- #endif
- #if !defined(DUK_DEBUG_ADDRESS)
- #define DUK_DEBUG_ADDRESS "0.0.0.0"
- #endif
- #define DUK__STRINGIFY_HELPER(x) #x
- #define DUK__STRINGIFY(x) DUK__STRINGIFY_HELPER(x)
- #if 0
- #define DEBUG_PRINTS
- #endif
- static SOCKET server_sock = INVALID_SOCKET;
- static SOCKET client_sock = INVALID_SOCKET;
- static int wsa_inited = 0;
- /*
- * Transport init and finish
- */
- void duk_trans_socket_init(void) {
- WSADATA wsa_data;
- struct addrinfo hints;
- struct addrinfo *result = NULL;
- int rc;
- memset((void *) &wsa_data, 0, sizeof(wsa_data));
- memset((void *) &hints, 0, sizeof(hints));
- rc = WSAStartup(MAKEWORD(2, 2), &wsa_data);
- if (rc != 0) {
- fprintf(stderr, "%s: WSAStartup() failed: %d\n", __FILE__, rc);
- fflush(stderr);
- goto fail;
- }
- wsa_inited = 1;
- hints.ai_family = AF_UNSPEC;
- hints.ai_socktype = SOCK_STREAM;
- hints.ai_protocol = IPPROTO_TCP;
- hints.ai_flags = AI_PASSIVE;
- rc = getaddrinfo(DUK_DEBUG_ADDRESS, DUK__STRINGIFY(DUK_DEBUG_PORT), &hints, &result);
- if (rc != 0) {
- fprintf(stderr, "%s: getaddrinfo() failed: %d\n", __FILE__, rc);
- fflush(stderr);
- goto fail;
- }
- server_sock = socket(result->ai_family, result->ai_socktype, result->ai_protocol);
- if (server_sock == INVALID_SOCKET) {
- fprintf(stderr, "%s: socket() failed with error: %ld\n",
- __FILE__, (long) WSAGetLastError());
- fflush(stderr);
- goto fail;
- }
- rc = bind(server_sock, result->ai_addr, (int) result->ai_addrlen);
- if (rc == SOCKET_ERROR) {
- fprintf(stderr, "%s: bind() failed with error: %ld\n",
- __FILE__, (long) WSAGetLastError());
- fflush(stderr);
- goto fail;
- }
- rc = listen(server_sock, SOMAXCONN);
- if (rc == SOCKET_ERROR) {
- fprintf(stderr, "%s: listen() failed with error: %ld\n",
- __FILE__, (long) WSAGetLastError());
- fflush(stderr);
- goto fail;
- }
- if (result != NULL) {
- freeaddrinfo(result);
- result = NULL;
- }
- return;
- fail:
- if (result != NULL) {
- freeaddrinfo(result);
- result = NULL;
- }
- if (server_sock != INVALID_SOCKET) {
- (void) closesocket(server_sock);
- server_sock = INVALID_SOCKET;
- }
- if (wsa_inited) {
- WSACleanup();
- wsa_inited = 0;
- }
- }
- void duk_trans_socket_finish(void) {
- if (client_sock != INVALID_SOCKET) {
- (void) closesocket(client_sock);
- client_sock = INVALID_SOCKET;
- }
- if (server_sock != INVALID_SOCKET) {
- (void) closesocket(server_sock);
- server_sock = INVALID_SOCKET;
- }
- if (wsa_inited) {
- WSACleanup();
- wsa_inited = 0;
- }
- // auto-restart
- do_reconnect();
- }
- void duk_trans_socket_waitconn(void) {
- if (server_sock == INVALID_SOCKET) {
- fprintf(stderr, "%s: no server socket, skip waiting for connection\n",
- __FILE__);
- fflush(stderr);
- return;
- }
- if (client_sock != INVALID_SOCKET) {
- (void) closesocket(client_sock);
- client_sock = INVALID_SOCKET;
- }
- fprintf(stderr, "Waiting for debug connection on port %d\n", (int) DUK_DEBUG_PORT);
- fflush(stderr);
- client_sock = accept(server_sock, NULL, NULL);
- if (client_sock == INVALID_SOCKET) {
- fprintf(stderr, "%s: accept() failed with error %ld, skip waiting for connection\n",
- __FILE__, (long) WSAGetLastError());
- fflush(stderr);
- goto fail;
- }
- fprintf(stderr, "Debug connection established\n");
- fflush(stderr);
- /* XXX: For now, close the listen socket because we won't accept new
- * connections anyway. A better implementation would allow multiple
- * debug attaches.
- */
- if (server_sock != INVALID_SOCKET) {
- (void) closesocket(server_sock);
- server_sock = INVALID_SOCKET;
- }
- return;
- fail:
- if (client_sock != INVALID_SOCKET) {
- (void) closesocket(client_sock);
- client_sock = INVALID_SOCKET;
- }
- }
- /*
- * Duktape callbacks
- */
- /* Duktape debug transport callback: (possibly partial) read. */
- duk_size_t duk_trans_socket_read_cb(void *udata, char *buffer, duk_size_t length) {
- int ret;
- (void) udata; /* not needed by the example */
- #if defined(DEBUG_PRINTS)
- fprintf(stderr, "%s: udata=%p, buffer=%p, length=%ld\n",
- __FUNCTION__, (void *) udata, (void *) buffer, (long) length);
- fflush(stderr);
- #endif
- if (client_sock == INVALID_SOCKET) {
- return 0;
- }
- if (length == 0) {
- /* This shouldn't happen. */
- fprintf(stderr, "%s: read request length == 0, closing connection\n",
- __FILE__);
- fflush(stderr);
- goto fail;
- }
- if (buffer == NULL) {
- /* This shouldn't happen. */
- fprintf(stderr, "%s: read request buffer == NULL, closing connection\n",
- __FILE__);
- fflush(stderr);
- goto fail;
- }
- /* In a production quality implementation there would be a sanity
- * timeout here to recover from "black hole" disconnects.
- */
- ret = recv(client_sock, (void *) buffer, (int) length, 0);
- if (ret < 0) {
- fprintf(stderr, "%s: debug read failed, error %d, closing connection\n",
- __FILE__, ret);
- fflush(stderr);
- goto fail;
- } else if (ret == 0) {
- fprintf(stderr, "%s: debug read failed, ret == 0 (EOF), closing connection\n",
- __FILE__);
- fflush(stderr);
- goto fail;
- } else if (ret > (int) length) {
- fprintf(stderr, "%s: debug read failed, ret too large (%ld > %ld), closing connection\n",
- __FILE__, (long) ret, (long) length);
- fflush(stderr);
- goto fail;
- }
- return (duk_size_t) ret;
- fail:
- if (client_sock != INVALID_SOCKET) {
- (void) closesocket(client_sock);
- client_sock = INVALID_SOCKET;
- }
- return 0;
- }
- /* Duktape debug transport callback: (possibly partial) write. */
- duk_size_t duk_trans_socket_write_cb(void *udata, const char *buffer, duk_size_t length) {
- int ret;
- (void) udata; /* not needed by the example */
- #if defined(DEBUG_PRINTS)
- fprintf(stderr, "%s: udata=%p, buffer=%p, length=%ld\n",
- __FUNCTION__, (void *) udata, (const void *) buffer, (long) length);
- fflush(stderr);
- #endif
- if (client_sock == INVALID_SOCKET) {
- return 0;
- }
- if (length == 0) {
- /* This shouldn't happen. */
- fprintf(stderr, "%s: write request length == 0, closing connection\n",
- __FILE__);
- fflush(stderr);
- goto fail;
- }
- if (buffer == NULL) {
- /* This shouldn't happen. */
- fprintf(stderr, "%s: write request buffer == NULL, closing connection\n",
- __FILE__);
- fflush(stderr);
- goto fail;
- }
- /* In a production quality implementation there would be a sanity
- * timeout here to recover from "black hole" disconnects.
- */
- ret = send(client_sock, (const void *) buffer, (int) length, 0);
- if (ret <= 0 || ret > (int) length) {
- fprintf(stderr, "%s: debug write failed, ret %d, closing connection\n",
- __FILE__, ret);
- fflush(stderr);
- goto fail;
- }
- return (duk_size_t) ret;
- fail:
- if (client_sock != INVALID_SOCKET) {
- (void) closesocket(INVALID_SOCKET);
- client_sock = INVALID_SOCKET;
- }
- return 0;
- }
- duk_size_t duk_trans_socket_peek_cb(void *udata) {
- u_long avail;
- int rc;
- (void) udata; /* not needed by the example */
- #if defined(DEBUG_PRINTS)
- fprintf(stderr, "%s: udata=%p\n", __FUNCTION__, (void *) udata);
- fflush(stderr);
- #endif
- if (client_sock == INVALID_SOCKET) {
- return 0;
- }
- avail = 0;
- rc = ioctlsocket(client_sock, FIONREAD, &avail);
- if (rc != 0) {
- fprintf(stderr, "%s: ioctlsocket() returned %d, closing connection\n",
- __FILE__, rc);
- fflush(stderr);
- goto fail; /* also returns 0, which is correct */
- } else {
- if (avail == 0) {
- return 0; /* nothing to read */
- } else {
- return 1; /* something to read */
- }
- }
- /* never here */
- fail:
- if (client_sock != INVALID_SOCKET) {
- (void) closesocket(client_sock);
- client_sock = INVALID_SOCKET;
- }
- return 0;
- }
- void duk_trans_socket_read_flush_cb(void *udata) {
- (void) udata; /* not needed by the example */
- #if defined(DEBUG_PRINTS)
- fprintf(stderr, "%s: udata=%p\n", __FUNCTION__, (void *) udata);
- fflush(stderr);
- #endif
- /* Read flush: Duktape may not be making any more read calls at this
- * time. If the transport maintains a receive window, it can use a
- * read flush as a signal to update the window status to the remote
- * peer. A read flush is guaranteed to occur before Duktape stops
- * reading for a while; it may occur in other situations as well so
- * it's not a 100% reliable indication.
- */
- /* This TCP transport requires no read flush handling so ignore.
- * You can also pass a NULL to duk_debugger_attach() and not
- * implement this callback at all.
- */
- }
- void duk_trans_socket_write_flush_cb(void *udata) {
- (void) udata; /* not needed by the example */
- #if defined(DEBUG_PRINTS)
- fprintf(stderr, "%s: udata=%p\n", __FUNCTION__, (void *) udata);
- fflush(stderr);
- #endif
- /* Write flush. If the transport combines multiple writes
- * before actually sending, a write flush is an indication
- * to write out any pending bytes: Duktape may not be doing
- * any more writes on this occasion.
- */
- /* This TCP transport requires no write flush handling so ignore.
- * You can also pass a NULL to duk_debugger_attach() and not
- * implement this callback at all.
- */
- return;
- }
- #undef DUK__STRINGIFY_HELPER
- #undef DUK__STRINGIFY
- #else // OSX ad LINUX
- /*
- * Example debug transport using a Linux/Unix TCP socket
- *
- * Provides a TCP server socket which a debug client can connect to.
- * After that data is just passed through.
- */
- #include <stdio.h>
- #include <string.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <unistd.h>
- #include <poll.h>
- #include <errno.h>
- #include <ThirdParty/Duktape/duktape.h>
- #if !defined(DUK_DEBUG_PORT)
- #define DUK_DEBUG_PORT 9091
- #endif
- #if 0
- #define DEBUG_PRINTS
- #endif
- static int server_sock = -1;
- static int client_sock = -1;
- /*
- * Transport init and finish
- */
- void duk_trans_socket_init(void) {
- struct sockaddr_in addr;
- int on;
- server_sock = socket(AF_INET, SOCK_STREAM, 0);
- if (server_sock < 0) {
- fprintf(stderr, "%s: failed to create server socket: %s\n",
- __FILE__, strerror(errno));
- fflush(stderr);
- goto fail;
- }
- on = 1;
- if (setsockopt(server_sock, SOL_SOCKET, SO_REUSEADDR, (const char *) &on, sizeof(on)) < 0) {
- fprintf(stderr, "%s: failed to set SO_REUSEADDR for server socket: %s\n",
- __FILE__, strerror(errno));
- fflush(stderr);
- goto fail;
- }
- memset((void *) &addr, 0, sizeof(addr));
- addr.sin_family = AF_INET;
- addr.sin_addr.s_addr = INADDR_ANY;
- addr.sin_port = htons(DUK_DEBUG_PORT);
- if (bind(server_sock, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
- fprintf(stderr, "%s: failed to bind server socket: %s\n",
- __FILE__, strerror(errno));
- fflush(stderr);
- goto fail;
- }
- listen(server_sock, 1 /*backlog*/);
- return;
- fail:
- if (server_sock >= 0) {
- (void) close(server_sock);
- server_sock = -1;
- }
- }
- void duk_trans_socket_waitconn(void) {
- struct sockaddr_in addr;
- socklen_t sz;
- if (server_sock < 0) {
- fprintf(stderr, "%s: no server socket, skip waiting for connection\n",
- __FILE__);
- fflush(stderr);
- return;
- }
- if (client_sock >= 0) {
- (void) close(client_sock);
- client_sock = -1;
- }
- fprintf(stderr, "Waiting for debug connection on port %d\n", (int) DUK_DEBUG_PORT);
- fflush(stderr);
- sz = (socklen_t) sizeof(addr);
- client_sock = accept(server_sock, (struct sockaddr *) &addr, &sz);
- if (client_sock < 0) {
- fprintf(stderr, "%s: accept() failed, skip waiting for connection: %s\n",
- __FILE__, strerror(errno));
- fflush(stderr);
- goto fail;
- }
- fprintf(stderr, "Debug connection established\n");
- fflush(stderr);
- /* XXX: For now, close the listen socket because we won't accept new
- * connections anyway. A better implementation would allow multiple
- * debug attaches.
- */
- if (server_sock >= 0) {
- (void) close(server_sock);
- server_sock = -1;
- }
- return;
- fail:
- if (client_sock >= 0) {
- (void) close(client_sock);
- client_sock = -1;
- }
- }
- void duk_trans_socket_finish(void) {
- if (client_sock >= 0) {
- (void) close(client_sock);
- client_sock = -1;
- }
- if (server_sock >= 0) {
- (void) close(server_sock);
- server_sock = -1;
- }
- //
- // auto-restart
- do_reconnect();
- }
- /*
- * Duktape callbacks
- */
- /* Duktape debug transport callback: (possibly partial) read. */
- duk_size_t duk_trans_socket_read_cb(void *udata, char *buffer, duk_size_t length) {
- ssize_t ret;
- (void) udata; /* not needed by the example */
- #if defined(DEBUG_PRINTS)
- fprintf(stderr, "%s: udata=%p, buffer=%p, length=%ld\n",
- __func__, (void *) udata, (void *) buffer, (long) length);
- fflush(stderr);
- #endif
- if (client_sock < 0) {
- return 0;
- }
- if (length == 0) {
- /* This shouldn't happen. */
- fprintf(stderr, "%s: read request length == 0, closing connection\n",
- __FILE__);
- fflush(stderr);
- goto fail;
- }
- if (buffer == NULL) {
- /* This shouldn't happen. */
- fprintf(stderr, "%s: read request buffer == NULL, closing connection\n",
- __FILE__);
- fflush(stderr);
- goto fail;
- }
- /* In a production quality implementation there would be a sanity
- * timeout here to recover from "black hole" disconnects.
- */
- ret = read(client_sock, (void *) buffer, (size_t) length);
- if (ret < 0) {
- fprintf(stderr, "%s: debug read failed, closing connection: %s\n",
- __FILE__, strerror(errno));
- fflush(stderr);
- goto fail;
- } else if (ret == 0) {
- fprintf(stderr, "%s: debug read failed, ret == 0 (EOF), closing connection\n",
- __FILE__);
- fflush(stderr);
- goto fail;
- } else if (ret > (ssize_t) length) {
- fprintf(stderr, "%s: debug read failed, ret too large (%ld > %ld), closing connection\n",
- __FILE__, (long) ret, (long) length);
- fflush(stderr);
- goto fail;
- }
- return (duk_size_t) ret;
- fail:
- if (client_sock >= 0) {
- (void) close(client_sock);
- client_sock = -1;
- }
- return 0;
- }
- /* Duktape debug transport callback: (possibly partial) write. */
- duk_size_t duk_trans_socket_write_cb(void *udata, const char *buffer, duk_size_t length) {
- ssize_t ret;
- (void) udata; /* not needed by the example */
- #if defined(DEBUG_PRINTS)
- fprintf(stderr, "%s: udata=%p, buffer=%p, length=%ld\n",
- __func__, (void *) udata, (const void *) buffer, (long) length);
- fflush(stderr);
- #endif
- if (client_sock < 0) {
- return 0;
- }
- if (length == 0) {
- /* This shouldn't happen. */
- fprintf(stderr, "%s: write request length == 0, closing connection\n",
- __FILE__);
- fflush(stderr);
- goto fail;
- }
- if (buffer == NULL) {
- /* This shouldn't happen. */
- fprintf(stderr, "%s: write request buffer == NULL, closing connection\n",
- __FILE__);
- fflush(stderr);
- goto fail;
- }
- /* In a production quality implementation there would be a sanity
- * timeout here to recover from "black hole" disconnects.
- */
- ret = write(client_sock, (const void *) buffer, (size_t) length);
- if (ret <= 0 || ret > (ssize_t) length) {
- fprintf(stderr, "%s: debug write failed, closing connection: %s\n",
- __FILE__, strerror(errno));
- fflush(stderr);
- goto fail;
- }
- return (duk_size_t) ret;
- fail:
- if (client_sock >= 0) {
- (void) close(client_sock);
- client_sock = -1;
- }
- return 0;
- }
- duk_size_t duk_trans_socket_peek_cb(void *udata) {
- struct pollfd fds[1];
- int poll_rc;
- (void) udata; /* not needed by the example */
- #if defined(DEBUG_PRINTS)
- fprintf(stderr, "%s: udata=%p\n", __func__, (void *) udata);
- fflush(stderr);
- #endif
- if (client_sock < 0) {
- return 0;
- }
- fds[0].fd = client_sock;
- fds[0].events = POLLIN;
- fds[0].revents = 0;
- poll_rc = poll(fds, 1, 0);
- if (poll_rc < 0) {
- fprintf(stderr, "%s: poll returned < 0, closing connection: %s\n",
- __FILE__, strerror(errno));
- fflush(stderr);
- goto fail; /* also returns 0, which is correct */
- } else if (poll_rc > 1) {
- fprintf(stderr, "%s: poll returned > 1, treating like 1\n",
- __FILE__);
- fflush(stderr);
- return 1; /* should never happen */
- } else if (poll_rc == 0) {
- return 0; /* nothing to read */
- } else {
- return 1; /* something to read */
- }
- fail:
- if (client_sock >= 0) {
- (void) close(client_sock);
- client_sock = -1;
- }
- return 0;
- }
- void duk_trans_socket_read_flush_cb(void *udata) {
- (void) udata; /* not needed by the example */
- #if defined(DEBUG_PRINTS)
- fprintf(stderr, "%s: udata=%p\n", __func__, (void *) udata);
- fflush(stderr);
- #endif
- /* Read flush: Duktape may not be making any more read calls at this
- * time. If the transport maintains a receive window, it can use a
- * read flush as a signal to update the window status to the remote
- * peer. A read flush is guaranteed to occur before Duktape stops
- * reading for a while; it may occur in other situations as well so
- * it's not a 100% reliable indication.
- */
- /* This TCP transport requires no read flush handling so ignore.
- * You can also pass a NULL to duk_debugger_attach() and not
- * implement this callback at all.
- */
- }
- void duk_trans_socket_write_flush_cb(void *udata) {
- (void) udata; /* not needed by the example */
- #if defined(DEBUG_PRINTS)
- fprintf(stderr, "%s: udata=%p\n", __func__, (void *) udata);
- fflush(stderr);
- #endif
- /* Write flush. If the transport combines multiple writes
- * before actually sending, a write flush is an indication
- * to write out any pending bytes: Duktape may not be doing
- * any more writes on this occasion.
- */
- /* This TCP transport requires no write flush handling so ignore.
- * You can also pass a NULL to duk_debugger_attach() and not
- * implement this callback at all.
- */
- return;
- }
- #endif // OSX ad LINUX
- void debugger_detached (void *udata) {
- fflush(stderr);
- /* Ensure socket is closed even when detach is initiated by Duktape
- * rather than debug client.
- */
- duk_trans_socket_finish();
- }
- // hack around oo programming, so a function can call a class method.
- void set_autoreconn ( IPCPlayerApp *someptr )
- {
- arobj = someptr;
- }
- IPCPlayerApp::IPCPlayerApp(Context* context) :
- PlayerApp(context),
- subprocess_(false),
- debugPlayer_(false),
- brokerActive_(false)
- {
- fd_[0] = INVALID_IPCHANDLE_VALUE;
- fd_[1] = INVALID_IPCHANDLE_VALUE;
- }
- IPCPlayerApp::~IPCPlayerApp()
- {
- }
- void IPCPlayerApp::Setup()
- {
- PlayerApp::Setup();
- // This should be configurable
- engineParameters_.InsertNew("LogLevel", LOG_DEBUG);
- ipc_ = new IPC(context_);
- context_->RegisterSubsystem(ipc_);
- }
- void IPCPlayerApp::ProcessArguments()
- {
- PlayerApp::ProcessArguments();
- FileSystem* fileSystem = GetSubsystem<FileSystem>();
- if (!fileSystem)
- {
- ErrorExit("IPCPlayerApp::ProcessArguments FileSystem subsystem does not exist");
- }
- String resourcePrefix;
- engineParameters_["ResourcePrefixPaths"] = "";
- for (unsigned i = 0; i < arguments_.Size(); ++i)
- {
- if (arguments_[i].Length() > 1)
- {
- String argument = arguments_[i].ToLower();
- String value = i + 1 < arguments_.Size() ? arguments_[i + 1] : String::EMPTY;
- if (argument.StartsWith("--ipc-server=") || argument.StartsWith("--ipc-client="))
- {
- subprocess_ = true;
- }
- else if (argument == "--debug")
- {
- debugPlayer_ = true;
- }
- else if (argument == "--resourceprefix" && value.Length())
- {
- resourcePrefix = value;
- engineParameters_["ResourcePrefixPaths"] = resourcePrefix;
- }
- else if (argument == "--project" && value.Length())
- {
- value = AddTrailingSlash(value);
- AddEngineConfigSearchPath(value + "Settings/");
- // check that cache exists
- if (!fileSystem->DirExists(value + "Cache"))
- {
- ErrorExit("Project cache folder does not exist, projects must be loaded into the Atomic Editor at least once before using the --player command line mode");
- return;
- }
- #ifdef ATOMIC_DEV_BUILD
- String resourcePaths = ToString("%s/Resources/CoreData;%s/Resources/PlayerData;%sResources;%s;%sCache",
- ATOMIC_ROOT_SOURCE_DIR, ATOMIC_ROOT_SOURCE_DIR, value.CString(), value.CString(), value.CString());
- #else
- #ifdef __APPLE__
- if (!resourcePrefix.Length())
- {
- engineParameters_["ResourcePrefixPaths"] = fileSystem->GetProgramDir() + "../Resources";
- }
- #else
- if (!resourcePrefix.Length())
- {
- engineParameters_["ResourcePrefixPaths"] = fileSystem->GetProgramDir() + "Resources";
- }
- #endif
- String resourcePaths = ToString("CoreData;PlayerData;%s/;%s/Resources;%s;%sCache",
- value.CString(), value.CString(), value.CString(), value.CString());
- #endif
- ATOMIC_LOGINFOF("Adding ResourcePaths: %s", resourcePaths.CString());
- engineParameters_["ResourcePaths"] = resourcePaths;
- }
- }
- }
- // IPC client player should not auto exit if a subprocess
- if (subprocess_)
- engine_->SetAutoExit(false);
- }
- void IPCPlayerApp::Start()
- {
- if (subprocess_)
- {
- // do not execute main in the player app
- executeJSMain_ = false;
- }
- PlayerApp::Start();
- int id = -1;
- if (IPC::ProcessArguments(arguments_, id, fd_[0], fd_[1]))
- {
- SubscribeToEvent(E_IPCINITIALIZE, ATOMIC_HANDLER(IPCPlayerApp, HandleIPCInitialize));
- SubscribeToEvent(E_LOGMESSAGE, ATOMIC_HANDLER(IPCPlayerApp, HandleLogMessage));
- SubscribeToEvent(E_JSERROR, ATOMIC_HANDLER(IPCPlayerApp, HandleJSError));
- SubscribeToEvent(E_EXITREQUESTED, ATOMIC_HANDLER(IPCPlayerApp, HandleExitRequest));
- SubscribeToEvent(E_SCREENMODE, ATOMIC_HANDLER(IPCPlayerApp, HandlePlayerWindowChanged));
- SubscribeToEvent(E_WINDOWPOS, ATOMIC_HANDLER(IPCPlayerApp, HandlePlayerWindowChanged));
- SubscribeToEvent(E_UPDATESPAUSEDRESUMED, ATOMIC_HANDLER(IPCPlayerApp, HandleUpdatesPausedResumed));
- SubscribeToEvent(E_JSDEBUGGER, ATOMIC_HANDLER(IPCPlayerApp, HandleJSDebugRequest));
- if (ipc_->InitWorker((unsigned)id, fd_[0], fd_[1]))
- {
- brokerActive_ = true;
- }
- else if (subprocess_)
- {
- ATOMIC_LOGERROR("IPCPlayerApp::Start() - Unable to initialize IPC Worker");
- }
- }
- if (subprocess_)
- {
- JSVM* vm = JSVM::GetJSVM(0);
- if (!vm->ExecuteMain())
- {
- SendEvent(E_EXITREQUESTED);
- }
- SubscribeToEvent(E_PLAYERQUIT, ATOMIC_HANDLER(IPCPlayerApp, HandleQuit));
- set_autoreconn (this); // for auto-reconnect
- }
- GetSubsystem<Graphics>()->RaiseWindow();
- }
- void IPCPlayerApp::Reconnect()
- {
- duk_trans_socket_init();
- duk_trans_socket_waitconn();
- JSVM* vm = JSVM::GetJSVM(0);
- if(!vm) return;
- duk_context *ctx_ = vm->GetJSContext();
- if(!ctx_) return;
- duk_debugger_attach(ctx_,
- duk_trans_socket_read_cb,
- duk_trans_socket_write_cb,
- duk_trans_socket_peek_cb,
- duk_trans_socket_read_flush_cb,
- duk_trans_socket_write_flush_cb,
- debugger_detached,
- NULL);
- }
- void IPCPlayerApp::HandleJSDebugRequest(StringHash eventType, VariantMap& eventData)
- {
- Reconnect(); // start up the js debugger
- }
- void IPCPlayerApp::HandleQuit(StringHash eventType, VariantMap& eventData)
- {
- engine_->Exit();
- }
- void IPCPlayerApp::Stop()
- {
- PlayerApp::Stop();
- }
- void IPCPlayerApp::HandleIPCInitialize(StringHash eventType, VariantMap& eventData)
- {
- brokerActive_ = true;
- // If the parent application has a profile mode up, sync
- SystemUI::DebugHud* debugHud = GetSubsystem<SystemUI::DebugHud>();
- if (debugHud)
- {
- unsigned mode = eventData["debugHudMode"].GetUInt();
- // Only set if we haven't set the mode in player code
- if (mode && !debugHud->GetMode())
- {
- debugHud->SetMode(mode);
- debugHud->SetProfilerMode((DebugHudProfileMode)eventData["debugHudProfilerMode"].GetUInt());
- }
- }
- }
- void IPCPlayerApp::HandleJSError(StringHash eventType, VariantMap& eventData)
- {
- if (brokerActive_)
- {
- if (ipc_.Null())
- return;
- String errName = eventData[JSError::P_ERRORNAME].GetString();
- String errStack = eventData[JSError::P_ERRORSTACK].GetString();
- String errMessage = eventData[JSError::P_ERRORMESSAGE].GetString();
- String errFilename = eventData[JSError::P_ERRORFILENAME].GetString();
- int errLineNumber = eventData[JSError::P_ERRORLINENUMBER].GetInt();
- VariantMap ipcErrorData;
- ipcErrorData[IPCJSError::P_ERRORNAME] = errName;
- ipcErrorData[IPCJSError::P_ERRORSTACK] = errStack;
- ipcErrorData[IPCJSError::P_ERRORMESSAGE] = errMessage;
- ipcErrorData[IPCJSError::P_ERRORFILENAME] = errFilename;
- ipcErrorData[IPCJSError::P_ERRORLINENUMBER] = errLineNumber;
- ipc_->SendEventToBroker(E_IPCJSERROR, ipcErrorData);
- ATOMIC_LOGERROR("SENDING E_IPCJSERROR");
- }
- }
- void IPCPlayerApp::HandlePlayerWindowChanged(StringHash eventType, VariantMap& eventData)
- {
- Graphics* graphics = GetSubsystem<Graphics>();
- using namespace IPCPlayerWindowChanged;
- VariantMap data;
- data[P_POSX] = graphics->GetWindowPosition().x_;
- data[P_POSY] = graphics->GetWindowPosition().y_;
- data[P_WIDTH] = graphics->GetWidth();
- data[P_HEIGHT] = graphics->GetHeight();
- data[P_MONITOR] = graphics->GetCurrentMonitor();
- data[P_MAXIMIZED] = graphics->GetMaximized();
- ipc_->SendEventToBroker(E_IPCPLAYERWINDOWCHANGED, data);
- }
- void IPCPlayerApp::HandleUpdatesPausedResumed(StringHash eventType, VariantMap& eventData)
- {
- ipc_->SendEventToBroker(E_IPCPLAYERUPDATESPAUSEDRESUMED, eventData);
- }
- void IPCPlayerApp::HandleExitRequest(StringHash eventType, VariantMap& eventData)
- {
- UnsubscribeFromEvent(E_LOGMESSAGE);
- SendEvent(E_PLAYERQUIT);
- }
- void IPCPlayerApp::HandleLogMessage(StringHash eventType, VariantMap& eventData)
- {
- using namespace LogMessage;
- if (brokerActive_)
- {
- if (ipc_.Null())
- return;
- VariantMap logEvent;
- logEvent[IPCWorkerLog::P_LEVEL] = eventData[P_LEVEL].GetInt();
- logEvent[IPCWorkerLog::P_MESSAGE] = eventData[P_MESSAGE].GetString();
- ipc_->SendEventToBroker(E_IPCWORKERLOG, logEvent);
- }
- }
- }
|