/* This file is part of KBabel based Copyright (C) 1998, 1999 Torben Weis 2002-2003 Stanislav Visnovsky This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. In addition, as a special exception, the copyright holders give permission to link the code of this program with any edition of the TQt library by Trolltech AS, Norway (or with modified versions of TQt that use the same license as TQt), and distribute linked combinations including the two. You must obey the GNU General Public License in all respects for all of the code used other than TQt. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ #include #include "catalogitem.h" #include "catalogsettings.h" #include "main.h" #include #include #include #include #include /*************************************************** * * Factory * ***************************************************/ K_EXPORT_COMPONENT_FACTORY( kbabel_argstool, KGenericFactory ( "kbabeldatatool" ) ) using namespace KBabel; ArgumentTool::ArgumentTool( TQObject* parent, const char* name, const TQStringList & ) : KDataTool( parent, name ), _cache_origin( 0 ) { i18n( "what check found errors","arguments"); } bool ArgumentTool::run( const TQString& command, void* data, const TQString& datatype, const TQString& mimetype ) { if ( command != "validate" ) { kdDebug(KBABEL) << "Argument Tool does only accept the command 'validate' and 'shortcut'" << endl; kdDebug(KBABEL) << " The commands " << command << " is not accepted" << endl; return FALSE; } // Check wether we can accept the data if ( datatype != "CatalogItem" ) { kdDebug(KBABEL) << "Argument Tool only accepts datatype CatalogItem" << endl; return FALSE; } if ( mimetype != "application/x-kbabel-catalogitem" ) { kdDebug(KBABEL) << "Argument Tool only accepts mimetype application/x-kbabel-catalogitem" << endl; return FALSE; } if( command == "validate" ) { CatalogItem* item = (CatalogItem*)(data); if( item->isNoCformat() ) return true; bool hasError = false; if( _cache_origin != item->project() ) { _context = item->project()->miscSettings().contextInfo; _checkPlurals = item->project()->identitySettings().checkPluralArgument; _cache_origin = item->project(); } if(!item->isUntranslated()) { TQString formatChars="dioxXucsfeEgGp%"; if( _checkPlurals ) formatChars+="n"; // FIXME: this should care about plural forms in msgid TQString line=item->msgid().first(); TQStringList argList; // if( isPluralForm() ) { // FIXME: this is KDE specific if( line.startsWith("_n:" )) { // truncate text after first \n to get args only once line = line.mid(0,line.find("\\n")); } } line.replace(_context, ""); line.replace(TQRegExp("\\n"),""); line.simplifyWhiteSpace(); // flag, for GNU only we can allow reordering bool non_gnu = (item->pluralForm() == KDESpecific); int index=line.find(TQRegExp("%.")); while(index>=0) { int endIndex=line.find(TQRegExp("[^\\d]"),index+1); if(endIndex<0) { endIndex=line.length(); } else if( formatChars.contains(line[endIndex]) ) { endIndex++; } if(endIndex - index > 1 ) { TQString arg = line.mid(index,endIndex-index); if( arg.contains( TQRegExp("\\d") ) ) { non_gnu = true; } argList.append(arg); } index=line.find(TQRegExp("%."),endIndex); } if( item->pluralForm()==KDESpecific) { // FIXME: this is KDE specific if( _checkPlurals && line.startsWith("_n:" ) && !argList.contains("%n") ) { argList.append("%n"); } } // generate for each plural form to be checked separately line=item->msgstr().first(); TQStringList lines; // FIXME; this is KDE specific if( item->pluralForm() == KDESpecific ) { lines = TQStringList::split("\\n",line); } else { lines.append(line); } TQStringList argCache = argList; TQStringList foundArgs; for(TQStringList::Iterator i = lines.begin() ; i!=lines.end() ; i++) { // initialize for the next plural form foundArgs.clear(); argList = argCache; line=(*i); line.replace(TQRegExp("\\n"),""); TQRegExp argdesc( "%((["+formatChars+"])" +"|(\\d)+" +"|(\\d)+\\$(["+formatChars+"])" +")" ) ; index = -1; do { index = argdesc.search( line, index+1 ); if( index == -1 ) break; // do not add a redundant argument, if it is non GNU if( !non_gnu || !foundArgs.contains( argdesc.cap(0) ) ) foundArgs.append( argdesc.cap( 0 ) ); } while( true ); // now, compare the list argList = argCache; if( non_gnu ) { for ( TQStringList::Iterator it = foundArgs.begin(); it != foundArgs.end(); ++it ) { if( argList.find( *it ) == argList.end() ) { hasError = true; break; } else { argList.remove( *it ); } } if( ! argList.isEmpty() ) { hasError = true; } } else { // handle GNU with replacements TQStringList::Iterator oit = argList.begin(); for ( TQStringList::Iterator it = foundArgs.begin(); it != foundArgs.end(); ++it , ++oit) { if( *it == *oit ) { // argument is the same, mark as used *oit = TQString(); } else { // try to strip replacement int index = (*it).find( '$' ); if( index == -1 ) { // there is no replacement, this is wrong hasError = true; break; } TQString place = (*it).mid( 1, index-1 ); TQString arg = (*it).right( index ); arg[0] = '%'; TQStringList::Iterator a = argList.at( place.toInt()-1 ); if( a != argList.end() && (*a) == arg ) { (*a) = TQString(); } else { // duplicate or index is too high hasError = true; } } } for ( TQStringList::Iterator it = argList.begin(); it != argList.end(); ++it) { if( ! (*it).isNull () ) { // argument is the same, mark as used hasError = true; break; } } } } } if(hasError) { item->appendError( "Arguments" ); } else { item->removeError( "Arguments" ); } return !hasError; } return FALSE; } #include "main.moc"