-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfile_utils.c
223 lines (209 loc) · 6.18 KB
/
file_utils.c
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
#include "file_utils.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int count_fixed(Board* board);
int check_only_digits(const char* path);
/* write current board to path in file format
mark if fixed. if in edit mode all is fixed.*/
int write_file_from_board (Board* board,const char* path){
int i,j,size;
FILE* fptr;
const char* w = "w";
fptr = fopen(path,w);
if(fptr ==NULL){
printf("Error: invalid file.\n");
return 0;
}
size = board->num_of_rows*board->num_of_columns;
fprintf(fptr,"%d %d\n",board->num_of_rows,board->num_of_columns);
for(i=0;i<size;i++){
for(j=0;j<size;j++){
if(board->fixed_board[i][j] != BOARD_NULL_VALUE){
fprintf(fptr,"%d. ",board->fixed_board[i][j]);
}
else{
if(board->cur_board[i][j] != BOARD_NULL_VALUE && board->mode == SOLVE){
fprintf(fptr,"%d ",board->cur_board[i][j]);
}
else
{
if(board->cur_board[i][j] != BOARD_NULL_VALUE && board->mode == EDIT){
fprintf(fptr,"%d. ",board->cur_board[i][j]);
}
else
fprintf(fptr,"0 ");
}
}
}
fprintf(fptr,"\n");
}
fclose(fptr);
return 0;
}
/* write vaild file to Board
return -1 if didn't create_empty_board
return 0 if not vaild file:
correct format, enough values, correct range, fixed cells are legal*/
int read_file_to_board(Board* board, const char* path, int check_errors){
int row,col,size;
int value,count,count_scan,count_dot,count_char;
int i,j;
char ch;
FILE* fptr;
const char* r = "r";
int count_dots;
fptr = fopen(path,r);
if(fptr ==NULL){
printf("Error: the file/path might not exist or could not be opened.\n");
return -1;
}
count_dots = check_only_digits(path);
if(count_dots==-1){
printf("Error: file contain unwelcome chars.\n");
fclose(fptr);
return -1;
}
row = 0;
col = 0;
count = 0;
while(!feof(fptr) && count<2){
count_scan = 0;
count_scan = fscanf(fptr,"%d",&value);
if(count_scan == 1){
if(count == 0){
row = value;
count++;
}
else {
col = value;
count++;
}
}
}
if(count<2){
printf("Error: file not in right format.\n");
fclose(fptr);
return -1;
}
create_empty_board(board,row,col);
size = row*col;
count_dot = 0;
count_char = 0;
i = 0;
j = 0;
while(!feof(fptr) && i<size){
count_scan = 0;
count_scan = fscanf(fptr,"%d",&value);
count_char =0;
count_dot = 0;
if(!feof(fptr)){
count_char = fscanf(fptr,"%c",&ch); /*sure not another int*/
if(count_char == 1 && ch == '.'){
count_dot = 1;}
}
if(count_scan == 1){
if(value > size || value < 0){
printf("Error: file contain value out of range.\n");
fclose(fptr);
return 0;
}
if(count_dot == 1){
if(value == 0){
printf("Error: file not in right format.\n");
fclose(fptr);
return 0;
}
else{
if(check_errors == 0){
board->fixed_board[i][j]=value;
}
else{
if(is_legal(i,j,value,board,1)){
board->fixed_board[i][j]=value;
}
else
{
printf("Error: fixed cells are ilegal.\n");
fclose(fptr);
return 0;
}
}
}
}
if(value == 0){
board->cur_board[i][j]=BOARD_NULL_VALUE;
}
else{
board->cur_board[i][j]=value;
board->count_filled++;
}
if(j!=size-1){
j++;
}
else{
i++;
j=0;
}
}
}
if(i!=size){
printf("Error: file contain not enough values.\n");
fclose(fptr);
return 0;
}
count_scan = fscanf(fptr,"%d",&value);
if(count_scan == 1){
printf("Error: file contain too many values.\n");
fclose(fptr);
return 0;
}
if(count_dots != count_fixed(board)){
printf("Error: file not in right format.\n");
fclose(fptr);
return 0;
}
fclose(fptr);
return 1;
}
/* check if there are chars which different than spaces, numbers and dot
return -1 if there is, otherwise return counter of dots in file*/
int check_only_digits(const char* path){
int count_dots = 0;
FILE* fptr;
const char* r = "r";
char ch;
unsigned char ch1;
fptr = fopen(path,r);
/*called if opened ok, but to make sure:*/
if(fptr ==NULL){
return -1;
}
while ((ch=getc(fptr))!=EOF)
{
ch1= (unsigned char) ch;
if((ch1 < '0' || ch1 > '9') && ch1 != ' ' && ch1 != '\n' && ch1!='\t' && ch1!='\r' && ch1!='.'){
fclose(fptr);
return -1;
}
if(ch1 == '.'){
count_dots++;
}
}
fclose(fptr);
return count_dots;
}
/* in order to check if equal to counter of dot in file*/
int count_fixed(Board* board){
int i, j;
int count = 0;
int size = (board->num_of_rows)*(board->num_of_columns);
for (i=0; i<size; i++){
for (j=0; j<size; j++){
if(board->fixed_board[i][j]!=BOARD_NULL_VALUE){
count++;
}
}
}
return count;
}