aboutsummaryrefslogtreecommitdiffstats
path: root/rt-graph.c
blob: 5fa4aa48a49bab9fc1de1420c57eb00bffc60d0b (plain) (blame)
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
#include <stdio.h>
#include <string.h>
#include "trace-graph.h"
#include "trace-hash.h"

#define DEBUG_LEVEL 0
#if DEBUG_LEVEL > 0
#define dprintf(l, x...)			\
	do {					\
		if (l <= DEBUG_LEVEL)		\
			printf(x);		\
	} while (0)
#else
#define dprintf(l, x...)	do { if (0) printf(x); } while (0)
#endif

static inline guint get_event_hash_key(gint eid)
{
	return trace_hash(eid) % TS_HASH_SIZE;
}

/*
 * Returns string value stored in @field.
 */
static char* read_string_field(struct format_field *field,
			       struct record *record)
{
	char *name, *loc;

	loc = (char*)(record->data + field->offset);
	name = malloc_or_die(field->size);
	snprintf(name, field->size, "%s", loc);
	return name;
}

#define __FIELD(type, name) type##_##name##_field
#define FIELD(rtg, type, name) rtg->__FIELD(type, name)
#define STORE_FIELD(rtg, e, type, name)					\
	do {								\
		FIELD(rtg, type, name) = pevent_find_field(e, #name);	\
	} while (0)
#define LOAD_LONG(rtg, r, type, name, v)				\
	do {								\
		pevent_read_number_field(FIELD(rtg, type, name),	\
					 r->data, v);			\
	} while (0)
#define LOAD_INT(rtg, r, type, name, v)					\
	do {								\
		unsigned long long val;					\
		LOAD_LONG(rtg, r, type, name, &val);			\
		*v = val;						\
	} while (0)
#define LOAD_STRING(rtg, r, type, name, v)				\
	do {								\
		*v = read_string_field(FIELD(rtg, type, name), r);	\
	} while (0)

/*
 * Returns cached field for @eid at @key.
 */
struct format_field* find_ts_hash(struct ts_list **events,
				  gint key, gint eid)
{
	struct ts_list *list;
	for (list = events[key]; list; list = list->next) {
		if (list->eid == eid)
			return list->ts_field;
	}
	return NULL;
}

/*
 * Return field for @eid at @key, caching if necessary.
 */
static struct format_field*
add_ts_hash(struct ts_list **events, gint eid, gint key,
	    struct pevent *pevent,
	    struct record *record)
{
	struct ts_list *list;
	struct format_field *field;
	struct event_format *event;

	event = pevent_find_event(pevent, eid);
	if (!event)
		die("Could not find event %d for record!\n", eid);
	field = pevent_find_field(event, RT_TS_FIELD);

	list = malloc_or_die(sizeof(*list));
	list->eid = eid;
	list->next = events[key];
	list->ts_field = field;
	events[key] = list;

	return field;
}

/**
 * Return container for @cid and @key, if present.
 */
struct cont_list*
find_container(struct cont_list **conts, gint cid, gint key)
{
	struct cont_list *list;
	for (list = conts[key]; list; list = list->next) {
		if (list->cid == cid)
			return list;
	}
	return NULL;
}

/*
 * Add and return container with @cid and @name to @conts.
 */
static struct cont_list*
add_container(struct cont_list **conts, gint cid, char *name)
{
	int key;
	struct cont_list *list;

	key = get_container_key(cid);

	list = find_container(conts, cid, key);

	if (!list) {
		list = malloc_or_die(sizeof(*list));
		list->cid = cid;
		list->name = name;
		list->vcpus = NULL;
		list->plotted = FALSE;

		list->next = conts[key];
		conts[key] = list;
	} else {
		free(name);
	}
	return list;
}

/*
 * Add and return server with @sid to container @cid.
 */
static struct vcpu_list*
add_vcpu(struct cont_list **conts,
	 int cid, int sid,
	 unsigned long long wcet, unsigned long long period)
{
	int key;
	struct cont_list *clist;
	struct vcpu_list *vlist, *prev, *next;

	key = get_container_key(cid);
	clist = find_container(conts, cid, key);
	if (!clist)
		die("Cannot add server %d to non-existant container %d!\n",
		       sid, cid);

	for (vlist = clist->vcpus; vlist; vlist = vlist->next) {
		if (vlist->sid == sid)
			return vlist;
	}

	vlist = malloc_or_die(sizeof(*vlist));
	vlist->sid = sid;
	vlist->params.wcet = wcet;
	vlist->params.period = period;

	/* Insert in order */
	if (!clist->vcpus) {
		vlist->next = clist->vcpus;
		clist->vcpus = vlist;
	} else {
		prev = clist->vcpus;
		for (next = prev->next; next; prev = next, next = prev->next) {
			if (sid < next->sid) {
				vlist->next = next;
				prev->next = vlist;
				break;
			}
		}
		if (!next) {
			vlist->next = NULL;
			prev->next = vlist;
		}
	}

	return vlist;
}

/**
 * rt_graph_check_any - parse timestamp of any record
 * @epid: set to the event's task PID
 * @rt_ts: set to the event's real-time timestamp
 */
int rt_graph_check_any(struct graph_info *ginfo,
		       struct record *record,
		       gint *epid, gint *out_eid, unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct format_field *field;
	guint key, eid;

	eid = pevent_data_type(pevent, record);
	key = get_event_hash_key(eid);
	field = find_ts_hash(rtg_info->events, key, eid);

	if (!field)
		field = add_ts_hash(rtg_info->events, eid, key, pevent, record);

	if (!field) {
		dprintf(2, "No field '%s' for rid %d\n", RT_TS_FIELD, eid);
		*ts = 0;
	} else {
		dprintf(2, "Found field '%s' for rid %d\n", RT_TS_FIELD, eid);
		pevent_read_number_field(field, record->data, ts);
	}

	*epid = pevent_data_pid(pevent, record);


	dprintf(3, "Read (%d) record for task %d at %llu\n",
		eid, *epid, *ts);
	*out_eid = eid;
	return 1;
}

/**
 * rt_graph_check_task_param - check for litmus_task_param record
 * Return 1 and @pid, @owcet, and @operiod if the record matches
 */
int rt_graph_check_task_param(struct graph_info *ginfo,
			      struct record *record,
			      gint *pid, unsigned long long *owcet,
			      unsigned long long *operiod)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	struct rt_task_params *params;
	struct task_list *list;
	unsigned long long wcet, period;
	gint id;
	int ret = 0;

	/* Attempt to update record cache. It can only be updated
	 * after the pevent has "seen" its first litmus_task_param
	 * event.
	 */
	if (rtg_info->task_param_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_task_param");
		if (!event)
			goto out;
		rtg_info->task_param_id = event->id;
		dprintf(2, "Found task_param id %d\n", event->id);
		STORE_FIELD(rtg_info, event, param, pid);
		STORE_FIELD(rtg_info, event, param, wcet);
		STORE_FIELD(rtg_info, event, param, period);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->task_param_id) {
		LOAD_INT(rtg_info, record, param, pid, pid);
		LOAD_LONG(rtg_info, record, param, wcet, &wcet);
		LOAD_LONG(rtg_info, record, param, period, &period);

		ret = 1;
		dprintf(3, "Read task_param record for task %d (%llu, %llu)\n",
			*pid, wcet, period);

		list = add_task_hash(rtg_info->tasks, *pid);
		if (!list->data) {
			params = malloc_or_die(sizeof(*params));
			params->wcet = wcet;
			params->period = period;
			list->data = params;
		}

		/* Store max period to calculate max search distance */
		if (period > rtg_info->max_period)
			rtg_info->max_period = period;

		*owcet = wcet;
		*operiod = period;
	}
 out:
	return ret;
}

