1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
|
/*
* PreviSat, Satellite tracking software
* Copyright (C) 2005-2016 Astropedia web: http://astropedia.free.fr - mailto: astropedia@free.fr
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
* _______________________________________________________________________________________________________
*
* Nom du fichier
* > gestionnairetle.cpp
*
* Localisation
* >
*
* Heritage
* > QMainWindow
*
* Description
* > Gestionnaire de mise a jour des TLE
*
* Auteur
* > Astropedia
*
* Date de creation
* > 4 mars 2012
*
* Date de revision
* > 8 decembre 2015
*
*/
#include <QtGlobal>
#if QT_VERSION >= 0x050000
#include <QStandardPaths>
#else
#include <QDesktopServices>
#endif
#include <QCoreApplication>
#include <QDir>
#pragma GCC diagnostic ignored "-Wconversion"
#pragma GCC diagnostic ignored "-Wfloat-equal"
#pragma GCC diagnostic ignored "-Wswitch-default"
#if QT_VERSION >= 0x050000
#pragma GCC diagnostic ignored "-Wfloat-conversion"
#endif
#include <QMessageBox>
#include <QTextStream>
#include "ui_gestionnairetle.h"
#pragma GCC diagnostic warning "-Wconversion"
#pragma GCC diagnostic warning "-Wfloat-equal"
#pragma GCC diagnostic warning "-Wswitch-default"
#if QT_VERSION >= 0x050000
#pragma GCC diagnostic warning "-Wfloat-conversion"
#endif
#include "gestionnairetle.h"
#include "previsat.h"
#include "librairies/exceptions/previsatexception.h"
static bool init;
static int selec;
static QString ficTLE;
static QString dirLocalData;
static QString dirTmp;
static QString localePrevisat;
static QSettings settings("Astropedia", "previsat");
GestionnaireTLE::GestionnaireTLE(QWidget *fenetreParent) :
QMainWindow(fenetreParent),
ui(new Ui::GestionnaireTLE)
{
ui->setupUi(this);
QFont police;
#if defined (Q_OS_WIN)
police.setFamily("MS Shell Dlg 2");
police.setPointSize(8);
#elif defined (Q_OS_LINUX)
police.setFamily("Sans Serif");
police.setPointSize(7);
#elif defined (Q_OS_MAC)
police.setFamily("Marion");
police.setPointSize(11);
#else
#endif
setFont(police);
load();
}
GestionnaireTLE::~GestionnaireTLE()
{
delete ui;
}
void GestionnaireTLE::closeEvent(QCloseEvent *evt)
{
Q_UNUSED(evt)
on_fermer_clicked();
}
void GestionnaireTLE::load()
{
/* Declarations des variables locales */
/* Initialisations */
selec = -1;
localePrevisat = PreviSat::DeterminationLocale();
ui->barreMenu->setVisible(false);
ui->groupe->setVisible(false);
ui->listeGroupeTLE->clear();
ui->listeFichiersTLE->clear();
ui->nbJoursAgeMaxTLE->setValue(settings.value("temps/ageMax", 15).toInt());
ui->ageMaxTLE->setChecked(settings.value("temps/ageMaxTLE", true).toBool());
const QIcon ajout(":/resources/ajout.png");
ui->actionCreer_un_groupe->setIcon(ajout);
ui->creationGroupe->setIcon(ajout);
ui->creationGroupe->setToolTip(tr("Créer un groupe de TLE"));
ui->actionAjouter_des_fichiers->setIcon(ajout);
ui->ajoutFichiersTLE->setIcon(ajout);
ui->ajoutFichiersTLE->setToolTip(tr("Ajouter des fichiers TLE"));
const QIcon suppr(":/resources/suppr.png");
ui->actionSupprimer->setIcon(suppr);
ui->actionSupprimerGroupe->setIcon(suppr);
if (settings.value("affichage/flagIntensiteVision", false).toBool()) {
QPalette paletteWin, palList;
const int red = settings.value("affichage/valIntensiteVision", 0).toInt();
const QBrush alpha = QBrush(QColor::fromRgb(red, 0, 0, 255));
const QColor coulList = QColor(red + 27, 0, 0);
paletteWin.setBrush(this->backgroundRole(), alpha);
palList.setColor(QPalette::Base, coulList);
this->setPalette(paletteWin);
ui->listeGroupeTLE->setPalette(palList);
ui->listeFichiersTLE->setPalette(palList);
ui->domaine->setPalette(palList);
ui->nomGroupe->setPalette(palList);
ui->listeFichiers->setPalette(palList);
ui->nbJoursAgeMaxTLE->setPalette(palList);
}
#if defined (Q_OS_MAC)
dirLocalData = QCoreApplication::applicationDirPath() + QDir::separator() + "data";
#else
#if QT_VERSION >= 0x050000
const QString dirAstr = QCoreApplication::organizationName() + QDir::separator() + QCoreApplication::applicationName();
dirLocalData = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QString(), QStandardPaths::LocateDirectory).at(0) +
dirAstr + QDir::separator() + "data";
#else
dirLocalData = QDesktopServices::storageLocation(QDesktopServices::DataLocation) + QDir::separator() + "data";
#endif
#endif
#if QT_VERSION >= 0x050000
dirTmp = QStandardPaths::locate(QStandardPaths::CacheLocation, QString(), QStandardPaths::LocateDirectory);
#else
dirTmp = QDesktopServices::storageLocation(QDesktopServices::CacheLocation);
#endif
if (dirTmp.trimmed().isEmpty())
dirTmp = dirLocalData.mid(0, dirLocalData.lastIndexOf(QDir::separator())) + QDir::separator() + "cache";
ficTLE = dirLocalData + QDir::separator() + "gestionnaireTLE_" + localePrevisat + ".gst";
/* Corps de la methode */
QFile fi(ficTLE);
fi.open(QIODevice::ReadOnly | QIODevice::Text);
QTextStream flux(&fi);
while (!flux.atEnd()) {
const QStringList ligne = flux.readLine().split("#", QString::SkipEmptyParts);
QString nomGroupe = ligne.at(0);
nomGroupe[0] = nomGroupe[0].toUpper();
ui->listeGroupeTLE->addItem(nomGroupe);
}
fi.close();
ui->listeGroupeTLE->setCurrentRow(0);
init = true;
/* Retour */
return;
}
void GestionnaireTLE::on_fermer_clicked()
{
settings.setValue("temps/ageMax", ui->nbJoursAgeMaxTLE->value());
settings.setValue("temps/ageMaxTLE", ui->ageMaxTLE->isChecked());
close();
}
void GestionnaireTLE::on_actionCreer_un_groupe_triggered()
{
/* Declarations des variables locales */
/* Initialisations */
/* Corps de la methode */
ui->listeFichiers->clear();
ui->domaine->setText("");
ui->domaine->setEnabled(true);
ui->domaine->setFocus();
ui->nomGroupe->setText("");
ui->nomGroupe->setEnabled(true);
ui->groupe->setVisible(true);
/* Retour */
return;
}
void GestionnaireTLE::on_actionSupprimerGroupe_triggered()
{
/* Declarations des variables locales */
/* Initialisations */
QDir di(dirTmp);
if (!di.exists())
di.mkpath(dirTmp);
/* Corps de la methode */
const QString groupe = ui->listeGroupeTLE->currentItem()->text();
const QString msg = tr("Voulez-vous vraiment supprimer le groupe \"%1\"?");
QMessageBox msgbox(tr("Information"), msg.arg(groupe), QMessageBox::Question, QMessageBox::Yes | QMessageBox::Default,
QMessageBox::No, QMessageBox::NoButton, this);
msgbox.setButtonText(QMessageBox::Yes, tr("Oui"));
msgbox.setButtonText(QMessageBox::No, tr("Non"));
msgbox.exec();
const int res = msgbox.result();
if (res == QMessageBox::Yes) {
const QString adresse = groupe.toLower();
QFile sr(ficTLE);
sr.open(QIODevice::ReadOnly | QIODevice::Text);
QTextStream flux(&sr);
QFile sw(dirTmp + QDir::separator() + "grp.tmp");
sw.open(QIODevice::WriteOnly | QIODevice::Text);
QTextStream flux2(&sw);
while (!flux.atEnd()) {
const QString ligne = flux.readLine();
if (ligne.mid(0, adresse.length()) != adresse)
flux2 << ligne << endl;
}
sw.close();
sr.close();
sr.remove();
sw.rename(ficTLE);
load();
}
/* Retour */
return;
}
void GestionnaireTLE::on_listeGroupeTLE_customContextMenuRequested(const QPoint &position)
{
/* Declarations des variables locales */
/* Initialisations */
/* Corps de la methode */
ui->listeGroupeTLE->setCurrentRow(ui->listeGroupeTLE->indexAt(position).row());
ui->actionSupprimerGroupe->setVisible(ui->listeGroupeTLE->currentRow() >= 0);
ui->menuContextuelGroupe->exec(QCursor::pos());
/* Retour */
return;
}
void GestionnaireTLE::on_listeGroupeTLE_currentRowChanged(int currentRow)
{
/* Declarations des variables locales */
/* Initialisations */
init = false;
ui->groupe->setVisible(false);
/* Corps de la methode */
if (selec != currentRow) {
selec = currentRow;
if (selec >= 0) {
ui->listeFichiersTLE->clear();
if (!ui->listeFichiersTLE->isEnabled())
ui->listeFichiersTLE->setEnabled(true);
const QString groupe = ui->listeGroupeTLE->currentItem()->text();
const QString adresse = groupe.toLower();
QFile sr(ficTLE);
sr.open(QIODevice::ReadOnly | QIODevice::Text);
QTextStream flux(&sr);
while (!flux.atEnd()) {
const QString ligne = flux.readLine();
if (adresse == ligne.mid(0, ligne.lastIndexOf("#") - 2)) {
QStringList listeTLE = ligne.split("#", QString::SkipEmptyParts).at(2).split(",", QString::SkipEmptyParts);
QStringListIterator it(listeTLE);
while (it.hasNext()) {
const QString item = it.next().trimmed();
if (!item.isEmpty())
ui->listeFichiersTLE->addItem(item);
}
ui->MajAutoGroupe->setChecked(settings.value("TLE/" + adresse, 0).toInt() == 1);
}
}
sr.close();
init = true;
}
}
ui->listeFichiersTLE->setCurrentRow(-1);
/* Retour */
return;
}
void GestionnaireTLE::on_valider_clicked()
{
/* Declarations des variables locales */
/* Initialisations */
/* Corps de la methode */
try {
if (ui->domaine->text().trimmed().isEmpty())
throw PreviSatException(tr("Le nom du domaine n'est pas spécifié"), WARNING);
if (ui->nomGroupe->text().trimmed().isEmpty())
throw PreviSatException(tr("Le nom du groupe n'est pas spécifié"), WARNING);
const QString groupeDomaine = ui->nomGroupe->text().toLower().trimmed() + "@" + ui->domaine->text().trimmed();
const QString listeFics = ui->listeFichiers->document()->toPlainText().replace("\n", ",");
QFile sr(ficTLE);
sr.open(QIODevice::ReadOnly | QIODevice::Text);
QTextStream flux(&sr);
QStringList list;
bool ajout = false;
while (!flux.atEnd()) {
const QString ligne = flux.readLine();
if (ligne.mid(0, ligne.indexOf("#")) == groupeDomaine) {
list.append(groupeDomaine + "#0#" + listeFics);
settings.setValue("TLE/" + groupeDomaine, (ui->MajAutoGroupe->isChecked()) ? "1" : "0");
ajout = true;
} else {
list.append(ligne);
}
}
if (!ajout) {
list.append(groupeDomaine + "#0#" + listeFics);
settings.setValue("TLE/" + groupeDomaine, (ui->MajAutoGroupe->isChecked()) ? "1" : "0");
}
sr.close();
QFile sw(ficTLE);
sw.open(QIODevice::WriteOnly | QIODevice::Text);
QTextStream flux2(&sw);
QStringListIterator it(list);
while (it.hasNext()) {
flux2 << it.next() << endl;
}
sw.close();
load();
ui->groupe->setVisible(false);
} catch (PreviSatException &e) {
}
/* Retour */
return;
}
void GestionnaireTLE::on_annuler_clicked()
{
/* Declarations des variables locales */
/* Initialisations */
/* Corps de la methode */
ui->groupe->setVisible(false);
ui->domaine->setVisible(true);
ui->nomGroupe->setVisible(true);
/* Retour */
return;
}
void GestionnaireTLE::on_actionAjouter_des_fichiers_triggered()
{
/* Declarations des variables locales */
/* Initialisations */
/* Corps de la methode */
const QStringList nomGroupe = ui->listeGroupeTLE->currentItem()->text().split("@");
ui->groupe->setEnabled(true);
ui->nomGroupe->setEnabled(false);
ui->nomGroupe->setText(nomGroupe.at(0));
ui->domaine->setEnabled(false);
ui->domaine->setText(nomGroupe.at(1));
ui->listeFichiers->clear();
for(int i=0; i<ui->listeFichiersTLE->count(); i++)
ui->listeFichiers->setPlainText(ui->listeFichiers->document()->toPlainText() +
ui->listeFichiersTLE->item(i)->text().trimmed() + "\n");
ui->groupe->setVisible(true);
ui->listeFichiers->moveCursor(QTextCursor::End);
ui->listeFichiers->setFocus();
/* Retour */
return;
}
void GestionnaireTLE::on_actionSupprimer_triggered()
{
/* Declarations des variables locales */
/* Initialisations */
/* Corps de la methode */
const QString groupe = ui->listeGroupeTLE->currentItem()->text();
const QString msg = tr("Voulez-vous vraiment supprimer ce(s) fichier(s) du groupe \"%1\"?");
QMessageBox msgbox(tr("Information"), msg.arg(groupe), QMessageBox::Question, QMessageBox::Yes | QMessageBox::Default,
QMessageBox::No, QMessageBox::NoButton, this);
msgbox.setButtonText(QMessageBox::Yes, tr("Oui"));
msgbox.setButtonText(QMessageBox::No, tr("Non"));
msgbox.exec();
const int res = msgbox.result();
if (res == QMessageBox::Yes) {
const QString adresse = groupe.toLower();
QFile sr(ficTLE);
sr.open(QIODevice::ReadOnly | QIODevice::Text);
QTextStream flux(&sr);
QDir di(dirTmp);
if (!di.exists())
di.mkpath(dirTmp);
QFile sw(dirTmp + QDir::separator() + "tmp.txt");
sw.open(QIODevice::WriteOnly | QIODevice::Text);
QTextStream flux2(&sw);
while (!flux.atEnd()) {
QString ligne = flux.readLine();
if (ligne.mid(0, adresse.length()) == adresse) {
for(int i=0; i<ui->listeFichiersTLE->selectedItems().count(); i++)
ligne = ligne.replace(ui->listeFichiersTLE->selectedItems().at(i)->text(), "").replace(",,", ",").
replace("#,", "#");
if (ligne.endsWith(","))
ligne = ligne.remove(ligne.length() - 1, 1);
}
flux2 << ligne << endl;
}
sw.close();
sr.close();
sr.remove();
sw.rename(sr.fileName());
load();
}
/* Retour */
return;
}
void GestionnaireTLE::on_listeFichiersTLE_customContextMenuRequested(const QPoint &position)
{
/* Declarations des variables locales */
/* Initialisations */
/* Corps de la methode */
ui->groupe->setVisible(false);
ui->listeFichiersTLE->setCurrentRow(ui->listeFichiersTLE->indexAt(position).row());
ui->actionSupprimer->setVisible(ui->listeFichiersTLE->currentRow() >= 0);
ui->menuContextuelFichiersTLE->exec(QCursor::pos());
/* Retour */
return;
}
void GestionnaireTLE::on_MajAutoGroupe_toggled(bool checked)
{
/* Declarations des variables locales */
/* Initialisations */
Q_UNUSED(checked)
/* Corps de la methode */
if (init)
settings.setValue("TLE/" + ui->listeGroupeTLE->currentItem()->text(), (checked) ? 1 : 0);
/* Retour */
return;
}
void GestionnaireTLE::on_creationGroupe_clicked()
{
on_actionCreer_un_groupe_triggered();
}
void GestionnaireTLE::on_ajoutFichiersTLE_clicked()
{
on_actionAjouter_des_fichiers_triggered();
}
|