// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*- /* This file is part of KDE. Copyright (c) 2003 Cornelius Schumacher Copyright (c) 2003 Waldo Bastian Copyright (c) 2003 Zack Rusin 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. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include static const KCmdLineOptions options[] = { { "d", 0, 0 }, { "directory ", I18N_NOOP("Directory to generate files in"), "." }, { "+file.kcfg", I18N_NOOP("Input kcfg XML file"), 0 }, { "+file.kcfgc", I18N_NOOP("Code generation options file"), 0 }, KCmdLineLastOption }; bool globalEnums; bool itemAccessors; QStringList allNames; QRegExp *validNameRegexp; class CfgEntry { public: struct Choice { QString name; QString label; QString whatsThis; }; CfgEntry( const QString &group, const QString &type, const QString &key, const QString &name, const QString &label, const QString &whatsThis, const QString &code, const QString &defaultValue, const QValueList &choices, bool hidden ) : mGroup( group ), mType( type ), mKey( key ), mName( name ), mLabel( label ), mWhatsThis( whatsThis ), mCode( code ), mDefaultValue( defaultValue ), mChoices( choices ), mHidden( hidden ) { } void setGroup( const QString &group ) { mGroup = group; } QString group() const { return mGroup; } void setType( const QString &type ) { mType = type; } QString type() const { return mType; } void setKey( const QString &key ) { mKey = key; } QString key() const { return mKey; } void setName( const QString &name ) { mName = name; } QString name() const { return mName; } void setLabel( const QString &label ) { mLabel = label; } QString label() const { return mLabel; } void setWhatsThis( const QString &whatsThis ) { mWhatsThis = whatsThis; } QString whatsThis() const { return mWhatsThis; } void setDefaultValue( const QString &d ) { mDefaultValue = d; } QString defaultValue() const { return mDefaultValue; } void setCode( const QString &d ) { mCode = d; } QString code() const { return mCode; } void setMinValue( const QString &d ) { mMin = d; } QString minValue() const { return mMin; } void setMaxValue( const QString &d ) { mMax = d; } QString maxValue() const { return mMax; } void setParam( const QString &d ) { mParam = d; } QString param() const { return mParam; } void setParamName( const QString &d ) { mParamName = d; } QString paramName() const { return mParamName; } void setParamType( const QString &d ) { mParamType = d; } QString paramType() const { return mParamType; } void setChoices( const QValueList &d ) { mChoices = d; } QValueList choices() const { return mChoices; } void setParamValues( const QStringList &d ) { mParamValues = d; } QStringList paramValues() const { return mParamValues; } void setParamDefaultValues( const QStringList &d ) { mParamDefaultValues = d; } QString paramDefaultValue(int i) const { return mParamDefaultValues[i]; } void setParamMax( int d ) { mParamMax = d; } int paramMax() const { return mParamMax; } bool hidden() const { return mHidden; } void dump() const { kdDebug() << "" << endl; kdDebug() << " group: " << mGroup << endl; kdDebug() << " type: " << mType << endl; kdDebug() << " key: " << mKey << endl; kdDebug() << " name: " << mName << endl; kdDebug() << " label: " << mLabel << endl; // whatsthis kdDebug() << " code: " << mCode << endl; // kdDebug() << " values: " << mValues.join(":") << endl; if (!param().isEmpty()) { kdDebug() << " param name: "<< mParamName << endl; kdDebug() << " param type: "<< mParamType << endl; kdDebug() << " paramvalues: " << mParamValues.join(":") << endl; } kdDebug() << " default: " << mDefaultValue << endl; kdDebug() << " hidden: " << mHidden << endl; kdDebug() << " min: " << mMin << endl; kdDebug() << " max: " << mMax << endl; kdDebug() << "" << endl; } private: QString mGroup; QString mType; QString mKey; QString mName; QString mLabel; QString mWhatsThis; QString mCode; QString mDefaultValue; QString mParam; QString mParamName; QString mParamType; QValueList mChoices; QStringList mParamValues; QStringList mParamDefaultValues; int mParamMax; bool mHidden; QString mMin; QString mMax; }; static QString varName(const QString &n) { QString result = "@"+n; result[1] = result[1].lower(); return result; } static QString enumName(const QString &n) { QString result = "Enum"+n; result[4] = result[4].upper(); return result; } static QString enumValue(const QString &n) { QString result = n; result[0] = result[0].upper(); return result; } static QString setFunction(const QString &n) { QString result = "set"+n; result[3] = result[3].upper(); return result; } static QString getFunction(const QString &n) { QString result = n; result[0] = result[0].lower(); return result; } static void addQuotes( QString &s ) { if ( s.left( 1 ) != "\"" ) s.prepend( "\"" ); if ( s.right( 1 ) != "\"" ) s.append( "\"" ); } static QString quoteString( const QString &s ) { QString r = s; r.replace( "\\", "\\\\" ); r.replace( "\"", "\\\"" ); r.replace( "\r", "" ); r.replace( "\n", "\\n\"\n\"" ); return "\"" + r + "\""; } static QString literalString( const QString &s ) { bool isAscii = true; for(int i = s.length(); i--;) if (s[i].unicode() > 127) isAscii = false; return quoteString(s); // if (isAscii) // return "QString::fromLatin1( " + quoteString(s) + " )"; // else // return "QString::fromUtf8( " + quoteString(s) + " )"; } static QString dumpNode(const QDomNode &node) { QString msg; QTextStream s(&msg, IO_WriteOnly ); node.save(s, 0); msg = msg.simplifyWhiteSpace(); if (msg.length() > 40) return msg.left(37)+"..."; return msg; } static QString filenameOnly(QString path) { int i = path.findRev('/'); if (i >= 0) return path.mid(i+1); return path; } static void preProcessDefault( QString &defaultValue, const QString &name, const QString &type, const QValueList &choices, QString &code ) { if ( type == "String" && !defaultValue.isEmpty() ) { defaultValue = literalString(defaultValue); } else if ( type == "Path" && !defaultValue.isEmpty() ) { defaultValue = literalString( defaultValue ); } else if ( type == "StringList" && !defaultValue.isEmpty() ) { QTextStream rb( &code, IO_WriteOnly | IO_Append ); if (!code.isEmpty()) rb << endl; // rb << " QStringList default" << name << ";" << endl; rb << " default" << name << " = []" << endl; QStringList defaults = QStringList::split( ",", defaultValue ); QStringList::ConstIterator it; for( it = defaults.begin(); it != defaults.end(); ++it ) { rb << " default" << name << " << \"" << *it << "\"" << endl; } defaultValue = "default" + name; } else if ( type == "Color" && !defaultValue.isEmpty() ) { QRegExp colorRe("\\d+,\\s*\\d+,\\s*\\d+"); if (colorRe.exactMatch(defaultValue)) { defaultValue = "Qt::Color.new( " + defaultValue + " )"; } else { defaultValue = "Qt::Color.new( \"" + defaultValue + "\" )"; } } else if ( type == "Enum" ) { if ( !globalEnums ) { QValueList::ConstIterator it; for( it = choices.begin(); it != choices.end(); ++it ) { if ( (*it).name == defaultValue ) { defaultValue.prepend( enumName(name) + "_"); break; } } } } else if ( type == "IntList" ) { QTextStream rb( &code, IO_WriteOnly | IO_Append ); if (!code.isEmpty()) rb << endl; rb << " default" << name << " = []" << endl; QStringList defaults = QStringList::split( ",", defaultValue ); QStringList::ConstIterator it; for( it = defaults.begin(); it != defaults.end(); ++it ) { rb << " default" << name << " << " << *it << "" << endl; } defaultValue = "default" + name; } } CfgEntry *parseEntry( const QString &group, const QDomElement &element ) { bool defaultCode = false; QString type = element.attribute( "type" ); QString name = element.attribute( "name" ); QString key = element.attribute( "key" ); QString hidden = element.attribute( "hidden" ); QString label; QString whatsThis; QString defaultValue; QString code; QString param; QString paramName; QString paramType; QValueList choices; QStringList paramValues; QStringList paramDefaultValues; QString minValue; QString maxValue; int paramMax = 0; QDomNode n; for ( n = element.firstChild(); !n.isNull(); n = n.nextSibling() ) { QDomElement e = n.toElement(); QString tag = e.tagName(); if ( tag == "label" ) label = e.text(); else if ( tag == "whatsthis" ) whatsThis = e.text(); else if ( tag == "min" ) minValue = e.text(); else if ( tag == "max" ) maxValue = e.text(); else if ( tag == "code" ) code = e.text(); else if ( tag == "parameter" ) { param = e.attribute( "name" ); paramType = e.attribute( "type" ); if ( param.isEmpty() ) { kdError() << "Parameter must have a name: " << dumpNode(e) << endl; return 0; } if ( paramType.isEmpty() ) { kdError() << "Parameter must have a type: " << dumpNode(e) << endl; return 0; } if ((paramType == "Int") || (paramType == "UInt")) { bool ok; paramMax = e.attribute("max").toInt(&ok); if (!ok) { kdError() << "Integer parameter must have a maximum (e.g. max=\"0\"): " << dumpNode(e) << endl; return 0; } } else if (paramType == "Enum") { QDomNode n2; for ( n2 = e.firstChild(); !n2.isNull(); n2 = n2.nextSibling() ) { QDomElement e2 = n2.toElement(); if (e2.tagName() == "values") { QDomNode n3; for ( n3 = e2.firstChild(); !n3.isNull(); n3 = n3.nextSibling() ) { QDomElement e3 = n3.toElement(); if (e3.tagName() == "value") { paramValues.append( e3.text() ); } } break; } } if (paramValues.isEmpty()) { kdError() << "No values specified for parameter '" << param << "'." << endl; return 0; } paramMax = paramValues.count()-1; } else { kdError() << "Parameter '" << param << "' has type " << paramType << " but must be of type int, uint or Enum." << endl; return 0; } } else if ( tag == "default" ) { if (e.attribute("param").isEmpty()) { defaultValue = e.text(); if (e.attribute( "code" ) == "true") defaultCode = true; } } else if ( tag == "choices" ) { QDomNode n2; for( n2 = e.firstChild(); !n2.isNull(); n2 = n2.nextSibling() ) { QDomElement e2 = n2.toElement(); if ( e2.tagName() == "choice" ) { QDomNode n3; CfgEntry::Choice choice; choice.name = e2.attribute( "name" ); if ( choice.name.isEmpty() ) { kdError() << "Tag requires attribute 'name'." << endl; } for( n3 = e2.firstChild(); !n3.isNull(); n3 = n3.nextSibling() ) { QDomElement e3 = n3.toElement(); if ( e3.tagName() == "label" ) choice.label = e3.text(); if ( e3.tagName() == "whatsthis" ) choice.whatsThis = e3.text(); } choices.append( choice ); } } } } bool nameIsEmpty = name.isEmpty(); if ( nameIsEmpty && key.isEmpty() ) { kdError() << "Entry must have a name or a key: " << dumpNode(element) << endl; return 0; } if ( key.isEmpty() ) { key = name; } if ( nameIsEmpty ) { name = key; name.replace( " ", QString::null ); } else if ( name.contains( ' ' ) ) { kdWarning()<<"Entry '"< elements can't contain speces!"< paramMax)) { kdError() << "Index '" << i << "' for default value is out of range [0, "<< paramMax<<"]." << endl; return 0; } QString tmpDefaultValue = e.text(); if (e.attribute( "code" ) != "true") preProcessDefault(tmpDefaultValue, name, type, choices, code); paramDefaultValues[i] = tmpDefaultValue; } } } if (!validNameRegexp->exactMatch(name)) { if (nameIsEmpty) kdError() << "The key '" << key << "' can not be used as name for the entry because " "it is not a valid name. You need to specify a valid name for this entry." << endl; else kdError() << "The name '" << name << "' is not a valid name for an entry." << endl; return 0; } if (allNames.contains(name)) { if (nameIsEmpty) kdError() << "The key '" << key << "' can not be used as name for the entry because " "it does not result in a unique name. You need to specify a unique name for this entry." << endl; else kdError() << "The name '" << name << "' is not unique." << endl; return 0; } allNames.append(name); if (!defaultCode) { preProcessDefault(defaultValue, name, type, choices, code); } CfgEntry *result = new CfgEntry( group, type, key, name, label, whatsThis, code, defaultValue, choices, hidden == "true" ); if (!param.isEmpty()) { result->setParam(param); result->setParamName(paramName); result->setParamType(paramType); result->setParamValues(paramValues); result->setParamDefaultValues(paramDefaultValues); result->setParamMax(paramMax); } result->setMinValue(minValue); result->setMaxValue(maxValue); return result; } /** Return parameter declaration for given type. */ QString param( const QString &type ) { if ( type == "String" ) return "const QString &"; else if ( type == "StringList" ) return "const QStringList &"; else if ( type == "Font" ) return "const QFont &"; else if ( type == "Rect" ) return "const QRect &"; else if ( type == "Size" ) return "const QSize &"; else if ( type == "Color" ) return "const QColor &"; else if ( type == "Point" ) return "const QPoint &"; else if ( type == "Int" ) return "int"; else if ( type == "UInt" ) return "uint"; else if ( type == "Bool" ) return "bool"; else if ( type == "Double" ) return "double"; else if ( type == "DateTime" ) return "const QDateTime &"; else if ( type == "Int64" ) return "Q_INT64"; else if ( type == "UInt64" ) return "Q_UINT64"; else if ( type == "IntList" ) return "const QValueList &"; else if ( type == "Enum" ) return "int"; else if ( type == "Path" ) return "const QString &"; else if ( type == "Password" ) return "const QString &"; else { kdError() <<"rbkconfig_compiler does not support type \""<< type <<"\""<name() ) + "Item"; return "item" + e->name(); } QString newItem( const QString &type, const QString &name, const QString &key, const QString &defaultValue, const QString ¶m = QString::null) { QString t = "Item" + itemType( type ) + ".new( currentGroup(), " + key + ", " + varName( name ) + param; if ( type == "Enum" ) { t += ".toInt"; t += ", values" + name; } else if ( type == "Path" ) { t += ".toString"; } else if ( type == "Int64" ) { t += ".toLongLong"; } else { t += ".to" + itemType( type ); } if ( !defaultValue.isEmpty() ) { t += ", "; if ( type == "String" ) t += defaultValue; else t+= defaultValue; } t += " )"; return t; } QString addItem( const QString &type, const QString &name, const QString &key, const QString &defaultValue, const QString ¶m = QString::null, const QString ¶mName = QString::null ) { QString t = "addItem" + itemType( type ) + "( " + key + ", " + varName( name ) + param; if ( type == "Enum" ) t += ", values" + name; if ( !defaultValue.isEmpty() ) { t += ", "; if ( type == "String" ) t += defaultValue; else if ( type == "Enum" ) t += enumValue(defaultValue); else t+= defaultValue; } if (!paramName.isNull()) { t += ", \"" + paramName + "\""; } t += " )"; return t; } QString paramString(const QString &s, const CfgEntry *e, int i) { QString result = s; QString needle = "$("+e->param()+")"; if (result.contains(needle)) { QString tmp; if (e->paramType() == "Enum") { tmp = e->paramValues()[i]; } else { tmp = QString::number(i); } result.replace(needle, tmp); } return result; } QString paramString(const QString &group, const QStringList ¶meters) { QString paramString = group; QString arguments; int i = 0; for( QStringList::ConstIterator it = parameters.begin(); it != parameters.end(); ++it) { if (paramString.contains("$("+*it+")")) { i++; paramString.replace("$("+*it+")", "%s"); if (i > 1) { arguments += ", "; } arguments += " @param"+*it; } } if (arguments.isEmpty()) return "\""+group+"\""; if (i == 1) { return "\""+paramString+"\" % "+arguments; } else { return "\""+paramString+"\" % ["+arguments+"]"; } } /* int i is the value of the parameter */ QString userTextsFunctions( CfgEntry *e, QString itemVarStr=QString::null, QString i=QString::null ) { QString txt; if (itemVarStr.isNull()) itemVarStr=itemVar(e); if ( !e->label().isEmpty() ) { txt += " " + itemVarStr + ".setLabel( i18n("; if ( !e->param().isEmpty() ) txt += quoteString(e->label().replace("$("+e->param()+")", i)); else txt+= quoteString(e->label()); txt+= ") )\n"; } if ( !e->whatsThis().isEmpty() ) { txt += " " + itemVarStr + ".setWhatsThis( i18n("; if ( !e->param().isEmpty() ) txt += quoteString(e->whatsThis().replace("$("+e->param()+")", i)); else txt+= quoteString(e->whatsThis()); txt+=") )\n"; } return txt; } int main( int argc, char **argv ) { KAboutData aboutData( "rbkconfig_compiler", I18N_NOOP("KDE .kcfg compiler"), "0.3", I18N_NOOP("Ruby KConfig Compiler") , KAboutData::License_LGPL ); aboutData.addAuthor( "Cornelius Schumacher", 0, "schumacher@kde.org" ); aboutData.addAuthor( "Waldo Bastian", 0, "bastian@kde.org" ); aboutData.addAuthor( "Zack Rusin", 0, "zack@kde.org" ); aboutData.addCredit( "Reinhold Kainhofer", "Fix for parametrized entries", "reinhold@kainhofer.com", "http://reinhold.kainhofer.com" ); aboutData.addCredit( "Richard Dale", "Ruby port", "Richard_Dale@tipitina.demon.co.uk", "" ); KCmdLineArgs::init( argc, argv, &aboutData ); KCmdLineArgs::addCmdLineOptions( options ); KInstance app( &aboutData ); KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); if ( args->count() < 2 ) { kdError() << "Too few arguments." << endl; return 1; } if ( args->count() > 2 ) { kdError() << "Too many arguments." << endl; return 1; } validNameRegexp = new QRegExp("[a-zA-Z_][a-zA-Z0-9_]*"); QString baseDir = QFile::decodeName(args->getOption("directory")); if (!baseDir.endsWith("/")) baseDir.append("/"); QString inputFilename = args->url( 0 ).path(); QString codegenFilename = args->url( 1 ).path(); if (!codegenFilename.endsWith(".kcfgc")) { kdError() << "Codegen options file must have extension .kcfgc" << endl; return 1; } QString baseName = args->url( 1 ).fileName(); baseName = baseName.left(baseName.length() - 6); KSimpleConfig codegenConfig( codegenFilename, true ); QString nameSpace = codegenConfig.readEntry("NameSpace"); QString className = codegenConfig.readEntry("ClassName"); QString inherits = codegenConfig.readEntry("Inherits"); QString visibility = codegenConfig.readEntry("Visibility"); if (!visibility.isEmpty()) visibility+=" "; bool singleton = codegenConfig.readBoolEntry("Singleton", false); bool customAddons = codegenConfig.readBoolEntry("CustomAdditions"); QString memberVariables = codegenConfig.readEntry("MemberVariables"); QStringList headerIncludes = codegenConfig.readListEntry("IncludeFiles"); QStringList mutators = codegenConfig.readListEntry("Mutators"); bool allMutators = false; if ((mutators.count() == 1) && (mutators[0].lower() == "true")) allMutators = true; itemAccessors = codegenConfig.readBoolEntry( "ItemAccessors", false ); bool setUserTexts = codegenConfig.readBoolEntry( "SetUserTexts", false ); globalEnums = codegenConfig.readBoolEntry( "GlobalEnums", false ); QFile input( inputFilename ); QDomDocument doc; QString errorMsg; int errorRow; int errorCol; if ( !doc.setContent( &input, &errorMsg, &errorRow, &errorCol ) ) { kdError() << "Unable to load document." << endl; kdError() << "Parse error in " << args->url( 0 ).fileName() << ", line " << errorRow << ", col " << errorCol << ": " << errorMsg << endl; return 1; } QDomElement cfgElement = doc.documentElement(); if ( cfgElement.isNull() ) { kdError() << "No document in kcfg file" << endl; return 1; } QString cfgFileName; bool cfgFileNameArg = false; QStringList parameters; QStringList includes; QPtrList entries; entries.setAutoDelete( true ); QDomNode n; for ( n = cfgElement.firstChild(); !n.isNull(); n = n.nextSibling() ) { QDomElement e = n.toElement(); QString tag = e.tagName(); if ( tag == "include" ) { QString includeFile = e.text(); if (!includeFile.isEmpty()) includes.append(includeFile); } else if ( tag == "kcfgfile" ) { cfgFileName = e.attribute( "name" ); cfgFileNameArg = e.attribute( "arg" ).lower() == "true"; QDomNode n2; for( n2 = e.firstChild(); !n2.isNull(); n2 = n2.nextSibling() ) { QDomElement e2 = n2.toElement(); if ( e2.tagName() == "parameter" ) { parameters.append( e2.attribute( "name" ) ); } } } else if ( tag == "group" ) { QString group = e.attribute( "name" ); if ( group.isEmpty() ) { kdError() << "Group without name" << endl; return 1; } QDomNode n2; for( n2 = e.firstChild(); !n2.isNull(); n2 = n2.nextSibling() ) { QDomElement e2 = n2.toElement(); if ( e2.tagName() != "entry" ) continue; CfgEntry *entry = parseEntry( group, e2 ); if ( entry ) entries.append( entry ); else { kdError() << "Can't parse entry." << endl; return 1; } } } } if ( inherits.isEmpty() ) inherits = "KDE::ConfigSkeleton"; if ( className.isEmpty() ) { kdError() << "Class name missing" << endl; return 1; } if ( singleton && !parameters.isEmpty() ) { kdError() << "Singleton class can not have parameters" << endl; return 1; } if ( singleton && cfgFileNameArg) { kdError() << "Singleton class can not use filename as argument." << endl; return 1; } if ( !cfgFileName.isEmpty() && cfgFileNameArg) { kdError() << "Having both a fixed filename and a filename as argument is not possible." << endl; return 1; } if ( entries.isEmpty() ) { kdWarning() << "No entries." << endl; } #if 0 CfgEntry *cfg; for( cfg = entries.first(); cfg; cfg = entries.next() ) { cfg->dump(); } #endif QString implementationFileName = baseName + ".rb"; QFile implementation( baseDir + implementationFileName ); if ( !implementation.open( IO_WriteOnly ) ) { kdError() << "Can't open '" << implementationFileName << "for writing." << endl; return 1; } QTextStream rb( &implementation ); rb << "# This file is generated by rbkconfig_compiler from " << args->url(0).fileName() << "." << endl; rb << "# All changes you do to this file will be lost." << endl; rb << endl << "require 'Korundum'" << endl; if (singleton) { rb << "require 'singleton'" << endl; } rb << endl; // rb << "#ifndef " << ( !nameSpace.isEmpty() ? nameSpace.upper() + "_" : "" ) // << className.upper() << "_H" << endl; // rb << "#define " << ( !nameSpace.isEmpty() ? nameSpace.upper() + "_" : "" ) // << className.upper() << "_H" << endl << endl; // Includes // QStringList::ConstIterator it; // for( it = headerIncludes.begin(); it != headerIncludes.end(); ++it ) { // rb << "#include <" << *it << ">" << endl; // } if ( headerIncludes.count() > 0 ) rb << endl; // rb << "#include " << endl << endl; if ( !nameSpace.isEmpty() ) rb << "module " << nameSpace << endl << endl; // Class declaration header rb << "class " << className << " < " << inherits << endl; if (singleton) { rb << " include Singleton" << endl << endl; } // enums CfgEntry *e; for( e = entries.first(); e; e = entries.next() ) { QValueList choices = e->choices(); if ( !choices.isEmpty() ) { QStringList values; QValueList::ConstIterator itChoice; for( itChoice = choices.begin(); itChoice != choices.end(); ++itChoice ) { if (globalEnums) { values.append( enumValue((*itChoice).name) ); } else { values.append( enumName(e->name()) + "_" + (*itChoice).name ); } } if (!globalEnums) { values.append( enumName(e->name()) + "_COUNT" ); } int count = 0; for ( QStringList::Iterator it = values.begin(); it != values.end(); ++it, count++ ) { rb << " " << *it << " = " << count << endl; } rb << endl; } QStringList values = e->paramValues(); if ( !values.isEmpty() ) { int count = 0; for ( QStringList::Iterator it = values.begin(); it != values.end(); ++it, count++ ) { if (globalEnums) { rb << " " << enumValue(*it) << " = " << count << endl; } else { rb << " " << enumName(e->param()) << "_" << *it << " = " << count << endl; } } if (!globalEnums) { rb << " " << enumName(e->param()) << "_COUNT = " << count << endl; } rb << endl; rb << " def " << enumName(e->param()) << "ToString(i)" << endl; rb << " ["; count = 0; for ( QStringList::Iterator it = values.begin(); it != values.end(); ++it, count++ ) { if (count > 0) { rb << ", "; } rb << "\"" << *it << "\""; } rb << "].at(i)" << endl; rb << " end" << endl; } } rb << endl; for( e = entries.first(); e; e = entries.next() ) { QString n = e->name(); QString t = e->type(); // Manipulator if (allMutators || mutators.contains(n)) { rb << " #" << endl; rb << " # Set " << e->label() << endl; rb << " #" << endl; rb << " def " << setFunction(n) << "( "; if (!e->param().isEmpty()) rb << " i, "; rb << " v )" << endl; rb << " item = findItem( \""; if (!e->param().isEmpty()) { rb << e->paramName().replace("$("+e->param()+")", "%s") << "\" % "; if ( e->paramType() == "Enum" ) { rb << " "; if (globalEnums) rb << enumName(e->param()) << "ToString(i)"; else rb << enumName(e->param()) << "ToString(i)"; } else { rb << "i"; } } else { rb << n << "\""; } rb << " )" << endl; rb << " if !item.immutable? " << endl; rb << " item.property = " << varName(n); if (!e->param().isEmpty()) rb << "[i]"; rb << " = Qt::Variant.new( v )" << endl; rb << " end" << endl; rb << " end" << endl << endl; } // Accessor rb << " #" << endl; rb << " # Get " << e->label() << endl; rb << " #" << endl; rb << " def " << getFunction(n) << "("; if (!e->param().isEmpty()) rb << " " <<" i "; rb << ")" << endl; rb << " " << varName(n); if (!e->param().isEmpty()) rb << "[i]"; rb << " = findItem( \""; if (!e->param().isEmpty()) { rb << e->paramName().replace("$("+e->param()+")", "%s") << "\" % "; if ( e->paramType() == "Enum" ) { rb << " "; if (globalEnums) rb << enumName(e->param()) << "ToString(i)"; else rb << enumName(e->param()) << "ToString(i)"; } else { rb << "i"; } } else { rb << n << "\""; } rb << " ).property" << endl; rb << " return " << varName(n); if (!e->param().isEmpty()) rb << "[i]"; if ( e->type() == "Enum" ) { rb << ".toInt" << endl; } else if ( e->type() == "Int64" ) { rb << ".toLongLong" << endl; } else if ( e->type() == "Path" ) { rb << ".toString" << endl; } else { rb << ".to" << itemType( e->type() ) << endl; } rb << " end" << endl; // Item accessor if ( itemAccessors ) { rb << endl; rb << " #" << endl; rb << " # Get Item object corresponding to " << n << "()" << endl; rb << " #" << endl; rb << " def " << getFunction( n ) << "Item("; if (!e->param().isEmpty()) { rb << " " << " i "; } rb << ")" << endl; rb << " return " << itemVar(e); if (!e->param().isEmpty()) rb << "[i]"; rb << endl << " end" << endl; } rb << endl; } if (customAddons) { rb << " # Include custom additions" << endl; } // Constructor rb << " def initialize( "; if (cfgFileNameArg) rb << " config" << (parameters.isEmpty() ? " " : ", "); for (QStringList::ConstIterator it = parameters.begin(); it != parameters.end(); ++it) { if (it != parameters.begin()) rb << ","; rb << " " << *it; } rb << " )" << endl; rb << " super("; if ( !cfgFileName.isEmpty() ) rb << " \"" << cfgFileName << "\" "; if ( cfgFileNameArg ) rb << " config "; // if ( !cfgFileName.isEmpty() ) rb << ") "; rb << ")" << endl; // Store parameters for (QStringList::ConstIterator it = parameters.begin(); it != parameters.end(); ++it) { rb << " @param" << *it << " = Qt::Variant.new( " << *it << " )" << endl; } QString group; for( e = entries.first(); e; e = entries.next() ) { if ( e->group() != group ) { group = e->group(); rb << endl; rb << " # " << group << endl; } if (e->param().isEmpty()) { rb << " " << varName(e->name()) << " = Qt::Variant.new( " << rbType(e->type()) << " )"; } else { rb << " " << varName(e->name()) << " = [ "; for (int i = 0; i < e->paramMax()+1; i++) { if (i > 0) { rb << ", "; } rb << "Qt::Variant.new( " << rbType(e->type()) << " )"; } rb << " ]"; } rb << endl; } rb << endl; group = QString::null; for( e = entries.first(); e; e = entries.next() ) { if ( e->group() != group ) { if ( !group.isEmpty() ) rb << endl; group = e->group(); rb << " setCurrentGroup( " << paramString(group, parameters) << " )" << endl << endl; } QString key = paramString(e->key(), parameters); if ( !e->code().isEmpty()) { rb << e->code() << endl; } if ( e->type() == "Enum" ) { rb << " values" << e->name() << " = []" << endl; QValueList choices = e->choices(); QValueList::ConstIterator it; for( it = choices.begin(); it != choices.end(); ++it ) { rb << " choice = ItemEnum::Choice.new" << endl; rb << " choice.name = \"" << enumValue((*it).name) << "\" " << endl; if ( setUserTexts ) { if ( !(*it).label.isEmpty() ) rb << " choice.label = i18n(" << quoteString((*it).label) << ")" << endl; if ( !(*it).whatsThis.isEmpty() ) rb << " choice.whatsThis = i18n(" << quoteString((*it).whatsThis) << ")" << endl; } rb << " values" << e->name() << " << choice" << endl; } } if (e->param().isEmpty()) { // Normal case rb << " " << itemVar(e) << " = " << newItem( e->type(), e->name(), key, e->defaultValue() ) << endl; rb << " " << itemVar(e) << ".property = " << varName(e->name()) << endl; if ( !e->minValue().isEmpty() ) rb << " " << itemVar(e) << ".setMinValue(" << e->minValue() << ")" << endl; if ( !e->maxValue().isEmpty() ) rb << " " << itemVar(e) << ".setMaxValue(" << e->maxValue() << ")" << endl; if ( setUserTexts ) rb << userTextsFunctions( e ); rb << " addItem( " << itemVar(e); QString quotedName = e->name(); addQuotes( quotedName ); if ( quotedName != key ) rb << ", \"" << e->name() << "\""; rb << " )" << endl; } else { // Indexed rb << " " << itemVar(e) << " = Array.new(" << e->paramMax()+1 << ")" << endl; for(int i = 0; i <= e->paramMax(); i++) { QString defaultStr; QString itemVarStr(itemVar(e)+QString("[%1]").arg(i)); if ( !e->paramDefaultValue(i).isEmpty() ) defaultStr = e->paramDefaultValue(i); else if ( !e->defaultValue().isEmpty() ) defaultStr = paramString(e->defaultValue(), e, i); else defaultStr = defaultValue( e->type() ); rb << " " << itemVarStr << " = " << newItem( e->type(), e->name(), paramString(key, e, i), defaultStr, QString("[%1]").arg(i) ) << endl; rb << " " << itemVarStr << ".property = " << varName(e->name())+QString("[%1]").arg(i) << endl; if ( setUserTexts ) rb << userTextsFunctions( e, itemVarStr, e->paramName() ); // Make mutators for enum parameters work by adding them with $(..) replaced by the // param name. The check for isImmutable in the set* functions doesn't have the param // name available, just the corresponding enum value (int), so we need to store the // param names in a separate static list!. rb << " addItem( " << itemVarStr << ", \""; if ( e->paramType()=="Enum" ) rb << e->paramName().replace( "$("+e->param()+")", "%1").arg(e->paramValues()[i] ); else rb << e->paramName().replace( "$("+e->param()+")", "%1").arg(i); rb << "\" )" << endl; } } } rb << " end" << endl << endl; rb << "end" << endl << endl; if ( !nameSpace.isEmpty() ) rb << "end" << endl << endl; implementation.close(); }