idx
int64
0
165k
question
stringlengths
73
4.15k
target
stringlengths
5
918
len_question
int64
21
890
len_target
int64
3
255
158,400
public Archive < ? > createDefaultDeployment ( ) throws Exception { if ( this . server == null ) { throw SwarmMessages . MESSAGES . containerNotStarted ( "createDefaultDeployment()" ) ; } return this . server . deployer ( ) . createDefaultDeployment ( ) ; }
Retrieve the default ShrinkWrap deployment .
66
11
158,401
public static JavaArchive artifact ( String gav , String asName ) throws Exception { return artifactLookup ( ) . artifact ( gav , asName ) ; }
Retrieve an artifact that was part of the original build using a full or simplified Maven GAV specifier returning an archive with a specified name .
35
30
158,402
private void installModuleMBeanServer ( ) { try { Method method = ModuleLoader . class . getDeclaredMethod ( "installMBeanServer" ) ; method . setAccessible ( true ) ; method . invoke ( null ) ; } catch ( Exception e ) { SwarmMessages . MESSAGES . moduleMBeanServerNotInstalled ( e ) ; } }
Installs the Module MBeanServer .
81
9
158,403
File downloadFromRemoteRepository ( ArtifactCoordinates artifactCoordinates , String packaging , Path artifactDirectory ) { String artifactRelativeHttpPath = toGradleArtifactPath ( artifactCoordinates ) ; String artifactRelativeMetadataHttpPath = artifactCoordinates . relativeMetadataPath ( ' ' ) ; for ( String remoteR...
Download artifact from remote repository .
577
6
158,404
File doDownload ( String remoteRepos , String artifactAbsoluteHttpPath , String artifactRelativeHttpPath , ArtifactCoordinates artifactCoordinates , String packaging , File targetArtifactPomDirectory , File targetArtifactDirectory ) { //Download POM File targetArtifactPomFile = new File ( targetArtifactPomDirectory , t...
Download the POM and the artifact file and return it .
335
12
158,405
String toGradleArtifactFileName ( ArtifactCoordinates artifactCoordinates , String packaging ) { StringBuilder sbFileFilter = new StringBuilder ( ) ; sbFileFilter . append ( artifactCoordinates . getArtifactId ( ) ) . append ( "-" ) . append ( artifactCoordinates . getVersion ( ) ) ; if ( artifactCoordinates . getClass...
Build file name for artifact .
161
6
158,406
String toGradleArtifactPath ( ArtifactCoordinates artifactCoordinates ) { // e.g.: org/jboss/ws/cxf/jbossws-cxf-resources/5.1.5.Final/jbossws-cxf-resources-5.1.5.Final String pathWithMissingClassifier = artifactCoordinates . relativeArtifactPath ( ' ' ) ; StringBuilder sb = new StringBuilder ( pathWithMissingClassifier...
Build the artifact path including the classifier .
218
9
158,407
String computeGradleUUID ( String content ) { try { MessageDigest md = MessageDigest . getInstance ( MD5_ALGORITHM ) ; md . reset ( ) ; byte [ ] bytes = content . trim ( ) . toLowerCase ( Locale . US ) . getBytes ( "UTF-8" ) ; md . update ( bytes , 0 , bytes . length ) ; return byteArrayToHexString ( md . digest ( ) ) ...
Compute gradle uuid for artifacts .
175
9
158,408
private DeclaredDependencies getDependenciesViaIdeaModel ( ProjectConnection connection ) { DeclaredDependencies declaredDependencies = new DeclaredDependencies ( ) ; // 1. Get the IdeaProject model from the Gradle connection. IdeaProject prj = connection . getModel ( IdeaProject . class ) ; prj . getModules ( ) . forE...
Get the dependencies via the Gradle IDEA model .
785
11
158,409
private static ArtifactSpec toArtifactSpec ( DependencyDescriptor desc , String scope ) { return new ArtifactSpec ( scope , desc . getGroup ( ) , desc . getName ( ) , desc . getVersion ( ) , desc . getType ( ) , desc . getClassifier ( ) , desc . getFile ( ) ) ; }
Translate the given dependency descriptor to the an artifact specification while overriding the scope as well .
72
18
158,410
void activate ( ) { nodes ( ) . flatMap ( e -> e . allKeysRecursively ( ) ) . distinct ( ) . forEach ( key -> { activate ( key ) ; } ) ; }
Activate the strategy .
44
5
158,411
public static ResourceLoader createMavenArtifactLoader ( final MavenResolver mavenResolver , final String name ) throws IOException { return createMavenArtifactLoader ( mavenResolver , ArtifactCoordinates . fromString ( name ) , name ) ; }
A utility method to create a Maven artifact resource loader for the given artifact name .
57
17
158,412
public static ResourceLoader createMavenArtifactLoader ( final MavenResolver mavenResolver , final ArtifactCoordinates coordinates , final String rootName ) throws IOException { File fp = mavenResolver . resolveJarArtifact ( coordinates ) ; if ( fp == null ) return null ; JarFile jarFile = JDKSpecific . getJarFile ( fp...
A utility method to create a Maven artifact resource loader for the given artifact coordinates .
101
17
158,413
protected JWTCallerPrincipal validate ( JWTCredential jwtCredential ) throws ParseException { JWTCallerPrincipalFactory factory = JWTCallerPrincipalFactory . instance ( ) ; JWTCallerPrincipal callerPrincipal = factory . parse ( jwtCredential . getBearerToken ( ) , jwtCredential . getAuthContextInfo ( ) ) ; return calle...
Validate the bearer token passed in with the authorization header
97
11
158,414
@ SuppressWarnings ( "deprecation" ) private HttpHandler secureHandler ( final HttpHandler toWrap , SecurityRealm securityRealm ) { HttpHandler handler = toWrap ; handler = new AuthenticationCallHandler ( handler ) ; handler = new AuthenticationConstraintHandler ( handler ) ; RealmIdentityManager idm = new RealmIdentit...
Wraps the target handler and makes it inheritSecurity . Includes a predicate for relevant web contexts .
541
19
158,415
private boolean isWar ( String path ) { String currentDir = Paths . get ( "." ) . toAbsolutePath ( ) . normalize ( ) . toString ( ) ; String classesDirPath = Paths . get ( path ) . toAbsolutePath ( ) . normalize ( ) . toString ( ) ; return classesDirPath . startsWith ( currentDir ) ; }
the assumption is that the Runner is invoked in the WAR module s directory
82
14
158,416
public static String determinePluginVersion ( ) { if ( pluginVersion == null ) { final String fileName = "META-INF/gradle-plugins/thorntail.properties" ; ClassLoader loader = Thread . currentThread ( ) . getContextClassLoader ( ) ; String version ; try ( InputStream stream = loader . getResourceAsStream ( fileName ) ) ...
Parse the plugin definition file and extract the version details from it .
152
14
158,417
public static boolean isProject ( Project project , DependencyDescriptor descriptor ) { final String specGAV = String . format ( "%s:%s:%s" , descriptor . getGroup ( ) , descriptor . getName ( ) , descriptor . getVersion ( ) ) ; return getAllProjects ( project ) . containsKey ( specGAV ) || getIncludedProjectIdentifier...
Convenience method to determine if the given dependency descriptor represents an internal Gradle project or not .
94
20
158,418
public static Set < ArtifactSpec > resolveArtifacts ( Project project , Collection < ArtifactSpec > specs , boolean transitive , boolean excludeDefaults ) { if ( project == null ) { throw new IllegalArgumentException ( "Gradle project reference cannot be null." ) ; } if ( specs == null ) { project . getLogger ( ) . war...
Resolve the given artifact specifications .
619
7
158,419
public static Map < DependencyDescriptor , Set < DependencyDescriptor > > determineProjectDependencies ( Project project , String configuration , boolean resolveChildrenTransitively ) { if ( project == null ) { throw new IllegalArgumentException ( "Gradle project reference cannot be null." ) ; } project . getLogger ( )...
Determine the dependencies associated with a Gradle project . This method returns a Map whose key represents a top level dependency associated with this project and the value represents a collection of dependencies that the key requires .
683
41
158,420
private static void printDependencyMap ( Map < DependencyDescriptor , Set < DependencyDescriptor > > map , Project project ) { final String NEW_LINE = "\n" ; if ( project . getLogger ( ) . isEnabled ( LogLevel . INFO ) ) { StringBuilder builder = new StringBuilder ( 100 ) ; builder . append ( "Resolved dependencies:" )...
Temp method for printing out the dependency map .
177
9
158,421
private static Map < String , Project > getAllProjects ( final Project project ) { return getCachedReference ( project , "thorntail_project_gav_collection" , ( ) -> { Map < String , Project > gavMap = new HashMap <> ( ) ; project . getRootProject ( ) . getAllprojects ( ) . forEach ( p -> { gavMap . put ( p . getGroup (...
Get the collection of Gradle projects along with their GAV definitions . This collection is used for determining if an artifact specification represents a Gradle project or not .
130
32
158,422
public void ifPresent ( Consumer < ? super T > consumer ) { T value = get ( false ) ; if ( value != null ) { consumer . accept ( value ) ; } }
If a default or explicit value is present invoke the supplied consumer with it .
38
15
158,423
public static FileSystemLayout create ( ) { String userDir = System . getProperty ( USER_DIR ) ; if ( null == userDir ) { throw SwarmMessages . MESSAGES . systemPropertyNotFound ( USER_DIR ) ; } return create ( userDir ) ; }
Derived form user . dir
62
6
158,424
public static FileSystemLayout create ( String root ) { // THORN-2178: Check if a System property has been set to a specific implementation class. String implClassName = System . getProperty ( CUSTOM_LAYOUT_CLASS ) ; if ( implClassName != null ) { implClassName = implClassName . trim ( ) ; if ( ! implClassName . isEmpt...
Derived from explicit path
601
5
158,425
@ Override public void process ( ) throws Exception { // if the deployment is Implicit, we don't want to process it if ( deploymentContext != null && deploymentContext . isImplicit ( ) ) { return ; } try { // First register OpenApiServletContextListener which triggers the final init WARArchive warArchive = archive . as...
Process the deployment in order to produce an OpenAPI document .
238
12
158,426
public static URL toURL ( String value ) throws MalformedURLException { try { URL url = new URL ( value ) ; return url ; } catch ( MalformedURLException e ) { try { return new File ( value ) . toURI ( ) . toURL ( ) ; } catch ( MalformedURLException e2 ) { // throw the original throw e ; } } }
Helper to attempt forming a URL from a String in a sensible fashion .
85
14
158,427
public static void explodeJar ( JarFile jarFile , String destDir ) throws IOException { Enumeration < java . util . jar . JarEntry > enu = jarFile . entries ( ) ; while ( enu . hasMoreElements ( ) ) { JarEntry je = enu . nextElement ( ) ; File fl = new File ( destDir , je . getName ( ) ) ; if ( ! fl . exists ( ) ) { fl...
Extracts a jar file into a target destination directory
203
11
158,428
public void scan ( PathSource fileSource , Collection < FractionDetector < PathSource > > detectors , Consumer < File > handleFileAsZip ) throws IOException { detectors . stream ( ) . filter ( d -> FileDetector . class . isAssignableFrom ( d . getClass ( ) ) ) . forEach ( d -> d . detect ( fileSource ) ) ; }
scans all xml files
81
5
158,429
void observesAfterBeanDiscovery ( @ Observes final AfterBeanDiscovery event , final BeanManager beanManager ) { log . debugf ( "observesAfterBeanDiscovery, %s" , claims ) ; installClaimValueProducerMethodsViaSyntheticBeans ( event , beanManager ) ; }
Create producer methods for each ClaimValue injection site
68
9
158,430
public Collection < ArtifactSpec > getDirectDependencies ( boolean includeUnsolved , boolean includePresolved ) { Set < ArtifactSpec > deps = new LinkedHashSet <> ( ) ; if ( includeUnsolved ) { deps . addAll ( getDirectDeps ( ) ) ; } if ( includePresolved ) { deps . addAll ( presolvedDependencies . getDirectDeps ( ) ) ...
Get the collection of direct dependencies included in this instance .
98
11
158,431
public Set < ArtifactSpec > getTransientDependencies ( ) { if ( null == allTransient ) { allTransient = getTransientDependencies ( true , true ) ; } return allTransient ; }
Get the collection of all transient dependencies defined in this instance .
47
12
158,432
public Set < ArtifactSpec > getTransientDependencies ( boolean includeUnsolved , boolean includePresolved ) { Set < ArtifactSpec > deps = new HashSet <> ( ) ; List < DependencyTree < ArtifactSpec > > sources = new ArrayList <> ( ) ; if ( includeUnsolved ) { sources . add ( this ) ; } if ( includePresolved ) { sources ....
Get the collection of transient dependencies defined in this instance .
161
11
158,433
public Collection < ArtifactSpec > getTransientDependencies ( ArtifactSpec artifact ) { Set < ArtifactSpec > deps = new HashSet <> ( ) ; if ( this . isDirectDep ( artifact ) ) { deps . addAll ( getTransientDeps ( artifact ) ) ; } if ( presolvedDependencies . isDirectDep ( artifact ) ) { deps . addAll ( presolvedDepende...
Get the transient dependencies defined for the given artifact specification .
107
11
158,434
public EnhancedServer remoteConnection ( String name ) { return remoteConnection ( name , ( config ) - > { } ) ; } /** * Setup a named remote connection to a remote message broker. * * @param name The name of the connection. * @param config The configuration. * @return This server. */ public EnhancedServer remoteConnec...
Setup a default named remote connection to a remote message broker .
588
12
158,435
public JsonValue generalJsonValueProducer ( InjectionPoint ip ) { String name = getName ( ip ) ; Object value = getValue ( name , false ) ; JsonValue jsonValue = wrapValue ( value ) ; return jsonValue ; }
Return the indicated claim value as a JsonValue
54
10
158,436
private void cleanup ( ) throws IOException { JarFileManager . INSTANCE . close ( ) ; TempFileManager . INSTANCE . close ( ) ; MavenResolvers . close ( ) ; }
Clean up all open resources .
42
6
158,437
private void closeRemoteResources ( ) { if ( reader != null ) { try { reader . close ( ) ; } catch ( final IOException ignore ) { } reader = null ; } if ( writer != null ) { writer . close ( ) ; writer = null ; } if ( socketOutstream != null ) { try { socketOutstream . close ( ) ; } catch ( final IOException ignore ) {...
Safely close remote resources
159
5
158,438
public static ArtifactCoordinates fromString ( String string ) { final Matcher matcher = VALID_PATTERN . matcher ( string ) ; if ( matcher . matches ( ) ) { if ( matcher . group ( 4 ) != null ) { return new ArtifactCoordinates ( matcher . group ( 1 ) , matcher . group ( 2 ) , matcher . group ( 3 ) , matcher . group ( 4...
Parse a string and produce artifact coordinates from it .
146
11
158,439
public String relativeArtifactPath ( char separator ) { String artifactId1 = getArtifactId ( ) ; String version1 = getVersion ( ) ; StringBuilder builder = new StringBuilder ( getGroupId ( ) . replace ( ' ' , separator ) ) ; builder . append ( separator ) . append ( artifactId1 ) . append ( separator ) ; String pathVer...
Create a relative repository path for the given artifact coordinates .
195
11
158,440
public Module withImportIncludePath ( String path ) { checkList ( this . imports , INCLUDE ) ; this . imports . get ( INCLUDE ) . add ( path ) ; return this ; }
Add a path to import from this module .
46
9
158,441
public Module withImportExcludePath ( String path ) { checkList ( this . imports , EXCLUDE ) ; this . imports . get ( EXCLUDE ) . add ( path ) ; return this ; }
Add a path to exclude from importing from this module .
46
11
158,442
public Module withExportIncludePath ( String path ) { checkList ( this . exports , INCLUDE ) ; this . exports . get ( INCLUDE ) . add ( path ) ; return this ; }
Add a path to export from this module .
46
9
158,443
public Module withExportExcludePath ( String path ) { checkList ( this . exports , EXCLUDE ) ; this . exports . get ( EXCLUDE ) . add ( path ) ; return this ; }
Add a path to exclude from exporting from this module .
46
11
158,444
public String getRelativePath ( ) { if ( basePath == null ) { return source . toString ( ) ; } return basePath . relativize ( source ) . toString ( ) ; }
Gets the relative file path instead of the absolute .
43
11
158,445
public Section mbean ( String name , MBeanRule . Consumer config ) { MBeanRule rule = new MBeanRule ( name ) ; config . accept ( rule ) ; this . rules . add ( rule ) ; return this ; }
Define a rule for a given MBean .
52
11
158,446
public URLConnection openConnection ( URL url ) throws IOException { Proxy proxy = getProxyFor ( url ) ; URLConnection conn = null ; if ( proxy != null ) { conn = url . openConnection ( proxy . getProxy ( ) ) ; proxy . authenticate ( conn ) ; } else { conn = url . openConnection ( ) ; } return conn ; }
Opens a connection with appropriate proxy and credentials if required .
76
12
158,447
public static JoseFactory instance ( ) { if ( instance == null ) { synchronized ( JoseFactory . class ) { if ( instance != null ) { return instance ; } ClassLoader cl = AccessController . doPrivileged ( ( PrivilegedAction < ClassLoader > ) ( ) -> Thread . currentThread ( ) . getContextClassLoader ( ) ) ; if ( cl == nul...
Obtain the JoseFactory using the ServiceLoader pattern .
180
11
158,448
private static JoseFactory loadSpi ( ClassLoader cl ) { if ( cl == null ) { return null ; } // start from the root CL and go back down to the TCCL JoseFactory instance = loadSpi ( cl . getParent ( ) ) ; if ( instance == null ) { ServiceLoader < JoseFactory > sl = ServiceLoader . load ( JoseFactory . class , cl ) ; URL ...
Look for a JoseFactory service implementation using the ServiceLoader .
294
12
158,449
public static void addService ( ServiceTarget serviceTarget , SwarmContentRepository repository ) { serviceTarget . addService ( SERVICE_NAME , repository ) . setInitialMode ( ServiceController . Mode . ACTIVE ) . install ( ) ; }
Install the service .
49
4
158,450
public void proxyService ( String serviceName , String contextPath ) { if ( proxiedServiceMappings ( ) . containsValue ( contextPath ) ) { throw new IllegalArgumentException ( "Cannot proxy multiple services under the same context path" ) ; } proxiedServiceMappings . put ( serviceName , contextPath ) ; }
Set up a load - balancing reverse proxy for the given service at the given context path . Requests to this proxy will be load - balanced among all instances of the service as provided by our Topology .
70
41
158,451
private File buildWar ( List < ArtifactOrFile > classPathEntries ) { try { List < String > classesUrls = classPathEntries . stream ( ) . map ( ArtifactOrFile :: file ) . filter ( this :: isDirectory ) . filter ( url -> url . contains ( "classes" ) ) . collect ( Collectors . toList ( ) ) ; List < File > classpathJars = ...
builds war with classes inside
179
6
158,452
private static void resolveDependencies ( Collection < ArtifactSpec > collection , ShrinkwrapArtifactResolvingHelper helper ) { // Identify the artifact specs that need resolution. // Ideally, there should be none at this point. collection . forEach ( spec -> { if ( spec . file == null ) { // Resolve it. ArtifactSpec r...
Resolve the given collection of ArtifactSpec references . This method attempts the resolution and ensures that the references are updated to be as complete as possible .
128
29
158,453
public SocketBinding socketBinding ( String name ) { return this . socketBindings . stream ( ) . filter ( e -> e . name ( ) . equals ( name ) ) . findFirst ( ) . orElse ( null ) ; }
Retrieve a socket - binding by name .
51
9
158,454
@ Override public void handleDeployment ( DeploymentInfo deploymentInfo , ServletContext servletContext ) { deploymentInfo . addAuthenticationMechanism ( "MP-JWT" , new JWTAuthMechanismFactory ( ) ) ; deploymentInfo . addInnerHandlerChainWrapper ( MpJwtPrincipalHandler :: new ) ; }
This registers the JWTAuthMechanismFactory under the MP - JWT mechanism name
74
18
158,455
@ Override public long alloc ( int chunks , long prevPos , int prevChunks ) { long ret = s . allocReturnCode ( chunks ) ; if ( prevPos >= 0 ) s . free ( prevPos , prevChunks ) ; if ( ret >= 0 ) return ret ; while ( true ) { s . nextTier ( ) ; ret = s . allocReturnCode ( chunks ) ; if ( ret >= 0 ) return ret ; } }
Move only to next tiers to avoid double visiting of relocated entries during iteration
94
14
158,456
private static String getVersionFromPom ( ) { final String absolutePath = new File ( BuildVersion . class . getResource ( BuildVersion . class . getSimpleName ( ) + ".class" ) . getPath ( ) ) . getParentFile ( ) . getParentFile ( ) . getParentFile ( ) . getParentFile ( ) . getParentFile ( ) . getParentFile ( ) . getPar...
reads the pom file to get this version only to be used for development or within the IDE .
243
20
158,457
public void setupStyleable ( Context context , AttributeSet attrs ) { TypedArray typedArray = context . obtainStyledAttributes ( attrs , R . styleable . RoundCornerProgress ) ; radius = ( int ) typedArray . getDimension ( R . styleable . RoundCornerProgress_rcRadius , dp2px ( DEFAULT_PROGRESS_RADIUS ) ) ; padding = ( i...
Retrieve initial parameter from view attribute
469
7
158,458
@ Override protected void onSizeChanged ( int newWidth , int newHeight , int oldWidth , int oldHeight ) { super . onSizeChanged ( newWidth , newHeight , oldWidth , oldHeight ) ; if ( ! isInEditMode ( ) ) { totalWidth = newWidth ; drawAll ( ) ; postDelayed ( new Runnable ( ) { @ Override public void run ( ) { drawPrimar...
Progress bar always refresh when view size has changed
108
9
158,459
@ SuppressWarnings ( "deprecation" ) private void drawBackgroundProgress ( ) { GradientDrawable backgroundDrawable = createGradientDrawable ( colorBackground ) ; int newRadius = radius - ( padding / 2 ) ; backgroundDrawable . setCornerRadii ( new float [ ] { newRadius , newRadius , newRadius , newRadius , newRadius , n...
Draw progress background
158
3
158,460
protected GradientDrawable createGradientDrawable ( int color ) { GradientDrawable gradientDrawable = new GradientDrawable ( ) ; gradientDrawable . setShape ( GradientDrawable . RECTANGLE ) ; gradientDrawable . setColor ( color ) ; return gradientDrawable ; }
Create an empty color rectangle gradient drawable
65
8
158,461
private void setupReverse ( LinearLayout layoutProgress ) { RelativeLayout . LayoutParams progressParams = ( RelativeLayout . LayoutParams ) layoutProgress . getLayoutParams ( ) ; removeLayoutParamsRule ( progressParams ) ; if ( isReverse ) { progressParams . addRule ( RelativeLayout . ALIGN_PARENT_RIGHT ) ; // For sup...
Change progress position by depending on isReverse flag
239
11
158,462
private void removeLayoutParamsRule ( RelativeLayout . LayoutParams layoutParams ) { if ( Build . VERSION . SDK_INT >= Build . VERSION_CODES . JELLY_BEAN_MR1 ) { layoutParams . removeRule ( RelativeLayout . ALIGN_PARENT_RIGHT ) ; layoutParams . removeRule ( RelativeLayout . ALIGN_PARENT_END ) ; layoutParams . removeRul...
Remove all of relative align rule
178
6
158,463
public int sendTCP ( Object object ) { if ( object == null ) throw new IllegalArgumentException ( "object cannot be null." ) ; try { int length = tcp . send ( this , object ) ; if ( length == 0 ) { if ( TRACE ) trace ( "kryonet" , this + " TCP had nothing to send." ) ; } else if ( DEBUG ) { String objectString = object...
Sends the object over the network using TCP .
279
10
158,464
public int sendUDP ( Object object ) { if ( object == null ) throw new IllegalArgumentException ( "object cannot be null." ) ; SocketAddress address = udpRemoteAddress ; if ( address == null && udp != null ) address = udp . connectedAddress ; if ( address == null && isConnected ) throw new IllegalStateException ( "Conn...
Sends the object over the network using UDP .
387
10
158,465
public InetSocketAddress getRemoteAddressTCP ( ) { SocketChannel socketChannel = tcp . socketChannel ; if ( socketChannel != null ) { Socket socket = tcp . socketChannel . socket ( ) ; if ( socket != null ) { return ( InetSocketAddress ) socket . getRemoteSocketAddress ( ) ; } } return null ; }
Returns the IP address and port of the remote end of the TCP connection or null if this connection is not connected .
72
23
158,466
public InetSocketAddress getRemoteAddressUDP ( ) { InetSocketAddress connectedAddress = udp . connectedAddress ; if ( connectedAddress != null ) return connectedAddress ; return udpRemoteAddress ; }
Returns the IP address and port of the remote end of the UDP connection or null if this connection is not connected .
44
23
158,467
public void close ( ) { Connection [ ] connections = this . connections ; for ( int i = 0 ; i < connections . length ; i ++ ) connections [ i ] . removeListener ( invokeListener ) ; synchronized ( instancesLock ) { ArrayList < ObjectSpace > temp = new ArrayList ( Arrays . asList ( instances ) ) ; temp . remove ( this )...
Causes this ObjectSpace to stop listening to the connections for method invocation messages .
120
16
158,468
public void addConnection ( Connection connection ) { if ( connection == null ) throw new IllegalArgumentException ( "connection cannot be null." ) ; synchronized ( connectionsLock ) { Connection [ ] newConnections = new Connection [ connections . length + 1 ] ; newConnections [ 0 ] = connection ; System . arraycopy ( ...
Allows the remote end of the specified connection to access objects registered in this ObjectSpace .
124
17
158,469
public void removeConnection ( Connection connection ) { if ( connection == null ) throw new IllegalArgumentException ( "connection cannot be null." ) ; connection . removeListener ( invokeListener ) ; synchronized ( connectionsLock ) { ArrayList < Connection > temp = new ArrayList ( Arrays . asList ( connections ) ) ;...
Removes the specified connection it will no longer be able to access objects registered in this ObjectSpace .
118
20
158,470
static Object getRegisteredObject ( Connection connection , int objectID ) { ObjectSpace [ ] instances = ObjectSpace . instances ; for ( int i = 0 , n = instances . length ; i < n ; i ++ ) { ObjectSpace objectSpace = instances [ i ] ; // Check if the connection is in this ObjectSpace. Connection [ ] connections = objec...
Returns the first object registered with the specified ID in any of the ObjectSpaces the specified connection belongs to .
145
22
158,471
static int getRegisteredID ( Connection connection , Object object ) { ObjectSpace [ ] instances = ObjectSpace . instances ; for ( int i = 0 , n = instances . length ; i < n ; i ++ ) { ObjectSpace objectSpace = instances [ i ] ; // Check if the connection is in this ObjectSpace. Connection [ ] connections = objectSpace...
Returns the first ID registered for the specified object with any of the ObjectSpaces the specified connection belongs to or Integer . MAX_VALUE if not found .
156
31
158,472
static public void registerClasses ( final Kryo kryo ) { kryo . register ( Object [ ] . class ) ; kryo . register ( InvokeMethod . class ) ; FieldSerializer < InvokeMethodResult > resultSerializer = new FieldSerializer < InvokeMethodResult > ( kryo , InvokeMethodResult . class ) { public void write ( Kryo kryo , Output...
Registers the classes needed to use ObjectSpaces . This should be called before any connections are opened .
396
21
158,473
public void ensureCapacity ( int additionalCapacity ) { int sizeNeeded = size + additionalCapacity ; if ( sizeNeeded >= threshold ) resize ( ObjectMap . nextPowerOfTwo ( ( int ) ( sizeNeeded / loadFactor ) ) ) ; }
Increases the size of the backing array to acommodate the specified number of additional items . Useful before adding many items to avoid multiple backing array resizes .
56
32
158,474
public InetAddress discoverHost ( int udpPort , int timeoutMillis ) { DatagramSocket socket = null ; try { socket = new DatagramSocket ( ) ; broadcast ( udpPort , socket ) ; socket . setSoTimeout ( timeoutMillis ) ; DatagramPacket packet = discoveryHandler . onRequestNewDatagramPacket ( ) ; try { socket . receive ( pac...
Broadcasts a UDP message on the LAN to discover any running servers . The address of the first server to respond is returned .
227
25
158,475
public List < InetAddress > discoverHosts ( int udpPort , int timeoutMillis ) { List < InetAddress > hosts = new ArrayList < InetAddress > ( ) ; DatagramSocket socket = null ; try { socket = new DatagramSocket ( ) ; broadcast ( udpPort , socket ) ; socket . setSoTimeout ( timeoutMillis ) ; while ( true ) { DatagramPack...
Broadcasts a UDP message on the LAN to discover any running servers .
260
14
158,476
public void sendToAllTCP ( Object object ) { Connection [ ] connections = this . connections ; for ( int i = 0 , n = connections . length ; i < n ; i ++ ) { Connection connection = connections [ i ] ; connection . sendTCP ( object ) ; } }
BOZO - Provide mechanism for sending to multiple clients without serializing multiple times .
61
17
158,477
@ Override public void internalWrite ( Server server , Query query , ImmutableList < Result > results ) throws Exception { checkFile ( query ) ; List < String > typeNames = getTypeNames ( ) ; for ( Result result : results ) { String [ ] keyString = KeyUtils . getKeyString ( server , query , result , typeNames , null ) ...
The meat of the output . Nagios format ..
317
10
158,478
protected String nagiosCheckValue ( String value , String composeRange ) { List < String > simpleRange = Arrays . asList ( composeRange . split ( "," ) ) ; double doubleValue = Double . parseDouble ( value ) ; if ( composeRange . isEmpty ( ) ) { return "0" ; } if ( simpleRange . size ( ) == 1 ) { if ( composeRange . en...
Define if a value is in a critical warning or ok state .
214
14
158,479
@ Override public void prepareSender ( ) throws LifecycleException { if ( host == null || port == null ) { throw new LifecycleException ( "Host and port for " + this . getClass ( ) . getSimpleName ( ) + " output can't be null" ) ; } try { this . dgSocket = new DatagramSocket ( ) ; this . address = new InetSocketAddress...
Setup at start of the writer .
132
7
158,480
@ Override protected void sendOutput ( String metricLine ) throws IOException { DatagramPacket packet ; byte [ ] data ; data = metricLine . getBytes ( "UTF-8" ) ; packet = new DatagramPacket ( data , 0 , data . length , this . address ) ; this . dgSocket . send ( packet ) ; }
Send a single metric to TCollector .
75
9
158,481
public static boolean isNumeric ( Object value ) { if ( value == null ) return false ; if ( value instanceof Number ) return true ; if ( value instanceof String ) { String stringValue = ( String ) value ; if ( isNullOrEmpty ( stringValue ) ) return true ; return isNumber ( stringValue ) ; } return false ; }
Useful for figuring out if an Object is a number .
74
12
158,482
@ Override public void internalWrite ( Server server , Query query , ImmutableList < Result > results ) throws Exception { this . startOutput ( ) ; for ( String formattedResult : messageFormatter . formatResults ( results , server ) ) { log . debug ( "Sending result: {}" , formattedResult ) ; this . sendOutput ( format...
Write the results of the query .
85
7
158,483
public static String getKeyString ( Server server , Query query , Result result , List < String > typeNames , String rootPrefix ) { StringBuilder sb = new StringBuilder ( ) ; addRootPrefix ( rootPrefix , sb ) ; addAlias ( server , sb ) ; addSeparator ( sb ) ; addMBeanIdentifier ( query , result , sb ) ; addSeparator ( ...
Gets the key string .
132
6
158,484
public static String getKeyString ( Query query , Result result , List < String > typeNames ) { StringBuilder sb = new StringBuilder ( ) ; addMBeanIdentifier ( query , result , sb ) ; addSeparator ( sb ) ; addTypeName ( query , result , typeNames , sb ) ; addKeyString ( query , result , sb ) ; return sb . toString ( ) ...
Gets the key string without rootPrefix nor Alias
93
12
158,485
public static String getPrefixedKeyString ( Query query , Result result , List < String > typeNames ) { StringBuilder sb = new StringBuilder ( ) ; addTypeName ( query , result , typeNames , sb ) ; addKeyString ( query , result , sb ) ; return sb . toString ( ) ; }
Gets the key string without rootPrefix or Alias
71
12
158,486
private static void addMBeanIdentifier ( Query query , Result result , StringBuilder sb ) { if ( result . getKeyAlias ( ) != null ) { sb . append ( result . getKeyAlias ( ) ) ; } else if ( query . isUseObjDomainAsKey ( ) ) { sb . append ( StringUtils . cleanupStr ( result . getObjDomain ( ) , query . isAllowDottedKeys ...
Adds a key to the StringBuilder
124
7
158,487
@ Override public void validateSetup ( Server server , Query query ) throws ValidationException { // Determine the spoofed hostname spoofedHostName = getSpoofedHostName ( server . getHost ( ) , server . getAlias ( ) ) ; log . debug ( "Validated Ganglia metric [" + HOST + ": " + host + ", " + PORT + ": " + port + ", " +...
Parse and validate settings .
220
6
158,488
@ Override public void internalWrite ( Server server , Query query , ImmutableList < Result > results ) throws Exception { for ( final Result result : results ) { final String name = KeyUtils . getKeyString ( query , result , getTypeNames ( ) ) ; Object transformedValue = valueTransformer . apply ( result . getValue ( ...
Send query result values to Ganglia .
186
8
158,489
private static GMetricType getType ( final Object obj ) { // FIXME This is far from covering all cases. // FIXME Wasteful use of high capacity types (eg Short => INT32) // Direct mapping when possible if ( obj instanceof Long || obj instanceof Integer || obj instanceof Byte || obj instanceof Short ) return GMetricType ...
Guess the Ganglia gmetric type to use for a given object .
201
16
158,490
public static Boolean getBooleanSetting ( Map < String , Object > settings , String key , Boolean defaultVal ) { final Object value = settings . get ( key ) ; if ( value == null ) { return defaultVal ; } if ( value instanceof Boolean ) { return ( Boolean ) value ; } if ( value instanceof String ) { return Boolean . val...
Gets a Boolean value for the key returning the default value given if not specified or not a valid boolean value .
88
23
158,491
public static Integer getIntegerSetting ( Map < String , Object > settings , String key , Integer defaultVal ) { final Object value = settings . get ( key ) ; if ( value == null ) { return defaultVal ; } if ( value instanceof Number ) { return ( ( Number ) value ) . intValue ( ) ; } if ( value instanceof String ) { try...
Gets an Integer value for the key returning the default value given if not specified or not a valid numeric value .
110
23
158,492
public static String getStringSetting ( Map < String , Object > settings , String key , String defaultVal ) { final Object value = settings . get ( key ) ; return value != null ? value . toString ( ) : defaultVal ; }
Gets a String value for the setting returning the default value if not specified .
50
16
158,493
protected static int getIntSetting ( Map < String , Object > settings , String key , int defaultVal ) throws IllegalArgumentException { if ( settings . containsKey ( key ) ) { final Object objectValue = settings . get ( key ) ; if ( objectValue == null ) { throw new IllegalArgumentException ( "Setting '" + key + " null...
Gets an int value for the setting returning the default value if not specified .
148
16
158,494
protected VelocityEngine getVelocityEngine ( List < String > paths ) { VelocityEngine ve = new VelocityEngine ( ) ; ve . setProperty ( RuntimeConstants . RESOURCE_LOADER , "file" ) ; ve . setProperty ( "cp.resource.loader.class" , "org.apache.velocity.runtime.resource.loader.FileResourceLoader" ) ; ve . setProperty ( "...
Sets velocity up to load resources from a list of paths .
208
13
158,495
public JmxProcess parseProcess ( File file ) throws IOException { String fileName = file . getName ( ) ; ObjectMapper mapper = fileName . endsWith ( ".yml" ) || fileName . endsWith ( ".yaml" ) ? yamlMapper : jsonMapper ; JsonNode jsonNode = mapper . readTree ( file ) ; JmxProcess jmx = mapper . treeToValue ( jsonNode ,...
Uses jackson to load json configuration from a File into a full object tree representation of that json .
117
21
158,496
void addTags ( StringBuilder resultString , Server server ) { if ( hostnameTag ) { addTag ( resultString , "host" , server . getLabel ( ) ) ; } // Add the constant tag names and values. for ( Map . Entry < String , String > tagEntry : tags . entrySet ( ) ) { addTag ( resultString , tagEntry . getKey ( ) , tagEntry . ge...
Add tags to the given result string including a host tag with the name of the server and all of the tags defined in the settings entry in the configuration file within the tag element .
94
36
158,497
void addTag ( StringBuilder resultString , String tagName , String tagValue ) { resultString . append ( " " ) ; resultString . append ( sanitizeString ( tagName ) ) ; resultString . append ( "=" ) ; resultString . append ( sanitizeString ( tagValue ) ) ; }
Add one tag with the provided name and value to the given result string .
67
15
158,498
private void formatResultString ( StringBuilder resultString , String metricName , long epoch , Object value ) { resultString . append ( sanitizeString ( metricName ) ) ; resultString . append ( " " ) ; resultString . append ( Long . toString ( epoch ) ) ; resultString . append ( " " ) ; resultString . append ( sanitiz...
Format the result string given the class name and attribute name of the source value the timestamp and the value .
89
21
158,499
protected void processOneMetric ( List < String > resultStrings , Server server , Result result , Object value , String addTagName , String addTagValue ) { String metricName = this . metricNameStrategy . formatName ( result ) ; // // Skip any non-numeric values since OpenTSDB only supports numeric metrics. // if ( isNu...
Process a single metric from the given JMX query result with the specified value .
223
16