diff --git a/src/getword.cpp b/src/getword.cpp index 393e959..880e1f1 100755 --- a/src/getword.cpp +++ b/src/getword.cpp @@ -97,7 +97,7 @@ bool GetWord::isWordCharacter ( char *s, size_t *bytes ) // Unicode punctuation marks // Based on http://www1.tip.nl/~t876506/utf8tbl.html return ( - *us == 226 && * ( us + 1 ) == 128 || + ( *us == 226 && * ( us + 1 ) == 128 ) || *us == 194 || *us == 203 ) ? false : true; diff --git a/src/playlistrenamer.cpp b/src/playlistrenamer.cpp deleted file mode 100644 index 8657d5e..0000000 --- a/src/playlistrenamer.cpp +++ /dev/null @@ -1,163 +0,0 @@ -#include -#include "playlistrenamer.h" -#include "binaryfile.h" -#include "replace.h" -#include "wrapregex.h" -#include - -bool PlayListRenamer::run ( - const std::string& folder ) -{ - std::string m3uFile, m3uBuffer; - m3uFile = folder + "playlist.m3u"; - - if ( !readFile ( m3uFile, m3uBuffer ) ) - { - return false; - } - - std::vector lines; - if ( !splitBuffer ( m3uBuffer, lines ) ) - { - wxMessageBox ( _T("can't split buffer") ); - return false; - } - - std::string title, from, to; - size_t lineCount = lines.size(); - int trackNo = 0; - - wxString random; - random.Printf ( _T("%i"), lineCount ); - wxMessageBox (random ); - for ( size_t i = 0; i < lineCount; i++ ) - { - wxString line; - line = wxString ( lines[i].c_str(), wxConvUTF8, lines[i].size() ); - wxMessageBox ( line ); - - if ( lines[i][0] == '#' ) - { - if ( lines[i].find ( "EXTINF" ) == std::string::npos ) - continue; - - //isolate m3u trackname - std::string pattern0 = ".+?,"; - WrapRegex re0 ( pattern0, true ); - int replacements; - title = re0.replaceGlobal ( lines[i], &replacements ); - - bool abbrev = false; - if ( title.size() > 22 ) - { - title.erase ( 18 ); - abbrev = true; - } - - // no trailing whitespace - std::string pattern1 = "\\s+$"; - WrapRegex re1 ( pattern1, false ); - title = re1.replaceGlobal ( title, &replacements ); - - // no contiguous whitespace - std::string pattern2 = "\\s\\s+"; - std::string replace2 = " "; - WrapRegex re2 ( pattern2, false, replace2 ); - title = re2.replaceGlobal ( title, &replacements ); - - // alphanumeric only - std::string pattern3 = "[;\\.\\[\\],!^&*()]"; - WrapRegex re3 ( pattern3, false ); - title = re3.replaceGlobal ( title, &replacements ); - - if ( abbrev ) - title.append ( "... " ); - - title += ".mp3"; - } - else - { - from = lines[i]; - to = title; - - wxString wideFrom, wideTo; - wideFrom = wxString ( from.c_str(), wxConvUTF8, from.size() ); - wideTo = wxString ( to.c_str(), wxConvUTF8, to.size() ); - - renameFile ( from, to, folder ); - editFiles ( from, to, folder ); - - title.clear(); - } - } -} - -bool PlayListRenamer::readFile ( const std::string& path, std::string& buffer ) -{ - buffer.clear(); - try { - BinaryFile bf ( path.c_str() ); - buffer.append ( bf.getData(), bf.getDataLen() ); - } - catch ( ... ) - { - return false; - } - return true; -} - -bool PlayListRenamer::splitBuffer ( const std::string& buffer, std::vector& lineVector ) -{ - wxMessageBox ( wxString ( buffer.c_str(), wxConvUTF8, buffer.size() ) ); - std::string line; - lineVector.clear(); - size_t bufferSize = buffer.size(); - - for ( size_t i = 0; i < bufferSize; i++ ) - { - if ( buffer[i] == '\n' ) - { - if ( !line.empty() ) - { - lineVector.push_back ( line ); - line.clear(); - } - } - else if ( buffer[i] == '\r' ) - { - ; - } - else - line.append ( buffer[i], 1 ); - } - if ( !line.empty() ) - lineVector.push_back ( line ); - - if ( lineVector.empty() ) - return false; - - return true; -} - -std::string PlayListRenamer::numToString ( int i) -{ - std::stringstream sstr; - sstr << i; - - return sstr.str(); -} - -void PlayListRenamer::renameFile ( const std::string& from, const std::string& to, const std::string& folder ) -{ - wxString wideFrom, wideTo, wideFolder; - wideFolder = wxString ( folder.c_str(), wxConvUTF8, folder.size() ); - wideFrom = wxString ( from.c_str(), wxConvUTF8, from.size() ); - wideTo = wxString ( to.c_str(), wxConvUTF8, to.size() ); - wxMessageBox ( wideFolder + wideFrom, wideFolder + wideTo ); - //wxRenameFile ( wideFolder + wideFrom, wideFolder + wideTo ); -} - -void PlayListRenamer::editFiles ( const std::string& from, const std::string& to, const std::string& folder ) -{ - //tbd -} diff --git a/src/playlistrenamer.h b/src/playlistrenamer.h deleted file mode 100644 index 87717dc..0000000 --- a/src/playlistrenamer.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef PLAYLIST_RENAMER_H -#define PLAYLIST_RENAMER_H - -#include -#include - -class PlayListRenamer -{ -public: - PlayListRenamer() {} - ~PlayListRenamer() {} - bool run ( const std::string& folder ); -private: - bool readFile ( const std::string& path, std::string& buffer ); - bool splitBuffer ( const std::string& buffer, std::vector& lineVector ); - void renameFile ( const std::string& from, const std::string& to, const std::string& folder ); - void editFiles ( const std::string& from, const std::string& to, const std::string& folder ); - std::string numToString ( int i ); -}; - -#endif diff --git a/src/png/Thumbs.db b/src/png/Thumbs.db deleted file mode 100755 index 3f6f799..0000000 Binary files a/src/png/Thumbs.db and /dev/null differ diff --git a/src/xmlcopyeditor.cpp b/src/xmlcopyeditor.cpp index 384ca6f..9a15766 100755 --- a/src/xmlcopyeditor.cpp +++ b/src/xmlcopyeditor.cpp @@ -202,15 +202,19 @@ END_EVENT_TABLE() IMPLEMENT_APP ( MyApp) -MyApp::MyApp() : checker ( NULL ), server ( NULL ), connection ( NULL ), +MyApp::MyApp() + : checker ( NULL ) + , server ( NULL ) + , client ( NULL ) + , connection ( NULL ) + , singleInstanceCheck ( false ) + , lang ( 0 ) #if defined(__WXMSW__) && !wxCHECK_VERSION(2,9,0) - config ( new wxFileConfig ( _T ( ".xmlcopyeditor" ) ) )//( _T ( "SourceForge Project\\XML Copy Editor" ) ) ) + , config ( new wxFileConfig ( _T ( ".xmlcopyeditor" ) ) )//( _T ( "SourceForge Project\\XML Copy Editor" ) ) ) #else - config ( new wxFileConfig ( _T ( "xmlcopyeditor" ) ) ) + , config ( new wxFileConfig ( _T ( "xmlcopyeditor" ) ) ) #endif { - lang = 0; - #if defined ( __WXGTK__ ) && !defined ( __WXDEBUG__ ) int fdnull = open ( "/dev/null", O_WRONLY, 0 ); dup2 ( fdnull, STDERR_FILENO );