Return-Path: Delivered-To: apmail-openjpa-dev-archive@www.apache.org Received: (qmail 57721 invoked from network); 15 Mar 2008 16:40:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Mar 2008 16:40:10 -0000 Received: (qmail 18646 invoked by uid 500); 15 Mar 2008 16:40:07 -0000 Delivered-To: apmail-openjpa-dev-archive@openjpa.apache.org Received: (qmail 18604 invoked by uid 500); 15 Mar 2008 16:40:07 -0000 Mailing-List: contact dev-help@openjpa.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openjpa.apache.org Delivered-To: mailing list dev@openjpa.apache.org Received: (qmail 18595 invoked by uid 99); 15 Mar 2008 16:40:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Mar 2008 09:40:07 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of plinskey@gmail.com designates 64.233.184.226 as permitted sender) Received: from [64.233.184.226] (HELO wr-out-0506.google.com) (64.233.184.226) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Mar 2008 16:39:27 +0000 Received: by wr-out-0506.google.com with SMTP id c57so3211678wra.9 for ; Sat, 15 Mar 2008 09:39:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=f+GIbMOqmjAtq/FkBO1r1N/V/X5QNlqRjaJHmeVYPBY=; b=ldLjAi7UOA7VgX+iFGqCHdEyeQgs73MHoYvXXLFbSbKyyQzPqTj8w9Ff4LwfTnAJWBa4YEA+6JRUwlsISVnIjU/9A6eXlUkgWrgYxJzShcVCVuGJpyR68BgFgjkGXF/7XcYXx74AQFxLyxF6dNbP0ICkneZoj8BedUBc2lnrwhQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=DoJ+oNqZ1YNgphBwO4E9B3GWU0mMYbhBwvYe1TTCaMh9VM1sg+A4uIJhqMuy1MzGKfS2H/KXNvCak4h7V9BlfYQKeg/TZu3o+FmqPzexGTlOS6a7s6i0kt3/ilL41S6r7eDlZYJ2E9NnflCglGcRrrCcyz68HHnsRLeRGXn0Td4= Received: by 10.150.205.13 with SMTP id c13mr7113761ybg.135.1205599176185; Sat, 15 Mar 2008 09:39:36 -0700 (PDT) Received: by 10.150.158.20 with HTTP; Sat, 15 Mar 2008 09:39:36 -0700 (PDT) Message-ID: <7262f25e0803150939w4579f05esc3ddf675d119848d@mail.gmail.com> Date: Sat, 15 Mar 2008 09:39:36 -0700 From: "Patrick Linskey" To: dev@openjpa.apache.org Subject: Re: Serialization problem In-Reply-To: <47D91877020000CC00001E35@smtpgw.co.pierce.wa.us> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20080311T155734Z_96CE00040000@co.pierce.wa.us> <47D7DC65020000CC00001DEC@smtpgw.co.pierce.wa.us> <040522CA-D362-4E85-9E51-D123526699A4@SUN.com> <7262f25e0803122311m6eeb2c31oc5f1278d5e6bc744@mail.gmail.com> <47D91877020000CC00001E35@smtpgw.co.pierce.wa.us> X-Virus-Checked: Checked by ClamAV on apache.org Another alternative (since it sounds like you're writing custom XML serialization, essentially) would be to use similar logic to what the DetachManager uses, and interrogate the OpenJPAStateManager or ClassMetaData corresponding to each instance. Those objects will tell you definitively what has been accessed / what is in the current fetch configuration. -Patrick On Thu, Mar 13, 2008 at 12:05 PM, Reece Garrett wrote: > Hello Patrick, > > I am setting openjpa.DetachState=fetch-groups but, as I explained to Craig, couldn't figure out how to determing whether NULL properties were set due to OpenJPA initializing them (a bug according to Craig) or because they were fetched NULL. > > Upon closer inspection of the docs I see that using openjpa.DetachState=fetch-groups(DetachedStateManager=true,AccessUnloaded=false) will block access to unloaded properties by throwing an IllegalStateException (kudos to you guys for not using an implementation specific exception). I don't like the idea of being shut out of unloaded properties but can't immediately think of situation where it could bite me in the ass and it does solve my problem. > > Thanks, > -Reece > > > >>> "Patrick Linskey" 3/12/2008 11:11:06 PM >>> > > > Hi, > > You might want to read up on the openjpa.DetachState property [1]. In > particular, take a look at the behavior when the property is set to > 'fetch-groups'. Are those semantics close to what you're looking for? > > -Patrick > > On Wed, Mar 12, 2008 at 2:48 PM, Craig L Russell wrote: > > Hi Reece, > > > > Just to reiterate my position: It should be the responsibility of > > OpenJPA to efficiently serialize instances without requiring our users > > to write elaborate workarounds. > > > > > > On Mar 12, 2008, at 1:36 PM, Reece Garrett wrote: > > > > > Craig, > > > > > > Thanks for your response. I think what you suggest would be an > > > excellent feature to have but I'm not sure it would address my > > > issue. Basically I need to know if a field was set to null because: > > > > > > A) it was in an active fetch group and the retrieved value was null, > > > B) the field was not in an active fetch group and was never > > > initialized. > > > > > > If A is true then I serialize an empty node for that field. If B is > > > true then I skip the field. > > > > The detached object state is supposed to disambiguate these cases. Are > > you using this feature of OpenJPA? > > > > > > > > Originally I had my setter methods add the field's name to a list > > > which I later used to determine which fields were involved in a > > > fetch and thus needed to be serialized (null or not). However, my > > > logs indicate that OpenJPA initializes all fields to null (using the > > > setter methods) > > > > This is a bug. There is no reason to initialize fields to null because > > the vm already did this. Can you file a JIRA? > > > > > > > before populating persistence capable objects so all of my fields > > > end up in the list...no good. I could do something hacky like only > > > store a field's name if it is either set to a non-null value or set > > > to null at least twice (once for initialization and then again if > > > the value pulled is null). I would rather not do that. > > > > I agree. > > > > > > > > Why not just use the default constructor instead of explicitly > > > setting all fields to null? Is there anything I can do about this > > > behavior? > > > > See above. This should be fixed. > > > > Craig > > > > > > > > > > > > > -Reece > > > > > > > > > > > > > > >>>> Craig L Russell 3/11/2008 6:15 PM >>> > > > Hi Reece, > > > The original design for fetch plans comes from JDO, where you can > > > specify both fields to load and fields to unload (setting their Java > > > value to null) before serializing them. > > > > > > So the only impact of an unloaded field is to write null to the > > > output stream. > > > > > > I'm not sure whether the unload fields ever made it into a JIRA for > > > OpenJPA. You can see some of the dialog here: http://www.mail-archive.com/open-jpa-dev@incubator.apache.org/msg01663.html > > > > > > It seems to me that adding the ability to specify that fields should > > > be unloaded would address your requirement quite well. > > > > > > Craig > > > > > > On Mar 11, 2008, at 3:57 PM, Reece Garrett wrote: > > > Greetings all, > > > > > > I am trying to do some intelligent serialization of my persistence > > > capable classes. By intelligent I mean that only fields that were in > > > an active fetchgroup during retrieval should be serialized (whether > > > they are null or not). > > > > > > Currently I am storing a transient list of properties that should be > > > serialized in the model objects themselves. After retrieving the > > > object I populate the list by inspecting the fetchgroups that were > > > used for the retrieval. The list is then used by xsteam to determing > > > if a property of the object should be serialized. It is working but > > > it's neither pretty nor performant. Ideally, I want each active > > > fetchgroup to fire a postload event and a callback receive a > > > reference to the object being retrieved and a reference to the > > > fetchgroup that generated the event. I could then inspect the > > > fetchgroup attributes and populate my list. Unfortunately, the > > > callback only gets a reference to the object being retrieved so I > > > cannot figure out which properties were loaded. > > > > > > Any insite is much appreciated. > > > > > > Thanks, > > > -Reece > > > > > > > > > > > > Craig RussellArchitect, Sun Java Enterprise System http://java.sun.com/products/jdo408 > > > 276-5638 mailto:Craig.Russell@sun.comP.S. A good JDO? O, Gasp! > > > > > > > > > > > > > > > > > > > Craig Russell > > > > > > Architect, Sun Java Enterprise System http://java.sun.com/products/jdo > > 408 276-5638 mailto:Craig.Russell@sun.com > > P.S. A good JDO? O, Gasp! > > > > > > > > -- > Patrick Linskey > 202 669 5907 > -- Patrick Linskey 202 669 5907