-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBibliotheque.java
More file actions
144 lines (113 loc) · 3.39 KB
/
Bibliotheque.java
File metadata and controls
144 lines (113 loc) · 3.39 KB
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
package com.example;
public class Bibliotheque {
private Ouvrage[] listeOuvrage;
private Abonne[] listeAbonne;
private int nbreOuvrage;
private int nbreAbonne;
public Bibliotheque(int taille_listeOuvrage, int taille_listeAbonne) {
this.listeOuvrage = new Ouvrage[taille_listeOuvrage];
this.listeAbonne = new Abonne[taille_listeAbonne];
this.nbreOuvrage = 0;
this.nbreAbonne = 0;
}
public boolean ajoutOuvrage(Ouvrage ouvrage){
if(this.nbreOuvrage >= this.listeOuvrage.length) return false;
boolean isFound = false;
for(int i=0;i<this.nbreOuvrage;i++){
if (this.listeOuvrage[i].titre.equals(ouvrage.titre)){
isFound = true;
break;
}
}
if (isFound) return false;
this.listeOuvrage[this.nbreOuvrage++] = ouvrage;
return true;
}
public Ouvrage getOuvrage(String titre){
for(int i=0;i<this.nbreOuvrage;i++){
if (this.listeOuvrage[i].titre.equals(titre)){
return this.listeOuvrage[i];
}
}
return null;
}
public boolean ajoutAbonne(Abonne abonne){
if(this.nbreAbonne >= this.listeAbonne.length) return false;
boolean isFound = false;
for(int i=0;i<this.nbreAbonne;i++){
if (this.listeAbonne[i].getNumAbonnement() == abonne.getNumAbonnement()){
isFound = true;
break;
}
}
if (isFound) return false;
this.listeAbonne[this.nbreAbonne++] = abonne;
return true;
}
public Abonne getAbonne(int numId){
for(int i=0;i<this.nbreAbonne;i++){
if (this.listeAbonne[i].getNumId() == numId){
return this.listeAbonne[i];
}
}
return null;
}
public boolean emprunter(String titre,int numId){
Ouvrage ouvrage = this.getOuvrage(titre);
Abonne abonne = this.getAbonne(numId);
if (ouvrage == null || abonne == null) return false;
if (abonne.getOuvragePris() != null) return false;
if (!ouvrage.existe) return false;
abonne.setOuvragePris(ouvrage);
ouvrage.existe = false;
return true;
}
public void rendre(int numId){
Abonne abonne = this.getAbonne(numId);
if (abonne == null) return;
Ouvrage ouvrage = abonne.getOuvragePris();
if (ouvrage == null) return;
ouvrage.existe = true;
abonne.setOuvragePris(null);
}
public void Info(){
System.out.println("Liste des ouvrages :");
for(int i=0;i<this.nbreOuvrage;i++){
System.out.println(this.listeOuvrage[i].toString());
}
System.out.println("Liste des abonnes :");
for(int i=0;i<this.nbreAbonne;i++){
if (this.listeAbonne[i].getOuvragePris() != null){
System.out.println(this.listeAbonne[i].toString()+" a emprunte "+this.listeAbonne[i].getOuvragePris().toString());
}
}
}
public Video[] ListeVideos(){
int listeVideoLength = 0;
for(int i=0;i<this.nbreOuvrage;i++){
if (this.listeOuvrage[i] instanceof Video){
listeVideoLength++;
}
}
Video[] listeVideo = new Video[listeVideoLength];
int nbreVideo = 0;
for(int i=0;i<this.nbreOuvrage;i++){
if (this.listeOuvrage[i].getClass().getSimpleName().equals("Video")){
listeVideo[nbreVideo++] = (Video) this.listeOuvrage[i];
}
}
return listeVideo;
}
public Bibliotheque BibLivre(){
Bibliotheque bibLivre = new Bibliotheque(this.nbreOuvrage,this.nbreAbonne);
for(int i=0;i<this.nbreOuvrage;i++){
if (this.listeOuvrage[i].getClass().getSimpleName().equals("Livre")){
bibLivre.ajoutOuvrage(this.listeOuvrage[i]);
}
}
// for(int i=0;i<this.nbreAbonne;i++){
// bibLivre.ajoutAbonne(this.listeAbonne[i]);
// }
return bibLivre;
}
}