Return-Path: Delivered-To: apmail-lucene-lucy-dev-archive@minotaur.apache.org Received: (qmail 36545 invoked from network); 10 Mar 2009 18:43:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Mar 2009 18:43:13 -0000 Received: (qmail 44263 invoked by uid 500); 10 Mar 2009 18:43:12 -0000 Delivered-To: apmail-lucene-lucy-dev-archive@lucene.apache.org Received: (qmail 44239 invoked by uid 500); 10 Mar 2009 18:43:12 -0000 Mailing-List: contact lucy-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucy-dev@lucene.apache.org Delivered-To: mailing list lucy-dev@lucene.apache.org Received: (qmail 43999 invoked by uid 99); 10 Mar 2009 18:43:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Mar 2009 11:43:11 -0700 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; Tue, 10 Mar 2009 18:43:10 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 865CE234C004 for ; Tue, 10 Mar 2009 11:42:50 -0700 (PDT) Message-ID: <1084854103.1236710570549.JavaMail.jira@brutus> Date: Tue, 10 Mar 2009 11:42:50 -0700 (PDT) From: "Marvin Humphrey (JIRA)" To: lucy-dev@lucene.apache.org Subject: [jira] Created: (LUCY-5) Boilerplater compiler 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 Boilerplater compiler --------------------- Key: LUCY-5 URL: https://issues.apache.org/jira/browse/LUCY-5 Project: Lucy Issue Type: New Feature Components: Boilerplater Reporter: Marvin Humphrey Assignee: Marvin Humphrey Boilerplater is a small compiler which supports a vtable-based object model. The output is C code which adheres to the design that Dave Balmain and I hammered out a while back; the input is a collection of ".bp" header files. Our original intent was to pepper traditional C ".h" header files with no-op macros to define each class's interface; the code generator would understand these macros but the C compiler would ignore them. C source code files would then pound-include both the ".h" header and the auxiliary, generated ".bp" file. The problem with this approach is that C syntax is too constraining. Because C does not support namespacing, every symbol has to be prepended with a prefix to avoid conflicts. Futhermore, adding metadata to declarations (such as default values for arguments, or whether NULL is an acceptable value) is awkward. The result is ".h" header files that are excessively verbose, cumbersome to edit, and challenging to parse visually and to grok. The solution is to make the ".bp" file the master header file, and write it in a small, purpose-built, declaration-only language. The code-generator/compiler chews this ".bp" file and spits out a single ".h" header file for pound-inclusion in ".c" source code files. This isn't really that great a divergence from the original plan. There's no fixed point at which a "code generator" becomes a "compiler", and while the declaration-only header language has a few conventions that core developers will have to familiarize themselves with, the same was true for the no-op macro scheme. Furthermore, the Boilerplater compiler itself is merely an implementation detail; it is not publicly exposed and thus can be modified at will. Users who access Lucy via Perl, Ruby, Java, etc will never see it. Even Lucy's C users will never see it, because the public C API itself will be defined by a lightweight binding and generated documentation. The important thing for us to focus on is the *output* code generated by Boilerplater. We must nail the object model. It has to be fast. It has to live happily as a symbiote within each host. It has to support callbacks into the host language, so that users may define custom subclasses and override methods easily. It has to present a robust ABI that makes it possible to recompile an updated core without breaking compiled extensions (like Java, unlike C++). The present implementation of the Boilerplater compiler is a collection of Perl modules: Boilerplater::Type, Boilerplater::Variable, Boilerplater::Method, Boilerplater::Class, and so on. One CPAN module is required, Parse::RecDescent; however, only core developers will need either Perl or Parse::RecDescent, since public distributions of Lucy will contain pre-generated code. Some of Boilerplater's modules have kludgy internals, but on the whole they seem to do a good job of throwing errors rather than failing subtly. I expect to submit individual Boilerplater modules using JIRA sub-issues which reference this one, to allow room for adequate commentary. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.