2011/12/17 David Lutterkort <lut...@redhat.com> > On Fri, 2011-12-16 at 14:01 +0100, Raphaël Pinson wrote: > > Resurrecting this old thread... > > > > We now have more calls that have the same issue as rm, namely setm and > > clearm, which modify more than one node. > > > > How could be adapt the idea to this? Maybe having several nodes under > > /augeas/tree/last_created and/or /augeas/tree/last_modified ? > > I would follow the model set by save and create entries > underneath /augeas/events, > e.g. /augeas/events/removed, /augeas/events/inserted etc. > > Right now, /augeas/events doesn't get cleared out in api_entry, but we > might consider doing that - or should we leave that to the user ? They > could then issue three 'rm' and just collect all the removed nodes. >
If they get stacked in order, why not. aug_rm returns the number of nodes that were removed, so you know how many nodes you have to take out of the pile. So we could have something like: /augeas/events/removed[1] /augeas/events/inserted[1] /augeas/events/modified[1] /augeas/events/modified[2] /augeas/events/inserted[3] /augeas/events/removed[2] /augeas/events/removed[3] etc. where the last aug_rm call removed 2 nodes (and thus returned 2). You would then have to depile /augeas/events/removed[last()] and /augeas/events/removed[last()-1] to get their paths. Is that what you mean? Raphaël
_______________________________________________ augeas-devel mailing list augeas-devel@redhat.com https://www.redhat.com/mailman/listinfo/augeas-devel