Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The GAE-JDO docs suggest it is possible to retrieve parent keys from child keys:

Note also that a key's string representation is not encrypted: a user can decode the key string to extract its components, including the kinds and identifiers of the entity and its ancestors.

REF: "Entities, Properties, and Keys"

I am generating keys using the following:

@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
@Extension(vendorName = "datanucleus", key = "gae.encoded-pk", value = "true")
private String id;

When inspecting the datastore, my entity keys look like the following:

parent.id = ahBzfmRhcndpbnNsYWItaHJkcg4LEgZNYXJrZXQYlrIZDA
child1.id = ahBzfmRhcndpbnNsYWItaHJkchsLEgZNYXJrZXQYlrIZDAsSBlRyYWRlchjsBww
child2.id = ahBzfmRhcndpbnNsYWItaHJkchsLEgZNYXJrZXQYlrIZDAsSBlRyYWRlchiRTgw
...

(where Parent.class has children of type Child.class). So, what I'm looking for is a GWT function like this:

String parentId = getKeyForClass(Parent.class, childId);

so that from the client (GWT) I can reference the child object (by first finding its parent):

Child child = data.getParentFromId(parentId).getChildFromId(childId);

I could solve this problem by also keeping track of the parentId, but if the parent information is already embedded in the child id, this seems rather inefficient.

Hope that makes sense! Thanks in advance.

~Owen

share|improve this question
Have you found the algorithm or a routine to do that in Java or python?, if so the java version should work directly in gwt or should be easy to port. – Manolo Feb 19 at 12:14
No, haven't found how to do it in Java or Python. – opowell Feb 19 at 15:30
it seems the child id is composed by a string appended to the parent one, if the pattern were that the child id starts in a fixed position the algo was trivial, but I'm not convinced. Try to look for more docs around that or playing with more keys. – Manolo Feb 19 at 20:14

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.