-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspreadsheet.c
652 lines (568 loc) · 19.8 KB
/
spreadsheet.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
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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
/*
Project Name: Spreadsheet Manager Lite v0.1
Objective: Primary objective of this program is to create, view and edit
CSV ( Comma Separated Value ) based spreadsheet files.
By:
Arman Hossain
ID: 161071014
CSE 11'th Batch
Shanto-Mariam University
of Creative Technology
Mail: 2006arman [at] gmail.com
GitHub: http://github.com/arman-bd
*/
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
const int VIEW = 0;
const int EDIT = 1;
struct text_32b {
char value[32]; // 128 Byte string
};
struct text_128b {
char value[128]; // 128 Byte string
};
struct text_1k {
char value[1024]; // 1 KB string
};
struct text_64k {
char value[65536]; // 64 KB string
};
typedef struct text_32b str32;
typedef struct text_128b str128;
typedef struct text_1k str1k;
typedef struct text_64k str64k;
int file_action();
int file_ask(int edit);
int file_exists(char file_name[128]);
int file_parse(char file_name[128], int mode);
int file_create();
int file_display(char file_name[128], int row_count, int column_count,
int column_width[32], str32 columns[32], str32 row_data[512][32]);
int file_edit(char file_name[128], int row_count, int column_count,
int column_width[32], str32 columns[32], str32 row_data[512][32]);
int file_save(char file_name[128], int row_count, int column_count,
int column_width[32], str32 columns[32], str32 row_data[512][32]);
int main(){
/*
Here we show the name of application
then we enter the main loop of program.
*/
printf(":: Spreadsheet Manager Lite - v0.1 ::\n\n");
while(file_action()){}
}
int file_action(){
/*
This is the function where user is prompted to enter
what he/she wants perform with this application.
Core / Basic functionality includes create, edit and view
of spreadsheet file. There is also an exit option to close
the program.
*/
int action;
printf("\nWhat Do You Want To Do?");
printf("\n[ 1 ] Create Spreadsheet");
printf("\n[ 2 ] Edit Spreadsheet");
printf("\n[ 3 ] View Spreadsheet");
printf("\n[ 4 ] Exit Program");
printf("\n> ");
fflush(stdin);
while(scanf("%d", &action)){
if(action == 1 || action == 2 || action == 3 || action == 4){
if(action == 1){
file_create();
break;
}
if(action == 2){
file_ask(EDIT);
break;
}
if(action == 3){
file_ask(VIEW);
break;
}
if(action == 4){
printf("\nThank You for using Spreadsheet Manager Lite...");
printf("\n\n");
exit(EXIT_SUCCESS);
}
}
printf("\nInvalid Input!");
printf("\n> ");
fflush(stdin);
}
}
int file_ask(int mode){
/*
This function is called to ask user for file name to open.
Upon entering a file name, there is a verification process
where it is checked whether file exists or not.
Then file name is sent to display file function.
If file does not exists then user is prompted to reenter
the file name and the process revolves around.
@mode : {VIEW = 0, EDIT = 1}
*/
char f_name[128];
reload_file:
printf("\nEnter File Name: ");
fflush(stdin); // Flush STDIN
scanf("%[^\n]s", f_name);
if(!file_exists(f_name)){
printf("\nError: File Does Not Exists!\n");
goto reload_file;
}else{
if(mode == VIEW){
// Just Show The File Content
file_parse(f_name, VIEW);
}
if(mode == EDIT){
// Show File Content
file_parse(f_name, EDIT);
}
}
}
int file_exists(char file_name[128]){
// Check If File Exists
FILE *fp;
if((fp = fopen(file_name, "r")) != NULL){
fclose(fp);
return 1;
}else{
return 0;
}
}
int file_parse(char file_name[128], int mode){
/*
This function open and parse the CSV ( Comma Separated File )
in a structured manner. This function is used for both
edit and view file.
@file_name: file name
@mode : {VIEW = 0, EDIT = 1}
*/
FILE *fp;
char buffer;
int i = 0, j = 0;
int file_size = 0;
struct text_64k file_data;
// Data
char *data;
int line_count = 0;
int row_count = 0;
int column_count = 0;
int c_num = 0; // Counting Columns for Processing
int column_width[32]; // Column Width for Styling
// Array
str1k data_pack[512];
str32 columns[32]; // Max 32 Column
str32 row_data[512][32]; // 512 row with 32 column
if((fp = fopen(file_name, "r")) != NULL){
while((buffer = getc(fp)) != EOF){
file_data.value[file_size] = buffer;
file_size++;
}
fclose(fp);
// Load Data Into Array
data = strtok(file_data.value, "\n");
while(data != NULL){
strcpy(data_pack[line_count].value, data);
data = strtok(NULL, "\r\n"); // Next
line_count++;
}
for(i = 0; i < line_count; i++){
data = strtok(data_pack[i].value, ",");
c_num = 0;
while(data != NULL){
if(i == 0){
/* First Line Contains Column Information */
strcpy(columns[column_count].value, data);
// Get Width of Column for Styling
column_width[column_count] = strlen(data);
column_count++;
}else{
/* Row Count = i - 1; Total Row Count = i */
strcpy(row_data[i-1][c_num].value, data);
if(strlen(data) > column_width[c_num]){
// Get Maximum Width of Column for Styling
column_width[c_num] = strlen(data);
}
}
data = strtok(NULL, ","); // Next
c_num++;
}
row_count = i - 1;
}
}
if(mode == VIEW || mode == EDIT){
// Pass Data to Display Function
file_display(file_name, row_count, column_count,
column_width, columns, row_data);
}
if(mode == EDIT){
file_edit(file_name, row_count, column_count,
column_width, columns, row_data);
}
return 1;
}
int file_display(char file_name[128], int row_count, int column_count,
int column_width[32], str32 columns[32], str32 row_data[512][32]){
/*
This function displays a loaded and parsed CSV file in
structured format.
*/
int i, j;
printf("\n");
for(i = 0; i < row_count + 2; i++){ // +2 = (column + row_count + 1)
if(i == 0){
/* Print Header / Columns */
printf("\n |");
for(j = 0; j < column_count; j++){
// dash line before column names
printf("-%.*s-|", column_width[j], "-------------------------------");
}
printf("\n Col |");
for(j = 0; j < column_count; j++){
// column letter
// ASCII of A = 65, Z = 91
printf(" %c", j + 65);
printf("%.*s |", column_width[j] - 1, " ");
}
printf("\n |");
for(j = 0; j < column_count; j++){
// dash line before column names
printf("-%.*s-|", column_width[j], "-------------------------------");
}
printf("\n Row |");
for(j = 0; j < column_count; j++){
printf(" %s ", columns[j].value);
printf("%.*s|", column_width[j] - strlen(columns[j].value), " ");
}
printf("\n |");
for(j = 0; j < column_count; j++){
// dash line
printf("-%.*s-|", column_width[j], "-------------------------------");
}
}else{
printf("\n");
// For Adding Trailing Space(s) with Row Numbers.
if(i > 0 && i < 10){printf(" %d ", i);}
if(i > 9 && i < 100){printf(" %d ", i);}
if(i > 99 && i < 1000){printf(" %d ", i);}
if(i > 999 && i < 10000){printf(" %d", i);}
printf("|");
/* Print Rows */
for(j = 0; j < column_count; j++){
printf(" %s ", row_data[i-1][j].value);
printf("%.*s|", column_width[j] - strlen(row_data[i-1][j].value), " ");
}
printf("\n |");
for(j = 0; j < column_count; j++){
// dash line
printf("-%.*s-|", column_width[j], "-------------------------------");
}
}
}
printf("\n\n");
return 1;
}
int file_create(){
/*
This function is used to create a spreadsheet file.
*/
int i;
char y_n[8];
char file_name[128];
char column_name[32];
int row_count;
int column_count;
int column_width[32];
str32 columns[32];
str32 row_data[512][32];
file_create_reload:
printf("\nFile Name: ");
fflush(stdin); // Flush STDIN
scanf("%[^\n]s", file_name);
if(file_exists(file_name)){
printf("\nFile Already Exists. Override it?");
printf("\ny / n > ");
fflush(stdin); // Flush STDIN
scanf("%[^\n]s", y_n);
if(!strcmp(y_n, "y") || !strcmp(y_n, "Y")){
goto file_create_reload;
}
}
repeat_column_count:
printf("\nNumber Of Columns: ");
fflush(stdin);
scanf("%d", &column_count);
if(column_count < 1){
printf("\nError: Invalid Column Count!\n");
goto repeat_column_count;
}
printf("\nEnter Column Names: \n");
for(i = 0; i < column_count; i++){
repeat_column_name:
printf("%c: ", i + 65);
fflush(stdin);
scanf("%[^\n]s", column_name);
if(strlen(column_name) > 0){
strcpy(columns[i].value, column_name);
column_width[i] = strlen(column_name);
}else{
printf("\nError: Invalid Column Name\n");
goto repeat_column_name;
}
}
row_count = -1;
file_edit(file_name, row_count, column_count,
column_width, columns, row_data);
return 1;
}
int file_edit(char file_name[128], int row_count, int column_count,
int column_width[32], str32 columns[32], str32 row_data[512][32]){
int i, j;
char u_inp1[8];
char u_inp2[32];
char row_inp[4];
char save_as_file[128];
char y_n[8];
int column_id;
int row_id;
str32 field_data;
str32 blank_row[32];
str32 temp_row[32];
show_edit_help:
printf("\nEnter Field Name [ e.g: A1, B17, D52 ] to edit");
printf("\nType \"addrow\" to add new row.");
printf("\nType \"remrow\" to remove a row.");
printf("\nType \"remcol\" to remove a column.");
printf("\nType \"save\" to save to file.");
printf("\nType \"saveas\" to save as a new file.");
printf("\nType \"show\" to show current data table.");
printf("\nType \"help\" to show this command list.");
printf("\nType \"exit\" to go back.");
printf("\n\n> ");
fflush(stdin);
while(scanf("%s", u_inp1)){
if(strcmp(u_inp1, "addrow") == 0){
add_new_row:
// Add New Row
fflush(stdin);
printf("\nRow Position: ");
scanf("%d", &row_id);
printf("\n");
if(row_id >= 1 && row_id <= row_count + 2){
// Ask For Per-Column Input
for(i = 0; i < column_count; i++){
printf("[ %c ] %s: ", i + 65, columns[i].value);
fflush(stdin);
scanf("%[^\n]s", u_inp2);
strcpy(blank_row[i].value, u_inp2);
}
if(row_id == row_count + 2){
// Just Append
for(i = 0; i < column_count; i++){
row_data[row_id - 1][i] = blank_row[i];
if(strlen(blank_row[i].value) > column_width[i]){
// Get Maximum Width of Column for Styling
column_width[i] = strlen(blank_row[i].value);
}
}
}else{
// Shift Rows
for(i = row_count; i > row_id - 2; i--){
for(j = 0; j < column_count; j++){
row_data[i+1][j] = row_data[i][j];
}
}
for(i = 0; i < column_count; i++){
row_data[row_id - 1][i] = blank_row[i];
if(strlen(blank_row[i].value) > column_width[i]){
// Get Maximum Width of Column for Styling
column_width[i] = strlen(blank_row[i].value);
}
}
}
row_count++;
printf("\nNew Row Added At [ %d ]\n", row_id);
}else{
printf("\nError: Invalid Row Number!\n");
goto add_new_row;
}
}else if(strcmp(u_inp1, "remrow") == 0){
remove_row:
// Add New Row
fflush(stdin);
printf("\nRow Position: ");
scanf("%d", &row_id);
if(row_id >= 1 && row_id <= row_count + 1){
// Shift Rows
for(i = row_id; i < row_count + 1; i++){
for(j = 0; j < column_count; j++){
row_data[i-1][j] = row_data[i][j];
}
}
row_count--;
printf("Row Deleted [ %d ]\n", row_id);
}else{
printf("\nError: Invalid Row Number!\n");
goto remove_row;
}
}else if(strcmp(u_inp1, "remcol") == 0){
remove_col:
// Remove Column
fflush(stdin);
printf("\nColumn Alphabet: ");
scanf("%c", &u_inp2);
if(u_inp2[0] > 96 && u_inp2[0] < 123){ // a - z
u_inp2[0] = u_inp2[0] - 32; // Convert to A - Z
}
if(u_inp2[0] > 64 && u_inp2[0] < 91){ // A - Z
column_id = u_inp2[0] - 65;
}else{
printf("\nError: Invalid Column Alphabet!\n");
goto remove_col;
}
if(column_id >= 0 && column_id < column_count){
// Shift Header Columns
if(column_id < column_count - 1){
for(j = column_id; j < column_count - 1; j++){
columns[j] = columns[j+1];
}
}
// Delete Column from Each Row
for(i = 0; i < row_count; i++){
if(column_id < column_count - 1){
for(j = column_id; j < column_count - 1; j++){
row_data[i][j] = row_data[i][j+1];
}
}
}
column_count--;
printf("Column Deleted [ %c ]\n", column_id + 65);
}else{
printf("\nError: Invalid Column Alphabet!\n");
goto remove_col;
}
}else if(strcmp(u_inp1, "save") == 0){
// Save File [ Original ]
printf("\nSaving File...\n");
file_save(file_name, row_count, column_count,
column_width, columns, row_data);
break;
}else if(strcmp(u_inp1, "saveas") == 0){
// Save File As
file_save_as:
printf("\nSave File As: ");
fflush(stdin); // Flush STDIN
scanf("%[^\n]s", save_as_file);
if(file_exists(save_as_file)){
printf("\nFile Already Exists. Override it?");
printf("\ny / n > ");
fflush(stdin); // Flush STDIN
scanf("%[^\n]s", y_n);
if(strcmp(y_n, "y") || strcmp(y_n, "Y")){
file_save(save_as_file, row_count, column_count,
column_width, columns, row_data);
}else{
goto file_save_as;
}
}else{
file_save(save_as_file, row_count, column_count,
column_width, columns, row_data);
}
break;
}else if(strcmp(u_inp1, "exit") == 0){
// Exit and go back
printf("\nExiting Edit Mode...\n");
break;
}else if(strcmp(u_inp1, "show") == 0){
// Show Current Data Table
file_display(file_name, row_count, column_count,
column_width, columns, row_data);
}else if(strcmp(u_inp1, "help") == 0){
// Show Commands
goto show_edit_help;
}else{
// ASCII: A = 65, a = 97
if(u_inp1[0] > 96 && u_inp1[0] < 123){ // a - z
u_inp1[0] = u_inp1[0] - 32; // Convert to A - Z
}
if(u_inp1[0] > 64 && u_inp1[0] < 91){ // A - Z
column_id = u_inp1[0] - 65;
}else{
printf("\nError: Invalid Command!\n");
goto skip_edit_command;
}
if(column_id > column_count){
printf("\nError: Column Does Not Exists!\n");
goto skip_edit_command;
}
// ASCII for 0 = 48 & 9 = 57
u_inp1[0] = 48;
row_id = atoi(u_inp1) - 1;
if(atoi(u_inp1) == 0){
printf("\nError: Invalid Command!\n");
goto skip_edit_command;
}
if(row_id > row_count){
printf("\nError: Row Does Not Exists!\n");
goto skip_edit_command;
}
field_data = row_data[row_id][column_id];
//row_id = atoi(row_inp);
printf("\n%c%d: %s", column_id + 65, row_id + 1, field_data.value);
printf("\nEnter New Value: ");
fflush(stdin); // Flush STDIN
scanf("%[^\n]s", u_inp2);
if(strcpy(row_data[row_id][column_id].value, u_inp2)){
printf("%c%d Value Modified.\n", column_id + 65, row_id + 1);
if(strlen(u_inp2) > column_width[column_id]){
// Get Maximum Width of Column for Styling
column_width[column_id] = strlen(u_inp2);
}
}
}
skip_edit_command:
// Flush STDIN to get new data
fflush(stdin);
printf("\n> ");
}
return 1;
}
int file_save(char file_name[128], int row_count, int column_count,
int column_width[32], str32 columns[32], str32 row_data[512][32]){
FILE *fp;
int i, j;
str64k file_data;
// Clear file_data
strcpy(file_data.value, "");
// Add Header / Column Information
for(i = 0; i < column_count; i++){
if(i > 0){
strcat(file_data.value, ",");
}
strcat(file_data.value, columns[i].value);
}
// Add Row Informations
for(i = 0; i < row_count + 1; i++){
// Add new line for row
strcat(file_data.value, "\r\n"); // \r\n for Windows compatibility
// Cross-Data from Row x Column
for(j = 0; j < column_count; j++){
if(j > 0){
strcat(file_data.value, ",");
}
strcat(file_data.value, row_data[i][j].value);
}
}
printf("\n\nFile Name: %s", file_name);
if((fp = fopen(file_name, "wb")) != NULL){
fprintf(fp, file_data.value);
fclose(fp);
printf("\nSuccessfully Saved.");
}else{
printf("\nError Saving File.");
}
printf("\n");
return 1;
}