-
Notifications
You must be signed in to change notification settings - Fork 0
/
p_edition.adb
518 lines (305 loc) · 16.8 KB
/
p_edition.adb
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
WITH P_Traduction,P_Creation,Simple_Io;
USE P_Traduction,P_Creation,Simple_Io;
PACKAGE BODY P_Edition IS
Erreur_Ordonnancement:EXCEPTION;
Erreur_Longueur:EXCEPTION;
Erreur_Saisie:EXCEPTION;
Erreur_Ligne_Interdite:EXCEPTION;
Erreur_Condition:EXCEPTION;
ErreurLongueur:CONSTANT String(1..33):=" Erreur : Votre saisie est vide.";
CommandeQuitter:CONSTANT String:="-quitter";--Commande pour quitter le programme.
CommandeAnnuler:CONSTANT String:="-annuler";--Commande pour annuler une action.
NbCaracteresMaximumLigne:CONSTANT Integer:=150;--Nombres de caracteres maximum pour une ligne de code.
TYPE Tab_Lignes IS ARRAY (0..100) OF String(1..NbCaracteresMaximumLigne);
Fichiertype:File_Type;
ChaineDebutDeclaration:CONSTANT String(1..12):="-declaration";
ChaineDebutCode:CONSTANT String(1..5):="-code";
LignesCode:Tab_Lignes;
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------EDITION_FICHIER-------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
PROCEDURE Edition_Fichier(Fichier : String) IS
Reponse:String(1..15):=(OTHERS=>' ');
LongReponse:Integer:=0;
BEGIN
LOOP
BEGIN
New_Line;
Put("------------------------");
New_Line;
Put("Voici l'algorithme dans le fichier " & Fichier & ".txt :");
New_Line;
New_Line;
Afficher_Algo(Fichier);
New_Line;
Put("------------------------");
New_Line;
New_Line;
Put("Souhaitez-vous modifier une ligne, ou modifier l'ordonnancement ? (l/o) : ");
Get_Line(Reponse, LongReponse);
EXIT WHEN Reponse(CommandeQuitter'RANGE) = CommandeQuitter OR Reponse(CommandeAnnuler'RANGE) = CommandeAnnuler;
IF LongReponse = 0 THEN
RAISE Erreur_Longueur;
END IF;
IF Reponse(1..LongReponse) /= "ligne" AND Reponse(1..LongReponse) /= "ordo" AND Reponse(1..LongReponse) /= "o" AND Reponse(1..LongReponse) /= "l" THEN
RAISE Erreur_Saisie;
END IF;
IF Reponse(1) = 'o' THEN
Edition_Ordonnancement(Fichier & ".txt");
END IF;
IF Reponse(1) = 'l' THEN
Edition_Ligne(Fichier & ".txt");
END IF;
EXCEPTION
WHEN Erreur_Longueur => Put_Line(ErreurLongueur);
WHEN Erreur_Saisie => Put_Line(" Erreur : Saisir <o> ou <n>");
END;
END LOOP;
END Edition_Fichier;
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------EDITION_ORDONNANCEMENT------------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
PROCEDURE Edition_Ordonnancement(Fichier : String) IS
Ligne:String(1..NbCaracteresMaximumLigne):=(OTHERS=>' ') ;
LongueurLigne:Integer:=0;
CompteurLigne:Integer:=1;
NumeroLigne_Source,NumeroLigne_Destination,LongReponse:Integer:=0;
PosDebutCode,PosDebutDeclaration:Integer:=1;
Reponse:String(1..15);
NbPour,NbFinPour,NbCondition,NbFinCondition,NbTantQue,NbFinTantQue,Nb_Repeter,Nb_FRepeter:Integer:=0;
LignesCodeTemp:Tab_Lignes ;
MauvaisOrdonnancement:Boolean:=False;
BEGIN
New_Line;
Open(Fichiertype, In_File, Fichier);
Initialisation_Tab_Lignes;
WHILE NOT End_Of_File(Fichiertype) LOOP
Get_Line(Fichiertype, Ligne, LongueurLigne);
LignesCode(CompteurLigne)(1..Longueur_Ligne(Ligne)):=Ligne(1..Longueur_Ligne(Ligne));
CompteurLigne:=Integer'Succ(CompteurLigne);
Ligne:=Vider_Ligne;
END LOOP;
Close(Fichiertype);
LignesCodeTemp:=LignesCode;
LOOP
MauvaisOrdonnancement:=False;
BEGIN
WHILE PosDebutDeclaration < LignesCode'LENGTH AND THEN(LignesCode(PosDebutDeclaration)(ChaineDebutDeclaration'RANGE) /= ChaineDebutDeclaration) LOOP
PosDebutDeclaration:=PosDebutDeclaration+1;
END LOOP;
WHILE PosDebutCode < LignesCode'LENGTH AND THEN(LignesCode(PosDebutCode)(ChaineDebutCode'RANGE) /= ChaineDebutCode) LOOP
PosDebutCode:=PosDebutCode+1;
END LOOP;
Put(" => Saisir le numero de la ligne a deplacer : ");
Get(NumeroLigne_Source);
IF (NumeroLigne_Source = PosDebutCode) OR (NumeroLigne_Source = PosDebutDeclaration) THEN
RAISE Erreur_Ligne_Interdite;
END IF;
Put(" => Saisir le numero de la ligne au dessus de la quelle elle devrait etre : ");
Get(NumeroLigne_Destination);
Skip_Line;
IF (((NumeroLigne_Source<=PosDebutCode) AND (NumeroLigne_Destination>PosDebutCode)) OR ((NumeroLigne_Source>=PosDebutCode) AND (NumeroLigne_Destination<=PosDebutCode))) THEN
RAISE Erreur_Ordonnancement;
END IF;
WHILE NumeroLigne_Source < NumeroLigne_Destination LOOP
Vider_Ligne_Tab(0);
LignesCode(0)(1..Longueur_Ligne(LignesCode(NumeroLigne_Source))):=LignesCode(NumeroLigne_Source)(1..Longueur_Ligne(LignesCode(NumeroLigne_Source)));
Vider_Ligne_Tab(NumeroLigne_Source);
LignesCode(NumeroLigne_Source)(1..Longueur_Ligne(LignesCode(NumeroLigne_Source+1))):=LignesCode(NumeroLigne_Source+1)(1..Longueur_Ligne(LignesCode(NumeroLigne_Source+1)));
Vider_Ligne_Tab(NumeroLigne_Source+1);
LignesCode(NumeroLigne_Source+1)(1..Longueur_Ligne(LignesCode(0))):=LignesCode(0)(1..Longueur_Ligne(LignesCode(0)));
Vider_Ligne_Tab(0);
NumeroLigne_Source:=NumeroLigne_Source + 1;
END LOOP;
WHILE NumeroLigne_Source > NumeroLigne_Destination LOOP
Vider_Ligne_Tab(0);
LignesCode(0)(1..Longueur_Ligne(LignesCode(NumeroLigne_Source))):=LignesCode(NumeroLigne_Source)(1..Longueur_Ligne(LignesCode(NumeroLigne_Source)));
Vider_Ligne_Tab(NumeroLigne_Source);
LignesCode(NumeroLigne_Source)(1..Longueur_Ligne(LignesCode(NumeroLigne_Source-1))):=LignesCode(NumeroLigne_Source-1)(1..Longueur_Ligne(LignesCode(NumeroLigne_Source-1)));
Vider_Ligne_Tab(NumeroLigne_Source-1);
LignesCode(NumeroLigne_Source-1)(1..Longueur_Ligne(LignesCode(0))):=LignesCode(0)(1..Longueur_Ligne(LignesCode(0)));
Vider_Ligne_Tab(0);
NumeroLigne_Source:=NumeroLigne_Source - 1;
END LOOP;
FOR J IN LignesCode'RANGE LOOP
IF LignesCode(J)(1) /= ' ' THEN
IF Verification_Si(LignesCode(J)(1..Longueur_Ligne(LignesCode(J)))) THEN
NbCondition:=Integer'Succ(NbCondition);
ELSIF Verification_Fsi(LignesCode(J)(1..Longueur_Ligne(LignesCode(J)))) THEN
NbFinCondition:=Integer'Succ(NbFinCondition);
ELSIF Verification_Pour(LignesCode(J)(1..Longueur_Ligne(LignesCode(J)))) THEN
NbPour:=Integer'Succ(NbPour);
ELSIF Verification_Fpour(LignesCode(J)(1..Longueur_Ligne(LignesCode(J)))) THEN
NbFinPour:=Integer'Succ(NbFinPour);
ELSIF Verification_TantQue(LignesCode(J)(1..Longueur_Ligne(LignesCode(J)))) THEN
NbTantQue:=Integer'Succ(NbTantQue);
ELSIF Verification_Ftq(LignesCode(J)(1..Longueur_Ligne(LignesCode(J)))) THEN
NbFinTantQue:=Integer'Succ(NbFinTantQue);
ELSIF Verification_Repeter(LignesCode(J)(1..Longueur_Ligne(LignesCode(J)))) THEN
Nb_Repeter:=Integer'Succ(Nb_Repeter);
ELSIF Verification_Frepeter(LignesCode(J)(1..Longueur_Ligne(LignesCode(J)))) THEN
Nb_FRepeter:=Integer'Succ(Nb_FRepeter);
END IF;
END IF;
IF (NbCondition < NbFinCondition) OR (NbPour < NbFinPour) OR (NbTantQue < NbFinTantQue) OR (Nb_Repeter < Nb_FRepeter) THEN
MauvaisOrdonnancement:=True;
END IF;
END LOOP;
IF MauvaisOrdonnancement THEN
LignesCode:=LignesCodeTemp;
RAISE Erreur_Condition;
ELSE
Open(FichierType, Out_File, Fichier);
FOR I IN LignesCode'RANGE LOOP
IF LignesCode(I)(1) /= ' ' THEN
Put(FichierType, LignesCode(I)(1..Longueur_Ligne(LignesCode(I))));
New_Line(FichierType);
END IF;
END LOOP;
Close(FichierType);
EXIT;
END IF;
EXCEPTION
WHEN Erreur_Ordonnancement => Put_Line(" Erreur : Impossible d'inverser declaration et code");
WHEN Erreur_Ligne_Interdite => Put_Line(" Erreur : Impossible de deplacer '-code' ou '-declaration'");
WHEN Erreur_Condition => Put_Line(" Erreur : Deplacement illicite !");
END;
END LOOP;
LOOP
BEGIN
Reponse(1..15):=(OTHERS=>' ');
New_Line;
Skip_Line;
Put("Voulez-vous continuer l'ordonnancement ? o/n : ");
Get_Line(Reponse, LongReponse);
EXIT WHEN Reponse(1) = 'n';
IF LongReponse = 0 THEN
RAISE Erreur_Longueur;
ELSIF Reponse(1) /= 'n' AND Reponse(1) /= 'o' THEN
RAISE Erreur_Saisie;
ELSIF Reponse(1) = 'o' THEN
Edition_Ordonnancement(Fichier);
ELSE
EXIT;
END IF;
EXCEPTION
WHEN Erreur_Ordonnancement => Put_Line(" Erreur : Une ligne de code n'est pas une declaration.");
WHEN Erreur_Longueur => Put_Line(ErreurLongueur);
WHEN Erreur_Saisie => Put_Line(" Erreur : Saisir <o> ou <n>");
END;
END LOOP;
END Edition_Ordonnancement;
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------AFFICHER_ALGO---------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
PROCEDURE Afficher_Algo(Fichier:String) IS
CompteurLigne:Integer:=1;
Ligne:String(1..NbCaracteresMaximumLigne);
LongLigne:Integer:=0;
BEGIN
Open(Fichiertype, In_File, Fichier & ".txt");
WHILE NOT End_Of_File (Fichiertype) LOOP
Get_Line(Fichiertype, Ligne, LongLigne);
--On decalle le code pour la lisibilité.
Put(" ");
IF Ligne(ChaineDebutCode'RANGE) /= ChaineDebutCode AND Ligne(ChaineDebutDeclaration'RANGE) /= ChaineDebutDeclaration AND Ligne(1) /= ' ' THEN
Put(Integer'Image(CompteurLigne) & " : ");
END IF;
Put(Ligne(1..LongLigne));
New_Line;
CompteurLigne:=Integer'Succ(CompteurLigne);
END LOOP;
Close(FichierType);
END Afficher_Algo;
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------EDITION_LIGNE---------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
PROCEDURE Edition_Ligne(Fichier:String) IS
Ligne,LigneModifiee:String(1..NbCaracteresMaximumLigne):=(OTHERS=>' ');
LongLigne, LongLigneModifiee:Integer:=0;
CompteurLigne:Integer:=1;
NumeroLigne:Integer:=0;
BEGIN
Initialisation_Tab_Lignes;
Open(Fichiertype, In_File, Fichier);
WHILE NOT End_Of_File(Fichiertype) LOOP
Get_Line(Fichiertype, Ligne, LongLigne);
LignesCode(CompteurLigne)(1..LongLigne):=Ligne(1..LongLigne);
CompteurLigne:=Integer'Succ(CompteurLigne);
END LOOP;
Close(FichierType);
LOOP
BEGIN
Put(" => Quelle ligne souhaitez vous modifier ? ");
Get(NumeroLigne);
New_Line;
IF NumeroLigne < 0 THEN
RAISE DATA_ERROR;
END IF;
EXIT WHEN NumeroLigne > 0 AND NumeroLigne <= LignesCode'LENGTH;
EXCEPTION
WHEN OTHERS => Put(" Erreur : Mauvaise saisie");
END;
END LOOP;
Skip_Line;
Put("Saisissez la ligne modifiee : ");
New_Line;
Put(" => ");
Get_Line(LigneModifiee, LongLigneModifiee);
Vider_Ligne_Tab(NumeroLigne);
LignesCode(NumeroLigne)(1..LongLigneModifiee):=LigneModifiee(1..LongLigneModifiee);
Open(FichierType, Out_File, Fichier);
FOR I IN LignesCode'RANGE LOOP
IF LignesCode(I)(1) /= ' ' THEN
Put(FichierType, LignesCode(I)(1..Longueur_Ligne(LignesCode(I))));
P_Creation.Retour_Ligne(FichierType);
END IF;
END LOOP;
Close(FichierType);
END Edition_Ligne;
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------INITIALISATION_TAB_LIGNES---------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
PROCEDURE Initialisation_Tab_Lignes IS
BEGIN
FOR I IN LignesCode'RANGE LOOP
LignesCode(I):=(OTHERS=>' ');
END LOOP;
END Initialisation_Tab_Lignes;
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------LONGUEUR_LIGNE-------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
FUNCTION Longueur_Ligne(Ligne:String) RETURN Integer IS
Retour:Integer:=0;
BEGIN
FOR I IN 1..Ligne'Length - 1 LOOP
IF Ligne(I) = ' ' AND Ligne(I+1) = ' ' THEN
RETURN I-1;
END IF;
END LOOP;
FOR I IN Ligne'RANGE LOOP
Retour:=Integer'Succ(Retour);
END LOOP;
RETURN Retour;
END Longueur_Ligne;
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------VIDER_LIGNE_TAB-------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
PROCEDURE Vider_Ligne_Tab(NumeroLigne:Integer) IS
BEGIN
FOR I IN 1..NbCaracteresMaximumLigne LOOP
LignesCode(NumeroLigne)(I):= ' ';
END LOOP;
END Vider_Ligne_Tab;
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------VIDER_LIGNE-----------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
FUNCTION Vider_Ligne RETURN String IS
Ligne_Espace:String(1..NbCaracteresMaximumLigne);
BEGIN
FOR I IN 1..NbCaracteresMaximumLigne LOOP
Ligne_Espace(I):=' ';
END LOOP;
RETURN Ligne_Espace;
END Vider_Ligne;
END P_Edition;