diff options
author | Anders Jonsson <anders.jonsson@norsjonet.se> | 2010-12-22 08:22:12 +0100 |
---|---|---|
committer | Radek Doulik <rodo@novell.com> | 2010-12-22 12:06:52 +0100 |
commit | 211c1f801ecd67816367b138b8ba875633b35d98 (patch) | |
tree | d5213e808911534b829fdadd6dd759917fc290bc | |
parent | c6867d8c5c053d8f5256b5396557b974aceee389 (diff) |
Remove commented code
-rw-r--r-- | codemaker/source/cunomaker/cunotype.cxx | 233 | ||||
-rw-r--r-- | sal/qa/osl/socket/sockethelper.cxx | 90 | ||||
-rw-r--r-- | stoc/test/testsmgr_cpnt.cxx | 123 |
3 files changed, 0 insertions, 446 deletions
diff --git a/codemaker/source/cunomaker/cunotype.cxx b/codemaker/source/cunomaker/cunotype.cxx index 40637c785..12588859f 100644 --- a/codemaker/source/cunomaker/cunotype.cxx +++ b/codemaker/source/cunomaker/cunotype.cxx @@ -295,15 +295,6 @@ void CunoType::dumpDefaultHIncludes(FileStream& o) o << "#ifndef _UNO_CUNO_H_\n" << "#include <uno/cuno.h>\n" << "#endif\n"; -/* - if (m_typeMgr.getTypeClass(m_typeName) == RT_TYPE_INTERFACE && - !m_typeName.equals("com/sun/star/uno/XInterface") ) - { - o << "#ifndef _COM_SUN_STAR_UNO_XINTERFACE_H_\n" - << "#include <com/sun/star/uno/XInterface.h>\n" - << "#endif\n"; - } -*/ } void CunoType::dumpDefaultCIncludes(FileStream& o) @@ -415,12 +406,6 @@ void CunoType::dumpDepIncludes(FileStream& o, const OString& typeName, sal_Char* iLastS = outerNamespace.lastIndexOf('/'); OString outerClass(outerNamespace.copy(iLastS+1)); - -// o << "\n"; -// dumpNameSpace(o, sal_True, sal_False, outerNamespace); -// o << "\nclass " << outerClass << "::" << innerClass << ";\n"; -// dumpNameSpace(o, sal_False, sal_False, outerNamespace); -// o << "\n\n"; } else { @@ -1548,27 +1533,6 @@ sal_Bool InterfaceType::dumpHFile(FileStream& o) << "#endif\n\n"; } -/* - if (getNestedTypeNames().getLength() > 0) - { - o << indent() << "// nested types\n\n"; - for (sal_uInt32 i = 0; i < getNestedTypeNames().getLength(); i++) - { - OUString s(getNestedTypeNames().getElement(i)); - - OString nestedName(s.getStr(), s.getLength(), RTL_TEXTENCODING_UTF8); - - nestedName = checkRealBaseType(nestedName.copy(5)); - - if (nestedName.lastIndexOf(']') < 0) - { - o << "inline const ::com::sun::star::uno::Type& SAL_CALL getCunoType( "; - dumpType(o, nestedName, sal_True, sal_False); - o << "* ) SAL_THROW( () );\n\n"; - } - } - } -*/ dumpCloseExternC(o); o << "#endif /* "<< headerDefine << " */\n"; @@ -1598,65 +1562,7 @@ sal_Bool InterfaceType::dumpDeclaration(FileStream& o) OString superType(m_reader.getSuperTypeName()); if (superType.getLength() > 0) dumpInheritedFunctions(o, superType); -/* - if (getNestedTypeNames().getLength() > 0) - { - inc(); - o << indent() << "// nested types\n\n"; - for (sal_uInt32 i = 0; i < getNestedTypeNames().getLength(); i++) - { - OUString s(getNestedTypeNames().getElement(i)); - - OString nestedName(s.getStr(), s.getLength(), RTL_TEXTENCODING_UTF8); - - nestedName = nestedName.copy(5); - o << indent() << "// " << nestedName.getStr() << "\n"; - - TypeReader reader(m_typeMgr.getTypeReader(nestedName)); - - if (reader.isValid()) - { - RTTypeClass typeClass = reader.getTypeClass(); - switch (typeClass) { - case RT_TYPE_INTERFACE: - { - InterfaceType iType(reader, nestedName, m_typeMgr, m_dependencies); - iType.dumpDeclaration(o); - } - break; - case RT_TYPE_STRUCT: - { - StructureType sType(reader, nestedName, m_typeMgr, m_dependencies); - sType.dumpDeclaration(o); - } - break; - case RT_TYPE_ENUM: - { - EnumType enType(reader, nestedName, m_typeMgr, m_dependencies); - enType.dumpDeclaration(o); - } - break; - case RT_TYPE_EXCEPTION: - { - ExceptionType eType(reader, nestedName, m_typeMgr, m_dependencies); - eType.dumpDeclaration(o); - } - break; - case RT_TYPE_TYPEDEF: - { - TypeDefType tdType(reader, nestedName, m_typeMgr, m_dependencies); - tdType.dumpDeclaration(o); - } - break; - default: - break; - } - } - } - dec(); - } -*/ dumpAttributes(o, m_name, m_reader); dumpMethods(o, m_name, m_reader); @@ -1676,63 +1582,7 @@ sal_Bool InterfaceType::dumpCFile(FileStream& o) dumpDepIncludes(o, m_typeName, "h"); o << "\n"; dumpGetCunoType(o); -/* - if (getNestedTypeNames().getLength() > 0) - { - o << indent() << "// nested types\n\n"; - for (sal_uInt32 i = 0; i < getNestedTypeNames().getLength(); i++) - { - OUString s(getNestedTypeNames().getElement(i)); - OString nestedName(s.getStr(), s.getLength(), RTL_TEXTENCODING_UTF8); - - nestedName = nestedName.copy(5); - - o << indent() << "// " << nestedName.getStr() << "\n"; - - TypeReader reader(m_typeMgr.getTypeReader(nestedName)); - - if (reader.isValid()) - { - RTTypeClass typeClass = reader.getTypeClass(); - switch (typeClass) { - case RT_TYPE_INTERFACE: - { - InterfaceType iType(reader, nestedName, m_typeMgr, m_dependencies); - iType.dumpGetCunoType(o); - } - break; - case RT_TYPE_STRUCT: - { - StructureType sType(reader, nestedName, m_typeMgr, m_dependencies); - sType.dumpGetCunoType(o); - } - break; - case RT_TYPE_ENUM: - { - EnumType enType(reader, nestedName, m_typeMgr, m_dependencies); - enType.dumpGetCunoType(o); - } - break; - case RT_TYPE_EXCEPTION: - { - ExceptionType eType(reader, nestedName, m_typeMgr, m_dependencies); - eType.dumpGetCunoType(o); - } - break; - case RT_TYPE_TYPEDEF: - { - TypeDefType tdType(reader, nestedName, m_typeMgr, m_dependencies); - tdType.dumpGetCunoType(o); - } - break; - default: - break; - } - } - } - } -*/ return sal_True; } @@ -2586,49 +2436,7 @@ sal_Bool ModuleType::dump(CunoOptions* pOptions) ret = checkFileContent(hFileName, tmpFileName); } } -/* - bFileExists = sal_False; - bFileCheck = sal_False; - OString cFileName = createFileNameFromType(outPath, tmpName, ".c"); - - if ( pOptions->isValid("-G") || pOptions->isValid("-Gc") ) - { - bFileExists = fileExists( cFileName ); - ret = sal_True; - } - - if ( bFileExists && pOptions->isValid("-Gc") ) - { - tmpFileName = createFileNameFromType(outPath, m_typeName, ".tmc"); - bFileCheck = sal_True; - } - - - if ( !bFileExists || bFileCheck ) - { - FileStream hxxFile; - - if ( bFileCheck ) - cFile.open(tmpFileName); - else - cFile.open(cFileName); - if(!cFile.isValid()) - { - OString message("cannot open "); - message += cFileName + " for writing"; - throw CannotDumpException(message); - } - - ret = dumpCFile(cFile); - - cFile.close(); - if (ret && bFileCheck) - { - ret = checkFileContent(cFileName, tmpFileName); - } - } -*/ return ret; } @@ -2779,48 +2587,7 @@ sal_Bool ConstantsType::dump(CunoOptions* pOptions) ret = checkFileContent(hFileName, tmpFileName); } } -/* - bFileExists = sal_False; - bFileCheck = sal_False; - OString cFileName = createFileNameFromType(outPath, m_typeName, ".c"); - - if ( pOptions->isValid("-G") || pOptions->isValid("-Gc") ) - { - bFileExists = fileExists( cFileName ); - ret = sal_True; - } - if ( bFileExists && pOptions->isValid("-Gc") ) - { - tmpFileName = createFileNameFromType(outPath, m_typeName, ".tmc"); - bFileCheck = sal_True; - } - - if ( !bFileExists || bFileCheck ) - { - FileStream cFile; - - if ( bFileCheck ) - cFile.open(tmpFileName); - else - cFile.open(cFileName); - - if(!cFile.isValid()) - { - OString message("cannot open "); - message += cFileName + " for writing"; - throw CannotDumpException(message); - } - - ret = dumpCFile(cFile); - - cFile.close(); - if (ret && bFileCheck) - { - ret = checkFileContent(cFileName, tmpFileName); - } - } -*/ return ret; } diff --git a/sal/qa/osl/socket/sockethelper.cxx b/sal/qa/osl/socket/sockethelper.cxx index dc1adb080..cbb88d0e2 100644 --- a/sal/qa/osl/socket/sockethelper.cxx +++ b/sal/qa/osl/socket/sockethelper.cxx @@ -67,15 +67,6 @@ sal_Bool compareSocketAddr( const ::osl::SocketAddr & addr1 , const ::osl::Socke return ( ( sal_True == compareUString( addr1.getHostname( 0 ), addr2.getHostname( 0 ) ) ) && ( addr2.getPort( ) == addr2.getPort( ) ) ); } -/*char * oustring2char( const ::rtl::OUString & str ) -{ - rtl::OString aString; - aString = ::rtl::OUStringToOString( str, RTL_TEXTENCODING_ASCII_US ); - t_print("oustring2char %s\n", aString.getStr( ) ); - sal_Char * sStr = aString.getStr( ); - return (char *)sStr; -}*/ - /** print a UNI_CODE String. And also print some comments of the string. */ void printUString( const ::rtl::OUString & str, const char* msg) @@ -288,87 +279,6 @@ sal_Bool ifIpv4is( const ::rtl::ByteSequence Ipaddr, sal_Int8 seq1, sal_Int8 seq return sal_False; } -/** if the IP or hostname is availble( alive ) -*/ -/*sal_Bool ifAvailable( const char * stringAddrOrHostName ) -{ - sal_Bool result; - int p[2]; - sal_Char buffer[2000]; - char stringhost[20]; - strcpy(stringhost, stringAddrOrHostName ); - - result = sal_False; - if (pipe (p) == 0) - { - pid_t pid; - int nStatus; - pid = fork(); - if (pid == 0) - { -#if ( defined LINUX ) - char *argv[] = - { - "/bin/ping", - "-c", "3", - "-W", "3", - stringhost, - NULL - }; -#endif -#if ( defined SOLARIS ) - char *argv[] = - { - "/usr/sbin/ping", - stringhost, - "3", - NULL - }; -#endif - close (p[0]); - dup2 (p[1], 1); - close (p[1]); -#if ( defined LINUX ) - execv ("/bin/ping", argv); -#endif -#if ( defined SOLARIS ) - execv ("/usr/sbin/ping", argv); -#endif - // arriving here means exec failed - _exit(-1); - } - else if (pid > 0) - { - sal_Int32 k = 0, n = 2000; - close (p[1]); - if ((k = read (p[0], buffer, n - 1)) > 0) - { - buffer[k] = 0; - if (buffer[k - 1] == '\n') - buffer[k - 1] = 0; -#if ( defined LINUX ) - char strOK[] = "bytes from"; -#endif -#if ( defined SOLARIS ) - char strOK[] = "is alive"; -#endif - if (strstr( buffer, strOK ) != NULL ) - result = sal_True; - t_print("buffer is %s\n", buffer ); - } - close (p[0]); - waitpid (pid, &nStatus, 0); - } - else - { - close (p[0]); - close (p[1]); - } - - } - return result; -}*/ - sal_Bool ifAvailable( rtl::OUString const& strAddrOrHostName ) { ::osl::ConnectorSocket aSocket( osl_Socket_FamilyInet, osl_Socket_ProtocolIp, osl_Socket_TypeStream ); diff --git a/stoc/test/testsmgr_cpnt.cxx b/stoc/test/testsmgr_cpnt.cxx index fb81b6fbc..4933ff564 100644 --- a/stoc/test/testsmgr_cpnt.cxx +++ b/stoc/test/testsmgr_cpnt.cxx @@ -277,129 +277,6 @@ extern "C" void SAL_CALL test_ServiceManager() "revoke implementation failed" ); } - -// Reference < XSimpleRegistry > xSReg( xSMgr->createInstance(OUString(RTL_CONSTASCII_USTRINGPARAM("com::sun::star.uno.repos.SimpleRegistry"))), UNO_QUERY ); -// TEST_ENSHURE( xSReg.is() , "Simple registry couldn't be instantiated" ); - -// xSReg->open(OUString(RTL_CONSTASCII_USTRINGPARAM("dummy.reg")), sal_False, sal_True); -// xSReg->close(); - - // laut dbo : C-API muss nicht mehr unterstuezt werden - //TEST_ENSHURE( registerExternService(atModule, "dummy.reg"), "install failed" ); - //TEST_ENSHURE( deregisterExternService(atModule, "dummy.reg"), "deinstall failed" ); - - -// UNO_INTERFACE(XMultiServiceFactory) xUnoSMgr = {0,0}; -// smart2uno(xSMgr, xUnoSMgr); - -// TEST_ENSHURE(registerExternImplementation(xUnoSMgr, "com::sun::star.loader.SharedLibrary", atModule2, "dummy.reg"), "install failed" ); -// TEST_ENSHURE(revokeExternImplementation(xUnoSMgr, atModule2, "dummy.reg"), "deinstall failed" ); - -// TEST_ENSHURE(registerExternImplementation(xUnoSMgr, "com::sun::star.loader.SharedLibrary", atModule2, "dummy2.reg"), "install failed" ); - -//TODO : Java loader test -// String testUrl(getTestJarUrl()); -// TEST_ENSHURE(registerExternImplementation(xUnoSMgr, "com::sun::star.loader.Java", testUrl, "dummy.reg"), "install failed" ); -// TEST_ENSHURE(revokeExternImplementation(xUnoSMgr, testUrl, "dummy.reg"), "deinstall failed" ); - -// if (!UNO_isNull((UNO_Ifc*)&xUnoSMgr)) -// xUnoSMgr.m_pVmt->release(xUnoSMgr.m_pCtx); - -// xSReg->open(OUString(RTL_CONSTASCII_USTRINGPARAM("dummy.reg")), sal_True, sal_False); -// TEST_ENSHURE(!xSReg->getRootKey()->openKey(OUString(RTL_CONSTASCII_USTRINGPARAM("/SERVICES/com::sun::star/ts/TestManagerImpl/URL"))).is(), -// "deinstall failed" ); - -// xSReg->close(); - -// xSReg->open(OUString(RTL_CONSTASCII_USTRINGPARAM("dummy.reg")), sal_False, sal_False); -// xSReg->destroy(); -// xSReg->open(OUString(RTL_CONSTASCII_USTRINGPARAM("dummy2.reg")), sal_False, sal_False); -// xSReg->destroy(); - - - // Test initialisieren -/* - XServiceProviderRef xSiSP1 = createSimpleServiceProvider( OUString(RTL_CONSTASCII_USTRINGPARAM("com::sun::star.usr.Test_Manager_Impl1")), Test_Manager_Impl_getReflection ); - XServiceProviderRef xSiSP11 = createSimpleServiceProvider( OUString(RTL_CONSTASCII_USTRINGPARAM("com::sun::star.usr.Test_Manager_Impl1")), Test_Manager_Impl_getReflection ); - XServiceProviderRef xSiSP2 = createSimpleServiceProvider( OUString(RTL_CONSTASCII_USTRINGPARAM("com::sun::star.usr.Test_Manager_Impl2")), Test_Manager_Impl_getReflection ); -*/ -/* - // second test - // create XServiceProvider via createSingleFactory and write them directly into the registry - // For this is needed a sequence of supported servicenames and a createComponent function pointer - { - Reference< XServiceProvider > xSiSP1(createSingleFactory( - xSMgr, - OUString(RTL_CONSTASCII_USTRINGPARAM("com::sun::star.usr.Test_Manager_Impl1)), - Test_Manager_Impl_CreateInstance, - Test_Manager_Impl::getSupportedServiceNames_Static() ), UNO_QUERY); - Reference< XServiceProvider > xSiSP11(createSingleFactory( - xSMgr, - OUString(RTL_CONSTASCII_USTRINGPARAM("com::sun::star.usr.Test_Manager_Impl1")), - Test_Manager_Impl_CreateInstance, - Test_Manager_Impl::getSupportedServiceNames_Static() ),UNO_QUERY); - Reference< XServiceProvider > xSiSP2(createSingleFactory( - xSMgr, - L"com::sun::star.usr.Test_Manager_Impl2", - Test_Manager_Impl_CreateInstance, - Test_Manager_Impl::getSupportedServiceNames_Static() ), UNO_QUERY); - - // put the service providers into the registry - xReg->registerServiceProvider( L"com::sun::star.test.TestManager1", xSiSP1 ); - xReg->registerServiceProvider( L"com::sun::star.test.TestManager1", xSiSP11 ); - xReg->registerServiceProvider( L"com::sun::star.test.TestManager2", xSiSP2 ); - - // TestManager1 - Reference< XServiceProvider > xProv = xSMgr->queryServiceProvider( L"com::sun::star.test.TestManager1"); - Reference< XSingleServiceFactory > xFact( xProv, UNO_QUERY ); - TEST_ENSHURE( xFact.is(), "Service com::sun::star.test.TestManager1 not found" ); - - Reference< XInterface > xTest1 = xFact->createInstance(); - TEST_ENSHURE( nInstanceCount == 1, "wrong service instanciated" ); - - // TestManager2 - xProv = xSMgr->queryServiceProvider( L"com::sun::star.test.TestManager2"); - xFact = Reference < XSingleServiceFactory > ( xProv , UNO_QUERY ); - TEST_ENSHURE( xFact.is(), "Service com::sun::star.test.TestManager2 not found" ); - - Reference < XInterface > xTest2 = xFact->createInstance(); - TEST_ENSHURE( nInstanceCount == 2, "wrong service instanciated" ); - - xTest1 = Reference< XInterface >(); - xTest2 = Reference< XInterface >(); - TEST_ENSHURE( nInstanceCount == 0, "wrong service deleted" ); - - Reference< XEnumeration > xEnum = xSMgr->createProviderEnumeration( L"com::sun::star.test.TestManager1"); - TEST_ENSHURE( xEnum.is() , "no provider enumeration" ); - - sal_Int32 nSPTestManagerImplLen2 = 0; - - while (xEnum.is() && xEnum->hasMoreElements()) - { - nSPTestManagerImplLen2++; - xEnum->nextElement(); - - } - TEST_ENSHURE( nSPTestManagerImplLen2 == 2, "queryServiceProviders() wrong length" ); - - sal_Int32 nCount = 0; - xEnum = xSMgr->createProviderEnumeration( L"com::sun::star.test.TestManager1"); - while (xEnum->hasMoreElements()) - { - Reference< XServiceProvider > xProv; - xEnum->nextElement() >>= xProv; - if (xProv == xSiSP1 || xProv == xSiSP11) - nCount++; - } - - TEST_ENSHURE( nCount == 2 , "not all com::sun::star.testimpl.TestManagerImpl registered" ); -*/ -/* - { - Reference< XMultiServiceFactory > xTestManager(createRegistryServiceManager(L"testmanager.rdb")); - TEST_ENSHURE( xTestManager.is(), "create Test ServiceManager failed!" ); - } -*/ Reference<XComponent> xComp(xSMgr, UNO_QUERY); xComp->dispose(); |