author | llornkcor <llornkcor> | 2002-11-04 01:16:25 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-04 01:16:25 (UTC) |
commit | 4f1f048b4c3981feff68e8da0a91d32489230d65 (patch) (unidiff) | |
tree | fe1160a991b165519c11d4065fc4dc34863ca954 | |
parent | 08fdebd78a4266642a7bdb2b1ead6e306bda64ad (diff) | |
download | opie-4f1f048b4c3981feff68e8da0a91d32489230d65.zip opie-4f1f048b4c3981feff68e8da0a91d32489230d65.tar.gz opie-4f1f048b4c3981feff68e8da0a91d32489230d65.tar.bz2 |
add these might help to compile
-rw-r--r-- | core/multimedia/opieplayer/om3u.cpp | 165 | ||||
-rw-r--r-- | core/multimedia/opieplayer/om3u.h | 79 |
2 files changed, 244 insertions, 0 deletions
diff --git a/core/multimedia/opieplayer/om3u.cpp b/core/multimedia/opieplayer/om3u.cpp new file mode 100644 index 0000000..039f3b1 --- a/dev/null +++ b/core/multimedia/opieplayer/om3u.cpp | |||
@@ -0,0 +1,165 @@ | |||
1 | /* | ||
2 | This file is part of the Opie Project | ||
3 | |||
4 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> | ||
5 | =. | ||
6 | .=l. | ||
7 | .>+-= | ||
8 | _;:, .> :=|. This program is free software; you can | ||
9 | .> <`_, > . <= redistribute it and/or modify it under | ||
10 | :`=1 )Y*s>-.-- : the terms of the GNU General Public | ||
11 | .="- .-=="i, .._ License as published by the Free Software | ||
12 | - . .-<_> .<> Foundation; either version 2 of the License, | ||
13 | ._= =} : or (at your option) any later version. | ||
14 | .%`+i> _;_. | ||
15 | .i_,=:_. -<s. This program is distributed in the hope that | ||
16 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | ||
17 | : .. .:, . . . without even the implied warranty of | ||
18 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | ||
19 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | ||
20 | ..}^=.= = ; General Public License for more | ||
21 | ++= -. .` .: details. | ||
22 | : = ...= . :.=- | ||
23 | -. .:....=;==+<; You should have received a copy of the GNU | ||
24 | -_. . . )=. = General Public License along with | ||
25 | -- :-=` this library; see the file COPYING.LIB. | ||
26 | If not, write to the Free Software Foundation, | ||
27 | Inc., 59 Temple Place - Suite 330, | ||
28 | Boston, MA 02111-1307, USA. | ||
29 | |||
30 | */ | ||
31 | |||
32 | #include "playlistwidget.h" | ||
33 | #include "om3u.h" | ||
34 | |||
35 | #include <qpe/applnk.h> | ||
36 | #include <qpe/qpeapplication.h> | ||
37 | #include <qpe/storage.h> | ||
38 | #include <qpe/mimetype.h> | ||
39 | #include <qpe/global.h> | ||
40 | #include <qpe/resource.h> | ||
41 | |||
42 | #include <qdir.h> | ||
43 | #include <qregexp.h> | ||
44 | #include <qstring.h> | ||
45 | #include <qtextstream.h> | ||
46 | #include <qstringlist.h> | ||
47 | #include <qcstring.h> | ||
48 | |||
49 | //extern PlayListWidget *playList; | ||
50 | |||
51 | Om3u::Om3u( const QString &filePath, int mode) | ||
52 | : QStringList (){ | ||
53 | //qDebug("<<<<<<<new m3u "+filePath); | ||
54 | f.setName(filePath); | ||
55 | f.open(mode); | ||
56 | } | ||
57 | |||
58 | Om3u::~Om3u(){} | ||
59 | |||
60 | void Om3u::readM3u() { | ||
61 | // qDebug("<<<<<<reading m3u "+f.name()); | ||
62 | QTextStream t(&f); | ||
63 | QString s; | ||
64 | while ( !t.atEnd() ) { | ||
65 | s=t.readLine(); | ||
66 | qDebug(s); | ||
67 | if( s.find( "#", 0, TRUE) == -1 ) { | ||
68 | if( s.left(2) == "E:" || s.left(2) == "P:" ) { | ||
69 | s = s.right( s.length() -2 ); | ||
70 | QFileInfo f( s ); | ||
71 | QString name = f.baseName(); | ||
72 | name = name.right( name.length() - name.findRev( "\\", -1, TRUE ) -1 ); | ||
73 | s=s.replace( QRegExp( "\\" ), "/" ); | ||
74 | append(s); | ||
75 | // qDebug(s); | ||
76 | } else { // is url | ||
77 | s.replace( QRegExp( "%20" )," " ); | ||
78 | QString name; | ||
79 | // if( name.left( 4 ) == "http" ) { | ||
80 | // name = s.right( s.length() - 7 ); | ||
81 | // } else { | ||
82 | name = s; | ||
83 | // } | ||
84 | append(name); | ||
85 | // qDebug(name); | ||
86 | } | ||
87 | } | ||
88 | } | ||
89 | } | ||
90 | |||
91 | void Om3u::readPls() { //it's a pls file | ||
92 | QTextStream t( &f ); | ||
93 | QString s; | ||
94 | while ( !t.atEnd() ) { | ||
95 | s = t.readLine(); | ||
96 | if( s.left(4) == "File" ) { | ||
97 | s = s.right( s.length() - 6 ); | ||
98 | s.replace( QRegExp( "%20" )," "); | ||
99 | // qDebug( "adding " + s + " to playlist" ); | ||
100 | // numberofentries=2 | ||
101 | // File1=http | ||
102 | // Title | ||
103 | // Length | ||
104 | // Version | ||
105 | // File2=http | ||
106 | s = s.replace( QRegExp( "\\" ), "/" ); | ||
107 | QFileInfo f( s ); | ||
108 | QString name = f.baseName(); | ||
109 | if( name.left( 4 ) == "http" ) { | ||
110 | name = s.right( s.length() - 7); | ||
111 | } else { | ||
112 | name = s; | ||
113 | } | ||
114 | name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 ); | ||
115 | if( s.at( s.length() - 4) == '.') // if this is probably a file | ||
116 | append(s); | ||
117 | else { //if its a url | ||
118 | if( name.right( 1 ).find( '/' ) == -1) { | ||
119 | s += "/"; | ||
120 | } | ||
121 | append(s); | ||
122 | } | ||
123 | } | ||
124 | } | ||
125 | } | ||
126 | |||
127 | void Om3u::write() { //writes list to m3u file | ||
128 | QString list; | ||
129 | if(count()>0) { | ||
130 | for ( QStringList::ConstIterator it = begin(); it != end(); ++it ) { | ||
131 | qDebug(*it); | ||
132 | list += *it+"\n"; | ||
133 | } | ||
134 | f.writeBlock( list, list.length() ); | ||
135 | } | ||
136 | // f.close(); | ||
137 | } | ||
138 | |||
139 | void Om3u::add(const QString &filePath) { //adds to m3u file | ||
140 | append(filePath); | ||
141 | } | ||
142 | |||
143 | void Om3u::remove(const QString &filePath) { //removes from m3u list | ||
144 | QString list, currentFile; | ||
145 | if(count()>0) { | ||
146 | for ( QStringList::ConstIterator it = begin(); it != end(); ++it ) { | ||
147 | currentFile=*it; | ||
148 | // qDebug(*it); | ||
149 | |||
150 | if( filePath != currentFile) | ||
151 | list += currentFile+"\n"; | ||
152 | } | ||
153 | f.writeBlock( list, list.length() ); | ||
154 | } | ||
155 | } | ||
156 | |||
157 | void Om3u::deleteFile(const QString &filePath) {//deletes m3u file | ||
158 | f.close(); | ||
159 | f.remove(); | ||
160 | |||
161 | } | ||
162 | |||
163 | void Om3u::close() { //closes m3u file | ||
164 | f.close(); | ||
165 | } | ||
diff --git a/core/multimedia/opieplayer/om3u.h b/core/multimedia/opieplayer/om3u.h new file mode 100644 index 0000000..9c7cf9a --- a/dev/null +++ b/core/multimedia/opieplayer/om3u.h | |||
@@ -0,0 +1,79 @@ | |||
1 | /* | ||
2 | This file is part of the Opie Project | ||
3 | |||
4 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> | ||
5 | =. | ||
6 | .=l. | ||
7 | .>+-= | ||
8 | _;:, .> :=|. This program is free software; you can | ||
9 | .> <`_, > . <= redistribute it and/or modify it under | ||
10 | :`=1 )Y*s>-.-- : the terms of the GNU General Public | ||
11 | .="- .-=="i, .._ License as published by the Free Software | ||
12 | - . .-<_> .<> Foundation; either version 2 of the License, | ||
13 | ._= =} : or (at your option) any later version. | ||
14 | .%`+i> _;_. | ||
15 | .i_,=:_. -<s. This program is distributed in the hope that | ||
16 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | ||
17 | : .. .:, . . . without even the implied warranty of | ||
18 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | ||
19 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | ||
20 | ..}^=.= = ; General Public License for more | ||
21 | ++= -. .` .: details. | ||
22 | : = ...= . :.=- | ||
23 | -. .:....=;==+<; You should have received a copy of the GNU | ||
24 | -_. . . )=. = General Public License along with | ||
25 | -- :-=` this library; see the file COPYING.LIB. | ||
26 | If not, write to the Free Software Foundation, | ||
27 | Inc., 59 Temple Place - Suite 330, | ||
28 | Boston, MA 02111-1307, USA. | ||
29 | |||
30 | */ | ||
31 | |||
32 | #ifndef OM3U_H | ||
33 | #define OM3U_H | ||
34 | |||
35 | #include "playlistwidget.h" | ||
36 | |||
37 | #include <qpe/applnk.h> | ||
38 | #include <qpe/qpeapplication.h> | ||
39 | #include <qpe/storage.h> | ||
40 | #include <qpe/mimetype.h> | ||
41 | #include <qpe/global.h> | ||
42 | #include <qpe/resource.h> | ||
43 | |||
44 | #include <qdir.h> | ||
45 | #include <qregexp.h> | ||
46 | #include <qstring.h> | ||
47 | #include <qtextstream.h> | ||
48 | #include <qstringlist.h> | ||
49 | #include <qcstring.h> | ||
50 | #include <qfile.h> | ||
51 | |||
52 | |||
53 | class Om3u : public QStringList { | ||
54 | // Q_OBJECT | ||
55 | public: | ||
56 | Om3u( const QString &filePath, int mode); | ||
57 | ~Om3u(); | ||
58 | void readM3u(); | ||
59 | void readPls(); | ||
60 | void write(); | ||
61 | void add(const QString &); | ||
62 | void remove(const QString &); | ||
63 | void deleteFile(const QString &); | ||
64 | void close(); | ||
65 | |||
66 | public slots: | ||
67 | |||
68 | protected: | ||
69 | |||
70 | private: | ||
71 | QFile f; | ||
72 | private slots: | ||
73 | |||
74 | |||
75 | }; | ||
76 | |||
77 | #endif// M3U_H | ||
78 | |||
79 | |||