-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcdrutil.h
More file actions
84 lines (76 loc) · 2.96 KB
/
cdrutil.h
File metadata and controls
84 lines (76 loc) · 2.96 KB
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
/**
* Copyright (C) 2021 Jo2003 (olenka.joerg@gmail.com)
* This file is part of cd2netmd_gui
*
* cd2netmd 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 3 of the License, or
* (at your option) any later version.
*
* cd2netmd 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
*/
#pragma once
#include "ccliprocess.h"
#include <QFile>
#include <QVector>
#include "defines.h"
//------------------------------------------------------------------------------
//! @brief This class describes the Mac drutil handling.
//------------------------------------------------------------------------------
class CDRUtil : public CCliProcess
{
Q_OBJECT
/// program executable path
static constexpr const char* DRUTIL_CLI = "drutil";
public:
/// CD Text needed information
struct SCDText
{
QString mArtist; ///< artist
QString mTitle; ///< title
};
/// type to send data
using CDTextData = QVector<SCDText>;
//--------------------------------------------------------------------------
//! @brief Constructs a new instance.
//!
//! @param parent The parent
//--------------------------------------------------------------------------
explicit CDRUtil(QObject *parent = nullptr);
//--------------------------------------------------------------------------
//! @brief start encoder
//!
//! @return 0 on success
//--------------------------------------------------------------------------
int start();
private slots:
//--------------------------------------------------------------------------
//! @brief Finishes a copy.
//!
//! @param[in] exitCode The exit code
//! @param[in] exitStatus The exit status
//--------------------------------------------------------------------------
void finish(int exitCode, ExitStatus exitStatus);
signals:
//--------------------------------------------------------------------------
//! @brief signals that current file was handled
//!
//! @param[in] cdt cd text data
//--------------------------------------------------------------------------
void fileDone(CDTextData cdt);
protected:
//--------------------------------------------------------------------------
//! @brief parse output of drutil (xml)
//!
//! @param[in] xmlData xml data string
//! @param[in] cdtdata buffer for CD-TEXT data
//!
//! @return 0 -> ok; -1 -> error
//--------------------------------------------------------------------------
int parseXml(const QString& xmlData, CDTextData& cdtdata);
};