Show More
@@ -1,150 +1,173 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // Comm and CommManager bases |
|
10 | 10 | //============================================================================ |
|
11 | 11 | /** |
|
12 | 12 | * Base Comm classes |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | * @submodule comm |
|
16 | 16 | */ |
|
17 | 17 | |
|
18 | 18 | var IPython = (function (IPython) { |
|
19 | 19 | "use strict"; |
|
20 | 20 | |
|
21 | 21 | //----------------------------------------------------------------------- |
|
22 | 22 | // CommManager class |
|
23 | 23 | //----------------------------------------------------------------------- |
|
24 | 24 | |
|
25 | 25 | var CommManager = function (kernel) { |
|
26 | 26 | this.comms = {}; |
|
27 | 27 | this.targets = {comm : Comm}; |
|
28 | 28 | if (kernel !== undefined) { |
|
29 | 29 | this.init_kernel(kernel); |
|
30 | 30 | } |
|
31 | 31 | }; |
|
32 | 32 | |
|
33 | 33 | CommManager.prototype.init_kernel = function (kernel) { |
|
34 | 34 | // connect the kernel, and register message handlers |
|
35 | 35 | this.kernel = kernel; |
|
36 | 36 | var msg_types = ['comm_open', 'comm_msg', 'comm_close']; |
|
37 | 37 | for (var i = 0; i < msg_types.length; i++) { |
|
38 | 38 | var msg_type = msg_types[i]; |
|
39 | 39 | kernel.register_iopub_handler(msg_type, $.proxy(this[msg_type], this)); |
|
40 | 40 | } |
|
41 | 41 | }; |
|
42 | 42 | |
|
43 | 43 | CommManager.prototype.register_target = function (target, constructor) { |
|
44 | 44 | // Register a constructor for a given target key |
|
45 | 45 | this.targets[target] = constructor; |
|
46 | 46 | }; |
|
47 | 47 | |
|
48 | 48 | CommManager.prototype.register_comm = function (comm) { |
|
49 | 49 | // Register a comm in the mapping |
|
50 | 50 | this.comms[comm.comm_id] = comm; |
|
51 | 51 | comm.kernel = this.kernel; |
|
52 | 52 | return comm.comm_id; |
|
53 | 53 | }; |
|
54 | 54 | |
|
55 | 55 | CommManager.prototype.unregister_comm = function (comm_id) { |
|
56 | 56 | // Remove a comm from the mapping |
|
57 | 57 | delete this.comms[comm_id]; |
|
58 | 58 | }; |
|
59 | 59 | |
|
60 | 60 | // comm message handlers |
|
61 | 61 | |
|
62 | 62 | CommManager.prototype.comm_open = function (msg) { |
|
63 | 63 | var content = msg.content; |
|
64 | 64 | var callback = this.targets[content.target]; |
|
65 | 65 | if (callback === undefined) { |
|
66 | 66 | console.log("No such target registered: ", content.target); |
|
67 | 67 | console.log("Available targets are: ", this.targets); |
|
68 | 68 | return; |
|
69 | 69 | } |
|
70 | 70 | var comm = new Comm(content.comm_id); |
|
71 | 71 | this.register_comm(comm); |
|
72 | 72 | callback(comm); |
|
73 | 73 | comm.handle_open(msg); |
|
74 | 74 | }; |
|
75 | 75 | |
|
76 | 76 | CommManager.prototype.comm_close = function (msg) { |
|
77 | 77 | var content = msg.content; |
|
78 | 78 | var comm = this.comms[content.comm_id]; |
|
79 | 79 | if (comm === undefined) { |
|
80 | 80 | return; |
|
81 | 81 | } |
|
82 | 82 | delete this.comms[content.comm_id]; |
|
83 | 83 | comm.handle_close(msg); |
|
84 | 84 | }; |
|
85 | 85 | |
|
86 | 86 | CommManager.prototype.comm_msg = function (msg) { |
|
87 | 87 | var content = msg.content; |
|
88 | 88 | var comm = this.comms[content.comm_id]; |
|
89 | 89 | if (comm === undefined) { |
|
90 | 90 | return; |
|
91 | 91 | } |
|
92 | 92 | comm.handle_msg(msg); |
|
93 | 93 | }; |
|
94 | 94 | |
|
95 | 95 | //----------------------------------------------------------------------- |
|
96 | 96 | // Comm base class |
|
97 | 97 | //----------------------------------------------------------------------- |
|
98 | 98 | |
|
99 | 99 | var Comm = function (comm_id, target) { |
|
100 | 100 | this.comm_id = comm_id; |
|
101 | 101 | this.target = target || 'comm'; |
|
102 | this._msg_callback = this._open_callback = this._close_callback = null; | |
|
102 | 103 | }; |
|
103 | 104 | |
|
104 | 105 | // methods for sending messages |
|
105 | 106 | Comm.prototype.open = function (data) { |
|
106 | 107 | var content = { |
|
107 | 108 | comm_id : this.comm_id, |
|
108 | 109 | target : this.target, |
|
109 | 110 | data : data || {}, |
|
110 | 111 | }; |
|
111 | 112 | this.kernel.send_shell_message("comm_open", content); |
|
112 | 113 | }; |
|
113 | 114 | |
|
114 | 115 | Comm.prototype.send = function (data) { |
|
115 | 116 | var content = { |
|
116 | 117 | comm_id : this.comm_id, |
|
117 | 118 | data : data || {}, |
|
118 | 119 | }; |
|
119 | 120 | return this.kernel.send_shell_message("comm_msg", content); |
|
120 | 121 | }; |
|
121 | 122 | |
|
122 | 123 | Comm.prototype.close = function (data) { |
|
123 | 124 | var content = { |
|
124 | 125 | comm_id : this.comm_id, |
|
125 | 126 | data : data || {}, |
|
126 | 127 | }; |
|
127 | 128 | return this.kernel.send_shell_message("comm_close", content); |
|
128 | 129 | }; |
|
129 | 130 | |
|
131 | // methods for registering callbacks for incoming messages | |
|
132 | Comm.prototype._register_callback = function (key, callback) { | |
|
133 | this['_' + key + '_callback'] = callback; | |
|
134 | }; | |
|
135 | ||
|
136 | Comm.prototype.on_open = function (callback) { | |
|
137 | this._register_callback('open', callback); | |
|
138 | }; | |
|
139 | ||
|
140 | Comm.prototype.on_msg = function (callback) { | |
|
141 | this._register_callback('msg', callback); | |
|
142 | }; | |
|
143 | ||
|
144 | Comm.prototype.on_close = function (callback) { | |
|
145 | this._register_callback('close', callback); | |
|
146 | }; | |
|
147 | ||
|
130 | 148 | // methods for handling incoming messages |
|
131 | 149 | |
|
150 | Comm.prototype._maybe_callback = function (key, msg) { | |
|
151 | var callback = this['_' + key + '_callback']; | |
|
152 | if (callback) callback(msg); | |
|
153 | }; | |
|
154 | ||
|
132 | 155 | Comm.prototype.handle_open = function (msg) { |
|
133 |
|
|
|
156 | this._maybe_callback('open', msg); | |
|
134 | 157 | }; |
|
135 | 158 | |
|
136 | 159 | Comm.prototype.handle_msg = function (msg) { |
|
137 | $([this]).trigger("comm_msg", msg); | |
|
160 | this._maybe_callback('msg', msg); | |
|
138 | 161 | }; |
|
139 | 162 | |
|
140 | 163 | Comm.prototype.handle_close = function (msg) { |
|
141 |
|
|
|
164 | this._maybe_callback('close', msg); | |
|
142 | 165 | }; |
|
143 | 166 | |
|
144 | 167 | IPython.CommManager = CommManager; |
|
145 | 168 | IPython.Comm = Comm; |
|
146 | 169 | |
|
147 | 170 | return IPython; |
|
148 | 171 | |
|
149 | 172 | }(IPython)); |
|
150 | 173 |
General Comments 0
You need to be logged in to leave comments.
Login now