]> git.lyx.org Git - lyx.git/blob - src/importer.C
* Painter.h:
[lyx.git] / src / importer.C
1 /**
2  * \file importer.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author unknown
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "importer.h"
16 #include "converter.h"
17 #include "format.h"
18 #include "frontends/LyXView.h"
19 #include "funcrequest.h"
20 #include "lyx_cb.h"
21
22 #include "support/filetools.h"
23
24 #include "frontends/Alert.h"
25
26 #include "gettext.h"
27 #include "BufferView.h"
28 #include "buffer_funcs.h"
29
30
31 namespace lyx {
32
33 using support::bformat;
34 using support::changeExtension;
35 using support::makeDisplayPath;
36
37 using std::find;
38 using std::string;
39 using std::vector;
40
41
42 bool Importer::Import(LyXView * lv, string const & filename,
43                       string const & format, ErrorList & errorList)
44 {
45         docstring const displaypath = makeDisplayPath(filename);
46         lv->message(bformat(_("Importing %1$s..."), displaypath));
47
48         string const lyxfile = changeExtension(filename, ".lyx");
49
50         string loader_format;
51         vector<string> loaders = Loaders();
52         if (find(loaders.begin(), loaders.end(), format) == loaders.end()) {
53                 for (vector<string>::const_iterator it = loaders.begin();
54                      it != loaders.end(); ++it) {
55                         if (converters.isReachable(format, *it)) {
56                                 if (!converters.convert(0, filename, filename,
57                                                         format, *it, errorList))
58                                         return false;
59                                 loader_format = *it;
60                                 break;
61                         }
62                 }
63                 if (loader_format.empty()) {
64                         frontend::Alert::error(_("Couldn't import file"),
65                                      bformat(_("No information for importing the format %1$s."),
66                                          formats.prettyName(format)));
67                         return false;
68                 }
69         } else {
70                 loader_format = format;
71         }
72
73
74         if (loader_format == "lyx") {
75                 lv->loadLyXFile(lyxfile);
76         } else {
77                 Buffer * const b = newFile(lyxfile, string(), true);
78                 if (b)
79                         lv->setBuffer(b);
80                 else
81                         return false;
82                 bool as_paragraphs = loader_format == "textparagraph";
83                 string filename2 = (loader_format == format) ? filename
84                         : changeExtension(filename,
85                                           formats.extension(loader_format));
86                 insertAsciiFile(lv->view(), filename2, as_paragraphs);
87                 lv->dispatch(FuncRequest(LFUN_MARK_OFF));
88         }
89
90         // we are done
91         lv->message(_("imported."));
92         return true;
93 }
94
95
96 vector<Format const *> const Importer::GetImportableFormats()
97 {
98         vector<string> loaders = Loaders();
99         vector<Format const *> result =
100                 converters.getReachableTo(loaders[0], true);
101         for (vector<string>::const_iterator it = loaders.begin() + 1;
102              it != loaders.end(); ++it) {
103                 vector<Format const *> r =
104                         converters.getReachableTo(*it, false);
105                 result.insert(result.end(), r.begin(), r.end());
106         }
107         return result;
108 }
109
110
111 vector<string> const Importer::Loaders()
112 {
113         vector<string> v;
114         v.push_back("lyx");
115         v.push_back("text");
116         v.push_back("textparagraph");
117         return v;
118 }
119
120
121 } // namespace lyx