/**
 * rt_graph_check_switch_to - check for litmus_switch_to record
 * Return 1 and @pid, @job, and @ts if the record matches
 */
int rt_graph_check_switch_to(struct graph_info *ginfo,
			     struct record *record,
			     gint *pid, gint *job,
			     unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->switch_to_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_switch_to");
		if (!event)
			goto out;
		rtg_info->switch_to_id = event->id;
		STORE_FIELD(rtg_info, event, switch_to, pid);
		STORE_FIELD(rtg_info, event, switch_to, job);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->switch_to_id) {
		LOAD_INT(rtg_info, record, switch_to, pid, pid);
		LOAD_INT(rtg_info, record, switch_to, job, job);
		*ts = get_rts(ginfo, record);

		ret = 1;
		dprintf(3, "Read switch_to (%d) record for job %d:%d, "
			"ts: %llu\n", id, *pid, *job, *ts);
	}
 out:
	return ret;
}

/**
 * rt_graph_check_switch_away - check for litmus_switch_away record
 * Return 1 and @pid, @job, and @ts if the record matches
 */
int rt_graph_check_switch_away(struct graph_info *ginfo,
			       struct record *record,
			       gint *pid, gint *job,
			       unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->switch_away_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_switch_away");
		if (!event)
			goto out;
		rtg_info->switch_away_id = event->id;
		dprintf(2, "Found switch_away id %d\n", event->id);
		STORE_FIELD(rtg_info, event, switch_away, pid);
		STORE_FIELD(rtg_info, event, switch_away, job);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->switch_away_id) {
		LOAD_INT(rtg_info, record, switch_away, pid, pid);
		LOAD_INT(rtg_info, record, switch_away, job, job);
		*ts = get_rts(ginfo, record);

		ret = 1;
		dprintf(3, "Read switch_away (%d) record for job %d:%d, "
			"ts: %llu\n", id, *pid, *job, *ts);
	}
 out:
	return ret;
}

