-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.c.bak
286 lines (219 loc) · 7.6 KB
/
books.c.bak
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
#include "books.h"
#include <stdio.h>
#include <stdlib.h>
void new_book_fill(Library *(*new_node)) {
char buffer[100]; /// grab strings
int numbers; /// grab numbers
gets(buffer); /// flush enter
printf(" Podaj dane dotycz¥ce ksi¥¾ki, kolejno:\n\n");
printf(" Tytuˆ: ");
gets(buffer);
strcpy((*new_node)->title, buffer);
printf("\n Autor: ");
gets(buffer);
strcpy((*new_node)->author, buffer);
printf("\n Rok wydania: ");
scanf(" %d",&numbers);
gets(buffer);
(*new_node)->year = numbers;
printf("\n Gatunek ksi¥¾ki: ");
gets(buffer);
strcpy((*new_node)->genre, buffer);
printf("\n Liczba kopii dost©pnych na stanie: ");
scanf(" %d",&numbers);
(*new_node)->copies = numbers;
printf("\n Liczba wypo¾yczonych obecnie kopii: ");
scanf(" %d",&numbers);
(*new_node)->borrowed = numbers;
}
void add_new_book(Library **base_pointer, int id) {
Library *new_book = (Library*)malloc(sizeof(Library));
if(new_book!=NULL)
{
new_book->next = *base_pointer;
*base_pointer = new_book;
new_book->id = id;
new_book_fill(&new_book);
}
}
void delete_base(Library **base_pointer) {
while(*base_pointer!=NULL) {
Library *next = (*base_pointer)->next;
free(*base_pointer);
*base_pointer=next;
}
}
void search_for_book(Library *base_pointer)
{
int id_to_search;
printf("\n Wpisz id ksi¥¾ki jak¥ chcesz znale«†: ");
scanf(" %d",&id_to_search);
Library *temporary_pointer = base_pointer;
while(((temporary_pointer)->id!=id_to_search)&&(temporary_pointer!=NULL))
{
temporary_pointer=temporary_pointer->next;
}
if(temporary_pointer!=NULL)
{
printf(" %3d. ",temporary_pointer->id);
printf(" %-10s ",temporary_pointer->title);
printf(" %4d. ",temporary_pointer->year);
printf(" %-10s ",temporary_pointer->author);
printf(" %-10s ",temporary_pointer->genre);
printf(" %4d. ",temporary_pointer->copies);
printf(" %4d. ",temporary_pointer->borrowed);
}
else
printf(" Brak ksi¥¾ek speˆniaj¥cych kryteria\n");
}
void delete_book(Library **base_pointer){
int id;
printf(" Wpisz id ksi¥¾ki, kt¢r¥ chcesz usun¥† z bazy: ");
scanf(" %d",&id);
Library *tmp_pointer=*base_pointer;
if((*base_pointer)->id==id){
*base_pointer=(*base_pointer)->next;
free(tmp_pointer);
printf("\n Usuni©cie ksi¥¾ki zakoäczone sukcesem.\n");
} else {
Library *one_book_before;
while((tmp_pointer!=NULL)&&(tmp_pointer->id!=id)){
one_book_before=tmp_pointer;
tmp_pointer=tmp_pointer->next;
}
Library *tmp_pointer_2=one_book_before->next;
if(one_book_before!=NULL) {
one_book_before->next=tmp_pointer_2->next;
free(tmp_pointer_2);
}
}
}
void cout_base(Library *base_pointer) {
if (base_pointer!=NULL)
{
cout_base(base_pointer->next);
printf("ID: %d ",base_pointer->id);
printf("tytuˆ: %-10s ",base_pointer->title);
printf("rok: %4d ",base_pointer->year);
printf("autor: %-10s ",base_pointer->author);
printf("Gatunek: %-10s ",base_pointer->genre);
printf("Dost©pne kopie: %d ",base_pointer->copies);
printf("Wypo¾yczonych: %d \n",base_pointer->borrowed);
}
}
void write_to_file(Library *base_pointer)
{
FILE *file1;
file1=fopen("books.txt", "w");
file1=fopen("books.txt", "a");
if(file1==NULL)
printf(" Wyst¥piˆ bˆ¥d z plikiem books.txt\n");
else
{
if(base_pointer!=NULL)
{
write_to_file(base_pointer->next);
fprintf(file1,"%d",base_pointer->id);
fprintf(file1," %-s",base_pointer->title);
fprintf(file1," %s",base_pointer->author);
fprintf(file1," %d",base_pointer->year);
fprintf(file1," %s",base_pointer->genre);
fprintf(file1," %d",base_pointer->copies);
fprintf(file1," %d\n",base_pointer->borrowed);
}
}
fclose(file1);
}
void read_file1()
{
char letter;
FILE *file1;
file1=fopen("books.txt", "r");
while((letter=fgetc(file1))!=EOF)
{
printf("%c",letter);
}
fclose(file1);
}
void edit_book(Library *base_pointer) {
char buffer[100];
int numbers;
printf("Wpisz nazwę książki, którą chcesz edytować: ");
gets(buffer);
gets(buffer);
Library *temporary_pointer = base_pointer;
while((strcmp((temporary_pointer)->title,buffer)!=0)&&(temporary_pointer!=NULL))
{
temporary_pointer=temporary_pointer->next;
}
if(temporary_pointer!=NULL)
{
printf(" UWAGA edycja danych o książce:\n\n");
printf(" Tytuˆ: ");
printf("\n%-10s",temporary_pointer->title);
printf(" Czy chcesz go zmienić? Kropka pomija podpunkt\n");
gets(buffer);
if(buffer!='.')
strcpy(temporary_pointer->title, buffer);
printf("\n Autor: ");
printf("\n%-10s",temporary_pointer->author);
printf(" Czy chcesz go zmienić? Kropka pomija podpunkt\n");
gets(buffer);
if(buffer!='.')
strcpy(temporary_pointer->author, buffer);
printf("\n Rok wydania: ");
printf("\n%4d",temporary_pointer->year);
printf(" Czy chcesz go zmienić? Wartość mniejsza lub równa zero pomija podpunkt\n");
scanf(" %d",&numbers);
gets(buffer);
if(numbers>0)
temporary_pointer->year = numbers;
printf("\n Gatunek ksi¥¾ki: ");
printf("\n%-10s",temporary_pointer->genre);
printf(" Czy chcesz go zmienić? Kropka pomija podpunkt\n");
gets(buffer);
if(buffer!='.')
strcpy(temporary_pointer->genre, buffer);
printf("\n Liczba kopii dost©pnych na stanie: ");
printf("%d\n",temporary_pointer->copies);
printf(" Czy chcesz go zmienić? Wartość mniejsza lub równa zero pomija podpunkt\n");
scanf(" %d",&numbers);
gets(buffer);
if(numbers>0)
temporary_pointer->copies = numbers;
printf("\n Liczba wypo¾yczonych obecnie kopii: ");
printf("%d\n",temporary_pointer->borrowed);
printf(" Czy chcesz go zmienić? Wartość mniejsza lub równa zero pomija podpunkt\n");
scanf(" %d",&numbers);
if(numbers>0)
temporary_pointer->borrowed = numbers;
}
else
printf("Nie znaleziono takiej ksiażki");
}
void sort_book_list(Library *base_pointer){
Library *wsk=base_pointer;
int choice_one=0;
int choice_two=0;
///NOTE add system(CLEAR) before this function
printf(" Wybierz po jakim polu chcesz sortować książki? Oto opcje:\n");
printf(" 1. Tytuł\n");
printf(" 2. Autor\n");
printf(" 3. Rok wydania\n");
printf(" 4. Gatunek książki");
printf(" 5. Liczba kopii dostępnych na stanie\n");
printf(" 6. Liczba wypożyczonych obecnie kopii\n");
printf(" Twój wybór: ");
scanf(" %d",&choice_one);
while((choice_one<1)||(choice_one>6)){
printf("\n Nie wybrano poprawnie, spróbuj ponownie: ");
scanf(" %d",&choice_one);
}
printf("\n Wybierz kolejność sortowania: ");
printf("\n 1. Ma")
switch(choice) {
case 1:
printf("\n Wybrano sortowanie po tytule, wykonuję...");
}
}
/// ąćęńółżź