summaryrefslogtreecommitdiffstats
path: root/kaffeine/src/input/disc/paranoia.h
blob: f54d010f232081058949114d29d0c41319b3351f (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
/*
 * paranoia.h
 *
 * Copyright (C) 2002-2006 Christophe Thommeret <hftom@free.fr>
 *
 * This program 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 program 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef PARANOIA_H
#define PARANOIA_H

#include <tqstringlist.h>
#include <tqthread.h>
#include <tqwidget.h>

#include <kconfig.h>

#include "kaffeineaudioencoder.h"
#include "paranoiasettings.h"

extern "C"
{
#include <cdio/cdda.h>
#include <cdio/paranoia.h>
}

class KiloConfig : public ParanoiaSettings
{
	Q_OBJECT
  TQ_OBJECT

public:

	KiloConfig( TQWidget *parent, KConfig *confile, const TQStringList &encoders );
	~KiloConfig();

	TQString getEncoder();
	bool getNormalize();
	TQString getBaseDir();
	int getParanoiaMode();

public slots:

	virtual void accept();
	void setBaseDir();

private:

	KConfig *Conf;
};

class Paranoia : public TQThread
{
public:
	Paranoia();
	bool init( TQString dev );
	~Paranoia();
	bool encode( const TQStringList&, TQWidget* );
	long getTracks();
	TQString trackTime( int t );
	int trackFirstSector( int t );
	int discFirstSector();
	int discLastSector();
	virtual void run();
	bool running() {return isRunning;}
	int getProgress() {return progress;}

private:

	bool findCdrom();
	bool procCdrom( TQString name );
	bool initTrack( int t );
	void setMode( int mode );
	bool isAudio( int t );
	TQString trackSize( int t );
	long trackSectorSize( int t );
	bool loadEncoder( TQWidget* );
	void unloadEncoder();
	bool validPath( TQString path );
	bool setPath( TQString &path, const TQString &artist, const TQString &album );

	long nTracks;
	cdrom_drive_t *d;
	cdrom_paranoia_t *p;
	long currentSector, endOfTrack;
	bool isRunning;
	TQStringList encodingList;
	TQWidget *myParent;
	KaffeineAudioEncoder *currentEncoder;
	TQString encoderDesktop;
	bool normalize;
	TQString baseDir;
	int paraMode;
	int progress;
};

#endif /* PARANOIA_H */