/**
 * rt_graph_check_task_release - check for litmus_task_release record
 * Return 1 and @pid, @job, @release, and @deadline if the record matches
 */
int rt_graph_check_task_release(struct graph_info *ginfo,
				struct record *record,
				gint *pid, gint *job,
				unsigned long long *release,
				unsigned long long *deadline)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->task_release_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_task_release");
		if (!event)
			goto out;
		rtg_info->task_release_id = event->id;
		dprintf(2, "Found task_release id %d\n", event->id);
		STORE_FIELD(rtg_info, event, release, pid);
		STORE_FIELD(rtg_info, event, release, job);
		STORE_FIELD(rtg_info, event, release, release);
		STORE_FIELD(rtg_info, event, release, deadline);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->task_release_id) {
		LOAD_INT(rtg_info, record, release, pid, pid);
		LOAD_INT(rtg_info, record, release, job, job);
		LOAD_LONG(rtg_info, record, release, release, release);
		LOAD_LONG(rtg_info, record, release, deadline, deadline);

		ret = 1;
		dprintf(3, "Read task_release (%d) record for job %d:%d, "
			"release: %llu, dead: %llu\n", id, *pid, *job, *release,
			*deadline);
	}
 out:
	return ret;
}

/**
 * rt_graph_check_task_completion - check for litmus_task_completion record
 * Return 1 and @pid, @job, and @ts if the record matches
 */
int rt_graph_check_task_completion(struct graph_info *ginfo,
				   struct record *record,
				   gint *pid, gint *job, unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->task_completion_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_task_completion");
		if (!event)
			goto out;
		rtg_info->task_completion_id = event->id;
		dprintf(2, "Found task_completion id %d\n", event->id);
		STORE_FIELD(rtg_info, event, completion, pid);
		STORE_FIELD(rtg_info, event, completion, job);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->task_completion_id) {
		LOAD_INT(rtg_info, record, completion, pid, pid);
		LOAD_INT(rtg_info, record, completion, job, job);
		*ts = get_rts(ginfo, record);

		ret = 1;
		dprintf(3, "Read task_completion (%d) record for job %d:%d "
			"ts: %llu\n", id, *pid, *job, *ts);
	}
 out:
	return ret;
}

/**
 * rt_graph_check_task_block - check for litmus_task_block record
 * Return 1, @pid, and @ts if the record matches
 */
int rt_graph_check_task_block(struct graph_info *ginfo,
			      struct record *record,
			      gint *pid, gint *lid,
			      unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->task_block_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_task_block");
		if (!event)
			goto out;
		dprintf(2, "Found task_block id %d\n", event->id);
		rtg_info->task_block_id = event->id;
		STORE_FIELD(rtg_info, event, block, pid);
		STORE_FIELD(rtg_info, event, block, lid);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->task_block_id) {
		LOAD_INT(rtg_info, record, block, pid, pid);
		LOAD_INT(rtg_info, record, block, lid, lid);
		*ts = get_rts(ginfo, record);

		ret = 1;
		dprintf(3, "Read task_block (%d) record on %d for task %d\n",
			id, *lid, *pid);
	}
 out:
	return ret;
}

