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
|
/* Gobby - GTK-based collaborative text editor
* Copyright (C) 2008-2014 Armin Burgmeier <armin@arbur.net>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "core/documentinfostorage.hpp"
#include "util/file.hpp"
#include "features.hpp"
#include <libxml++/nodes/textnode.h>
#include <libxml++/parsers/domparser.h>
#include <glibmm/miscutils.h>
#include <glibmm/exception.h>
namespace
{
Gobby::DocumentInfoStorage::EolStyle
eol_style_from_text(const std::string& text)
{
if(text == "cr")
return Gobby::DocumentInfoStorage::EOL_CR;
if(text == "lf")
return Gobby::DocumentInfoStorage::EOL_LF;
if(text == "crlf")
return Gobby::DocumentInfoStorage::EOL_CRLF;
// Fallback:
return Gobby::DocumentInfoStorage::EOL_LF;
}
std::string
eol_style_to_text(Gobby::DocumentInfoStorage::EolStyle style)
{
switch(style)
{
case Gobby::DocumentInfoStorage::EOL_CR: return "cr";
case Gobby::DocumentInfoStorage::EOL_LF: return "lf";
case Gobby::DocumentInfoStorage::EOL_CRLF: return "crlf";
default: return "lf";
}
}
std::string load_document(xmlpp::Element* node,
Gobby::DocumentInfoStorage::Info& info)
{
std::string root;
xmlpp::Node::NodeList list = node->get_children();
for(xmlpp::Node::NodeList::iterator iter = list.begin();
iter != list.end();
++ iter)
{
xmlpp::Element* child =
dynamic_cast<xmlpp::Element*>(*iter);
if(child == NULL) continue;
xmlpp::TextNode* text = child->get_child_text();
if(text == NULL) continue;
if(child->get_name() == "root")
root = text->get_content();
else if(child->get_name() == "uri")
info.uri = text->get_content();
else if(child->get_name() == "eol-style")
info.eol_style = eol_style_from_text(
text->get_content());
else if(child->get_name() == "encoding")
info.encoding = text->get_content();
}
return root;
}
// Location to store the documents file:
std::string filename()
{
return Gobby::config_filename("documents.xml");
}
}
class Gobby::DocumentInfoStorage::BrowserConn
{
public:
BrowserConn(DocumentInfoStorage& storage, InfBrowser* browser):
m_browser(browser)
{
m_begin_explore_handler =
g_signal_connect(G_OBJECT(browser), "begin-request::explore-node",
G_CALLBACK(on_begin_request_explore_node_static),
&storage);
m_node_removed_handler =
g_signal_connect(G_OBJECT(browser), "node-removed",
G_CALLBACK(on_node_removed_static),
&storage);
}
~BrowserConn()
{
g_signal_handler_disconnect(m_browser,
m_begin_explore_handler);
g_signal_handler_disconnect(m_browser,
m_node_removed_handler);
}
private:
InfBrowser* m_browser;
gulong m_begin_explore_handler;
gulong m_node_removed_handler;
};
Gobby::DocumentInfoStorage::DocumentInfoStorage(InfGtkBrowserModel* model):
m_model(model)
{
xmlpp::DomParser parser;
try
{
parser.parse_file(filename());
xmlpp::Document* document = parser.get_document();
if(document)
{
xmlpp::Element* root = document->get_root_node();
if(root)
{
init(root);
}
}
}
catch(xmlpp::exception& e)
{
// Could not read file, ignore
}
g_object_ref(m_model);
m_set_browser_handler = g_signal_connect(
G_OBJECT(m_model), "set-browser",
G_CALLBACK(&on_set_browser_static), this);
}
Gobby::DocumentInfoStorage::~DocumentInfoStorage()
{
try
{
create_directory_with_parents(
Glib::path_get_dirname(filename()), 0700);
xmlpp::Document document;
xmlpp::Element* root = document.create_root_node("documents");
for(InfoMap::iterator iter = m_infos.begin();
iter != m_infos.end(); ++ iter)
{
xmlpp::Element* child = root->add_child("document");
xmlpp::Element* root_child = child->add_child("root");
root_child->set_child_text(iter->first);
xmlpp::Element* uri_child = child->add_child("uri");
uri_child->set_child_text(iter->second.uri);
xmlpp::Element* eol_style_child =
child->add_child("eol-style");
eol_style_child->set_child_text(
eol_style_to_text(iter->second.eol_style));
xmlpp::Element* encoding_child =
child->add_child("encoding");
encoding_child->set_child_text(iter->second.encoding);
}
document.write_to_file_formatted(filename());
}
catch(Glib::Exception& e)
{
g_warning("Could not write documents file: %s",
e.what().c_str());
}
catch(std::exception& e)
{
g_warning("Could not write documents file: %s",
e.what());
}
g_signal_handler_disconnect(m_model, m_set_browser_handler);
g_object_unref(m_model);
for(BrowserMap::iterator iter = m_browsers.begin();
iter != m_browsers.end(); ++ iter)
{
delete iter->second;
}
}
void Gobby::DocumentInfoStorage::init(xmlpp::Element* node)
{
xmlpp::Node::NodeList list = node->get_children();
for(xmlpp::Node::NodeList::iterator iter = list.begin();
iter != list.end();
++ iter)
{
xmlpp::Element* child = dynamic_cast<xmlpp::Element*>(*iter);
if(child == NULL) continue;
if(child->get_name() == "document")
{
Info info;
std::string root = load_document(child, info);
m_infos[root] = info;
}
}
}
std::string
Gobby::DocumentInfoStorage::get_key(InfBrowser* browser,
const InfBrowserIter* iter) const
{
std::string prefix;
if(INFC_IS_BROWSER(browser))
{
InfXmlConnection* connection =
infc_browser_get_connection(INFC_BROWSER(browser));
g_assert(connection != NULL);
gchar* remote_id;
g_object_get(
G_OBJECT(connection), "remote-id", &remote_id, NULL);
prefix = remote_id;
g_free(remote_id);
}
else
{
prefix = "selfhosted";
}
gchar* path = inf_browser_get_path(browser, iter);
std::string result = prefix + "?" + path;
g_free(path);
return result;
}
const Gobby::DocumentInfoStorage::Info*
Gobby::DocumentInfoStorage::get_info(InfBrowser* browser,
const InfBrowserIter* iter) const
{
return get_info(get_key(browser, iter));
}
const Gobby::DocumentInfoStorage::Info*
Gobby::DocumentInfoStorage::get_info(const std::string& key) const
{
InfoMap::const_iterator map_iter = m_infos.find(key);
if(map_iter != m_infos.end()) return &map_iter->second;
return NULL;
}
void Gobby::DocumentInfoStorage::set_info(InfBrowser* browser,
const InfBrowserIter* iter,
const Info& info)
{
set_info(get_key(browser, iter), info);
}
void Gobby::DocumentInfoStorage::set_info(const std::string& key,
const Info& info)
{
m_infos[key] = info;
}
void Gobby::DocumentInfoStorage::on_set_browser(GtkTreeIter* iter,
InfBrowser* old_browser,
InfBrowser* new_browser)
{
if(old_browser != NULL)
{
BrowserMap::iterator iter =
m_browsers.find(old_browser);
g_assert(iter != m_browsers.end());
delete iter->second;
m_browsers.erase(iter);
}
if(new_browser != NULL)
{
g_assert(m_browsers.find(new_browser) == m_browsers.end());
m_browsers[new_browser] = new BrowserConn(*this, new_browser);
// TODO: Remove all infos that refer to no longer existing
// documents in all explored directories in browser. Also
// add all existing explore requests, to check
// subdirectories when the explore finishes (see
// on_begin_request_explore_node).
}
}
void Gobby::DocumentInfoStorage::
on_begin_request_explore_node(InfBrowser* browser,
InfBrowserIter* iter,
InfRequest* request)
{
// TODO: When request has finished, remove all infos that refer to
// no longer existing documents in the explored directory.
}
void Gobby::DocumentInfoStorage::on_node_removed(InfBrowser* browser,
InfBrowserIter* iter,
InfRequest* request)
{
// Remove info when the corresponding document is removed.
std::string key = get_key(browser, iter);
InfoMap::iterator map_iter = m_infos.find(key);
if(map_iter != m_infos.end())
m_infos.erase(map_iter);
}
|