-
Notifications
You must be signed in to change notification settings - Fork 0
/
GestionSpectacle2.cbl
420 lines (375 loc) · 15.3 KB
/
GestionSpectacle2.cbl
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
******************************************************************
* Author:
* Date:
* Purpose:
* Tectonics: cobc
******************************************************************
IDENTIFICATION DIVISION.
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
PROGRAM-ID. GestionSpectacle2.
ENVIRONMENT DIVISION.
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
CONFIGURATION SECTION.
*-----------------------
INPUT-OUTPUT SECTION.
*-----------------------
file-control.
select FiSpectacle assign "../Fichiers/SPECTACLE.IND"
organization is indexed access mode is dynamic
record key is codeSpect
alternate record key is titre
with duplicates
alternate record key is dateRepresentation
with duplicates
file status is fs-fiSpectacle.
select FiSalle assign "../Fichiers/SALLE.REL"
organization is relative
access mode is dynamic
relative key is salleID
file status is fs-fiSalle.
SELECT FiMaj assign "../Fichiers/maj.seq"
ORGANIZATION IS LINE SEQUENTIAL
FILE STATUS IS fs-FiMaj.
SELECT FiErreur assign "../Fichiers/erreurs.seq"
ORGANIZATION IS LINE SEQUENTIAL.
SELECT FiListingTitre assign "../Fichiers/ListingTitres.seq"
organization is line sequential.
SELECT FiListingOctobre assign "../Fichiers/ListingOctobre.seq"
organization is line sequential.
select optional debug assign "../debug.seq"
organization is line sequential.
DATA DIVISION.
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
FILE SECTION.
*-----------------------
FD debug.
01 EnregDebug pic x(100).
FD FiErreur.
01 EnregErreur.
02 codeErreur pic x(2).
02 ligneErreur pic x(80).
FD FiListingTitre.
01 EnreglistingTitre pic x(100).
FD FiListingOctobre.
01 EnregListingOctobre.
02 datesOctobre pic x(10).
02 listeTitres pic x(1000).
02 nbSpectacles pic 9(2).
FD FiSpectacle.
01 EnregSpectacle.
02 codeSpect.
03 codeGenre pic x(5).
03 codeNum pic 9(2).
02 titre pic x(30).
02 numSalle pic 9(2).
02 dateRepresentation.
03 moisRepresentation pic 9(2).
03 jourRepresentation pic 9(2).
02 tabReservationsCategories pic 9(9).
02 REDEFINES tabReservationsCategories.
03 nbReservations pic 9(3) OCCURS 3.
FD FiSalle.
01 EnregSalle.
02 tabPlacesCategories pic 9(9).
02 REDEFINES tabPlacesCategories.
03 nbPlaces pic 9(3) OCCURS 3.
FD FiMaj.
01 EnregMAJ.
02 codeMaj pic x.
02 informationsAction pic x(37).
02 REDEFINES informationsAction.
03 codeGenreNouv pic x(5).
03 titreNouv pic x(30).
02 REDEFINES informationsAction.
03 titreReserve pic x(30).
03 dateReserve pic 9(4).
03 categReserve pic 9.
03 nbPlacesReserve pic 99.
02 REDEFINES informationsAction.
03 codeSpectacleAnnulation pic x(7).
03 categAnnulation pic 9.
03 nbPlacesAnnulation pic 99.
01 EnregDateRepresentation.
02 codeGenreNouveau pic x(5).
02 dateRepresentationNouveau pic 9(4).
02 numSalleNouveau pic 99.
WORKING-STORAGE SECTION.
*-----------------------
77 fs-fiSpectacle pic x(2).
88 finErreurFiSpectacle VALUES "10" THRU "99".
77 fs-fiSalle pic x(2).
88 finErreurFiSalle VALUES "10" THRU "99".
77 fs-fiMaj pic x(2).
88 finFiMaj VALUE "10".
01 labelTitre pic x(21)
VALUE "Titre du spectacle : ".
01 ligneTitre pic x(51).
01 LigneLabelsListingTitre.
02 pic x(25)
VALUE "Dates des représentations".
02 pic x(3)
VALUE SPACES.
02 pic x(26)
VALUE "Nombre de places réservées".
02 pic x(3)
VALUE SPACES.
02 pic x(19)
VALUE "Taux de remplissage".
01 LigneInfosListingTitre.
02 dateRepresentationEd pic x(10).
02 pic x(18)
VALUE SPACES.
02 nbPlacesReserveesEd pic zzz9.
02 pic x(25)
VALUE SPACES.
02 tauxDeremplissage pic zz9.
02 pic x VALUE "%".
77 codeNumPrec pic 9(2).
77 iCategorie pic 9.
77 titreSave pic x(30).
77 codeGenreSave pic x(5).
77 placesTemp pic 9(3).
77 choix pic x.
77 annee pic 9999 value 2015.
77 totalPlacesReservee pic 9999.
77 totalPlacesDisponibles pic 9999.
77 taux pic 9V99.
77 dateSave pic 9999.
77 nbSpectacleDuJour pic 999.
77 grandeStringSpectacle pic x(10000).
77 jourSauve pic 99.
77 pointeur pic 99.
77 salleID pic 99.
PROCEDURE DIVISION.
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
MAIN-PROCEDURE.
************************************
OPEN INPUT FiMaj FiSalle.
OPEN I-O FiSpectacle.
OPEN output debug FiErreur FiListingTitre FiListingOctobre.
read FiMaj.
perform miseAJour until finFiMaj.
perform listingParTitre.
perform listingOctobre.
close FiMaj,
FiSpectacle,
debug,
FiSalle,
FiErreur,
FiListingTitre,
FiListingOctobre.
stop run.
miseAJour.
************************************
move SPACES to EnregDebug.
evaluate codeMaj
WHEN 'N'
perform ajoutSpectacle
WHEN 'R'
perform reservation
read FiMaj
WHEN 'A'
perform annulation
read FiMaj
WHEN OTHER
move 01 to codeErreur
perform writeErreur
read FiMaj
end-evaluate.
reservation.
************************************
* recherche si places disponibles
move titreReserve to titre.
start FiSpectacle key is = titre
invalid key move 02 to codeErreur
perform writeErreur
not invalid key perform reservationPlaces
end-start.
reservationPlaces.
************************************
perform checkDateReservation.
if dateReserve = dateRepresentation
perform miseAJourPlaces
else
move 03 to codeErreur
perform writeErreur
end-if.
checkDateReservation.
************************************
perform until finErreurFiSpectacle
OR dateReserve = dateRepresentation
read FiSpectacle next
end-perform.
miseAJourPlaces.
************************************
add nbReservations(categReserve) to nbPlacesReserve
giving placesTemp.
move numSalle to salleID.
read FiSalle.
display "Nb reserv actuelles : " nbReservations(categReserve).
DISPLAY "Nb reservations MAJ : " nbPlacesReserve.
display "Total reservations : " placesTemp "/"
nbPlaces(categReserve).
if placesTemp > nbPlaces(categReserve)
move 04 to codeErreur
perform writeErreur
else
move placesTemp to nbReservations(categReserve)
end-if.
annulation.
************************************
move codeSpectacleAnnulation to codeSpect.
start FiSpectacle key is = codeSpect
invalid key move 5 to codeErreur
perform writeErreur
not invalid key perform annuleSpectale
end-start.
annuleSpectale.
************************************
SUBTRACT nbPlacesAnnulation
from nbReservations(categAnnulation).
if nbReservations(categAnnulation) < 0
move zeroes to nbReservations(categAnnulation)
end-if.
ajoutSpectacle.
************************************
move codeGenreNouv to codeGenre.
move codeGenreNouv to codeGenreSave.
start FiSpectacle key is = codeGenre
invalid key perform nouveauSpectacle
not invalid key
perform goDernierCodeNum
end-start.
move titreNouv to titreSave.
read FiMaj.
perform ajoutRepresentation until finFiMaj
OR codeGenreSave not = codeGenreNouveau.
nouveauSpectacle.
************************************
move 0 to codeNum.
goDernierCodeNum.
************************************
read FiSpectacle next
perform until finErreurFiSpectacle
OR codeGenre not = codeGenreNouv
move codeNum to codeNumPrec
read FiSpectacle next
end-perform.
move codeNumPrec to codeNum.
ajoutRepresentation.
************************************
move "ajoute representation" to EnregDebug.
write EnregDebug.
move codeGenreSave to codeGenre.
move titreSave to titre.
move dateRepresentationNouveau to dateRepresentation.
move numSalleNouveau to numSalle.
add 1 to codeNum.
perform varying iCategorie from 1 by 1 until iCategorie > 3
MOVE 0 TO nbReservations(iCategorie)
end-perform.
move EnregSpectacle to EnregDebug.
write EnregDebug.
write EnregSpectacle.
read FiMaj.
listingParTitre.
************************************
**********listing complet***********
************************************
move spaces to titre.
start FiSpectacle key is > titre
invalid key display "fichier vide"
not invalid key
read FiSpectacle next
perform listeTitre until finErreurFiSpectacle
end-start.
listeTitre.
move titre to titreSave.
STRING
labelTitre titre
into ligneTitre
END-STRING.
display ligneTitre
move ligneTitre to EnreglistingTitre.
write EnreglistingTitre.
display LigneLabelsListingTitre
move LigneLabelsListingTitre to EnreglistingTitre.
write EnreglistingTitre.
perform until finErreurFiSpectacle OR
titre not = titreSave
perform embelliDate
perform getSalle
move 0 to totalPlacesReservee
move 0 to totalPlacesDisponibles
perform varying iCategorie
from 1 by 1 until iCategorie > 3
add nbReservations(iCategorie)
to totalPlacesReservee
add nbPlaces(iCategorie)
to totalPlacesDisponibles
end-perform
divide totalPlacesReservee by totalPlacesDisponibles
giving taux
end-divide
multiply 100 by taux giving tauxDeremplissage
move totalPlacesReservee to nbPlacesReserveesEd
display LigneInfosListingTitre
move LigneInfosListingTitre to EnreglistingTitre
write EnreglistingTitre
read FiSpectacle next
end-perform.
listingOctobre.
************************************
**********listing octobre***********
************************************
move 1000 to dateRepresentation.
start FiSpectacle key > dateRepresentation
invalid key display "pas de spectacles en octobre"
not invalid key read FiSpectacle next
perform listeOctobre
until finErreurFiSpectacle
OR dateRepresentation > 1100
end-start.
listeOctobre.
************************************
move jourRepresentation to jourSauve.
perform embelliDate.
move dateRepresentationEd to datesOctobre.
move spaces to listeTitres.
move 1 to pointeur.
move 0 to nbSpectacles.
perform until finErreurFiSpectacle
OR jourSauve not = jourRepresentation
OR dateRepresentation > 1100
string titre delimited by " " "-"
into listeTitres with pointer pointeur
end-string
add 1 to nbSpectacles
read FiSpectacle next
end-perform.
subtract 1 from pointeur.
move " " to listeTitres(pointeur:1).
display jourRepresentation "/" moisRepresentation.
display listeTitres.
display nbSpectacles.
write EnregListingOctobre.
embelliDate.
************************************
string jourRepresentation "/" moisRepresentation "/" annee
into dateRepresentationEd
end-string.
getSalle.
************************************
move numSalle to salleID.
start FiSalle key = salleID
not invalid key
read FiSalle next
invalid key display "Une erreur est survenue au niveau -
du fichier SALLE.REL, veuillez le regénérer"
end-start.
writeErreur.
************************************
move EnregMAJ to ligneErreur.
write EnregErreur.
************************************
END PROGRAM GestionSpectacle2.