idx
int64
0
165k
question
stringlengths
73
5.81k
target
stringlengths
5
918
156,200
public static List < String > readLines ( File file , Charset charset ) throws IOException { return readLines ( file , charset , new LineProcessor < List < String > > ( ) { final List < String > result = Lists . newArrayList ( ) ; public boolean processLine ( String line ) { result . add ( line ) ; return true ; } publ...
Reads all of the lines from a file . The lines do not include line - termination characters but do include other leading and trailing whitespace .
156,201
public static < T > T readBytes ( File file , ByteProcessor < T > processor ) throws IOException { return asByteSource ( file ) . read ( processor ) ; }
Process the bytes of a file .
156,202
static Expression decomposeCondition ( Expression e , HsqlArrayList conditions ) { if ( e == null ) { return Expression . EXPR_TRUE ; } Expression arg1 = e . getLeftNode ( ) ; Expression arg2 = e . getRightNode ( ) ; int type = e . getType ( ) ; if ( type == OpTypes . AND ) { arg1 = decomposeCondition ( arg1 , conditio...
Divides AND conditions and assigns
156,203
void assignToLists ( ) { int lastOuterIndex = - 1 ; for ( int i = 0 ; i < rangeVariables . length ; i ++ ) { if ( rangeVariables [ i ] . isLeftJoin || rangeVariables [ i ] . isRightJoin ) { lastOuterIndex = i ; } if ( lastOuterIndex == i ) { joinExpressions [ i ] . addAll ( tempJoinExpressions [ i ] ) ; } else { for ( ...
Assigns the conditions to separate lists
156,204
void assignToLists ( Expression e , HsqlArrayList [ ] expressionLists , int first ) { set . clear ( ) ; e . collectRangeVariables ( rangeVariables , set ) ; int index = rangeVarSet . getLargestIndex ( set ) ; if ( index == - 1 ) { index = 0 ; } if ( index < first ) { index = first ; } expressionLists [ index ] . add ( ...
Assigns a single condition to the relevant list of conditions
156,205
void assignToRangeVariables ( ) { for ( int i = 0 ; i < rangeVariables . length ; i ++ ) { boolean isOuter = rangeVariables [ i ] . isLeftJoin || rangeVariables [ i ] . isRightJoin ; if ( isOuter ) { assignToRangeVariable ( rangeVariables [ i ] , i , joinExpressions [ i ] , true ) ; assignToRangeVariable ( rangeVariabl...
Assigns conditions to range variables and converts suitable IN conditions to table lookup .
156,206
void setInConditionsAsTables ( ) { for ( int i = rangeVariables . length - 1 ; i >= 0 ; i -- ) { RangeVariable rangeVar = rangeVariables [ i ] ; Expression in = inExpressions [ i ] ; if ( in != null ) { Index index = rangeVar . rangeTable . getIndexForColumn ( in . getLeftNode ( ) . nodes [ 0 ] . getColumnIndex ( ) ) ;...
Converts an IN conditions into a JOIN
156,207
public static LargeBlockTask getStoreTask ( BlockId blockId , ByteBuffer block ) { return new LargeBlockTask ( ) { public LargeBlockResponse call ( ) throws Exception { Exception theException = null ; try { LargeBlockManager . getInstance ( ) . storeBlock ( blockId , block ) ; } catch ( Exception exc ) { theException =...
Get a new store task
156,208
public static LargeBlockTask getReleaseTask ( BlockId blockId ) { return new LargeBlockTask ( ) { public LargeBlockResponse call ( ) throws Exception { Exception theException = null ; try { LargeBlockManager . getInstance ( ) . releaseBlock ( blockId ) ; } catch ( Exception exc ) { theException = exc ; } return new Lar...
Get a new release task
156,209
public static LargeBlockTask getLoadTask ( BlockId blockId , ByteBuffer block ) { return new LargeBlockTask ( ) { public LargeBlockResponse call ( ) throws Exception { Exception theException = null ; try { LargeBlockManager . getInstance ( ) . loadBlock ( blockId , block ) ; } catch ( Exception exc ) { theException = e...
Get a new load task
156,210
public static < T , U > Pair < T , U > of ( T x , U y ) { return new Pair < T , U > ( x , y ) ; }
Convenience class method for constructing pairs using Java s generic type inference .
156,211
public static Routine newRoutine ( Method method ) { Routine routine = new Routine ( SchemaObject . FUNCTION ) ; int offset = 0 ; Class [ ] params = method . getParameterTypes ( ) ; String className = method . getDeclaringClass ( ) . getName ( ) ; StringBuffer sb = new StringBuffer ( ) ; sb . append ( "CLASSPATH:" ) ; ...
Returns a new function Routine object based solely on a Java Method object .
156,212
public ByteBuffer saveToBuffer ( InstanceId instId ) throws IOException { if ( instId == null ) { throw new IOException ( "Null instance ID." ) ; } if ( m_serData == null ) { throw new IOException ( "Uninitialized hashinator snapshot data." ) ; } ByteBuffer buf = ByteBuffer . allocate ( m_serData . length + OFFSET_DATA...
Save to output buffer including header and config data .
156,213
public InstanceId restoreFromBuffer ( ByteBuffer buf ) throws IOException { buf . rewind ( ) ; int dataSize = buf . remaining ( ) - OFFSET_DATA ; if ( dataSize <= 0 ) { throw new IOException ( "Hashinator snapshot data is too small." ) ; } long crcHeader = buf . getLong ( OFFSET_CRC ) ; buf . putLong ( OFFSET_CRC , 0 )...
Restore and check hashinator config data .
156,214
public void restoreFromFile ( File file ) throws IOException { byte [ ] rawData = new byte [ ( int ) file . length ( ) ] ; ByteBuffer bufData = null ; FileInputStream fis = null ; DataInputStream dis = null ; try { fis = new FileInputStream ( file ) ; dis = new DataInputStream ( fis ) ; dis . readFully ( rawData ) ; bu...
Restore and check hashinator config data from a file .
156,215
public static File createFileForSchema ( String ddlText ) throws IOException { File temp = File . createTempFile ( "literalschema" , ".sql" ) ; temp . deleteOnExit ( ) ; FileWriter out = new FileWriter ( temp ) ; out . write ( ddlText ) ; out . close ( ) ; return temp ; }
Creates a temporary file for the supplied schema text . The file is not left open and will be deleted upon process exit .
156,216
public void addLiteralSchema ( String ddlText ) throws IOException { File temp = createFileForSchema ( ddlText ) ; addSchema ( URLEncoder . encode ( temp . getAbsolutePath ( ) , "UTF-8" ) ) ; }
Adds the supplied schema by creating a temp file for it .
156,217
public void addStmtProcedure ( String name , String sql , String partitionInfoString ) { addProcedures ( new ProcedureInfo ( new String [ 0 ] , name , sql , ProcedurePartitionData . fromPartitionInfoString ( partitionInfoString ) ) ) ; }
compatible with old deprecated syntax for test ONLY
156,218
public static byte [ ] hexStringToByteArray ( String s ) throws IOException { int l = s . length ( ) ; byte [ ] data = new byte [ l / 2 + ( l % 2 ) ] ; int n , b = 0 ; boolean high = true ; int i = 0 ; for ( int j = 0 ; j < l ; j ++ ) { char c = s . charAt ( j ) ; if ( c == ' ' ) { continue ; } n = getNibble ( c ) ; if...
Converts a hexadecimal string into a byte array
156,219
public static BitMap sqlBitStringToBitMap ( String s ) throws IOException { int l = s . length ( ) ; int n ; int bitIndex = 0 ; BitMap map = new BitMap ( l ) ; for ( int j = 0 ; j < l ; j ++ ) { char c = s . charAt ( j ) ; if ( c == ' ' ) { continue ; } n = getNibble ( c ) ; if ( n != 0 && n != 1 ) { throw new IOExcept...
Compacts a bit string into a BitMap
156,220
public static String byteArrayToBitString ( byte [ ] bytes , int bitCount ) { char [ ] s = new char [ bitCount ] ; for ( int j = 0 ; j < bitCount ; j ++ ) { byte b = bytes [ j / 8 ] ; s [ j ] = BitMap . isSet ( b , j % 8 ) ? '1' : '0' ; } return new String ( s ) ; }
Converts a byte array into a bit string
156,221
public static String byteArrayToSQLBitString ( byte [ ] bytes , int bitCount ) { char [ ] s = new char [ bitCount + 3 ] ; s [ 0 ] = 'B' ; s [ 1 ] = '\'' ; int pos = 2 ; for ( int j = 0 ; j < bitCount ; j ++ ) { byte b = bytes [ j / 8 ] ; s [ pos ++ ] = BitMap . isSet ( b , j % 8 ) ? '1' : '0' ; } s [ pos ] = '\'' ; ret...
Converts a byte array into an SQL binary string
156,222
public static void writeHexBytes ( byte [ ] o , int from , byte [ ] b ) { int len = b . length ; for ( int i = 0 ; i < len ; i ++ ) { int c = ( ( int ) b [ i ] ) & 0xff ; o [ from ++ ] = HEXBYTES [ c >> 4 & 0xf ] ; o [ from ++ ] = HEXBYTES [ c & 0xf ] ; } }
Converts a byte array into hexadecimal characters which are written as ASCII to the given output stream .
156,223
public static int stringToUTFBytes ( String str , HsqlByteArrayOutputStream out ) { int strlen = str . length ( ) ; int c , count = 0 ; if ( out . count + strlen + 8 > out . buffer . length ) { out . ensureRoom ( strlen + 8 ) ; } char [ ] arr = str . toCharArray ( ) ; for ( int i = 0 ; i < strlen ; i ++ ) { c = arr [ i...
Writes a string to the specified DataOutput using UTF - 8 encoding in a machine - independent manner .
156,224
public static String inputStreamToString ( InputStream x , String encoding ) throws IOException { InputStreamReader in = new InputStreamReader ( x , encoding ) ; StringWriter writer = new StringWriter ( ) ; int blocksize = 8 * 1024 ; char [ ] buffer = new char [ blocksize ] ; for ( ; ; ) { int read = in . read ( buffer...
Using a Reader and a Writer returns a String from an InputStream .
156,225
static int count ( final String s , final char c ) { int pos = 0 ; int count = 0 ; if ( s != null ) { while ( ( pos = s . indexOf ( c , pos ) ) > - 1 ) { count ++ ; pos ++ ; } } return count ; }
Counts Character c in String s
156,226
public static void registerLog4jMBeans ( ) throws JMException { if ( Boolean . getBoolean ( "zookeeper.jmx.log4j.disable" ) == true ) { return ; } MBeanServer mbs = ManagementFactory . getPlatformMBeanServer ( ) ; HierarchyDynamicMBean hdm = new HierarchyDynamicMBean ( ) ; ObjectName mbo = new ObjectName ( "log4j:hiear...
Register the log4j JMX mbeans . Set environment variable zookeeper . jmx . log4j . disable to true to disable registration .
156,227
public void create ( final String path , byte data [ ] , List < ACL > acl , CreateMode createMode , StringCallback cb , Object ctx ) { verbotenThreadCheck ( ) ; final String clientPath = path ; PathUtils . validatePath ( clientPath , createMode . isSequential ( ) ) ; final String serverPath = prependChroot ( clientPath...
The Asynchronous version of create . The request doesn t actually until the asynchronous callback is called .
156,228
public void delete ( final String path , int version , VoidCallback cb , Object ctx ) { verbotenThreadCheck ( ) ; final String clientPath = path ; PathUtils . validatePath ( clientPath ) ; final String serverPath ; if ( clientPath . equals ( "/" ) ) { serverPath = clientPath ; } else { serverPath = prependChroot ( clie...
The Asynchronous version of delete . The request doesn t actually until the asynchronous callback is called .
156,229
public void setData ( final String path , byte data [ ] , int version , StatCallback cb , Object ctx ) { verbotenThreadCheck ( ) ; final String clientPath = path ; PathUtils . validatePath ( clientPath ) ; final String serverPath = prependChroot ( clientPath ) ; RequestHeader h = new RequestHeader ( ) ; h . setType ( Z...
The Asynchronous version of setData . The request doesn t actually until the asynchronous callback is called .
156,230
public void getACL ( final String path , Stat stat , ACLCallback cb , Object ctx ) { verbotenThreadCheck ( ) ; final String clientPath = path ; PathUtils . validatePath ( clientPath ) ; final String serverPath = prependChroot ( clientPath ) ; RequestHeader h = new RequestHeader ( ) ; h . setType ( ZooDefs . OpCode . ge...
The Asynchronous version of getACL . The request doesn t actually until the asynchronous callback is called .
156,231
public void setACL ( final String path , List < ACL > acl , int version , StatCallback cb , Object ctx ) { verbotenThreadCheck ( ) ; final String clientPath = path ; PathUtils . validatePath ( clientPath ) ; final String serverPath = prependChroot ( clientPath ) ; RequestHeader h = new RequestHeader ( ) ; h . setType (...
The Asynchronous version of setACL . The request doesn t actually until the asynchronous callback is called .
156,232
public void sync ( final String path , VoidCallback cb , Object ctx ) { verbotenThreadCheck ( ) ; final String clientPath = path ; PathUtils . validatePath ( clientPath ) ; final String serverPath = prependChroot ( clientPath ) ; RequestHeader h = new RequestHeader ( ) ; h . setType ( ZooDefs . OpCode . sync ) ; SyncRe...
Asynchronous sync . Flushes channel between process and leader .
156,233
public final boolean callProcedureWithTimeout ( ProcedureCallback callback , int batchTimeout , String procName , Object ... parameters ) throws IOException , NoConnectionsException { return callProcedureWithClientTimeout ( callback , batchTimeout , false , procName , Distributer . USE_DEFAULT_CLIENT_TIMEOUT , TimeUnit...
Asynchronously invoke a procedure call with timeout .
156,234
private Object [ ] getUpdateCatalogParams ( File catalogPath , File deploymentPath ) throws IOException { Object [ ] params = new Object [ 2 ] ; if ( catalogPath != null ) { params [ 0 ] = ClientUtils . fileToBytes ( catalogPath ) ; } else { params [ 0 ] = null ; } if ( deploymentPath != null ) { params [ 1 ] = new Str...
Serializes catalog and deployment file for UpdateApplicationCatalog . Catalog is serialized into byte array deployment file is serialized into string .
156,235
public void close ( ) throws InterruptedException { if ( m_blessedThreadIds . contains ( Thread . currentThread ( ) . getId ( ) ) ) { throw new RuntimeException ( "Can't invoke backpressureBarrier from within the client callback thread " + " without deadlocking the client library" ) ; } m_isShutdown = true ; synchroniz...
Shutdown the client closing all network connections and release all memory resources .
156,236
public boolean backpressureBarrier ( final long start , long timeoutNanos ) throws InterruptedException { if ( m_isShutdown ) { return false ; } if ( m_blessedThreadIds . contains ( Thread . currentThread ( ) . getId ( ) ) ) { throw new RuntimeException ( "Can't invoke backpressureBarrier from within the client callbac...
Wait on backpressure with a timeout . Returns true on timeout false otherwise . Timeout nanos is the initial timeout quantity which will be adjusted to reflect remaining time on spurious wakeups
156,237
public Object [ ] readData ( Type [ ] colTypes ) throws IOException , HsqlException { int l = colTypes . length ; Object [ ] data = new Object [ l ] ; Object o ; Type type ; for ( int i = 0 ; i < l ; i ++ ) { if ( checkNull ( ) ) { continue ; } o = null ; type = colTypes [ i ] ; switch ( type . typeCode ) { case Types ...
reads row data from a stream using the JDBC types in colTypes
156,238
public static int matchGenreDescription ( String description ) { if ( description != null && description . length ( ) > 0 ) { for ( int i = 0 ; i < ID3v1Genres . GENRES . length ; i ++ ) { if ( ID3v1Genres . GENRES [ i ] . equalsIgnoreCase ( description ) ) { return i ; } } } return - 1 ; }
Match provided description against genres ignoring case .
156,239
private int measureSize ( int specType , int contentSize , int measureSpec ) { int result ; int specMode = MeasureSpec . getMode ( measureSpec ) ; int specSize = MeasureSpec . getSize ( measureSpec ) ; if ( specMode == MeasureSpec . EXACTLY ) { result = Math . max ( contentSize , specSize ) ; } else { result = contentS...
measure view Size
156,240
private void initSuffixMargin ( ) { int defSuffixLRMargin = Utils . dp2px ( mContext , DEFAULT_SUFFIX_LR_MARGIN ) ; boolean isSuffixLRMarginNull = true ; if ( mSuffixLRMargin >= 0 ) { isSuffixLRMarginNull = false ; } if ( isShowDay && mSuffixDayTextWidth > 0 ) { if ( mSuffixDayLeftMargin < 0 ) { if ( ! isSuffixLRMargin...
initialize suffix margin
156,241
public int getAllContentWidth ( ) { float width = getAllContentWidthBase ( mTimeTextWidth ) ; if ( ! isConvertDaysToHours && isShowDay ) { if ( isDayLargeNinetyNine ) { Rect rect = new Rect ( ) ; String tempDay = String . valueOf ( mDay ) ; mTimeTextPaint . getTextBounds ( tempDay , 0 , tempDay . length ( ) , rect ) ; ...
get all view width
156,242
private float initTimeTextBaselineAndTimeBgTopPadding ( int viewHeight , int viewPaddingTop , int viewPaddingBottom , int contentAllHeight ) { float topPaddingSize ; if ( viewPaddingTop == viewPaddingBottom ) { topPaddingSize = ( viewHeight - contentAllHeight ) / 2 ; } else { topPaddingSize = viewPaddingTop ; } if ( is...
initialize time text baseline and time background top padding
156,243
public int filterRGB ( int pX , int pY , int pARGB ) { int r = pARGB >> 16 & 0xFF ; int g = pARGB >> 8 & 0xFF ; int b = pARGB & 0xFF ; r = LUT [ r ] ; g = LUT [ g ] ; b = LUT [ b ] ; return ( pARGB & 0xFF000000 ) | ( r << 16 ) | ( g << 8 ) | b ; }
Filters one pixel adjusting brightness and contrast according to this filter .
156,244
protected static String buildTimestamp ( final Calendar pCalendar ) { if ( pCalendar == null ) { return CALENDAR_IS_NULL_ERROR_MESSAGE ; } StringBuilder timestamp = new StringBuilder ( ) ; timestamp . append ( DateFormat . getDateInstance ( DateFormat . MEDIUM ) . format ( pCalendar . getTime ( ) ) ) ; timestamp . appe...
Builds a presentation of the given calendar s time . This method contains the common timestamp format used in this class .
156,245
public static long roundToHour ( final long pTime , final TimeZone pTimeZone ) { int offset = pTimeZone . getOffset ( pTime ) ; return ( ( pTime / HOUR ) * HOUR ) - offset ; }
Rounds the given time down to the closest hour using the given timezone .
156,246
public static long roundToDay ( final long pTime , final TimeZone pTimeZone ) { int offset = pTimeZone . getOffset ( pTime ) ; return ( ( ( pTime + offset ) / DAY ) * DAY ) - offset ; }
Rounds the given time down to the closest day using the given timezone .
156,247
private PropertyConverter getConverterForType ( Class pType ) { Object converter ; Class cl = pType ; do { if ( ( converter = getInstance ( ) . converters . get ( cl ) ) != null ) { return ( PropertyConverter ) converter ; } } while ( ( cl = cl . getSuperclass ( ) ) != null ) ; return null ; }
Gets the registered converter for the given type .
156,248
public Object toObject ( String pString , Class pType , String pFormat ) throws ConversionException { if ( pString == null ) { return null ; } if ( pType == null ) { throw new MissingTypeException ( ) ; } PropertyConverter converter = getConverterForType ( pType ) ; if ( converter == null ) { throw new NoAvailableConve...
Converts the string to an object of the given type parsing after the given format .
156,249
public static void merge ( List < File > inputFiles , File outputFile ) throws IOException { ImageOutputStream output = null ; try { output = ImageIO . createImageOutputStream ( outputFile ) ; for ( File file : inputFiles ) { ImageInputStream input = null ; try { input = ImageIO . createImageInputStream ( file ) ; List...
Merges all pages from the input TIFF files into one TIFF file at the output location .
156,250
public static List < File > split ( File inputFile , File outputDirectory ) throws IOException { ImageInputStream input = null ; List < File > outputFiles = new ArrayList < > ( ) ; try { input = ImageIO . createImageInputStream ( inputFile ) ; List < TIFFPage > pages = getPages ( input ) ; int pageNo = 1 ; for ( TIFFPa...
Splits all pages from the input TIFF file to one file per page in the output directory .
156,251
public static String getStats ( ) { long total = sCacheHit + sCacheMiss + sCacheUn ; double hit = ( ( double ) sCacheHit / ( double ) total ) * 100.0 ; double miss = ( ( double ) sCacheMiss / ( double ) total ) * 100.0 ; double un = ( ( double ) sCacheUn / ( double ) total ) * 100.0 ; java . text . NumberFormat nf = ja...
Gets a string containing the stats for this ObjectReader .
156,252
private Object [ ] readIdentities ( Class pObjClass , Hashtable pMapping , Hashtable pWhere , ObjectMapper pOM ) throws SQLException { sCacheUn ++ ; if ( pWhere == null ) pWhere = new Hashtable ( ) ; String [ ] keys = new String [ pWhere . size ( ) ] ; int i = 0 ; for ( Enumeration en = pWhere . keys ( ) ; en . hasMore...
Get an array containing Objects of type objClass with the identity values for the given class set .
156,253
public Object readObject ( DatabaseReadable pReadable ) throws SQLException { return readObject ( pReadable . getId ( ) , pReadable . getClass ( ) , pReadable . getMapping ( ) ) ; }
Reads one object implementing the DatabaseReadable interface from the database .
156,254
public Object readObject ( Object pId , Class pObjClass , Hashtable pMapping ) throws SQLException { return readObject ( pId , pObjClass , pMapping , null ) ; }
Reads the object with the given id from the database using the given mapping .
156,255
public Object [ ] readObjects ( DatabaseReadable pReadable ) throws SQLException { return readObjects ( pReadable . getClass ( ) , pReadable . getMapping ( ) , null ) ; }
Reads all the objects of the given type from the database . The object must implement the DatabaseReadable interface .
156,256
private void setPropertyValue ( Object pObj , String pProperty , Object pValue ) { Method m = null ; Class [ ] cl = { pValue . getClass ( ) } ; try { m = pObj . getClass ( ) . getMethod ( "set" + StringUtil . capitalize ( pProperty ) , cl ) ; Object [ ] args = { pValue } ; m . invoke ( pObj , args ) ; } catch ( NoSuchM...
Sets the property value to an object using reflection
156,257
private Object getPropertyValue ( Object pObj , String pProperty ) { Method m = null ; Class [ ] cl = new Class [ 0 ] ; try { m = pObj . getClass ( ) . getMethod ( "get" + StringUtil . capitalize ( pProperty ) , new Class [ 0 ] ) ; Object result = m . invoke ( pObj , new Object [ 0 ] ) ; return result ; } catch ( NoSuc...
Gets the property value from an object using reflection
156,258
private void setChildObjects ( Object pParent , ObjectMapper pOM ) throws SQLException { if ( pOM == null ) { throw new NullPointerException ( "ObjectMapper in readChildObjects " + "cannot be null!!" ) ; } for ( Enumeration keys = pOM . mMapTypes . keys ( ) ; keys . hasMoreElements ( ) ; ) { String property = ( String ...
Reads and sets the child properties of the given parent object .
156,259
private String buildWhereClause ( String [ ] pKeys , Hashtable pMapping ) { StringBuilder sqlBuf = new StringBuilder ( ) ; for ( int i = 0 ; i < pKeys . length ; i ++ ) { String column = ( String ) pMapping . get ( pKeys [ i ] ) ; sqlBuf . append ( " AND " ) ; sqlBuf . append ( column ) ; sqlBuf . append ( " = ?" ) ; }...
Builds extra SQL WHERE clause
156,260
public static Properties loadMapping ( Class pClass ) { try { return SystemUtil . loadProperties ( pClass ) ; } catch ( FileNotFoundException fnf ) { System . err . println ( "ERROR: " + fnf . getMessage ( ) ) ; } catch ( IOException ioe ) { ioe . printStackTrace ( ) ; } return new Properties ( ) ; }
Utility method for reading a property mapping from a properties - file
156,261
protected Class getType ( String pType ) { Class cl = ( Class ) mTypes . get ( pType ) ; if ( cl == null ) { } return cl ; }
Gets the class for a type
156,262
protected Object getObject ( String pType ) { Class cl = getType ( pType ) ; try { return cl . newInstance ( ) ; } catch ( Exception e ) { throw new RuntimeException ( e . getMessage ( ) ) ; } }
Gets a java object of the class for a given type .
156,263
protected void checkBounds ( int index ) throws IOException { assertInput ( ) ; if ( index < getMinIndex ( ) ) { throw new IndexOutOfBoundsException ( "index < minIndex" ) ; } int numImages = getNumImages ( false ) ; if ( numImages != - 1 && index >= numImages ) { throw new IndexOutOfBoundsException ( "index >= numImag...
Convenience method to make sure image index is within bounds .
156,264
protected static boolean hasExplicitDestination ( final ImageReadParam pParam ) { return pParam != null && ( pParam . getDestination ( ) != null || pParam . getDestinationType ( ) != null || ! ORIGIN . equals ( pParam . getDestinationOffset ( ) ) ) ; }
Tests if param has explicit destination .
156,265
public BufferedImage getImage ( ) throws IOException { if ( image == null ) { if ( bufferedOut == null ) { return null ; } InputStream byteStream = bufferedOut . createInputStream ( ) ; ImageInputStream input = null ; try { input = ImageIO . createImageInputStream ( byteStream ) ; Iterator readers = ImageIO . getImageR...
Gets the decoded image from the response .
156,266
private static QTDecompressor getDecompressor ( final ImageDesc pDescription ) { for ( QTDecompressor decompressor : sDecompressors ) { if ( decompressor . canDecompress ( pDescription ) ) { return decompressor ; } } return null ; }
Gets a decompressor that can decompress the described data .
156,267
public static BufferedImage decompress ( final ImageInputStream pStream ) throws IOException { ImageDesc description = ImageDesc . read ( pStream ) ; if ( PICTImageReader . DEBUG ) { System . out . println ( description ) ; } QTDecompressor decompressor = getDecompressor ( description ) ; if ( decompressor == null ) { ...
Decompresses the QuickTime image data from the given stream .
156,268
protected boolean trigger ( ServletRequest pRequest ) { boolean trigger = false ; if ( pRequest instanceof HttpServletRequest ) { HttpServletRequest request = ( HttpServletRequest ) pRequest ; String accept = getAcceptedFormats ( request ) ; String originalFormat = getServletContext ( ) . getMimeType ( request . getReq...
Makes sure the filter triggers for unknown file formats .
156,269
private static String findBestFormat ( Map < String , Float > pFormatQuality ) { String acceptable = null ; float acceptQuality = 0.0f ; for ( Map . Entry < String , Float > entry : pFormatQuality . entrySet ( ) ) { float qValue = entry . getValue ( ) ; if ( qValue > acceptQuality ) { acceptQuality = qValue ; acceptabl...
Finds the best available format .
156,270
private void adjustQualityFromAccept ( Map < String , Float > pFormatQuality , HttpServletRequest pRequest ) { String accept = getAcceptedFormats ( pRequest ) ; float anyImageFactor = getQualityFactor ( accept , MIME_TYPE_IMAGE_ANY ) ; anyImageFactor = ( anyImageFactor == 1 ) ? 0.02f : anyImageFactor ; float anyFactor ...
Adjust quality from HTTP Accept header
156,271
private static void adjustQualityFromImage ( Map < String , Float > pFormatQuality , BufferedImage pImage ) { if ( pImage . getColorModel ( ) instanceof IndexColorModel ) { adjustQuality ( pFormatQuality , FORMAT_JPEG , 0.6f ) ; if ( pImage . getType ( ) != BufferedImage . TYPE_BYTE_BINARY || ( ( IndexColorModel ) pIma...
Adjusts source quality settings from image properties .
156,272
private static void adjustQuality ( Map < String , Float > pFormatQuality , String pFormat , float pFactor ) { Float oldValue = pFormatQuality . get ( pFormat ) ; if ( oldValue != null ) { pFormatQuality . put ( pFormat , oldValue * pFactor ) ; } }
Updates the quality in the map .
156,273
private float getKnownFormatQuality ( String pFormat ) { for ( int i = 0 ; i < sKnownFormats . length ; i ++ ) { if ( pFormat . equals ( sKnownFormats [ i ] ) ) { return knownFormatQuality [ i ] ; } } return 0.1f ; }
Gets the initial quality if this is a known format otherwise 0 . 1
156,274
public void write ( final byte pBytes [ ] , final int pOff , final int pLen ) throws IOException { out . write ( pBytes , pOff , pLen ) ; }
Overide for efficiency
156,275
public int decode ( final InputStream stream , final ByteBuffer buffer ) throws IOException { if ( reachedEOF ) { return - 1 ; } while ( buffer . hasRemaining ( ) ) { int n ; if ( splitRun ) { n = leftOfRun ; splitRun = false ; } else { int b = stream . read ( ) ; if ( b < 0 ) { reachedEOF = true ; break ; } n = ( byte...
Decodes bytes from the given input stream to the given buffer .
156,276
private float [ ] LABtoXYZ ( float L , float a , float b , float [ ] xyzResult ) { float y = ( L + 16.0f ) / 116.0f ; float y3 = y * y * y ; float x = ( a / 500.0f ) + y ; float x3 = x * x * x ; float z = y - ( b / 200.0f ) ; float z3 = z * z * z ; if ( y3 > 0.008856f ) { y = y3 ; } else { y = ( y - ( 16.0f / 116.0f ) ...
Convert LAB to XYZ .
156,277
public Object toObject ( final String pString , final Class pType , final String pFormat ) throws ConversionException { if ( StringUtil . isEmpty ( pString ) ) { return null ; } try { if ( pType . equals ( BigInteger . class ) ) { return new BigInteger ( pString ) ; } if ( pType . equals ( BigDecimal . class ) ) { retu...
Converts the string to a number using the given format for parsing .
156,278
public void setPenSize ( Dimension2D pSize ) { penSize . setSize ( pSize ) ; graphics . setStroke ( getStroke ( penSize ) ) ; }
Sets the pen size . PenSize
156,279
protected void setupForFill ( final Pattern pPattern ) { graphics . setPaint ( pPattern ) ; graphics . setComposite ( getCompositeFor ( QuickDraw . PAT_COPY ) ) ; }
Sets up paint context for fill .
156,280
private static Arc2D . Double toArc ( final Rectangle2D pRectangle , int pStartAngle , int pArcAngle , final boolean pClosed ) { return new Arc2D . Double ( pRectangle , 90 - pStartAngle , - pArcAngle , pClosed ? Arc2D . PIE : Arc2D . OPEN ) ; }
Converts a rectangle to an arc .
156,281
public void drawString ( String pString ) { setupForText ( ) ; graphics . drawString ( pString , ( float ) getPenPosition ( ) . getX ( ) , ( float ) getPenPosition ( ) . getY ( ) ) ; }
DrawString - draws the text of a Pascal string .
156,282
public static Dimension readDimension ( final DataInput pStream ) throws IOException { int h = pStream . readShort ( ) ; int v = pStream . readShort ( ) ; return new Dimension ( h , v ) ; }
Reads a dimension from the given stream .
156,283
public static String readStr31 ( final DataInput pStream ) throws IOException { String text = readPascalString ( pStream ) ; int length = 31 - text . length ( ) ; if ( length < 0 ) { throw new IOException ( "String length exceeds maximum (31): " + text . length ( ) ) ; } pStream . skipBytes ( length ) ; return text ; }
Reads a 32 byte fixed length Pascal string from the given input . The input stream must be positioned at the length byte of the text the text will be no longer than 31 characters long .
156,284
public static String readPascalString ( final DataInput pStream ) throws IOException { int length = pStream . readUnsignedByte ( ) ; byte [ ] bytes = new byte [ length ] ; pStream . readFully ( bytes , 0 , length ) ; return new String ( bytes , ENCODING ) ; }
Reads a Pascal String from the given stream . The input stream must be positioned at the length byte of the text which can thus be a maximum of 255 characters long .
156,285
protected void doFilterImpl ( ServletRequest pRequest , ServletResponse pResponse , FilterChain pChain ) throws IOException , ServletException { int width = ServletUtil . getIntParameter ( pRequest , sizeWidthParam , - 1 ) ; int height = ServletUtil . getIntParameter ( pRequest , sizeHeightParam , - 1 ) ; if ( width > ...
Extracts request parameters and sets the corresponding request attributes if specified .
156,286
public void setTimeout ( int pTimeout ) { if ( pTimeout < 0 ) { throw new IllegalArgumentException ( "Timeout must be positive." ) ; } timeout = pTimeout ; if ( socket != null ) { try { socket . setSoTimeout ( pTimeout ) ; } catch ( SocketException se ) { } } }
Sets the read timeout for the undelying socket . A timeout of zero is interpreted as an infinite timeout .
156,287
public synchronized InputStream getInputStream ( ) throws IOException { if ( ! connected ) { connect ( ) ; } if ( responseCode == HTTP_NOT_FOUND ) { throw new FileNotFoundException ( url . toString ( ) ) ; } int length ; if ( inputStream == null ) { return null ; } else if ( "chunked" . equalsIgnoreCase ( getHeaderFiel...
Returns an input stream that reads from this open connection .
156,288
private void connect ( final URL pURL , PasswordAuthentication pAuth , String pAuthType , int pRetries ) throws IOException { final int port = ( pURL . getPort ( ) > 0 ) ? pURL . getPort ( ) : HTTP_DEFAULT_PORT ; if ( socket == null ) { socket = createSocket ( pURL , port , connectTimeout ) ; socket . setSoTimeout ( ti...
Internal connect method .
156,289
private Socket createSocket ( final URL pURL , final int pPort , int pConnectTimeout ) throws IOException { Socket socket ; final Object current = this ; SocketConnector connector ; Thread t = new Thread ( connector = new SocketConnector ( ) { private IOException mConnectException = null ; private Socket mLocalSocket =...
Creates a socket to the given URL and port with the given connect timeout . If the socket waits more than the given timout to connect an ConnectException is thrown .
156,290
private static void writeRequestHeaders ( OutputStream pOut , URL pURL , String pMethod , Properties pProps , boolean pUsingProxy , PasswordAuthentication pAuth , String pAuthType ) { PrintWriter out = new PrintWriter ( pOut , true ) ; if ( ! pUsingProxy ) { out . println ( pMethod + " " + ( ! StringUtil . isEmpty ( pU...
Writes the HTTP request headers for HTTP GET method .
156,291
private static int findEndOfHeader ( byte [ ] pBytes , int pEnd ) { byte [ ] header = HTTP_HEADER_END . getBytes ( ) ; for ( int i = 0 ; i < pEnd - 4 ; i ++ ) { if ( ( pBytes [ i ] == header [ 0 ] ) && ( pBytes [ i + 1 ] == header [ 1 ] ) && ( pBytes [ i + 2 ] == header [ 2 ] ) && ( pBytes [ i + 3 ] == header [ 3 ] ) )...
Finds the end of the HTTP response header in an array of bytes .
156,292
private static InputStream detatchResponseHeader ( BufferedInputStream pIS ) throws IOException { ByteArrayOutputStream bytes = new ByteArrayOutputStream ( ) ; pIS . mark ( BUF_SIZE ) ; byte [ ] buffer = new byte [ BUF_SIZE ] ; int length ; int headerEnd ; while ( ( length = pIS . read ( buffer ) ) != - 1 ) { headerEnd...
Reads the header part of the response and copies it to a different InputStream .
156,293
private static Properties parseHeaderFields ( String [ ] pHeaders ) { Properties headers = new Properties ( ) ; int split ; String field ; String value ; for ( String header : pHeaders ) { if ( ( split = header . indexOf ( ":" ) ) > 0 ) { field = header . substring ( 0 , split ) ; value = header . substring ( split + 1...
Pareses the response header fields .
156,294
private static String [ ] parseResponseHeader ( InputStream pIS ) throws IOException { List < String > headers = new ArrayList < String > ( ) ; BufferedReader in = new BufferedReader ( new InputStreamReader ( pIS ) ) ; String header ; while ( ( header = in . readLine ( ) ) != null ) { headers . add ( header ) ; } retur...
Parses the response headers .
156,295
public int filterRGB ( int pX , int pY , int pARGB ) { int r = pARGB >> 16 & 0xFF ; int g = pARGB >> 8 & 0xFF ; int b = pARGB & 0xFF ; int gray = ( 222 * r + 707 * g + 71 * b ) / 1000 ; if ( range != 1.0f ) { gray = low + ( int ) ( gray * range ) ; } return ( pARGB & 0xFF000000 ) | ( gray << 16 ) | ( gray << 8 ) | gray...
Filters one pixel using ITU color - conversion .
156,296
public final int decode ( final InputStream stream , final ByteBuffer buffer ) throws IOException { if ( buffer . capacity ( ) < row . length ) { throw new AssertionError ( "This decoder needs a buffer.capacity() of at least one row" ) ; } while ( buffer . remaining ( ) >= row . length && srcY >= 0 ) { if ( dstX == 0 &...
Decodes as much data as possible from the stream into the buffer .
156,297
public void init ( ) throws ServletException { String uploadDirParam = getInitParameter ( "uploadDir" ) ; if ( ! StringUtil . isEmpty ( uploadDirParam ) ) { try { URL uploadDirURL = getServletContext ( ) . getResource ( uploadDirParam ) ; uploadDir = FileUtil . toFile ( uploadDirURL ) ; } catch ( MalformedURLException ...
This method is called by the server before the filter goes into service and here it determines the file upload directory .
156,298
private static boolean copyDir ( File pFrom , File pTo , boolean pOverWrite ) throws IOException { if ( pTo . exists ( ) && ! pTo . isDirectory ( ) ) { throw new IOException ( "A directory may only be copied to another directory, not to a file" ) ; } pTo . mkdirs ( ) ; boolean allOkay = true ; File [ ] files = pFrom . ...
Copies a directory recursively . If the destination folder does not exist it is created
156,299
public static boolean copy ( InputStream pFrom , OutputStream pTo ) throws IOException { Validate . notNull ( pFrom , "from" ) ; Validate . notNull ( pTo , "to" ) ; InputStream in = new BufferedInputStream ( pFrom , BUF_SIZE * 2 ) ; OutputStream out = new BufferedOutputStream ( pTo , BUF_SIZE * 2 ) ; byte [ ] buffer = ...
Copies all data from one stream to another . The data is copied from the fromStream to the toStream using buffered streams for efficiency .