/**
 * rt_graph_check_task_resume - check for litmus_task_resume record
 * Return 1, @pid, and @ts if the record matches
 */
int rt_graph_check_task_resume(struct graph_info *ginfo,
			       struct record *record,
			       gint *pid, gint *lid,
			       unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->task_resume_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_task_resume");
		if (!event)
			goto out;
		dprintf(2, "Found task_resume id %d\n", event->id);
		rtg_info->task_resume_id = event->id;
		STORE_FIELD(rtg_info, event, resume, pid);
		STORE_FIELD(rtg_info, event, resume, lid);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->task_resume_id) {
		LOAD_INT(rtg_info, record, resume, pid, pid);
		LOAD_INT(rtg_info, record, resume, lid, lid);
		*ts = get_rts(ginfo, record);

		ret = 1;
		dprintf(3, "Read task_resume (%d) record on %d for task %d\n",
			id, *lid, *pid);
	}
 out:
	return ret;
}


/**
 * rt_graph_check_sys_release - check for system release record
 * Return 1 and @when if the record matches
 */
int rt_graph_check_sys_release(struct graph_info *ginfo,
			       struct record *record,
			       unsigned long long *rel)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->sys_release_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_sys_release");
		if (!event)
			goto out;
		rtg_info->sys_release_id = event->id;
		dprintf(2, "Found sys_release id %d\n", event->id);
		STORE_FIELD(rtg_info, event, sys_release, rel);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->sys_release_id) {
		LOAD_LONG(rtg_info, record, sys_release, rel, rel);

		ret = 1;
		dprintf(3, "Read sys_release (%d) record, rel: %llu\n", id, *rel);
	}
 out:
	return ret;
}


/**
 * rt_graph_check_container_param - check for litmus_container_param record
 * Return 1, @cid, and @name if the record matches
 */
int rt_graph_check_container_param(struct graph_info *ginfo,
				   struct record *record,
				   gint *cid, char **name)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->container_param_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_container_param");
		if (!event)
			goto out;
		rtg_info->container_param_id = event->id;
		dprintf(2, "Found container_param id %d\n", event->id);
		STORE_FIELD(rtg_info, event, cparam, cid);
		STORE_FIELD(rtg_info, event, cparam, name);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->container_param_id) {
		LOAD_INT(rtg_info, record, cparam, cid, cid);
		LOAD_STRING(rtg_info, record, cparam, name, name);

		add_container(rtg_info->containers, *cid, *name);

		dprintf(3, "Read container_param for %s - %d\n",
			*name, *cid);
		ret = 1;
	}
 out:
	return ret;
}

/**
 * rt_graph_check_server_param - check for litmus_server_param record
 * Return 1, @sid, @ocid, @owcet, and @operiod if the record matches
 */
int rt_graph_check_server_param(struct graph_info *ginfo, struct record *record,
				gint *sid, gint *ocid,
				unsigned long long *owcet,
				unsigned long long *operiod)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	unsigned long long wcet, period;
	gint cid, id;
	int ret = 0;

	if (rtg_info->server_param_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_server_param");
		if (!event)
			goto out;
		rtg_info->server_param_id = event->id;
		dprintf(2, "Found server_param id %d\n", event->id);
		STORE_FIELD(rtg_info, event, sparam, cid);
		STORE_FIELD(rtg_info, event, sparam, sid);
		STORE_FIELD(rtg_info, event, sparam, wcet);
		STORE_FIELD(rtg_info, event, sparam, period);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->server_param_id) {
		LOAD_INT(rtg_info, record, sparam, sid, sid);
		LOAD_INT(rtg_info, record, sparam, cid, &cid);
		LOAD_LONG(rtg_info, record, sparam, wcet, &wcet);
		LOAD_LONG(rtg_info, record, sparam, period, &period);

		add_vcpu(rtg_info->containers, cid, *sid, wcet, period);

		ret = 1;
		dprintf(3, "Read server_param record for server %d "
			"(%llu, %llu) in container %d\n",
			*sid, wcet, period, cid);
		*ocid = cid;
		*owcet = wcet;
		*operiod = period;
	}
 out:
	return ret;
}

/**
 * rt_graph_check_server_switch_to - check for litmus_server_switch_to record
 * Return 1, @sid, @job, @tid, and @ts if the record matches
 */
