821 |
raphael |
1 |
# Ce Makefile effectue les substitutions de nom de base de données
|
|
|
2 |
# nécessaire au préalable de l'application des scripts SQL
|
|
|
3 |
|
|
|
4 |
# Cela est d'un part moins complexe:
|
|
|
5 |
# - qu'un script PHP (interpréteur, getopt, framework, ...)
|
|
|
6 |
# - qu'un shell-script (lancement avec make)
|
|
|
7 |
# et d'autre part plus maintenable qu'un shell-script car
|
|
|
8 |
# le versionnage des fichiers (inc ".current") permet certaines facilités.
|
|
|
9 |
|
|
|
10 |
|
|
|
11 |
# TODO:
|
|
|
12 |
# idéalement, ce Makefile devrait permettre une bonne gestion du jeu de dépendances
|
|
|
13 |
# entre les scripts, seulement le lancement d'un script pouvant nécessiter un login/mdp
|
|
|
14 |
# il est difficile de vouloir rester "simple".
|
822 |
raphael |
15 |
# Ce serait cependant la meilleure manière de procéder, ainsi "maj2" ne serait lancé qu'en
|
|
|
16 |
# cas de succès de "maj1", celui-ci pouvant être détecté comme "déjà exécuté" ou non.
|
|
|
17 |
# cf target "maj1" ci-dessous
|
821 |
raphael |
18 |
|
|
|
19 |
|
822 |
raphael |
20 |
# à l'aide de, note certains de ces fichiers n'ont pas cours dans le cadre de la maj1 (juillet/août 2013)
|
816 |
raphael |
21 |
# echo $(egrep -l 'BASE(SOURCE|EDIT|ANNUAIRE)' *.sql)
|
823 |
raphael |
22 |
fichiers = cel_references.sql dedup-ordre-201307.sql fix-utilisateur-32.sql maj-cleanup-201307.sql maj-nom-ret.sql \
|
|
|
23 |
maj-referentiel-201307.sql maj-referentiel-und-201307.sql maj-struct-201307.sql redempteur.sql \
|
|
|
24 |
referonosaure.sql \
|
|
|
25 |
.current
|
816 |
raphael |
26 |
|
|
|
27 |
# la base de données à modifier
|
|
|
28 |
alterdb ?= tb_cel_test
|
|
|
29 |
|
829 |
raphael |
30 |
# pour bdtfx, bdtxa, isfan, nvjfl, nva, baseflor, ... lecture seule;
|
816 |
raphael |
31 |
# utilisée pour actualiser les enregistrements de cel_obs dans referonosaure.sql
|
|
|
32 |
sourcedb ?= tb_eflore
|
|
|
33 |
|
|
|
34 |
# pour annuaire_tela, lecture seule;
|
|
|
35 |
# utilisée pour initialiser cel_utilisateurs dans maj-struct-201307.sql
|
|
|
36 |
annuairedb ?= tela_prod_v4
|
|
|
37 |
|
828 |
raphael |
38 |
bdtfx ?= 1_01
|
|
|
39 |
bdtxa ?= 1_00
|
|
|
40 |
bdtfx_table = bdtfx_v$(bdtfx)
|
829 |
raphael |
41 |
bdtxa_table = bdtxa_v$(bdtxa)
|
828 |
raphael |
42 |
|
823 |
raphael |
43 |
# macro utilisable pour les targets nécessitant de tester la présence d'un couple (base,table)
|
|
|
44 |
# exemples:
|
|
|
45 |
# * $(call is_table,tb_eflore,bdtfx_v1_01)
|
|
|
46 |
# * $(call is_table,$(annuairedb),annuaire_tela)
|
|
|
47 |
# argument 1: base de données
|
|
|
48 |
# argument 2: table
|
829 |
raphael |
49 |
is_table = @mysql -N $(1) <<<"DESC $(2)" &> /dev/null
|
822 |
raphael |
50 |
|
829 |
raphael |
51 |
# macro utilisable pour effectuer des substitutions:
|
|
|
52 |
do_subst = sed -e 's/`BASEEDIT`/`$(alterdb)`/g' \
|
|
|
53 |
-e 's/`BASEANNUAIRE`/`$(annuairedb)`/g' \
|
|
|
54 |
-e 's/`BASESOURCE`/`$(sourcedb)`/g' \
|
|
|
55 |
-e 's/TABLEBDTFX/`$(bdtfx_table)`/g' \
|
|
|
56 |
-e 's/TABLEBDTXA/`$(bdtxa_table)`/g' \
|
|
|
57 |
$(1)
|
823 |
raphael |
58 |
|
822 |
raphael |
59 |
# génère les fichiers avec les bases de données souhaitées
|
|
|
60 |
compile: reset
|
821 |
raphael |
61 |
@sed -i -e 's/`BASEEDIT`/`$(alterdb)`/g' \
|
820 |
raphael |
62 |
-e 's/`BASEANNUAIRE`/`$(annuairedb)`/g' \
|
|
|
63 |
-e 's/`BASESOURCE`/`$(sourcedb)`/g' \
|
829 |
raphael |
64 |
-e 's/TABLEBDTFX/`$(bdtfx_table)`/g' \
|
|
|
65 |
-e 's/TABLEBDTXA/`$(bdtxa_table)`/g' \
|
816 |
raphael |
66 |
$(fichiers)
|
829 |
raphael |
67 |
@printf "Attention: les changements s'appliqueront sur la base \"%s\"\nLes sources utilisées seront: annuaire=\"%s\" , sources=\"%s\" (%s,%s)\n(Ctrl+C pour interrompre, Enter pour continuer)\n" \
|
822 |
raphael |
68 |
`grep ^BASEEDIT .current|cut -d '\`' -f2` \
|
|
|
69 |
`grep ^BASEANNUAIRE .current|cut -d '\`' -f2` \
|
828 |
raphael |
70 |
`grep ^BASESOURCE .current|cut -d '\`' -f2` \
|
|
|
71 |
`grep ^TABLE_BDTFX .current|cut -d '=' -f2` \
|
|
|
72 |
`grep ^TABLE_BDTXA .current|cut -d '=' -f2`
|
822 |
raphael |
73 |
@read
|
820 |
raphael |
74 |
|
|
|
75 |
reset:
|
829 |
raphael |
76 |
svn revert -q $(fichiers)
|
820 |
raphael |
77 |
|
829 |
raphael |
78 |
# supprime les fichiers "compilés" (concaténation de plusieurs scripts SQL substitués)
|
|
|
79 |
clean:
|
|
|
80 |
rm -f *.comp.sql
|
823 |
raphael |
81 |
|
820 |
raphael |
82 |
help:
|
828 |
raphael |
83 |
@echo "make [alterdb=<tb_cel_test>] [sourcedb=<tb_eflore>] [annuairedb=<tela_prod_v4>] [bdtfx=<1_01>] [bdtxa=<1_00>]"
|
820 |
raphael |
84 |
|
821 |
raphael |
85 |
|
829 |
raphael |
86 |
### mises à jour
|
|
|
87 |
|
822 |
raphael |
88 |
# mise à jour de juillet/août 2013
|
|
|
89 |
# spécifier dans les targets l'ordre (cf A_LIRE.txt)
|
829 |
raphael |
90 |
# attention, si un prérequis ne génère pas de SQL, cela n'empêchera pas le fichier
|
|
|
91 |
# final de maj d'être généré (bien,
|
822 |
raphael |
92 |
maj1: compile cel_references maj-struct-201307 maj-cleanup-201307 fix-utilisateur-32 dedup-ordre-201307
|
|
|
93 |
@echo done
|
821 |
raphael |
94 |
|
829 |
raphael |
95 |
o_maj1: fichiers_generes = $(addsuffix .comp.sql,$(filter-out clean,$?))
|
|
|
96 |
o_maj1: clean o_cel_references o_maj-struct-201307 o_maj-cleanup-201307 o_fix-utilisateur-32 o_dedup-ordre-201307
|
|
|
97 |
cat $(fichiers_generes) > maj1.comp.sql
|
|
|
98 |
@echo done
|
822 |
raphael |
99 |
|
829 |
raphael |
100 |
### fin: mises à jour
|
822 |
raphael |
101 |
|
829 |
raphael |
102 |
|
|
|
103 |
### tools
|
|
|
104 |
|
|
|
105 |
check_cel_obs:
|
|
|
106 |
$(call is_table,$(alterdb),cel_obs)
|
|
|
107 |
|
|
|
108 |
### fin: tools
|
|
|
109 |
|
|
|
110 |
|
|
|
111 |
### mises à jour individuelles (scripts)
|
|
|
112 |
### pour chacun d'entre-eux, deux versions existent,
|
|
|
113 |
### 1) L'un compile (après substitution des noms dans le fichier SQL original)
|
|
|
114 |
### et pipe vers mysql directement, ce qui suppose aussi un .my.cnf ou autre
|
|
|
115 |
### 2) L'autre (préfixé par o_), renvoie le fichier substitué en sortie standard
|
|
|
116 |
### et le target principal s'occupe de concaténer et de créer un fichier de destination
|
|
|
117 |
### Cette méthode est de loin préférable
|
821 |
raphael |
118 |
cel_references:
|
829 |
raphael |
119 |
$(call is_table,$(sourcedb),$(bdtfx_table))
|
823 |
raphael |
120 |
$(call is_table,$(alterdb),cel_references) || mysql < cel_references.sql
|
829 |
raphael |
121 |
o_cel_references:
|
|
|
122 |
$(call is_table,$(sourcedb),$(bdtfx_table))
|
|
|
123 |
$(call is_table,$(alterdb),cel_references) || $(call do_subst,cel_references.sql) > $@.comp.sql
|
822 |
raphael |
124 |
|
829 |
raphael |
125 |
maj-struct-201307: check_cel_obs
|
823 |
raphael |
126 |
$(call is_table,$(annuairedb),annuaire_tela)
|
822 |
raphael |
127 |
@mysql -N $(alterdb) <<<"DESC cel_obs nom_sel"|grep -q 601 || mysql < maj-struct-201307.sql
|
829 |
raphael |
128 |
o_maj-struct-201307: check_cel_obs
|
|
|
129 |
$(call is_table,$(annuairedb),annuaire_tela)
|
|
|
130 |
@mysql -N $(alterdb) <<<"DESC cel_obs nom_sel"|grep -q 601 || $(call do_subst,maj-struct-201307.sql) > $@.comp.sql
|
822 |
raphael |
131 |
|
829 |
raphael |
132 |
maj-cleanup-201307: check_cel_obs
|
822 |
raphael |
133 |
@ ! mysql -N $(alterdb) <<<"SELECT 1 FROM cel_obs WHERE date_observation = '0000-00-00 00:00:00' LIMIT 1"|grep -q 1 || mysql < maj-cleanup-201307.sql
|
829 |
raphael |
134 |
o_maj-cleanup-201307:
|
|
|
135 |
@ ! mysql -N $(alterdb) <<<"SELECT 1 FROM cel_obs WHERE date_observation = '0000-00-00 00:00:00' LIMIT 1"|grep -q 1 || $(call do_subst,maj-cleanup-201307.sql) > $@.comp.sql
|
822 |
raphael |
136 |
|
829 |
raphael |
137 |
fix-utilisateur-32: check_cel_obs
|
822 |
raphael |
138 |
@mysql -N $(alterdb) <<<"DESC cel_obs ce_utilisateur"|grep -q 255 || mysql < fix-utilisateur-32.sql
|
829 |
raphael |
139 |
o_fix-utilisateur-32: check_cel_obs
|
|
|
140 |
@mysql -N $(alterdb) <<<"DESC cel_obs ce_utilisateur"|grep -q 255 || $(call do_subst,fix-utilisateur-32.sql) > $@.comp.sql
|
822 |
raphael |
141 |
|
829 |
raphael |
142 |
dedup-ordre-201307: check_cel_obs
|
822 |
raphael |
143 |
#@mysql -N $(alterdb) <<<'SELECT distinct ce_utilisateur FROM `cel_obs` GROUP BY ce_utilisateur, ordre HAVING COUNT(*) > 1'|grep -q . || mysql < dedup-ordre-201307.sql
|
|
|
144 |
@mysql -N $(alterdb) <<<"SHOW INDEX FROM cel_obs"|grep -q couple_user_ordre || mysql < dedup-ordre-201307.sql
|
829 |
raphael |
145 |
o_dedup-ordre-201307: check_cel_obs
|
|
|
146 |
@mysql -N $(alterdb) <<<"SHOW INDEX FROM cel_obs"|grep -q couple_user_ordre || $(call do_subst,dedup-ordre-201307.sql) > $@.comp.sql
|
822 |
raphael |
147 |
|
|
|
148 |
|
829 |
raphael |
149 |
|
|
|
150 |
|
822 |
raphael |
151 |
# pour une prochaine maj
|
821 |
raphael |
152 |
maj-nom-ret:
|
829 |
raphael |
153 |
@mysql -N <<<'SELECT count(1) FROM `$(alterdb)`.`cel_obs` c LEFT JOIN `$(sourcedb)`.`$(bdtfx_table)` b on (c.nom_ret = b.nom_sci) WHERE nom_ret_nn = 0 AND c.nom_ret != "" AND id_observation NOT IN ( SELECT id_observation FROM `$(alterdb)`.`cel_obs` c, `$(sourcedb)`.`$(bdtfx_table)` b WHERE c.nom_ret = b.nom_sci AND c.nom_ret_nn = 0 );'|grep -q 0
|