2007-06-19 10:00:49 -05:00
|
|
|
/***************************************************************************
|
|
|
|
*
|
2008-04-10 03:53:32 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2007-06-19 10:00:49 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2007-06-19 10:00:49 -05:00
|
|
|
*
|
2008-04-10 03:53:32 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2007-06-19 10:00:49 -05:00
|
|
|
*
|
2008-04-10 03:53:32 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2007-06-19 10:00:49 -05:00
|
|
|
*
|
2008-04-10 03:53:32 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2007-06-19 10:00:49 -05:00
|
|
|
*
|
2008-04-10 03:53:32 -05:00
|
|
|
* OpenOffice.org 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 Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2007-06-19 10:00:49 -05:00
|
|
|
*
|
2008-04-10 03:53:32 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2007-06-19 10:00:49 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2007-06-21 01:56:38 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_lingucomponent.hxx"
|
|
|
|
|
2007-06-19 10:00:49 -05:00
|
|
|
#include <iostream>
|
2008-02-04 06:44:39 -06:00
|
|
|
#include <string.h>
|
2007-06-19 10:00:49 -05:00
|
|
|
|
|
|
|
#include <libtextcat/textcat.h>
|
|
|
|
#include <altstrfunc.hxx>
|
|
|
|
#include <guess.hxx>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
Guess::Guess()
|
|
|
|
{
|
|
|
|
language_str = DEFAULT_LANGUAGE;
|
|
|
|
country_str = DEFAULT_COUNTRY;
|
|
|
|
encoding_str = DEFAULT_ENCODING;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* this use a char * string to build the guess object
|
|
|
|
* a string like those is made as : [language-country-encoding]...
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-04-24 08:02:21 -05:00
|
|
|
Guess::Guess(char * guess_str)
|
2007-06-19 10:00:49 -05:00
|
|
|
{
|
|
|
|
Guess();
|
|
|
|
|
|
|
|
string lang;
|
|
|
|
string country;
|
|
|
|
string enc;
|
|
|
|
|
|
|
|
//if the guess is not like "UNKNOWN" or "SHORT", go into the brackets
|
|
|
|
// if(strncmp((const char*)(guess_str + 1), _TEXTCAT_RESULT_UNKOWN, strlen(_TEXTCAT_RESULT_UNKOWN)) != 0
|
|
|
|
// &&
|
|
|
|
// strncmp((const char*)(guess_str + 1), _TEXTCAT_RESULT_SHORT, strlen(_TEXTCAT_RESULT_SHORT)) != 0)
|
|
|
|
// {
|
|
|
|
if(strcmp((const char*)(guess_str + 1), _TEXTCAT_RESULT_UNKOWN) != 0
|
|
|
|
&&
|
|
|
|
strcmp((const char*)(guess_str + 1), _TEXTCAT_RESULT_SHORT) != 0)
|
|
|
|
{
|
|
|
|
|
|
|
|
int current_pointer = 0;
|
|
|
|
|
|
|
|
//this is to go to the first char of the guess string ( the '[' of "[en-US-utf8]" )
|
|
|
|
while(!isSeparator(guess_str[current_pointer])){
|
|
|
|
current_pointer++;
|
|
|
|
}
|
|
|
|
current_pointer++;
|
|
|
|
|
|
|
|
//this is to pick up the language ( the "en" from "[en-US-utf8]" )
|
|
|
|
while(!isSeparator(guess_str[current_pointer])){
|
|
|
|
lang+=guess_str[current_pointer];
|
|
|
|
current_pointer++;
|
|
|
|
}
|
|
|
|
current_pointer++;
|
|
|
|
|
|
|
|
//this is to pick up the country ( the "US" from "[en-US-utf8]" )
|
|
|
|
while(!isSeparator(guess_str[current_pointer])){
|
|
|
|
country+=guess_str[current_pointer];
|
|
|
|
current_pointer++;
|
|
|
|
}
|
|
|
|
current_pointer++;
|
|
|
|
|
|
|
|
//this is to pick up the encoding ( the "utf8" from "[en-US-utf8]" )
|
|
|
|
while(!isSeparator(guess_str[current_pointer])){
|
|
|
|
enc+=guess_str[current_pointer];
|
|
|
|
current_pointer++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lang!=""){//if not we use the default value
|
|
|
|
language_str=lang;
|
|
|
|
}
|
2009-05-19 04:31:27 -05:00
|
|
|
country_str=country;
|
2007-06-19 10:00:49 -05:00
|
|
|
|
|
|
|
if(enc!=""){//if not we use the default value
|
|
|
|
encoding_str=enc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Guess::~Guess(){}
|
|
|
|
|
|
|
|
string Guess::GetLanguage()
|
|
|
|
{
|
|
|
|
return language_str;
|
|
|
|
}
|
|
|
|
|
|
|
|
string Guess::GetCountry()
|
|
|
|
{
|
|
|
|
return country_str;
|
|
|
|
}
|
|
|
|
|
|
|
|
string Guess::GetEncoding()
|
|
|
|
{
|
|
|
|
return encoding_str;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Guess::operator==(string lang)
|
|
|
|
{
|
|
|
|
string toString;
|
|
|
|
toString += GetLanguage();
|
|
|
|
toString += "-";
|
|
|
|
toString += GetCountry();
|
|
|
|
toString += "-";
|
|
|
|
toString += GetEncoding();
|
|
|
|
return start(toString, lang);
|
|
|
|
}
|