summaryrefslogtreecommitdiffstats
path: root/mpeglib/lib/input/cdromToc.cpp
blob: 919ecdc84208f7f974b907d8331dddffa59c8cf2 (plain)
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
/*
  reads toc from cdrom (system dependent)
  Copyright (C) 1999  Martin Vogt

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU Library General Public License as published by
  the Free Software Foundation.

  For more information look at the file COPYRIGHT in this package

 */



#include "cdromToc.h"

#include <iostream>

using namespace std;

CDRomToc::CDRomToc() {
  maxEntries=0;
}


CDRomToc::~CDRomToc() {
}


void CDRomToc::insertTocEntry(int minute,int second,int frame) {
  int i;
  int j;
  if (isElement(minute,second,frame)) {
    return;
  }

  i=getNextTocEntryPos(minute,second,frame);

  // now shift from i to end
  if (maxEntries == 100) {
    cerr << "maximum of toc entries reached"<<endl;
    exit(0);
  }
  for (j=maxEntries;j>i;j--) {
    tocEntries[j].minute=tocEntries[j-1].minute;
    tocEntries[j].second=tocEntries[j-1].second;
    tocEntries[j].frame=tocEntries[j-1].frame;
  }
  maxEntries++;
  
  tocEntries[i].minute=minute;
  tocEntries[i].second=second;
  tocEntries[i].frame=frame;  
  calculateRange();
}


int CDRomToc::getNextTocEntryPos(int minute,int second,int frame) {
  int i;
  if (maxEntries == 0) {
    return 0;
  }

  for (i=0;i<maxEntries;i++) {
    if (tocEntries[i].minute <= minute) {
      continue;
    } else {
      break;
    }
    if (tocEntries[i].second <= second) {
      continue;
    } else {
      break;
    }
    if (tocEntries[i].frame <= frame) {
      continue;
    }
    break;
  } 
  return i;
}

    
    
int CDRomToc::isElement(int minute,int second,int frame) {
  int i;

  for (i=0;i<maxEntries;i++) {
    if (tocEntries[i].minute == minute) {
      if (tocEntries[i].second == second) {
	if (tocEntries[i].frame == frame) {
	  return true;
	}
      }
    }
  }
  return false;
}






int CDRomToc::getTocEntries() {
  return maxEntries;
}


TocEntry* CDRomToc::getTocEntry(int entry) {
  return &(tocEntries[entry]);
}


void CDRomToc::print() {
  int i;
  cerr << "******* printing TOC [START]"<<endl;
  for(i=0;i<maxEntries;i++) {
    cerr << "i:"<<i
	 <<" M:"<<tocEntries[i].minute
         <<" S:"<<tocEntries[i].second
         <<" F:"<<tocEntries[i].frame<<endl;
  }
  cerr << "******* printing TOC [END}"<<endl;
}


int CDRomToc::isInRange(int minute,int second,int) {
  long val=minute*60+second;
  if (val < startByte) {
    return false;
  }
  if (val > endByte) {
    return false;
  }
  return true;
}

int CDRomToc::calculateRange() {


  if (maxEntries < 2) {
    cout << "no two elemts in toc"<<endl;
    return false;
  }
  startByte=tocEntries[0].minute*60*+tocEntries[0].second;
  
  // do a safty end because of the kernel bug
  int minute=tocEntries[maxEntries-1].minute;
  int second=tocEntries[maxEntries-1].second-20;
  if (second < 0) {
    minute--;
    second=60+second;
  }
  if (minute < 0) {
    endByte=0;
    return true;
  }

  endByte=minute*60+second;

  return true;

}


int CDRomToc::getEndSecond() {
  return endByte;
}




int CDRomToc::open(const char* openfile) {
  int i;
  int pos=0;
  maxEntries=0;
  const char* filename=strchr(openfile,'/');
  FILE* file =fopen(filename, "rb");
  if (file == NULL) {
    perror("open");
    return false;
  }
  cout << "reading toc on:"<<filename<<" openfile:"<<openfile<<endl;

  int startToc=0;
  int endToc=0;

  if (getStartEnd(file,startToc,endToc) == false) {
    cout << "getStartEnd in CDRomToc failed"<<endl;
    fclose(file);
    return false;
  }
  cout << "startToc:"<<startToc<<" endToc:"<<endToc<<endl;
  cout << "reading toc -2"<<endl;
  /* read individual tracks */
  int min;
  int sec;
  int frame;

  for (i=startToc; i<=endToc; i++) {
    int min;
    int sec;
    int frame;

    if (readToc(file,i,min,sec,frame) == false) {
      cout << "error in CDRomToc::readToc"<<endl;
      fclose(file);
      return false;
    }
    cout << "min:"<<min<<endl;
    cout << "sec:"<<sec<<endl;
    cout << "frame:"<<frame<<endl;
    
    insertTocEntry(min,sec,frame);
    pos++;
  }


  /* read the lead-out track */
  if (readLeadOut(file,min,sec,frame) == false) {
    cout << "error in CDRomToc::reatLeadOut"<<endl;
    return false;
  }
  pos++;
  insertTocEntry(min,sec,frame);
  
  maxEntries=pos;

  fclose(file);

  return true;
}