1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
|
/**
* Inkscape::Whiteboard::InkboardDocument - Inkboard document implementation
*
* Authors:
* David Yip <yipdw@rose-hulman.edu>
*
* Copyright (c) 2005 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glib.h>
#include <glibmm.h>
#include "jabber_whiteboard/inkboard-document.h"
#include "util/ucompose.hpp"
#include "jabber_whiteboard/message-utilities.h"
#include "jabber_whiteboard/defines.h"
#include "jabber_whiteboard/session-manager.h"
#include "jabber_whiteboard/node-tracker.h"
#include <glibmm.h>
#include <glib/gmessages.h>
#include <glib/gquark.h>
#include "jabber_whiteboard/inkboard-document.h"
#include "jabber_whiteboard/defines.h"
#include "xml/node.h"
#include "xml/event.h"
#include "xml/element-node.h"
#include "xml/text-node.h"
#include "xml/comment-node.h"
#include "xml/pi-node.h"
#include "util/share.h"
#include "util/ucompose.hpp"
namespace Inkscape {
namespace Whiteboard {
InkboardDocument::InkboardDocument(int code, State::SessionType sessionType,
Glib::ustring const& to)
: XML::SimpleNode(code), sessionType(sessionType), recipient(to),
_in_transaction(false)
{
_initBindings();
}
void
InkboardDocument::_initBindings()
{
this->sm = &SessionManager::instance();
this->state = State::INITIAL;
this->tracker = new KeyNodeTable();
_bindDocument(*this);
}
void
InkboardDocument::setRecipient(Glib::ustring const& val)
{
this->recipient = val;
}
Glib::ustring
InkboardDocument::getRecipient() const
{
return this->recipient;
}
void
InkboardDocument::setSessionId(Glib::ustring const& val)
{
this->sessionId = val;
}
Glib::ustring
InkboardDocument::getSessionId() const
{
return this->sessionId;
}
void
InkboardDocument::startSessionNegotiation()
{
if(this->sessionType == State::WHITEBOARD_PEER)
this->send(recipient, Message::PROTOCOL,Message::CONNECT_REQUEST);
else if(this->sessionType == State::WHITEBOARD_MUC)
{
// Check that the MUC room is whiteboard enabled, if not no need to send
// anything, just set the room to be whiteboard enabled
}
}
void
InkboardDocument::terminateSession()
{
}
void
InkboardDocument::recieve(Message::Wrapper &wrapper, Pedro::Element* data)
{
if(this->handleIncomingState(wrapper,data))
{
if(wrapper == Message::PROTOCOL)
{
Glib::ustring message = data->getFirstChild()->getFirstChild()->getFirstChild()->getName();
if(message == Message::CONNECT_REQUEST)
{
// An MUC member requesting document
}else if(message == Message::ACCEPT_INVITATION)
{
// TODO : Would be nice to create the desktop here
this->send(getRecipient(),Message::PROTOCOL, Message::CONNECTED);
this->send(getRecipient(),Message::PROTOCOL, Message::DOCUMENT_BEGIN);
// Send Document
this->sendDocument(this->root());
this->send(getRecipient(),Message::PROTOCOL, Message::DOCUMENT_END);
}else if(message == Message::DECLINE_INVITATION)
{
this->sm->terminateSession(this->getSessionId());
}
}else if(wrapper == Message::NEW || wrapper == Message::CONFIGURE
|| wrapper == Message::MOVE || wrapper == Message::REMOVE )
{
handleChange(wrapper,data->getFirstChild()->getFirstChild());
}
}else{
g_warning("Recieved Message in invalid state = %d", this->state);
data->print();
}
}
bool
InkboardDocument::send(const Glib::ustring &destJid, Message::Wrapper &wrapper, Message::Message &message)
{
if(this->handleOutgoingState(wrapper,message))
{
Glib::ustring mes;
if(wrapper == Message::PROTOCOL)
mes = String::ucompose(Vars::PROTOCOL_MESSAGE,wrapper,message);
else
mes = message;
char *finalmessage = const_cast<char* >(String::ucompose(
Vars::WHITEBOARD_MESSAGE, this->sessionType, this->sm->getClient().getJid(),
destJid, Vars::INKBOARD_XMLNS, this->getSessionId(), mes).c_str());
if (!this->sm->getClient().write("%s",finalmessage))
{ return false; }
else
{ return true; }
}else
{
g_warning("Sending Message in invalid state message=%s , state=%d",message.c_str(),this->state);
return false;
}
}
void
InkboardDocument::sendDocument(Inkscape::XML::Node* root)
{
for(Inkscape::XML::Node *child = root->firstChild();child!=NULL;child=child->next())
{
Glib::ustring name(child->name());
if(name != "svg:metadata" && name != "svg:defs" && name != "sodipodi:namedview")
{
Glib::ustring parentKey,tempParentKey,key;
this->addNodeToTracker(child);
Message::Message message = this->composeNewMessage(child);
this->send(this->getRecipient(),Message::NEW,message);
if(child->childCount() != 0)
{
sendDocument(child);
}
}
}
}
bool
InkboardDocument::handleOutgoingState(Message::Wrapper &wrapper, Glib::ustring const& message)
{
if(wrapper == Message::PROTOCOL)
{
if(message == Message::CONNECT_REQUEST)
return this->handleState(State::INITIAL,State::AWAITING_INVITATION_REPLY);
else if(message == Message::ACCEPT_INVITATION)
return this->handleState(State::CONNECTING,State::AWAITING_CONNECTED);
else if(message == Message::CONNECTED)
return this->handleState(State::INVITATION_RECIEVED,State::CONNECTED);
else if(message == Message::DOCUMENT_BEGIN)
return this->handleState(State::CONNECTED,State::SYNCHRONISING);
else if(message == Message::DOCUMENT_END) {
return this->handleState(State::SYNCHRONISING,State::IN_WHITEBOARD);
}
else
return false;
} else
if(this->state == State::SYNCHRONISING && wrapper == Message::NEW)
return true;
return this->state == State::IN_WHITEBOARD;
}
bool
InkboardDocument::handleIncomingState(Message::Wrapper &wrapper, Pedro::Element* data)
{
if(wrapper == Message::PROTOCOL)
{
Glib::ustring message = data->getFirstChild()->getFirstChild()->getFirstChild()->getName();
if(message == Message::CONNECT_REQUEST)
return this->handleState(State::INITIAL,State::CONNECTING);
if(message == Message::ACCEPT_INVITATION)
return this->handleState(State::AWAITING_INVITATION_REPLY,State::INVITATION_RECIEVED);
else if(message == Message::CONNECTED)
return this->handleState(State::AWAITING_CONNECTED,State::AWAITING_DOCUMENT_BEGIN);
else if(message == Message::DOCUMENT_BEGIN)
return this->handleState(State::AWAITING_DOCUMENT_BEGIN,State::SYNCHRONISING);
else if(message == Message::DOCUMENT_END)
return this->handleState(State::SYNCHRONISING,State::IN_WHITEBOARD);
else
return false;
} else
if(this->state == State::SYNCHRONISING && wrapper == Message::NEW)
return true;
return this->state == State::IN_WHITEBOARD;
}
bool
InkboardDocument::handleState(State::SessionState expectedState, State::SessionState newState)
{
if(this->state == expectedState)
{
this->state = newState;
return true;
}
return false;
}
void
InkboardDocument::handleChange(Message::Wrapper &wrapper, Pedro::Element* data)
{
if(wrapper == Message::NEW)
{
Glib::ustring parent = data->getTagAttribute("new","parent");
Glib::ustring id = data->getTagAttribute("new","id");
signed int index = atoi
(data->getTagAttribute("new","index").c_str());
Pedro::Element* element = data->getFirstChild();
if(parent.size() > 0 && id.size() > 0)
this->changeNew(parent,id,index,element);
}else if(wrapper == Message::CONFIGURE)
{
if(data->exists("text"))
{
Glib::ustring text = data->getFirstChild()->getValue();
Glib::ustring target = data->getTagAttribute("configure","target");
unsigned int version = atoi
(data->getTagAttribute("configure","version").c_str());
if(text.size() > 0 && target.size() > 0)
this->changeConfigureText(target,version,text);
}else
{
Glib::ustring target = data->getTagAttribute("configure","target");
Glib::ustring attribute = data->getTagAttribute("configure","attribute");
Glib::ustring value = data->getTagAttribute("configure","value");
unsigned int version = atoi
(data->getTagAttribute("configure","version").c_str());
if(target.size() > 0 && attribute.size() > 0 && value.size() > 0)
this->changeConfigure(target,version,attribute,value);
}
}else if(wrapper == Message::MOVE)
{
}else if(wrapper == Message::REMOVE)
{
}
}
void
InkboardDocument::beginTransaction()
{
g_assert(!_in_transaction);
_in_transaction = true;
}
void
InkboardDocument::rollback()
{
g_assert(_in_transaction);
_in_transaction = false;
}
void
InkboardDocument::commit()
{
g_assert(_in_transaction);
_in_transaction = false;
}
XML::Event*
InkboardDocument::commitUndoable()
{
g_assert(_in_transaction);
_in_transaction = false;
return NULL;
}
XML::Node*
InkboardDocument::createElement(char const* name)
{
return new XML::ElementNode(g_quark_from_string(name));
}
XML::Node*
InkboardDocument::createTextNode(char const* content)
{
return new XML::TextNode(Util::share_string(content));
}
XML::Node*
InkboardDocument::createComment(char const* content)
{
return new XML::CommentNode(Util::share_string(content));
}
XML::Node*
InkboardDocument::createPI(char const *target, char const* content)
{
return new XML::PINode(g_quark_from_string(target), Util::share_string(content));
}
void InkboardDocument::notifyChildAdded(XML::Node &/*parent*/,
XML::Node &child,
XML::Node */*prev*/)
{
if (_in_transaction && state == State::IN_WHITEBOARD) {
XML::Node *node = (XML::Node *)&child;
if(tracker->get(node) == "")
{
addNodeToTracker(node);
Message::Message message = composeNewMessage(node);
send(getRecipient(),Message::NEW,message);
}
}
}
void InkboardDocument::notifyChildRemoved(XML::Node &/*parent*/,
XML::Node &child,
XML::Node */*prev*/)
{
if (_in_transaction && state == State::IN_WHITEBOARD)
{
XML::Node *element = (XML::Node *)&child;
Message::Message message = String::ucompose(Vars::REMOVE_MESSAGE,
tracker->get(element));
send(getRecipient(),Message::REMOVE,message);
}
}
void InkboardDocument::notifyChildOrderChanged(XML::Node &parent,
XML::Node &child,
XML::Node */*old_prev*/,
XML::Node */*new_prev*/)
{
if (_in_transaction && state == State::IN_WHITEBOARD)
{
XML::Node *element = (XML::Node *)&child;
XML::Node *parentElement = (XML::Node *)&parent;
unsigned int index = parentElement->_childPosition(*element);
Message::Message message = String::ucompose(Vars::MOVE_MESSAGE,
tracker->get(element),index);
send(getRecipient(),Message::MOVE,message);
}
}
void InkboardDocument::notifyContentChanged(XML::Node &node,
Util::ptr_shared<char> /*old_content*/,
Util::ptr_shared<char> new_content)
{
if (_in_transaction && state == State::IN_WHITEBOARD)
{
XML::Node *element = (XML::Node *)&node;
Glib::ustring value(new_content.pointer());
Glib::ustring change = tracker->getLastHistory(element,"text");
if(change.size() > 0 && change == value)
return;
if(new_content.pointer())
{
unsigned int version = tracker->incrementVersion(element);
Message::Message message = String::ucompose(Vars::CONFIGURE_TEXT_MESSAGE,
tracker->get(element),version,new_content.pointer());
send(getRecipient(),Message::CONFIGURE,message);
}
}
}
void InkboardDocument::notifyAttributeChanged(XML::Node &node,
GQuark name,
Util::ptr_shared<char> /*old_value*/,
Util::ptr_shared<char> new_value)
{
if (_in_transaction && state == State::IN_WHITEBOARD)
{
XML::Node *element = (XML::Node *)&node;
Glib::ustring value(new_value.pointer());
Glib::ustring attribute(g_quark_to_string(name));
Glib::ustring change = tracker->getLastHistory(element,attribute);
if(change.size() > 0 && change == value)
return;
if(attribute.size() > 0 && value.size() > 0)
{
unsigned int version = tracker->incrementVersion(element);
Message::Message message = String::ucompose(Vars::CONFIGURE_MESSAGE,
tracker->get(element),version,attribute.c_str(),value.c_str());
send(getRecipient(),Message::CONFIGURE,message);
}
}
}
}
}
|