]> git.vomp.tv Git - vompclient.git/blob - recording.cc
New recordings managager to support multi level dir structure and more in
[vompclient.git] / recording.cc
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "recording.h"
22
23 Recording::Recording()
24 {
25   start = 0;
26   progName = NULL;
27   fileName = NULL;
28   index = -1;
29 }
30
31 Recording::~Recording()
32 {
33   if (progName) { free(progName); progName = NULL; }
34   if (fileName) { free(fileName); fileName = NULL; }
35   index = -1; // just in case
36 }
37
38 ULONG Recording::getStartTime() const
39 {
40   return start;
41 }
42
43 char* Recording::getProgName() const
44 {
45   return progName;
46 }
47
48 char* Recording::getFileName() const
49 {
50   return fileName;
51 }
52
53 void Recording::setStartTime(ULONG tstartTime)
54 {
55   start = tstartTime;
56 }
57
58 void Recording::setProgName(char* tProgName)
59 {
60   if (progName) free(progName);
61
62   if (asprintf(&progName, tProgName) == -1)
63   {
64     free(progName);
65     progName = NULL;
66   }
67 }
68
69 void Recording::setFileName(char* tFileName)
70 {
71   if (fileName) free(fileName);
72
73   if (asprintf(&fileName, tFileName) == -1)
74   {
75     free(fileName);
76     fileName = NULL;
77   }
78 }