int rt_graph_check_server_switch_to(struct graph_info *ginfo,
				    struct record *record,
				    gint *sid, gint *job,
				    gint *tid, gint *tjob,
				    unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->server_switch_to_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_server_switch_to");
		if (!event)
			goto out;
		rtg_info->server_switch_to_id = event->id;
		dprintf(2, "Found server_switch_to id %d\n", event->id);
		STORE_FIELD(rtg_info, event, sswitch_to, sid);
		STORE_FIELD(rtg_info, event, sswitch_to, job);
		STORE_FIELD(rtg_info, event, sswitch_to, tid);
		STORE_FIELD(rtg_info, event, sswitch_to, tjob);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->server_switch_to_id) {
		LOAD_INT(rtg_info, record, sswitch_to, sid, sid);
		LOAD_INT(rtg_info, record, sswitch_to, job, job);
		LOAD_INT(rtg_info, record, sswitch_to, tid, tid);
		LOAD_INT(rtg_info, record, sswitch_to, tjob, tjob);
		*ts = get_rts(ginfo, record);

		dprintf(3, "Read server_switch_to(job(%d, %d)): %d\n",
			*sid, *job, *tid);
		ret = 1;
	}
 out:
	return ret;
}

/**
 * rt_graph_check_server_switch_away - check for litmus_server_switch_away
 * Return 1, @sid, @job, @tid, and @ts if the record matches
 */
int rt_graph_check_server_switch_away(struct graph_info *ginfo,
				      struct record *record,
				      gint *sid, gint *job,
				      gint *tid, gint *tjob,
				      unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->server_switch_away_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_server_switch_away");
		if (!event)
			goto out;
		rtg_info->server_switch_away_id = event->id;
		dprintf(2, "Found server_switch_away id %d\n", event->id);
		STORE_FIELD(rtg_info, event, sswitch_away, sid);
		STORE_FIELD(rtg_info, event, sswitch_away, job);
		STORE_FIELD(rtg_info, event, sswitch_away, tid);
		STORE_FIELD(rtg_info, event, sswitch_away, tjob);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->server_switch_away_id) {
		LOAD_INT(rtg_info, record, sswitch_away, sid, sid);
		LOAD_INT(rtg_info, record, sswitch_away, job, job);
		LOAD_INT(rtg_info, record, sswitch_away, tid, tid);
		LOAD_INT(rtg_info, record, sswitch_away, tjob, tjob);
		*ts = get_rts(ginfo, record);


		dprintf(3, "Read server_switch_away(job(%d, %d)): %d\n",
			*sid, *job, *tid);
		ret = 1;
	}
 out:
	return ret;
}

/**
 * rt_graph_check_server_release - check for litmus_server_release
 * Return 1, @sid, @job, @release, and @deadline if the record matches
 */
int rt_graph_check_server_release(struct graph_info *ginfo,
				  struct record *record,
				  gint *sid, gint *job,
				  unsigned long long *release,
				  unsigned long long *deadline)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->server_release_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_server_release");
		if (!event)
			goto out;
		rtg_info->server_release_id = event->id;
		dprintf(2, "Found server_release id %d\n", event->id);
		STORE_FIELD(rtg_info, event, srelease, sid);
		STORE_FIELD(rtg_info, event, srelease, job);
		STORE_FIELD(rtg_info, event, srelease, release);
		STORE_FIELD(rtg_info, event, srelease, deadline);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->server_release_id) {
		LOAD_INT(rtg_info, record, srelease, sid, sid);
		LOAD_INT(rtg_info, record, srelease, job, job);
		LOAD_LONG(rtg_info, record, srelease, release, release);
		LOAD_LONG(rtg_info, record, srelease, deadline, deadline);

		dprintf(3, "Read server_switch_release(job(%d, %d)), rel: %llu,"
			" dead: %llu\n", *sid, *job, *release, *deadline);
		ret = 1;
	}
 out:
	return ret;
}

/**
 * rt_graph_check_server_completion - check for litmus_server_completion record
 * Return 1, @sid, and @job if the record matches
 */
