-
Notifications
You must be signed in to change notification settings - Fork 0
/
StudentType.cpp
480 lines (433 loc) · 10.7 KB
/
StudentType.cpp
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
// Program Information ////////////////////////////////////////////////////////
/**
* @file StudentType.cpp
*
* @brief Implementation file for StudentType class
*
* @details Implements the constructor method of the StudentType class
*
* @version 1.10
* Michael Leverington (10 February 2016)
* Update for use with SorterClass
*
* 1.00
* Michael Leverington (30 January 2016)
* Initial development
*
* @Note Requires StudentType.h
*/
// Precompiler directives /////////////////////////////////////////////////////
#ifndef CLASS_DATATYPE_CPP
#define CLASS_DATATYPE_CPP
// Header files ///////////////////////////////////////////////////////////////
#include "StudentType.h"
#include <cstdio>
#include <iostream>
using namespace std;
/**
* @brief Default/Initialization constructor
*
* @details Constructs StudentType with default data
*
* @pre assumes uninitialized StudentType object
*
* @post Initializes all data quantities
*
* @par Algorithm
* Initializes class by assigning name, Id number, and class level
*
* @exception None
*
* @param None
*
* @return None
*
* @note None
*/
StudentType::StudentType
(
// no parameters
)
: universityID( 0 ), gender( '-' )
{
copyString( name, "---" );
}
/**
* @brief Initialization constructor
*
* @details Constructs StudentType with provided data
*
* @pre assumes uninitialized StudentType object,
* assumes string max length < STD_STR_LEN
*
* @post Initializes all data quantities
*
* @par Algorithm
* Initializes class by assigning name, Id number, and gender
*
* @exception None
*
* @param [in] initStudentName
* Name of student as c-string
*
* @param [in] initUnivIDNum
* University ID number as integer
*
* @param [in] initGender
* gender
*
* @return None
*
* @note None
*/
StudentType::StudentType
(
char *initStudentName,
int initUnivIDNum,
char initGender
)
: universityID( initUnivIDNum ), gender( initGender )
{
copyString( name, initStudentName );
}
/**
* @brief Assignment operation
*
* @details Class overloaded assignment operator
*
* @pre assumes initialized other object
*
* @post desination object holds copy of local this object
*
* @par Algorithm
* Copies each data item separately
*
* @exception None
*
* @param [in] rhStudent
* other StudentType object to be assigned
*
* @return Reference to local this StudentType object
*
* @note None
*/
const StudentType &StudentType:: operator =
(
const StudentType &rhStudent
)
{
copyString( name, rhStudent.name );
universityID = rhStudent.universityID;
gender = rhStudent.gender;
return *this;
}
/**
* @brief Data setting utility
*
* @details Allows resetting data in StudentType
*
* @pre Makes no assumption about StudentType data
*
* @post Data values are correctly assigned in StudentType
*
* @par Algorithm
* Assigns data values to class members
*
* @exception None
*
* @param [in] studentName
* String name of student
*
* @param [in] studentID
* Integer value of student ID
*
* @param [in] gender
* Character identifier for gender
*
* @return Integer result of comparison process
*
* @note None
*/
void StudentType::setStudentData
(
char *inStudentName,
int inStudentID,
char inGender
)
{
copyString( name, inStudentName );
universityID = inStudentID;
gender = inGender;
}
/**
* @brief Data comparison utility
*
* @details Provides public comparison operation for use in other classes
*
* @pre Makes no assumption about StudentType data
*
* @post Provides integer result of comparison such that:
* - result < 0 indicates this < other
* - result == 0 indicates this == other
* - result > 0 indicates this > other
*
* @par Algorithm
* Parses student name into last and first using parseName,
* then returns test for last name first,
* then first name
*
* @exception None
*
* @param [in] otherStudent
* Other student data to be compared to this object
*
* @return Integer result of comparison process
*
* @note None
*/
int StudentType::compareTo
(
const StudentType &otherStudent
) const
{
int difference, index = 0;
while( name[ index ] != NULL_CHAR
&& otherStudent.name[ index ] != NULL_CHAR )
{
difference = toLower( name[ index ] )
- toLower( otherStudent.name[ index ] );
if( difference != 0 )
{
return difference;
}
index++;
}
return 0;
}
/**
* @brief Data serialization
*
* @details Converts data set to string for output by other data types
*
* @pre Assumes data is initialized
*
* @post Provides all data as string
*
* @par Algorithm
* Places data into formatted string
*
* @exception None
*
* @param [out] outString
* string containing class data
*
* @return None
*
* @note None
*/
void StudentType::toString
(
char *outString
) const
{
char nameStr[ STD_STR_LEN ], lastName[ STD_STR_LEN ], firstName[ STD_STR_LEN ];
parseNames( lastName, firstName, name );
nameStr[0] = lastName[0];
nameStr[1] = '-';
nameStr[2] = firstName[0];
nameStr[3] = NULL_CHAR;
sprintf( outString, "%s", nameStr );
}
/**
* @brief String copy utility
*
* @details Copies source string into destination string
*
* @pre assumes standard string conditions, including NULL_CHAR end
*
* @post desination string holds copy of source string
*
* @par Algorithm
* Copies string character by character until end of string
* character is found, assumes string max length < STD_STR_LEN
*
* @exception None
*
* @param [out] Destination string
*
* @param [in] Source string
*
* @return None
*
* @note None
*/
void StudentType::copyString
(
char *destination,
const char *source
) const
{
int index = 0;
while( source[ index ] != NULL_CHAR && index < STD_STR_LEN )
{
destination[ index ] = source[ index ];
index++;
destination[ index ] = NULL_CHAR;
}
}
/**
* @brief Name parsing utility
*
* @details Takes full name and breaks into first and last names
*
* @pre assumes standard string conditions, including NULL_CHAR end
*
* @post first name and last name strings hold correct components
* of original full name string
*
* @par Algorithm
* Copies string character by character from source into last name
* string until a comma is found, then it copies the remainder
* into the first name string, assumes string max length < STD_STR_LEN
*
* @exception None
*
* @param [out] lastName
* String containing last name of student
*
* @param [out] firstName
* String containing first name of student
*
* @param [in] fullName
* String containing full name of student,
* with first and last names delimited by a comma
*
* @return None
*
* @note None
*/
void StudentType::parseNames
(
char *lastName,
char *firstName,
const char *fullName
) const
{
int workingIndex = 0, fullNameIndex = 0;
// skip any leading spaces
while( fullName[ fullNameIndex ] == SPACE && fullNameIndex < STD_STR_LEN )
{
fullNameIndex++;
}
// load last name
while( fullName[ fullNameIndex ] != COMMA && fullNameIndex < STD_STR_LEN )
{
lastName[ workingIndex ] = fullName[ fullNameIndex ];
workingIndex++; fullNameIndex++;
lastName[ workingIndex ] = NULL_CHAR;
}
// increment past comma
fullNameIndex++;
// skip any dividing spaces
while( fullName[ fullNameIndex ] == SPACE && fullNameIndex < STD_STR_LEN )
{
fullNameIndex++;
}
// restart first name index
workingIndex = 0;
// load first name
while( fullName[ fullNameIndex ] != NULL_CHAR
&& fullNameIndex < STD_STR_LEN )
{
firstName[ workingIndex ] = fullName[ fullNameIndex ];
workingIndex++; fullNameIndex++;
firstName[ workingIndex ] = NULL_CHAR;
}
}
/**
* @brief String comparison facility
*
* @details Compares two strings ignoring case
*
* @pre assumes standard string conditions, including NULL_CHAR end
*
* @post first name and last name strings hold correct components
* of original full name string
*
* @par Algorithm
* Compares letters one by one with each letter set to lower case,
* if a difference in letter is found, it is returned,
* if the end of the shortest string is reached without a difference,
* strings are assumed to be the same
* Returns 0 if strings are equal,
* returns > 0 if one string > other string
* returns < 0 if one string < other string
*
* @exception None
*
* @param [in] oneStr
* One of the two strings to be compared
*
* @param [in] otherStr
* The other of the two strings to be compared
*
* @return Difference between two strings (int)
*
* @note None
*/
int StudentType::compareStrings
(
const char *oneStr,
const char *otherStr
) const
{
int difference, index = 0;
while( oneStr[ index ] != NULL_CHAR && otherStr[ index ] != NULL_CHAR )
{
difference = toLower( oneStr[ index ] ) - toLower( otherStr[ index ] );
if( difference != 0 )
{
return difference;
}
index++;
}
return 0;
}
/**
* @brief Letter to lower case facility
*
* @details None
*
* @pre No assumptions are made related to the input data
*
* @post If the character is an upper case letter, it is converted
* to lower case and returned;
* otherwise the character is returned unchanged
*
* @par Algorithm
* Tests for upper case letter;
* If upper case, letter is mathematically modifed to lower case
* otherwise no action is taken
*
* @exception None
*
* @param [in] testChar
* Character to be tested for upper case and modified as needed
*
* @return None
*
* @note None
*/
char StudentType::toLower
(
char testChar
) const
{
if( testChar >= 'A' && testChar <= 'Z' )
{
return testChar - 'A' + 'a';
}
return testChar;
}
// Terminating precompiler directives ////////////////////////////////////////
#endif // #ifndef CLASS_DATATYPE_CPP