Return-Path: Delivered-To: apmail-avro-dev-archive@www.apache.org Received: (qmail 95576 invoked from network); 1 Mar 2011 17:45:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Mar 2011 17:45:02 -0000 Received: (qmail 25553 invoked by uid 500); 1 Mar 2011 17:45:02 -0000 Delivered-To: apmail-avro-dev-archive@avro.apache.org Received: (qmail 24942 invoked by uid 500); 1 Mar 2011 17:44:59 -0000 Mailing-List: contact dev-help@avro.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@avro.apache.org Delivered-To: mailing list dev@avro.apache.org Received: (qmail 24279 invoked by uid 99); 1 Mar 2011 17:44:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Mar 2011 17:44:57 +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; Tue, 01 Mar 2011 17:44:57 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 0CDD34AAFB for ; Tue, 1 Mar 2011 17:44:37 +0000 (UTC) Date: Tue, 1 Mar 2011 17:44:37 +0000 (UTC) From: "Doug Cutting (JIRA)" To: dev@avro.apache.org Message-ID: <981663558.5534.1299001477049.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <108614126.1793.1297914864384.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] Commented: (AVRO-769) Java: Align Decoder/Encoder APIs for consistency and long term stability 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/AVRO-769?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13000979#comment-13000979 ] Doug Cutting commented on AVRO-769: ----------------------------------- I committed these changes and will roll a new 1.5.0 candidate. > Java: Align Decoder/Encoder APIs for consistency and long term stability > ------------------------------------------------------------------------- > > Key: AVRO-769 > URL: https://issues.apache.org/jira/browse/AVRO-769 > Project: Avro > Issue Type: Improvement > Components: java > Reporter: Scott Carey > Assignee: Scott Carey > Priority: Blocker > Fix For: 1.5.0 > > Attachments: AVRO-769.extra.patch, AVRO-769.extra2.patch, AVRO-769.v1.patch, AVRO-769.v2.patch > > > As part of AVRO-753, we modified the Encoder API to be more like the current Decoder API. This issue tracks related changes to solidify the API of both Encoder and Decoder to be more stable and consistent. It is expected that the result will be long-lived and not require major changes in the future for the following reasons: > * Instantiation and configuration will be funneled through EncoderFactory and DecoderFactory. Individual implementation types and constructors are not exposed. With this abstraction we could, for example, put the features of BlockingBinaryEncoder into BufferedBinaryEncoder and not break any user code. We already have some of this distinction on the Decoder side, but not all BinaryDecoders are going through the factory. > * The core Encoder and Decoder abstract classes will not declare configuration methods or constructors. This makes them 'pure' low level Avro read/write API constructs. This separation of concerns means, for example, that not all encoder implementations need wrap an OutputStream because of init(OutputStream out). > * The core Encoder and Decoder API does not know or care about Schemas, resolution, or any other 'higher order' Avro concept. This is the pure separation of concern for writing/reading primitive Avro types to/from somewhere. > * Implementations have been heavily performance tuned on both sides, so changes to the API necessary for high performance will not be likely. > The Factories will adhere to the following general principles: > * configuration options that do not affect the semantics of a type can be set through the factory. i.e. buffer sizes. > * configuration that affects the semantics or changes the output or supported input will have separate factory methods. For example, choosing between an implementation that requires calling flush() and one that does not, requires choosing a different factory method to instantiate. This is important because it generally means that client code explicitly requests the behavioral type, and that helps prevent bugs caused by accidentally configuring a factory to return an object that is incompatible with the use case. -- This message is automatically generated by JIRA. - For more information on JIRA, see: http://www.atlassian.com/software/jira