MusicType.h
6.53 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
#ifndef _MusicType_H
#define _MusicType_H
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
/**
* item information class.
*/
class MusicType
{
public:
/**
* default constructor.
*/
MusicType()
{
Num = -1;
Name = "";
Singer = "";
Album = "";
Genre = "";
Lyrics = "";
}
/**
* destructor.
*/
~MusicType() {}
/**
* @brief Get song Name
* @pre song Name is set.
* @post none.
* @return song Name;
*/
int GetNum()
{
return Num;
}
/**
* @brief Get song Name
* @pre song Name is set.
* @post none.
* @return song Name;
*/
string GetName()
{
return Name;
}
/**
* @brief Get Singer Name.
* @pre Singer Name is set.
* @post none.
* @return Singer Name.
*/
string GetSinger()
{
return Singer;
}
/**
* @brief Get Album Name
* @pre Album Name is set.
* @post none.
* @return Album Name.
*/
string GetAlbum()
{
return Album;
}
/**
* @brief Get Genre
* @pre Genre is set.
* @post none.
* @return Genre.
*/
string GetGenre()
{
return Genre;
}
/**
* @brief Get Lyrics
* @pre Lyrics is set.
* @post none.
* @return Lyrics.
*/
string GetLyrics()
{
return Lyrics;
}
/**
* @brief Get Pkey
* @pre Pkey is set.
* @post none.
* @return Pkey
*/
string GetPkey()
{
return Pkey;
}
/**
* @brief Set song Name
* @pre none.
* @post song Name is set.
* @param s_Name song Name
*/
void SetName(string s_Name)
{
Name = s_Name;
}
/**
* @brief Set song Name
* @pre none.
* @post song Name is set.
* @param s_Name song Name
*/
void SetNum(int s_Num)
{
Num = s_Num;
}
/**
* @brief Set Singer Name
* @pre none.
* @post Singer Name is set.
* @param s_Singer Singer Name.
*/
void SetSinger(string s_Singer)
{
Singer = s_Singer;
}
/**
* @brief Set Album Name
* @pre none.
* @post Album Name is set.
* @param s_Album Album Name.
*/
void SetAlbum(string s_Album)
{
Album = s_Album;
}
/**
* @brief Set Genre
* @pre none.
* @post Genre is set.
* @param s_Genre Genre.
*/
void SetGenre(string s_Genre)
{
Genre = s_Genre;
}
/**
* @brief Set Lyrics
* @pre none.
* @post Lyrics is set.
* @param s_Lyrics Lyrics
*/
void SetLyrics(string s_Lyrics)
{
Lyrics = s_Lyrics;
}
/**
* @brief Set Pkey
* @pre none.
* @post Pkey is set.
*/
void SetPkey()
{
Pkey = Name + Singer;
}
/**
* @brief Set song information
* @pre none.
* @post song information is set
* @param s_Name song Name
* @param s_Singer Singer Name
* @param s_Album Album Name.
* @param s_Genre Genre
* @param s_Lyrics Lyrics;
*/
void SetRecord(string s_Name, string s_Singer, string s_Album, string s_Genre, string s_Lyrics)
{
SetName(s_Name);
SetSinger(s_Singer);
SetAlbum(s_Album);
SetGenre(s_Genre);
SetLyrics(s_Lyrics);
SetPkey();
}
/**
* @brief Display song Name on screen.
* @pre song Name is set.
* @post song Name is on screen.
*/
void DisplayNumOnScreen()
{
cout << "\tSong Number(Track Number) : " << Num << endl;
};
/**
* @brief Display song Name on screen.
* @pre song Name is set.
* @post song Name is on screen.
*/
void DisplayNameOnScreen()
{
cout << "\tSong Name : " << Name << endl;
};
/**
* @brief Display Singer Name on screen.
* @pre Singer Name is set.
* @post Singer Name is on screen.
*/
void DisplaySingerOnScreen()
{
cout << "\tSinger : " << Singer << endl;
};
/**
* @brief Display Album Name on screen.
* @pre Album Name is set.
* @post Album Name is on screen.
*/
void DisplayAlbumOnScreen()
{
cout << "\tAlbum : " << Album << endl;
};
/**
* @brief Display Genre on screen.
* @pre Genre is set.
* @post Genre is on screen.
*/
void DisplayGenreOnScreen()
{
cout << "\tGenre : " << Genre << endl;
};
/**
* @brief Display Lyrics on screen.
* @pre Lyrics is set.
* @post Lyrics is on screen.
*/
void DisplayLyricsOnScreen()
{
cout << "\tLyrics : " << Lyrics << endl;
};
/**
* @brief Display an song information on screen.
* @pre song information is set.
* @post song information is on screen.
*/
void DisplayRecordOnScreen()
{
DisplayNumOnScreen();
DisplayNameOnScreen();
DisplaySingerOnScreen();
DisplayAlbumOnScreen();
DisplayGenreOnScreen();
DisplayLyricsOnScreen();
};
/**
* @brief Set song Number from keyboard.
* @pre none.
* @post song Number is set.
*/
void SetNumFromKB();
/**
* @brief Set song Name from keyboard.
* @pre none.
* @post song Name is set.
*/
void SetNameFromKB();
/**
* @brief Set Singer Name from keyboard.
* @pre none.
* @post Singer Name is set.
*/
void SetSingerFromKB();
/**
* @brief Set Album Name from keyboard.
* @pre none.
* @post Album Name is set.
*/
void SetAlbumFromKB();
/**
* @brief Set Genre from keyboard.
* @pre none.
* @post Genre is set.
*/
void SetGenreFromKB();
/**
* @brief Set Lyrics from keyboard.
* @pre none.
* @post Lyrics is set.
*/
void SetLyricsFromKB();
/**
* @brief Set song information from keyboard.
* @pre none.
* @post song information is set.
*/
void SetInfoFromKB();
/**
* @brief Read a record from file.
* @pre the target file is opened.
* @post student record is set.
* @param fin file descriptor.
* @return return 1 if this function works well, otherwise 0.
*/
int ReadDataFromFile(ifstream& fin);
/**
* @brief Write a record into file.
* @pre the target file is opened. And the list should be initialized.
* @post the target file is included the new student record.
* @param fout file descriptor.
* @return return 1 if this function works well, otherwise 0.
*/
int WriteDataToFile(ofstream& fout);
/**
* @brief 두 MusicType의 Primary key가 같은지 비교함
* @pre 비교하고자 하는 MusicType이 초기화 되어있어야함
* @post x
* @param data 비교하고자 하는 데이터
* @return 같을경우 true, 다를경우 false
*/
bool operator==(MusicType data)
{
if (this->GetPkey() == data.GetPkey())
return true;
else
return false;
}
/**
* @brief 두 MusicType의 Primary key의 크기를 비교함
* @pre 비교하고자 하는 MusicType이 초기화 되어있어야함
* @post x
* @param data 비교하고자 하는 데이터
* @return 좌변이 클경우 true 작을경우 false
*/
bool operator>(MusicType data)
{
return (this->GetPkey() > data.GetPkey());
}
/**
* @brief 두 MusicType의 Primary key의 크기를 비교함
* @pre 비교하고자 하는 MusicType이 초기화 되어있어야함
* @post x
* @param data 비교하고자 하는 데이터
* @return 우변이 클경우 true 작을경우 false
*/
bool operator<(MusicType data)
{
return (this->GetPkey() < data.GetPkey());
}
protected:
int Num; //곡의 인덱스
string Name; //곡명
string Singer; //가수
string Album; //앨범
string Genre; //장르
string Lyrics; //가사
string Pkey; //Primary Key
};
#endif // _MusicType_H