idx int64 0 41.2k | question stringlengths 83 4.15k | target stringlengths 5 715 |
|---|---|---|
16,000 | private void readTableIndex ( TableEntry10 table ) throws IOException { for ( Segment10 segment : tableSegments ( table ) ) { try ( ReadStream is = openRead ( segment . address ( ) , segment . length ( ) ) ) { readSegmentIndex ( is , segment ) ; } } } | Read all page metadata for a table . |
16,001 | private void readSegmentIndex ( ReadStream is , Segment10 segment ) throws IOException { int address = segment . length ( ) - BLOCK_SIZE ; TempBuffer tBuf = TempBuffer . create ( ) ; byte [ ] buffer = tBuf . buffer ( ) ; is . position ( address ) ; is . read ( buffer , 0 , BLOCK_SIZE ) ; int tail = BitsUtil . readInt16 ( buffer , FOOTER_OFFSET ) ; if ( tail < TABLE_KEY_SIZE + 8 || tail > BLOCK_SIZE - 8 ) { return ; } int offset = INDEX_OFFSET ; while ( offset < tail ) { int type = buffer [ offset ++ ] & 0xff ; int pid = BitsUtil . readInt ( buffer , offset ) ; offset += 4 ; int nextPid = BitsUtil . readInt ( buffer , offset ) ; offset += 4 ; int entryAddress = BitsUtil . readInt ( buffer , offset ) ; offset += 4 ; int entryLength = BitsUtil . readInt ( buffer , offset ) ; offset += 4 ; if ( pid <= 1 ) { System . out . println ( "INVALID_PID: " + pid ) ; return ; } switch ( PageType10 . values ( ) [ type ] ) { case LEAF : addLeaf ( segment , pid , nextPid , entryAddress , entryLength ) ; break ; case LEAF_DELTA : addLeafDelta ( segment , pid , nextPid , entryAddress , entryLength ) ; break ; default : System . out . println ( "UNKNOWN-SEGMENT: " + PageType10 . values ( ) [ type ] ) ; } } } | Read page index from a segment . |
16,002 | private void addLeaf ( Segment10 segment , int pid , int nextPid , int address , int length ) { Page10 page = _pageMap . get ( pid ) ; if ( page != null && page . sequence ( ) < segment . sequence ( ) ) { return ; } page = new Page10 ( PageType10 . LEAF , segment , pid , nextPid , address , length ) ; _pageMap . put ( pid , page ) ; } | Adds a new leaf entry to the page list . |
16,003 | private void addLeafDelta ( Segment10 segment , int pid , int nextPid , int address , int length ) { Page10 page = _pageMap . get ( pid ) ; if ( page != null && page . sequence ( ) < segment . sequence ( ) ) { return ; } if ( page != null ) { page . addDelta ( address , length ) ; } } | Adds a new leaf delta to the page list . |
16,004 | private ArrayList < Segment10 > tableSegments ( TableEntry10 table ) { ArrayList < Segment10 > tableSegments = new ArrayList < > ( ) ; for ( Segment10 segment : _segments ) { if ( Arrays . equals ( segment . key ( ) , table . key ( ) ) ) { tableSegments . add ( segment ) ; } } Collections . sort ( tableSegments , ( x , y ) -> Long . signum ( y . sequence ( ) - x . sequence ( ) ) ) ; return tableSegments ; } | Returns segments for a table in reverse sequence order . |
16,005 | private void upgradeLeaf ( TableEntry10 table , TableUpgrade upgradeTable , Page10 page ) throws IOException { try ( ReadStream is = openRead ( page . segment ( ) . address ( ) , page . segment ( ) . length ( ) ) ) { is . position ( page . address ( ) ) ; byte [ ] minKey = new byte [ table . keyLength ( ) ] ; byte [ ] maxKey = new byte [ table . keyLength ( ) ] ; is . read ( minKey , 0 , minKey . length ) ; is . read ( maxKey , 0 , maxKey . length ) ; int blocks = BitsUtil . readInt16 ( is ) ; for ( int i = 0 ; i < blocks ; i ++ ) { upgradeLeafBlock ( is , table , upgradeTable , page ) ; } } } | Upgrade a table page . |
16,006 | private void upgradeLeafBlock ( ReadStream is , TableEntry10 table , TableUpgrade upgradeTable , Page10 page ) throws IOException { TempBuffer tBuf = TempBuffer . create ( ) ; byte [ ] buffer = tBuf . buffer ( ) ; int blobLen = BitsUtil . readInt16 ( is ) ; is . readAll ( buffer , 0 , blobLen ) ; int rowDataLen = BitsUtil . readInt16 ( is ) ; int rowOffset = buffer . length - rowDataLen ; is . readAll ( buffer , rowOffset , rowDataLen ) ; int rowLen = table . rowLength ( ) ; int keyLen = table . keyLength ( ) ; while ( rowOffset < buffer . length ) { int code = buffer [ rowOffset ] & CODE_MASK ; switch ( code ) { case INSERT : rowInsert ( table . row ( ) , upgradeTable , buffer , rowOffset ) ; rowOffset += rowLen ; break ; case REMOVE : rowOffset += keyLen + STATE_LENGTH ; break ; default : System . out . println ( "UNKNOWN: " + Integer . toHexString ( code ) ) ; return ; } } tBuf . free ( ) ; } | Reads data for a leaf . |
16,007 | private void upgradeDelta ( TableEntry10 table , TableUpgrade upgradeTable , Page10 page , Delta10 delta ) throws IOException { try ( ReadStream is = openRead ( page . segment ( ) . address ( ) , page . segment ( ) . length ( ) ) ) { is . position ( delta . address ( ) ) ; long tail = delta . address ( ) + delta . length ( ) ; while ( is . position ( ) < tail ) { upgradeDelta ( is , table , upgradeTable , page ) ; } } } | Upgrade a table leaf delta . |
16,008 | private void rowInsert ( RowUpgrade row , TableUpgrade upgradeTable , byte [ ] buffer , int offset ) { Cursor10 cursor = new Cursor10 ( row , buffer , offset ) ; upgradeTable . row ( cursor ) ; } | Insert a row . |
16,009 | private ReadStream openRead ( long address , int size ) { InStore inStore = _store . openRead ( address , size ) ; InStoreStream is = new InStoreStream ( inStore , address , address + size ) ; return new ReadStream ( new VfsStream ( is ) ) ; } | Open a read stream to a segment . |
16,010 | public void writeClass ( String className ) throws IOException { ConstantPool pool = _javaClass . getConstantPool ( ) ; ClassConstant classConst = pool . getClass ( className ) ; if ( classConst != null ) writeShort ( classConst . getIndex ( ) ) ; else writeShort ( 0 ) ; } | Writes a class constant . |
16,011 | public void writeUTF8Const ( String value ) throws IOException { ConstantPool pool = _javaClass . getConstantPool ( ) ; Utf8Constant entry = pool . getUTF8 ( value ) ; if ( entry != null ) writeShort ( entry . getIndex ( ) ) ; else throw new NullPointerException ( L . l ( "utf8 constant {0} does not exist" , value ) ) ; } | Writes a UTF8 constant . |
16,012 | public void writeFloat ( float v ) throws IOException { int bits = Float . floatToIntBits ( v ) ; _os . write ( bits >> 24 ) ; _os . write ( bits >> 16 ) ; _os . write ( bits >> 8 ) ; _os . write ( bits ) ; } | Writes a float |
16,013 | public void writeDouble ( double v ) throws IOException { long bits = Double . doubleToLongBits ( v ) ; _os . write ( ( int ) ( bits >> 56 ) ) ; _os . write ( ( int ) ( bits >> 48 ) ) ; _os . write ( ( int ) ( bits >> 40 ) ) ; _os . write ( ( int ) ( bits >> 32 ) ) ; _os . write ( ( int ) ( bits >> 24 ) ) ; _os . write ( ( int ) ( bits >> 16 ) ) ; _os . write ( ( int ) ( bits >> 8 ) ) ; _os . write ( ( int ) bits ) ; } | Writes a double |
16,014 | public String getDefaultArg ( ) { String defaultArg = null ; if ( _defaultArgs . length > 0 ) { defaultArg = _defaultArgs [ 0 ] ; } return defaultArg ; } | finds first argument that follows no dash prefixed token |
16,015 | private Iterator detailChildrenIterator ( Detail detail ) { DetailEntry firstDetailEntry = getFirstDetailEntry ( detail ) ; if ( firstDetailEntry != null ) { String localName = firstDetailEntry . getElementName ( ) . getLocalName ( ) ; if ( localName . endsWith ( "Exception" ) ) { return firstDetailEntry . getChildElements ( ) ; } } return detail . getDetailEntries ( ) ; } | It can either e within an extra tag or directly . |
16,016 | private boolean [ ] parseRange ( String range , int rangeMin , int rangeMax ) throws ConfigException { boolean [ ] values = new boolean [ rangeMax + 1 ] ; int j = 0 ; while ( j < range . length ( ) ) { char ch = range . charAt ( j ) ; int min = 0 ; int max = 0 ; int step = 1 ; if ( ch == '*' ) { min = rangeMin ; max = rangeMax ; j ++ ; } else if ( '0' <= ch && ch <= '9' ) { for ( ; j < range . length ( ) && '0' <= ( ch = range . charAt ( j ) ) && ch <= '9' ; j ++ ) { min = 10 * min + ch - '0' ; } if ( j < range . length ( ) && ch == '-' ) { for ( j ++ ; j < range . length ( ) && '0' <= ( ch = range . charAt ( j ) ) && ch <= '9' ; j ++ ) { max = 10 * max + ch - '0' ; } } else max = min ; } else throw new ConfigException ( L . l ( "'{0}' is an illegal cron range" , range ) ) ; if ( min < rangeMin ) throw new ConfigException ( L . l ( "'{0}' is an illegal cron range (min value is too small)" , range ) ) ; else if ( rangeMax < max ) throw new ConfigException ( L . l ( "'{0}' is an illegal cron range (max value is too large)" , range ) ) ; if ( j < range . length ( ) && ( ch = range . charAt ( j ) ) == '/' ) { step = 0 ; for ( j ++ ; j < range . length ( ) && '0' <= ( ch = range . charAt ( j ) ) && ch <= '9' ; j ++ ) { step = 10 * step + ch - '0' ; } if ( step == 0 ) throw new ConfigException ( L . l ( "'{0}' is an illegal cron range" , range ) ) ; } if ( range . length ( ) <= j ) { } else if ( ch == ',' ) j ++ ; else { throw new ConfigException ( L . l ( "'{0}' is an illegal cron range" , range ) ) ; } for ( ; min <= max ; min += step ) values [ min ] = true ; } return values ; } | parses a range following cron rules . |
16,017 | public void init ( StreamImpl source ) { _disableClose = false ; _isDisableCloseSource = false ; _readTime = 0 ; if ( _source != null && _source != source ) { close ( ) ; } if ( source == null ) { throw new IllegalArgumentException ( ) ; } _source = source ; if ( source . canRead ( ) ) { if ( _tempRead == null ) { _tempRead = TempBuffer . create ( ) ; _readBuffer = _tempRead . buffer ( ) ; } } _readOffset = 0 ; _readLength = 0 ; _readEncoding = null ; _readEncodingName = "ISO-8859-1" ; } | Initializes the stream with a given source . |
16,018 | public void setEncoding ( String encoding ) throws UnsupportedEncodingException { String mimeName = Encoding . getMimeName ( encoding ) ; if ( mimeName != null && mimeName . equals ( _readEncodingName ) ) return ; _readEncoding = Encoding . getReadEncoding ( this , encoding ) ; _readEncodingName = mimeName ; } | Sets the current read encoding . The encoding can either be a Java encoding name or a mime encoding . |
16,019 | public final int readChar ( ) throws IOException { if ( _readEncoding != null ) { int ch = _readEncoding . read ( ) ; return ch ; } if ( _readLength <= _readOffset ) { if ( ! readBuffer ( ) ) return - 1 ; } return _readBuffer [ _readOffset ++ ] & 0xff ; } | Reads a character from the stream returning - 1 on end of file . |
16,020 | public final int read ( char [ ] buf , int offset , int length ) throws IOException { if ( _readEncoding != null ) { return _readEncoding . read ( buf , offset , length ) ; } byte [ ] readBuffer = _readBuffer ; if ( readBuffer == null ) return - 1 ; int readOffset = _readOffset ; int readLength = _readLength ; int sublen = Math . min ( length , readLength - readOffset ) ; if ( readLength <= readOffset ) { if ( ! readBuffer ( ) ) { return - 1 ; } readLength = _readLength ; readOffset = _readOffset ; sublen = Math . min ( length , readLength - readOffset ) ; } for ( int i = sublen - 1 ; i >= 0 ; i -- ) { buf [ offset + i ] = ( char ) ( readBuffer [ readOffset + i ] & 0xff ) ; } _readOffset = readOffset + sublen ; return sublen ; } | Reads into a character buffer from the stream . Like the byte array version read may return less characters even though more characters are available . |
16,021 | public int read ( CharBuffer buf , int length ) throws IOException { int len = buf . length ( ) ; buf . length ( len + length ) ; int readLength = read ( buf . buffer ( ) , len , length ) ; if ( readLength < 0 ) { buf . length ( len ) ; } else if ( readLength < length ) { buf . length ( len + readLength ) ; } return length ; } | Reads characters from the stream appending to the character buffer . |
16,022 | public int readInt ( ) throws IOException { if ( _readOffset + 4 < _readLength ) { return ( ( ( _readBuffer [ _readOffset ++ ] & 0xff ) << 24 ) + ( ( _readBuffer [ _readOffset ++ ] & 0xff ) << 16 ) + ( ( _readBuffer [ _readOffset ++ ] & 0xff ) << 8 ) + ( ( _readBuffer [ _readOffset ++ ] & 0xff ) ) ) ; } else { return ( ( read ( ) << 24 ) + ( read ( ) << 16 ) + ( read ( ) << 8 ) + ( read ( ) ) ) ; } } | Reads a 4 - byte network encoded integer |
16,023 | public int readUTF8ByByteLength ( char [ ] buffer , int offset , int byteLength ) throws IOException { int k = 0 ; for ( int i = 0 ; i < byteLength ; i ++ ) { if ( _readLength <= _readOffset ) { readBuffer ( ) ; } int ch = _readBuffer [ _readOffset ++ ] & 0xff ; if ( ch < 0x80 ) { buffer [ k ++ ] = ( char ) ch ; } else if ( ( ch & 0xe0 ) == 0xc0 ) { int c2 = read ( ) ; i += 1 ; buffer [ k ++ ] = ( char ) ( ( ( ch & 0x1f ) << 6 ) + ( c2 & 0x3f ) ) ; } else { int c2 = read ( ) ; int c3 = read ( ) ; i += 2 ; buffer [ k ++ ] = ( char ) ( ( ( ch & 0x1f ) << 12 ) + ( ( c2 & 0x3f ) << 6 ) + ( ( c3 & 0x3f ) ) ) ; } } return k ; } | Reads a utf - 8 string |
16,024 | public boolean fillIfLive ( long timeout ) throws IOException { StreamImpl source = _source ; byte [ ] readBuffer = _readBuffer ; if ( readBuffer == null || source == null ) { _readOffset = 0 ; _readLength = 0 ; return false ; } if ( _readOffset > 0 ) { System . arraycopy ( readBuffer , _readOffset , readBuffer , 0 , _readLength - _readOffset ) ; _readLength -= _readOffset ; _readOffset = 0 ; } if ( _readLength == readBuffer . length ) return true ; int readLength = source . readTimeout ( _readBuffer , _readLength , _readBuffer . length - _readLength , timeout ) ; if ( readLength >= 0 ) { _readLength += readLength ; _position += readLength ; if ( _isEnableReadTime ) _readTime = CurrentTime . currentTime ( ) ; return true ; } else if ( readLength == READ_TIMEOUT ) { return true ; } else { return false ; } } | Fills the buffer with a timed read testing for the end of file . Used for cases like comet to test if the read stream has closed . |
16,025 | public boolean isSecure ( ) { if ( _s == null || _sslSocketClass == null ) return false ; else return _sslSocketClass . isAssignableFrom ( _s . getClass ( ) ) ; } | Returns true if the connection is secure . |
16,026 | public int cipherBits ( ) { if ( ! ( _s instanceof SSLSocket ) ) return super . cipherBits ( ) ; SSLSocket sslSocket = ( SSLSocket ) _s ; SSLSession sslSession = sslSocket . getSession ( ) ; if ( sslSession != null ) return _sslKeySizes . get ( sslSession . getCipherSuite ( ) ) ; else return 0 ; } | Returns the bits in the socket . |
16,027 | public void postMultipart ( String url , Map < String , String > map ) throws Exception { String boundaryStr = "-----boundary0" ; StringBuilder sb = new StringBuilder ( ) ; map . forEach ( ( k , v ) -> { sb . append ( boundaryStr + "\r" ) ; sb . append ( "Content-Disposition: form-data; name=\"" + k + "\"\r" ) ; sb . append ( "\r" ) ; sb . append ( v ) ; sb . append ( "\r" ) ; } ) ; String request = "POST " + url + " HTTP/1.0\r" + "Content-Type: multipart/form-data; boundary=" + boundaryStr + "\r" + "Content-Length: " + sb . length ( ) + "\r" + "\r" + sb ; request ( request , null ) ; } | Performs multipart post |
16,028 | public void setBackgroundInterval ( long interval , TimeUnit unit ) { if ( ! isValid ( ) ) { return ; } long period = unit . toMillis ( interval ) ; if ( _state == StateProfile . IDLE ) { if ( period > 0 ) { _profileTask . setPeriod ( period ) ; _profileTask . start ( ) ; _state = StateProfile . BACKGROUND ; } } else if ( _state == StateProfile . BACKGROUND ) { if ( period <= 0 ) { _profileTask . stop ( ) ; _state = StateProfile . IDLE ; } else if ( period != _backgroundPeriod ) { _profileTask . stop ( ) ; _profileTask . setPeriod ( period ) ; _profileTask . start ( ) ; } } _backgroundPeriod = period ; } | Sets the time interval for the background profile . |
16,029 | public void start ( long interval , TimeUnit unit ) { if ( ! isValid ( ) ) { return ; } long period = unit . toMillis ( interval ) ; if ( period < 0 ) { return ; } _profileTask . stop ( ) ; _profileTask . setPeriod ( period ) ; _profileTask . start ( ) ; _state = StateProfile . ACTIVE ; } | Starts a dedicated profile . |
16,030 | public ProfileReport stop ( ) { if ( ! isValid ( ) ) { return null ; } if ( _state != StateProfile . ACTIVE ) { return null ; } _profileTask . stop ( ) ; ProfileReport report = _profileTask . getReport ( ) ; if ( _backgroundPeriod > 0 ) { _profileTask . setPeriod ( _backgroundPeriod ) ; _profileTask . start ( ) ; _state = StateProfile . BACKGROUND ; } else { _state = StateProfile . IDLE ; } return report ; } | Ends the dedicated profile restarting the background . |
16,031 | private MethodRefAmp findLocalMethod ( ) { ServiceRefAmp serviceRefLocal = _serviceRef . getLocalService ( ) ; if ( serviceRefLocal == null ) { return null ; } if ( _type != null ) { return serviceRefLocal . methodByName ( _name , _type ) ; } else { return serviceRefLocal . methodByName ( _name ) ; } } | Return the local method for this pod method when the pod is on the same jvm . |
16,032 | private MethodRefActive createMethodRefActive ( ServiceRefAmp serviceRef ) { MethodRefAmp methodRef ; if ( _type != null ) { methodRef = serviceRef . methodByName ( _name , _type ) ; } else { methodRef = serviceRef . methodByName ( _name ) ; } MethodShim methodShim ; ClassLoader methodLoader = methodRef . serviceRef ( ) . classLoader ( ) ; if ( methodLoader == _sourceLoader || serviceRef . stub ( ) instanceof StubLink ) { methodShim = new MethodShimIdentity ( methodRef , isLocalService ( serviceRef ) ) ; } else { PodImport importContext ; importContext = PodImportContext . create ( _sourceLoader ) . getPodImport ( methodLoader ) ; methodShim = new MethodShimImport ( methodRef , importContext , isLocalService ( serviceRef ) ) ; } return new MethodRefActive ( serviceRef , methodRef , methodShim ) ; } | Create an MethodRefActive for the given serviceRef . |
16,033 | private IProvider getProviderFromTemplate ( eu . atos . sla . parser . data . wsag . Template templateXML ) throws ModelConversionException { Context context = templateXML . getContext ( ) ; String provider = null ; try { ServiceProvider ctxProvider = ServiceProvider . fromString ( context . getServiceProvider ( ) ) ; switch ( ctxProvider ) { case AGREEMENT_RESPONDER : provider = context . getAgreementResponder ( ) ; break ; case AGREEMENT_INITIATOR : provider = context . getAgreementInitiator ( ) ; break ; } } catch ( IllegalArgumentException e ) { throw new ModelConversionException ( "The Context/ServiceProvider field must match with the word " + ServiceProvider . AGREEMENT_RESPONDER + " or " + ServiceProvider . AGREEMENT_INITIATOR ) ; } IProvider providerObj = providerDAO . getByUUID ( provider ) ; return providerObj ; } | we retrieve the providerUUID from the template and get the provider object from the database |
16,034 | public void write ( byte [ ] buf , int offset , int length , boolean isEnd ) throws IOException { while ( length > 0 ) { if ( _tail == null ) { addBuffer ( TempBuffer . create ( ) ) ; } else if ( _tail . buffer ( ) . length <= _tail . length ( ) ) { addBuffer ( TempBuffer . create ( ) ) ; } TempBuffer tail = _tail ; int sublen = Math . min ( length , tail . buffer ( ) . length - tail . length ( ) ) ; System . arraycopy ( buf , offset , tail . buffer ( ) , tail . length ( ) , sublen ) ; length -= sublen ; offset += sublen ; _tail . length ( _tail . length ( ) + sublen ) ; } } | Writes a chunk of data to the temp stream . |
16,035 | public TempStream copy ( ) { TempStream newStream = new TempStream ( ) ; TempBuffer ptr = _head ; for ( ; ptr != null ; ptr = ptr . next ( ) ) { TempBuffer newPtr = TempBuffer . create ( ) ; if ( newStream . _tail != null ) newStream . _tail . next ( newPtr ) ; else newStream . _head = newPtr ; newStream . _tail = newPtr ; newPtr . write ( ptr . buffer ( ) , 0 , ptr . length ( ) ) ; } return newStream ; } | Copies the temp stream ; |
16,036 | public void flush ( ) { _logWriterQueue . wake ( ) ; waitForFlush ( 10 ) ; try { super . flush ( ) ; } catch ( IOException e ) { log . log ( Level . FINER , e . toString ( ) , e ) ; } } | must be synchronized by _bufferLock . |
16,037 | public boolean isModified ( ) { I instance = _instance ; if ( instance == null ) { return true ; } if ( DeployMode . MANUAL . equals ( _strategy . redeployMode ( ) ) ) { return false ; } return instance . isModified ( ) ; } | Returns true if the entry is modified . |
16,038 | public void startOnInit ( Result < I > result ) { DeployFactory2 < I > builder = builder ( ) ; if ( builder == null ) { result . ok ( null ) ; return ; } if ( ! _lifecycle . toInit ( ) ) { result . ok ( get ( ) ) ; return ; } _strategy . startOnInit ( this , result ) ; } | Starts the entry on initialization |
16,039 | public final void shutdown ( ShutdownModeAmp mode , Result < Boolean > result ) { _strategy . shutdown ( this , mode , result ) ; } | Stops the controller from an admin command . |
16,040 | public final void request ( Result < I > result ) { I instance = _instance ; if ( instance != null && _lifecycle . isActive ( ) && ! isModified ( ) ) { result . ok ( instance ) ; } else if ( _lifecycle . isDestroyed ( ) ) { result . ok ( null ) ; } else { _strategy . request ( this , result ) ; } } | Returns the instance for a top - level request |
16,041 | public void startImpl ( Result < I > result ) { DeployFactory2 < I > builder = builder ( ) ; if ( builder == null ) { result . ok ( null ) ; return ; } if ( ! _lifecycle . toStarting ( ) ) { result . ok ( _instance ) ; return ; } I deployInstance = null ; boolean isActive = false ; try { deployInstance = builder . get ( ) ; _instance = deployInstance ; isActive = true ; result . ok ( deployInstance ) ; } catch ( ConfigException e ) { log . log ( Level . FINEST , e . toString ( ) , e ) ; log . log ( Level . FINE , e . toString ( ) , e ) ; result . fail ( e ) ; } catch ( Throwable e ) { log . log ( Level . FINEST , e . toString ( ) , e ) ; log . log ( Level . FINE , e . toString ( ) , e ) ; result . fail ( e ) ; } finally { if ( isActive ) { _lifecycle . toActive ( ) ; } else { _lifecycle . toError ( ) ; } } } | Starts the entry . |
16,042 | public void validate ( byte [ ] blockBuffer , int rowOffset , int rowHead , int blobTail ) { int offset = rowOffset + offset ( ) ; int blobLen = BitsUtil . readInt16 ( blockBuffer , offset + 2 ) ; int blobOffset = BitsUtil . readInt16 ( blockBuffer , offset ) ; if ( blobLen == 0 ) { return ; } if ( blobOffset < 0 || blobTail < blobOffset ) { throw new IllegalStateException ( L . l ( "{0}: corrupted blob offset {1} with blobTail={2}" , this , blobOffset , blobTail ) ) ; } if ( ( blobLen & LARGE_BLOB_MASK ) != 0 ) { blobLen &= ~ LARGE_BLOB_MASK ; if ( blobLen != 4 ) { throw new IllegalStateException ( L . l ( "{0}: corrupted blob len {1} for large blob." , this , blobOffset ) ) ; } } if ( blobLen < 0 || blobTail < blobLen + blobOffset ) { throw new IllegalStateException ( L . l ( "{0}: corrupted blob len {1} with blobOffset={2} blobTail={3}" , this , blobLen , blobOffset , blobTail ) ) ; } } | Validates the column checking for corruption . |
16,043 | public MonitoringRules getMonitoringRulesByTemplateId ( String monitoringRuleTemplateId ) { return getJerseyClient ( ) . target ( getEndpoint ( ) + "/planner/monitoringrules/" + monitoringRuleTemplateId ) . request ( ) . buildGet ( ) . invoke ( ) . readEntity ( MonitoringRules . class ) ; } | Creates proxied HTTP GET request to SeaClouds Planner which returns the monitoring rules according to the template id |
16,044 | public String getAdps ( String aam ) { Entity content = Entity . entity ( aam , MediaType . TEXT_PLAIN ) ; Invocation invocation = getJerseyClient ( ) . target ( getEndpoint ( ) + "/planner/plan" ) . request ( ) . buildPost ( content ) ; return invocation . invoke ( ) . readEntity ( String . class ) ; } | Creates proxied HTTP POST request to SeaClouds Planner which returns a list TOSCA compliant SeaClouds ADP in JSON format |
16,045 | public String getDam ( String adp ) { Entity content = Entity . entity ( adp , MediaType . TEXT_PLAIN ) ; Invocation invocation = getJerseyClient ( ) . target ( getEndpoint ( ) + "/planner/damgen" ) . request ( ) . buildPost ( content ) ; return invocation . invoke ( ) . readEntity ( String . class ) ; } | Creates proxied HTTP POST request to SeaClouds Planner which returns a SeaClouds TOSCA DAM file |
16,046 | public static boolean isMatch ( Class < ? > [ ] paramA , Class < ? > [ ] paramB ) { if ( paramA . length != paramB . length ) return false ; for ( int i = paramA . length - 1 ; i >= 0 ; i -- ) { if ( ! paramA [ i ] . equals ( paramB [ i ] ) ) return false ; } return true ; } | Tests if parameters match a method s parameter types . |
16,047 | public boolean isServerPrimary ( ServerBartender server ) { for ( int i = 0 ; i < Math . min ( 1 , _owners . length ) ; i ++ ) { ServerBartender serverBar = server ( i ) ; if ( serverBar == null ) { continue ; } else if ( serverBar . isSameServer ( server ) ) { return true ; } } return false ; } | Test if the server is the primary for the node . |
16,048 | public boolean isServerOwner ( ServerBartender server ) { for ( int i = 0 ; i < _owners . length ; i ++ ) { ServerBartender serverBar = server ( i ) ; if ( serverBar == null ) { continue ; } else if ( serverBar . isSameServer ( server ) ) { return server . isUp ( ) ; } else if ( serverBar . isUp ( ) ) { return false ; } } return false ; } | Test if the server is the current owner of the node . The owner is the first live server in the backup list . |
16,049 | public boolean isServerCopy ( ServerBartender server ) { for ( int i = 0 ; i < _owners . length ; i ++ ) { ServerBartender serverBar = server ( i ) ; if ( serverBar != null && serverBar . isSameServer ( server ) ) { return true ; } } return false ; } | Test if the server is the one of the node copies . |
16,050 | public ServerBartender owner ( ) { for ( int i = 0 ; i < _owners . length ; i ++ ) { ServerBartender serverBar = server ( i ) ; if ( serverBar != null && serverBar . isUp ( ) ) { return serverBar ; } } return null ; } | Return the current server owner . |
16,051 | public BartenderBuilderPod pod ( String id , String clusterId ) { Objects . requireNonNull ( id ) ; Objects . requireNonNull ( clusterId ) ; ClusterHeartbeat cluster = createCluster ( clusterId ) ; return new PodBuilderConfig ( id , cluster , this ) ; } | Create a configured pod . |
16,052 | private UpdatePod initLocalPod ( ) { ServerBartender serverSelf = _bartender . serverSelf ( ) ; ServicesAmp rampManager = AmpSystem . currentManager ( ) ; UpdatePodBuilder podBuilder = new UpdatePodBuilder ( ) ; podBuilder . name ( "local" ) ; podBuilder . cluster ( _bartender . serverSelf ( ) . getCluster ( ) ) ; ServerPod serverPod = new ServerPod ( 0 , serverSelf ) ; ServerPod [ ] servers = new ServerPod [ ] { serverPod } ; podBuilder . pod ( servers ) ; podBuilder . primaryCount ( 1 ) ; podBuilder . depth ( 1 ) ; UpdatePod updatePod = podBuilder . build ( ) ; return new UpdatePod ( updatePod , new String [ ] { serverSelf . getId ( ) } , 0 ) ; } | The local pod refers to the server itself . |
16,053 | public static JavaCompilerUtil create ( ClassLoader loader ) { JavacConfig config = JavacConfig . getLocalConfig ( ) ; String javac = config . getCompiler ( ) ; JavaCompilerUtil javaCompiler = new JavaCompilerUtil ( ) ; if ( loader == null ) { loader = Thread . currentThread ( ) . getContextClassLoader ( ) ; } javaCompiler . setClassLoader ( loader ) ; javaCompiler . setCompiler ( javac ) ; javaCompiler . setArgs ( config . getArgs ( ) ) ; javaCompiler . setEncoding ( config . getEncoding ( ) ) ; javaCompiler . setMaxBatch ( config . getMaxBatch ( ) ) ; javaCompiler . setStartTimeout ( config . getStartTimeout ( ) ) ; javaCompiler . setMaxCompileTime ( config . getMaxCompileTime ( ) ) ; return javaCompiler ; } | Creates a new compiler . |
16,054 | public String getClassPath ( ) { String rawClassPath = buildClassPath ( ) ; if ( true ) return rawClassPath ; char sep = CauchoUtil . getPathSeparatorChar ( ) ; String [ ] splitClassPath = rawClassPath . split ( "[" + sep + "]" ) ; String javaHome = System . getProperty ( "java.home" ) ; PathImpl pwd = VfsOld . lookup ( System . getProperty ( "user.dir" ) ) ; ArrayList < String > cleanClassPath = new ArrayList < String > ( ) ; StringBuilder sb = new StringBuilder ( ) ; for ( String pathName : splitClassPath ) { PathImpl path = pwd . lookup ( pathName ) ; pathName = path . getNativePath ( ) ; if ( ! pathName . startsWith ( javaHome ) && ! cleanClassPath . contains ( pathName ) ) { cleanClassPath . add ( pathName ) ; if ( sb . length ( ) > 0 ) sb . append ( sep ) ; sb . append ( pathName ) ; } } return sb . toString ( ) ; } | Returns the classpath . |
16,055 | private String buildClassPath ( ) { String classPath = null ; if ( classPath != null ) { return classPath ; } if ( classPath == null && _loader instanceof DynamicClassLoader ) { classPath = ( ( DynamicClassLoader ) _loader ) . getClassPath ( ) ; } else { StringBuilder sb = new StringBuilder ( ) ; sb . append ( CauchoUtil . getClassPath ( ) ) ; if ( _loader != null ) buildClassPath ( sb , _loader ) ; classPath = sb . toString ( ) ; } String srcDirName = getSourceDirName ( ) ; String classDirName = getClassDirName ( ) ; char sep = CauchoUtil . getPathSeparatorChar ( ) ; if ( _extraClassPath != null ) classPath = classPath + sep + _extraClassPath ; if ( ! srcDirName . equals ( classDirName ) ) classPath = srcDirName + sep + classPath ; classPath = classDirName + sep + classPath ; return classPath ; } | Returns the classpath for the compiler . |
16,056 | public void setArgs ( String argString ) { try { if ( argString != null ) { String [ ] args = Pattern . compile ( "[\\s,]+" ) . split ( argString ) ; _args = new ArrayList < String > ( ) ; for ( int i = 0 ; i < args . length ; i ++ ) { if ( ! args [ i ] . equals ( "" ) ) _args . add ( args [ i ] ) ; } } } catch ( Exception e ) { log . log ( Level . WARNING , e . toString ( ) , e ) ; } } | Sets any additional arguments for the compiler . |
16,057 | public void setEncoding ( String encoding ) { _charEncoding = encoding ; String javaEncoding = Encoding . getJavaName ( encoding ) ; if ( "ISO8859_1" . equals ( javaEncoding ) ) _charEncoding = null ; } | Sets the Java encoding for the compiler . |
16,058 | public static String mangleName ( String name ) { boolean toLower = CauchoUtil . isCaseInsensitive ( ) ; CharBuffer cb = new CharBuffer ( ) ; cb . append ( "_" ) ; for ( int i = 0 ; i < name . length ( ) ; i ++ ) { char ch = name . charAt ( i ) ; if ( ch == '/' || ch == CauchoUtil . getPathSeparatorChar ( ) ) { if ( i == 0 ) { } else if ( cb . charAt ( cb . length ( ) - 1 ) != '.' && ( i + 1 < name . length ( ) && name . charAt ( i + 1 ) != '/' ) ) cb . append ( "._" ) ; } else if ( ch == '.' ) cb . append ( "__" ) ; else if ( ch == '_' ) cb . append ( "_0" ) ; else if ( Character . isJavaIdentifierPart ( ch ) ) cb . append ( toLower ? Character . toLowerCase ( ch ) : ch ) ; else if ( ch <= 256 ) cb . append ( "_2" + encodeHex ( ch >> 4 ) + encodeHex ( ch ) ) ; else cb . append ( "_4" + encodeHex ( ch >> 12 ) + encodeHex ( ch >> 8 ) + encodeHex ( ch >> 4 ) + encodeHex ( ch ) ) ; } if ( cb . length ( ) == 0 ) cb . append ( "_z" ) ; return cb . toString ( ) ; } | Mangles the path into a valid Java class name . |
16,059 | public void compileBatch ( String [ ] files ) throws IOException , ClassNotFoundException { if ( _compileParent ) { try { if ( _loader instanceof Make ) ( ( Make ) _loader ) . make ( ) ; } catch ( Exception e ) { throw new IOException ( e ) ; } } if ( files . length == 0 ) return ; int batchCount = _maxBatch ; if ( batchCount < 0 ) batchCount = Integer . MAX_VALUE / 2 ; else if ( batchCount == 0 ) batchCount = 1 ; IOException exn = null ; ArrayList < String > uniqueFiles = new ArrayList < String > ( ) ; for ( int i = 0 ; i < files . length ; i ++ ) { if ( ! uniqueFiles . contains ( files [ i ] ) ) uniqueFiles . add ( files [ i ] ) ; } files = new String [ uniqueFiles . size ( ) ] ; uniqueFiles . toArray ( files ) ; LineMap lineMap = null ; _compilerService . compile ( this , files , lineMap ) ; } | Compiles a batch list of classes . |
16,060 | final public void write ( char [ ] buf ) { try { _out . print ( buf , 0 , buf . length ) ; } catch ( IOException e ) { log . log ( Level . FINE , e . toString ( ) , e ) ; } } | Writes a character buffer . |
16,061 | void waitForExit ( ) { Runtime runtime = Runtime . getRuntime ( ) ; ShutdownSystem shutdown = _resinSystem . getSystem ( ShutdownSystem . class ) ; if ( shutdown == null ) { throw new IllegalStateException ( L . l ( "'{0}' requires an active {1}" , this , ShutdownSystem . class . getSimpleName ( ) ) ) ; } while ( ! _server . isClosing ( ) ) { try { Thread . sleep ( 10 ) ; if ( ! checkMemory ( runtime ) ) { shutdown . shutdown ( ShutdownModeAmp . IMMEDIATE , ExitCode . MEMORY , "Server shutdown from out of memory" ) ; return ; } if ( ! checkFileDescriptor ( ) ) { shutdown . shutdown ( ShutdownModeAmp . IMMEDIATE , ExitCode . MEMORY , "Server shutdown from out of file descriptors" ) ; return ; } synchronized ( this ) { wait ( 10000 ) ; } } catch ( OutOfMemoryError e ) { String msg = "Server shutdown from out of memory" ; ShutdownSystem . shutdownOutOfMemory ( msg ) ; } catch ( Throwable e ) { log . log ( Level . WARNING , e . toString ( ) , e ) ; return ; } } } | Thread to wait until Resin should be stopped . |
16,062 | public ServiceRefAmp getLocalService ( ) { ServiceRefAmp serviceRefRoot = _podRoot . getLocalService ( ) ; if ( serviceRefRoot == null ) { return null ; } ServiceRefActive serviceRefLocal = _serviceRefLocal ; if ( serviceRefLocal != null ) { ServiceRefAmp serviceRef = serviceRefLocal . getService ( serviceRefRoot ) ; if ( serviceRef != null ) { return serviceRef ; } } ServiceRefAmp serviceRef = serviceRefRoot . onLookup ( _path ) ; _serviceRefLocal = new ServiceRefActive ( serviceRefRoot , serviceRef ) ; return serviceRef ; } | Returns the active service for this pod and path s hash . |
16,063 | public PathImpl lookupImpl ( String userPath , Map < String , Object > newAttributes , boolean isAllowRoot ) { String newPath ; if ( userPath == null ) return _root . fsWalk ( getPath ( ) , newAttributes , "/" ) ; int length = userPath . length ( ) ; int colon = userPath . indexOf ( ':' ) ; int slash = userPath . indexOf ( '/' ) ; int query = userPath . indexOf ( '?' ) ; if ( colon != - 1 && ( colon < slash || slash == - 1 ) ) return super . lookupImpl ( userPath , newAttributes , isAllowRoot ) ; if ( slash == 0 && length > 1 && userPath . charAt ( 1 ) == '/' ) return schemeWalk ( userPath , newAttributes , userPath , 0 ) ; else if ( slash == 0 ) { String queryString = "" ; if ( query >= 0 ) { queryString = userPath . substring ( query ) ; userPath = userPath . substring ( 0 , query ) ; } newPath = normalizePath ( "/" , userPath , 0 , '/' ) ; if ( query >= 0 ) newPath += queryString ; } else { String queryString = "" ; if ( query >= 0 ) { queryString = userPath . substring ( query ) ; userPath = userPath . substring ( 0 , query ) ; } newPath = normalizePath ( _pathname , userPath , 0 , '/' ) ; if ( query >= 0 ) newPath += queryString ; } return _root . fsWalk ( userPath , newAttributes , newPath ) ; } | Overrides the default lookup to parse the host and port before parsing the path . |
16,064 | public PathImpl schemeWalk ( String userPath , Map < String , Object > attributes , String uri , int offset ) { int length = uri . length ( ) ; if ( length < 2 + offset || uri . charAt ( offset ) != '/' || uri . charAt ( offset + 1 ) != '/' ) throw new RuntimeException ( L . l ( "bad scheme in `{0}'" , uri ) ) ; CharBuffer buf = CharBuffer . allocate ( ) ; int i = 2 + offset ; int ch = 0 ; boolean isInBrace = false ; for ( ; i < length && ( ( ch = uri . charAt ( i ) ) != ':' || isInBrace ) && ch != '/' && ch != '?' ; i ++ ) { buf . append ( ( char ) ch ) ; if ( ch == '[' ) isInBrace = true ; else if ( ch == ']' ) isInBrace = false ; } String host = buf . close ( ) ; if ( host . length ( ) == 0 ) throw new RuntimeException ( L . l ( "bad host in `{0}'" , uri ) ) ; int port = 0 ; if ( ch == ':' ) { for ( i ++ ; i < length && ( ch = uri . charAt ( i ) ) >= '0' && ch <= '9' ; i ++ ) { port = 10 * port + uri . charAt ( i ) - '0' ; } } if ( port == 0 ) port = 80 ; HttpPath root = create ( host , port ) ; return root . fsWalk ( userPath , attributes , uri . substring ( i ) ) ; } | Walk down the path starting from the portion immediately following the scheme . i . e . schemeWalk is responsible for parsing the host and port from the URL . |
16,065 | public PathImpl fsWalk ( String userPath , Map < String , Object > attributes , String uri ) { String path ; String query = null ; int queryIndex = uri . indexOf ( '?' ) ; if ( queryIndex >= 0 ) { path = uri . substring ( 0 , queryIndex ) ; query = uri . substring ( queryIndex + 1 ) ; } else path = uri ; if ( path . length ( ) == 0 ) path = "/" ; return create ( _root , userPath , attributes , path , query ) ; } | Scans the path portion of the URI i . e . everything after the host and port . |
16,066 | public String getURL ( ) { int port = getPort ( ) ; return ( getScheme ( ) + "://" + getHost ( ) + ( port == 80 ? "" : ":" + getPort ( ) ) + getPath ( ) + ( _query == null ? "" : "?" + _query ) ) ; } | Returns a full URL for the path . |
16,067 | private V putImpl ( K key , V value ) { V item = null ; int hash = key . hashCode ( ) & _mask ; int count = _values . length ; for ( ; count > 0 ; count -- ) { item = _values [ hash ] ; if ( item == null ) { _keys [ hash ] = key ; _values [ hash ] = value ; _size ++ ; return null ; } if ( _keys [ hash ] . equals ( key ) ) { _values [ hash ] = value ; return item ; } hash = ( hash + 1 ) & _mask ; } throw new IllegalStateException ( ) ; } | Implementation of the put . |
16,068 | public String getURL ( ) { if ( ! isWindows ( ) ) return escapeURL ( "file:" + getFullPath ( ) ) ; String path = getFullPath ( ) ; int length = path . length ( ) ; CharBuffer cb = new CharBuffer ( ) ; cb . append ( "file:" ) ; char ch ; int offset = 0 ; if ( length >= 3 && path . charAt ( 0 ) == '/' && path . charAt ( 2 ) == ':' && ( 'a' <= ( ch = path . charAt ( 1 ) ) && ch <= 'z' || 'A' <= ch && ch <= 'Z' ) ) { } else if ( length >= 3 && path . charAt ( 0 ) == '/' && path . charAt ( 1 ) == ':' && path . charAt ( 2 ) == '/' ) { cb . append ( '/' ) ; cb . append ( '/' ) ; cb . append ( '/' ) ; cb . append ( '/' ) ; offset = 3 ; } for ( ; offset < length ; offset ++ ) { ch = path . charAt ( offset ) ; if ( ch == '\\' ) cb . append ( '/' ) ; else cb . append ( ch ) ; } return escapeURL ( cb . toString ( ) ) ; } | Returns the full url for the given path . |
16,069 | public String getNativePath ( ) { if ( ! isWindows ( ) ) { return getFullPath ( ) ; } String path = getFullPath ( ) ; int length = path . length ( ) ; CharBuffer cb = new CharBuffer ( ) ; char ch ; int offset = 0 ; if ( length >= 3 && path . charAt ( 0 ) == '/' && path . charAt ( 2 ) == ':' && ( 'a' <= ( ch = path . charAt ( 1 ) ) && ch <= 'z' || 'A' <= ch && ch <= 'Z' ) ) { offset = 1 ; } else if ( length >= 3 && path . charAt ( 0 ) == '/' && path . charAt ( 1 ) == ':' && path . charAt ( 2 ) == '/' ) { cb . append ( '\\' ) ; cb . append ( '\\' ) ; offset = 3 ; } for ( ; offset < length ; offset ++ ) { ch = path . charAt ( offset ) ; if ( ch == '/' ) cb . append ( _separatorChar ) ; else cb . append ( ch ) ; } return cb . toString ( ) ; } | Returns the native path . |
16,070 | public String [ ] list ( ) throws IOException { try { String [ ] list = getFile ( ) . list ( ) ; if ( list != null ) return list ; } catch ( AccessControlException e ) { log . finer ( e . toString ( ) ) ; } return new String [ 0 ] ; } | Returns a list of files in the directory . |
16,071 | public StreamImpl openReadImpl ( ) throws IOException { if ( _isWindows && isAux ( ) ) throw new FileNotFoundException ( _file . toString ( ) ) ; return new FileReadStream ( new FileInputStream ( getFile ( ) ) , this ) ; } | Returns the stream implementation for a read stream . |
16,072 | public boolean isAux ( ) { if ( ! _isWindows ) return false ; File file = getFile ( ) ; String path = getFullPath ( ) . toLowerCase ( Locale . ENGLISH ) ; int len = path . length ( ) ; int p = path . indexOf ( "/aux" ) ; int ch ; if ( p >= 0 && ( len <= p + 4 || path . charAt ( p + 4 ) == '.' ) ) return true ; p = path . indexOf ( "/con" ) ; if ( p >= 0 && ( len <= p + 4 || path . charAt ( p + 4 ) == '.' ) ) return true ; p = path . indexOf ( "/lpt" ) ; if ( p >= 0 && ( len <= p + 5 || path . charAt ( p + 5 ) == '.' ) && '0' <= ( ch = path . charAt ( p + 4 ) ) && ch <= '9' ) { return true ; } p = path . indexOf ( "/nul" ) ; if ( p >= 0 && ( len <= p + 4 || path . charAt ( p + 4 ) == '.' ) ) return true ; return false ; } | Special case for the evil windows special |
16,073 | public void clearCache ( ) { if ( _lifecycle . isStopping ( ) ) { return ; } if ( log . isLoggable ( Level . FINER ) ) { log . finest ( "clearCache" ) ; } getInvocationManager ( ) . clearCache ( ) ; } | Clears the proxy cache . |
16,074 | public void init ( ) { _offset = 0 ; if ( _tempBuffer == null ) { _tempBuffer = TempBuffer . create ( ) ; _buffer = _tempBuffer . buffer ( ) ; _bufferEnd = _buffer . length ; } } | Initialize the output stream . |
16,075 | public void write ( byte [ ] buffer , int offset , int length ) throws IOException { while ( length > 0 ) { if ( _bufferEnd <= _offset ) { flushBlock ( false ) ; } int sublen = Math . min ( _bufferEnd - _offset , length ) ; System . arraycopy ( buffer , offset , _buffer , _offset , sublen ) ; offset += sublen ; _offset += sublen ; length -= sublen ; } } | Writes a buffer . |
16,076 | public void close ( ) throws IOException { if ( _isClosed ) { return ; } _isClosed = true ; flushBlock ( true ) ; _cursor . setBlob ( _column . index ( ) , this ) ; } | Completes the stream . |
16,077 | private void flushBlock ( boolean isClose ) throws IOException { if ( isClose ) { if ( ! _isLargeBlob && _offset <= _table . getInlineBlobMax ( ) ) { return ; } } _isLargeBlob = true ; if ( _blobOut == null ) { _blobOut = _table . getTempStore ( ) . openWriter ( ) ; } if ( _offset != _bufferEnd && ! isClose ) { throw new IllegalStateException ( ) ; } _blobOut . write ( _tempBuffer . buffer ( ) , 0 , _offset ) ; _offset = 0 ; if ( ! isClose ) { return ; } StreamSource ss = _blobOut . getStreamSource ( ) ; _blobOut = null ; int len = ( int ) ss . getLength ( ) ; int blobPageSizeMax = _table . getBlobPageSizeMax ( ) ; int pid = - 1 ; int nextPid = - 1 ; int tailLen = len % blobPageSizeMax ; PageServiceSync tableService = _table . getTableService ( ) ; if ( tailLen > 0 ) { int tailOffset = len - tailLen ; pid = tableService . writeBlob ( pid , ss . openChild ( ) , tailOffset , tailLen ) ; len -= tailLen ; } while ( len > 0 ) { int sublen = blobPageSizeMax ; int offset = len - blobPageSizeMax ; pid = tableService . writeBlob ( pid , ss . openChild ( ) , offset , sublen ) ; len -= sublen ; } ss . close ( ) ; _blobId = Math . max ( pid , 0 ) ; } | flushes a block of the blob to the temp store if larger than the inline size . |
16,078 | public static Integer getSPECint ( String providerName , String instanceType ) { String key = providerName + "." + instanceType ; return SPECint . get ( key ) ; } | Gets the SPECint of the specified instance of the specified offerings provider |
16,079 | public static String toHex ( byte [ ] bytes , int offset , int len ) { if ( bytes == null ) return "null" ; StringBuilder sb = new StringBuilder ( ) ; for ( int i = 0 ; i < len ; i ++ ) { int d1 = ( bytes [ offset + i ] >> 4 ) & 0xf ; int d2 = ( bytes [ offset + i ] ) & 0xf ; if ( d1 < 10 ) sb . append ( ( char ) ( '0' + d1 ) ) ; else sb . append ( ( char ) ( 'a' + d1 - 10 ) ) ; if ( d2 < 10 ) sb . append ( ( char ) ( '0' + d2 ) ) ; else sb . append ( ( char ) ( 'a' + d2 - 10 ) ) ; } return sb . toString ( ) ; } | Convert bytes to hex |
16,080 | public static byte [ ] toBytes ( String hex ) { if ( hex == null ) return null ; int len = hex . length ( ) ; byte [ ] bytes = new byte [ len / 2 ] ; int k = 0 ; for ( int i = 0 ; i < len ; i += 2 ) { int digit = 0 ; char ch = hex . charAt ( i ) ; if ( '0' <= ch && ch <= '9' ) digit = ch - '0' ; else if ( 'a' <= ch && ch <= 'f' ) digit = ch - 'a' + 10 ; else if ( 'A' <= ch && ch <= 'F' ) digit = ch - 'A' + 10 ; ch = hex . charAt ( i + 1 ) ; if ( '0' <= ch && ch <= '9' ) digit = 16 * digit + ch - '0' ; else if ( 'a' <= ch && ch <= 'f' ) digit = 16 * digit + ch - 'a' + 10 ; else if ( 'A' <= ch && ch <= 'F' ) digit = 16 * digit + ch - 'A' + 10 ; bytes [ k ++ ] = ( byte ) digit ; } return bytes ; } | Convert hex to bytes |
16,081 | public static Class < ? > loadClass ( String name , boolean init , ClassLoader loader ) throws ClassNotFoundException { if ( loader == null ) loader = Thread . currentThread ( ) . getContextClassLoader ( ) ; if ( loader == null || loader . equals ( CauchoUtil . class . getClassLoader ( ) ) ) return Class . forName ( name ) ; else return Class . forName ( name , init , loader ) ; } | Loads a class from a classloader . If the loader is null uses the context class loader . |
16,082 | protected void flush ( Buffer data , boolean isEnd ) { if ( isClosed ( ) ) { throw new IllegalStateException ( ) ; } _request . outProxy ( ) . write ( _request , data , isEnd ) ; } | Writes data to the output . If the headers have not been written they should be written . |
16,083 | private Client getClient ( ) { Client client = hostMap . get ( basePath ) ; if ( client != null ) return client ; final ClientConfig clientConfig = new ClientConfig ( ) ; clientConfig . register ( MultiPartFeature . class ) ; if ( debug ) { clientConfig . register ( LoggingFilter . class ) ; } client = ClientBuilder . newClient ( clientConfig ) ; hostMap . putIfAbsent ( basePath , client ) ; return hostMap . get ( basePath ) ; } | Get an existing client or create a new client to handle HTTP request . |
16,084 | public void onAccept ( ) { if ( _request != null ) { System . out . println ( "OLD_REQUEST: " + _request ) ; } _sequenceClose . set ( - 1 ) ; } | Called first when the connection is first accepted . |
16,085 | public StateConnection service ( ) throws IOException { try { ConnectionProtocol request = requestOrCreate ( ) ; if ( request == null ) { log . warning ( "Unexpected empty request: " + this ) ; return StateConnection . CLOSE ; } StateConnection next = request . service ( ) ; if ( next != StateConnection . CLOSE ) { return next ; } else { return onCloseRead ( ) ; } } catch ( OutOfMemoryError e ) { String msg = "Out of memory in RequestProtocolHttp" ; ShutdownSystem . shutdownOutOfMemory ( msg ) ; log . log ( Level . WARNING , e . toString ( ) , e ) ; } catch ( Throwable e ) { e . printStackTrace ( ) ; log . log ( Level . WARNING , e . toString ( ) , e ) ; } return StateConnection . CLOSE ; } | Service a HTTP request . |
16,086 | public StateConnection onCloseRead ( ) { ConnectionProtocol request = request ( ) ; if ( request != null ) { request . onCloseRead ( ) ; } _sequenceClose . set ( _sequenceRead . get ( ) ) ; if ( _sequenceFlush . get ( ) < _sequenceClose . get ( ) ) { _isClosePending . set ( true ) ; if ( _sequenceFlush . get ( ) < _sequenceClose . get ( ) ) { return StateConnection . CLOSE_READ_S ; } else { _isClosePending . set ( false ) ; return StateConnection . CLOSE ; } } else { return StateConnection . CLOSE ; } } | Called by reader thread on reader end of file . |
16,087 | public boolean isWriteComplete ( ) { long seqClose = _sequenceClose . get ( ) ; long seqWrite = _sequenceWrite . get ( ) ; return seqClose > 0 && seqClose <= seqWrite ; } | The last write has completed after the read . |
16,088 | public Map < String , HashSet < String > > match ( Map < String , IndexedNodeType > aamModules , Map < String , NodeTemplate > offerings ) { Map < String , HashSet < String > > mathedOfferings = new HashMap < > ( ) ; for ( String moduleName : aamModules . keySet ( ) ) { IndexedNodeType module = aamModules . get ( moduleName ) ; mathedOfferings . put ( moduleName , new HashSet < String > ( ) ) ; for ( String offerName : offerings . keySet ( ) ) { NodeTemplate offer = offerings . get ( offerName ) ; if ( match ( module , offer ) ) { mathedOfferings . get ( moduleName ) . add ( offerName ) ; } } } return mathedOfferings ; } | Matches for each module the technical requirement with the available offerings . |
16,089 | public static String encodeURL ( String uri ) { CharBuffer cb = CharBuffer . allocate ( ) ; for ( int i = 0 ; i < uri . length ( ) ; i ++ ) { char ch = uri . charAt ( i ) ; switch ( ch ) { case '<' : case '>' : case ' ' : case '%' : case '\'' : case '\"' : cb . append ( '%' ) ; cb . append ( encodeHex ( ch >> 4 ) ) ; cb . append ( encodeHex ( ch ) ) ; break ; default : cb . append ( ch ) ; } } return cb . close ( ) ; } | Encode the url with % encoding . |
16,090 | public long extractAlarm ( long now , boolean isTest ) { long lastTime = _now . getAndSet ( now ) ; long nextTime = _nextAlarmTime . get ( ) ; if ( now < nextTime ) { return nextTime ; } _nextAlarmTime . set ( now + CLOCK_NEXT ) ; int delta ; delta = ( int ) ( now - lastTime ) / CLOCK_INTERVAL ; delta = Math . min ( delta , CLOCK_PERIOD ) ; Alarm alarm ; int bucket = getBucket ( lastTime ) ; for ( int i = 0 ; i <= delta ; i ++ ) { while ( ( alarm = extractNextAlarm ( bucket , now , isTest ) ) != null ) { dispatch ( alarm , now , isTest ) ; } bucket = ( bucket + 1 ) % CLOCK_PERIOD ; } while ( ( alarm = extractNextCurrentAlarm ( ) ) != null ) { dispatch ( alarm , now , isTest ) ; } long next = updateNextAlarmTime ( now ) ; _lastTime = now ; return next ; } | Returns the next alarm ready to run |
16,091 | public static int createIpAddress ( byte [ ] address , char [ ] buffer ) { if ( isIpv4 ( address ) ) { return createIpv4Address ( address , 0 , buffer , 0 ) ; } int offset = 0 ; boolean isZeroCompress = false ; boolean isInZeroCompress = false ; buffer [ offset ++ ] = '[' ; for ( int i = 0 ; i < 16 ; i += 2 ) { int value = ( address [ i ] & 0xff ) * 256 + ( address [ i + 1 ] & 0xff ) ; if ( value == 0 && i != 14 ) { if ( isInZeroCompress ) continue ; else if ( ! isZeroCompress ) { isZeroCompress = true ; isInZeroCompress = true ; continue ; } } if ( isInZeroCompress ) { isInZeroCompress = false ; buffer [ offset ++ ] = ':' ; buffer [ offset ++ ] = ':' ; } else if ( i != 0 ) { buffer [ offset ++ ] = ':' ; } if ( value == 0 ) { buffer [ offset ++ ] = '0' ; continue ; } offset = writeHexDigit ( buffer , offset , value >> 12 ) ; offset = writeHexDigit ( buffer , offset , value >> 8 ) ; offset = writeHexDigit ( buffer , offset , value >> 4 ) ; offset = writeHexDigit ( buffer , offset , value ) ; } buffer [ offset ++ ] = ']' ; return offset ; } | Convert a system ip address to an actual address . |
16,092 | public void setAttribute ( String name , Object value ) { if ( _stream != null ) { _stream . setAttribute ( name , value ) ; } } | Sets a header for the request . |
16,093 | public UpdatePodBuilder name ( String name ) { Objects . requireNonNull ( name ) ; if ( name . indexOf ( '.' ) >= 0 ) { throw new IllegalArgumentException ( name ) ; } _name = name ; return this ; } | name is the name of the pod |
16,094 | public UpdatePod build ( ) { if ( getServers ( ) == null ) { int count = Math . max ( _primaryServerCount , _depth ) ; if ( _type == PodType . off ) { count = 0 ; } _servers = buildServers ( count ) ; } Objects . requireNonNull ( getServers ( ) ) ; return new UpdatePod ( this ) ; } | Builds the configured pod . |
16,095 | public long getLength ( ) { StreamSource indirectSource = _indirectSource ; if ( indirectSource != null ) { return indirectSource . getLength ( ) ; } TempOutputStream out = _out ; if ( out != null ) { return out . getLength ( ) ; } else { return - 1 ; } } | Returns the length of the stream if known . |
16,096 | public void freeUseCount ( ) { if ( _indirectSource != null ) { _indirectSource . freeUseCount ( ) ; } else if ( _useCount != null ) { if ( _useCount . decrementAndGet ( ) < 0 ) { closeSelf ( ) ; } } } | Frees a use - counter so getInputStream can be called multiple times . |
16,097 | public InputStream openInputStream ( ) throws IOException { StreamSource indirectSource = _indirectSource ; if ( indirectSource != null ) { return indirectSource . openInputStream ( ) ; } TempOutputStream out = _out ; if ( out != null ) { return out . openInputStreamNoFree ( ) ; } throw new IOException ( L . l ( "{0}: no input stream is available" , this ) ) ; } | Returns an input stream without freeing the results |
16,098 | public final < T > SerializerJson < T > serializer ( Class < T > cl ) { return ( SerializerJson ) _serMap . get ( cl ) ; } | The serializer for the given class . |
16,099 | public final < T > SerializerJson < T > serializer ( Type type ) { SerializerJson < T > ser = ( SerializerJson < T > ) _serTypeMap . get ( type ) ; if ( ser == null ) { TypeRef typeRef = TypeRef . of ( type ) ; Class < T > rawClass = ( Class < T > ) typeRef . rawClass ( ) ; ser = serializer ( rawClass ) . withType ( typeRef , this ) ; _serTypeMap . putIfAbsent ( type , ser ) ; ser = ( SerializerJson < T > ) _serTypeMap . get ( type ) ; } return ser ; } | The serializer for the given type . |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.