1 | /*************************************************************************** |
---|
2 | tmdmcreator.cpp |
---|
3 | ------------------- |
---|
4 | copyright : (C) 2013 CREALP Lucien Schreiber |
---|
5 | email : lucien.schreiber at crealp dot vs dot ch |
---|
6 | ***************************************************************************/ |
---|
7 | |
---|
8 | /*************************************************************************** |
---|
9 | * * |
---|
10 | * This program is free software; you can redistribute it and/or modify * |
---|
11 | * it under the terms of the GNU General Public License as published by * |
---|
12 | * the Free Software Foundation; either version 2 of the License, or * |
---|
13 | * (at your option) any later version. * |
---|
14 | * * |
---|
15 | ***************************************************************************/ |
---|
16 | |
---|
17 | #include "tmdmcreator.h" |
---|
18 | #include "tmdmcopier.h" |
---|
19 | #include "tmdmprocessor.h" |
---|
20 | |
---|
21 | TmDmCreator::TmDmCreator() { |
---|
22 | } |
---|
23 | |
---|
24 | |
---|
25 | |
---|
26 | TmDmCreator::~TmDmCreator() { |
---|
27 | } |
---|
28 | |
---|
29 | |
---|
30 | |
---|
31 | void TmDmCreator::SetBaseSQL(wxFileName value) { |
---|
32 | m_FileNameBaseSQL = value; |
---|
33 | } |
---|
34 | |
---|
35 | |
---|
36 | |
---|
37 | void TmDmCreator::SetUserSQL(wxFileName value) { |
---|
38 | m_FileNameUserSQL = value; |
---|
39 | } |
---|
40 | |
---|
41 | |
---|
42 | |
---|
43 | void TmDmCreator::SetUserContent(wxFileName value) { |
---|
44 | m_FileNameUserContent = value; |
---|
45 | } |
---|
46 | |
---|
47 | |
---|
48 | |
---|
49 | void TmDmCreator::SetOutSQL(wxFileName value) { |
---|
50 | m_FileNameOutSQL = value; |
---|
51 | } |
---|
52 | |
---|
53 | |
---|
54 | bool TmDmCreator::_CheckExistsAndExt(const wxFileName & filename, const wxString & extension, wxArrayString * errormsg){ |
---|
55 | wxASSERT(errormsg); |
---|
56 | if (filename.Exists() == false) { |
---|
57 | errormsg->Add(wxString::Format(_("File: %s didn't exists!"), filename.GetFullPath())); |
---|
58 | return false; |
---|
59 | } |
---|
60 | if (filename.GetExt().Lower() != extension) { |
---|
61 | errormsg->Add(wxString::Format(_("Wrong extension for: %s (expected: %s)"), filename.GetFullPath(), extension)); |
---|
62 | return false; |
---|
63 | } |
---|
64 | return true; |
---|
65 | } |
---|
66 | |
---|
67 | |
---|
68 | |
---|
69 | bool TmDmCreator::CheckFiles(wxArrayString & errormsg) { |
---|
70 | errormsg.Clear(); |
---|
71 | if (_CheckExistsAndExt(m_FileNameBaseSQL, _T("sql"), &errormsg) == false) { |
---|
72 | return false; |
---|
73 | } |
---|
74 | if (_CheckExistsAndExt(m_FileNameUserSQL, _T("sql"), &errormsg) == false) { |
---|
75 | return false; |
---|
76 | } |
---|
77 | if (_CheckExistsAndExt(m_FileNameUserContent, _T("txt"), &errormsg) == false) { |
---|
78 | return false; |
---|
79 | } |
---|
80 | if (m_FileNameOutSQL.Exists()) { |
---|
81 | errormsg.Add(wxString::Format(_("output file: %s allready exists!"), m_FileNameOutSQL.GetFullPath())); |
---|
82 | return false; |
---|
83 | } |
---|
84 | if (m_FileNameOutSQL.IsDirWritable() == false){ |
---|
85 | errormsg.Add(wxString::Format(_T("Writing not permitted into %s"), m_FileNameOutSQL.GetPath())); |
---|
86 | return false; |
---|
87 | } |
---|
88 | return true; |
---|
89 | } |
---|
90 | |
---|
91 | |
---|
92 | |
---|
93 | bool TmDmCreator::ProcessFiles(wxArrayString & errorsmsg, int languagecolumn) { |
---|
94 | errorsmsg.Clear(); |
---|
95 | // Copy structure |
---|
96 | { // needed to destroy the copier before processing layers |
---|
97 | TmDmCopier myCopier(m_FileNameOutSQL); |
---|
98 | if (myCopier.CopyFrom(m_FileNameBaseSQL) == false) { |
---|
99 | errorsmsg.Add(wxString::Format(_("Copying: %s failed!"), m_FileNameBaseSQL.GetFullPath())); |
---|
100 | return false; |
---|
101 | } |
---|
102 | |
---|
103 | if (myCopier.CopyFrom(m_FileNameUserSQL) == false) { |
---|
104 | errorsmsg.Add(wxString::Format(_("Copying: %s failed!"), m_FileNameUserSQL.GetFullPath())); |
---|
105 | return false; |
---|
106 | } |
---|
107 | } |
---|
108 | |
---|
109 | // Process layers |
---|
110 | TmDmProcessorSimple myProc(m_FileNameUserContent, m_FileNameOutSQL); |
---|
111 | myProc.SetLanguageColumn(languagecolumn); |
---|
112 | int myThematicLayersStart = myProc.FindBlock(_T("thematic_layers")); |
---|
113 | if (myThematicLayersStart == wxNOT_FOUND) { |
---|
114 | errorsmsg.Add(wxString::Format(_("'thematic_layers' field not found in %s"), m_FileNameUserContent.GetFullPath())); |
---|
115 | return false; |
---|
116 | } |
---|
117 | if (myProc.ProcessBlock(myThematicLayersStart, _T("thematic_layers"))==false) { |
---|
118 | errorsmsg.Add(wxString::Format(_("Processing 'thematic_layers' failed in %s"), m_FileNameUserContent.GetFullPath())); |
---|
119 | return false; |
---|
120 | } |
---|
121 | |
---|
122 | // Process objects |
---|
123 | int myObjectStart = myProc.FindBlock(_T("dmn_layer_object")); |
---|
124 | if (myObjectStart == wxNOT_FOUND) { |
---|
125 | errorsmsg.Add(wxString::Format(_("'dmn_layer_object' field not found in %s"), m_FileNameUserContent.GetFullPath())); |
---|
126 | return false; |
---|
127 | } |
---|
128 | if (myProc.ProcessBlock(myObjectStart, _T("dmn_layer_object"))==false) { |
---|
129 | errorsmsg.Add(wxString::Format(_("Processing 'dmn_layer_object' failed in %s"), m_FileNameUserContent.GetFullPath())); |
---|
130 | return false; |
---|
131 | } |
---|
132 | |
---|
133 | // Process attributs |
---|
134 | TmDmProcessorAttributs myProcAttributs (m_FileNameUserContent, m_FileNameOutSQL); |
---|
135 | myProcAttributs.SetLanguageColumn(languagecolumn); |
---|
136 | int myAttributStart = myProcAttributs.FindBlock(_T("attributs")); |
---|
137 | if (myAttributStart == wxNOT_FOUND) { |
---|
138 | errorsmsg.Add(wxString::Format(_("'attributs' field not found in %s"), m_FileNameUserContent.GetFullPath())); |
---|
139 | return false; |
---|
140 | } |
---|
141 | if (myProcAttributs.ProcessBlock(myAttributStart, wxEmptyString)==false) { |
---|
142 | errorsmsg.Add(wxString::Format(_("Processing 'attributs' failed in %s"), m_FileNameUserContent.GetFullPath())); |
---|
143 | return false; |
---|
144 | } |
---|
145 | |
---|
146 | |
---|
147 | return true; |
---|
148 | } |
---|
149 | |
---|