/*------------------------------------------------------------------------------ -- This file is a part of the QLop Software -- Copyright (C) 2015, Plasma Physics Laboratory - CNRS -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -------------------------------------------------------------------------------*/ /*-- Author : Alexis Jeandet -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ #include "cassinidatadownloader.h" #include "ui_cassinidatadownloader.h" #include #include #include #include CassiniDataDownloader::CassiniDataDownloader(QWidget *parent) : QWidget(parent), ui(new Ui::CassiniDataDownloader) { ui->setupUi(this); m_xmlLoader = new ExpXmlDownLoader(); connect(this->ui->calendar,SIGNAL(activated(QDate)),this,SLOT(downloadData(QDate))); connect(this->ui->LoadXmlFileQpb,SIGNAL(clicked()),this,SLOT(loadXmlFile())); } CassiniDataDownloader::~CassiniDataDownloader() { delete ui; delete m_xmlLoader; } void CassiniDataDownloader::changeEvent(QEvent *e) { QWidget::changeEvent(e); switch (e->type()) { case QEvent::LanguageChange: ui->retranslateUi(this); break; default: break; } } void CassiniDataDownloader::downloadData(const QDate &date) { QDate tmpDate; QStringList months=QStringList()<< "JAN" << "FEB" << "MAR" << "APR" << "MAY" << "JUN" << "JUI" << "AUG" << "SEP" << "OCT" << "NOV" << "DEC"; tmpDate.setDate(date.year(),date.month(),1); int firstDayOfMonth=tmpDate.dayOfYear(); tmpDate.setDate(tmpDate.year(),tmpDate.month(),tmpDate.daysInMonth()); int lastDayOfMonth=tmpDate.dayOfYear(); QString link="http://ppi.pds.nasa.gov/ditdos/download?id=pds://PPI/CO-E_SW_J_S-MAG-3-RDR-FULL-RES-V1.0/DATA/" \ + QString("%1").arg(date.year()) +"/" + QString("%1_%2_").arg(firstDayOfMonth,3).arg(lastDayOfMonth,3).replace(' ','0') \ + months.at(date.month()-1) + "/" ; qDebug()<parseXml(file)) { QList daysToDl = m_xmlLoader->daysToDownload(); for(int i=0;i