Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 1046 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1046 jpm 1
<?php
2
//declare(encoding='UTF-8');
3
/**
4
 * Exemple de lancement du script : :
5
 * 1. Création de la base de données :
1056 jpm 6
 * /opt/lampp/bin/php cli.php osm -a communes -m manuel -v 3
1046 jpm 7
 *
8
 * @category	php 5.4
9
 * @package		DEL
10
 * @subpackage	Scripts
11
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
12
 * @copyright	Copyright (c) 2012, Tela Botanica (accueil@tela-botanica.org)
13
* @license		CeCILL v2 http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt
14
 * @license		GNU-GPL http://www.gnu.org/licenses/gpl.html
15
 */
16
class Osm extends EfloreScript {
17
 
18
	const PROJET_NOM = 'osm';
19
 
20
	protected $parametres_autorises = array(
21
		'-m' => array(false, 'auto', 'Mode «auto» ou «manuel». En manuel, les compteurs dans les boucles sont affichés.'));
22
 
23
	public function executer() {
24
		try {
25
			$this->initialiserProjet(self::PROJET_NOM);
26
 
27
			// Lancement de l'action demandée
28
			$cmd = $this->getParametre('a');
29
			switch ($cmd) {
30
				case 'chargerStructureSql' :
31
					$this->chargerStructureSql();
32
					break;
1056 jpm 33
				case 'cm' :
34
				case 'cmSupprimer' :
35
					$script = $this->chargerClasse('FranceCommunes');
1046 jpm 36
					$script->executer();
37
					break;
1056 jpm 38
				case 'za' :
39
				case 'zaCorriger' :
40
				case 'zaMajIdZG' :
41
				case 'zaSupprimer' :
42
					$script = $this->chargerClasse('ZonesAdmin');
1046 jpm 43
					$script->executer();
44
					break;
45
				default :
46
					throw new Exception("Erreur : la commande '$cmd' n'existe pas!");
47
			}
48
		} catch (Exception $e) {
49
			$this->traiterErreur($e->getMessage());
50
		}
51
		print "\n";// Pour ramener à la ligne en fin de script
52
	}
53
 
54
	protected function initialiserProjet($projetNom) {
55
		$this->projetNom = $projetNom;
56
	}
57
 
58
	private function chargerClasse($classe) {
59
		require_once $classe.'.php';
60
		$conteneur = new Conteneur($this->parametres);
61
		return new $classe($conteneur);
62
	}
63
}