Code

format string protection/clean up (CVE-2007-1463, CVE-2007-1464)
[inkscape.git] / src / jabber_whiteboard / inkboard-document.h
1 /**
2  * Inkscape::Whiteboard::InkboardDocument - Inkboard document implementation
3  *
4  * Authors:
5  * David Yip <yipdw@rose-hulman.edu>
6  *
7  * Copyright (c) 2005 Authors
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
12 #ifndef __INKSCAPE_WHITEBOARD_INKBOARDDOCUMENT_H__
13 #define __INKSCAPE_WHITEBOARD_INKBOARDDOCUMENT_H__
15 #include <glibmm.h>
17 #include "document.h"
18 #include "xml/document.h"
19 #include "xml/simple-node.h"
20 #include "xml/node-observer.h"
21 #include "jabber_whiteboard/defines.h"
22 #include "jabber_whiteboard/keynode.h"
23 #include "jabber_whiteboard/session-manager.h"
25 namespace Inkscape {
27 namespace Whiteboard {
29 class InkboardDocument : public XML::SimpleNode,
30                          public XML::Document,
31                          public XML::NodeObserver
32 {
33 public:
34         
35     explicit InkboardDocument(int code, State::SessionType sessionType, Glib::ustring const& to);
37     XML::NodeType type() const
38     {
39         return Inkscape::XML::DOCUMENT_NODE;
40     }
42     State::SessionState state;
43     KeyNodeTable *tracker;
45     void setRecipient(Glib::ustring const& val);
46     Glib::ustring getRecipient() const;
48     void setSessionId(Glib::ustring const& val);
49     Glib::ustring getSessionId() const;
51     void startSessionNegotiation();
52     void terminateSession();
54     void recieve(Message::Wrapper &wrapper, Pedro::Element* data);
55     bool send(const Glib::ustring &destJid, Message::Wrapper &mwrapper, 
56             Message::Message &message);
58     void sendDocument(Inkscape::XML::Node* root);
60     bool handleOutgoingState(Message::Wrapper &wrapper,Glib::ustring const& message);
61     bool handleIncomingState(Message::Wrapper &wrapper,Pedro::Element* data);
63     bool handleState(State::SessionState expectedState, 
64             State::SessionState newstate);
66     void handleChange(Message::Wrapper &wrapper, Pedro::Element* data);
68     NodeObserver *logger() { return this; }
70     // 
71     // XML::Session methods
72     // 
73     bool inTransaction() 
74     {
75         return _in_transaction;
76     }
78     void beginTransaction();
79     void rollback();
80     void commit();
82     XML::Event* commitUndoable();
84     XML::Node* createElement(char const* name);
85     XML::Node* createTextNode(char const* content);
86     XML::Node* createComment(char const* content);
88     //
89     // XML::NodeObserver methods
90     //
91     void notifyChildAdded(Inkscape::XML::Node &parent, Inkscape::XML::Node &child, Inkscape::XML::Node *prev);
93     void notifyChildRemoved(Inkscape::XML::Node &parent, Inkscape::XML::Node &child, Inkscape::XML::Node *prev);
95     void notifyChildOrderChanged(Inkscape::XML::Node &parent, Inkscape::XML::Node &child,
96                                  Inkscape::XML::Node *old_prev, Inkscape::XML::Node *new_prev);
98     void notifyContentChanged(Inkscape::XML::Node &node,
99                               Util::ptr_shared<char> old_content,
100                               Util::ptr_shared<char> new_content);
102     void notifyAttributeChanged(Inkscape::XML::Node &node, GQuark name,
103                                 Util::ptr_shared<char> old_value,
104                                 Util::ptr_shared<char> new_value);
106     /* Functions below are defined in inkboard-node.cpp */
107     Glib::ustring addNodeToTracker(Inkscape::XML::Node* node);
108     Message::Message composeNewMessage(Inkscape::XML::Node *node);
110     void changeConfigure(Glib::ustring target, unsigned int version,
111             Glib::ustring attribute, Glib::ustring value);
113     void changeNew(Glib::ustring target, Glib::ustring, 
114             signed int index, Pedro::Element* data);
116     void changeConfigureText(Glib::ustring target, unsigned int version,
117             Glib::ustring text);
119 protected:
120         /**
121          * Copy constructor.
122          * 
123          * \param orig Instance to copy.
124          */
125         InkboardDocument(InkboardDocument const& orig) :
126                 XML::Node(), XML::SimpleNode(orig),
127                 XML::Document(), XML::NodeObserver(),
128                 recipient(orig.recipient), _in_transaction(false)
129         {
130                 _initBindings();
131         }
133         XML::SimpleNode* _duplicate() const
134         {
135                 return new InkboardDocument(*this);
136         }
138 private:
139     void _initBindings();
141     SessionManager      *sm;
143     State::SessionType  sessionType;
145     Glib::ustring sessionId;
146     Glib::ustring recipient;
148     bool _in_transaction;
149 };
155 #endif
157 /*
158   Local Variables:
159   mode:c++
160   c-file-style:"stroustrup"
161   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
162   indent-tabs-mode:nil
163   fill-column:99
164   End:
165 */
166 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :