Changeset f7386f7


Ignore:
Timestamp:
Dec 4, 2020, 8:25:37 AM (4 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
4f649cb
Parents:
1ac1f0b
Message:

add queue to multi-list container test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/bits/multi_list.cfa

    r1ac1f0b rf7386f7  
    22#include <stdlib.hfa>
    33#include "sequence.hfa"
     4#include "queue.hfa"
    45#include "stack.hfa"
    56
     
    89struct TaskDL {
    910        inline Seqable;
    10         Task & task_;
     11        Task & node;
    1112};
    1213void ?{}( TaskDL & this, Task & task ) with( this ) {
    1314        ((Seqable &)this){};
    14         &task_ = &task;                                                                         // pointer to containing node
     15        &node = &task;                                                                          // pointer to containing node
    1516}
    1617Task & task( TaskDL & this ) with( this ) {                             // getter routine for containing node
    17         return task_;
     18        return node;
     19}
     20
     21struct TaskSL {
     22        inline Colable;
     23        Task & node;
     24};
     25void ?{}( TaskSL & this, Task & task ) with( this ) {
     26        ((Colable &)this){};
     27        &node = &task;                                                                          // pointer to containing node
     28}
     29Task & task( TaskSL & this ) with( this ) {                             // getter routine for containing node
     30        return node;
    1831}
    1932
     
    2134        TaskDL clusterRef;                                                                      // list of tasks on cluster
    2235        TaskDL readyRef;                                                                        // list of tasks on ready queue
    23         // other stuff
     36        TaskSL mutexRef;                                                                        // list of tasks on mutex queue
     37        int id;
    2438};
    25 void ?{}( Task & this ) with( this ) {
     39void ?{}( Task & this, int id ) with( this ) {
    2640        ((TaskDL &)clusterRef){ this };
    2741        ((TaskDL &)readyRef){ this };
     42        ((TaskSL &)mutexRef){ this };
     43        this.id = id;
    2844}
    2945
    3046int main() {
    3147        Sequence(TaskDL) clustList, readyList;                          // task lists
     48        Queue(TaskSL) mutexList;
    3249        enum { Lnth = 10 };
    3350
    34         for ( Lnth ) {
    35                 Task & task = *new();                                                   // create task node
     51        for ( id; Lnth ) {
     52                Task & task = *new( id );                                               // create task node
    3653                addHead( clustList, task.clusterRef );                  // insert on lists in opposite directions
    3754                addTail( readyList, task.readyRef );
     55                addHead( mutexList, task.mutexRef );
    3856        }
    3957
    4058        SeqIter(TaskDL) sqiter;
    4159        TaskDL & dl;
     60        TaskSL & sl;
    4261
    4362        sout | nlOff;
    44         for ( over( sqiter, clustList ); sqiter >> dl; ) {              // print lists
     63        for ( over( sqiter, clustList ); sqiter >> dl; ) {      // print lists
     64                Task & fred = task( dl );
     65                sout | fred.id;                                                                 // works
     66                sout | task( dl ).id;                                                   // does not work
     67        }
     68        sout | nl;
     69        for ( over( sqiter, readyList ); sqiter >> dl; ) {
    4570                sout | &task( dl );
    4671        }
    4772        sout | nl;
    48         for ( SeqIter(TaskDL) iter = { readyList }; iter >> dl; ) {
    49                 sout | &task( dl );
     73        for ( QueueIter(TaskSL) qiter = { mutexList }; qiter >> sl; ) { // print lists
     74                sout | &task( sl );
    5075        }
    5176        sout | nl;
    5277        for ( Lnth ) {                                                                          // remove nodes from clustList
    5378                dropHead( clustList );
     79                drop( mutexList );
    5480        }
    5581        for ( Lnth ) {                                                                          // remove nodes from readyList and safe to delete nodes
     
    5985        // Re-purpose Seqable as Colable
    6086        Stack(TaskDL) mutexStack;
    61         for ( Lnth ) {
    62                 Task & task = *new();                                                   // create task node
     87        for ( id; Lnth ) {
     88                Task & task = *new( id );                                               // create task node
    6389                push( mutexStack, task.clusterRef );                    // insert on lists in opposite directions
    6490        }
Note: See TracChangeset for help on using the changeset viewer.