diff options
-rw-r--r-- | rdbmaker/source/rdbmaker/typeblop.cxx | 16 | ||||
-rw-r--r-- | sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx | 96 | ||||
-rw-r--r-- | stoc/test/javavm/jvm_interaction/interactionhandler.cxx | 6 | ||||
-rw-r--r-- | stoc/test/javavm/testjavavm.cxx | 32 |
4 files changed, 1 insertions, 149 deletions
diff --git a/rdbmaker/source/rdbmaker/typeblop.cxx b/rdbmaker/source/rdbmaker/typeblop.cxx index 88af2d64adc4..0eb9115e2822 100644 --- a/rdbmaker/source/rdbmaker/typeblop.cxx +++ b/rdbmaker/source/rdbmaker/typeblop.cxx @@ -50,7 +50,6 @@ using namespace com::sun::star::reflection; using namespace com::sun::star::lang; using namespace com::sun::star::container; using namespace cppu; -//using namespace osl; using namespace rtl; static Reference< XHierarchicalNameAccess > xNameAccess; @@ -155,21 +154,6 @@ sal_uInt32 getInheritedMemberCount( Reference< XTypeDescription >& xType ) memberCount += xIFace->getMembers().getLength(); } -// } else -// if ( xType->getTypeClass() == TypeClass_Struct || xType->getTypeClass() == TypeClass_Exception ) -// { -// Reference< XCompoundTypeDescription > xComp(xType, UNO_QUERY); -// -// if ( xComp.is() ) -// return membercount; -// -// Reference< XTypeDescription > xSuperType = xComp->getBaseType(); -// -// if ( xSuperType.is() ) -// memberCount = getInheritedMemberCount( xSuperType ); -// -// memberCount += xComp->getMemberNames().getLength(); -// } return memberCount; } diff --git a/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx b/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx index d0382168181d..90f4b0c79259 100644 --- a/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx +++ b/sal/qa/rtl/bootstrap/rtl_Bootstrap.cxx @@ -51,7 +51,6 @@ #include <osl/thread.hxx> -// using namespace osl; using namespace rtl; #define TESTSHL2_INI "testshl2" @@ -130,24 +129,6 @@ inline rtl::OUString t_getSourcePath(rtl::OString const& _sFilename) aDirURL += rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("rc")); #endif return aDirURL; - -// LLA: does not right work on my personal laptop, SRC_ROOT does not show where the source is :-(. -/* - sal_Char * pStr = getenv("SRC_ROOT"); - rtl::OUString suPath; - if (filename != "") - { - suPath = rtl::OUString::createFromAscii(pStr) + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/sal/qa/rtl/bootstrap/")) - + rtl::OUString::createFromAscii( filename ); - } - else - { - suPath = rtl::OUString::createFromAscii(pStr) + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/sal/qa/rtl/bootstrap")); - } - rtl::OUString suURL; - ::osl::FileBase::getFileURLFromSystemPath( suPath, suURL ); - return suURL; -*/ } void thread_sleep_tenth_sec(sal_Int32 _nTenthSec) @@ -278,7 +259,6 @@ namespace rtl_Bootstrap rtl::OUString suValuename(RTL_CONSTASCII_USTRINGPARAM("MY_VALUE")); rtl::OUString myDefault(RTL_CONSTASCII_USTRINGPARAM("2")); aBootstrap.getFrom( suValuename, suGetname, myDefault ); - //printUString( suGetname ); CPPUNIT_ASSERT_MESSAGE("getFrom use default.", suGetname.compareTo( myDefault ) == 0 ); } @@ -297,9 +277,6 @@ namespace rtl_Bootstrap sal_Int32 nIndex = suGetIniName.indexOf(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("pseudo"))); CPPUNIT_ASSERT_MESSAGE("ini name must have 'pseudo' in name.", nIndex > 0); - // rtlBootstrapHandle bsHandle = aBootstrap.getHandle(); - // CPPUNIT_ASSERT_MESSAGE("getHandle return NULL!", bsHandle != 0); - rtl::OUString suValue; rtl::OUString suKeyName(RTL_CONSTASCII_USTRINGPARAM("FILE")); aBootstrap.getFrom( suKeyName, suValue ); @@ -337,7 +314,6 @@ namespace rtl_Bootstrap OUString suEnv1( RTL_CONSTASCII_USTRINGPARAM("-env:UNO_SERVICES=service.rdb") ); OUString suIniname = t_getSourcePath("rtl"); printUString( suIniname, "rtl path:"); - //OUString suEnv2( RTL_CONSTASCII_USTRINGPARAM("-env:MYENV=bootstrap_process") ); pParameters[0] = suFlag.pData; pParameters[1] = suEnv1.pData; @@ -452,7 +428,6 @@ namespace rtl_Bootstrap rtl::OUString suGetIniname; aBootstrap.getIniName( suGetIniname ); //which should be .....testshl2rc - //printUString( suGetIniname ); rtl::OUString suIniname = t_getSourcePath(PSEUDO_INI); Bootstrap::setIniFilename( suIniname ); @@ -468,13 +443,10 @@ namespace rtl_Bootstrap void setIniFilename_002() { rtl::OUString suIniname = t_getSourcePath(TESTSHL2_INI); - // CPPUNIT_ASSERT_MESSAGE("test failed, Bootstrap ini does not exist.", t_fileExist(suIniname ) == true); Bootstrap::setIniFilename( suIniname ); - //rtl_bootstrap_args_open( suIniname.pData ); rtl::OUString suGetname; rtl::OUString suValuename(RTL_CONSTASCII_USTRINGPARAM("INHERITED_VALUE")); - //aBootstrap.getFrom( suValuename, suGetname ); Bootstrap::get( suValuename, suGetname ); printUString( suGetname ); CPPUNIT_ASSERT_MESSAGE("setIniFilename and get value of the argument.", suGetname.getLength() != 0 ); @@ -513,18 +485,12 @@ namespace rtl_Bootstrap rtlBootstrapHandle bsHandle = aBootstrap.getHandle(); CPPUNIT_ASSERT_MESSAGE("getHandle return NULL!", bsHandle != 0); - //rtl::OUString iniName; - //rtl_bootstrap_get_iniName_from_handle( bsHandle, &iniName.pData ); - rtl::OUString suValue; rtl::OUString suKeyName(RTL_CONSTASCII_USTRINGPARAM("PSEUDOFILE")); rtl_bootstrap_get_from_handle(bsHandle, suKeyName.pData, &suValue.pData, NULL); printUString( suValue); CPPUNIT_ASSERT_MESSAGE("Can not use the handle which is returned by getHandle!", suValue.equals( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("be pseudo")) ) == sal_True ); - - // CPPUNIT_ASSERT_MESSAGE("Can not use the handle which is returned by getHandle!", - // suGetname.equalsIgnoreAsciiCase( iniName ) == sal_True ); } CPPUNIT_TEST_SUITE(getHandle); @@ -597,11 +563,9 @@ namespace rtl_Bootstrap rtl::OUString suIniname = t_getSourcePath(TESTSHL2_INI); Bootstrap aBootstrap( suIniname); rtl::OUString suMacro(RTL_CONSTASCII_USTRINGPARAM("$MYVAR/expand1")); - //printUString( suMacro ); //expandMacro now aBootstrap.expandMacrosFrom( suMacro ); rtl::OUString suExpectedMacro(RTL_CONSTASCII_USTRINGPARAM("src680_test/expand1")); - //printUString( suMacro ); CPPUNIT_ASSERT_MESSAGE("expandMacrosFrom failed.", suMacro.compareTo(suExpectedMacro) == 0 ); } @@ -635,7 +599,6 @@ namespace rtl_Bootstrap t_print("created macro is: "); printUString( suMacro ); - //expandMacro now aBootstrap.expandMacrosFrom( suMacro ); t_print("expanded macro is:"); printUString( suMacro ); @@ -663,9 +626,6 @@ namespace rtl_Bootstrap //expandMacro now // seems to be, that getFrom() already expand the string - // t_print("expanded macro is:"); - // aBootstrap.expandMacrosFrom( suMacro ); - // printUString( suMacro ); rtl::OUString suExpectedMacro(RTL_CONSTASCII_USTRINGPARAM("src680_qadev")); CPPUNIT_ASSERT_MESSAGE("failed, can't expand '${" SAL_CONFIGFILE("rtl") "::SOVALUE}' to 'src680_qadev'", suMacro.compareTo(suExpectedMacro) == 0 ); } @@ -694,36 +654,6 @@ namespace rtl_Bootstrap CPPUNIT_ASSERT_MESSAGE("SOFROMVALUE3 should contain 'rtlfile'.", suMacro.equals(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("rtlfile")) ) == sal_True ); } } -//? I don't know if this is a right test. -// void expandMacrosFrom_002_3() -// { -// // test, to read and expand SOFROMVALUE4 -// // SOFROMVALUE4 is 'rtl(.ini|rc):Other_Section:TESTSHL_SOVALUE' which should expand to '' if all is ok. -// -// rtl::OUString suIniname = t_getSourcePath(TESTSHL2_INI); -// t_print("inifile is:"); -// printUString( suIniname ); -// Bootstrap aBootstrap( suIniname); -// -// rtl::OUString suMacro; -// aBootstrap.getFrom(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SOFROMVALUE4")), suMacro ); -// -// t_print("SOFROMVALUE4:"); -// printUString( suMacro ); -// -// if (suMacro.equals(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("testshl2_file")) ) == sal_True) -// { -// CPPUNIT_ASSERT_MESSAGE("Value 'SOFROMVALUE4' is read from the wrong section out of the wrong ini file.", 0 ); -// } -// else if (suMacro.equals(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("testshl2_file_other")) ) == sal_True) -// { -// CPPUNIT_ASSERT_MESSAGE("Value 'SOFROMVALUE4' is read from the wrong ini file.", 0 ); -// } -// else -// { -// CPPUNIT_ASSERT_MESSAGE("Value 'SOFROMVALUE4' should contain 'rtlfile_other'.", suMacro.equals(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("rtlfile_other")) ) == sal_True ); -// } -// } void expandMacrosFrom_003() { rtl::OUString suIniname = t_getSourcePath(TESTSHL2_INI); @@ -739,8 +669,6 @@ namespace rtl_Bootstrap aBootstrap.expandMacrosFrom( suMacro[i] ); printUString(suMacro[i]); } - // printUString( t_getSourcePath("") ); - // CPPUNIT_ASSERT_MESSAGE("some integral variables.", suMacro[3].equalsIgnoreAsciiCase(t_getSourcePath("")) == sal_True ); CPPUNIT_ASSERT_MESSAGE("some integral variables.", suMacro[0].getLength() > 0 && suMacro[1].getLength() > 0 && suMacro[2].getLength() > 0 && @@ -818,7 +746,6 @@ namespace rtl_Bootstrap CPPUNIT_TEST(expandMacrosFrom_002); CPPUNIT_TEST(expandMacrosFrom_002_1); CPPUNIT_TEST(expandMacrosFrom_002_2); -//? CPPUNIT_TEST(expandMacrosFrom_002_3); CPPUNIT_TEST(expandMacrosFrom_003); CPPUNIT_TEST(testRecursion); CPPUNIT_TEST(testLink); @@ -872,26 +799,6 @@ namespace rtl_Bootstrap // ----------------------------------------------------------------------------- -// this macro creates an empty function, which will called by the RegisterAllFunctions() -// to let the user the possibility to also register some functions by hand. -// NOADDITIONAL; - - -// Here are some helpers, which create a new file 'rtlrc' at the executable path position -// and fill the file with some information. -// static rtl::OUString getExecutableDirectory() -// { -// rtl::OUString fileName; -// osl_getExecutableFile(&fileName.pData); -// -// sal_Int32 nDirEnd = fileName.lastIndexOf('/'); -// -// OSL_ENSURE(nDirEnd >= 0, "Cannot locate executable directory"); -// -// rtl::OUString aDirURL = fileName.copy(0, nDirEnd); -// return aDirURL; -// } - static void removeAndCreateFile(rtl::OUString const& _suFileURL, rtl::OString const& _sContent) { osl::File::remove(_suFileURL); @@ -903,7 +810,6 @@ static void removeAndCreateFile(rtl::OUString const& _suFileURL, rtl::OString co t_print(T_VERBOSE, "%s\n" , OString(_suFileURL, _suFileURL.getLength(), RTL_TEXTENCODING_ASCII_US).getStr()); sal_uInt64 nWritenBytes; pFile->write(_sContent.getStr(), _sContent.getLength(), nWritenBytes); - // t_print("nBytes: %ld\n", nBytes); rtl::OString sError = "can't write enough bytes to file"; sError += OString(_suFileURL, _suFileURL.getLength(), RTL_TEXTENCODING_ASCII_US); @@ -967,7 +873,6 @@ static void create_testshl2rc() sLines += "SOFROMVALUE2=test\n"; sLines += "SOFROMVALUE3=${$ORIGIN/" SAL_CONFIGFILE("rtl") "::TESTSHL_SOVALUE}\n"; sLines += "TESTSHL_SOVALUE=testshl2_file\n"; - //? sLines += "SOFROMVALUE4=${" SAL_CONFIGFILE("rtl") ":Other_Section:TESTSHL_SOVALUE}\n"; sLines += "ILLEGAL VALUE=test\n"; sLines += "ILLEGAL.DOT=test\n"; sLines += "ILLEGAL;SEMICOLON=test\n"; @@ -978,7 +883,6 @@ static void create_testshl2rc() sLines += "[Other_Section]\n"; sLines += "FILE=testshl2 file other\n"; sLines += "EXPAND=$FILE\n"; - //? sLines += "TESTSHL_SOVALUE=testshl2_file_other\n"; removeAndCreateFile(aFileURL, sLines); diff --git a/stoc/test/javavm/jvm_interaction/interactionhandler.cxx b/stoc/test/javavm/jvm_interaction/interactionhandler.cxx index c45fc9a12b6e..a4e961d43466 100644 --- a/stoc/test/javavm/jvm_interaction/interactionhandler.cxx +++ b/stoc/test/javavm/jvm_interaction/interactionhandler.cxx @@ -29,7 +29,6 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_stoc.hxx" - #include <jni.h> #include <stdio.h> @@ -60,12 +59,12 @@ #include <com/sun/star/java/JavaVMCreationFailureException.hpp> #include <cppuhelper/implbase1.hxx> #include <uno/current_context.hxx> + using namespace std; using namespace rtl; using namespace cppu; using namespace com::sun::star::uno; using namespace com::sun::star::lang; -//using namespace com::sun::star::reflection; using namespace com::sun::star::lang; using namespace com::sun::star::registry; using namespace com::sun::star::java; @@ -119,9 +118,6 @@ void SAL_CALL InteractionHandler::handle( const Reference< XInteractionRequest > break; } -// if( abort.is()) -// abort->select(); - static int cRetry= 0; if( cRetry++ == 5) diff --git a/stoc/test/javavm/testjavavm.cxx b/stoc/test/javavm/testjavavm.cxx index e74cf0a8b417..c585e771a293 100644 --- a/stoc/test/javavm/testjavavm.cxx +++ b/stoc/test/javavm/testjavavm.cxx @@ -29,7 +29,6 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_stoc.hxx" - #include <jni.h> #include <stdio.h> @@ -52,7 +51,6 @@ using namespace rtl; using namespace cppu; using namespace com::sun::star::uno; using namespace com::sun::star::lang; -//using namespace com::sun::star::reflection; using namespace com::sun::star::lang; using namespace com::sun::star::registry; using namespace com::sun::star::java; @@ -102,44 +100,15 @@ sal_Bool testJavaVM(const Reference< XMultiServiceFactory > & xMgr ) if( _jvm->AttachCurrentThread((void**) &p_env, 0)) return sal_False; -// jclass aJProg = p_env->FindClass("TestJavaVM"); -// if( p_env->ExceptionOccurred()){ -// p_env->ExceptionDescribe(); -// p_env->ExceptionClear(); -// } -// -// jmethodID mid= p_env->GetStaticMethodID( aJProg,"main", "([Ljava/lang/String;)V"); - jclass cls = p_env->FindClass( "TestJavaVM"); if (cls == 0) { OSL_TRACE( "Can't find Prog class\n"); exit(1); } -// jmethodID methid = p_env->GetStaticMethodID( cls, "main", "([Ljava/lang/String;)V"); -// if (methid == 0) { -// OSL_TRACE("Can't find Prog.main\n"); -// exit(1); -// } - -// jstring jstr = p_env->NewStringUTF(" from C!"); -// if (jstr == 0) { -// OSL_TRACE("Out of memory\n"); -// exit(1); -// } -// jobjectArray args = p_env->NewObjectArray( 1, -// p_env->FindClass("java/lang/String"), jstr); -// if (args == 0) { -// OSL_TRACE( "Out of memory\n"); -// exit(1); -// } -// p_env->CallStaticVoidMethod( cls, methid, args); - - jmethodID id = p_env->GetStaticMethodID( cls, "getInt", "()I"); if( id) { -// jint _i= p_env->CallStaticIntMethod(cls, id); p_env->CallStaticIntMethod(cls, id); } @@ -193,7 +162,6 @@ SAL_IMPLEMENT_MAIN() Reference< XComponent > xCompContext( context, UNO_QUERY ); xCompContext->dispose(); printf("javavm %s", bSucc ? "succeeded" : "failed"); -// cout << "javavm " << (bSucc ? "succeeded" : "failed") << " !" << endl; return (bSucc ? 0 : -1); } |