Files
recycled-ni-neutrino/src/eitd/SIlanguage.cpp
Stefan Seyfried 2e9fbd20ed neutrino: fix most hardcoded paths
Conflicts:
	src/eitd/SIlanguage.cpp
	src/eitd/SIlanguage.hpp
	src/gui/bookmarkmanager.h
	src/gui/keybind_setup.cpp
	src/gui/settings_manager.cpp
	src/nhttpd/yconfig.h
	src/nhttpd/yhttpd_mods/Makefile.am
	src/system/localize.cpp


Origin commit data
------------------
Branch: ni/coolstream
Commit: 166e403965
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2013-03-10 (Sun, 10 Mar 2013)



------------------
This commit was generated by Migit
2013-03-12 17:16:13 +04:00

207 lines
5.3 KiB
C++

/*
* SIlanguage.cpp, Class for filtering preferred language
*
* Copyright (C) 2001 arzka (dbox2@oh3mqu.pp.hyper.fi)
* Copyright (C) 2006 houdini, mws
*
* Copyright (C) 2011-2012 CoolStream International Ltd
*
* License: GPLv2
*
* This program 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;
*
* This program 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
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string>
#include <vector>
#include <map>
#include <pthread.h>
#include <fstream>
#include <sectionsdclient/sectionsdclient.h>
#include "SIlanguage.hpp"
std::vector<std::string> SIlanguage::languages;
pthread_mutex_t SIlanguage::languages_lock = PTHREAD_MUTEX_INITIALIZER;
/*
ALL = Show all available languages
FIRST_FIRST = Show first found language from list. If not found show first of available language
FIRST_ALL = Show first found language from list. If not found show all available languages.
ALL_FIRST = Show all wanted languages if possible. If not found show first of av ailable language
ALL_ALL = Show all wanted languages if possible. If not found show all available languages.
*/
//CSectionsdClient::SIlanguageMode_t SIlanguage::mode = CSectionsdClient::ALL;
CSectionsdClient::SIlanguageMode_t SIlanguage::mode = CSectionsdClient::FIRST_ALL;
void SIlanguage::filter(const std::map<std::string, std::string>& s, int max, std::string& retval)
{
pthread_mutex_lock(&languages_lock);
// languages cannot get iterated through
// if another thread is updating it simultaneously
int count = max;
if (mode != CSectionsdClient::ALL) {
for (std::vector<std::string>::const_iterator it = languages.begin() ;
it != languages.end() ; ++it) {
std::map<std::string,std::string>::const_iterator text;
if ((text = s.find(*it)) != s.end()) {
if (count != max) {
retval.append(" \n");
}
retval.append(text->second);
if (--count == 0) break;
if (mode == CSectionsdClient::FIRST_FIRST ||
mode == CSectionsdClient::FIRST_ALL) {
break;
}
}
}
}
if (retval.length() == 0) {
// return all available languages
if (s.begin() != s.end()) {
for (std::map<std::string, std::string>::const_iterator it = s.begin() ;
it != s.end() ; ++it) {
if (it != s.begin()) {
retval.append(" \n");
}
retval.append(it->second);
if (--max == 0) break;
if (mode == CSectionsdClient::FIRST_FIRST ||
mode == CSectionsdClient::ALL_FIRST) {
break;
}
}
}
}
pthread_mutex_unlock(&languages_lock);
}
bool SIlanguage::loadLanguages()
{
pthread_mutex_lock(&languages_lock);
std::ifstream file(LANGUAGEFILE);
std::string word;
CSectionsdClient::SIlanguageMode_t tmpMode = CSectionsdClient::FIRST_ALL;
std::vector<std::string> tmpLang;
if (!(file >> word)) goto error;
if (word == "FIRST_FIRST") {
tmpMode = CSectionsdClient::FIRST_FIRST;
} else if (word == "FIRST_ALL") {
tmpMode = CSectionsdClient::FIRST_ALL;
} else if (word == "ALL_FIRST") {
tmpMode = CSectionsdClient::ALL_FIRST;
} else if (word == "ALL_ALL") {
tmpMode = CSectionsdClient::ALL_ALL;
} else if (word == "OFF") {
tmpMode = CSectionsdClient::LANGUAGE_MODE_OFF;
}
while (!file.eof()) {
if ((file >> word)) {
tmpLang.push_back(word);
}
}
if (tmpLang.empty()) tmpLang.push_back("OFF");
languages = tmpLang;
mode = tmpMode;
pthread_mutex_unlock(&languages_lock);
return true;
error:
tmpLang.push_back("OFF");
languages = tmpLang;
mode = tmpMode;
pthread_mutex_unlock(&languages_lock);
return false;
}
bool SIlanguage::saveLanguages()
{
pthread_mutex_lock(&languages_lock);
std::ofstream file(LANGUAGEFILE);
switch(mode) {
case CSectionsdClient::ALL:
file << "ALL\n";
break;
case CSectionsdClient::FIRST_FIRST:
file << "FIRST_FIRST\n";
break;
case CSectionsdClient::FIRST_ALL:
file << "FIRST_ALL\n";
break;
case CSectionsdClient::ALL_FIRST:
file << "ALL_FIRST\n";
break;
case CSectionsdClient::ALL_ALL:
file << "ALL_ALL\n";
break;
case CSectionsdClient::LANGUAGE_MODE_OFF:
file << "OFF\n";
break;
}
for (std::vector<std::string>::iterator it = languages.begin() ;
it != languages.end() ; ++it) {
file << *it;
file << "\n";
if (file.fail()) goto error;
}
file.close();
if (file.fail()) goto error;
pthread_mutex_unlock(&languages_lock);
return true;
error:
pthread_mutex_unlock(&languages_lock);
return false;
}
void SIlanguage::setLanguages(const std::vector<std::string>& newLanguages)
{
pthread_mutex_lock(&languages_lock);
languages = newLanguages;
pthread_mutex_unlock(&languages_lock);
}
std::vector<std::string> SIlanguage::getLanguages()
{
pthread_mutex_lock(&languages_lock);
std::vector<std::string> retval(languages); // Store it before unlock
pthread_mutex_unlock(&languages_lock);
return retval;
}
void SIlanguage::setMode(CSectionsdClient::SIlanguageMode_t newMode)
{
mode = newMode;
}
CSectionsdClient::SIlanguageMode_t SIlanguage::getMode()
{
return mode;
}