summaryrefslogtreecommitdiffstats
path: root/src/xml/rebase-hrefs.cpp
diff options
context:
space:
mode:
authorPeter Moulder <peter.moulder@monash.edu>2009-04-07 05:31:32 +0000
committerpjrm <pjrm@users.sourceforge.net>2009-04-07 05:31:32 +0000
commitc2d8810625892a8bedcaa192df9b4165e46609ee (patch)
tree86bf3792eb9043b59435c17ae9415138d2e81a21 /src/xml/rebase-hrefs.cpp
parentfunctional noop: Clarify g_strcanon behaviour by not redundantly reassigning ... (diff)
downloadinkscape-c2d8810625892a8bedcaa192df9b4165e46609ee.tar.gz
inkscape-c2d8810625892a8bedcaa192df9b4165e46609ee.zip
Move Inkscape::IO::fixupHrefs to Inkscape::XML::rebase_hrefs in new file xml/rebase-hrefs.*. Give it the old and new base directory, so that it can change hrefs without relying on sodipodi:absref.
Also create a new function sp_repr_save_rebased_file that changes all xlink:href attributes as it writes them, so that we don't need to modify the owning document. (Especially useful for "Save a copy" or exporting.) extension/system.cpp: (Inkscape::Extension::save): Don't call sp_document_set_uri even temporarily other than at the same time as calling rebase_hrefs. (Otherwise, existing relative hrefs will point nowhere.) When exporting plain SVG, change the relative hrefs according to the destination filename. (bzr r7643)
Diffstat (limited to 'src/xml/rebase-hrefs.cpp')
-rw-r--r--src/xml/rebase-hrefs.cpp281
1 files changed, 281 insertions, 0 deletions
diff --git a/src/xml/rebase-hrefs.cpp b/src/xml/rebase-hrefs.cpp
new file mode 100644
index 000000000..cfe6bef7c
--- /dev/null
+++ b/src/xml/rebase-hrefs.cpp
@@ -0,0 +1,281 @@
+#include "xml/rebase-hrefs.h"
+#include "dir-util.h"
+#include "../document.h" /* Unfortunately there's a separate xml/document.h. */
+#include "io/sys.h"
+#include "sp-object.h"
+#include "streq.h"
+#include "util/share.h"
+#include "xml/attribute-record.h"
+#include "xml/node.h"
+#include <glib/gmem.h>
+#include <glib/gurifuncs.h>
+#include <glib/gutils.h>
+using Inkscape::XML::AttributeRecord;
+
+
+/**
+ * \pre href.
+ */
+static bool
+href_needs_rebasing(char const *const href)
+{
+ g_return_val_if_fail(href, false);
+
+ if (!*href) {
+ return false;
+ /* False (no change) is the right behaviour even when the base URI differs from the
+ * document URI: RFC 3986 defines empty string relative URL as referring to the containing
+ * document, rather than referring to the base URI. */
+ }
+
+ /* Don't change data or http hrefs. */
+ {
+ char *const scheme = g_uri_parse_scheme(href);
+ if (scheme) {
+ /* Assume it shouldn't be changed. This is probably wrong if the scheme is `file'
+ * (or if the scheme of the new base is non-file, though I believe that never
+ * happens at the time of writing), but that's rare, and we won't try too hard to
+ * handle this now: wait until after the freeze, then add liburiparser (or similar)
+ * as a dependency and do it properly. For now we'll just try to be simple (while
+ * at least still correctly handling data hrefs). */
+ free(scheme);
+ return false;
+ }
+ }
+
+ /* If absolute then keep it as is.
+ *
+ * Even in the following borderline cases:
+ *
+ * - We keep it absolute even if it is in new_base (directly or indirectly).
+ *
+ * - We assume that if xlink:href is absolute then we honour it in preference to
+ * sodipodi:absref even if sodipodi:absref points to an existing file while xlink:href
+ * doesn't. This is because we aren't aware of any bugs in xlink:href handling when
+ * it's absolute, so we assume that it's the best value to use even in this case.)
+ */
+ if (g_path_is_absolute(href)) {
+ /* No strong preference on what we do for sodipodi:absref. Once we're
+ * confident of our handling of xlink:href and xlink:base, we should clear it.
+ * Though for the moment we do the simple thing: neither clear nor set it. */
+ return false;
+ }
+
+ return true;
+}
+
+static gchar *
+calc_abs_href(gchar const *const abs_base_dir, gchar const *const href,
+ gchar const *const sp_absref)
+{
+ gchar *ret = g_build_filename(abs_base_dir, href, NULL);
+
+ if ( sp_absref
+ && !Inkscape::IO::file_test(ret, G_FILE_TEST_EXISTS)
+ && Inkscape::IO::file_test(sp_absref, G_FILE_TEST_EXISTS) )
+ {
+ /* sodipodi:absref points to an existing file while xlink:href doesn't.
+ * This could mean that xlink:href is wrong, or it could mean that the user
+ * intends to supply the missing file later.
+ *
+ * Given that we aren't sure what the right behaviour is, and given that a
+ * wrong xlink:href value may mean a bug (as has occurred in the past), we
+ * write a message to stderr. */
+ g_warning("xlink:href points to non-existent file, so using sodipodi:absref instead");
+
+ /* Currently, we choose to use sodipodi:absref in this situation (because we
+ * aren't yet confident in xlink:href interpretation); though note that
+ * honouring a foreign attribute in preference to standard SVG xlink:href and
+ * xlink:base means that we're not a conformant SVG user agent, so eventually
+ * we hope to have enough confidence in our xlink:href and xlink:base handling
+ * to be able to disregard sodipodi:absref.
+ *
+ * effic: Once we no longer consult sodipodi:absref, we can do
+ * `if (base unchanged) { return; }' at the start of rebase_hrefs.
+ */
+ g_free(ret);
+ ret = g_strdup(sp_absref);
+ }
+
+ return ret;
+}
+
+/**
+ * Change relative xlink:href attributes to be relative to \a new_abs_base instead of old_abs_base.
+ *
+ * Note that old_abs_base and new_abs_base must each be non-NULL, absolute directory paths.
+ */
+Inkscape::Util::List<AttributeRecord const>
+Inkscape::XML::rebase_href_attrs(gchar const *const old_abs_base,
+ gchar const *const new_abs_base,
+ Inkscape::Util::List<AttributeRecord const> attributes)
+{
+ using Inkscape::Util::List;
+ using Inkscape::Util::cons;
+ using Inkscape::Util::ptr_shared;
+ using Inkscape::Util::share_string;
+
+ if (old_abs_base == new_abs_base) {
+ return attributes;
+ }
+
+ GQuark const href_key = g_quark_from_static_string("xlink:href");
+ GQuark const absref_key = g_quark_from_static_string("sodipodi:absref");
+
+ /* First search attributes for xlink:href and sodipodi:absref, putting the rest in ret.
+ *
+ * However, if we find that xlink:href doesn't need rebasing, then return immediately
+ * with no change to attributes. */
+ ptr_shared<char> old_href;
+ ptr_shared<char> sp_absref;
+ List<AttributeRecord const> ret;
+ {
+ for (List<AttributeRecord const> ai(attributes); ai; ++ai) {
+ if (ai->key == href_key) {
+ old_href = ai->value;
+ if (!href_needs_rebasing(old_href)) {
+ return attributes;
+ }
+ } else if (ai->key == absref_key) {
+ sp_absref = ai->value;
+ } else {
+ ret = cons(AttributeRecord(ai->key, ai->value), ret);
+ }
+ }
+ }
+
+ if (!old_href) {
+ return attributes;
+ /* We could instead return ret in this case, i.e. ensure that sodipodi:absref is cleared if
+ * no xlink:href attribute. However, retaining it might be more cautious.
+ *
+ * (For the usual case of not present, attributes and ret will be the same except
+ * reversed.) */
+ }
+
+ gchar *const abs_href(calc_abs_href(old_abs_base, old_href, sp_absref));
+ gchar const *const new_href = sp_relative_path_from_path(abs_href, new_abs_base);
+ ret = cons(AttributeRecord(href_key, share_string(new_href)), ret);
+ if (sp_absref) {
+ /* We assume that if there wasn't previously a sodipodi:absref attribute
+ * then we shouldn't create one. */
+ ret = cons(AttributeRecord(absref_key, ( streq(abs_href, sp_absref)
+ ? sp_absref
+ : share_string(abs_href) )),
+ ret);
+ }
+ g_free(abs_href);
+ return ret;
+}
+
+gchar *
+Inkscape::XML::calc_abs_doc_base(gchar const *const doc_base)
+{
+ /* Note that we don't currently try to handle the case of doc_base containing
+ * `..' or `.' path components. This non-handling means that sometimes
+ * sp_relative_path_from_path will needlessly give an absolute path.
+ *
+ * It's probably not worth trying to address this until we're using proper
+ * relative URL/IRI href processing (with liburiparser).
+ *
+ * (Note that one possibile difficulty with `..' is symlinks.) */
+
+ if (!doc_base) {
+ return g_get_current_dir();
+ } else if (g_path_is_absolute(doc_base)) {
+ return g_strdup(doc_base);
+ } else {
+ gchar *const cwd = g_get_current_dir();
+ gchar *const ret = g_build_filename(cwd, doc_base, NULL);
+ g_free(cwd);
+ return ret;
+ }
+}
+
+/**
+ * Change relative hrefs in doc to be relative to \a new_base instead of doc.base.
+ *
+ * (NULL doc base or new_base is interpreted as current working directory.)
+ *
+ * \param spns True iff doc should contain sodipodi:absref attributes.
+ */
+void Inkscape::XML::rebase_hrefs(SPDocument *const doc, gchar const *const new_base, bool const spns)
+{
+ gchar *const old_abs_base = calc_abs_doc_base(doc->base);
+ gchar *const new_abs_base = calc_abs_doc_base(new_base);
+
+ /* TODO: Should handle not just image but also:
+ *
+ * a, altGlyph, animElementAttrs, animate, animateColor, animateMotion, animateTransform,
+ * animation, audio, color-profile, cursor, definition-src, discard, feImage, filter,
+ * font-face-uri, foreignObject, glyphRef, handler, linearGradient, mpath, pattern,
+ * prefetch, radialGradient, script, set, textPath, tref, use, video
+ *
+ * (taken from the union of the xlink:href elements listed at
+ * http://www.w3.org/TR/SVG11/attindex.html and
+ * http://www.w3.org/TR/SVGMobile12/attributeTable.html).
+ *
+ * Also possibly some other attributes of type <URI> or <IRI> or list-thereof, or types like
+ * <paint> that can include an IRI/URI, and stylesheets and style attributes. (xlink:base is a
+ * special case. xlink:role and xlink:arcrole can be assumed to be already absolute, based on
+ * http://www.w3.org/TR/SVG11/struct.html#xlinkRefAttrs .)
+ *
+ * Note that it may not useful to set sodipodi:absref for anything other than image.
+ *
+ * Note also that Inkscape only supports fragment hrefs (href="#pattern257") for many of these
+ * cases. */
+ GSList const *images = sp_document_get_resource_list(doc, "image");
+ for (GSList const *l = images; l != NULL; l = l->next) {
+ Inkscape::XML::Node *ir = SP_OBJECT_REPR(l->data);
+
+ gchar const *const href = ir->attribute("xlink:href");
+ /* TODO: Most of this function currently treats href as if it were a simple filename
+ * (e.g. passing it to g_path_is_absolute, g_build_filename or IO::file_test, or avoiding
+ * changing non-file hrefs), which breaks if href starts with a scheme or if href contains
+ * any escaping. */
+
+ if (!href || !href_needs_rebasing(href)) {
+ continue;
+ }
+
+ gchar *const abs_href(calc_abs_href(old_abs_base, href, ir->attribute("sodipodi:absref")));
+
+ /* todo: One difficult case once we support writing to non-file locations is where
+ * existing hrefs in the document point to local files. In this case, we should
+ * probably copy those referenced files to the new location at the same time. It's
+ * less clear what to do when copying from one non-file location to another. We may
+ * need to ask the user in some way (even if it's as a checkbox), but we'd like to
+ * bother the user as little as possible yet also want to warn the user about the case
+ * of file hrefs. */
+
+ gchar const *const new_href = sp_relative_path_from_path(abs_href, new_abs_base);
+ ir->setAttribute("xlink:href", new_href);
+ ir->setAttribute("sodipodi:absref", ( spns
+ ? abs_href
+ : NULL ));
+ /* impl: I assume that if !spns then any existing sodipodi:absref is about to get
+ * cleared (or is already cleared) anyway, in which case it doesn't matter whether we
+ * clear or leave any existing sodipodi:absref value. If that assumption turns out to
+ * be wrong, then leaving it means risking leaving the wrong value (if xlink:href
+ * referred to a different file than sodipodi:absref) while clearing it means risking
+ * losing information. */
+
+ g_free(abs_href);
+ /* (No need to free new_href, it's guaranteed to point into used_abs_href.) */
+ }
+
+ g_free(new_abs_base);
+ g_free(old_abs_base);
+}
+
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vi: set autoindent shiftwidth=4 tabstop=8 filetype=cpp expandtab softtabstop=4 encoding=utf-8 textwidth=99 :