forked from mixxxdj/mixxx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparsercsv.h
43 lines (37 loc) · 1.17 KB
/
parsercsv.h
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
//
// C++ Interface: parserm3u
//
// Description: Interface header parse Comma-Separated Values (CSV) formatted playlists (rfc4180)
//
//
// Author: Ingo Kossyk <kossyki@cs.tu-berlin.de>, (C) 2004
// Author: Tobias Rafreider trafreider@mixxx.org, (C) 2011
// Author: Daniel Schürmann daschuer@gmx.de, (C) 2011
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef PARSERCSV_H
#define PARSERCSV_H
#include <QList>
#include <QString>
#include <QByteArray>
#include "library/parser.h"
#include "library/basesqltablemodel.h"
class ParserCsv : public Parser
{
Q_OBJECT
public:
ParserCsv();
virtual ~ParserCsv();
/**Overwriting function parse in class Parser**/
QList<QString> parse(QString);
// Playlist Export
static bool writeCSVFile(const QString &file, BaseSqlTableModel* pPlaylistTableModel, bool useRelativePath);
// Readable Text export
static bool writeReadableTextFile(const QString &file, BaseSqlTableModel* pPlaylistTableModel, bool writeTimestamp);
private:
/**Reads a line from the file and returns filepath if a valid file**/
QList<QList<QString> > tokenize(const QByteArray& str, char delimiter);
};
#endif