summaryrefslogtreecommitdiffstats
path: root/libk3b/jobs/k3breadcdreader.h
blob: b2b7135b5e8c1e449a48f462c2a7c25694058408 (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
/* 
 *
 * $Id: k3breadcdreader.h 619556 2007-01-03 17:38:12Z trueg $
 * Copyright (C) 2003 Sebastian Trueg <trueg@k3b.org>
 *
 * This file is part of the K3b project.
 * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
 *
 * 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.
 * See the file "COPYING" for the exact licensing terms.
 */


#ifndef _K3B_READCD_READER_H_
#define _K3B_READCD_READER_H_

#include <k3bjob.h>


class K3bProcess;
class TDEProcess;
class K3bExternalBin;
namespace K3bDevice {
  class Device;
}
namespace K3b {
  class Msf;
}


class K3bReadcdReader : public K3bJob
{
  Q_OBJECT
  

 public:
  K3bReadcdReader( K3bJobHandler*, TQObject* parent = 0, const char* name = 0 );
  ~K3bReadcdReader();

  bool active() const;

 public slots:
  void start();
  void cancel();

  void setReadDevice( K3bDevice::Device* dev ) { m_readDevice = dev; }

  /** 0 means MAX */
  void setReadSpeed( int s ) { m_speed = s; }
  void setDisableCorrection( bool b ) { m_noCorr = b; }

  /** default: true */
  void setAbortOnError( bool b ) { m_noError = !b; }
  void setC2Scan( bool b ) { m_c2Scan = b; }
  void setClone( bool b ) { m_clone = b; }
  void setRetries( int i ) { m_retries = i; }

  void setSectorRange( const K3b::Msf&, const K3b::Msf& );

  void setImagePath( const TQString& p ) { m_imagePath = p; }

  /**
   * the data gets written directly into fd instead of the imagefile.
   * Be aware that this only makes sense before starting the job.
   * To disable just set fd to -1
   */
  void writeToFd( int fd );

 private slots:
  void slotStdLine( const TQString& line );
  void slotProcessExited(TDEProcess*);

 private:
  bool m_noCorr;
  bool m_clone;
  bool m_noError;
  bool m_c2Scan;
  int m_speed;
  int m_retries;

  K3bDevice::Device* m_readDevice;

  TQString m_imagePath;

  class Private;
  Private* d;
};

#endif