summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/FaultTolerance/FLARe/DeCoRAM/src/Packing_Scheduler.cpp
blob: a212277ad5214cfe434046128310eb391ba7b62a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
// -*- C++ -*-

//=============================================================================
/**
 *  @file    Packing_Scheduler.cpp
 *
 *  $Id$
 *
 *  @author  Friedhelm Wolf (fwolf@dre.vanderbilt.edu)
 */
//=============================================================================

#include <numeric>
#include "Packing_Scheduler.h"
#include "CTT_Basic.h"
#include "CTT_Enhanced.h"

Packing_Scheduler::Packing_Scheduler (const PROCESSOR_LIST & processors,
                                      unsigned int max_failures)
  : Scheduler (processors, max_failures)
{
}

class TaskListBackupAccumulator : public std::binary_function <bool,
                                                               TASK_LIST,
                                                               bool>
{
public:
  TaskListBackupAccumulator (const Task & task,
                             const Processor & primary,
                             REPLICA_GROUPS & rep_groups)
    : task_ (task),
      primary_ (primary),
      rep_groups_ (rep_groups) {}

  bool operator () (bool found, TASK_LIST & tasks)
  {
    bool result = found;

    if (!found)
      {
        Processor p = rep_groups_[primary_name (
                                    *tasks.begin ())].begin ()->first;

        if (p.compare (primary_) == 0)
          {
            result = true;
            tasks.push_back (task_);
          }
      }

    return result;
  }
private:
  Task task_;
  Processor primary_;
  REPLICA_GROUPS & rep_groups_;
};

class RankAccumulator : public std::binary_function <unsigned int,
                                                     TASK_LIST,
                                                     unsigned int>
{
public:
  RankAccumulator (REPLICA_GROUPS & rep_groups)
    : rep_groups_ (rep_groups)
  {
  }

  unsigned int operator () (unsigned int value, const TASK_LIST & tasks)
  {
    bool found = false;

    // get first task
    Task t = *tasks.begin ();

    // take rank of the first entry
    const TASK_POSITIONS & replicas = 
      rep_groups_[primary_name (t)];

    // find position of task
    unsigned int rank = 0;
    for (; rank < replicas.size (); ++rank)
      if (t.name.compare (replicas[rank].second.name) == 0)
        {
          found = true;
          ++rank;
          break;
        }

    if (!found)
      rank = 0;

    return value + rank;
  }
private:
  REPLICA_GROUPS & rep_groups_;
};

void
Packing_Scheduler::update_schedule (const ScheduleResult & result)
{
  this->Scheduler::update_schedule (result);

  this->update_task_groups (result);
}

double
Packing_Scheduler::schedule_task (const Task & task, 
                                  const Processor & processor)
{
  CTT_Basic ctt;

  if (task.rank == 0)
    {
      // do ordinary wcrt for primary
      TASK_LIST local_tasks = schedule_[processor];
      local_tasks.push_back (task);
      return ctt (local_tasks);
    }
  else
    {
      // check whether this processor already contains a replica of
      // this application
      TASK_POSITIONS replica_group = 
        replica_groups_[primary_name (task)];
      
      if (std::accumulate (replica_group.begin (),
                           replica_group.end (),
                           false,
                           ProcessorNameComparison (
                             processor)))
        return .0;

      // check if the processors contains primaries
      if (schedule_[processor].begin ()->rank == 0)
        return .0;

      // determine groups of tasks that reside on the same processors
      TASK_LISTS local_groups = task_groups_[processor];

      // add task to group
      this->add_backup (task, local_groups);

      // if this is the first entry
      if (local_groups.size () == 1)
        {
          // schedule using the basic algorithm
          TASK_LIST local_tasks = schedule_[processor];
          local_tasks.push_back (task);
          return ctt (local_tasks);
        }
      else
        {
          if (!(this->rank_check (local_groups)))
            return .0;
          
          TRACE ("found: " << local_groups);
          
          // check if tasks are schedulable in any processor failure
          // case
          if (this->merge_check (local_groups))
            {
              CTT_Enhanced ctt_enh;
              return ctt_enh (this->merge_lists (local_groups));
            }
        }
    }

  return .0;
}

