Return-Path: Delivered-To: apmail-hadoop-avro-dev-archive@minotaur.apache.org Received: (qmail 79455 invoked from network); 1 Jun 2009 23:29:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Jun 2009 23:29:19 -0000 Received: (qmail 50143 invoked by uid 500); 1 Jun 2009 23:29:31 -0000 Delivered-To: apmail-hadoop-avro-dev-archive@hadoop.apache.org Received: (qmail 50091 invoked by uid 500); 1 Jun 2009 23:29:31 -0000 Mailing-List: contact avro-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: avro-dev@hadoop.apache.org Delivered-To: mailing list avro-dev@hadoop.apache.org Received: (qmail 50080 invoked by uid 99); 1 Jun 2009 23:29:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jun 2009 23:29:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jun 2009 23:29:28 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 917C6234C004 for ; Mon, 1 Jun 2009 16:29:07 -0700 (PDT) Message-ID: <1297931617.1243898947582.JavaMail.jira@brutus> Date: Mon, 1 Jun 2009 16:29:07 -0700 (PDT) From: "Scott Banachowski (JIRA)" To: avro-dev@hadoop.apache.org Subject: [jira] Created: (AVRO-42) C++ avro MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org C++ avro -------- Key: AVRO-42 URL: https://issues.apache.org/jira/browse/AVRO-42 Project: Avro Issue Type: New Feature Reporter: Scott Banachowski Priority: Minor I have a C++ implementation for Avro to contribute. I opened this issue to submit a patch. Overview: Serializer/Parser- objects for writing/reading raw binary. xxxSchema- objects for composing schemas. ValidSchema- a schema object that has been converted to a parse tree (with some sanity checks). ValidSchema.toJson() writes the schema as a json object. ValidatingSerializer/ValidatingParser- check that reads/writes match the expected schema type (more expensive than the raw serializer/parser but they detect errors, and allow dynamic discovery of parsed data/attributes). Compiler (compileJsonSchema())- converts a Json string schema to a ValidSchema. Code Generation (experimental) - given a schema it generates C++ objects of the same data types, and the code to serialize and parse it. What's missing: Defaults are not yet supported. Resolving schema conflicts is not yet supported. And the file and rpc containers are not yet implemented. Documentation, sparse. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.