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) { |
---|
94 | errorsmsg.Clear(); |
---|
95 | // Copy structure |
---|
96 | TmDmCopier myCopier(m_FileNameOutSQL); |
---|
97 | if (myCopier.CopyFrom(m_FileNameBaseSQL) == false) { |
---|
98 | errorsmsg.Add(wxString::Format(_("Copying: %s failed!"), m_FileNameBaseSQL.GetFullPath())); |
---|
99 | return false; |
---|
100 | } |
---|
101 | |
---|
102 | if (myCopier.CopyFrom(m_FileNameUserSQL) == false) { |
---|
103 | errorsmsg.Add(wxString::Format(_("Copying: %s failed!"), m_FileNameUserSQL.GetFullPath())); |
---|
104 | return false; |
---|
105 | } |
---|
106 | |
---|
107 | // Process layers |
---|
108 | TmDmProcessorSimple myLayerProc(m_FileNameUserContent, m_FileNameOutSQL); |
---|
109 | int myThematicLayersStart = myLayerProc.FindBlock(_T("thematic_layers")); |
---|
110 | if (myThematicLayersStart == wxNOT_FOUND) { |
---|
111 | errorsmsg.Add(wxString::Format(_("'thematic_layers' field not found in %s"), m_FileNameUserContent.GetFullPath())); |
---|
112 | return false; |
---|
113 | } |
---|
114 | if (myLayerProc.ProcessBlock(myThematicLayersStart)==false) { |
---|
115 | errorsmsg.Add(wxString::Format(_("Processing 'thematic_layers' failed in %s"), m_FileNameUserContent.GetFullPath())); |
---|
116 | return false; |
---|
117 | } |
---|
118 | return true; |
---|
119 | } |
---|
120 | |
---|