• Language

    C

  • Description

    Phone book

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
#include <stdio.h>
#include <stdlib.h>
#include <search.h>
#include <string.h>
#ifdef __linux__
    #include <termios.h>
    #include <unistd.h>
    #define CLEAR_SCREEN "clear"
    int _getch ();
    #define _lfind lfind
    #define _strdup strdup
#else
    #include <conio.h>
    #define CLEAR_SCREEN "cls"
    #if defined(__MSDOS__) || defined(__BORLANDC__)
        #define _getch getch
        #define _lfind lfind
        #define _strdup strdup
    #endif
#endif

typedef struct ADTContact {
    char* alias;
    char* email;
    char* home_phone;
    char* mobile_phone;
} Contact;

void* array_insert  (void *array_var, size_t *length, size_t size, const void *datum);
void* array_remove  (void *array_var, size_t *length, size_t size, const void *datum);
void  array_foreach (void *array_var, size_t length, size_t size, void *params, void (*func)(void*,void*));
void  pause_screen (const char *message);
char* read_string_line (const char *message);
char* read_str (const char *message, char *string_var);
int   read_integer (const char *message);
int   read_field (FILE *file_stream, char *field);
int   compare_contact (const Contact *contact1, const Contact *contact2);
void  print_contact (Contact *datum, int *counter);
void  print_on_file (Contact *datum, FILE *file_stream);

const char *path = "contacts.tsv";

int main (void)
{
    Contact *contacts = NULL;
    size_t length=0;
    Contact *datum = NULL, contact;
    int counter=0, main_option, suboption;
    char field[255];
    FILE *file_stream = fopen (path, "r");
    if (file_stream!=NULL)
    {
        while (read_field (file_stream, field))
        {
            contact.alias = _strdup (field);
            read_field (file_stream, field);
            contact.email = _strdup (field);
            read_field (file_stream, field);
            contact.home_phone = _strdup (field);
            read_field (file_stream, field);
            contact.mobile_phone = _strdup (field);
            contacts = (Contact*) array_insert (contacts, &length, sizeof (Contact), &contact);
        }
        fclose (file_stream);
    }
    do {
        putchar ('\n');
        system (CLEAR_SCREEN);
        printf ("MENU\n");
        printf ("1.- Insertions\n");
        printf ("2.- Queries\n");
        printf ("3.- Updates\n");
        printf ("4.- Deletions\n");
        printf ("5.- Sort records\n");
        printf ("6.- List records\n");
        printf ("7.- Exit\n");
        printf ("Select an option: ");
        fflush (stdout);
        do
            main_option = _getch ();
        while (main_option<'1' || main_option>'7');
        printf ("%c\n\n", main_option);
        if (length==0 && main_option!='1' && main_option!='7')
        {
            pause_screen ("There are not records.\n");
            continue;
        }
        if (main_option<'5')
        {
            contact.alias = read_str ("Enter the alias of the contact", field);
            datum = (Contact*) _lfind (&contact, contacts, &length, sizeof (Contact), (int(*)(const void*,const void*))compare_contact);
            if (datum!=NULL)
            {
                putchar ('\n');
                print_contact (datum, &counter);
            }
        }
        if (main_option=='1' && datum!=NULL)
            printf ("The record already exists.\n");
        else if (main_option>='2' && main_option<='4' && datum==NULL)
            printf ("\nRecord not found.\n");
        else switch (main_option)
        {
            case '1':
                contact.alias = _strdup (field);
                contact.email = read_string_line ("Enter the email");
                contact.home_phone = read_string_line ("Enter the home phone");
                contact.mobile_phone = read_string_line ("Enter the mobile phone");
                contacts = (Contact*) array_insert (contacts, &length, sizeof (Contact), &contact);
                printf ("\nRecord added correctly.\n");
                break;
            case '3':
                printf ("Menu of fields updating\n");
                printf ("1.- email\n");
                printf ("2.- home phone\n");
                printf ("3.- mobile phone\n");
                do {
                    suboption = read_integer ("Select a field number to be updated");
                    if (suboption<1 || suboption>3)
                        printf ("Incorrect option.\n");
                } while (suboption<1 || suboption>3);
                switch (suboption)
                {
                    case 1:
                        free (datum->email);
                        datum->email = read_string_line ("Enter the new email");
                        break;
                    case 2:
                        free (datum->home_phone);
                        datum->home_phone = read_string_line ("Enter the new home phone");
                        break;
                    case 3:
                        free (datum->mobile_phone);
                        datum->mobile_phone = read_string_line ("Enter the new mobile phone");
                        break;
                }
                printf ("\nRecord updated correctly.\n");
                break;
            case '4':
                memcpy (&contact, datum, sizeof (Contact));
                contacts = (Contact*) array_remove ((void**)contacts, &length, sizeof (Contact), datum);
                free (contact.alias);
                free (contact.email);
                free (contact.home_phone);
                free (contact.mobile_phone);
                printf ("Record removed correctly.\n");
                break;
            case '5':
                qsort (contacts, length, sizeof (Contact), (int(*)(const void*,const void*))compare_contact);
                printf ("Records sorted correctly.\n");
                break;
            case '6':
                counter = 0;
                array_foreacjson_decodeh (contacts, length, sizeof (Contact), &counter, (void(*)(void*,void*))print_contact);
                printf ("Total of records: %d.\n", counter);
                break;
        }
        if (main_option!='7')
            pause_screen ("");
    } while (main_option!='7');
    file_stream = fopen (path, "w");
    if (file_stream!=NULL)
    {
        array_foreach (contacts, length, sizeof (Contact), file_stream, (void(*)(void*,void*))print_on_file);
        fclose (file_stream);
    }
    return EXIT_SUCCESS;
}

