summaryrefslogtreecommitdiff
path: root/genindex/file.h
blob: 56f5a42d8ccf74a075d77198c3c6a7290cc5ea1a (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
/*
 * A VDR index file generator (C++)
 *
 * (C) 2003-2006 Stefan Huelswitt <s.huelswitt@gmx.de>
 *
 * This code is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This code is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
 *
 *-------------------------------------------------------------------------------
 *  Revision History
 *  $Log: file.h,v $
 *  Revision 1.2  2016/09/01 15:37:42  richard
 *  Extensively updated to V0.2 for EN 300 743 compliant subtitles
 *  added   -b  and  -n flags
 *
 *-------------------------------------------------------------------------------
 */

#ifndef __FILE_H
#define __FILE_H

#include <stdio.h>
#include "tools.h"

// -------------------------------------------------------------------

class cIndex {
private:
  FILE *f;
  bool read;
  const char *dir;
  struct tIndex { int offset; uchar type; uchar number; short reserved; };
public:
  cIndex(const char *Dir);
  ~cIndex();
  bool Open(bool Read=false);
  bool Write(int fileNr, int fileOff, int picType);
  bool Read(int &fileNr, int &fileOff);
  };

// -------------------------------------------------------------------

class cFileName {
private:
  const char *input;
  bool largeOK;
  int fd;
  int fileno;
  long long size;
  char filename[64];
public:
  cFileName(const char *Input, bool LargeOK);
  ~cFileName();
  int Open(void);
  int NextFile(void);
  int OpenWrite(void);
  int NextWriteFile(void);
  int Skip(int nr, int off);
  int FileNumber(void) { return fileno; }
  long long FileSize(void) { return size; }
  };

#endif

// --------- $Id: file.h,v 1.2 2016/09/01 15:37:42 richard Exp $ ---------- END