From 80d8dc02aa1f92184fffa1b3f8875ea41217ee95 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Sun, 22 Dec 2013 00:21:35 -0800 Subject: [PATCH] Messaging over debug channel. --- .gitmodules | 3 + debugger/assets/ui/code/code-tab.html | 2 +- debugger/assets/ui/code/code-tab.js | 32 +++++++ debugger/assets/ui/navbar.html | 7 +- debugger/assets/ui/navbar.js | 10 +- debugger/index.html | 1 + debugger/src/app.js | 1 + debugger/src/datasources.js | 111 ++++++++++++++++++++-- src/xenia/debug/protocols/ws/ws_client.cc | 101 +++++++++++++++++++- src/xenia/debug/protocols/ws/ws_client.h | 8 +- third_party/jansson | 1 + third_party/jansson.gypi | 59 ++++++++++++ xenia.gyp | 3 + 13 files changed, 319 insertions(+), 20 deletions(-) create mode 100644 debugger/assets/ui/code/code-tab.js create mode 160000 third_party/jansson create mode 100644 third_party/jansson.gypi diff --git a/.gitmodules b/.gitmodules index 17e51d523..b85aa582d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -19,3 +19,6 @@ [submodule "third_party/wslay"] path = third_party/wslay url = https://github.com/benvanik/wslay.git +[submodule "third_party/jansson"] + path = third_party/jansson + url = https://github.com/akheron/jansson.git diff --git a/debugger/assets/ui/code/code-tab.html b/debugger/assets/ui/code/code-tab.html index 48388c9c4..d5929bbc4 100644 --- a/debugger/assets/ui/code/code-tab.html +++ b/debugger/assets/ui/code/code-tab.html @@ -1,4 +1,4 @@ -
+
debug header/toolbar/etc
diff --git a/debugger/assets/ui/code/code-tab.js b/debugger/assets/ui/code/code-tab.js new file mode 100644 index 000000000..55fb8e14b --- /dev/null +++ b/debugger/assets/ui/code/code-tab.js @@ -0,0 +1,32 @@ +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2013 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +'use strict'; + +var module = angular.module('xe.ui.code', [ + 'xe.log', + 'xe.session' +]); + + +module.controller('CodeTabController', function( + $rootScope, $scope, app, log) { + + $rootScope.$on('refresh', function() { + var dataSource = app.session.dataSource; + + dataSource.getModuleList().then(function(list) { + console.log(list); + }, function(e) { + log('Unable to fetch module list'); + }); + + console.log('refresh'); + }); +}); diff --git a/debugger/assets/ui/navbar.html b/debugger/assets/ui/navbar.html index 9c94802d1..3539d379a 100644 --- a/debugger/assets/ui/navbar.html +++ b/debugger/assets/ui/navbar.html @@ -13,12 +13,15 @@