-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddrbook.cpp
More file actions
473 lines (407 loc) · 13.3 KB
/
addrbook.cpp
File metadata and controls
473 lines (407 loc) · 13.3 KB
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
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
#include <fstream>
using namespace std;
/**************************************************************************
** class person
**************************************************************************/
// This class simply characterizes a person as collection of attributes,
// name, address, etc.
//
class person {
public:
person(){}
void setname (string n) {name = n;}
void setaddr (string a) {address = a;}
void setcity (string c) {city = c;}
void setstate(string s) {state = s;}
void setzip (string z) {zip = z;}
void setphone(string p) {phone = p;}
void setcell (string c) {cell = c;}
void setemail(string e) {email = e;}
void setage (int a) {age = a;}
string getname() {return name;}
string getaddr() {return address;}
string getcity() {return city;}
string getstate(){return state;}
string getzip() {return zip;}
string getphone(){return phone;}
string getcell() {return cell;}
string getemail(){return email;}
int getage() {return age;}
void show(string nom, string val) {cout << nom << val << endl;}
void show(string nom, int val) {cout << nom << val << endl;}
void showname () {show("name : ", name);}
void showaddr () {show("address : ", address);}
void showcity () {show("city : ", city);}
void showstate() {show("state : ", state);}
void showzip () {show("zip : ", zip);}
void showphone() {show("phone : ", phone);}
void showcell () {show("cell : ", cell);}
void showemail() {show("email : ", email);}
void showage () {show("age : ", age);}
// Static type-safe functions for acquiring input from the user
// after presenting a prompt for the input.
//
static string getstr(string prompt);
static int getint(string prompt);
private:
string name;
string address;
string city;
string state;
string zip;
string phone;
string cell;
string email;
int age;
};
string person::getstr(string prompt)
{
string str;
cout << prompt;
getline(cin, str);
return str;
}
int person::getint(string prompt)
{
int num;
string str;
while (true) {
cout << prompt;
getline(cin, str);
// If user simply pressed return key, return with a 0
//
if(str == "")
return 0;
// This code converts from string to number safely.
//
stringstream ss(str);
if (ss >> num)
break;
cout << "Invalid number, please try again" << endl;
}
return num;
}
/**************************************************************************
** class addrbook
**************************************************************************/
// This class provides the container (vector) and methods for managing
// an Address Book as a collection of class person.
//
class addrbook {
public:
addrbook(){}
void addperson();
void editperson();
void showperson();
void deleteperson();
void savepeople();
void loadpeople();
void loadpeople(string fname);
void viewpeople();
void viewpeople(string fname);
void getmenu(string fname);
private:
vector<person> people;
void showmenu();
string& promptname(string &);
bool findname(string name, person& p);
bool findname(string name, int& index);
bool isempty();
string fgetstr(ifstream& f) {string s; f >> s; return s;}
int fgetint(ifstream& f) { int i; f >> i; return i;}
};
string& addrbook::promptname(string& name)
{
while(true) {
name = person::getstr("Type a name: ");
if(name == "")
continue;
else
return name;
}
}
////////////////////////////////////////////////////////////////////////////
//
// findname - find a name in the address book given a string for the name
// and a reference to an instance of class person.
// This version takes a reference to an index, instead of to an instance
// of class person.
//
bool addrbook::findname(string n, person& p)
{
for(vector<person>::iterator i = people.begin(); i < people.end(); ++i) {
if(i->getname() == n) {
p = *i;
return true;
}
}
cout << "\tUnable to find person " << n << endl << endl;
return false;
}
////////////////////////////////////////////////////////////////////////////
//
// findname - overloaded.
// This version takes a reference to an index, instead of to an instance
// of class person.
//
bool addrbook::findname(string n, int& index)
{
for(unsigned i = 0; i < people.size(); ++i) {
if(people[i].getname() == n) {
index = i;
return true;
}
}
cout << "\tUnable to find person " << n << endl << endl;
return false;
}
bool addrbook::isempty()
{
if(people.size() == 0) {
cout << "\tThe Address Book is empty\n"
<< "\tPlease add some entries.\n\n";
return true;
}
return false;
}
void addrbook::addperson()
{
int i = people.size();
people.resize(i + 1);
people[i].setname (person::getstr(" Name: "));
people[i].setaddr (person::getstr("Address: "));
people[i].setcity (person::getstr(" City: "));
people[i].setstate(person::getstr(" State: "));
people[i].setzip (person::getstr(" Zip: "));
people[i].setphone(person::getstr(" Phone: "));
people[i].setcell (person::getstr(" Cell: "));
people[i].setemail(person::getstr(" email: "));
people[i].setage (person::getint(" Age: "));
}
void addrbook::showperson()
{
person p;
string name;
if(isempty())
return;
cout << "\tShow an existing address book entry" << endl;
promptname(name);
if(!findname(name, p))
return;
cout << " Name: " << p.getname() << endl
<< "Address: " << p.getaddr() << endl
<< " City: " << p.getcity() << endl
<< " State: " << p.getstate() << endl
<< " Zip: " << p.getzip() << endl
<< " Phone: " << p.getphone() << endl
<< " Cell: " << p.getcell() << endl
<< " email: " << p.getemail() << endl
<< " Age: " << p.getage() << endl;
}
void addrbook::editperson()
{
person& p = people[0];
string name;
string str;
int age;
if(isempty())
return;
cout << "\tEdit an address book entry" << endl
<< "\tSimply press \"Return\" or \"Enter\" if you do not want \n"
<< "\tto change the field, else type the new value.\n\n";
promptname(name);
if(!findname(name, p))
return;
p.setname ((str = person::getstr(" Name: ")) == "" ? p.getname() : str);
p.setaddr ((str = person::getstr("Address: ")) == "" ? p.getaddr() : str);
p.setcity ((str = person::getstr(" City: ")) == "" ? p.getcity() : str);
p.setstate((str = person::getstr(" State: ")) == "" ? p.getstate(): str);
p.setzip ((str = person::getstr(" Zip: ")) == "" ? p.getzip() : str);
p.setphone((str = person::getstr(" Phone: ")) == "" ? p.getphone(): str);
p.setcell ((str = person::getstr(" Cell: ")) == "" ? p.getcell() : str);
p.setemail((str = person::getstr(" email: ")) == "" ? p.getemail(): str);
p.setage ((age = person::getint(" Age: ")) == 0 ? p.getage() : age);
}
void addrbook::deleteperson()
{
string name;
int i;
int& index = i;
if(isempty())
return;
cout << "Delete an address book entry" << endl;
promptname(name);
if(!findname(name, index))
return;
people.erase(people.begin() + index);
}
void addrbook::savepeople()
{
string fname;
ofstream file;
cout << "\nSave the Address Book to a file.\n"
<< "\tYou can include the directory in the name."
<< "\tIf you do NOT want to do this, press the\n"
<< "\tENTER or RETURN key now\n\n";
fname = person::getstr("Type a file name: ");
if (fname == "")
return;
fname = fname + ".dat";
cout << "Opening file: " << fname << endl;
file.open(fname.c_str());
if(!file.is_open()) {
cout << "Cannot open file: " << fname << endl << endl;
return;
}
file << people.size() << endl;
for(vector<person>::iterator i = people.begin() ; i < people.end(); ++i) {
person &p = *i;
file << p.getname() << endl
<< p.getaddr() << endl
<< p.getcity() << endl
<< p.getstate() << endl
<< p.getzip() << endl
<< p.getphone() << endl
<< p.getcell() << endl
<< p.getemail() << endl
<< p.getage() << endl;
}
}
void addrbook::loadpeople()
{
string fname;
ifstream file;
cout << "\n\tName the Address Book file you want to open\n"
<< "\tYou can include the directory in the name.\n"
<< "\tYou can start a new Address Book by simply\n"
<< "\tpressing he RETURN or ENTER key now.\n\n";
fname = person::getstr("Type a file name: ");
if (fname == "")
return;
fname = fname + ".dat";
loadpeople(fname);
}
void addrbook::loadpeople(string fname)
{
int size;
ifstream file;
cout << "Opening Address Book from file: " << fname << endl;
file.open(fname.c_str());
if(!file.is_open()) {
cout << "\n\tCannot open file: " << fname << endl
<< "\tYou can look for your Address Book file and press \"l\"\n"
<< "\tto load it when you find it, or you can start a new\n"
<< "\tAddress Book file by pressing \"a\" now.\n\n";
return;
}
file >> size;
cout << "Address Book " << fname << " contains " << size << " records.\n";
for(int i = 0; i < size; i++) {
people.resize(people.size() + 1);
person& p = people[i];
p.setname (fgetstr(file));
p.setaddr (fgetstr(file));
p.setcity (fgetstr(file));
p.setstate(fgetstr(file));
p.setzip (fgetstr(file));
p.setphone(fgetstr(file));
p.setcell (fgetstr(file));
p.setemail(fgetstr(file));
p.setage (fgetint(file));
}
}
void addrbook::viewpeople()
{
string fname;
ifstream file;
cout << "\n\tName the Address Book file you want to open\n"
<< "\tYou can include the directory in the name.\n"
<< "\tYou can start a new Address Book by simply\n"
<< "\tpressing he RETURN or ENTER key now.\n\n";
fname = person::getstr("Type a file name: ");
if (fname == "")
return;
fname = fname + ".dat";
loadpeople(fname);
}
void addrbook::viewpeople(string fname)
{
int size;
ifstream file;
cout << "Opening Address Book from file: " << fname << endl;
file.open(fname.c_str());
if(!file.is_open()) {
cout << "\n\tCannot open file: " << fname << endl
<< "\tYou can look for your Address Book file and press \"l\"\n"
<< "\tto load it when you find it, or you can start a new\n"
<< "\tAddress Book file by pressing \"a\" now.\n\n";
return;
}
file >> size;
cout << "Address Book " << fname << " contains " << size << " records.\n";
for(int i = 0; i < size; i++) {
people.resize(people.size() + 1);
person& p = people[i];
p.showname ();
p.showaddr ();
p.showcity ();
p.showstate();
p.showzip ();
p.showphone();
p.showcell ();
p.showemail();
p.showage ();
}
}
void addrbook::showmenu()
{
cout << endl << "Select a menu item by pressing a number." << endl;
cout << "a - Add a new address book entry" << endl;
cout << "f - Find and show an existing address book entry" << endl;
cout << "e - Edit an address book entry" << endl;
cout << "d - Delete an address book entry" << endl;
cout << "l - Load the address book from a file" << endl;
cout << "s - Save the address book to a file" << endl;
cout << "v - View the contents of the address book" << endl;
cout << "q - Quit the program" << endl << endl;
cout << "Your choice: ";
}
void addrbook::getmenu(string fname)
{
fname == "" ? loadpeople()
: loadpeople(fname);
char c;
while(true) {
showmenu();
c = cin.get();
cin.ignore();
switch(c) {
case 'a': addperson(); break;
case 'f': showperson(); break;
case 'e': editperson(); break;
case 'd': deleteperson(); break;
case 'l': loadpeople(); break;
case 's': savepeople(); break;
case 'v': viewpeople(); break;
case 'q': return;
default:
cout << "\"" << c << "\" is not a valid selection. Try again.\n";
break;
}
}
}
/************************************************
** main()
************************************************/
int main(int argc, char *argv[])
{
string fname;
addrbook ab;
fname = argc > 1 ? argv[1] : "";
ab.getmenu(fname);
return 0;
}