-
Notifications
You must be signed in to change notification settings - Fork 0
/
odczyt.h
305 lines (267 loc) · 6.54 KB
/
odczyt.h
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
#ifndef ODCZYT_H_INCLUDED
#define ODCZYT_H_INCLUDED
#define B_AND_W 49
#define GR_SCALE 50
#define COLOR 51
#define MAGIC_NUMBER 1
#define STOP -1
#define WORK 1
void error();
void mallocuj_tablice(element *temp);
void nazwa_obrazka(element *temp, int *dzialaj);
void numeruj(element *first);
void odczyt_komentarza(FILE *pFile,element * temp);
int pobierz_obraz(FILE *pFile, element *temp);
int pobierz_tablice(FILE *pFile, element *temp);
element *push(element *, element *);
int sprawdz_odcienie(FILE *pFile, element *temp);
void sprawdz_komentarz(FILE *pFile, element *temp);
int sprawdz_typ(FILE *pFile, element *temp);
int sprawdz_wymiary(FILE *pFile, element *temp);
element * wczytajobraz(element*);
element * zapisz_bufor(element *glowny, element *temp);
void zwolnij_tablice(element *temp);
void error()
{
while((getchar()) != '\n');
printf("zła komenda\n");
}
void mallocuj_tablice(element *temp)
{
int licznik=0;
temp->obraz = (int**)malloc(temp->wymx * sizeof(int*));
for(licznik = 0; licznik < temp->wymx; licznik++)
temp->obraz[licznik] = (int*)malloc(temp->wymy * sizeof(int));
}
void nazwa_obrazka(element *temp, int *dzialaj)
{
printf("podaj nazwę obrazka do załadowania do bazy: ");
if ( scanf("%19s", temp->nazwa) != 1 )
{
error();
*dzialaj = STOP;
}
}
void numeruj(element *first)
{
int licznik=0;
if(first==NULL)
{
printf("lista jest pusta\n");
}
else
{
do
{
licznik++;
first->numer=licznik;
first=first->next; //modyfikuijmy tylko kopie wskaznika!
}
while(first!=NULL);
}
}
void odczyt_komentarza(FILE *pFile, element *temp)
{
int licznik=0;
char tempcomment[MAXCOMMENT];
char znak=0;
do
{
znak=fgetc(pFile);
tempcomment[licznik] = znak;
licznik++;
}
while ( znak != '\n');
tempcomment[licznik] = '\0';
if(strlen(temp->comment)+strlen(tempcomment) < MAXCOMMENT-1)
strcat(temp->comment, tempcomment);
}
int pobierz_obraz(FILE *pFile, element *temp)
{
switch ( temp->type[MAGIC_NUMBER] )
{
case B_AND_W:
if ( pobierz_tablice(pFile, temp) == WORK )
return WORK;
else
return STOP;
break;
case GR_SCALE:
sprawdz_komentarz(pFile, temp);
if( sprawdz_odcienie(pFile, temp) )
{
sprawdz_komentarz(pFile, temp);
if( pobierz_tablice(pFile, temp) == WORK )
return WORK;
else return STOP;
}
else
{
return STOP;
}
break;
case COLOR:
printf("program nie umozliwia jeszcze obsługi kolorowych obrazów\n");
return STOP;
break;
default:
return STOP;
}
}
int pobierz_tablice(FILE *pFile, element *temp)
{
mallocuj_tablice(temp);
int licznik_y=0, licznik_x=0;
int counter=0;
for(licznik_y=0; licznik_y<temp->wymy; licznik_y++)
{
for(licznik_x=0; licznik_x<temp->wymx; licznik_x++)
if(fscanf(pFile, "%d", &temp->obraz[licznik_x][licznik_y] ))
{
counter++;
}
}
if (counter == temp->wymx*temp->wymy)
return WORK;
return STOP;
}
element *push(element *first, element *newone)
{
element *temp=first;
if(first==NULL)
return newone;
while(temp->next!=NULL)
temp=temp->next;
temp->next=newone;
return first;
}
int sprawdz_odcienie(FILE *pFile, element *temp)
{
char test ;
do
{
test = fgetc(pFile);
}
while (test > '0' && test <= '9');
fseek(pFile, -1, SEEK_CUR);
if ( fscanf( pFile, "%d", &temp->odcienie) )
{
char endline=0;
while ( (endline=fgetc(pFile)) != '\n');
return WORK;
}
return STOP;
}
void sprawdz_komentarz(FILE *pFile, element *temp)
{
char test = 0;
test = fgetc(pFile);
fseek(pFile, -1, SEEK_CUR);
if( test == '#' )
{
odczyt_komentarza(pFile, temp);
sprawdz_komentarz(pFile, temp);
}
else
fseek(pFile, -1, SEEK_CUR);
}
int sprawdz_typ(FILE *pFile, element *temp)
{
temp->type[0] = fgetc(pFile);
if(temp->type[0] == 'P')
{
temp->type[MAGIC_NUMBER] = fgetc(pFile);
if( (temp->type[MAGIC_NUMBER] == B_AND_W) || (temp->type[MAGIC_NUMBER] == GR_SCALE) || (temp->type[MAGIC_NUMBER] == COLOR) )
{
temp->type[2] = '\0';
char endline=0;
while ( (endline=fgetc(pFile)) != '\n');
return WORK;
}
else return STOP;
}
else return STOP;
}
int sprawdz_wymiary(FILE *pFile, element *temp)
{
char test ;
do
{
test = fgetc(pFile);
}
while (test > '0' && test <= '9');
fseek(pFile, -1, SEEK_CUR);
if (fscanf(pFile, "%d", &temp->wymx))
{
if (fscanf(pFile, "%d", &temp->wymy))
{
char endline=0;
while ( (endline=fgetc(pFile)) != '\n');
return WORK;
}
else return STOP;
}
else return STOP;
}
element * wczytajobraz(element *lista)
{
element *temp;
temp=(element*)malloc(sizeof(element));
int dzialaj = WORK;
nazwa_obrazka(temp, &dzialaj);
FILE * pFile;
pFile=fopen( temp->nazwa, "rt");
if(pFile==NULL)
{
dzialaj = STOP;
perror("blad otwarcia pliku");
free(temp);
return lista;
}
else
{
sprawdz_komentarz(pFile, temp);
if ( (sprawdz_typ(pFile, temp)) == WORK )
{
sprawdz_komentarz(pFile, temp);
if( sprawdz_wymiary(pFile, temp) == WORK )
{
sprawdz_komentarz(pFile, temp);
dzialaj = pobierz_obraz(pFile, temp);
temp->czy_zmieniony = NIE;
}
else
dzialaj=STOP; //flaga error
}
else
dzialaj=STOP; //flaga error
fclose(pFile);
}
if( dzialaj == WORK )
{
temp->next = NULL;
lista = zapisz_bufor(lista, temp);
return lista;
}
else
{
printf("program napotkał błąd przy odczycie danych obrazu\n");
free(temp);
return lista;
}
}
element * zapisz_bufor(element *glowny, element *temp)
{
glowny = push(glowny, temp);
temp->next = NULL;
numeruj( glowny );
return glowny;
}
void zwolnij_tablice(element *temp)
{
int licznik=0;
for(licznik = 0; licznik < temp->wymx; licznik++)
free(temp->obraz[licznik]);
free(temp->obraz);
}
#endif // ODCZYT_H_INCLUDED