2010-05-29 02:25:19 +00:00
// Copyright (c) 2010, Amar Takhar
2007-04-08 06:01:41 +00:00
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of the Aegisub Group nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
2009-07-29 05:43:02 +00:00
// Aegisub Project http://www.aegisub.org/
/// @file charset_detect.cpp
/// @brief Wrapper around text encoding detection library
/// @ingroup utility
///
2007-04-08 06:01:41 +00:00
2009-01-04 06:31:48 +00:00
# include "config.h"
2009-09-10 13:06:40 +00:00
# ifndef AGI_PRE
2009-09-11 01:07:38 +00:00
# include <fstream>
2009-09-10 05:25:25 +00:00
# include <list>
2009-09-10 13:06:40 +00:00
2009-09-11 02:30:10 +00:00
# include <wx/arrstr.h>
2009-09-10 05:25:25 +00:00
# include <wx/choicdlg.h>
2009-09-10 13:06:40 +00:00
# include <wx/intl.h>
# endif
2009-09-10 05:25:25 +00:00
2010-05-29 02:25:19 +00:00
# include <libaegisub/charset.h>
2010-06-01 08:21:30 +00:00
# include <libaegisub/log.h>
2010-05-29 02:25:19 +00:00
2009-09-10 13:06:40 +00:00
# include "charset_detect.h"
2010-05-29 02:25:19 +00:00
# include "compat.h"
2009-09-10 05:25:25 +00:00
2010-06-03 20:31:43 +00:00
namespace CharSetDetect {
2007-04-08 06:01:41 +00:00
2010-06-03 20:31:43 +00:00
wxString GetEncoding ( wxString const & filename ) {
2010-05-29 02:25:19 +00:00
agi : : charset : : CharsetListDetected list ;
2007-04-08 06:01:41 +00:00
2010-05-29 02:25:19 +00:00
try {
2012-11-03 20:53:03 -07:00
agi : : charset : : DetectAll ( from_wx ( filename ) , list ) ;
2010-06-03 20:31:43 +00:00
} catch ( const agi : : charset : : UnknownCharset & ) {
2011-11-19 04:46:45 +00:00
/// @todo If the charset is unknown we need to display a complete list of character sets.
2008-01-17 18:35:06 +00:00
}
2012-11-03 20:53:03 -07:00
if ( list . size ( ) = = 1 ) {
auto charset = list . begin ( ) ;
LOG_I ( " charset/file " ) < < filename < < " ( " < < charset - > second < < " ) " ;
return charset - > second ;
}
2010-05-29 02:25:19 +00:00
2012-11-03 20:53:03 -07:00
wxArrayString choices ;
std : : string log_choice ;
2010-06-27 20:03:38 +00:00
2012-11-03 20:53:03 -07:00
for ( auto const & charset : list ) {
choices . push_back ( to_wx ( charset . second ) ) ;
log_choice . append ( " " + charset . second ) ;
2008-01-17 18:35:06 +00:00
}
2008-01-20 07:24:04 +00:00
2012-11-03 20:53:03 -07:00
LOG_I ( " charset/file " ) < < filename < < " ( " < < log_choice < < " ) " ;
int choice = wxGetSingleChoiceIndex ( _ ( " Aegisub could not narrow down the character set to a single one. \n Please pick one below: " ) , _ ( " Choose character set " ) , choices ) ;
if ( choice = = - 1 ) throw " Canceled " ;
return choices [ choice ] ;
2008-01-20 07:24:04 +00:00
}
2010-06-03 20:31:43 +00:00
}