class TaskListPrimaryAccumulator : public std::binary_function <bool,
                                                                TASK_LIST,
                                                                bool>
{
public:
  TaskListPrimaryAccumulator (const Task & task)
    : task_ (task) {}

  bool operator () (bool found, TASK_LIST & tasks)
  {
    bool result = found;

    if (!found)
      {
        if (tasks.begin ()->rank == 0)
          {
            result = true;
            tasks.push_back (task_);
          }
      }

    return result;
  }

private:
  Task task_;
};

void
Packing_Scheduler::update_task_groups (const ScheduleResult & result)
{
  // add task to existing task groups
  TASK_LISTS & local_groups = task_groups_[result.processor];

  if (result.task.rank == 0)
    {
      // if this is a primary check wether there are other
      // primaries on this processors
      if (!std::accumulate (local_groups.begin (),
                            local_groups.end (),
                            false,
                            TaskListPrimaryAccumulator (result.task)))
        {
          // create a new group if there is no primary yet
          TASK_LIST new_list;
          new_list.push_back (result.task);
          local_groups.push_back (new_list);
        }
    }
  else // if the task is a backup task
    {
      this->add_backup (result.task, local_groups);
    }

  TRACE (task_groups_);
}

void
Packing_Scheduler::add_backup (const Task & task,
                               TASK_LISTS & tl)
{
  // first find the primary processor
  Processor pp = 
    replica_groups_[primary_name (task)].begin ()->first;

  // check wether there is a task list with the same
  // primary processor and add it if this is the case
  if (!std::accumulate (tl.begin (),
                        tl.end (),
                        false,
                        TaskListBackupAccumulator (task,
                                                   pp,
                                                   replica_groups_)))
    {
      // create a new group if there is no group yet
      TASK_LIST new_list;
      new_list.push_back (task);
      tl.push_back (new_list);
    }  
}

bool 
Packing_Scheduler::rank_check (const TASK_LISTS & list)
{
  for (TASK_LISTS::const_iterator it1 = list.begin ();
       it1 != list.end ();
       ++it1)
    {
      for (TASK_LISTS::const_iterator it2 = it1 + 1;
           it2 != list.end ();
           ++it2)
        {
          if (this->paired_rank_check (*it1, *it2) <= max_failures_)
            {          
              return false;
            }
        }
    }

  return true;
}

unsigned int 
Packing_Scheduler::paired_rank_check (const TASK_LIST & list1,
                                      const TASK_LIST & list2)
{
  TASK_LISTS group;
  group.push_back (list1);
  group.push_back (list2);

  // check whether k = consistency_level numbers of failures would
  // affect more than one task group to become active.
  return std::accumulate (group.begin (),
                          group.end (),
                          (unsigned int) 0,
                          RankAccumulator (replica_groups_));
}

bool
Packing_Scheduler::merge_check (const TASK_LISTS & lists)
{
  bool schedulable = true;
  CTT_Enhanced ctt;

  for (size_t i = 0;
       i < lists.size ();
       ++i)
    {
      TASK_LISTS tl = lists;
      TASK_LIST active_tasks;
      
      std::transform (tl[i].begin (),
                      tl[i].end (),
                      std::inserter (active_tasks,
                                     active_tasks.begin ()),
                      PrimaryConversion ());

      tl[i] = active_tasks;

      if (.0 >= ctt (this->merge_lists (tl)))
        {
          schedulable = false;
          break;
        }
    }

  return schedulable;
}

TASK_LIST
Packing_Scheduler::merge_lists (const TASK_LISTS & lists)
{
  TASK_LIST result;

  // merge all lists
  for (TASK_LISTS::const_iterator it = lists.begin ();
       it != lists.end ();
       ++it)
    {
      std::copy (it->begin (),
                 it->end (),
                 std::inserter (result,
                                result.begin ()));
    }

  // sort list by period
  std::sort (result.begin (),
             result.end (),
             PeriodComparison<Task> ());

  return result;
}

std::ostream & operator<< (std::ostream & ostr, 
                           const TASK_LISTS & tl)
{
  ostr << "<";
  for (TASK_LISTS::const_iterator it = tl.begin ();
       it != tl.end ();
       ++it)
    {
      ostr << *it << "|";
    }
  ostr << ">";

  return ostr;
}

std::ostream & operator<< (std::ostream & ostr, 
                           const TASK_GROUPS & tg)
{
  ostr << "TASK_GROUPS:";
  for (TASK_GROUPS::const_iterator it = tg.begin ();
       it != tg.end ();
       ++it)
    {
      ostr  << std::endl << it->first << ": " << it->second;
    }

  return ostr;
}