idx
int64
0
165k
question
stringlengths
73
4.15k
target
stringlengths
5
918
len_question
int64
21
890
len_target
int64
3
255
163,100
public MPConnection getOrCreateNewMPConnection ( SIBUuid8 remoteUuid , MEConnection conn ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "getOrCreateNewMPConnection" , new Object [ ] { remoteUuid , conn } ) ; MPConnection mpConn ; synchronized ( _mpConnectionsByMEConn...
Get a MPConnection from the cache and if there isn t one create a new one and put it in the cache .
312
24
163,101
public MPConnection removeConnection ( MEConnection conn ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "removeConnection" , new Object [ ] { conn } ) ; MPConnection mpConn ; synchronized ( _mpConnectionsByMEConnection ) { //remove the MPConnection from the 'by MECon...
remove a MPConnection from the cache
199
7
163,102
public void error ( MEConnection conn , Throwable ex ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "error" , new Object [ ] { this , conn , ex } ) ; // This one goes straight to the CEL _commsErrorListener . error ( conn , ex ) ; if ( TraceComponent . isAnyTracingEn...
Indicates an error has occurred on a connection .
119
10
163,103
public void changeConnection ( MEConnection downConn , MEConnection upConn ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "changeConnection" , new Object [ ] { this , downConn , upConn } ) ; if ( downConn != null ) { //remove the connection which has gone down remove...
Indiciates a failed connection a newly created connection or a connection swap . If upConn is null then connection downConn has been removed from the system . If downConn is null then connection upConn has been added to the system . Otherwise downConn has been removed and replaced by upConn .
140
59
163,104
public void sendToMe ( SIBUuid8 targetME , int priority , AbstractMessage aMessage ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "sendToMe" , new Object [ ] { aMessage , Integer . valueOf ( priority ) , targetME } ) ; // find an appropriate MPConnection MPConnection...
Send a ControlMessage to one specific ME
279
8
163,105
public void sendDownTree ( SIBUuid8 [ ] targets , int priority , AbstractMessage cMsg ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "sendDownTree" , new Object [ ] { this , cMsg , Integer . valueOf ( priority ) , targets } ) ; // Select a set of connections, then an...
Send a control message to a list of MEs
494
10
163,106
public boolean isMEReachable ( SIBUuid8 meUuid ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "isMEReachable" , new Object [ ] { this , meUuid } ) ; boolean result = ( findMPConnection ( meUuid ) != null ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEnt...
Test whether or not a particular ME is reachable .
131
11
163,107
public boolean isCompatibleME ( SIBUuid8 meUuid , ProtocolVersion version ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "isCompatibleME" , new Object [ ] { meUuid } ) ; boolean result = false ; MPConnection conn = findMPConnection ( meUuid ) ; if ( conn != null ) { ...
Test whether or not a particular ME is of a version compatible with this one .
190
16
163,108
public void forceConnect ( SIBUuid8 meUuid ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "forceConnect" , meUuid ) ; if ( _routingManager != null ) _routingManager . connectToME ( meUuid ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) ...
Can potentially block for up to 5 seconds
113
8
163,109
private List < SecurityConstraint > createSecurityConstraints ( SecurityMetadata securityMetadataFromDD , ServletSecurityElement servletSecurity , Collection < String > urlPatterns ) { List < SecurityConstraint > securityConstraints = new ArrayList < SecurityConstraint > ( ) ; securityConstraints . add ( getConstraintF...
Constructs a list of SecurityConstraint objects from the given ServletSecurityElement and list of URL patterns .
135
23
163,110
private SecurityConstraint getConstraintFromHttpElement ( SecurityMetadata securityMetadataFromDD , Collection < String > urlPatterns , ServletSecurityElement servletSecurity ) { List < String > omissionMethods = new ArrayList < String > ( ) ; if ( ! servletSecurity . getMethodNames ( ) . isEmpty ( ) ) { omissionMethod...
Gets the security constraint from the HttpConstraint element defined in the given ServletSecurityElement with the given list of url patterns .
215
29
163,111
private List < SecurityConstraint > getConstraintsFromHttpMethodElement ( SecurityMetadata securityMetadataFromDD , Collection < String > urlPatterns , ServletSecurityElement servletSecurity ) { List < SecurityConstraint > securityConstraints = new ArrayList < SecurityConstraint > ( ) ; Collection < HttpMethodConstrain...
Gets the security constraints from the HttpMethodConstraint elements defined in the given ServletSecurityElement with the given list of url patterns .
281
30
163,112
private SecurityConstraint createSecurityConstraint ( SecurityMetadata securityMetadataFromDD , List < WebResourceCollection > webResourceCollections , HttpConstraintElement httpConstraint , boolean fromHttpConstraint ) { List < String > roles = createRoles ( httpConstraint ) ; List < String > allRoles = securityMetada...
Creates a security constraint from the given web resource collections url patterns and HttpConstraint element .
199
21
163,113
private boolean isSSLRequired ( HttpConstraintElement httpConstraint ) { boolean sslRequired = false ; TransportGuarantee transportGuarantee = httpConstraint . getTransportGuarantee ( ) ; if ( transportGuarantee != TransportGuarantee . NONE ) { sslRequired = true ; } return sslRequired ; }
Determines if SSL is required for the given HTTP constraint .
77
13
163,114
private boolean isAccessPrecluded ( HttpConstraintElement httpConstraint ) { boolean accessPrecluded = false ; String [ ] roles = httpConstraint . getRolesAllowed ( ) ; if ( roles == null || roles . length == 0 ) { if ( EmptyRoleSemantic . DENY == httpConstraint . getEmptyRoleSemantic ( ) ) accessPrecluded = true ; } r...
Determines if access is precluded for the given HTTP constraint .
93
14
163,115
private boolean isAccessUncovered ( HttpConstraintElement httpConstraint ) { boolean accessUncovered = false ; String [ ] roles = httpConstraint . getRolesAllowed ( ) ; if ( roles == null || roles . length == 0 ) { if ( EmptyRoleSemantic . PERMIT == httpConstraint . getEmptyRoleSemantic ( ) ) accessUncovered = true ; }...
Determines if access is uncovered for the given HTTP constraint .
93
13
163,116
private void setModuleSecurityMetaData ( Container moduleContainer , SecurityMetadata securityMetadataFromDD ) { try { WebModuleMetaData wmmd = moduleContainer . adapt ( WebModuleMetaData . class ) ; wmmd . setSecurityMetaData ( securityMetadataFromDD ) ; } catch ( UnableToAdaptException e ) { if ( TraceComponent . isA...
Sets the given security metadata on the deployed module s web module metadata for retrieval later .
117
18
163,117
@ Override public void release ( ) { _applicationFactory = null ; _currentFacesContext = null ; if ( _defaultExternalContext != null ) { _defaultExternalContext . release ( ) ; _defaultExternalContext = null ; } _application = null ; _externalContext = null ; _viewRoot = null ; _renderKitFactory = null ; _elContext = n...
Releases the instance fields on FacesContextImplBase . Must be called by sub - classes when overriding it!
189
22
163,118
private void findMarkers ( String url , String target ) { final char [ ] data = url . toCharArray ( ) ; // we only care about the last path segment so find that first int i = 0 ; int lastSlash = 0 ; for ( ; i < data . length ; i ++ ) { if ( ' ' == data [ i ] ) { lastSlash = i ; } else if ( ' ' == data [ i ] ) { this . ...
Scan the data for various markers including the provided session id target .
283
13
163,119
private void formLogout ( HttpServletRequest req , HttpServletResponse res ) throws ServletException , IOException { try { // if we have a valid custom logout page, set an attribute so SAML SLO knows about it. String exitPage = getValidLogoutExitPage ( req ) ; if ( exitPage != null ) { req . setAttribute ( "FormLogoutE...
Log the user out by clearing the LTPA cookie if LTPA and SSO are enabled . Must also invalidate the http session since it contains user id and password . Finally if the user specified an exit page with a form parameter of logoutExitPage redirect to the specified page .
589
57
163,120
private String getValidLogoutExitPage ( HttpServletRequest req ) { boolean valid = false ; String exitPage = req . getParameter ( "logoutExitPage" ) ; if ( exitPage != null && exitPage . length ( ) != 0 ) { boolean logoutExitURLaccepted = verifyLogoutURL ( req , exitPage ) ; if ( logoutExitURLaccepted ) { exitPage = re...
return a logoutExitPage string suitable for redirection if one is defined and valid . else return null
127
21
163,121
private void useDefaultLogoutMsg ( HttpServletResponse res ) { try { PrintWriter pw = res . getWriter ( ) ; pw . println ( DEFAULT_LOGOUT_MSG ) ; } catch ( IOException e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , e . getMessage ( ) ) ; } if ( TraceComponent . isAnyT...
Display the default logout message .
127
7
163,122
private boolean isRedirectHostTheSameAsLocalHost ( String exitPage , String logoutURLhost , String hostFullName , String shortName , String ipAddress ) { String localHostIpAddress = "127.0.0.1" ; boolean acceptURL = false ; if ( logoutURLhost . equalsIgnoreCase ( "localhost" ) || logoutURLhost . equals ( localHostIpAdd...
Check the logout URL host name with various combination of shortName full name and ipAddress .
204
19
163,123
private boolean isRequestURLEqualsExitPageHost ( HttpServletRequest req , String logoutURLhost ) { boolean acceptURL = false ; try { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "about to attempt matching the logout exit url with the domain of the request." ) ; StringBuff...
Attempt to match the request URL s host with the URL for the exitPage this might be the case of a proxy URL that is used in the request .
288
31
163,124
public synchronized boolean makeExclusiveDependency ( int depStreamID , int exclusiveParentStreamID ) { Node depNode = root . findNode ( depStreamID ) ; Node exclusiveParentNode = root . findNode ( exclusiveParentStreamID ) ; return makeExclusiveDependency ( depNode , exclusiveParentNode ) ; }
Helper method to find the nodes given the stream IDs and then call the method that does the real work .
69
21
163,125
public synchronized boolean changeParent ( int depStreamID , int newPriority , int newParentStreamID , boolean exclusive ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "changeParent entry: depStreamID: " + depStreamID + " newParentStreamID: " + newParentStreamID + " e...
Implement the above spec functionality
858
6
163,126
private void populateTopics ( String [ ] topics ) { for ( String t : topics ) { // Clean up leading and trailing white space as appropriate t = t . trim ( ) ; // Ignore topics that start or end with a '/' if ( t . startsWith ( "/" ) || t . endsWith ( "/" ) || t . contains ( "//" ) || t . isEmpty ( ) ) { continue ; } //...
Parse the topic specifications into the appropriate lists .
182
10
163,127
private void checkTopicSubscribePermission ( String topic ) { SecurityManager sm = System . getSecurityManager ( ) ; if ( sm == null ) return ; sm . checkPermission ( new TopicPermission ( topic , SUBSCRIBE ) ) ; }
Check if the caller has permission to subscribe to events published to the specified topic .
54
16
163,128
void fireEvent ( ) { boolean useLock = ! isReentrant ( ) ; if ( useLock ) { lock . lock ( ) ; } EventImpl event = eventQueue . poll ( ) ; try { if ( event != null ) { fireEvent ( event ) ; } } finally { if ( useLock ) { lock . unlock ( ) ; } } }
Deliver this event to the next target handler pulled from the handlerQueue . If the handler is not reentrant the delivery will be serialized to prevent multiple threads entering the handler concurrently .
76
38
163,129
@ Override public Throwable getCause ( ) { if ( exceptions != null && exceptions . size ( ) > 0 ) return ( Throwable ) exceptions . get ( 0 ) ; else return null ; }
Returns the root cause exception .
42
6
163,130
public void addBootJars ( List < URL > urlList ) { addBootJars ( cache . getJarFiles ( kernelMf ) , urlList ) ; addBootJars ( cache . getJarFiles ( logProviderMf ) , urlList ) ; if ( osExtensionMf != null ) addBootJars ( cache . getJarFiles ( osExtensionMf ) , urlList ) ; }
Add any boot . jar resources specified by the kernel log provider or os extension definition files
89
17
163,131
private void addBootJars ( List < File > jarFiles , List < URL > urlList ) { for ( File jarFile : jarFiles ) { try { urlList . add ( jarFile . toURI ( ) . toURL ( ) ) ; } catch ( MalformedURLException e ) { // Unlikely: we're making URLs for files we know exist } } }
Given the list of files add the URL for each file to the list of URLs
81
16
163,132
public SIMessageHandle getMessageHandle ( ) { // If the transient is not set, build the handle from the values in the message and cache it. if ( cachedMessageHandle == null ) { byte [ ] b = ( byte [ ] ) jmo . getField ( JsHdrAccess . SYSTEMMESSAGESOURCEUUID ) ; if ( b != null ) { cachedMessageHandle = new JsMessageHand...
Get the message handle which uniquely identifies this message .
181
10
163,133
final void setProducerType ( ProducerType value ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "setProducerType" , value ) ; /* Get the int value of the ProducerType and set that into the field */ getHdr2 ( ) . setField ( JsHdr2Access . PRODUCERTYPE , value . ...
Set the value of the ProducerType field in the message header . This method is only used by message constructors so is not public final .
140
28
163,134
final void setJsMessageType ( MessageType value ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "setJsMessageType" , value ) ; /* Get the int value of the MessageType and set that into the field */ jmo . setField ( JsHdrAccess . MESSAGETYPE , value . toByte ( )...
Set the value of the JsMessageType in the message header . This method is only used by message constructors so is not public final .
136
29
163,135
public final void setGuaranteedRemoteGetPrevTick ( long value ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "setGuaranteedRemoteGetPrevTick" , Long . valueOf ( value ) ) ; getHdr2 ( ) . setLongField ( JsHdr2Access . GUARANTEEDREMOTEGET_SET_PREVTICK , value ) ...
Set the Guaranteed Delivery Remote Get Prev Tick value from the message .
150
14
163,136
final void setSubtype ( Byte value ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "setSubtype" , value ) ; jmo . setField ( JsHdrAccess . SUBTYPE , value ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , ...
Set the Byte field which indicates the subtype of the message .
107
13
163,137
void copyTransients ( JsHdrsImpl copy ) { copy . cachedMessageWaitTime = cachedMessageWaitTime ; copy . cachedReliability = cachedReliability ; copy . cachedPriority = cachedPriority ; copy . cachedMessageHandle = cachedMessageHandle ; copy . flags = flags ; copy . gotFlags = gotFlags ; }
Copies any interesting transient data into the given message copy .
71
12
163,138
synchronized final JsMsgPart getHdr2 ( ) { if ( hdr2 == null ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . debug ( this , tc , "getHdr2 will call getPart" ) ; hdr2 = jmo . getPart ( JsHdrAccess . HDR2 , JsHdr2Access . schema ) ; } return hdr2 ; }
Get the JsMsgPart which contains the JMF Message described by the JsHdr2 schema . Once obtained the value is cached and the cached value is returned until the cache is cleared .
103
40
163,139
synchronized final JsMsgPart getApi ( ) { if ( api == null ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . debug ( this , tc , "getApi will call getPart" ) ; api = jmo . getPart ( JsHdrAccess . API_DATA , JsApiAccess . schema ) ; } return api ; }
Get the JsMsgPart which contains the JMF Message described by the JsApi schema . Once obtained the value is cached and the cached value is returned until the cache is cleared .
95
39
163,140
synchronized final JsMsgPart getPayload ( JMFSchema schema ) { if ( payload == null ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . debug ( this , tc , "getPayload will call getPart" ) ; payload = jmo . getPayloadPart ( ) . getPart ( JsPayloadAccess . PAYLOAD_DATA , schema ) ; } r...
Get the JsMsgPart which contains the JMF Message described by the schema for the data field in the JsPayload Schema . Once obtained the value is cached and the cached value is returned until the cache is cleared .
102
47
163,141
synchronized final JsMsgPart getPayloadIfFluffed ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { if ( payload == null ) SibTr . debug ( this , tc , "getPayloadIfFluffed returning null" ) ; } return payload ; }
Get the JsMsgPart which contains the JMF Message described by the schema for the data field in the JsPayload Schema if it has already been fluffed up and cached . If the part is not already fluffed and cached just return null as the caller does NOT want to fluff it up .
72
64
163,142
@ Override synchronized final void clearPartCaches ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "clearPartCaches" ) ; hdr2 = api = payload = null ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "clear...
Clear the cached references to other message parts .
102
9
163,143
private final void setFlagValue ( byte flagBit , boolean value ) { if ( value ) { flags = ( byte ) ( getFlags ( ) | flagBit ) ; } else { flags = ( byte ) ( getFlags ( ) & ( ~ flagBit ) ) ; } }
Set the boolean value of one of the flags in the FLAGS field of th message .
58
19
163,144
public String getValue ( FaceletContext ctx ) { if ( ( this . capabilities & EL_LITERAL ) != 0 ) { return this . value ; } else { return ( String ) this . getObject ( ctx , String . class ) ; } }
If literal then return our value otherwise delegate to getObject passing String . class .
56
16
163,145
public Object getObject ( FaceletContext ctx , Class type ) { if ( ( this . capabilities & EL_LITERAL ) != 0 ) { if ( String . class . equals ( type ) ) { return this . value ; } else { try { return ctx . getExpressionFactory ( ) . coerceToType ( this . value , type ) ; } catch ( Exception e ) { throw new TagAttributeE...
If literal simply coerce our String literal value using an ExpressionFactory otherwise create a ValueExpression and evaluate it .
151
23
163,146
protected String stripFileSeparateAtTheEnd ( String path ) { return ( path != null && ( path . endsWith ( "/" ) || path . endsWith ( "\\" ) ) ) ? path . substring ( 0 , path . length ( ) - 1 ) : path ; }
remove separator at the end of userDir directory if exist
61
12
163,147
protected void renderId ( FacesContext context , UIComponent component ) throws IOException { if ( shouldRenderId ( context , component ) ) { String clientId = getClientId ( context , component ) ; context . getResponseWriter ( ) . writeAttribute ( HTML . ID_ATTR , clientId , JSFAttr . ID_ATTR ) ; } }
Renders the client ID as an id .
78
9
163,148
protected boolean shouldRenderId ( FacesContext context , UIComponent component ) { String id = component . getId ( ) ; // Otherwise, if ID isn't set, don't bother if ( id == null ) { return false ; } // ... or if the ID was generated, don't bother if ( id . startsWith ( UIViewRoot . UNIQUE_ID_PREFIX ) ) { return false...
Returns true if the component should render an ID . Components that deliver events should always return true .
94
19
163,149
static public String toUri ( Object o ) { if ( o == null ) { return null ; } String uri = o . toString ( ) ; if ( uri . startsWith ( "/" ) ) { // Treat two slashes as server-relative if ( uri . startsWith ( "//" ) ) { uri = uri . substring ( 1 ) ; } else { FacesContext fContext = FacesContext . getCurrentInstance ( ) ;...
Coerces an object into a URI accounting for JSF rules with initial slashes .
127
18
163,150
public ValueExpression resolveVariable ( String variable ) { ValueExpression ve = null ; try { if ( _vars != null ) { ve = ( ValueExpression ) _vars . get ( variable ) ; // Is this code in a block that wants to cache // the resulting expression(s) and variable has been resolved? if ( _trackResolveVariables && ve != nul...
First tries to resolve agains the inner Map then the wrapped ValueExpression .
148
16
163,151
@ Override public String [ ] introspectSelf ( ) { List < ? > nameValuePairs = Arrays . asList ( BEGIN_TRAN_FOR_SCROLLING_APIS , beginTranForResultSetScrollingAPIs , BEGIN_TRAN_FOR_VENDOR_APIS , beginTranForVendorAPIs , COMMIT_OR_ROLLBACK_ON_CLEANUP , commitOrRollbackOnCleanup , CONNECTION_SHARING , connectionSharing , ...
Returns information to log on first failure .
277
8
163,152
public final static ControlMessageType getControlMessageType ( Byte aValue ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . debug ( tc , "Value = " + aValue ) ; return set [ aValue . intValue ( ) ] ; }
Returns the corresponding ControlMessageType for a given integer . This method should NOT be called by any code outside the MFP component . It is only public so that it can be accessed by sub - packages .
67
41
163,153
public void updateDefinition ( ForeignBusDefinition foreignBusDefinition ) throws SIResourceException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "updateDefinition" , foreignBusDefinition ) ; ForeignDestinationDefault newForeignDefault = null ; // If sendAllowed has...
Dynamically update the foreignBusDefinition
555
8
163,154
public void updateSendAllowed ( boolean oldSendAllowed , boolean newSendAllowed ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "updateSendAllowed" , new Object [ ] { Boolean . valueOf ( oldSendAllowed ) , Boolean . valueOf ( newSendAllowed ) } ) ; if ( oldSendAllowed...
Update sendAllowed setting for this bus and any targetting Handlers .
170
15
163,155
public void updateVirtualLinkDefinition ( VirtualLinkDefinition newVirtualLinkDefinition ) throws SIIncorrectCallException , SIResourceException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "updateVirtualLinkDefinition" , new Object [ ] { newVirtualLinkDefinition } )...
Update VirtualLinkDefinition attributes such as inbound or outbound userid settings for this bus and any targetting Handlers .
542
25
163,156
public boolean checkDestinationAccess ( SecurityContext secContext , OperationType operation ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "checkDestinationAccess" , new Object [ ] { secContext , operation } ) ; boolean allow = false ; // This style of access check ...
Check permission to access a Destination
159
6
163,157
@ FFDCIgnore ( NullPointerException . class ) private void addEventToRingBuffer ( Object event ) { // Check again to see if the ringBuffer is null if ( ringBuffer != null ) { try { ringBuffer . add ( event ) ; } catch ( NullPointerException npe ) { // Nothing to do! Perhaps a Trace? } } }
Method to add events to the ringBufferthat and ignores a possible NPE with ringBuffer which is due to the removeHandler method call from this same class
77
31
163,158
public synchronized void addSyncHandler ( SynchronousHandler syncHandler ) { // Send messages from EMQ to synchronous handler when it subscribes to // receive messages if ( earlyMessageQueue != null && earlyMessageQueue . size ( ) != 0 && ! synchronousHandlerSet . contains ( syncHandler ) ) { for ( Object message : ear...
Add a synchronousHandler that will receive log events directly
177
11
163,159
public synchronized void removeSyncHandler ( SynchronousHandler syncHandler ) { Set < SynchronousHandler > synchronousHandlerSetCopy = new HashSet < SynchronousHandler > ( synchronousHandlerSet ) ; synchronousHandlerSetCopy . remove ( syncHandler ) ; Tr . event ( tc , "Removed Synchronous Handler: " + syncHandler . get...
Remove a synchronousHandler from receiving log events directly
93
10
163,160
public synchronized void removeHandler ( String handlerId ) { handlerEventMap . remove ( handlerId ) ; Tr . event ( tc , "Removed Asynchronous Handler: " + handlerId ) ; if ( handlerEventMap . isEmpty ( ) ) { ringBuffer = null ; Tr . event ( tc , "ringBuffer for this BufferManagerImpl has now been set to null" ) ; } }
Remove the given handlerId from this BufferManager
81
9
163,161
public static EJBSerializer instance ( ) { EJBSerializer theInstance ; synchronized ( CLASS_NAME ) { if ( cvInstance == null ) { try { cvInstance = ( EJBSerializer ) Class . forName ( IMPL_CLASS_NAME ) . newInstance ( ) ; } catch ( Throwable t ) { FFDCFilter . processException ( t , CLASS_NAME + ".cvInstance" , "46" ) ...
Returns singleton instance .
112
5
163,162
public void initializeAppCounters ( String appName ) { if ( StatsFactory . isPMIEnabled ( ) ) { synchronized ( this ) { appPmi = new WebAppModule ( appName , true ) ; // @539186C appPmiState = APP_PMI_WEB ; // @539186A } } }
This method initialize the module instance and register it .
73
10
163,163
protected List < AuthorizationValue > transform ( List < AuthorizationValue > input ) { if ( input == null ) { return null ; } List < AuthorizationValue > output = new ArrayList <> ( ) ; for ( AuthorizationValue value : input ) { AuthorizationValue v = new AuthorizationValue ( ) ; v . setKeyName ( value . getKeyName ( ...
Transform the swagger - model version of AuthorizationValue into a parser - specific one to avoid dependencies across extensions
114
21
163,164
static < T > T ensureNotNull ( String msg , T t ) throws ClassLoadingConfigurationException { ensure ( msg , t != null ) ; return t ; }
Check that the parameter is not null .
34
8
163,165
static < T > String join ( Iterable < T > elems , String delim ) { if ( elems == null ) return "" ; StringBuilder result = new StringBuilder ( ) ; for ( T elem : elems ) result . append ( elem ) . append ( delim ) ; if ( result . length ( ) > 0 ) result . setLength ( result . length ( ) - delim . length ( ) ) ; return ...
Join several objects into a string
98
6
163,166
static < T > Enumeration < T > compose ( Enumeration < T > e1 , Enumeration < T > e2 ) { // return the composite of e1 and e2, or whichever is non-empty return isEmpty ( e1 ) ? e2 : isEmpty ( e2 ) ? e1 : new CompositeEnumeration < T > ( e1 ) . add ( e2 ) ; }
Compose two enumerations into one .
89
8
163,167
public synchronized void add ( int requestId , ReceiveListener rl , SendListener s ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "add" , new Object [ ] { "" + requestId , rl , s } ) ; if ( containsId ( requestId ) ) { if ( TraceComponent . isAnyTracingEnabled...
Adds an entry to the request ID table using the specified request ID .
250
14
163,168
public synchronized SendListener getSendListener ( int requestId ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getSendListener" , "" + requestId ) ; if ( ! containsId ( requestId ) ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ...
Returns the semaphore assocaited with the specified request ID . The request ID must be present in the table otherwise a runtime exception is thrown .
246
30
163,169
public synchronized ReceiveListener getListener ( int requestId ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getListener" , "" + requestId ) ; if ( ! containsId ( requestId ) ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) deb...
Returns the receive listener associated with the specified request ID . The request ID must be present in the table otherwise a runtime exception will be thrown .
244
28
163,170
public synchronized boolean containsId ( int requestId ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "containsId" , "" + requestId ) ; testReqIdTableEntry . requestId = requestId ; boolean result = table . containsKey ( testReqIdTableEntry ) ; if ( TraceCompo...
Tests to see if the table contains a specified request ID .
129
13
163,171
public synchronized Iterator receiveListenerIterator ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "receiveListenerIterator" ) ; final LinkedList < ReceiveListener > linkedList = new LinkedList < ReceiveListener > ( ) ; final Iterator iterator = table . val...
Returns an iterator which iterates over receive listeners in the table .
198
13
163,172
public synchronized Iterator sendListenerIterator ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "sendListenerIterator" ) ; final LinkedList < SendListener > linkedList = new LinkedList < SendListener > ( ) ; final Iterator iterator = table . values ( ) . it...
Returns an iterator which iterates over the send listeners in the table .
194
14
163,173
protected List < String > getFileLocationsFromSubsystemContent ( String subsystemContent ) { String sc = subsystemContent + "," ; List < String > files = new ArrayList < String > ( ) ; boolean isFile = false ; String location = null ; int strLen = sc . length ( ) ; boolean quoted = false ; for ( int i = 0 , pos = 0 ; i...
returns the list of location attribute of which type is file in the given text of Subsystem - Content . the location may or may not be an absolute path . If there is not a mathing data returns empty List .
359
45
163,174
protected String getValue ( String str ) { int index = str . indexOf ( ' ' ) ; String value = null ; if ( index > 0 ) { value = str . substring ( index + 1 ) . trim ( ) ; if ( value . charAt ( 0 ) == ' ' ) { value = value . substring ( 1 , value . length ( ) - 1 ) ; } } return value ; }
returns the value of key = value pair . if the value is quoted the quotation characters are stripped .
87
21
163,175
protected String getFeatureSymbolicName ( Attributes attrs ) { String output = null ; if ( attrs != null ) { // get Subsystem-SymbolicName String value = attrs . getValue ( HDR_SUB_SYM_NAME ) ; if ( value != null ) { String [ ] parts = value . split ( ";" ) ; if ( parts . length > 0 ) { output = parts [ 0 ] . trim ( ) ...
returns the feature symbolic name from Attribute object .
103
11
163,176
protected String getFeatureName ( Attributes attrs ) { String output = null ; if ( attrs != null ) { // get IBM-ShortName first, String value = attrs . getValue ( HDR_SUB_SHORT_NAME ) ; if ( value != null ) { output = value . trim ( ) ; } else { // get Subsystem-SymbolicName output = getFeatureSymbolicName ( attrs ) ; ...
returns the feature name from Attribute object . if IBM - ShortName exists use this value otherwise use the symbolic name .
98
25
163,177
protected String getLocalizedString ( File featureManifest , String value ) { if ( value != null && value . startsWith ( "%" ) ) { ResourceBundle res = CustomUtils . getResourceBundle ( new File ( featureManifest . getParentFile ( ) , "l10n" ) , featureSymbolicName , Locale . getDefault ( ) ) ; if ( res != null ) { Str...
returns the localized string of specified value . the localization file supposes to be located the l10n directory of the location where the feature manifest file exists and the name of the resource file is feature symbolic name + _ + locale + . properties . prior to call this method featureSymbolicName field needs to b...
123
66
163,178
public ManagedObject injectAndPostConstruct ( final Object target ) throws InjectionException { final String METHOD_NAME = "injectAndPostConstruct" ; if ( TraceComponent . isAnyTracingEnabled ( ) && logger . isLoggable ( Level . FINE ) ) { logger . entering ( CLASS_NAME , METHOD_NAME , target ) ; } // PI30335: split in...
This method injects the target object then immediately performs PostConstruct operations
348
13
163,179
@ FFDCIgnore ( IOException . class ) public static Map < String , Object > parseExtensions ( Extension [ ] extensions ) { final Map < String , Object > map = new HashMap < String , Object > ( ) ; for ( Extension extension : extensions ) { final String name = extension . name ( ) ; final String key = name . length ( ) >...
Collects extensions .
155
4
163,180
protected String add_escapes ( String str ) { StringBuffer retval = new StringBuffer ( ) ; char ch ; for ( int i = 0 ; i < str . length ( ) ; i ++ ) { switch ( str . charAt ( i ) ) { case 0 : continue ; case ' ' : retval . append ( "\\b" ) ; continue ; case ' ' : retval . append ( "\\t" ) ; continue ; case ' ' : retval...
Used to convert raw characters to their escaped version when these raw version cannot be used as part of an ASCII string literal .
297
24
163,181
public void checkWritePermission ( TimedDirContext ctx ) throws OperationNotSupportedException { if ( ! iWriteToSecondary ) { String providerURL = getProviderURL ( ctx ) ; if ( ! getPrimaryURL ( ) . equalsIgnoreCase ( providerURL ) ) { String msg = Tr . formatMessage ( tc , WIMMessageKey . WRITE_TO_SECONDARY_SERVERS_NO...
Check whether we can write on the LDAP server the context is currently connected to . It is not permissible to write to a fail - over server if write to secondary is disabled .
143
36
163,182
@ FFDCIgnore ( NamingException . class ) private void closeContextPool ( List < TimedDirContext > contexts ) { final String METHODNAME = "closeContextPool" ; if ( contexts != null ) { if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , METHODNAME + " Context pool being closed by " + Thread . currentThread ( ) + ", Conte...
Close the context pool .
195
5
163,183
private void createContextPool ( Integer poolSize , String providerURL ) throws NamingException { final String METHODNAME = "createContextPool" ; /* * Validate provider URL */ if ( providerURL == null ) { providerURL = getPrimaryURL ( ) ; } /* * Default the pool size if one was not provided. */ if ( poolSize == null ) ...
Create a directory context pool of the specified size .
709
10
163,184
public DirContext createSubcontext ( String name , Attributes attrs ) throws OperationNotSupportedException , WIMSystemException , EntityAlreadyExistsException , EntityNotFoundException { final String METHODNAME = "createSubcontext" ; DirContext dirContext = null ; TimedDirContext ctx = getDirContext ( ) ; checkWritePe...
Creates and binds a new context along with associated attributes .
668
12
163,185
public void destroySubcontext ( String name ) throws EntityHasDescendantsException , EntityNotFoundException , WIMSystemException { TimedDirContext ctx = getDirContext ( ) ; // checkWritePermission(ctx); // TODO Why are we not checking permissions here? try { try { ctx . destroySubcontext ( new LdapName ( name ) ) ; } ...
Delete the given name from the LDAP tree .
395
10
163,186
private static String formatIPv6Addr ( String host ) { if ( host == null ) { return null ; } else { return ( new StringBuilder ( ) ) . append ( "[" ) . append ( host ) . append ( "]" ) . toString ( ) ; } }
Format the given address as an IPv6 Address .
60
10
163,187
@ SuppressWarnings ( "unchecked" ) private Hashtable < String , Object > getEnvironment ( int type , String startingURL ) { Hashtable < String , Object > env = new Hashtable < String , Object > ( iEnvironment ) ; List < String > urlList = ( List < String > ) env . remove ( ENVKEY_URL_LIST ) ; int numURLs = urlList . si...
Returns LDAP environment containing specified URL sequence .
247
9
163,188
@ SuppressWarnings ( "unchecked" ) @ Trivial private List < String > getEnvURLList ( ) { return ( List < String > ) iEnvironment . get ( ENVKEY_URL_LIST ) ; }
Helper method to get the configured list of URLs .
52
10
163,189
@ Trivial private String getNextURL ( String currentURL ) { List < String > urlList = getEnvURLList ( ) ; int urlIndex = getURLIndex ( currentURL , urlList ) ; return urlList . get ( ( urlIndex + 1 ) % urlList . size ( ) ) ; }
Returns the next URL after the specified URL .
68
9
163,190
@ Trivial @ FFDCIgnore ( NamingException . class ) private String getProviderURL ( TimedDirContext ctx ) { try { return ( String ) ctx . getEnvironment ( ) . get ( Context . PROVIDER_URL ) ; } catch ( NamingException e ) { if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "getProviderURL" , e . toString ( true ) ) ; }...
Get the provider URL from the given directory context .
103
10
163,191
private int getURLIndex ( String url , List < String > urlList ) { int urlIndex = 0 ; int numURLs = urlList . size ( ) ; // get URL index if ( url != null ) for ( int i = 0 ; i < numURLs ; i ++ ) if ( ( urlList . get ( i ) ) . equalsIgnoreCase ( url ) ) { urlIndex = i ; break ; } return urlIndex ; }
Returns URL index in the URL list .
95
8
163,192
private void handleBindStat ( long elapsedTime ) { String METHODNAME = "handleBindStat(long)" ; if ( elapsedTime < LDAP_CONNECT_TIMEOUT_TRACE ) { QUICK_LDAP_BIND . getAndIncrement ( ) ; } long now = System . currentTimeMillis ( ) ; /* * Print out at most every 30 minutes the latest number of "quick" binds */ if ( now -...
Track the count of quick binds . Dump the updated statistic to the log at most once every 30 seconds .
228
22
163,193
private static boolean isIPv6Addr ( String host ) { if ( host != null ) { if ( host . contains ( "[" ) && host . contains ( "]" ) ) host = host . substring ( host . indexOf ( "[" ) + 1 , host . indexOf ( "]" ) ) ; host = host . toLowerCase ( ) ; Pattern p1 = Pattern . compile ( "^(?:(?:(?:(?:[a-f0-9]{1,4}(?::[a-f0-9]{1...
Is the address an IPv6 Address .
575
8
163,194
public TimedDirContext reCreateDirContext ( TimedDirContext oldCtx , String errorMessage ) throws WIMSystemException { final String METHODNAME = "DirContext reCreateDirContext(String errorMessage)" ; if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , METHODNAME + " Communication exception occurs: " + errorMessage + " C...
Recreate a Directory context where the oldContext failed with the given error message .
541
17
163,195
@ FFDCIgnore ( NamingException . class ) public void releaseDirContext ( TimedDirContext ctx ) throws WIMSystemException { final String METHODNAME = "releaseDirContext" ; if ( iContextPoolEnabled ) { //Get the lock for the current domain synchronized ( iLock ) { // If the DirContextTTL is 0, no need to put it back to p...
Release the given directory context .
713
6
163,196
public void getTraceSummaryLine ( StringBuilder buff ) { // Need to trim the control message name, as many contain space padding buff . append ( getControlMessageType ( ) . toString ( ) . trim ( ) ) ; // Display the bit flags in hex form buff . append ( ":flags=0x" ) ; buff . append ( Integer . toHexString ( getFlags (...
Get the common prefix for all control message summary lines
91
10
163,197
protected static void appendArray ( StringBuilder buff , String name , String [ ] values ) { buff . append ( ' ' ) ; buff . append ( name ) ; buff . append ( "=[" ) ; if ( values != null ) { for ( int i = 0 ; i < values . length ; i ++ ) { if ( i != 0 ) buff . append ( ' ' ) ; buff . append ( values [ i ] ) ; } } buff ...
Helper method to append a string array to a summary string method
102
12
163,198
public void init ( InputStream in ) throws IOException { if ( TraceComponent . isAnyTracingEnabled ( ) && logger . isLoggable ( Level . FINE ) ) { //306998.15 logger . logp ( Level . FINE , CLASS_NAME , "init" , "init" ) ; } this . in = in ; next ( ) ; obs = null ; }
Initializes the servlet input stream with the specified raw input stream .
83
14
163,199
public void next ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && logger . isLoggable ( Level . FINE ) ) { //306998.15 logger . logp ( Level . FINE , CLASS_NAME , "next" , "next" ) ; } length = - 1 ; limit = Long . MAX_VALUE ; // PM03146 total = 0 ; count = 0 ; pos = 0 ; }
Begins reading the next request .
92
7