source: trunk/tmdmcreator/src/tmdmcreator.cpp @ 18

Revision 18, 3.9 KB checked in by lucsch, 11 years ago (diff)
  • Preliminary code for processing user_content.txt. Processing thematic_layers is now working
  • Corrected base_structure and user_structure.sql
RevLine 
[15]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"
[16]18#include "tmdmcopier.h"
[17]19#include "tmdmprocessor.h"
[15]20
[16]21TmDmCreator::TmDmCreator() {
[15]22}
23
24
25
[16]26TmDmCreator::~TmDmCreator() {
[15]27}
28
29
30
[16]31void TmDmCreator::SetBaseSQL(wxFileName value) {
[15]32  m_FileNameBaseSQL = value;
33}
34
35
36
[16]37void TmDmCreator::SetUserSQL(wxFileName value) {
[15]38  m_FileNameUserSQL = value;
39}
40
41
42
[16]43void TmDmCreator::SetUserContent(wxFileName value) {
[15]44  m_FileNameUserContent = value;
45}
46
47
48
[16]49void TmDmCreator::SetOutSQL(wxFileName value) {
[15]50  m_FileNameOutSQL = value;
51}
52
53
[16]54bool 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}
[15]66
[16]67
68
69bool 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;
[15]89}
90
91
92
[16]93bool TmDmCreator::ProcessFiles(wxArrayString & errorsmsg) {
94    errorsmsg.Clear();
[17]95    // Copy structure
[18]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        }
[16]107    }
[18]108
[17]109    // Process layers
110    TmDmProcessorSimple myLayerProc(m_FileNameUserContent, m_FileNameOutSQL);
111    int myThematicLayersStart = myLayerProc.FindBlock(_T("thematic_layers"));
112    if (myThematicLayersStart == wxNOT_FOUND) {
113        errorsmsg.Add(wxString::Format(_("'thematic_layers' field not found in %s"), m_FileNameUserContent.GetFullPath()));
114        return false;
115    }
[18]116    if (myLayerProc.ProcessBlock(myThematicLayersStart, _T("thematic_layers"))==false) {
[17]117        errorsmsg.Add(wxString::Format(_("Processing 'thematic_layers' failed in %s"), m_FileNameUserContent.GetFullPath()));
118        return false;
119    }
[16]120    return true;
[15]121}
122
Note: See TracBrowser for help on using the repository browser.