Return-Path: Delivered-To: apmail-jackrabbit-dev-archive@www.apache.org Received: (qmail 49725 invoked from network); 13 May 2007 21:27:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 May 2007 21:27:38 -0000 Received: (qmail 17409 invoked by uid 500); 13 May 2007 21:27:43 -0000 Delivered-To: apmail-jackrabbit-dev-archive@jackrabbit.apache.org Received: (qmail 17379 invoked by uid 500); 13 May 2007 21:27:43 -0000 Mailing-List: contact dev-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list dev@jackrabbit.apache.org Received: (qmail 17370 invoked by uid 99); 13 May 2007 21:27:43 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 13 May 2007 14:27:43 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 13 May 2007 14:27:36 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id C0753714068 for ; Sun, 13 May 2007 14:27:15 -0700 (PDT) Message-ID: <6391856.1179091635785.JavaMail.jira@brutus> Date: Sun, 13 May 2007 14:27:15 -0700 (PDT) From: "Christophe Lombart (JIRA)" To: dev@jackrabbit.apache.org Subject: [jira] Moved: (JCR-918) Avoid INFINITE RECURSION when Object Model has cycles. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCR-918?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christophe Lombart moved GRFT-106 to JCR-918: --------------------------------------------- Fix Version/s: (was: ocm-1.0) Component/s: (was: JCR-Mapping) jcr-mapping Issue Type: Test (was: Improvement) Key: JCR-918 (was: GRFT-106) Project: Jackrabbit (was: Graffito) > Avoid INFINITE RECURSION when Object Model has cycles. > ------------------------------------------------------ > > Key: JCR-918 > URL: https://issues.apache.org/jira/browse/JCR-918 > Project: Jackrabbit > Issue Type: Test > Components: jcr-mapping > Reporter: Dan Connelly > Assigned To: Christophe Lombart > Priority: Critical > > The default ObjectConverterImpl is restricted to acyclic graphs in the object model. > Many Java object models are NOT acyclic. For instance, I am on your Friends list. Yoar are on my Friends list. Java encourages such structures. Almost any large object model in Java will have hidden cycles. > Saving an Object Model that contains cycles using Graffito causes an infinite recursion. > Clearly, it is important to maintain a 1-to-1 correspondence between Nodes and Objects to prevent this. In the absence of Multiple Parent Nodes, it will be necessary to use REFERENCE or UNDEFINED Items in place of the 2nd (or greater) Node representing a given Object. My preference si that the default ObjectConverterImpl should support REFERENCE., Failing this, use of UNDEFINED also solves this problem and would acceptable (as default). Whether or not REFERENCE is used, both insertion and retrieval must provide a reasonable result. A custom ojbect converter should be available to switch UNDEFINED to REFERENCE, or vice versa. > Also, it is probably best to keep the targeted, well-defined Nodes close to the Root Node. This implies that the default ObjectConverterImpl should implement a Breadth-First, rather than a Depth-First, traversal of the Object Model on both insertion and retrieval. Again, if the default is Depth-First, a custom object converter should be available that implements Breadth-First. > Admittedly, support for (2 representations) X (2 traversals) implies a drastic refactoring and/or rewriting of the ObjectConverterImpl class. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.