int rt_graph_check_server_completion(struct graph_info *ginfo,
				     struct record *record,
				     gint *sid, gint *job,
				     unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->server_completion_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_server_completion");
		if (!event)
			goto out;
		rtg_info->server_completion_id = event->id;
		dprintf(2, "Found server_completion id %d\n", event->id);
		STORE_FIELD(rtg_info, event, scompletion, sid);
		STORE_FIELD(rtg_info, event, scompletion, job);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->server_completion_id) {
		LOAD_INT(rtg_info, record, scompletion, sid, sid);
		LOAD_INT(rtg_info, record, scompletion, job, job);
		*ts = get_rts(ginfo, record);

		dprintf(3, "Read server_completion(job(%d, %d))\n", *sid, *job);
		ret = 1;
	}
 out:
	return ret;
}


/**
 * rt_graph_check_server_block - check for litmus_server_block record
 * Return 1, @sid, and @ts if the record matches
 */
int rt_graph_check_server_block(struct graph_info *ginfo,
				struct record *record,
				gint *sid, gint *lid,
				unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->server_block_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_server_block");
		if (!event)
			goto out;
		dprintf(2, "Found server_block id %d\n", event->id);
		rtg_info->server_block_id = event->id;
		STORE_FIELD(rtg_info, event, sblock, sid);
		STORE_FIELD(rtg_info, event, sblock, lid);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->server_block_id) {
		LOAD_INT(rtg_info, record, sblock, sid, sid);
		LOAD_INT(rtg_info, record, sblock, lid, lid);
		*ts = get_rts(ginfo, record);

		ret = 1;
		dprintf(3, "Read server_block record for server %d\n", *sid);
	}
 out:
	return ret;
}

/**
 * rt_graph_check_server_resume - check for litmus_server_resume record
 * Return 1, @sid, and @ts if the record matches
 */
int rt_graph_check_server_resume(struct graph_info *ginfo,
				 struct record *record,
				 gint *sid, gint *lid,
				 unsigned long long *ts)
{
	struct rt_graph_info *rtg_info = &ginfo->rtg_info;
	struct pevent *pevent = ginfo->pevent;
	struct event_format *event;
	gint id;
	int ret = 0;

	if (rtg_info->server_resume_id < 0) {
		event = pevent_find_event_by_name(pevent, "litmus",
						  "litmus_server_resume");
		if (!event)
			goto out;
		dprintf(2, "Found server_resume id %d\n", event->id);
		rtg_info->server_resume_id = event->id;
		STORE_FIELD(rtg_info, event, sresume, sid);
		STORE_FIELD(rtg_info, event, sresume, lid);
	}

	id = pevent_data_type(pevent, record);
	if (id == rtg_info->server_resume_id) {
		LOAD_INT(rtg_info, record, sresume, sid, sid);
		LOAD_INT(rtg_info, record, sresume, lid, lid);
		*ts = get_rts(ginfo, record);

		ret = 1;
		dprintf(3, "Read server_resume record for server %d\n", *sid);
	}
 out:
	return ret;
}


/**
 * init_rt_event_cache - reset cached field values
 */
void init_rt_event_cache(struct rt_graph_info *rtg_info)
{
	dprintf(1, "Initializing RT event cache\n");

	memset(rtg_info, 0, sizeof(*rtg_info));

	rtg_info->clean_records = 0;
	rtg_info->start_time = 0ULL;

	rtg_info->task_param_id = -1;
	rtg_info->switch_to_id = -1;
	rtg_info->switch_away_id = -1;
	rtg_info->task_release_id = -1;
	rtg_info->task_completion_id = -1;
	rtg_info->task_block_id = -1;
	rtg_info->task_resume_id = -1;

	rtg_info->sys_release_id = -1;
	rtg_info->container_param_id = -1;

	rtg_info->server_param_id = -1;
	rtg_info->server_switch_to_id = -1;
	rtg_info->server_switch_away_id = -1;
	rtg_info->server_release_id = -1;
	rtg_info->server_completion_id = -1;
	rtg_info->server_block_id = -1;
	rtg_info->server_resume_id = -1;
}

/**
 * get_rts - extract real-time timestamp from a record
 *
 * This will only have to extract the timestamp once; after the time
 * is extracted it will be cached in the record itself.
 */
unsigned long long
get_rts(struct graph_info *ginfo, struct record *record)
{
	gint epid, eid;
	unsigned long long ts = 0;
	if (!record->cached_rts) {
		rt_graph_check_any(ginfo, record, &epid, &eid, &ts);
		record->cached_rts = ts;
	} else
		ts = record->cached_rts;
	return ts;
}