You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
278 lines
8.8 KiB
278 lines
8.8 KiB
15 years ago
|
/*****************************************************************
|
||
|
Copyright (c) 1999 Torben Weis <weis@kde.org>
|
||
|
Copyright (c) 2000 Matthias Ettrich <ettrich@kde.org>
|
||
|
|
||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
of this software and associated documentation files (the "Software"), to deal
|
||
|
in the Software without restriction, including without limitation the rights
|
||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
copies of the Software, and to permit persons to whom the Software is
|
||
|
furnished to do so, subject to the following conditions:
|
||
|
|
||
|
The above copyright notice and this permission notice shall be included in
|
||
|
all copies or substantial portions of the Software.
|
||
|
|
||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
|
||
|
******************************************************************/
|
||
|
#include <qdom.h>
|
||
|
#include <qfile.h>
|
||
|
#include <qtextstream.h>
|
||
|
#include <qstring.h>
|
||
|
#include <qstringlist.h>
|
||
|
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
#include "main.h"
|
||
|
#include "type.h"
|
||
|
|
||
|
static bool isIntType( const QString& t )
|
||
|
{
|
||
|
return ((t == "int")
|
||
|
|| (t == "signed int")
|
||
|
|| (t == "unsigned int")
|
||
|
|| (t == "uint")
|
||
|
|| (t == "unsigned")
|
||
|
|| (t == "signed short int")
|
||
|
|| (t == "signed short")
|
||
|
|| (t == "short int")
|
||
|
|| (t == "short")
|
||
|
|| (t == "unsigned short int")
|
||
|
|| (t == "unsigned short")
|
||
|
|| (t == "ushort")
|
||
|
|| (t == "long int")
|
||
|
|| (t == "signed long int")
|
||
|
|| (t == "long")
|
||
|
|| (t == "signed long")
|
||
|
|| (t == "unsigned long int")
|
||
|
|| (t == "unsigned long")
|
||
|
|| (t == "ulong")
|
||
|
|| (t == "char")
|
||
|
|| (t == "signed char")
|
||
|
|| (t == "unsigned char"));
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Writes the stub implementation
|
||
|
*/
|
||
|
void generateStubImpl( const QString& idl, const QString& header, const QString& /*headerBase*/, const QString& filename, QDomElement de )
|
||
|
{
|
||
|
QFile impl( filename );
|
||
|
if ( !impl.open( IO_WriteOnly ) )
|
||
|
qFatal("Could not write to %s", filename.latin1() );
|
||
|
|
||
|
QTextStream str( &impl );
|
||
|
|
||
|
str << "/****************************************************************************" << endl;
|
||
|
str << "**" << endl;
|
||
|
str << "** DCOP Stub Implementation created by dcopidl2cpp from " << idl << endl;
|
||
|
str << "**" << endl;
|
||
|
str << "** WARNING! All changes made in this file will be lost!" << endl;
|
||
|
str << "**" << endl;
|
||
|
str << "*****************************************************************************/" << endl;
|
||
|
str << endl;
|
||
|
|
||
|
str << "#include \"" << header << "\"" << endl;
|
||
|
str << "#include <dcopclient.h>" << endl << endl;
|
||
|
str << "#include <kdatastream.h>" << endl;
|
||
|
|
||
|
QDomElement e = de.firstChild().toElement();
|
||
|
for( ; !e.isNull(); e = e.nextSibling().toElement() ) {
|
||
|
if ( e.tagName() != "CLASS" )
|
||
|
continue;
|
||
|
QDomElement n = e.firstChild().toElement();
|
||
|
Q_ASSERT( n.tagName() == "NAME" );
|
||
|
QString classNameBase = n.firstChild().toText().data();
|
||
|
QString className_stub = classNameBase + "_stub";
|
||
|
|
||
|
QString classNameFull = className_stub; // class name with possible namespaces prepended
|
||
|
// namespaces will be removed from className now
|
||
|
int namespace_count = 0;
|
||
|
QString namespace_tmp = className_stub;
|
||
|
str << endl;
|
||
|
for(;;) {
|
||
|
int pos = namespace_tmp.find( "::" );
|
||
|
if( pos < 0 ) {
|
||
|
className_stub = namespace_tmp;
|
||
|
break;
|
||
|
}
|
||
|
str << "namespace " << namespace_tmp.left( pos ) << " {" << endl;
|
||
|
++namespace_count;
|
||
|
namespace_tmp = namespace_tmp.mid( pos + 2 );
|
||
|
}
|
||
|
|
||
|
str << endl;
|
||
|
|
||
|
// Write constructors
|
||
|
str << className_stub << "::" << className_stub << "( const QCString& app, const QCString& obj )" << endl;
|
||
|
str << " : ";
|
||
|
|
||
|
// Always explicitly call DCOPStub constructor, because it's virtual base class.
|
||
|
// Calling other ones doesn't matter, as they don't do anything important.
|
||
|
str << "DCOPStub( app, obj )" << endl;
|
||
|
|
||
|
str << "{" << endl;
|
||
|
str << "}" << endl << endl;
|
||
|
|
||
|
str << className_stub << "::" << className_stub << "( DCOPClient* client, const QCString& app, const QCString& obj )" << endl;
|
||
|
str << " : ";
|
||
|
|
||
|
str << "DCOPStub( client, app, obj )" << endl;
|
||
|
|
||
|
str << "{" << endl;
|
||
|
str << "}" << endl << endl;
|
||
|
|
||
|
str << className_stub << "::" << className_stub << "( const DCOPRef& ref )" << endl;
|
||
|
str << " : ";
|
||
|
|
||
|
str << "DCOPStub( ref )" << endl;
|
||
|
|
||
|
str << "{" << endl;
|
||
|
str << "}" << endl << endl;
|
||
|
|
||
|
// Write marshalling code
|
||
|
QDomElement s = e.firstChild().toElement();
|
||
|
for( ; !s.isNull(); s = s.nextSibling().toElement() ) {
|
||
|
if (s.tagName() != "FUNC")
|
||
|
continue;
|
||
|
QDomElement r = s.firstChild().toElement();
|
||
|
Q_ASSERT( r.tagName() == "TYPE" );
|
||
|
QString result = r.firstChild().toText().data();
|
||
|
bool async = result == "ASYNC";
|
||
|
if ( async) {
|
||
|
result = "void";
|
||
|
str << result << " ";
|
||
|
} else
|
||
|
result = writeType( str, r );
|
||
|
|
||
|
r = r.nextSibling().toElement();
|
||
|
Q_ASSERT ( r.tagName() == "NAME" );
|
||
|
QString funcName = r.firstChild().toText().data();
|
||
|
str << className_stub << "::" << funcName << "(";
|
||
|
|
||
|
QStringList args;
|
||
|
QStringList argtypes;
|
||
|
bool first = true;
|
||
|
r = r.nextSibling().toElement();
|
||
|
for( ; !r.isNull(); r = r.nextSibling().toElement() ) {
|
||
|
if ( !first )
|
||
|
str << ", ";
|
||
|
else
|
||
|
str << " ";
|
||
|
first = false;
|
||
|
Q_ASSERT( r.tagName() == "ARG" );
|
||
|
QDomElement a = r.firstChild().toElement();
|
||
|
QString type = writeType( str, a );
|
||
|
argtypes.append( type );
|
||
|
args.append( QString("arg" ) + QString::number( args.count() ) ) ;
|
||
|
str << args.last();
|
||
|
}
|
||
|
if ( !first )
|
||
|
str << " ";
|
||
|
str << ")";
|
||
|
|
||
|
//const methods in a stub can't compile, they need to call setStatus()
|
||
|
//if ( s.hasAttribute("qual") )
|
||
|
// str << " " << s.attribute("qual");
|
||
|
str << endl;
|
||
|
|
||
|
str << "{" << endl ;
|
||
|
|
||
|
|
||
|
funcName += "(";
|
||
|
first = true;
|
||
|
for( QStringList::Iterator it = argtypes.begin(); it != argtypes.end(); ++it ){
|
||
|
if ( !first )
|
||
|
funcName += ",";
|
||
|
first = false;
|
||
|
funcName += *it;
|
||
|
}
|
||
|
funcName += ")";
|
||
|
|
||
|
if ( async ) {
|
||
|
|
||
|
str << " if ( !dcopClient() ) {"<< endl;
|
||
|
str << "\tsetStatus( CallFailed );" << endl;
|
||
|
str << "\treturn;" << endl;
|
||
|
str << " }" << endl;
|
||
|
|
||
|
str << " QByteArray data;" << endl;
|
||
|
if ( !args.isEmpty() ) {
|
||
|
str << " QDataStream arg( data, IO_WriteOnly );" << endl;
|
||
|
for( QStringList::Iterator args_count = args.begin(); args_count != args.end(); ++args_count ){
|
||
|
str << " arg << " << *args_count << ";" << endl;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
str << " dcopClient()->send( app(), obj(), \"" << funcName << "\", data );" << endl;
|
||
|
str << " setStatus( CallSucceeded );" << endl;
|
||
|
|
||
|
} else {
|
||
|
|
||
|
if ( result != "void" ) {
|
||
|
str << " " << result << " result";
|
||
|
if (isIntType( result ))
|
||
|
str << " = 0";
|
||
|
else if (result == "float" || result == "double")
|
||
|
str << " = 0.0";
|
||
|
else if ( result == "bool" )
|
||
|
str << " = false";
|
||
|
|
||
|
str << ";" << endl;
|
||
|
}
|
||
|
|
||
|
str << " if ( !dcopClient() ) {"<< endl;
|
||
|
str << "\tsetStatus( CallFailed );" << endl;
|
||
|
if ( result != "void" )
|
||
|
str << "\treturn result;" << endl;
|
||
|
else
|
||
|
str << "\treturn;" << endl;
|
||
|
str << " }" << endl;
|
||
|
|
||
|
str << " QByteArray data, replyData;" << endl;
|
||
|
str << " QCString replyType;" << endl;
|
||
|
|
||
|
if ( !args.isEmpty() ) {
|
||
|
str << " QDataStream arg( data, IO_WriteOnly );" << endl;
|
||
|
for( QStringList::Iterator args_count = args.begin(); args_count != args.end(); ++args_count ){
|
||
|
str << " arg << " << *args_count << ";" << endl;
|
||
|
}
|
||
|
}
|
||
|
str << " if ( dcopClient()->call( app(), obj(), \"" << funcName << "\",";
|
||
|
str << " data, replyType, replyData ) ) {" << endl;
|
||
|
if ( result != "void" ) {
|
||
|
str << "\tif ( replyType == \"" << result << "\" ) {" << endl;
|
||
|
str << "\t QDataStream _reply_stream( replyData, IO_ReadOnly );" << endl;
|
||
|
str << "\t _reply_stream >> result;" << endl;
|
||
|
str << "\t setStatus( CallSucceeded );" << endl;
|
||
|
str << "\t} else {" << endl;
|
||
|
str << "\t callFailed();" << endl;
|
||
|
str << "\t}" << endl;
|
||
|
} else {
|
||
|
str << "\tsetStatus( CallSucceeded );" << endl;
|
||
|
}
|
||
|
str << " } else { " << endl;
|
||
|
str << "\tcallFailed();" << endl;
|
||
|
str << " }" << endl;
|
||
|
if ( result != "void" )
|
||
|
str << " return result;" << endl;
|
||
|
}
|
||
|
str << "}" << endl << endl;
|
||
|
}
|
||
|
|
||
|
for(; namespace_count > 0; --namespace_count )
|
||
|
str << "} // namespace" << endl;
|
||
|
str << endl;
|
||
|
}
|
||
|
impl.close();
|
||
|
}
|
||
|
|
||
|
// :set expandtab!<RETURN>:set ts=8<RETURN>:set sts=4<RETURN>:set sw=4<RETURN>
|