-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclsBankClient.h
More file actions
494 lines (395 loc) · 12.7 KB
/
clsBankClient.h
File metadata and controls
494 lines (395 loc) · 12.7 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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
/**
* @file clsBankClient.h
* @author Bank System Developer
* @version 1.0
* @date 2024
*
* @brief Bank Client class for managing client accounts and banking operations
*
* This class represents a bank client with account information and banking
* functionality. It inherits from clsPerson to include personal information
* and adds banking-specific features like account numbers, PIN codes, and
* account balances.
*
* Features:
* - Complete CRUD operations for client data
* - File-based data persistence
* - Banking transactions (deposit, withdraw)
* - Account balance management
* - Soft delete functionality
*/
#pragma once
#include <iostream>
#include <string>
#include "clsPerson.h"
#include "clsString.h"
#include <vector>
#include <fstream>
using namespace std;
/**
* @class clsBankClient
* @brief Represents a bank client with account and personal information
*
* This class manages all aspects of a bank client including personal details
* (inherited from clsPerson) and banking-specific information like account
* numbers, PIN codes, and balances. It provides methods for data persistence,
* banking transactions, and account management.
*/
class clsBankClient : public clsPerson
{
private:
/**
* @enum enMode
* @brief Defines the operational mode of the client object
*/
enum enMode {
EmptyMode = 0, ///< Object is empty/uninitialized
UpdateMode = 1, ///< Object is in update mode for existing client
AddNewMode = 2 ///< Object is in add mode for new client
};
enMode _Mode; ///< Current operational mode of the object
string _AccountNumber; ///< Unique account number identifier
string _PinCode; ///< PIN code for account access (stored in plain text)
float _AccountBalance; ///< Current account balance
bool _MarkedForDelete = false; ///< Flag indicating if record is marked for deletion
/**
* @brief Converts a delimited string line to a clsBankClient object
*
* Parses a line from the data file and creates a clsBankClient object
* with the extracted data. The line format is:
* FirstName#//#LastName#//#Email#//#Phone#//#AccountNumber#//#PinCode#//#Balance
*
* @param Line The delimited string line from the data file
* @param Seperator The delimiter used to separate fields (default: "#//#")
* @return clsBankClient object created from the parsed data
*/
static clsBankClient _ConvertLinetoClientObject(string Line, string Seperator = "#//#")
{
vector<string> vClientData;
vClientData = clsString::Split(Line, Seperator);
return clsBankClient(enMode::UpdateMode, vClientData[0], vClientData[1], vClientData[2],
vClientData[3], vClientData[4], vClientData[5], stod(vClientData[6]));
}
/**
* @brief Converts a clsBankClient object to a delimited string line
*
* Serializes a clsBankClient object into a string format suitable for
* storage in the data file. The output format is:
* FirstName#//#LastName#//#Email#//#Phone#//#AccountNumber#//#PinCode#//#Balance
*
* @param Client The clsBankClient object to serialize
* @param Seperator The delimiter to use between fields (default: "#//#")
* @return String representation of the client data
*/
static string _ConvertClientObjectToLine(clsBankClient Client, string Seperator = "#//#")
{
string stClientRecord = "";
stClientRecord += Client.FirstName + Seperator;
stClientRecord += Client.LastName + Seperator;
stClientRecord += Client.Email + Seperator;
stClientRecord += Client.Phone + Seperator;
stClientRecord += Client.AccountNumber() + Seperator;
stClientRecord += Client.PinCode + Seperator;
stClientRecord += to_string(Client.AccountBalance);
return stClientRecord;
}
/**
* @brief Loads all client data from the Clients.txt file
*
* Reads the entire Clients.txt file and converts each line into
* a clsBankClient object, returning a vector of all clients.
*
* @return vector<clsBankClient> Vector containing all client records
* @note Returns empty vector if file cannot be opened or is empty
*/
static vector<clsBankClient> _LoadClientsDataFromFile()
{
vector<clsBankClient> vClients;
fstream MyFile;
MyFile.open("Clients.txt", ios::in); // Read mode
if (MyFile.is_open())
{
string Line;
while (getline(MyFile, Line))
{
clsBankClient Client = _ConvertLinetoClientObject(Line);
vClients.push_back(Client);
}
MyFile.close();
}
return vClients;
}
static void _SaveCleintsDataToFile(vector <clsBankClient> vClients)
{
fstream MyFile;
MyFile.open("Clients.txt", ios::out);//overwrite
string DataLine;
if (MyFile.is_open())
{
for (clsBankClient C : vClients)
{
if (C.MarkedForDeleted() == false)
{
//we only write records that are not marked for delete.
DataLine = _ConvertClientObjectToLine(C);
MyFile << DataLine << endl;
}
}
MyFile.close();
}
}
void _Update()
{
vector <clsBankClient> _vClients;
_vClients = _LoadClientsDataFromFile();
for (clsBankClient& C : _vClients)
{
if (C.AccountNumber() == AccountNumber())
{
C = *this;
break;
}
}
_SaveCleintsDataToFile(_vClients);
}
void _AddNew()
{
_AddDataLineToFile(_ConvertClientObjectToLine(*this));
}
void _AddDataLineToFile(string stDataLine)
{
fstream MyFile;
MyFile.open("Clients.txt", ios::out | ios::app);
if (MyFile.is_open())
{
MyFile << stDataLine << endl;
MyFile.close();
}
}
static clsBankClient _GetEmptyClientObject()
{
return clsBankClient(enMode::EmptyMode, "", "", "", "", "", "", 0);
}
public:
/**
* @brief Constructor for clsBankClient
*
* Initializes a new clsBankClient object with the provided information.
* Inherits personal information from clsPerson and adds banking-specific data.
*
* @param Mode The operational mode (EmptyMode, UpdateMode, or AddNewMode)
* @param FirstName Client's first name
* @param LastName Client's last name
* @param Email Client's email address
* @param Phone Client's phone number
* @param AccountNumber Unique account number identifier
* @param PinCode PIN code for account access
* @param AccountBalance Initial account balance
*/
clsBankClient(enMode Mode, string FirstName, string LastName,
string Email, string Phone, string AccountNumber, string PinCode,
float AccountBalance) :
clsPerson(FirstName, LastName, Email, Phone)
{
_Mode = Mode;
_AccountNumber = AccountNumber;
_PinCode = PinCode;
_AccountBalance = AccountBalance;
}
/**
* @brief Checks if the client object is empty/uninitialized
*
* @return true if the object is in EmptyMode, false otherwise
*/
bool IsEmpty()
{
return (_Mode == enMode::EmptyMode);
}
/**
* @brief Checks if the client record is marked for deletion
*
* @return true if marked for deletion, false otherwise
*/
bool MarkedForDeleted()
{
return _MarkedForDelete;
}
/**
* @brief Gets the account number
*
* @return string The unique account number identifier
*/
string AccountNumber()
{
return _AccountNumber;
}
void SetPinCode(string PinCode)
{
_PinCode = PinCode;
}
string GetPinCode()
{
return _PinCode;
}
__declspec(property(get = GetPinCode, put = SetPinCode)) string PinCode;
void SetAccountBalance(float AccountBalance)
{
_AccountBalance = AccountBalance;
}
float GetAccountBalance()
{
return _AccountBalance;
}
__declspec(property(get = GetAccountBalance, put = SetAccountBalance)) float AccountBalance;
static clsBankClient Find(string AccountNumber)
{
fstream MyFile;
MyFile.open("Clients.txt", ios::in);//read Mode
if (MyFile.is_open())
{
string Line;
while (getline(MyFile, Line))
{
clsBankClient Client = _ConvertLinetoClientObject(Line);
if (Client.AccountNumber() == AccountNumber)
{
MyFile.close();
return Client;
}
}
MyFile.close();
}
return _GetEmptyClientObject();
}
static clsBankClient Find(string AccountNumber, string PinCode)
{
fstream MyFile;
MyFile.open("Clients.txt", ios::in);//read Mode
if (MyFile.is_open())
{
string Line;
while (getline(MyFile, Line))
{
clsBankClient Client = _ConvertLinetoClientObject(Line);
if (Client.AccountNumber() == AccountNumber && Client.PinCode == PinCode)
{
MyFile.close();
return Client;
}
}
MyFile.close();
}
return _GetEmptyClientObject();
}
enum enSaveResults { svFaildEmptyObject = 0, svSucceeded = 1, svFaildAccountNumberExists = 2 };
enSaveResults Save()
{
switch (_Mode)
{
case enMode::EmptyMode:
{
if (IsEmpty())
{
return enSaveResults::svFaildEmptyObject;
}
}
case enMode::UpdateMode:
{
_Update();
return enSaveResults::svSucceeded;
break;
}
case enMode::AddNewMode:
{
//This will add new record to file or database
if (clsBankClient::IsClientExist(_AccountNumber))
{
return enSaveResults::svFaildAccountNumberExists;
}
else
{
_AddNew();
//We need to set the mode to update after add new
_Mode = enMode::UpdateMode;
return enSaveResults::svSucceeded;
}
break;
}
}
}
static bool IsClientExist(string AccountNumber)
{
clsBankClient Client1 = clsBankClient::Find(AccountNumber);
return (!Client1.IsEmpty());
}
bool Delete()
{
vector <clsBankClient> _vClients;
_vClients = _LoadClientsDataFromFile();
for (clsBankClient& C : _vClients)
{
if (C.AccountNumber() == _AccountNumber)
{
C._MarkedForDelete = true;
break;
}
}
_SaveCleintsDataToFile(_vClients);
*this = _GetEmptyClientObject();
return true;
}
static clsBankClient GetAddNewClientObject(string AccountNumber)
{
return clsBankClient(enMode::AddNewMode, "", "", "", "", AccountNumber, "", 0);
}
static vector <clsBankClient> GetClientsList()
{
return _LoadClientsDataFromFile();
}
/**
* @brief Deposits money into the client's account
*
* Adds the specified amount to the account balance and saves
* the changes to the data file.
*
* @param Amount The amount to deposit (must be positive)
* @note The amount is added directly without validation
*/
void Deposit(double Amount)
{
_AccountBalance += Amount;
Save();
}
/**
* @brief Withdraws money from the client's account
*
* Attempts to withdraw the specified amount from the account balance.
* Only allows withdrawal if sufficient funds are available.
*
* @param Amount The amount to withdraw (must be positive)
* @return true if withdrawal was successful, false if insufficient funds
*/
bool Withdraw(double Amount)
{
if (Amount > _AccountBalance)
{
return false; // Insufficient funds
}
else
{
_AccountBalance -= Amount;
Save();
return true;
}
}
static double GetTotalBalances()
{
vector <clsBankClient> vClients = clsBankClient::GetClientsList();
double TotalBalances = 0;
for (clsBankClient Client : vClients)
{
TotalBalances += Client.AccountBalance;
}
return TotalBalances;
}
};