summaryrefslogtreecommitdiffstats
path: root/src/io/file.cpp
blob: 5877e2727b89f1f230d4359cf7980ad46be5db19 (plain)
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
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * File operations (independent of GUI)
 *
 * Copyright (C) 2018 Tavmjong Bah
 *
 * The contents of this file may be used under the GNU General Public License Version 2 or later.
 *
 */

#include <iostream>
#include <gtkmm.h>

#include "file.h"

#include "document.h"

#include "extension/system.h"     // Extension::open()
#include "extension/extension.h"
#include "extension/db.h"
#include "extension/output.h"
#include "extension/input.h"

#include "object/sp-root.h"

// SPDocument*
// ink_file_new(const std::string &Template)
// {
//   SPDocument *doc = SPDocument::createNewDoc( Template, true, true );
//   return doc;
// }


SPDocument*
ink_file_open(const Glib::RefPtr<Gio::File>& file, bool &cancelled)
{
  cancelled = false;

  SPDocument *doc = nullptr;

  std::string path = file->get_path();

  try {
    doc = Inkscape::Extension::open(nullptr, path.c_str());
  } catch (Inkscape::Extension::Input::no_extension_found &e) {
    doc = nullptr;
  } catch (Inkscape::Extension::Input::open_failed &e) {
    doc = nullptr;
  } catch (Inkscape::Extension::Input::open_cancelled &e) {
    cancelled = true;
    doc = nullptr;
  }

  // Try to open explicitly as SVG.
  if (doc == nullptr && !cancelled) {
    try {
      doc = Inkscape::Extension::open(Inkscape::Extension::db.get(SP_MODULE_KEY_INPUT_SVG), path.c_str());
    } catch (Inkscape::Extension::Input::no_extension_found &e) {
      doc = nullptr;
    } catch (Inkscape::Extension::Input::open_failed &e) {
      doc = nullptr;
    } catch (Inkscape::Extension::Input::open_cancelled &e) {
      cancelled = true;
      doc = nullptr;
    }
  }

  if (doc == nullptr) {
    std::cerr << "ink_file_open: '" << path << "' cannot be opened!" << std::endl;
  } else {

    // This is the only place original values should be set.
    SPRoot *root = doc->getRoot();
    root->original.inkscape = root->version.inkscape;
    root->original.svg      = root->version.svg;
  }

  return doc;
}