1*cdf0e10cSrcweir package complex.storages; 2*cdf0e10cSrcweir 3*cdf0e10cSrcweir import com.sun.star.uno.XInterface; 4*cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 5*cdf0e10cSrcweir import com.sun.star.lang.XSingleServiceFactory; 6*cdf0e10cSrcweir 7*cdf0e10cSrcweir import com.sun.star.bridge.XUnoUrlResolver; 8*cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 9*cdf0e10cSrcweir import com.sun.star.uno.XInterface; 10*cdf0e10cSrcweir 11*cdf0e10cSrcweir import com.sun.star.embed.*; 12*cdf0e10cSrcweir 13*cdf0e10cSrcweir import share.LogWriter; 14*cdf0e10cSrcweir import complex.storages.TestHelper; 15*cdf0e10cSrcweir import complex.storages.StorageTest; 16*cdf0e10cSrcweir 17*cdf0e10cSrcweir public class Test07 implements StorageTest { 18*cdf0e10cSrcweir 19*cdf0e10cSrcweir XMultiServiceFactory m_xMSF; 20*cdf0e10cSrcweir XSingleServiceFactory m_xStorageFactory; 21*cdf0e10cSrcweir TestHelper m_aTestHelper; 22*cdf0e10cSrcweir 23*cdf0e10cSrcweir public Test07( XMultiServiceFactory xMSF, XSingleServiceFactory xStorageFactory, LogWriter aLogWriter ) 24*cdf0e10cSrcweir { 25*cdf0e10cSrcweir m_xMSF = xMSF; 26*cdf0e10cSrcweir m_xStorageFactory = xStorageFactory; 27*cdf0e10cSrcweir m_aTestHelper = new TestHelper( aLogWriter, "Test07: " ); 28*cdf0e10cSrcweir } 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir public boolean test() 31*cdf0e10cSrcweir { 32*cdf0e10cSrcweir try 33*cdf0e10cSrcweir { 34*cdf0e10cSrcweir String sTempFileURL = m_aTestHelper.CreateTempFile( m_xMSF ); 35*cdf0e10cSrcweir if ( sTempFileURL == null || sTempFileURL == "" ) 36*cdf0e10cSrcweir { 37*cdf0e10cSrcweir m_aTestHelper.Error( "No valid temporary file was created!" ); 38*cdf0e10cSrcweir return false; 39*cdf0e10cSrcweir } 40*cdf0e10cSrcweir 41*cdf0e10cSrcweir // create temporary storage based on arbitrary medium 42*cdf0e10cSrcweir // after such a storage is closed it is lost 43*cdf0e10cSrcweir Object oTempStorage = m_xStorageFactory.createInstance(); 44*cdf0e10cSrcweir XStorage xTempStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oTempStorage ); 45*cdf0e10cSrcweir if ( xTempStorage == null ) 46*cdf0e10cSrcweir { 47*cdf0e10cSrcweir m_aTestHelper.Error( "Can't create temporary storage representation!" ); 48*cdf0e10cSrcweir return false; 49*cdf0e10cSrcweir } 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir byte pBigBytes[] = new byte[33000]; 52*cdf0e10cSrcweir for ( int nInd = 0; nInd < 33000; nInd++ ) 53*cdf0e10cSrcweir pBigBytes[nInd] = (byte)( nInd % 128 ); 54*cdf0e10cSrcweir 55*cdf0e10cSrcweir byte pBytes1[] = { 1, 1, 1, 1, 1 }; 56*cdf0e10cSrcweir String sPass1 = "12345"; 57*cdf0e10cSrcweir 58*cdf0e10cSrcweir // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes 59*cdf0e10cSrcweir if ( !m_aTestHelper.WriteBytesToEncrSubstream( xTempStorage, "BigSubStream1", "MediaType1", true, pBigBytes, sPass1 ) ) 60*cdf0e10cSrcweir return false; 61*cdf0e10cSrcweir 62*cdf0e10cSrcweir // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes 63*cdf0e10cSrcweir if ( !m_aTestHelper.WriteBytesToEncrSubstream( xTempStorage, "SubStream1", "MediaType1", true, pBytes1, sPass1 ) ) 64*cdf0e10cSrcweir return false; 65*cdf0e10cSrcweir 66*cdf0e10cSrcweir byte pBytes2[] = { 2, 2, 2, 2, 2 }; 67*cdf0e10cSrcweir String sPass2 = "54321"; 68*cdf0e10cSrcweir 69*cdf0e10cSrcweir // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes 70*cdf0e10cSrcweir if ( !m_aTestHelper.WriteBytesToEncrSubstream( xTempStorage, "BigSubStream2", "MediaType2", false, pBigBytes, sPass2 ) ) 71*cdf0e10cSrcweir return false; 72*cdf0e10cSrcweir 73*cdf0e10cSrcweir // open a new substream, set "MediaType" and "Compressed" properties to it and write some bytes 74*cdf0e10cSrcweir if ( !m_aTestHelper.WriteBytesToEncrSubstream( xTempStorage, "SubStream2", "MediaType2", false, pBytes2, sPass2 ) ) 75*cdf0e10cSrcweir return false; 76*cdf0e10cSrcweir 77*cdf0e10cSrcweir // create temporary storage based on a previously created temporary file 78*cdf0e10cSrcweir Object pArgs[] = new Object[2]; 79*cdf0e10cSrcweir pArgs[0] = (Object) sTempFileURL; 80*cdf0e10cSrcweir pArgs[1] = new Integer( ElementModes.WRITE ); 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir Object oTempFileStorage = m_xStorageFactory.createInstanceWithArguments( pArgs ); 83*cdf0e10cSrcweir XStorage xTempFileStorage = (XStorage)UnoRuntime.queryInterface( XStorage.class, oTempFileStorage ); 84*cdf0e10cSrcweir if ( xTempFileStorage == null ) 85*cdf0e10cSrcweir { 86*cdf0e10cSrcweir m_aTestHelper.Error( "Can't create storage based on temporary file!" ); 87*cdf0e10cSrcweir return false; 88*cdf0e10cSrcweir } 89*cdf0e10cSrcweir 90*cdf0e10cSrcweir // copy xTempStorage to xTempFileStorage 91*cdf0e10cSrcweir // xTempFileStorage will be automatically commited 92*cdf0e10cSrcweir if ( !m_aTestHelper.copyStorage( xTempStorage, xTempFileStorage ) ) 93*cdf0e10cSrcweir return false; 94*cdf0e10cSrcweir 95*cdf0e10cSrcweir // dispose used storages to free resources 96*cdf0e10cSrcweir if ( !m_aTestHelper.disposeStorage( xTempStorage ) || !m_aTestHelper.disposeStorage( xTempFileStorage ) ) 97*cdf0e10cSrcweir return false; 98*cdf0e10cSrcweir 99*cdf0e10cSrcweir // ================================================ 100*cdf0e10cSrcweir // now check all the written and copied information 101*cdf0e10cSrcweir // ================================================ 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir // the temporary file must not be locked any more after storage disposing 104*cdf0e10cSrcweir pArgs[1] = new Integer( ElementModes.WRITE ); 105*cdf0e10cSrcweir Object oResultStorage = m_xStorageFactory.createInstanceWithArguments( pArgs ); 106*cdf0e10cSrcweir XStorage xResultStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, oResultStorage ); 107*cdf0e10cSrcweir if ( xResultStorage == null ) 108*cdf0e10cSrcweir { 109*cdf0e10cSrcweir m_aTestHelper.Error( "Can't reopen storage based on temporary file!" ); 110*cdf0e10cSrcweir return false; 111*cdf0e10cSrcweir } 112*cdf0e10cSrcweir 113*cdf0e10cSrcweir Object o2CopyStorage = m_xStorageFactory.createInstance(); 114*cdf0e10cSrcweir XStorage x2CopyStorage = (XStorage) UnoRuntime.queryInterface( XStorage.class, o2CopyStorage ); 115*cdf0e10cSrcweir if ( x2CopyStorage == null ) 116*cdf0e10cSrcweir { 117*cdf0e10cSrcweir m_aTestHelper.Error( "Can't create temporary storage representation!" ); 118*cdf0e10cSrcweir return false; 119*cdf0e10cSrcweir } 120*cdf0e10cSrcweir 121*cdf0e10cSrcweir if ( !m_aTestHelper.copyStorage( xResultStorage, x2CopyStorage ) ) 122*cdf0e10cSrcweir return false; 123*cdf0e10cSrcweir 124*cdf0e10cSrcweir if ( !m_aTestHelper.checkEncrStream( xResultStorage, "SubStream1", "MediaType1", pBytes1, sPass1 ) ) 125*cdf0e10cSrcweir return false; 126*cdf0e10cSrcweir 127*cdf0e10cSrcweir if ( !m_aTestHelper.checkEncrStream( xResultStorage, "BigSubStream1", "MediaType1", pBigBytes, sPass1 ) ) 128*cdf0e10cSrcweir return false; 129*cdf0e10cSrcweir 130*cdf0e10cSrcweir if ( !m_aTestHelper.checkEncrStream( xResultStorage, "SubStream2", "MediaType2", pBytes2, sPass2 ) ) 131*cdf0e10cSrcweir return false; 132*cdf0e10cSrcweir 133*cdf0e10cSrcweir if ( !m_aTestHelper.checkEncrStream( xResultStorage, "BigSubStream2", "MediaType2", pBigBytes, sPass2 ) ) 134*cdf0e10cSrcweir return false; 135*cdf0e10cSrcweir 136*cdf0e10cSrcweir if ( !m_aTestHelper.checkEncrStream( x2CopyStorage, "SubStream1", "MediaType1", pBytes1, sPass1 ) ) 137*cdf0e10cSrcweir return false; 138*cdf0e10cSrcweir 139*cdf0e10cSrcweir if ( !m_aTestHelper.checkEncrStream( x2CopyStorage, "BigSubStream1", "MediaType1", pBigBytes, sPass1 ) ) 140*cdf0e10cSrcweir return false; 141*cdf0e10cSrcweir 142*cdf0e10cSrcweir if ( !m_aTestHelper.checkEncrStream( x2CopyStorage, "SubStream2", "MediaType2", pBytes2, sPass2 ) ) 143*cdf0e10cSrcweir return false; 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir if ( !m_aTestHelper.checkEncrStream( x2CopyStorage, "BigSubStream2", "MediaType2", pBigBytes, sPass2 ) ) 146*cdf0e10cSrcweir return false; 147*cdf0e10cSrcweir 148*cdf0e10cSrcweir // dispose used storages to free resources 149*cdf0e10cSrcweir if ( !m_aTestHelper.disposeStorage( xResultStorage ) ) 150*cdf0e10cSrcweir return false; 151*cdf0e10cSrcweir 152*cdf0e10cSrcweir return true; 153*cdf0e10cSrcweir } 154*cdf0e10cSrcweir catch( Exception e ) 155*cdf0e10cSrcweir { 156*cdf0e10cSrcweir m_aTestHelper.Error( "Exception: " + e ); 157*cdf0e10cSrcweir return false; 158*cdf0e10cSrcweir } 159*cdf0e10cSrcweir } 160*cdf0e10cSrcweir 161*cdf0e10cSrcweir } 162*cdf0e10cSrcweir 163