Return-Path: Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: (qmail 96184 invoked from network); 25 Feb 2011 19:06:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 25 Feb 2011 19:06:48 -0000 Received: (qmail 24331 invoked by uid 500); 25 Feb 2011 19:06:48 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 24245 invoked by uid 500); 25 Feb 2011 19:06:46 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 23729 invoked by uid 99); 25 Feb 2011 19:06:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Feb 2011 19:06:42 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Feb 2011 19:06:42 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id D23B41AD319 for ; Fri, 25 Feb 2011 19:06:21 +0000 (UTC) Date: Fri, 25 Feb 2011 19:06:21 +0000 (UTC) From: "Pavel Yaskevich (JIRA)" To: commits@cassandra.apache.org Message-ID: <1462077332.93.1298660781857.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1977361444.66.1298659941775.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] Commented: (CASSANDRA-2250) BufferedRandomAccessFile.read(byte[], int, int) method reads max DEFAULT_BUFFER_SIZE MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CASSANDRA-2250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12999478#comment-12999478 ] Pavel Yaskevich commented on CASSANDRA-2250: -------------------------------------------- On my opinion return less than length bytes is acceptable if file does not contain all required length, relying on DEFAULT_BUFFER_SIZE as max length makes bytes(byte[], int, int) and bytes(byte[]) useless > BufferedRandomAccessFile.read(byte[], int, int) method reads max DEFAULT_BUFFER_SIZE > ------------------------------------------------------------------------------------ > > Key: CASSANDRA-2250 > URL: https://issues.apache.org/jira/browse/CASSANDRA-2250 > Project: Cassandra > Issue Type: Sub-task > Components: Core > Reporter: Pavel Yaskevich > > Test to reproduce: > {code} > File tempFile = File.createTempFile("braf", null); > tempFile.deleteOnExit(); > BufferedRandomAccessFile file = new BufferedRandomAccessFile(tempFile, "rw"); > byte[] bigData = new byte[BufferedRandomAccessFile.DEFAULT_BUFFER_SIZE + 10]; > for (int i = 0; i < bigData.length; i++) > bigData[i] = 'd'; > long initialPosition = file.getFilePointer(); > file.write(bigData); // writing data > assert file.getFilePointer() == initialPosition + bigData.length; > assert file.length() == initialPosition + bigData.length; // file size should equals to last position > // reading written buffer > file.seek(initialPosition); > data = new byte[bigData.length]; > assert file.read(data) == data.length; <-- Fails (returns DEFAULT_BUFFER_SIZE as file.read(..) result) > {code} > -- This message is automatically generated by JIRA. - For more information on JIRA, see: http://www.atlassian.com/software/jira