Contiki 2.5
timetable.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008, Swedish Institute of Computer Science.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the Institute nor the names of its contributors
14  * may be used to endorse or promote products derived from this software
15  * without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * This file is part of the Contiki operating system.
30  *
31  * $Id: timetable.c,v 1.4 2010/04/06 19:10:21 anthony-a Exp $
32  */
33 
34 /**
35  * \file
36  * Implementation of timetable, a data structure containing timestamps for events
37  * \author
38  * Adam Dunkels <adam@sics.se>
39  */
40 #include "sys/clock.h"
41 #include "sys/timetable.h"
42 
43 #include <stdio.h>
44 
45 rtimer_clock_t timetable_timestamp_time;
46 
47 
48 /*---------------------------------------------------------------------------*/
49 struct timetable_timestamp *
50 timetable_entry(struct timetable *t, int num)
51 {
52  if(t == NULL) {
53  return NULL;
54  }
55  return &(t->timestamps[num]);
56 }
57 /*---------------------------------------------------------------------------*/
58 int
59 timetable_ptr(struct timetable *t)
60 {
61  return *t->ptr;
62 }
63 /*---------------------------------------------------------------------------*/
64 void
65 timetable_clear(struct timetable *t)
66 {
67  *t->ptr = 0;
68 }
69 /*---------------------------------------------------------------------------*/
70 rtimer_clock_t
71 timetable_timediff(struct timetable *t,
72  const char *id1, const char *id2)
73 {
74 #ifdef SDCC_mcs51
75  char i; /* SDCC tracker 2982753 */
76 #else
77  int i;
78 #endif
79  int t1, t2;
80 
81  t1 = t2 = t->size;
82 
83  for(i = *t->ptr - 1; i >= 0; --i) {
84  if(t->timestamps[i].id == id1) {
85  t1 = i;
86  break;
87  }
88  }
89 
90  for(i = i - 1; i >= 0; --i) {
91  if(t->timestamps[i].id == id2) {
92  t2 = i;
93  break;
94  }
95  }
96  if(t1 != t->size && t2 != t->size) {
97  return t->timestamps[t1].time - t->timestamps[t2].time;
98  }
99 
100  return 0;
101 }
102 /*---------------------------------------------------------------------------*/
103 void
104 timetable_init(void)
105 {
106  char dummy1, dummy2;
107 #define temp_size 4
108  TIMETABLE_STATIC(temp);
109 
110  timetable_clear(&temp);
111 
112  /* Measure the time for taking a timestamp. */
113  TIMETABLE_TIMESTAMP(temp, &dummy1);
114  TIMETABLE_TIMESTAMP(temp, &dummy2);
115  timetable_timestamp_time = timetable_timediff(&temp, &dummy1, &dummy2);
116 }
117 /*---------------------------------------------------------------------------*/
118 void
119 timetable_print(struct timetable *t)
120 {
121  unsigned int i;
122  int time;
123 
124  time = t->timestamps[0].time;
125 
126  printf("---\n");
127  for(i = 1; i < *t->ptr; ++i) {
128  printf("%s: %u\n", t->timestamps[i - 1].id, t->timestamps[i].time - time);
129  time = t->timestamps[i].time;
130  }
131 }
132 /*---------------------------------------------------------------------------*/