node-utilities.cpp revision e7cd2ec3e1687a262ebe95e5ac7a47f8ab147ce2
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof/**
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof * Whiteboard session manager
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof * XML node manipulation / retrieval utilities
43a9ecef56abdf431763b9fb95469e70da237abbLiam P. White *
43a9ecef56abdf431763b9fb95469e70da237abbLiam P. White * Authors:
43a9ecef56abdf431763b9fb95469e70da237abbLiam P. White * David Yip <yipdw@rose-hulman.edu>
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof *
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof * Copyright (c) 2005 Authors
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof *
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof * Released under GNU GPL, read the file 'COPYING' for more information
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof */
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof#include "util/share.h"
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof#include "util/list.h"
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof#include "xml/node-observer.h"
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof#include "xml/attribute-record.h"
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof#include "xml/repr.h"
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof#include "jabber_whiteboard/defines.h"
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof#include "jabber_whiteboard/typedefs.h"
a6b5d41707fe985d397907d52766cbcdcca9735fJabiertxof#include "jabber_whiteboard/node-utilities.h"
deaf8922dbca36e15fe43a72b2b4320ae649a42fJabiertxof#include "jabber_whiteboard/node-tracker.h"
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof//#include "jabber_whiteboard/node-observer.h"
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxofnamespace Inkscape {
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxofnamespace Whiteboard {
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof/*
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2JabiertxofInkscape::XML::Node*
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2JabiertxofNodeUtilities::lookupReprByValue(Inkscape::XML::Node* root, gchar const* key, Glib::ustring const* value)
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof{
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof GQuark const quark = g_quark_from_string(key);
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof if (root == NULL) {
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof return NULL;
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof }
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof Inkscape::Util::List<Inkscape::XML::AttributeRecord const> attrlist = root->attributeList();
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof for( ; attrlist ; attrlist++) {
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof if ((attrlist->key == quark) && (strcmp(attrlist->value, value->data()) == 0)) {
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof return root;
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof }
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof }
26b55a439f4a219fec9c2b46a6b9d02640da6d76Jabiertxof Inkscape::XML::Node* result;
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof for ( Inkscape::XML::Node* child = root->firstChild() ; child != NULL ; child = child->next() ) {
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof result = NodeUtilities::lookupReprByValue(child, key, value);
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof if(result != NULL) {
26b55a439f4a219fec9c2b46a6b9d02640da6d76Jabiertxof return result;
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof }
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof }
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof
26b55a439f4a219fec9c2b46a6b9d02640da6d76Jabiertxof return NULL;
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof}
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof*/
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof
26b55a439f4a219fec9c2b46a6b9d02640da6d76JabiertxofGlib::ustring const
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2JabiertxofNodeUtilities::nodeTypeToString(XML::Node const& node)
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof{
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof switch(node.type()) {
26b55a439f4a219fec9c2b46a6b9d02640da6d76Jabiertxof case XML::DOCUMENT_NODE:
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof return NODETYPE_DOCUMENT_STR;
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof case XML::ELEMENT_NODE:
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof return NODETYPE_ELEMENT_STR;
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof case XML::TEXT_NODE:
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof return NODETYPE_TEXT_STR;
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof case XML::COMMENT_NODE:
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof default:
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof return NODETYPE_COMMENT_STR;
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof }
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof}
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxofXML::NodeType
2ce2003d5713154f99c32af18fb904a1af109031JabiertxofNodeUtilities::stringToNodeType(Glib::ustring const& type)
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof{
2ce2003d5713154f99c32af18fb904a1af109031Jabiertxof if (type == NODETYPE_DOCUMENT_STR) {
2ce2003d5713154f99c32af18fb904a1af109031Jabiertxof return XML::DOCUMENT_NODE;
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof } else if (type == NODETYPE_ELEMENT_STR) {
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof return XML::ELEMENT_NODE;
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof } else if (type == NODETYPE_TEXT_STR) {
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof return XML::TEXT_NODE;
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof } else {
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof return XML::COMMENT_NODE;
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof }
98f9f27a27115988e05366a69d7b38be9c12f69dJabiertxof}
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxofstd::string const
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxofNodeUtilities::findNodeID(XML::Node const& node, XMLNodeTracker* tracker, NodeToKeyMap const& newnodes)
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof{
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof// g_log(NULL, G_LOG_LEVEL_DEBUG, "Attempting to locate id for %p", &node);
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof NodeToKeyMap::const_iterator result = newnodes.find(&node);
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof if (result != newnodes.end()) {
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof// g_log(NULL, G_LOG_LEVEL_DEBUG, "Located id for %p: %s", &node, (*result).second.c_str());
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof return (*result).second;
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof }
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof if (tracker->isTracking(node)) {
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof// g_log(NULL, G_LOG_LEVEL_DEBUG, "Located id for %p (in tracker): %s", &node, tracker->get(node).c_str());
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof return tracker->get(node);
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof } else {
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof// g_log(NULL, G_LOG_LEVEL_DEBUG, "Failed to locate id");
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof return "";
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof }
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof}
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof}
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof}
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof/*
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof Local Variables:
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof mode:c++
2ea303d5a80b7efba4d23ab33e7d5ea0c9b546b2Jabiertxof c-file-style:"stroustrup"
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof indent-tabs-mode:nil
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof fill-column:99
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof End:
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof*/
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
b14e0c4cb620016f312432acc32db04b70f3fabcJabiertxof