idx
int64
0
165k
question
stringlengths
73
4.15k
target
stringlengths
5
918
len_question
int64
21
890
len_target
int64
3
255
156,500
private static void addClasspathEntries ( final Object owner , final ClassLoader classLoader , final ClasspathOrder classpathOrderOut , final ScanSpec scanSpec , final LogNode log ) { // type ClasspathEntry[] final Object entries = ReflectionUtils . getFieldVal ( owner , "entries" , false ) ; if ( entries != null ) { f...
Adds the classpath entries .
181
6
156,501
static ClassTypeSignature parse ( final String typeDescriptor , final ClassInfo classInfo ) throws ParseException { final Parser parser = new Parser ( typeDescriptor ) ; // The defining class name is used to resolve type variables using the defining class' type descriptor. // But here we are parsing the defining class'...
Parse a class type signature or class type descriptor .
339
11
156,502
public TypeSignature getTypeDescriptor ( ) { if ( typeDescriptorStr == null ) { return null ; } if ( typeDescriptor == null ) { try { typeDescriptor = TypeSignature . parse ( typeDescriptorStr , declaringClassName ) ; typeDescriptor . setScanResult ( scanResult ) ; } catch ( final ParseException e ) { throw new Illegal...
Returns the parsed type descriptor for the field if available .
103
11
156,503
public TypeSignature getTypeSignature ( ) { if ( typeSignatureStr == null ) { return null ; } if ( typeSignature == null ) { try { typeSignature = TypeSignature . parse ( typeSignatureStr , declaringClassName ) ; typeSignature . setScanResult ( scanResult ) ; } catch ( final ParseException e ) { throw new IllegalArgume...
Returns the parsed type signature for the field if available .
96
11
156,504
@ Override public int compareTo ( final FieldInfo other ) { final int diff = declaringClassName . compareTo ( other . declaringClassName ) ; if ( diff != 0 ) { return diff ; } return name . compareTo ( other . name ) ; }
Sort in order of class name then field name .
55
10
156,505
private List < ClasspathElementModule > getModuleOrder ( final LogNode log ) throws InterruptedException { final List < ClasspathElementModule > moduleCpEltOrder = new ArrayList <> ( ) ; if ( scanSpec . overrideClasspath == null && scanSpec . overrideClassLoaders == null && scanSpec . scanModules ) { // Add modules to ...
Get the module order .
642
5
156,506
private static void findClasspathOrderRec ( final ClasspathElement currClasspathElement , final Set < ClasspathElement > visitedClasspathElts , final List < ClasspathElement > order ) { if ( visitedClasspathElts . add ( currClasspathElement ) ) { if ( ! currClasspathElement . skipClasspathElement ) { // Don't add a cla...
Recursively perform a depth - first search of jar interdependencies breaking cycles if necessary to determine the final classpath element order .
190
27
156,507
private static List < ClasspathElement > orderClasspathElements ( final Collection < Entry < Integer , ClasspathElement > > classpathEltsIndexed ) { final List < Entry < Integer , ClasspathElement > > classpathEltsIndexedOrdered = new ArrayList <> ( classpathEltsIndexed ) ; CollectionUtils . sortIfNotEmpty ( classpathE...
Sort a collection of indexed ClasspathElements into increasing order of integer index key .
189
17
156,508
private List < ClasspathElement > findClasspathOrder ( final Set < ClasspathElement > uniqueClasspathElements , final Queue < Entry < Integer , ClasspathElement > > toplevelClasspathEltsIndexed ) { final List < ClasspathElement > toplevelClasspathEltsOrdered = orderClasspathElements ( toplevelClasspathEltsIndexed ) ; f...
Recursively perform a depth - first traversal of child classpath elements breaking cycles if necessary to determine the final classpath element order . This causes child classpath elements to be inserted in - place in the classpath order after the parent classpath element that contained them .
226
55
156,509
private < W > void processWorkUnits ( final Collection < W > workUnits , final LogNode log , final WorkUnitProcessor < W > workUnitProcessor ) throws InterruptedException , ExecutionException { WorkQueue . runWorkQueue ( workUnits , executorService , interruptionChecker , numParallelTasks , log , workUnitProcessor ) ; ...
Process work units .
115
4
156,510
@ Override public ScanResult call ( ) throws InterruptedException , CancellationException , ExecutionException { ScanResult scanResult = null ; Exception exception = null ; final long scanStart = System . currentTimeMillis ( ) ; try { // Perform the scan scanResult = openClasspathElementsThenScan ( ) ; // Log total tim...
Determine the unique ordered classpath elements and run a scan looking for file or classfile matches if necessary .
786
23
156,511
public List < String > list ( ) throws SecurityException { if ( collectorsToList == null ) { throw new IllegalArgumentException ( "Could not call Collectors.toList()" ) ; } final Object /* Stream<String> */ resourcesStream = ReflectionUtils . invokeMethod ( moduleReader , "list" , /* throwException = */ true ) ; if ( r...
Get the list of resources accessible to a ModuleReader .
213
11
156,512
private Object openOrRead ( final String path , final boolean open ) throws SecurityException { final String methodName = open ? "open" : "read" ; final Object /* Optional<InputStream> */ optionalInputStream = ReflectionUtils . invokeMethod ( moduleReader , methodName , String . class , path , /* throwException = */ tr...
Use the proxied ModuleReader to open the named resource as an InputStream .
182
16
156,513
private static void findMetaAnnotations ( final AnnotationInfo ai , final AnnotationInfoList allAnnotationsOut , final Set < ClassInfo > visited ) { final ClassInfo annotationClassInfo = ai . getClassInfo ( ) ; if ( annotationClassInfo != null && annotationClassInfo . annotationInfo != null // Don't get in a cycle && v...
Find the transitive closure of meta - annotations .
238
10
156,514
public boolean containsName ( final String methodName ) { for ( final MethodInfo mi : this ) { if ( mi . getName ( ) . equals ( methodName ) ) { return true ; } } return false ; }
Check whether the list contains a method with the given name .
46
12
156,515
private int read ( final int off , final int len ) throws IOException { if ( len == 0 ) { return 0 ; } if ( inputStream != null ) { // Wrapped InputStream return inputStream . read ( buf , off , len ) ; } else { // Wrapped ByteBuffer final int bytesRemainingInBuf = byteBuffer != null ? byteBuffer . remaining ( ) : buf ...
Copy up to len bytes into buf starting at the given offset .
255
13
156,516
private void readMore ( final int bytesRequired ) throws IOException { if ( ( long ) used + ( long ) bytesRequired > FileUtils . MAX_BUFFER_SIZE ) { // Since buf is an array, we're limited to reading 2GB per file throw new IOException ( "File is larger than 2GB, cannot read it" ) ; } // Read INITIAL_BUFFER_CHUNK_SIZE f...
Read another chunk of from the InputStream or ByteBuffer .
443
12
156,517
public void skip ( final int bytesToSkip ) throws IOException { final int bytesToRead = Math . max ( 0 , curr + bytesToSkip - used ) ; if ( bytesToRead > 0 ) { readMore ( bytesToRead ) ; } curr += bytesToSkip ; }
Skip the given number of bytes .
62
7
156,518
public List < String > getPaths ( ) { final List < String > resourcePaths = new ArrayList <> ( this . size ( ) ) ; for ( final Resource resource : this ) { resourcePaths . add ( resource . getPath ( ) ) ; } return resourcePaths ; }
Get the paths of all resources in this list relative to the package root .
63
15
156,519
public static ClassGraphException newClassGraphException ( final String message , final Throwable cause ) throws ClassGraphException { return new ClassGraphException ( message , cause ) ; }
Static factory method to stop IDEs from auto - completing ClassGraphException after new ClassGraph .
36
19
156,520
static ArrayTypeSignature parse ( final Parser parser , final String definingClassName ) throws ParseException { int numArrayDims = 0 ; while ( parser . peek ( ) == ' ' ) { numArrayDims ++ ; parser . next ( ) ; } if ( numArrayDims > 0 ) { final TypeSignature elementTypeSignature = TypeSignature . parse ( parser , defin...
Parses the array type signature .
143
8
156,521
public static String normalizeURLPath ( final String urlPath ) { String urlPathNormalized = urlPath ; if ( ! urlPathNormalized . startsWith ( "jrt:" ) && ! urlPathNormalized . startsWith ( "http://" ) && ! urlPathNormalized . startsWith ( "https://" ) ) { // Any URL with the "jar:" prefix must have "/" after any "!" ur...
Normalize a URL path so that it can be fed into the URL or URI constructor .
236
18
156,522
public boolean canGetAsSlice ( ) throws IOException , InterruptedException { final long dataStartOffsetWithinPhysicalZipFile = getEntryDataStartOffsetWithinPhysicalZipFile ( ) ; return ! isDeflated // && dataStartOffsetWithinPhysicalZipFile / FileUtils . MAX_BUFFER_SIZE // == ( dataStartOffsetWithinPhysicalZipFile + un...
True if the entire zip entry can be opened as a single ByteBuffer slice .
92
16
156,523
public byte [ ] load ( ) throws IOException , InterruptedException { try ( InputStream is = open ( ) ) { return FileUtils . readAllBytesAsArray ( is , uncompressedSize ) ; } }
Load the content of the zip entry and return it as a byte array .
46
15
156,524
@ Override public int compareTo ( final FastZipEntry o ) { final int diff0 = o . version - this . version ; if ( diff0 != 0 ) { return diff0 ; } final int diff1 = entryNameUnversioned . compareTo ( o . entryNameUnversioned ) ; if ( diff1 != 0 ) { return diff1 ; } final int diff2 = entryName . compareTo ( o . entryName ...
Sort in decreasing order of version number then lexicographically increasing order of unversioned entry path .
182
20
156,525
private static boolean hasTypeVariables ( final Type type ) { if ( type instanceof TypeVariable < ? > || type instanceof GenericArrayType ) { return true ; } else if ( type instanceof ParameterizedType ) { for ( final Type arg : ( ( ParameterizedType ) type ) . getActualTypeArguments ( ) ) { if ( hasTypeVariables ( arg...
Check if the type has type variables .
95
8
156,526
public Constructor < ? > getConstructorForFieldTypeWithSizeHint ( final Type fieldTypeFullyResolved , final ClassFieldCache classFieldCache ) { if ( ! isTypeVariable ) { return constructorForFieldTypeWithSizeHint ; } else { final Class < ? > fieldRawTypeFullyResolved = JSONUtils . getRawType ( fieldTypeFullyResolved ) ...
Get the constructor with size hint for the field type .
186
11
156,527
public Constructor < ? > getDefaultConstructorForFieldType ( final Type fieldTypeFullyResolved , final ClassFieldCache classFieldCache ) { if ( ! isTypeVariable ) { return defaultConstructorForFieldType ; } else { final Class < ? > fieldRawTypeFullyResolved = JSONUtils . getRawType ( fieldTypeFullyResolved ) ; return c...
Get the default constructor for the field type .
106
9
156,528
private static void appendPathElt ( final Object pathElt , final StringBuilder buf ) { if ( buf . length ( ) > 0 ) { buf . append ( File . pathSeparatorChar ) ; } // Escape any rogue path separators, as long as file separator is not '\\' (on Windows, if there are any // extra ';' characters in a path element, there's r...
Append a path element to a buffer .
167
9
156,529
public static String leafName ( final String path ) { final int bangIdx = path . indexOf ( ' ' ) ; final int endIdx = bangIdx >= 0 ? bangIdx : path . length ( ) ; int leafStartIdx = 1 + ( File . separatorChar == ' ' ? path . lastIndexOf ( ' ' , endIdx ) : Math . max ( path . lastIndexOf ( ' ' , endIdx ) , path . lastIn...
Returns the leafname of a path after first stripping off everything after the first ! if present .
272
19
156,530
public static String classfilePathToClassName ( final String classfilePath ) { if ( ! classfilePath . endsWith ( ".class" ) ) { throw new IllegalArgumentException ( "Classfile path does not end with \".class\": " + classfilePath ) ; } return classfilePath . substring ( 0 , classfilePath . length ( ) - 6 ) . replace ( '...
Convert a classfile path to the corresponding class name .
91
12
156,531
static BaseTypeSignature parse ( final Parser parser ) { switch ( parser . peek ( ) ) { case ' ' : parser . next ( ) ; return new BaseTypeSignature ( "byte" ) ; case ' ' : parser . next ( ) ; return new BaseTypeSignature ( "char" ) ; case ' ' : parser . next ( ) ; return new BaseTypeSignature ( "double" ) ; case ' ' : ...
Parse a base type .
218
6
156,532
private static String getPath ( final Object classpath ) { final Object container = ReflectionUtils . getFieldVal ( classpath , "container" , false ) ; if ( container == null ) { return "" ; } final Object delegate = ReflectionUtils . getFieldVal ( container , "delegate" , false ) ; if ( delegate == null ) { return "" ...
Get the path from a classpath object .
218
9
156,533
Set < String > findReferencedClassNames ( ) { final Set < String > allReferencedClassNames = new LinkedHashSet <> ( ) ; findReferencedClassNames ( allReferencedClassNames ) ; // Remove references to java.lang.Object allReferencedClassNames . remove ( "java.lang.Object" ) ; return allReferencedClassNames ; }
Get the names of all referenced classes .
86
8
156,534
private static Map < CharSequence , Object > getInitialIdToObjectMap ( final Object objectInstance , final Object parsedJSON ) { final Map < CharSequence , Object > idToObjectInstance = new HashMap <> ( ) ; if ( parsedJSON instanceof JSONObject ) { final JSONObject itemJsonObject = ( JSONObject ) parsedJSON ; if ( ! it...
Set up the initial mapping from id to object by adding the id of the toplevel object if it has an id field in JSON .
212
28
156,535
private static < T > T deserializeObject ( final Class < T > expectedType , final String json , final ClassFieldCache classFieldCache ) throws IllegalArgumentException { // Parse the JSON Object parsedJSON ; try { parsedJSON = JSONParser . parseJSON ( json ) ; } catch ( final ParseException e ) { throw new IllegalArgum...
Deserialize JSON to a new object graph with the root object of the specified expected type using or reusing the given type cache . Does not work for generic types since it is not possible to obtain the generic type of a Class reference .
302
48
156,536
public static < T > T deserializeObject ( final Class < T > expectedType , final String json ) throws IllegalArgumentException { final ClassFieldCache classFieldCache = new ClassFieldCache ( /* resolveTypes = */ true , /* onlySerializePublicFields = */ false ) ; return deserializeObject ( expectedType , json , classFie...
Deserialize JSON to a new object graph with the root object of the specified expected type . Does not work for generic types since it is not possible to obtain the generic type of a Class reference .
78
40
156,537
private static void findLayerOrder ( final Object /* ModuleLayer */ layer , final Set < Object > /* Set<ModuleLayer> */ layerVisited , final Set < Object > /* Set<ModuleLayer> */ parentLayers , final Deque < Object > /* Deque<ModuleLayer> */ layerOrderOut ) { if ( layerVisited . add ( layer ) ) { @ SuppressWarnings ( "...
Recursively find the topological sort order of ancestral layers .
190
13
156,538
private static List < ModuleRef > findModuleRefs ( final LinkedHashSet < Object > layers , final ScanSpec scanSpec , final LogNode log ) { if ( layers . isEmpty ( ) ) { return Collections . emptyList ( ) ; } // Traverse the layer DAG to find the layer resolution order final Deque < Object > /* Deque<ModuleLayer> */ lay...
Get all visible ModuleReferences in a list of layers .
686
11
156,539
static ClassRefTypeSignature parse ( final Parser parser , final String definingClassName ) throws ParseException { if ( parser . peek ( ) == ' ' ) { parser . next ( ) ; if ( ! TypeUtils . getIdentifierToken ( parser , /* separator = */ ' ' , /* separatorReplace = */ ' ' ) ) { throw new ParseException ( parser , "Could...
Parse a class type signature .
364
7
156,540
private static boolean isParentFirstStrategy ( final ClassLoader classRealmInstance ) { final Object strategy = ReflectionUtils . getFieldVal ( classRealmInstance , "strategy" , false ) ; if ( strategy != null ) { final String strategyClassName = strategy . getClass ( ) . getName ( ) ; if ( strategyClassName . equals (...
Checks if is this classloader uses a parent - first strategy .
176
14
156,541
public static boolean startsWith ( Msg msg , String data , boolean includeLength ) { final int length = data . length ( ) ; assert ( length < 256 ) ; int start = includeLength ? 1 : 0 ; if ( msg . size ( ) < length + start ) { return false ; } boolean comparison = includeLength ? length == ( msg . get ( 0 ) & 0xff ) : ...
Checks if the message starts with the given string .
145
11
156,542
@ Override public void write ( final T value , boolean incomplete ) { // Place the value to the queue, add new terminator element. queue . push ( value ) ; // Move the "flush up to here" pointer. if ( ! incomplete ) { f = queue . backPos ( ) ; } }
flushed down the stream .
64
6
156,543
@ Override public T unwrite ( ) { if ( f == queue . backPos ( ) ) { return null ; } queue . unpush ( ) ; return queue . back ( ) ; }
item exists false otherwise .
41
5
156,544
@ Override public boolean flush ( ) { // If there are no un-flushed items, do nothing. if ( w == f ) { return true ; } // Try to set 'c' to 'f'. if ( ! c . compareAndSet ( w , f ) ) { // Compare-and-swap was unsuccessful because 'c' is NULL. // This means that the reader is asleep. Therefore we don't // care about thre...
wake the reader up before using the pipe again .
172
10
156,545
@ Override public boolean checkRead ( ) { // Was the value prefetched already? If so, return. int h = queue . frontPos ( ) ; if ( h != r ) { return true ; } // There's no prefetched value, so let us prefetch more values. // Prefetching is to simply retrieve the // pointer from c in atomic fashion. If there are no // it...
Check whether item is available for reading .
220
8
156,546
@ Override public ByteBuffer getBuffer ( ) { // If we are expected to read large message, we'll opt for zero- // copy, i.e. we'll ask caller to fill the data directly to the // message. Note that subsequent read(s) are non-blocking, thus // each single read reads at most SO_RCVBUF bytes at once not // depending on how ...
Returns a buffer to be filled with binary data .
161
10
156,547
@ Override public Step . Result decode ( ByteBuffer data , int size , ValueReference < Integer > processed ) { processed . set ( 0 ) ; // In case of zero-copy simply adjust the pointers, no copying // is required. Also, run the state machine in case all the data // were processed. if ( zeroCopy ) { assert ( size <= toR...
bytes actually processed .
328
4
156,548
public boolean rm ( Msg msg , int start , int size ) { // TODO: Shouldn't an error be reported if the key does not exist? if ( size == 0 ) { if ( refcnt == 0 ) { return false ; } refcnt -- ; return refcnt == 0 ; } assert ( msg != null ) ; byte c = msg . get ( start ) ; if ( count == 0 || c < min || c >= min + count ) {...
removed from the trie .
712
7
156,549
public boolean check ( ByteBuffer data ) { assert ( data != null ) ; int size = data . limit ( ) ; // This function is on critical path. It deliberately doesn't use // recursion to get a bit better performance. Trie current = this ; int start = 0 ; while ( true ) { // We've found a corresponding subscription! if ( curr...
Check whether particular key is in the trie .
228
10
156,550
public ZMsg duplicate ( ) { if ( frames . isEmpty ( ) ) { return null ; } else { ZMsg msg = new ZMsg ( ) ; for ( ZFrame f : frames ) { msg . add ( f . duplicate ( ) ) ; } return msg ; } }
Creates copy of this ZMsg . Also duplicates all frame content .
59
15
156,551
public ZMsg wrap ( ZFrame frame ) { if ( frame != null ) { push ( new ZFrame ( "" ) ) ; push ( frame ) ; } return this ; }
Push frame plus empty frame to front of message before 1st frame . Message takes ownership of frame will destroy it when message is sent .
37
27
156,552
public static ZMsg recvMsg ( Socket socket , boolean wait ) { return recvMsg ( socket , wait ? 0 : ZMQ . DONTWAIT ) ; }
Receives message from socket returns ZMsg object or null if the recv was interrupted .
36
19
156,553
public static ZMsg recvMsg ( Socket socket , int flag ) { if ( socket == null ) { throw new IllegalArgumentException ( "socket is null" ) ; } ZMsg msg = new ZMsg ( ) ; while ( true ) { ZFrame f = ZFrame . recvFrame ( socket , flag ) ; if ( f == null ) { // If receive failed or was interrupted msg . destroy ( ) ; msg = ...
Receives message from socket returns ZMsg object or null if the recv was interrupted . Setting the flag to ZMQ . DONTWAIT does a non - blocking recv .
121
38
156,554
public static boolean save ( ZMsg msg , DataOutputStream file ) { if ( msg == null ) { return false ; } try { // Write number of frames file . writeInt ( msg . size ( ) ) ; if ( msg . size ( ) > 0 ) { for ( ZFrame f : msg ) { // Write byte size of frame file . writeInt ( f . size ( ) ) ; // Write frame byte data file ....
Save message to an open data output stream .
118
9
156,555
public static ZMsg newStringMsg ( String ... strings ) { ZMsg msg = new ZMsg ( ) ; for ( String data : strings ) { msg . addString ( data ) ; } return msg ; }
Create a new ZMsg from one or more Strings
44
11
156,556
public ZMsg dump ( Appendable out ) { try { StringWriter sw = new StringWriter ( ) ; PrintWriter pw = new PrintWriter ( sw ) ; pw . printf ( "--------------------------------------\n" ) ; for ( ZFrame frame : frames ) { pw . printf ( "[%03d] %s\n" , frame . size ( ) , frame . toString ( ) ) ; } out . append ( sw . getB...
Dump the message in human readable format . This should only be used for debugging and tracing inefficient in handling large messages .
140
24
156,557
@ Deprecated protected ZAgent agent ( Socket phone , String secret ) { return ZAgent . Creator . create ( phone , secret ) ; }
Creates a new agent for the star .
29
9
156,558
public Ticket add ( long delay , TimerHandler handler , Object ... args ) { if ( handler == null ) { return null ; } Utils . checkArgument ( delay > 0 , "Delay of a ticket has to be strictly greater than 0" ) ; final Ticket ticket = new Ticket ( this , now ( ) , delay , handler , args ) ; insert ( ticket ) ; return tic...
Add ticket to the set .
84
6
156,559
public long timeout ( ) { if ( tickets . isEmpty ( ) ) { return - 1 ; } sortIfNeeded ( ) ; // Tickets are sorted, so check first ticket Ticket first = tickets . get ( 0 ) ; return first . start - now ( ) + first . delay ; }
Returns the time in millisecond until the next ticket .
61
11
156,560
public int execute ( ) { int executed = 0 ; final long now = now ( ) ; sortIfNeeded ( ) ; Set < Ticket > cancelled = new HashSet <> ( ) ; for ( Ticket ticket : this . tickets ) { if ( now - ticket . start < ticket . delay ) { // tickets are ordered, not meeting the condition means the next ones do not as well break ; }...
Execute the tickets .
205
5
156,561
private NetProtocol checkProtocol ( String protocol ) { // First check out whether the protcol is something we are aware of. NetProtocol proto = NetProtocol . getProtocol ( protocol ) ; if ( proto == null || ! proto . valid ) { errno . set ( ZError . EPROTONOSUPPORT ) ; return proto ; } // Check whether socket type and...
bind is available and compatible with the socket type .
151
10
156,562
private void addEndpoint ( String addr , Own endpoint , Pipe pipe ) { // Activate the session. Make it a child of this socket. launchChild ( endpoint ) ; endpoints . insert ( addr , new EndpointPipe ( endpoint , pipe ) ) ; }
Creates new endpoint ID and adds the endpoint to the map .
55
13
156,563
final void startReaping ( Poller poller ) { // Plug the socket to the reaper thread. this . poller = poller ; SelectableChannel fd = mailbox . getFd ( ) ; handle = this . poller . addHandle ( fd , this ) ; this . poller . setPollIn ( handle ) ; // Initialize the termination and check whether it can be deallocated // im...
its poller .
99
4
156,564
private boolean processCommands ( int timeout , boolean throttle ) { Command cmd ; if ( timeout != 0 ) { // If we are asked to wait, simply ask mailbox to wait. cmd = mailbox . recv ( timeout ) ; } else { // If we are asked not to wait, check whether we haven't processed // commands recently, so that we can throttle th...
in a predefined time period .
430
7
156,565
private void extractFlags ( Msg msg ) { // Test whether IDENTITY flag is valid for this socket type. if ( msg . isIdentity ( ) ) { assert ( options . recvIdentity ) ; } // Remove MORE flag. rcvmore = msg . hasMore ( ) ; }
to be later retrieved by getSocketOpt .
63
9
156,566
@ Override public String getAddress ( ) { if ( ( ( InetSocketAddress ) address . address ( ) ) . getPort ( ) == 0 ) { return address ( address ) ; } return address . toString ( ) ; }
Get the bound address for use with wildcards
50
9
156,567
public boolean pathExists ( String path ) { String [ ] pathElements = path . split ( "/" ) ; ZConfig current = this ; for ( String pathElem : pathElements ) { if ( pathElem . isEmpty ( ) ) { continue ; } current = current . children . get ( pathElem ) ; if ( current == null ) { return false ; } } return true ; }
check if a value - path exists
87
7
156,568
public String [ ] keypairZ85 ( ) { String [ ] pair = new String [ 2 ] ; byte [ ] publicKey = new byte [ Size . PUBLICKEY . bytes ( ) ] ; byte [ ] secretKey = new byte [ Size . SECRETKEY . bytes ( ) ] ; int rc = curve25519xsalsa20poly1305 . crypto_box_keypair ( publicKey , secretKey ) ; assert ( rc == 0 ) ; pair [ 0 ] =...
Generates a pair of Z85 - encoded keys for use with this class .
146
16
156,569
public byte [ ] [ ] keypair ( ) { byte [ ] [ ] pair = new byte [ 2 ] [ ] ; byte [ ] publicKey = new byte [ Size . PUBLICKEY . bytes ( ) ] ; byte [ ] secretKey = new byte [ Size . SECRETKEY . bytes ( ) ] ; int rc = curve25519xsalsa20poly1305 . crypto_box_keypair ( publicKey , secretKey ) ; assert ( rc == 0 ) ; pair [ 0 ...
Generates a pair of keys for use with this class .
119
12
156,570
private void error ( ErrorReason error ) { if ( options . rawSocket ) { // For raw sockets, send a final 0-length message to the application // so that it knows the peer has been disconnected. Msg terminator = new Msg ( ) ; processMsg . apply ( terminator ) ; } assert ( session != null ) ; socket . eventDisconnected ( ...
Function to handle network disconnections .
107
7
156,571
private int write ( ByteBuffer outbuf ) { int nbytes ; try { nbytes = fd . write ( outbuf ) ; if ( nbytes == 0 ) { errno . set ( ZError . EAGAIN ) ; } } catch ( IOException e ) { errno . set ( ZError . ENOTCONN ) ; nbytes = - 1 ; } return nbytes ; }
of error or orderly shutdown by the other peer - 1 is returned .
84
14
156,572
private int read ( ByteBuffer buf ) { int nbytes ; try { nbytes = fd . read ( buf ) ; if ( nbytes == - 1 ) { errno . set ( ZError . ENOTCONN ) ; } else if ( nbytes == 0 ) { if ( ! fd . isBlocking ( ) ) { // If not a single byte can be read from the socket in non-blocking mode // we'll get an error (this may happen duri...
Zero indicates the peer has closed the connection .
205
9
156,573
public boolean sendAndDestroy ( Socket socket , int flags ) { boolean ret = send ( socket , flags ) ; if ( ret ) { destroy ( ) ; } return ret ; }
Sends frame to socket if it contains data . Use this method to send a frame and destroy the data after .
37
23
156,574
public boolean hasSameData ( ZFrame other ) { if ( other == null ) { return false ; } if ( size ( ) == other . size ( ) ) { return Arrays . equals ( data , other . data ) ; } return false ; }
Returns true if both frames have byte - for byte identical data
53
12
156,575
private byte [ ] recv ( Socket socket , int flags ) { Utils . checkArgument ( socket != null , "socket parameter must not be null" ) ; data = socket . recv ( flags ) ; more = socket . hasReceiveMore ( ) ; return data ; }
Internal method to call recv on the socket . Does not trap any ZMQExceptions but expects caling routine to handle them .
60
27
156,576
public static ZFrame recvFrame ( Socket socket , int flags ) { ZFrame f = new ZFrame ( ) ; byte [ ] data = f . recv ( socket , flags ) ; if ( data == null ) { return null ; } return f ; }
Receive a new frame off the socket Returns newly - allocated frame or null if there was no input waiting or if the read was interrupted .
55
28
156,577
public void terminate ( ) { slotSync . lock ( ) ; try { // Connect up any pending inproc connections, otherwise we will hang for ( Entry < PendingConnection , String > pending : pendingConnections . entries ( ) ) { SocketBase s = createSocket ( ZMQ . ZMQ_PAIR ) ; // create_socket might fail eg: out of memory/sockets li...
after the last one is closed .
383
7
156,578
public Selector createSelector ( ) { selectorSync . lock ( ) ; try { Selector selector = Selector . open ( ) ; assert ( selector != null ) ; selectors . add ( selector ) ; return selector ; } catch ( IOException e ) { throw new ZError . IOException ( e ) ; } finally { selectorSync . unlock ( ) ; } }
Creates a Selector that will be closed when the context is destroyed .
78
15
156,579
boolean registerEndpoint ( String addr , Endpoint endpoint ) { endpointsSync . lock ( ) ; Endpoint inserted = null ; try { inserted = endpoints . put ( addr , endpoint ) ; } finally { endpointsSync . unlock ( ) ; } if ( inserted != null ) { return false ; } return true ; }
Management of inproc endpoints .
69
7
156,580
public void attachPipe ( Pipe pipe ) { assert ( ! isTerminating ( ) ) ; assert ( this . pipe == null ) ; assert ( pipe != null ) ; this . pipe = pipe ; this . pipe . setEventSink ( this ) ; }
To be used once only when creating the session .
55
10
156,581
private void cleanPipes ( ) { assert ( pipe != null ) ; // Get rid of half-processed messages in the out pipe. Flush any // unflushed messages upstream. pipe . rollback ( ) ; pipe . flush ( ) ; // Remove any half-read message from the in pipe. while ( incompleteIn ) { Msg msg = pullMsg ( ) ; if ( msg == null ) { assert...
Call this function when engine disconnect to get rid of leftovers .
102
13
156,582
public void destroy ( ) { for ( Socket socket : sockets ) { destroySocket ( socket ) ; } sockets . clear ( ) ; for ( Selector selector : selectors ) { context . close ( selector ) ; } selectors . clear ( ) ; // Only terminate context if we are on the main thread if ( isMain ( ) ) { context . term ( ) ; } }
Destructor . Call this to gracefully terminate context and close any managed 0MQ sockets
79
18
156,583
public Socket createSocket ( SocketType type ) { // Create and register socket Socket socket = context . socket ( type ) ; socket . setRcvHWM ( this . rcvhwm ) ; socket . setSndHWM ( this . sndhwm ) ; sockets . add ( socket ) ; return socket ; }
Creates a new managed socket within this ZContext instance . Use this to get automatic management of the socket at shutdown
68
23
156,584
public void destroySocket ( Socket s ) { if ( s == null ) { return ; } s . setLinger ( linger ) ; s . close ( ) ; this . sockets . remove ( s ) ; }
Destroys managed socket within this context and remove from sockets list
44
13
156,585
Selector selector ( ) { Selector selector = context . selector ( ) ; selectors . add ( selector ) ; return selector ; }
Creates a selector . Resource will be released when context will be closed .
28
15
156,586
@ Deprecated @ Draft public void closeSelector ( Selector selector ) { if ( selectors . remove ( selector ) ) { context . close ( selector ) ; } }
Closes a selector . This is a DRAFT method and may change without notice .
36
17
156,587
public static ZContext shadow ( ZContext ctx ) { ZContext context = new ZContext ( ctx . context , false , ctx . ioThreads ) ; context . linger = ctx . linger ; context . sndhwm = ctx . sndhwm ; context . rcvhwm = ctx . rcvhwm ; context . pipehwm = ctx . pipehwm ; return context ; }
Creates new shadow context . Shares same underlying org . zeromq . Context instance but has own list of managed sockets io thread count etc .
91
30
156,588
public Socket fork ( ZThread . IAttachedRunnable runnable , Object ... args ) { return ZThread . fork ( this , runnable , args ) ; }
Create an attached thread An attached thread gets a ctx and a PAIR pipe back to its parent . It must monitor its pipe and exit if the pipe becomes unreadable
38
34
156,589
public static ByteBuffer putUInt64 ( ByteBuffer buf , long value ) { buf . put ( ( byte ) ( ( value >>> 56 ) & 0xff ) ) ; buf . put ( ( byte ) ( ( value >>> 48 ) & 0xff ) ) ; buf . put ( ( byte ) ( ( value >>> 40 ) & 0xff ) ) ; buf . put ( ( byte ) ( ( value >>> 32 ) & 0xff ) ) ; buf . put ( ( byte ) ( ( value >>> 24 )...
8 bytes value
171
3
156,590
public static Socket fork ( ZContext ctx , IAttachedRunnable runnable , Object ... args ) { Socket pipe = ctx . createSocket ( SocketType . PAIR ) ; if ( pipe != null ) { pipe . bind ( String . format ( "inproc://zctx-pipe-%d" , pipe . hashCode ( ) ) ) ; } else { return null ; } // Connect child pipe to our pipe ZConte...
pipe becomes unreadable . Returns pipe or null if there was an error .
202
15
156,591
private void startConnecting ( ) { // Open the connecting socket. try { boolean rc = open ( ) ; // Connect may succeed in synchronous manner. if ( rc ) { handle = ioObject . addFd ( fd ) ; connectEvent ( ) ; } // Connection establishment may be delayed. Poll for its completion. else { handle = ioObject . addFd ( fd ) ;...
Internal function to start the actual connection establishment .
156
9
156,592
private void addReconnectTimer ( ) { int rcIvl = getNewReconnectIvl ( ) ; ioObject . addTimer ( rcIvl , RECONNECT_TIMER_ID ) ; // resolve address again to take into account other addresses // besides the failing one (e.g. multiple dns entries). try { addr . resolve ( options . ipv6 ) ; } catch ( Exception ignored ) { /...
Internal function to add a reconnect timer
149
7
156,593
private int getNewReconnectIvl ( ) { // The new interval is the current interval + random value. int interval = currentReconnectIvl + ( Utils . randomInt ( ) % options . reconnectIvl ) ; // Only change the current reconnect interval if the maximum reconnect // interval was set and if it's larger than the reconnect inte...
Returns the currently used interval
139
5
156,594
private boolean open ( ) throws IOException { assert ( fd == null ) ; // Resolve the address if ( addr == null ) { throw new IOException ( "Null address" ) ; } addr . resolve ( options . ipv6 ) ; Address . IZAddress resolved = addr . resolved ( ) ; if ( resolved == null ) { throw new IOException ( "Address not resolved...
Returns false if async connect was launched .
588
8
156,595
private SocketChannel connect ( ) { try { // Async connect has finished. Check whether an error occurred boolean finished = fd . finishConnect ( ) ; assert ( finished ) ; return fd ; } catch ( IOException e ) { return null ; } }
null if the connection was unsuccessful .
54
7
156,596
protected void close ( ) { assert ( fd != null ) ; try { fd . close ( ) ; socket . eventClosed ( addr . toString ( ) , fd ) ; } catch ( IOException e ) { socket . eventCloseFailed ( addr . toString ( ) , ZError . exccode ( e ) ) ; } fd = null ; }
Close the connecting socket .
80
5
156,597
@ Deprecated public boolean setInterval ( Timer timer , long interval ) { assert ( timer . parent == this ) ; return timer . setInterval ( interval ) ; }
Changes the interval of the timer . This method is slow canceling existing and adding a new timer yield better performance .
37
23
156,598
public long timeout ( ) { final long now = now ( ) ; for ( Entry < Timer , Long > entry : entries ( ) ) { final Timer timer = entry . getKey ( ) ; final Long expiration = entry . getValue ( ) ; if ( timer . alive ) { // Live timer, lets return the timeout if ( expiration - now > 0 ) { return expiration - now ; } else {...
Returns the time in millisecond until the next timer .
123
11
156,599
public int execute ( ) { int executed = 0 ; final long now = now ( ) ; for ( Entry < Timer , Long > entry : entries ( ) ) { final Timer timer = entry . getKey ( ) ; final Long expiration = entry . getValue ( ) ; // Dead timer, lets remove it and continue if ( ! timer . alive ) { // Remove it from the list of active tim...
Execute the timers .
150
5