idx int64 0 165k | question stringlengths 73 4.15k | target stringlengths 5 918 | len_question int64 21 890 | len_target int64 3 255 |
|---|---|---|---|---|
162,500 | public static Class getHttpsProviderClass ( ) throws ClassNotFoundException { if ( _httpsProviderClass == null ) { // [ 1520925 ] SSL patch Provider [ ] sslProviders = Security . getProviders ( "SSLContext.SSLv3" ) ; // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> // IBM-FIX: Prevent NPE when SSLv3 is disabled. // Security.getProviders(String) returns // null, not an empty array, when there // are no providers. // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< // // if (sslProviders.length > 0) { // if ( sslProviders != null && sslProviders . length > 0 ) { // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> // END IBM-FIX // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< _httpsProviderClass = sslProviders [ 0 ] . getClass ( ) ; } // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> // IBM-FIX: Try TLS if SSLv3 does not have a // provider. // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< if ( _httpsProviderClass == null ) { sslProviders = Security . getProviders ( "SSLContext.TLS" ) ; if ( sslProviders != null && sslProviders . length > 0 ) { _httpsProviderClass = sslProviders [ 0 ] . getClass ( ) ; } } // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> // END IBM-FIX // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< if ( _httpsProviderClass == null ) { _httpsProviderClass = Class . forName ( JSSE_PROVIDER_CLASS ) ; } } return _httpsProviderClass ; } | get the Https Provider Class if it s been set already return it - otherwise check with the Security package and take the first available provider if all fails take the default provider class | 426 | 36 |
162,501 | private static void registerSSLProtocolHandler ( ) { String list = System . getProperty ( PROTOCOL_HANDLER_PKGS ) ; if ( list == null || list . length ( ) == 0 ) { System . setProperty ( PROTOCOL_HANDLER_PKGS , SSL_PROTOCOL_HANDLER ) ; } else if ( list . indexOf ( SSL_PROTOCOL_HANDLER ) < 0 ) { // [ 1516007 ] Default SSL provider not being used System . setProperty ( PROTOCOL_HANDLER_PKGS , list + " | " + SSL_PROTOCOL_HANDLER ) ; } } | register the Secure Socket Layer Protocol Handler | 146 | 7 |
162,502 | protected static int obtainIntConfigParameter ( MessageStoreImpl msi , String parameterName , String defaultValue , int minValue , int maxValue ) { int value = Integer . parseInt ( defaultValue ) ; if ( msi != null ) { String strValue = msi . getProperty ( parameterName , defaultValue ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { SibTr . debug ( tc , parameterName + "=" + strValue ) ; } ; // end if try { value = Integer . parseInt ( strValue ) ; if ( ( value < minValue ) || ( value > maxValue ) ) { value = Integer . parseInt ( defaultValue ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { SibTr . debug ( tc , "OVERRIDE: " + parameterName + "=" + strValue ) ; } ; // end if } ; // end if } catch ( NumberFormatException nfexc ) { //No FFDC Code Needed. } } ; // end if return value ; } | Obtains the value of an integer configuration parameter given its name the default value and reasonable minimum and maximum values . | 240 | 22 |
162,503 | protected static long obtainLongConfigParameter ( MessageStoreImpl msi , String parameterName , String defaultValue , long minValue , long maxValue ) { long value = Long . parseLong ( defaultValue ) ; if ( msi != null ) { String strValue = msi . getProperty ( parameterName , defaultValue ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { SibTr . debug ( tc , parameterName + "=" + strValue ) ; } ; // end if try { value = Long . parseLong ( strValue ) ; if ( ( value < minValue ) || ( value > maxValue ) ) { value = Long . parseLong ( defaultValue ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { SibTr . debug ( tc , "OVERRIDE: " + parameterName + "=" + strValue ) ; } ; // end if } ; // end if } catch ( NumberFormatException nfexc ) { //No FFDC Code Needed. } } ; // end if return value ; } | Obtains the value of a long integer configuration parameter given its name the default value and reasonable minimum and maximum values . | 240 | 23 |
162,504 | public int originalFrame ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) JmfTr . entry ( this , tc , "originalFrame" ) ; int result ; synchronized ( getMessageLockArtefact ( ) ) { if ( ( contents == null ) || reallocated ) { result = - 1 ; } else { result = length ; } } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) JmfTr . exit ( this , tc , "originalFrame" , Integer . valueOf ( result ) ) ; return result ; } | only called by Unit Tests so it is academic . | 137 | 10 |
162,505 | public boolean isPresent ( int accessor ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) JmfTr . entry ( this , tc , "isPresent" , new Object [ ] { Integer . valueOf ( accessor ) } ) ; boolean result ; if ( accessor < cacheSize ) { result = super . isPresent ( accessor ) ; } else if ( accessor < firstBoxed ) { result = getCase ( accessor - cacheSize ) > - 1 ; } else if ( accessor < accessorLimit ) { // Conservative answer: a boxed value is present if its containing box is present; // this is enough to support creation of the JSBoxedImpl for the value, which can // then be interrogated element by element. synchronized ( getMessageLockArtefact ( ) ) { result = super . isPresent ( boxManager . getBoxAccessor ( accessor - firstBoxed ) ) ; } } else { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) JmfTr . exit ( this , tc , "isPresent" , "IndexOutOfBoundsException" ) ; throw new IndexOutOfBoundsException ( ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) JmfTr . exit ( this , tc , "isPresent" , Boolean . valueOf ( result ) ) ; return result ; } | The BoxManager stuff is a black art so we ll lock round it to be safe . | 317 | 18 |
162,506 | public boolean setPosition ( long position ) { try { long fileSize = reader . length ( ) ; if ( fileSize > position ) { reader . seek ( position ) ; return true ; } logger . logp ( Level . SEVERE , className , "setPosition" , "HPEL_OffsetBeyondFileSize" , new Object [ ] { file , Long . valueOf ( position ) , Long . valueOf ( fileSize ) } ) ; } catch ( IOException ex ) { logger . logp ( Level . SEVERE , className , "setPosition" , "HPEL_ErrorSettingFileOffset" , new Object [ ] { file , Long . valueOf ( position ) , ex . getMessage ( ) } ) ; // Fall through to return false. } return false ; } | Positions file stream to the location of a previously read record . | 168 | 13 |
162,507 | public long getPosition ( ) { try { return reader . getFilePointer ( ) ; } catch ( IOException ex ) { logger . logp ( Level . SEVERE , className , "getPosition" , "HPEL_ErrorReadingFileOffset" , new Object [ ] { file , ex . getMessage ( ) } ) ; } return - 1L ; } | Retrieves position in the reader s input stream . | 79 | 11 |
162,508 | public RepositoryLogRecord findNext ( long refSequenceNumber ) { if ( nextRecord == null ) { nextRecord = getNext ( refSequenceNumber ) ; } if ( nextRecord == null || refSequenceNumber >= 0 && refSequenceNumber < nextRecord . getInternalSeqNumber ( ) ) { return null ; } else { RepositoryLogRecord result = nextRecord ; nextRecord = null ; return result ; } } | returns next record from the stream matching required condition . | 92 | 11 |
162,509 | public long seekToNextRecord ( LogRecordSerializer formatter ) throws IOException { long fileSize = reader . length ( ) ; long position = reader . getFilePointer ( ) ; int location ; int len = 0 ; int offset = 0 ; byte [ ] buffer = new byte [ 2048 ] ; do { if ( offset > 0 ) { position += len - offset ; // keep the last eyeCatcherSize-1 bytes of the buffer. for ( int i = 0 ; i < offset ; i ++ ) { buffer [ i ] = buffer [ buffer . length - offset + i ] ; } } if ( position + formatter . getEyeCatcherSize ( ) > fileSize ) { throw new IOException ( "No eyeCatcher found in the rest of the file." ) ; } if ( position + buffer . length <= fileSize ) { len = buffer . length ; } else { len = ( int ) ( fileSize - position ) ; } reader . readFully ( buffer , offset , len - offset ) ; if ( offset == 0 ) { offset = formatter . getEyeCatcherSize ( ) - 1 ; } } while ( ( location = formatter . findFirstEyeCatcher ( buffer , 0 , len ) ) < 0 ) ; position += location - 4 ; reader . seek ( position ) ; return position ; } | Repositions reader to the location of the next record . This is done by searching next eyeCatcher and then seek 4 bytes before its start . | 282 | 30 |
162,510 | public long seekToPrevRecord ( LogRecordSerializer formatter ) throws IOException { long position = reader . getFilePointer ( ) ; byte [ ] buffer = new byte [ 2048 ] ; int location ; int offset = 0 ; int len = 0 ; do { if ( position <= formatter . getEyeCatcherSize ( ) + 3 ) { throw new IOException ( "No eyeCatcher found in the rest of the file." ) ; } if ( position > buffer . length ) { len = buffer . length ; } else { len = ( int ) position ; } position -= len ; if ( offset > 0 ) { // keep the first eyeCatcherSize-1 bytes of the buffer. for ( int i = 0 ; i < offset ; i ++ ) { buffer [ len - offset + i ] = buffer [ i ] ; } } reader . seek ( position ) ; reader . readFully ( buffer , 0 , len - offset ) ; if ( offset == 0 ) { offset = formatter . getEyeCatcherSize ( ) - 1 ; } } while ( ( location = formatter . findLastEyeCatcher ( buffer , 0 , len ) ) < 0 ) ; position += location - 4 ; reader . seek ( position ) ; return position ; } | Repositions reader to the location of the previous record . This is done by searching prev eyeCatcher and then seek 4 bytes before its start . | 266 | 30 |
162,511 | protected LogFileReader createNewReader ( LogFileReader other ) throws IOException { if ( other instanceof LogFileReaderImpl ) { return new LogFileReaderImpl ( ( LogFileReaderImpl ) other ) ; } throw new IOException ( "Instance of the " + other . getClass ( ) . getName ( ) + " is not clonable by " + OneLogFileRecordIterator . class . getName ( ) + "." ) ; } | Creates the new instance of a reader to read input data with based on an existing one . | 95 | 19 |
162,512 | public final void persistLock ( final Transaction transaction ) throws ProtocolException , TransactionException , SevereMessageStoreException { Membership membership = _getMembership ( ) ; if ( null == membership ) { throw new NotInMessageStore ( ) ; } membership . persistLock ( transaction ) ; } | Use this method to persist the lock currently active on the item . Item MUST be locked . | 59 | 18 |
162,513 | public void persistRedeliveredCount ( int redeliveredCount ) throws SevereMessageStoreException { Membership thisItemLink = _getMembership ( ) ; if ( null == thisItemLink ) { throw new NotInMessageStore ( ) ; } thisItemLink . persistRedeliveredCount ( redeliveredCount ) ; } | Use this method to persist the redelivered count for the item . | 69 | 14 |
162,514 | public final void requestUpdate ( Transaction transaction ) throws MessageStoreException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "requestUpdate" , transaction ) ; Membership membership = _getMembership ( ) ; if ( null == membership ) { throw new NotInMessageStore ( ) ; } else { membership . requestUpdate ( transaction ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "requestUpdate" ) ; } | Request an update | 129 | 3 |
162,515 | private LaunchArguments createLaunchArguments ( String [ ] args , Map < String , String > initProps ) { List < String > cmdArgs = processBatchFileArgs ( new ArrayList < String > ( Arrays . asList ( args ) ) ) ; return new LaunchArguments ( cmdArgs , initProps , isClient ( ) ) ; } | Return an instance of LaunchArguments . | 76 | 8 |
162,516 | protected ReturnCode handleActions ( BootstrapConfig bootProps , LaunchArguments launchArgs ) { ReturnCode rc = launchArgs . getRc ( ) ; switch ( rc ) { case OK : rc = new KernelBootstrap ( bootProps ) . go ( ) ; break ; case CREATE_ACTION : // Use initialized bootstrap configuration to create the server lock. // This ensures the server and nested workarea directory exist and are writable ServerLock . createServerLock ( bootProps ) ; boolean generatePass = launchArgs . getOption ( "no-password" ) == null ; rc = bootProps . generateServerEnv ( generatePass ) ; break ; case MESSAGE_ACTION : rc = showMessage ( launchArgs ) ; break ; case HELP_ACTION : rc = showHelp ( launchArgs ) ; break ; case VERSION_ACTION : KernelBootstrap . showVersion ( bootProps ) ; rc = ReturnCode . OK ; break ; case STOP_ACTION : rc = new com . ibm . ws . kernel . boot . internal . commands . ProcessControlHelper ( bootProps , launchArgs ) . stop ( ) ; break ; case STATUS_ACTION : rc = new com . ibm . ws . kernel . boot . internal . commands . ProcessControlHelper ( bootProps , launchArgs ) . status ( false ) ; break ; case STARTING_STATUS_ACTION : rc = new com . ibm . ws . kernel . boot . internal . commands . ProcessControlHelper ( bootProps , launchArgs ) . status ( true ) ; break ; case START_STATUS_ACTION : rc = new com . ibm . ws . kernel . boot . internal . commands . ProcessControlHelper ( bootProps , launchArgs ) . startStatus ( ) ; break ; case PACKAGE_ACTION : rc = new com . ibm . ws . kernel . boot . internal . commands . PackageCommand ( bootProps , launchArgs ) . doPackage ( ) ; break ; case PACKAGE_WLP_ACTION : rc = new com . ibm . ws . kernel . boot . internal . commands . PackageCommand ( bootProps , launchArgs ) . doPackageRuntimeOnly ( ) ; break ; case DUMP_ACTION : rc = new com . ibm . ws . kernel . boot . internal . commands . ProcessControlHelper ( bootProps , launchArgs ) . dump ( ) ; break ; case JAVADUMP_ACTION : rc = new com . ibm . ws . kernel . boot . internal . commands . ProcessControlHelper ( bootProps , launchArgs ) . dumpJava ( ) ; break ; case PAUSE_ACTION : rc = new com . ibm . ws . kernel . boot . internal . commands . ProcessControlHelper ( bootProps , launchArgs ) . pause ( ) ; break ; case RESUME_ACTION : rc = new com . ibm . ws . kernel . boot . internal . commands . ProcessControlHelper ( bootProps , launchArgs ) . resume ( ) ; break ; case LIST_ACTION : rc = new ListServerHelper ( bootProps , launchArgs ) . listServers ( ) ; break ; default : showHelp ( launchArgs ) ; rc = ReturnCode . BAD_ARGUMENT ; } return rc ; } | Handle the process action . | 702 | 5 |
162,517 | protected void findLocations ( BootstrapConfig bootProps , String processName ) { // Check for environment variables... String userDirStr = getEnv ( BootstrapConstants . ENV_WLP_USER_DIR ) ; String serversDirStr = getEnv ( bootProps . getOutputDirectoryEnvName ( ) ) ; // Check for the variable calculated by the shell script first (X_LOG_DIR) // If that wasn't found, check for LOG_DIR set for java -jar invocation String logDirStr = getEnv ( BootstrapConstants . ENV_X_LOG_DIR ) ; if ( logDirStr == null ) logDirStr = getEnv ( BootstrapConstants . ENV_LOG_DIR ) ; // Likewise for X_LOG_FILE and LOG_FILE. String consoleLogFileStr = getEnv ( BootstrapConstants . ENV_X_LOG_FILE ) ; if ( consoleLogFileStr == null ) consoleLogFileStr = getEnv ( BootstrapConstants . ENV_LOG_FILE ) ; // Do enough processing to know where the directories should be.. // this should not cause any directories to be created bootProps . findLocations ( processName , userDirStr , serversDirStr , logDirStr , consoleLogFileStr ) ; } | Find main locations | 282 | 3 |
162,518 | public ProtocolVersion getVersion ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "getVersion" ) ; // The ProtocolVersion to be returned ProtocolVersion version = ProtocolVersion . UNKNOWN ; // Get the MetaData out of the connection ConnectionMetaData connMetaData = connection . getMetaData ( ) ; // If the MetaData is non-null we can retrieve a version. if ( connMetaData != null ) version = connMetaData . getProtocolVersion ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "getVersion" , version ) ; return version ; } | Retrieve the ProtocolVersion associated with this connection . | 161 | 10 |
162,519 | @ Override protected Object performInvocation ( Exchange exchange , final Object serviceObject , Method m , Object [ ] paramArray ) throws Exception { // This retrieves the appropriate method from the wrapper class m = serviceObject . getClass ( ) . getMethod ( m . getName ( ) , m . getParameterTypes ( ) ) ; return super . performInvocation ( exchange , serviceObject , m , paramArray ) ; } | This invokes the target operation . We override this method to deal with the fact that the serviceObject is actually an EJB wrapper class . We need to get an equivalent method on the serviceObject class in order to invoke the target operation . | 88 | 48 |
162,520 | private String getUserAccessId ( String userName ) { try { SecurityService securityService = securityServiceRef . getService ( ) ; UserRegistryService userRegistryService = securityService . getUserRegistryService ( ) ; UserRegistry userRegistry = userRegistryService . getUserRegistry ( ) ; String realm = userRegistry . getRealm ( ) ; String uniqueId = userRegistry . getUniqueUserId ( userName ) ; return AccessIdUtil . createAccessId ( AccessIdUtil . TYPE_USER , realm , uniqueId ) ; } catch ( EntryNotFoundException e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Caught exception getting the access id for " + userName + ": " + e ) ; } } catch ( RegistryException e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Caught exception getting the access id for " + userName + ": " + e ) ; } } return null ; } | Get the access id for a user by performing a looking up in the user registry . | 245 | 17 |
162,521 | private String getGroupAccessId ( String groupName ) { try { SecurityService securityService = securityServiceRef . getService ( ) ; UserRegistryService userRegistryService = securityService . getUserRegistryService ( ) ; UserRegistry userRegistry = userRegistryService . getUserRegistry ( ) ; String realm = userRegistry . getRealm ( ) ; String groupUniqueId = userRegistry . getUniqueGroupId ( groupName ) ; return AccessIdUtil . createAccessId ( AccessIdUtil . TYPE_GROUP , realm , groupUniqueId ) ; } catch ( EntryNotFoundException e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Caught exception getting the access id for " + groupName + ": " + e ) ; } } catch ( RegistryException e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Caught exception getting the access id for " + groupName + ": " + e ) ; } } return null ; } | Get the access id for a group by performing a looking up in the user registry . | 247 | 17 |
162,522 | private Object getSavedState ( FacesContext facesContext ) { Object encodedState = facesContext . getExternalContext ( ) . getRequestParameterMap ( ) . get ( STANDARD_STATE_SAVING_PARAM ) ; if ( encodedState == null || ( ( ( String ) encodedState ) . length ( ) == 0 ) ) { return null ; } Object savedStateObject = _stateTokenProcessor . decode ( facesContext , ( String ) encodedState ) ; return savedStateObject ; } | Reconstructs the state from the javax . faces . ViewState request parameter . | 105 | 19 |
162,523 | @ Override public boolean isPostback ( FacesContext context ) { return context . getExternalContext ( ) . getRequestParameterMap ( ) . containsKey ( ResponseStateManager . VIEW_STATE_PARAM ) ; } | Checks if the current request is a postback | 46 | 10 |
162,524 | public void initialise ( Identifier rootId , boolean enableCache ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . entry ( cclass , "initialise" , new Object [ ] { rootId , new Boolean ( enableCache ) } ) ; switch ( rootId . getType ( ) ) { case Selector . UNKNOWN : case Selector . OBJECT : matchTree = new EqualityMatcher ( rootId ) ; break ; case Selector . STRING : case Selector . TOPIC : matchTree = new StringMatcher ( rootId ) ; break ; case Selector . BOOLEAN : matchTree = new BooleanMatcher ( rootId ) ; break ; default : matchTree = new NumericMatcher ( rootId ) ; break ; } if ( enableCache ) { this . rootId = rootId ; matchCache = new MatchCache ( MATCH_CACHE_INITIAL_CAPACITY ) ; matchCache . setRehashFilter ( this ) ; ( ( EqualityMatcher ) matchTree ) . setCacheing ( true ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . exit ( cclass , "MatchSpaceImpl" , this ) ; } | Initialise a newly created MatchSpace | 277 | 7 |
162,525 | public synchronized void addTarget ( Conjunction conjunction , MatchTarget object ) throws MatchingException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . entry ( this , cclass , "addTarget" , new Object [ ] { conjunction , object } ) ; // Deal with Conjunctions that test equality on rootId when cacheing is enabled if ( rootId != null ) { // Cacheing is enabled. OrdinalPosition rootOrd = new OrdinalPosition ( 0 , 0 ) ; SimpleTest test = Factory . findTest ( rootOrd , conjunction ) ; if ( test != null && test . getKind ( ) == SimpleTest . EQ ) { // This is an equality test, so it goes in the cache only. CacheEntry e = getCacheEntry ( test . getValue ( ) , true ) ; e . exactGeneration ++ ; // even-odd transition: show we are changing it ContentMatcher exact = e . exactMatcher ; e . exactMatcher = exact = Factory . createMatcher ( rootOrd , conjunction , exact ) ; e . cachedResults = null ; try { exact . put ( conjunction , object , subExpr ) ; e . noResultCache |= exact . hasTests ( ) ; } catch ( RuntimeException exc ) { // No FFDC Code Needed. // FFDC driven by wrapper class. FFDC . processException ( this , cclass , "com.ibm.ws.sib.matchspace.impl.MatchSpaceImpl.addTarget" , exc , "1:303:1.44" ) ; //TODO: tc.exception(tc, exc); if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . exit ( this , cclass , "addTarget" , e ) ; throw new MatchingException ( exc ) ; } finally { e . exactGeneration ++ ; // odd-even transition: show change is complete } exactPuts ++ ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . exit ( this , cclass , "addTarget" ) ; return ; } } // Either cacheing is not enabled or this isn't an equality test on rootId. matchTreeGeneration ++ ; // even-odd transition: show we are changing it try { matchTree . put ( conjunction , object , subExpr ) ; } catch ( RuntimeException e ) { // No FFDC Code Needed. // FFDC driven by wrapper class. FFDC . processException ( this , cclass , "com.ibm.ws.sib.matchspace.impl.MatchSpaceImpl.addTarget" , e , "1:333:1.44" ) ; //TODO: tc.exception(tc, e); if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . exit ( this , cclass , "addTarget" , e ) ; throw new MatchingException ( e ) ; } finally { matchTreeGeneration ++ ; /* odd-even transition: show change is complete. Also invalidates non-equality information in the cache */ } wildPuts ++ ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . exit ( this , cclass , "addTarget" ) ; } | Adds a Conjunction to the space and associates a MatchTarget with it . | 724 | 15 |
162,526 | private CacheEntry getCacheEntry ( Object value , boolean create ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . entry ( this , cclass , "getCacheEntry" , new Object [ ] { value , new Boolean ( create ) , matchCache } ) ; CacheEntry e = ( CacheEntry ) matchCache . get ( value ) ; if ( e == null ) { if ( create ) { e = new CacheEntry ( ) ; // The following method call may stimulate multiple callbacks to the shouldRetain // method if the Hashtable is at the rehash threshold. matchCache . put ( value , e ) ; cacheCreates ++ ; } } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . exit ( this , cclass , "getCacheEntry" , e ) ; return e ; } | Gets the appropriate CacheEntry for a value of the root Identifier | 192 | 14 |
162,527 | public boolean shouldRetain ( Object key , Object val ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . entry ( this , cclass , "shouldRetain" , new Object [ ] { key , val } ) ; CacheEntry e = ( CacheEntry ) val ; if ( e . exactMatcher != null ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . exit ( this , cclass , "shouldRetain" , Boolean . TRUE ) ; return true ; } cacheRemoves ++ ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . exit ( this , cclass , "shouldRetain" , Boolean . FALSE ) ; return false ; } | entries that don t have an exactMatcher . | 176 | 11 |
162,528 | public void statistics ( PrintWriter wtr ) { int truePessimisticGets = pessimisticGets - puntsDueToCache ; wtr . println ( "Exact puts: " + exactPuts + ", Wildcard generation: " + matchTreeGeneration + ", Wildcard puts: " + wildPuts + ", Wildcard-Cache-hit gets: " + wildCacheHitGets + ", Wildcard-Cache-miss gets: " + wildCacheMissGets + ", Result-Cache-hit gets: " + resultCacheHitGets + ", Exact matches: " + exactMatches + ", Results cached: " + resultsCached + ", Removals:" + removals + ", Cache entries created:" + cacheCreates + ", Cache entries removed:" + cacheRemoves + ", Optimistic gets:" + optimisticGets + ", True Pessimistic gets:" + truePessimisticGets + ", Mutating gets:" + puntsDueToCache ) ; } | Only used when doing isolated performance testing of the MatchSpace . | 207 | 12 |
162,529 | public synchronized void clear ( Identifier rootId , boolean enableCache ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . entry ( this , cclass , "clear" ) ; matchTree = null ; matchTreeGeneration = 0 ; subExpr . clear ( ) ; // Now reinitialise the matchspace initialise ( rootId , enableCache ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) tc . exit ( this , cclass , "clear" ) ; } | Removes all objects from the MatchSpace resetting it to the as new condition . | 124 | 17 |
162,530 | public SICoreConnection getConnection ( ) throws SISessionUnavailableException , SISessionDroppedException , SIConnectionUnavailableException , SIConnectionDroppedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getConnection" ) ; checkAlreadyClosed ( ) ; ConnectionProxy conn = getConnectionProxy ( ) ; conn . checkAlreadyClosed ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "getConnection" , conn ) ; return conn ; } | Returns the SICoreConnection which created this Session . | 148 | 11 |
162,531 | protected void checkAlreadyClosed ( ) throws SISessionUnavailableException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "checkAlreadyClosed" ) ; if ( isClosed ( ) ) throw new SISessionUnavailableException ( nls . getFormattedMessage ( "SESSION_CLOSED_SICO1013" , null , null ) ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "checkAlreadyClosed" ) ; } | Helper method to check if this session is closed and throws the appropriate exception if it is . | 139 | 18 |
162,532 | public SIDestinationAddress getDestinationAddress ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getDestinationAddress" ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "getDestinationAddress" , destinationAddress ) ; return destinationAddress ; } | This method will return the destination address of the destination that this session is currently attached to . | 99 | 18 |
162,533 | public TrmClientBootstrapRequest createNewTrmClientBootstrapRequest ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmClientBootstrapRequest" ) ; TrmClientBootstrapRequest msg = null ; try { msg = new TrmClientBootstrapRequestImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmClientBootstrapRequest" ) ; return msg ; } | Create a new empty TrmClientBootstrapRequest message | 183 | 11 |
162,534 | public TrmClientBootstrapReply createNewTrmClientBootstrapReply ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmClientBootstrapReply" ) ; TrmClientBootstrapReply msg = null ; try { msg = new TrmClientBootstrapReplyImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmClientBootstrapReply" ) ; return msg ; } | Create a new empty TrmClientBootstrapReply message | 183 | 11 |
162,535 | public TrmClientAttachRequest createNewTrmClientAttachRequest ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmClientAttachRequest" ) ; TrmClientAttachRequest msg = null ; try { msg = new TrmClientAttachRequestImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmClientAttachRequest" ) ; return msg ; } | Create a new empty TrmClientAttachRequest message | 177 | 10 |
162,536 | public TrmClientAttachRequest2 createNewTrmClientAttachRequest2 ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmClientAttachRequest2" ) ; TrmClientAttachRequest2 msg = null ; try { msg = new TrmClientAttachRequest2Impl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmClientAttachRequest2" ) ; return msg ; } | Create a new empty TrmClientAttachRequest2 message | 183 | 11 |
162,537 | public TrmClientAttachReply createNewTrmClientAttachReply ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmClientAttachReply" ) ; TrmClientAttachReply msg = null ; try { msg = new TrmClientAttachReplyImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmClientAttachReply" ) ; return msg ; } | Create a new empty TrmClientAttachReply message | 177 | 10 |
162,538 | public TrmMeConnectRequest createNewTrmMeConnectRequest ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmMeConnectRequest" ) ; TrmMeConnectRequest msg = null ; try { msg = new TrmMeConnectRequestImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmMeConnectRequest" ) ; return msg ; } | Create a new empty TrmMeConnectRequest message | 177 | 10 |
162,539 | public TrmMeConnectReply createNewTrmMeConnectReply ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmMeConnectReply" ) ; TrmMeConnectReply msg = null ; try { msg = new TrmMeConnectReplyImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmMeConnectReply" ) ; return msg ; } | Create a new empty TrmMeConnectReply message | 177 | 10 |
162,540 | public TrmMeLinkRequest createNewTrmMeLinkRequest ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmMeLinkRequest" ) ; TrmMeLinkRequest msg = null ; try { msg = new TrmMeLinkRequestImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmMeLinkRequest" ) ; return msg ; } | Create a new empty TrmMeLinkRequest message | 177 | 10 |
162,541 | public TrmMeLinkReply createNewTrmMeLinkReply ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmMeLinkReply" ) ; TrmMeLinkReply msg = null ; try { msg = new TrmMeLinkReplyImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmMeLinkReply" ) ; return msg ; } | Create a new empty TrmMeLinkReply message | 177 | 10 |
162,542 | public TrmMeBridgeRequest createNewTrmMeBridgeRequest ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmMeBridgeRequest" ) ; TrmMeBridgeRequest msg = null ; try { msg = new TrmMeBridgeRequestImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmMeBridgeRequest" ) ; return msg ; } | Create a new empty TrmMeBridgeRequest message | 177 | 10 |
162,543 | public TrmMeBridgeReply createNewTrmMeBridgeReply ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmMeBridgeReply" ) ; TrmMeBridgeReply msg = null ; try { msg = new TrmMeBridgeReplyImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmMeBridgeReply" ) ; return msg ; } | Create a new empty TrmMeBridgeReply message | 177 | 10 |
162,544 | public TrmMeBridgeBootstrapRequest createNewTrmMeBridgeBootstrapRequest ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmMeBridgeBootstrapRequest" ) ; TrmMeBridgeBootstrapRequest msg = null ; try { msg = new TrmMeBridgeBootstrapRequestImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmMeBridgeBootstrapRequest" ) ; return msg ; } | Create a new empty TrmMeBridgeBootstrapRequest message | 189 | 12 |
162,545 | public TrmMeBridgeBootstrapReply createNewTrmMeBridgeBootstrapReply ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createNewTrmMeBridgeBootstrapReply" ) ; TrmMeBridgeBootstrapReply msg = null ; try { msg = new TrmMeBridgeBootstrapReplyImpl ( ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createNewTrmMeBridgeBootstrapReply" ) ; return msg ; } | Create a new empty TrmMeBridgeBootstrapReply message | 189 | 12 |
162,546 | public TrmFirstContactMessage createInboundTrmFirstContactMessage ( byte rawMessage [ ] , int offset , int length ) throws MessageDecodeFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createInboundTrmFirstContactMessage" , new Object [ ] { rawMessage , Integer . valueOf ( offset ) , Integer . valueOf ( length ) } ) ; JsMsgObject jmo = new JsMsgObject ( TrmFirstContactAccess . schema , rawMessage , offset , length ) ; TrmFirstContactMessage message = new TrmFirstContactMessageImpl ( jmo ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createInboundTrmFirstContactMessage" , message ) ; return message ; } | Create a TrmFirstContactMessage to represent an inbound message . | 196 | 14 |
162,547 | public TrmRouteData createTrmRouteData ( ) throws MessageCreateFailedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createTrmRouteData" ) ; TrmRouteData msg = null ; try { msg = new TrmRouteDataImpl ( MfpConstants . CONSTRUCTOR_NO_OP ) ; } catch ( MessageDecodeFailedException e ) { /* No need to FFDC this as JsMsgObject will already have done so */ // No FFDC code needed throw new MessageCreateFailedException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createTrmRouteData" ) ; return msg ; } | Create a TrmRouteData message | 180 | 7 |
162,548 | public void eventRestored ( ) throws SevereMessageStoreException { super . eventRestored ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "eventRestored" ) ; try { NonLockingCursor cursor = newNonLockingItemCursor ( null ) ; AbstractItem item = cursor . next ( ) ; while ( item != null ) { if ( item instanceof SchemaStoreItem ) { addToIndex ( ( SchemaStoreItem ) item ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . debug ( this , tc , "JSchema found in store: " + ( ( SchemaStoreItem ) item ) . getSchema ( ) . getID ( ) ) ; } item = cursor . next ( ) ; } } catch ( MessageStoreException e ) { FFDCFilter . processException ( e , "eventRestored" , "108" , this ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "eventRestored" ) ; } | the message store . We build the index of any currently stored items . | 265 | 14 |
162,549 | void addSchema ( JMFSchema schema , Transaction tran ) throws MessageStoreException { addItem ( new SchemaStoreItem ( schema ) , tran ) ; } | Add a new schema defintion to the store | 37 | 10 |
162,550 | JMFSchema findSchema ( long schemaId ) throws MessageStoreException { Long storeId = schemaIndex . get ( Long . valueOf ( schemaId ) ) ; if ( storeId != null ) { AbstractItem item = findById ( storeId . longValue ( ) ) ; return ( ( SchemaStoreItem ) item ) . getSchema ( ) ; } else throw new MessageStoreException ( "Schema not found in store: " + schemaId ) ; } | Restore a schema definition from the store | 100 | 8 |
162,551 | void addToIndex ( SchemaStoreItem item ) throws NotInMessageStore { schemaIndex . put ( item . getSchema ( ) . getLongID ( ) , Long . valueOf ( item . getID ( ) ) ) ; item . setStream ( this ) ; } | Add an item to our index | 59 | 6 |
162,552 | void removeFromIndex ( SchemaStoreItem item ) { schemaIndex . remove ( item . getSchema ( ) . getLongID ( ) ) ; item . setStream ( null ) ; } | Remove an item from our index | 41 | 6 |
162,553 | public synchronized WSPKCSInKeyStore insert ( String tokenType , String tokenlib , String tokenPwd , boolean askeystore , String keyStoreProvider ) throws Exception { // check to see if the library has been initialized already;by comparing // the elements in the enumerations // perhaps a java 2 sec mgr if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "insert" , new Object [ ] { tokenType , tokenlib , keyStoreProvider } ) ; WSPKCSInKeyStore pKS = insertedAlready ( tokenlib ) ; boolean already = false ; // what is inserted already, but not as the askeystore specified. In // other words, askeystore indicates keystore, but // the pKS was inserted as truststore. // looks like we have not inserted anything yet. if ( pKS == null ) { pKS = new WSPKCSInKeyStore ( tokenlib , keyStoreProvider ) ; } else { already = true ; } if ( askeystore ) pKS . asKeyStore ( tokenType , tokenlib , tokenPwd ) ; else pKS . asTrustStore ( tokenType , tokenlib , tokenPwd ) ; if ( ! already ) theV . add ( pKS ) ; if ( tc . isEntryEnabled ( ) ) { Tr . exit ( tc , "insert" ) ; } return pKS ; } | Insert a new keystore into the list . | 294 | 9 |
162,554 | private WSPKCSInKeyStore insertedAlready ( String tokenlib ) { WSPKCSInKeyStore pKS = null ; WSPKCSInKeyStore rc = null ; Enumeration < WSPKCSInKeyStore > e = theV . elements ( ) ; while ( null == rc && e . hasMoreElements ( ) ) { pKS = e . nextElement ( ) ; if ( tokenlib . equalsIgnoreCase ( pKS . getlibName_key ( ) ) ) { rc = pKS ; } else if ( tokenlib . equalsIgnoreCase ( pKS . getlibName_trust ( ) ) ) { rc = pKS ; } } return rc ; } | Lookup the keystore object that may exist in the list for the input token library value . | 150 | 19 |
162,555 | public InputStream openKeyStore ( String fileName ) throws MalformedURLException , IOException { InputStream fis = null ; URL urlFile = null ; File kfile = null ; try { kfile = new File ( fileName ) ; } catch ( NullPointerException e ) { throw new IOException ( ) ; } try { if ( kfile . exists ( ) ) { // its a file that is there if ( kfile . length ( ) == 0 ) { // the keystore file is empty // debug throw new IOException ( fileName ) ; } // get the url syntax for the fully-qualified filename urlFile = new URL ( "file:" + kfile . getCanonicalPath ( ) ) ; } else { // otherwise, its a url or a file that doesn't exist try { urlFile = new URL ( fileName ) ; } catch ( MalformedURLException e ) { // not proper url syntax // -or- a file that doesn't exist, we don't know which. // error message throw e ; } } } catch ( SecurityException e ) { // error message throw new IOException ( fileName ) ; } // Attempt to open the keystore file try { fis = urlFile . openStream ( ) ; } catch ( IOException e ) { // error message throw e ; } return fis ; } | Open the input filename as a stream . | 286 | 8 |
162,556 | private void addAlternateNamedFacesConfig ( Container moduleContainer , ArrayList < String > classList ) { try { WebApp webapp = moduleContainer . adapt ( WebApp . class ) ; //If null, assume there was no web.xml, so no need to look for ContextParams in it. if ( webapp == null ) { return ; } List < ParamValue > params = webapp . getContextParams ( ) ; String configNames = null ; for ( ParamValue param : params ) { if ( param . getName ( ) . equals ( FACES_CONFIG_NAMES ) ) { configNames = param . getValue ( ) ; break ; } } //If we didn't find the param, then bail out if ( configNames == null ) return ; //Treat value as a comma delimited list of file names StringTokenizer st = new StringTokenizer ( configNames , "," ) ; while ( st . hasMoreTokens ( ) ) { addConfigFileBeans ( moduleContainer . getEntry ( st . nextToken ( ) ) , classList ) ; } } catch ( UnableToAdaptException e ) { if ( log . isLoggable ( Level . FINE ) ) { log . logp ( Level . FINE , CLASS_NAME , "addAlternateNamedFacesConfig" , "failed to adapt conatiner to WebApp" , e ) ; } } } | Look at the web . xml for a context - param javax . faces . CONFIG_FILES and treat as a comma delimited list | 301 | 29 |
162,557 | public static QName getServiceQName ( ClassInfo classInfo , String seiClassName , String targetNamespace ) { AnnotationInfo annotationInfo = getAnnotationInfoFromClass ( classInfo , "Service QName" ) ; if ( annotationInfo == null ) { return null ; } //serviceName can only be defined in implementation bean, targetNamespace should be the implemented one. return getQName ( classInfo , targetNamespace , annotationInfo . getValue ( JaxWsConstants . SERVICENAME_ATTRIBUTE ) . getStringValue ( ) , JaxWsConstants . SERVICENAME_ATTRIBUTE_SUFFIX ) ; } | Get serviceName s QName of Web Service | 144 | 9 |
162,558 | public static QName getPortQName ( ClassInfo classInfo , String seiClassName , String targetNamespace ) { AnnotationInfo annotationInfo = getAnnotationInfoFromClass ( classInfo , "Port QName" ) ; if ( annotationInfo == null ) { return null ; } boolean webServiceProviderAnnotation = isProvider ( classInfo ) ; String wsName = webServiceProviderAnnotation ? null : annotationInfo . getValue ( JaxWsConstants . NAME_ATTRIBUTE ) . getStringValue ( ) ; return getPortQName ( classInfo , targetNamespace , wsName , annotationInfo . getValue ( JaxWsConstants . PORTNAME_ATTRIBUTE ) . getStringValue ( ) , JaxWsConstants . PORTNAME_ATTRIBUTE_SUFFIX ) ; } | Get portName QName of Web Service | 180 | 8 |
162,559 | public static boolean isProvider ( ClassInfo classInfo ) { AnnotationInfo annotationInfo = classInfo . getAnnotation ( JaxWsConstants . WEB_SERVICE_ANNOTATION_NAME ) ; if ( annotationInfo == null ) { annotationInfo = classInfo . getAnnotation ( JaxWsConstants . WEB_SERVICE_PROVIDER_ANNOTATION_NAME ) ; if ( annotationInfo != null ) { return true ; } } return false ; } | Judge if is a Web Service Provider . | 101 | 8 |
162,560 | public static String getImplementedTargetNamespace ( ClassInfo classInfo ) { String defaultValue = getNamespace ( classInfo , null ) ; if ( StringUtils . isEmpty ( defaultValue ) ) { defaultValue = JaxWsConstants . UNKNOWN_NAMESPACE ; } AnnotationInfo annotationInfo = getAnnotationInfoFromClass ( classInfo , JaxWsConstants . TARGETNAMESPACE_ATTRIBUTE ) ; if ( annotationInfo == null ) { return "" ; } AnnotationValue attrValue = annotationInfo . getValue ( JaxWsConstants . TARGETNAMESPACE_ATTRIBUTE ) ; String attrFromAnnotation = attrValue == null ? null : attrValue . getStringValue ( ) . trim ( ) ; return StringUtils . isEmpty ( attrFromAnnotation ) ? defaultValue : attrFromAnnotation ; } | get the targetNamespace from implementation bean . if can get the targetNamespace attribute from annotation then return it otherwise return the package name as default value . Both webService and webServiceprovider has the same logic . | 196 | 44 |
162,561 | public static String getInterfaceTargetNamespace ( ClassInfo classInfo , String seiClassName , String implementedTargetNamespace , InfoStore infoStore ) { AnnotationInfo annotationInfo = getAnnotationInfoFromClass ( classInfo , JaxWsConstants . TARGETNAMESPACE_ATTRIBUTE ) ; if ( annotationInfo == null ) { return "" ; } boolean isProvider = isProvider ( classInfo ) ; // if the serviceImplBean is a WebServiceProvider, return the attribute value or the defaultValue if ( isProvider ) { AnnotationValue attrValue = annotationInfo . getValue ( JaxWsConstants . TARGETNAMESPACE_ATTRIBUTE ) ; String attrFromAnnotation = attrValue == null ? null : attrValue . getStringValue ( ) . trim ( ) ; return StringUtils . isEmpty ( attrFromAnnotation ) ? implementedTargetNamespace : attrFromAnnotation ; } if ( null == infoStore || StringUtils . isEmpty ( seiClassName ) ) { return implementedTargetNamespace ; } // if can get the SEI className, go here. // Here, the SEI package name instead of implementation class package name should be used as the default value for the targetNameSpace ClassInfo seiClassInfo = infoStore . getDelayableClassInfo ( seiClassName ) ; String defaultValue = getNamespace ( seiClassInfo , null ) ; if ( StringUtils . isEmpty ( defaultValue ) ) { defaultValue = JaxWsConstants . UNKNOWN_NAMESPACE ; } annotationInfo = seiClassInfo . getAnnotation ( JaxWsConstants . WEB_SERVICE_ANNOTATION_NAME ) ; if ( null == annotationInfo ) { // if the SEI does not have the @WebService annotation, we should report it as error? (RI 2.2 will do) if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "No @WebService or @WebServiceProvider annotation is found on the class " + seiClassInfo + " will return " + defaultValue ) ; } return defaultValue ; } // if the attribute is presented in SEI's @WebService, just return it. or, return the default value for Service String attrFromSEI = annotationInfo . getValue ( JaxWsConstants . TARGETNAMESPACE_ATTRIBUTE ) . getStringValue ( ) . trim ( ) ; return StringUtils . isEmpty ( attrFromSEI ) ? defaultValue : attrFromSEI ; } | get the targetNamespace from SEI . If it is webServiceProvider just return the targetNamespace attribute from annotation . If it is webService and no SEI specified return the implementedTargetNamespace ; If it is webService and SEI specified with no targetNamespace attribute should report error? If it is webService and SEI specified with targetNamespace attribute just return the targetNamespace attribute value . | 559 | 84 |
162,562 | public static String getWSDLLocation ( ClassInfo classInfo , String seiClassName , InfoStore infoStore ) { return getStringAttributeFromAnnotation ( classInfo , seiClassName , infoStore , JaxWsConstants . WSDLLOCATION_ATTRIBUTE , "" , "" ) ; } | First get the WSDL Location . | 68 | 8 |
162,563 | private static String getStringAttributeFromWebServiceProviderAnnotation ( AnnotationInfo annotationInfo , String attribute , String defaultForServiceProvider ) { //the two values can not be found in webserviceProvider annotation so just return the default value to save time if ( attribute . equals ( JaxWsConstants . ENDPOINTINTERFACE_ATTRIBUTE ) || attribute . equals ( JaxWsConstants . NAME_ATTRIBUTE ) ) { return defaultForServiceProvider ; } AnnotationValue attrValue = annotationInfo . getValue ( attribute ) ; String attrFromSP = attrValue == null ? null : attrValue . getStringValue ( ) . trim ( ) ; return StringUtils . isEmpty ( attrFromSP ) ? defaultForServiceProvider : attrFromSP ; } | Return the attribute value of WebServiceProvider annotation | 172 | 9 |
162,564 | private static String getStringAttributeFromAnnotation ( ClassInfo classInfo , String seiClassName , InfoStore infoStore , String attribute , String defaultForService , String defaultForServiceProvider ) { AnnotationInfo annotationInfo = getAnnotationInfoFromClass ( classInfo , attribute ) ; if ( annotationInfo == null ) { return "" ; } boolean isProvider = isProvider ( classInfo ) ; // if the serviceImplBean is a WebServiceProvider, return the attribute value or the defaultValue for ServiceProvider if ( isProvider ) { return getStringAttributeFromWebServiceProviderAnnotation ( annotationInfo , attribute , defaultForServiceProvider ) ; } // if is as WebService, need to get the attribute from itself, the SEI or the interfaces, then the default value for Service String attrFromImplBean = annotationInfo . getValue ( attribute ) . getStringValue ( ) . trim ( ) ; if ( attrFromImplBean . isEmpty ( ) ) { // can not get the SEI class name just return the default value if ( seiClassName . isEmpty ( ) ) { return defaultForService ; } else { // if can get the SEI className, go here. ClassInfo seiClassInfo = infoStore . getDelayableClassInfo ( seiClassName ) ; annotationInfo = seiClassInfo . getAnnotation ( JaxWsConstants . WEB_SERVICE_ANNOTATION_NAME ) ; if ( null == annotationInfo ) { // if the SEI does not have the @WebService annotation, we should report it as error? (RI 2.2 will do) if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "No @WebService or @WebServiceProvider annotation is found on the class " + seiClassInfo + " will return " + defaultForService ) ; } return defaultForService ; } // if the attribute is presented in SEI's @WebService, just return it. or, return the default value for Service String attrFromSEI = annotationInfo . getValue ( attribute ) . getStringValue ( ) . trim ( ) ; return StringUtils . isEmpty ( attrFromSEI ) ? defaultForService : attrFromSEI ; } } return attrFromImplBean ; } | Get the string value of attribute in WebService or WebserviceProvider annotation . | 490 | 16 |
162,565 | public static String getPortComponentName ( ClassInfo classInfo , String seiClassName , InfoStore infoStore ) { String defaultForServiceProvider = classInfo . getName ( ) ; String defaultForService = getClassName ( classInfo . getName ( ) ) ; return getStringAttributeFromAnnotation ( classInfo , seiClassName , infoStore , JaxWsConstants . NAME_ATTRIBUTE , defaultForService , defaultForServiceProvider ) ; } | Get the portComponentName from ClassInfo | 100 | 8 |
162,566 | private static QName getPortQName ( ClassInfo classInfo , String namespace , String wsName , String wsPortName , String suffix ) { String portName ; if ( wsPortName != null && ! wsPortName . isEmpty ( ) ) { portName = wsPortName . trim ( ) ; } else { if ( wsName != null && ! wsName . isEmpty ( ) ) { portName = wsName . trim ( ) ; } else { String qualifiedName = classInfo . getQualifiedName ( ) ; int lastDotIndex = qualifiedName . lastIndexOf ( "." ) ; portName = ( lastDotIndex == - 1 ? qualifiedName : qualifiedName . substring ( lastDotIndex + 1 ) ) ; } portName = portName + suffix ; } return new QName ( namespace , portName ) ; } | Get portName . 1 . declared portName in web service annotation 2 . name in web service annotation + Port 3 . service class name + Port . | 188 | 30 |
162,567 | public static boolean matchesQName ( QName regQName , QName targetQName , boolean ignorePrefix ) { if ( regQName == null || targetQName == null ) { return false ; } if ( "*" . equals ( getQNameString ( regQName ) ) ) { return true ; } // if the name space or the prefix is not equal, just return false; if ( ! ( regQName . getNamespaceURI ( ) . equals ( targetQName . getNamespaceURI ( ) ) ) || ! ( ignorePrefix || regQName . getPrefix ( ) . equals ( targetQName . getPrefix ( ) ) ) ) { return false ; } if ( regQName . getLocalPart ( ) . contains ( "*" ) ) { return Pattern . matches ( mapPattern ( regQName . getLocalPart ( ) ) , targetQName . getLocalPart ( ) ) ; } else if ( regQName . getLocalPart ( ) . equals ( targetQName . getLocalPart ( ) ) ) { return true ; } return false ; } | Check whether the regQName matches the targetQName | 235 | 11 |
162,568 | public static String getProtocolByToken ( String token , boolean returnDefault ) { if ( StringUtils . isEmpty ( token ) && returnDefault ) { return JaxWsConstants . SOAP11HTTP_BINDING ; } if ( JaxWsConstants . SOAP11_HTTP_TOKEN . equals ( token ) ) { return JaxWsConstants . SOAP11HTTP_BINDING ; } else if ( JaxWsConstants . SOAP11_HTTP_MTOM_TOKEN . equals ( token ) ) { return JaxWsConstants . SOAP11HTTP_MTOM_BINDING ; } else if ( JaxWsConstants . SOAP12_HTTP_TOKEN . equals ( token ) ) { return JaxWsConstants . SOAP12HTTP_BINDING ; } else if ( JaxWsConstants . SOAP12_HTTP_MTOM_TOKEN . equals ( token ) ) { return JaxWsConstants . SOAP12HTTP_MTOM_BINDING ; } else if ( JaxWsConstants . XML_HTTP_TOKEN . equals ( token ) ) { return JaxWsConstants . HTTP_BINDING ; } else { return token ; } } | Get the protocol by token | 268 | 5 |
162,569 | @ Override public boolean addSync ( ) throws ResourceException { if ( tc . isEntryEnabled ( ) ) { Tr . entry ( this , tc , "addSync" ) ; } UOWCoordinator uowCoord = mcWrapper . getUOWCoordinator ( ) ; if ( uowCoord == null ) { IllegalStateException e = new IllegalStateException ( "addSync: illegal state exception. uowCoord is null" ) ; Tr . error ( tc , "ILLEGAL_STATE_EXCEPTION_J2CA0079" , "addSync" , e ) ; if ( tc . isEntryEnabled ( ) ) Tr . exit ( this , tc , "addSync" , e ) ; throw e ; } try { // added a second synchronization // // RRS Transactions don't follow the XA model, and therefore don't receive callbacks for // end, prepare, and commit/rollback. Defect added State Management for RRS // controlled transactions, and because the state on the adapter is, for XA transactions, // reset during the commit callback, we need to reset the adapter state as close as // possible after the commit time. Therefore, we need to register as a priority sync // for the purpose of resetting the adapter state. We need to also register as a normal // sync, however, because we have additional afterCompletion code that returns the // managed connection to the free pool. This code must be executed AFTER DB2 gets its // afterCompletion callback. DB2 is also registered as a priority sync, and since we // can't guarantee the order of the afterCompletion callbacks if two syncs are registered // as priority, we need to register as a regular sync to execute this part of the code. EmbeddableWebSphereTransactionManager tranMgr = mcWrapper . pm . connectorSvc . transactionManager ; tranMgr . registerSynchronization ( uowCoord , this ) ; final ManagedConnection mc = mcWrapper . getManagedConnection ( ) ; // Registering a synchronization object with priority SYNC_TIER_RRS (3) allows the // synchronization to be called last. if ( mc instanceof WSManagedConnection ) { tranMgr . registerSynchronization ( uowCoord , new Synchronization ( ) { @ Override public void beforeCompletion ( ) { } @ Override public void afterCompletion ( int status ) { ( ( WSManagedConnection ) mc ) . afterCompletionRRS ( ) ; } } , RegisteredSyncs . SYNC_TIER_RRS ) ; } } catch ( Exception e ) { com . ibm . ws . ffdc . FFDCFilter . processException ( e , "com.ibm.ejs.j2c.RRSGlobalTransactionWrapper.addSync" , "238" , this ) ; Tr . error ( tc , "REGISTER_WITH_SYNCHRONIZATION_EXCP_J2CA0026" , "addSync" , e , "ResourceException" ) ; ResourceException re = new ResourceException ( "addSync: caught Exception" ) ; re . initCause ( e ) ; if ( tc . isEntryEnabled ( ) ) Tr . exit ( this , tc , "addSync" , e ) ; throw re ; } if ( tc . isEntryEnabled ( ) ) { Tr . exit ( this , tc , "addSync" , true ) ; } return true ; } | Register the RRSGlobalTransactionWrapper as a sync object with the Transaction Manager for the current transaction . | 742 | 21 |
162,570 | private void taskProperties ( RESTRequest request , RESTResponse response ) { String taskID = RESTHelper . getRequiredParam ( request , APIConstants . PARAM_TASK_ID ) ; String taskPropertiesText = getMultipleRoutingHelper ( ) . getTaskProperties ( taskID ) ; OutputHelper . writeTextOutput ( response , taskPropertiesText ) ; } | Returns the list of available properties and their corresponding URLs . | 85 | 11 |
162,571 | private void taskProperty ( RESTRequest request , RESTResponse response ) { String taskID = RESTHelper . getRequiredParam ( request , APIConstants . PARAM_TASK_ID ) ; String property = RESTHelper . getRequiredParam ( request , APIConstants . PARAM_PROPERTY ) ; String taskPropertyText = getMultipleRoutingHelper ( ) . getTaskProperty ( taskID , property ) ; OutputHelper . writeTextOutput ( response , taskPropertyText ) ; } | Returns the value of the property . An IllegalArgument exception is thrown if the value is not an instance of java . lang . String . | 111 | 28 |
162,572 | public static DERUTF8String getInstance ( Object obj ) { if ( obj == null || obj instanceof DERUTF8String ) { return ( DERUTF8String ) obj ; } if ( obj instanceof ASN1OctetString ) { return new DERUTF8String ( ( ( ASN1OctetString ) obj ) . getOctets ( ) ) ; } if ( obj instanceof ASN1TaggedObject ) { return getInstance ( ( ( ASN1TaggedObject ) obj ) . getObject ( ) ) ; } throw new IllegalArgumentException ( "illegal object in getInstance: " + obj . getClass ( ) . getName ( ) ) ; } | return an UTF8 string from the passed in object . | 148 | 11 |
162,573 | public static JsMessagingEngine [ ] registerMessagingEngineListener ( final SibRaMessagingEngineListener listener , final String busName ) { final String methodName = "registerMessagingEngineListener" ; if ( TRACE . isEntryEnabled ( ) ) { SibTr . entry ( TRACE , methodName , new Object [ ] { listener , busName } ) ; } final Set activeMessagingEngines = new HashSet ( ) ; /* * Take lock on active messaging engines to ensure that the activation * of a messaging engine is reported once and once only either in the * array returned from this method or by notification to the listener. */ synchronized ( ACTIVE_MESSAGING_ENGINES ) { synchronized ( MESSAGING_ENGINE_LISTENERS ) { // Add listener to map Set listeners = ( Set ) MESSAGING_ENGINE_LISTENERS . get ( busName ) ; if ( listeners == null ) { listeners = new HashSet ( ) ; MESSAGING_ENGINE_LISTENERS . put ( busName , listeners ) ; } listeners . add ( listener ) ; } if ( busName == null ) { // Add all of the currently active messaging engines for ( final Iterator iterator = ACTIVE_MESSAGING_ENGINES . values ( ) . iterator ( ) ; iterator . hasNext ( ) ; ) { final Set messagingEngines = ( Set ) iterator . next ( ) ; activeMessagingEngines . addAll ( messagingEngines ) ; } } else { // Add active messaging engines for the given bus if any final Set messagingEngines = ( Set ) ACTIVE_MESSAGING_ENGINES . get ( busName ) ; if ( messagingEngines != null ) { activeMessagingEngines . addAll ( messagingEngines ) ; } } } final JsMessagingEngine [ ] result = ( JsMessagingEngine [ ] ) activeMessagingEngines . toArray ( new JsMessagingEngine [ activeMessagingEngines . size ( ) ] ) ; if ( TRACE . isEntryEnabled ( ) ) { SibTr . exit ( TRACE , methodName , result ) ; } return result ; } | Registers a listener for active messaging engines on a bus . | 474 | 12 |
162,574 | public static void deregisterMessagingEngineListener ( final SibRaMessagingEngineListener listener , final String busName ) { final String methodName = "deregisterMessagingEngineListener" ; if ( TRACE . isEntryEnabled ( ) ) { SibTr . entry ( TRACE , methodName , new Object [ ] { listener , busName } ) ; } synchronized ( MESSAGING_ENGINE_LISTENERS ) { final Set listeners = ( Set ) MESSAGING_ENGINE_LISTENERS . get ( busName ) ; if ( listeners != null ) { listeners . remove ( listener ) ; if ( listeners . isEmpty ( ) ) { MESSAGING_ENGINE_LISTENERS . remove ( busName ) ; } } } if ( TRACE . isEntryEnabled ( ) ) { SibTr . exit ( TRACE , methodName ) ; } } | Deregisters a listener for active messaging engines on a bus . | 194 | 14 |
162,575 | public static JsMessagingEngine [ ] getMessagingEngines ( final String busName ) { final String methodName = "getMessagingEngines" ; if ( TRACE . isEntryEnabled ( ) ) { SibTr . entry ( TRACE , methodName , busName ) ; } final JsMessagingEngine [ ] result ; synchronized ( MESSAGING_ENGINES ) { // Do we have any messaging engines for the given bus? final Set messagingEngines = ( Set ) MESSAGING_ENGINES . get ( busName ) ; if ( messagingEngines == null ) { // If not, return an empty array result = new JsMessagingEngine [ 0 ] ; } else { // If we do, convert the set to an array result = ( JsMessagingEngine [ ] ) messagingEngines . toArray ( new JsMessagingEngine [ messagingEngines . size ( ) ] ) ; } } if ( TRACE . isEntryEnabled ( ) ) { SibTr . exit ( TRACE , methodName , result ) ; } return result ; } | Returns an array of initialized messaging engines for the given bus . If there are none an empty array is returned . | 235 | 22 |
162,576 | public void engineReloaded ( Object objectSent ) { final JsMessagingEngine engine = ( JsMessagingEngine ) objectSent ; final String methodName = "engineReloaded" ; if ( TRACE . isEntryEnabled ( ) ) { SibTr . entry ( this , TRACE , methodName , engine ) ; } RELOADING_MESSAGING_ENGINES . remove ( engine . getUuid ( ) . toString ( ) ) ; // Get listeners to notify final Set listeners = getListeners ( engine . getBusName ( ) ) ; // Notify listeners for ( final Iterator iterator = listeners . iterator ( ) ; iterator . hasNext ( ) ; ) { final SibRaMessagingEngineListener listener = ( SibRaMessagingEngineListener ) iterator . next ( ) ; listener . messagingEngineReloaded ( engine ) ; } if ( TRACE . isEntryEnabled ( ) ) { SibTr . exit ( this , TRACE , methodName ) ; } } | lohith liberty change | 210 | 5 |
162,577 | private static Set getListeners ( final String busName ) { final String methodName = "getListeners" ; if ( TRACE . isEntryEnabled ( ) ) { SibTr . entry ( TRACE , methodName , busName ) ; } final Set listeners = new HashSet ( ) ; synchronized ( MESSAGING_ENGINE_LISTENERS ) { // Get listeners for the particular bus final Set busListeners = ( Set ) MESSAGING_ENGINE_LISTENERS . get ( busName ) ; if ( busListeners != null ) { listeners . addAll ( busListeners ) ; } // Get listeners for all busses final Set noBusListeners = ( Set ) MESSAGING_ENGINE_LISTENERS . get ( null ) ; if ( noBusListeners != null ) { listeners . addAll ( noBusListeners ) ; } } if ( TRACE . isEntryEnabled ( ) ) { SibTr . exit ( TRACE , methodName , listeners ) ; } return listeners ; } | Returns the set of listeners for the given bus . | 225 | 10 |
162,578 | private static boolean isTruePartitionOfTopLevelStep ( Step step ) { Partition partition = step . getPartition ( ) ; if ( partition . getMapper ( ) != null ) { if ( logger . isLoggable ( Level . FINER ) ) { logger . logp ( Level . FINER , CLASSNAME , "validatePartition" , "Found partitioned step with mapper" , step ) ; } return true ; } else if ( partition . getPlan ( ) != null ) { if ( partition . getPlan ( ) . getPartitions ( ) != null ) { if ( logger . isLoggable ( Level . FINER ) ) { logger . logp ( Level . FINER , CLASSNAME , "validatePartition" , "Found partitioned step with plan" , step ) ; } return true ; } else { if ( logger . isLoggable ( Level . FINER ) ) { logger . logp ( Level . FINER , CLASSNAME , "validatePartition" , "Found plan with partitions stripped out. Must be a partition on the partition work unit thread" , step ) ; } return false ; } } else { throw new IllegalArgumentException ( "Partition does not contain either a mapper or a plan. Aborting." ) ; } } | Need to perform this check because of the way we manipulate the model in building our subjob for the partition . | 276 | 22 |
162,579 | protected ClassConfigData processClassConfiguration ( final InputStream inputStream ) throws IOException { if ( introspectAnnotations == false ) { return new ClassConfigData ( inputStream ) ; } ClassReader cr = new ClassReader ( inputStream ) ; ClassWriter cw = new ClassWriter ( cr , 0 ) ; // Don't compute anything - read only mode TraceConfigClassVisitor cv = new TraceConfigClassVisitor ( cw ) ; cr . accept ( cv , 0 ) ; ClassInfo classInfo = cv . getClassInfo ( ) ; InputStream classInputStream = new ByteArrayInputStream ( cw . toByteArray ( ) ) ; return new ClassConfigData ( classInputStream , classInfo ) ; } | Introspect configuration information from the class in the provided InputStream . | 154 | 14 |
162,580 | protected ClassInfo mergeClassConfigInfo ( ClassInfo classInfo ) { // Update introspected class information from introspected package PackageInfo packageInfo = configFileParser . getPackageInfo ( classInfo . getInternalPackageName ( ) ) ; if ( packageInfo == null ) { packageInfo = getPackageInfo ( classInfo . getInternalPackageName ( ) ) ; } classInfo . updateDefaultValuesFromPackageInfo ( packageInfo ) ; // Override introspected class information from configuration document ClassInfo ci = configFileParser . getClassInfo ( classInfo . getInternalClassName ( ) ) ; if ( ci != null ) { classInfo . overrideValuesFromExplicitClassInfo ( ci ) ; } return classInfo ; } | Attempt to normalize the various levels of configuration information prior to instrumenting a class . | 155 | 17 |
162,581 | private static void printUsageMessage ( ) { System . out . println ( "Description:" ) ; System . out . println ( " StaticTraceInstrumentation can modify classes" ) ; System . out . println ( " in place to add calls to a trace framework that will" ) ; System . out . println ( " delegate to JSR47 logging or WebSphere Tr." ) ; System . out . println ( "" ) ; System . out . println ( "Required arguments:" ) ; System . out . println ( " The paths to one or more binary classes, jars, or" ) ; System . out . println ( " directories to scan for classes and jars are required" ) ; System . out . println ( " parameters." ) ; System . out . println ( "" ) ; System . out . println ( " Class files must have a .class extension." ) ; System . out . println ( " Jar files must have a .jar or a .zip extension." ) ; System . out . println ( " Directories are recursively scanned for .jar, .zip, and" ) ; System . out . println ( " .class files to instrument." ) ; } | Gentle usage message that needs to be written . | 243 | 10 |
162,582 | public static LibertyVersionRange valueOf ( String versionRangeString ) { if ( versionRangeString == null ) { return null ; } Matcher versionRangeMatcher = VERSION_RANGE_PATTERN . matcher ( versionRangeString ) ; if ( versionRangeMatcher . matches ( ) ) { // Have a min and max so parse both LibertyVersion minVersion = LibertyVersion . valueOf ( versionRangeMatcher . group ( 1 ) ) ; LibertyVersion maxVersion = LibertyVersion . valueOf ( versionRangeMatcher . group ( 2 ) ) ; // Make sure both were valid versions if ( minVersion != null && maxVersion != null ) { return new LibertyVersionRange ( minVersion , maxVersion ) ; } else { return null ; } } else { // It's not a range so see if it's a single version LibertyVersion minVersion = LibertyVersion . valueOf ( versionRangeString ) ; if ( minVersion != null ) { return new LibertyVersionRange ( minVersion , null ) ; } else { return null ; } } } | Attempts to parse the supplied version range string into a Liberty version range containing just numbers . If it fails to do so it will return null . | 219 | 28 |
162,583 | protected void detach ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "detach" ) ; // Cleanly dispose of the getCursor getCursor . finished ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "detach" ) ; } | Detach processing for this filter | 94 | 6 |
162,584 | protected void discard ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "discard" ) ; // Discard any old cursor if ( getCursor != null ) { getCursor . finished ( ) ; getCursor = null ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "discard" ) ; } | Discard processing for this filter | 107 | 6 |
162,585 | @ Override public void registerInterceptors ( EjbDescriptor < ? > ejbDescriptor , InterceptorBindings interceptorBindings ) { if ( interceptorBindings != null ) { final Collection < Interceptor < ? > > interceptors = interceptorBindings . getAllInterceptors ( ) ; if ( interceptors != null ) { for ( Interceptor < ? > interceptor : interceptors ) { final Set < Annotation > annotations = interceptor . getInterceptorBindings ( ) ; if ( annotations != null ) { for ( Annotation annotation : annotations ) { if ( Transactional . class . equals ( annotation . annotationType ( ) ) ) { // An NPE if ejbDescriptor is null will work just fine too throw new IllegalStateException ( Tr . formatMessage ( tc , "transactional.annotation.on.ejb.CWOWB2000E" , annotation . toString ( ) , ejbDescriptor . getEjbName ( ) ) ) ; } } } } EjbDescriptor < ? > descriptor = ejbDescriptor ; WebSphereEjbDescriptor < ? > webSphereEjbDescriptor = findWebSphereEjbDescriptor ( descriptor ) ; J2EEName ejbJ2EEName = webSphereEjbDescriptor . getEjbJ2EEName ( ) ; interceptorRegistry . registerInterceptors ( ejbJ2EEName , interceptorBindings ) ; } } } | Throw an exception if an interceptor for Transactional is registered | 341 | 13 |
162,586 | protected void updateSubjectWithTemporarySubjectContents ( ) { subject . getPrincipals ( ) . addAll ( temporarySubject . getPrincipals ( ) ) ; subject . getPublicCredentials ( ) . addAll ( temporarySubject . getPublicCredentials ( ) ) ; subject . getPrivateCredentials ( ) . addAll ( temporarySubject . getPrivateCredentials ( ) ) ; } | Sets the subject with the temporary subject contents that was not set already from the shared state . | 86 | 19 |
162,587 | @ Override public int size ( boolean includeDiskCache ) { int mappings = 0 ; mappings = cache . getNumberCacheEntries ( ) ; if ( includeDiskCache ) { if ( cache instanceof CacheProviderWrapper ) { CacheProviderWrapper cpw = ( CacheProviderWrapper ) cache ; if ( cpw . featureSupport . isDiskCacheSupported ( ) ) mappings = mappings + cache . getIdsSizeDisk ( ) ; } else { mappings = mappings + cache . getIdsSizeDisk ( ) ; } } return mappings ; } | Returns number of key - value mappings in this map . | 122 | 12 |
162,588 | @ Override public void addAlias ( Object key , Object [ ] aliasArray ) { final String methodName = "addAlias(key, aliasArray)" ; functionNotAvailable ( methodName ) ; } | Adds one or more aliases for the given key in the cache s mapping table . If the alias is already associated with another key it will be changed to associate with the new key . | 42 | 36 |
162,589 | @ Override public void invalidate ( Object key , boolean wait , boolean checkPreInvalidationListener ) { final String methodName = "invalidate(key, wait, checkPreInvalidationListener)" ; functionNotAvailable ( methodName ) ; } | invalidate - invalidates the given key . If the key is for a specific cache entry then only that object is invalidated . If the key is for a dependency id then all objects that share that dependency id will be invalidated . | 52 | 48 |
162,590 | public void setWsLogHandler ( String id , WsLogHandler ref ) { if ( id != null && ref != null ) { //There can be many Reader locks, but only one writer lock. //This ReaderWriter lock is needed to avoid duplicate messages when the class is passing on EarlyBuffer messages to the new WsLogHandler. RERWLOCK . writeLock ( ) . lock ( ) ; try { wsLogHandlerServices . put ( id , ref ) ; /* * Route prev messages to the new LogHandler. * * This is primarily for solving the problem during server init where the WsMessageRouterImpl * is registered *after* we've already issued some early startup messages. We cache * these early messages in the "earlierMessages" queue in BaseTraceService, which then * passes them to WsMessageRouterImpl once it's registered. */ if ( earlierMessages == null ) { return ; } for ( RoutedMessage earlierMessage : earlierMessages . toArray ( new RoutedMessage [ earlierMessages . size ( ) ] ) ) { if ( shouldRouteMessageToLogHandler ( earlierMessage , id ) ) { routeTo ( earlierMessage , id ) ; } } } finally { RERWLOCK . writeLock ( ) . unlock ( ) ; } } } | Add the WsLogHandler ref . 1 or more LogHandlers may be set . | 274 | 18 |
162,591 | public long getByteBufferAddress ( ByteBuffer byteBuffer ) { /* * This only works for DIRECT byte buffers. Direct ByteBuffers have a field * called "address" which * holds the physical address of the start of the buffer contents in native * memory. * This method obtains the value of the address field through reflection. */ if ( ! byteBuffer . isDirect ( ) ) { throw new IllegalArgumentException ( "The specified byte buffer is not direct" ) ; } try { return svAddrField . getLong ( byteBuffer ) ; } catch ( IllegalAccessException exception ) { throw new RuntimeException ( exception . getMessage ( ) ) ; } } | Get the native address for the specified DirectByteBuffer | 138 | 10 |
162,592 | public long getSocketChannelHandle ( SocketChannel socketChannel ) { StartPrivilegedThread privThread = new StartPrivilegedThread ( socketChannel ) ; return AccessController . doPrivileged ( privThread ) ; } | Get the socket channel handle . | 43 | 6 |
162,593 | public void cleanThreadLocals ( Thread thread ) { try { svThreadLocalsField . set ( thread , null ) ; } catch ( IllegalAccessException e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "Unable to clear java.lang.ThreadLocals: " , e ) ; } } | Clean up the thread locals for the specified Thread . | 82 | 10 |
162,594 | private boolean hasConfigChanged ( Document newConfig ) { NodeList list = newConfig . getElementsByTagName ( "*" ) ; int currentHash = nodeListHashValue ( list ) ; // Either this is the first time checking the config or there has been some change if ( this . previousConfigHash == null || currentHash != this . previousConfigHash ) { this . previousConfigHash = currentHash ; return true ; } // No config changes else { return false ; } } | Check to see if the current config has the same information as the previously written config . If this config has no new information return false . | 102 | 27 |
162,595 | @ Override public URLConnection openConnection ( URL url ) throws IOException { String path = url . getPath ( ) ; int resourceDelimiterIndex = path . indexOf ( "!/" ) ; URLConnection conn ; if ( resourceDelimiterIndex == - 1 ) { // The "jar" protocol requires that the path contain an entry path. // For backwards compatibility, we do not. Instead, we just // open a connection to the underlying URL. conn = Utils . newURL ( path ) . openConnection ( ) ; } else { // First strip the resource name out of the path String urlString = ParserUtils . decode ( path . substring ( 0 , resourceDelimiterIndex ) ) ; // Note that we strip off the leading "/" because ZipFile.getEntry does // not expect it to be present. String entry = ParserUtils . decode ( path . substring ( resourceDelimiterIndex + 2 ) ) ; // Since the URL we were passed may reference a file in a remote file system with // a UNC based name (\\Myhost\Mypath), we must take care to construct a new "host agnostic" // URL so that when we call getPath() on it we get the whole path, irregardless of whether // the resource is on a local or a remote file system. We will also now validate // our urlString has the proper "file" protocol prefix. URL jarURL = constructUNCTolerantURL ( "file" , urlString ) ; conn = new WSJarURLConnectionImpl ( url , jarURL . getPath ( ) , entry , zipCache ) ; } return conn ; } | begin 408408 . 2 | 347 | 5 |
162,596 | public ConsumerDispatcher createSubscriptionConsumerDispatcher ( ConsumerDispatcherState subState ) throws SIDiscriminatorSyntaxException , SISelectorSyntaxException , SIResourceException , SISelectorSyntaxException , SIDiscriminatorSyntaxException , SINonDurableSubscriptionMismatchException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createSubscriptionConsumerDispatcher" , subState ) ; ConsumerDispatcher cd = null ; boolean isNewCDcreated = false ; if ( subState . getSubscriberID ( ) == null ) { //this is non-durable non shared scenario. i.e subscriber id is null. Then go ahead and create //consumer dispatcher and subscription item stream. cd = createSubscriptionItemStreamAndConsumerDispatcher ( subState , false ) ; } else { //this is non-durable shared scenario. //Check whether already subscriber present or not in hashamp cd = ( ConsumerDispatcher ) _destinationManager . getNondurableSharedSubscriptions ( ) . get ( subState . getSubscriberID ( ) ) ; if ( cd == null ) { //consumer dispatcher is null.. means this is first consumer trying to create subscriber. //Go ahead and create consumer dispatcher and Subscription item stream. //we do not need to check for any flags like cloned because the call is from JMS2.0 explicitly //asking for subscriber to be shared. //_consumerDispatchersNonDurable is needed as the subscription creation has to be atomic synchronized ( _destinationManager . getNondurableSharedSubscriptions ( ) ) { // this lock is too high level.. has to be further granularized. //again try to get cd for a given consumer as another thread might have created it first i.e got lock first after cd=null cd = ( ConsumerDispatcher ) _destinationManager . getNondurableSharedSubscriptions ( ) . get ( subState . getSubscriberID ( ) ) ; if ( cd == null ) { cd = createSubscriptionItemStreamAndConsumerDispatcher ( subState , true ) ; isNewCDcreated = true ; } } } } //check whether this is non-durable shared consumer and CD is prior created by //another consumer.. this consumer supposed to reuse it. if ( ! isNewCDcreated && ( subState . getSubscriberID ( ) != null ) ) { //check whether it is same topic and having topic selectors. if ( ! cd . getConsumerDispatcherState ( ) . equals ( subState ) ) { // Found consumer dispatcher but only the IDs match, therefore cannot connect if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createSubscriptionConsumerDispatcher" , subState ) ; throw new SINonDurableSubscriptionMismatchException ( nls . getFormattedMessage ( "SUBSCRIPTION_ALREADY_EXISTS_ERROR_CWSIP0143" , new Object [ ] { subState . getSubscriberID ( ) , _messageProcessor . getMessagingEngineName ( ) } , null ) ) ; } } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "createSubscriptionConsumerDispatcher" , cd ) ; return cd ; } | however nobody is calling this thru AbstractAliasDestinationHandler in Liberty . | 758 | 15 |
162,597 | public SubscriptionIndex getSubscriptionIndex ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , "getSubscriptionIndex" ) ; SibTr . exit ( tc , "getSubscriptionIndex" , _subscriptionIndex ) ; } return _subscriptionIndex ; } | Retrieve the subscription index for this destination . | 78 | 9 |
162,598 | public MessageItem retrieveMessageFromItemStream ( long msgStoreID ) throws SIResourceException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "retrieveMessageFromItemStream" , new Long ( msgStoreID ) ) ; MessageItem msgItem = null ; try { msgItem = ( MessageItem ) _pubsubMessageItemStream . findById ( msgStoreID ) ; } catch ( MessageStoreException e ) { // FFDC FFDCFilter . processException ( e , "com.ibm.ws.sib.processor.impl.destination.PubSubRealization.retrieveMessageFromItemStream" , "1:3797:1.35.2.4" , this ) ; SibTr . exception ( tc , e ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "retrieveMessageFromItemStream" , e ) ; throw new SIResourceException ( e ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "retrieveMessageFromItemStream" , msgItem ) ; return msgItem ; } | Retrieve the message from the non - persistent ItemStream | 280 | 11 |
162,599 | private void traceJndiBegin ( String methodname , Object ... objs ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { String providerURL = "UNKNOWN" ; try { providerURL = ( String ) getEnvironment ( ) . get ( Context . PROVIDER_URL ) ; } catch ( NamingException ne ) { /* Ignore. */ } Tr . debug ( tc , JNDI_CALL + methodname + " [" + providerURL + "]" , objs ) ; } } | Trace a message with JNDI_CALL that includes the parameters sent to the JNDI call . | 117 | 23 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.