void* array_insert (void *array_var, size_t *length, size_t size, const void *datum)
{
    char *record_var;
    array_var = realloc (array_var, size * (*length+1));
    record_var = (char*)array_var + *length * size;
    memcpy (record_var, datum, size);
    (*length)++;
    return array_var;
}

void* array_remove (void *array_var, size_t *length, size_t size, const void *datum)
{
    size_t i;
    char *record_var = (char*)array_var;
    for (i=0; i<*length && datum!=record_var; i++, record_var+=size);
    if (i<*length)
    {
        for (i++; i<*length; i++)
        {
            record_var+=size;
            memcpy (record_var-size, record_var, size);
        }
        (*length)--;
        array_var = realloc (array_var, size * (*length));
    }
    return array_var;
}

void array_foreach (void *array_var, size_t length, size_t size, void *params, void (*func)(void*,void*))
{
    char *record_var = (char*)array_var;
    if (length>0)
    {
        func (record_var, params);
        array_foreach (record_var+size, length-1, size, params, func);
    }
}

int compare_contact (const Contact *contact1, const Contact *contact2)
{
    return contact1==contact2 ? 0 : strcmp (contact1->alias, contact2->alias);
}

void print_contact (Contact *datum, int *counter)
{
    printf ("alias       : %s\n", datum->alias);
    printf ("email       : %s\n", datum->email);
    printf ("home phone  : %s\n", datum->home_phone);
    printf ("mobile phone: %s\n", datum->mobile_phone);
    putchar ('\n');
    (*counter)++;
}

void print_on_file (Contact *datum, FILE *file_stream)
{
    fprintf (file_stream, "%s\t", datum->alias);
    fprintf (file_stream, "%s\t", datum->email);
    fprintf (file_stream, "%s\t", datum->home_phone);
    fprintf (file_stream, "%s\n", datum->mobile_phone);
}

char* read_string_line (const char *message)
{
    char string_line[255];
    (void) read_str (message, string_line);
    return _strdup (string_line);
}

char* read_str (const char *message, char *string_var)
{
    printf ("%s: ", message);
    scanf ("%[^\r\n]", string_var);
    (void) getchar ();
    return string_var;
}

int read_integer (const char *message)
{
    int integer_var;
    printf ("%s: ", message);
    scanf ("%d", &integer_var);
    (void) getchar();
    return integer_var;
}

int read_field (FILE *file_stream, char *field)
{
    fscanf (file_stream, "%[^\t\n\r]", field);
    fgetc (file_stream);
    return feof (file_stream) == 0;
}

void pause_screen (const char *message)
{
    printf ("%s\nPress any key to continue . . . ", message);
    fflush (stdout);
    _getch ();
}

#ifdef __linux__

int _getch ()
{
    int ch;
    struct termios oldt, newt;
    tcgetattr (STDIN_FILENO, &oldt);
    newt = oldt;
    newt.c_lflag &= ~(ICANON | ECHO);
    tcsetattr (STDIN_FILENO, TCSANOW, &newt);
    ch = getchar();
    tcsetattr (STDIN_FILENO, TCSANOW, &oldt);
    return ch;
}

#endif