Fetching objects with conditions belonging to children

Author Message

Thomas Nunninger

Friday 03 February 2006 3:23:30 pm

Hi,

I have a class event calendar. The children of this class are events. And each event can have an article and a gallery as children. It looks something like that:

event calendar
  event 1
    article
    gallery
  event 2
    article
  event 3
  event 4
    gallery
  event 5
    article
    gallery

Now I want to list all events having an article or a gallery (e.g. event 3 isn't listed). This can look like this:

  event 1
   -> article  -> gallery
  event 2
   -> article
  event 4
   -> gallery
  event 5
   -> article -> gallery

In order to be efficient and to use the offset/limit functionality (e.g. 10 events per page) I don't like this algortihm:

fetch all events sort by event_date
foreach event {
  fetch childen
  if has(article child) or has(gallery child) {
    echo event name
    fetch children
    foreach child {
      echo child.name
    }
  }
}

Another idea was:

fetch all articles and galleries sort by path
event_ids = array()
foreach object {
  fetch parent_event
  if not in_array(parent_event_id, event_ids) {
    echo event.name
    event_ids[] = parent_event_id
  }

  echo object.name  
}

But also here I'm not able to do offset/limit things. And I can't sort by event_date.

I think, I need an extended_attribute_filter with in my content-list-fetch (fetching all events which have children) and fetching the arcticle and gallery children of the retrieved events (cf the first algorithm). Any other ideas?

Thomas

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 19 2025 00:21:54
Script start
Timing: Jan 19 2025 00:21:54
Module start 'layout'
Timing: Jan 19 2025 00:21:54
Module start 'content'
Timing: Jan 19 2025 00:21:55
Module end 'content'
Timing: Jan 19 2025 00:21:55
Script end

Main resources:

Total runtime0.6669 sec
Peak memory usage4,096.0000 KB
Database Queries46

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0088 588.0547152.6406
Module start 'layout' 0.00880.0042 740.695339.4766
Module start 'content' 0.01300.6520 780.1719445.8438
Module end 'content' 0.66500.0019 1,226.01568.1250
Script end 0.6669  1,234.1406 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00400.5943160.0002
Check MTime0.00180.2661160.0001
Mysql Total
Database connection0.00160.237010.0016
Mysqli_queries0.620092.9684460.0135
Looping result0.00060.0838440.0000
Template Total0.621693.220.3108
Template load0.00240.365220.0012
Template processing0.619192.833420.3096
Template load and register function0.00010.012610.0001
states
state_id_array0.00140.211010.0014
state_identifier_array0.00100.153720.0005
Override
Cache load0.00200.2993160.0001
Sytem overhead
Fetch class attribute can translate value0.00070.108010.0007
Fetch class attribute name0.00060.095820.0003
XML
Image XML parsing0.00050.068410.0005
class_abstraction
Instantiating content class attribute0.00000.000420.0000
General
dbfile0.00090.1315160.0001
String conversion0.00000.001340.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
1content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
1content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
5content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
4content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 13
 Number of unique templates used: 6

Time used to render debug report: 0.0001 secs