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

In my Grails app, I have two domain classes with a one-to-many relationship, e.g.

class Parent    
    static hasMany = [children: Child]
}

class Child {
    Integer index
    static belongsTo = [parent: Parent]
}

I would like index to record the relative order in which the children were created, such that the first child of a parent will have index 1, the next will have 2, etc. The indices don't have to be consecutive, because a child could be deleted, but they should always reflect the relative order of creation.

I considered doing something like the following to set the index property

class Child {
    Integer index
    static belongsTo = [parent: Parent]

    def beforeValidate() {

        def maxIndex = Child.createCriteria().get {
            projections {
                max('index')
            }
            eq('parent', parent)
        }        

        this.index = maxIndex + 1 ?: 1
    }
}

But of course this doesn't work because it will assign the same index to two transient Child instances. What is the simplest way to maintain this index property?

FWIW, I'm not too concerned about preventing any other code from setting index but if there is some way to do that, it'd be a bonus.

share|improve this question

3 Answers

I thought you could do:

class Parent    
  List children
  static hasMany = [children: Child]
}

And then the children are kept in a List, so implicitly have an index and order. I guess you actually want the elements to have an index field though rather than this implied ordering?

Edit

This works (it seems) but will hit the database every time you query the index

class Child {
  def grailsApplication

  static belongsTo = [ parent: Parent ]

  Integer getIndex() {
    grailsApplication.mainContext.sessionFactory.currentSession.with { sess ->
      createSQLQuery( 'SELECT c.children_idx FROM child c where c.id = :id' )
        .setBigInteger( "id", this.id )
        .list()
        .head() + 1
    }
  }
  String toString() {
    "Child @$index"
  }
}

And makes me feel a little queasy ;-)

Edit 2

Of course, another alternative is:

  Integer getIndex() {
    parent.children.indexOf( this ) + 1
  }
share|improve this answer
yes, I need to be able to access the index property of each Child – Don Nov 15 '12 at 12:21
@Don annoyingly, the db table for Child contains a field children_idx, which is a zero offset location for each Child in the List. But I can't find how to map this column back into the Child domain object without Hibernate blowing up – tim_yates Nov 15 '12 at 13:23
I know....it's almost like Hibernate is mocking me, the bastard! – Don Nov 15 '12 at 13:30
I think I'll take this one to the Grails list as there doesn't seem to be an obvious solution – Don Nov 15 '12 at 13:31
@Don not without firing off some HQL in a getIndex method... :-/ – tim_yates Nov 15 '12 at 13:38

Use an id with auto increment...once a child is created it will never use another id equals but greater...if you just need to know the order of creation you can use the id or add a:

class Child{
    Date dateCreated;
    static belongsTo = [parent: Parent]
}

It will set automatically the date of creation and you can use it to know the order :)

share|improve this answer
I need to have the order stored in an index property of Child that begins with 1 – Don Nov 15 '12 at 12:24

You should just be able to use the id property automatically created for any domain class in Grails. By default, this value will be incremented for each child that is saved to the DB. So...

parent.children.sort {a,b -> a.id <=> b.id}

Will return the parent's children in the order they were saved to the database.

If you absolutely need a property named "index", I believe you can do something like:

Integer index

static mapping = {
    id name: 'index'
}

Be warned, however, that index is probably a reserved word in many DBs, so you won't be able to have a column named index and this will fail. Consider a different name for your property.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.