Contiki-Inga 3.x
loader.h
Go to the documentation of this file.
1 /** \addtogroup sys
2  * @{
3  */
4 
5 /**
6  * \defgroup loader The Contiki program loader
7  *
8  * The Contiki program loader is an abstract interface for loading and
9  * starting programs.
10  *
11  * @{
12  */
13 
14 /**
15  * \file
16  * Default definitions and error values for the Contiki program loader.
17  * \author Adam Dunkels <adam@dunkels.com>
18  *
19  */
20 
21 /*
22  * Copyright (c) 2003, Adam Dunkels.
23  * All rights reserved.
24  *
25  * Redistribution and use in source and binary forms, with or without
26  * modification, are permitted provided that the following conditions
27  * are met:
28  * 1. Redistributions of source code must retain the above copyright
29  * notice, this list of conditions and the following disclaimer.
30  * 2. Redistributions in binary form must reproduce the above
31  * copyright notice, this list of conditions and the following
32  * disclaimer in the documentation and/or other materials provided
33  * with the distribution.
34  * 3. The name of the author may not be used to endorse or promote
35  * products derived from this software without specific prior
36  * written permission.
37  *
38  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
39  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
40  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
41  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
42  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
43  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
44  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
45  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
46  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
47  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
48  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
49  *
50  * This file is part of the Contiki desktop OS
51  *
52  *
53  */
54 #ifndef LOADER_H_
55 #define LOADER_H_
56 
57 /* Errors that the LOADER_LOAD() function may return: */
58 
59 #define LOADER_OK 0 /**< No error. */
60 #define LOADER_ERR_READ 1 /**< Read error. */
61 #define LOADER_ERR_HDR 2 /**< Header error. */
62 #define LOADER_ERR_OS 3 /**< Wrong OS. */
63 #define LOADER_ERR_FMT 4 /**< Data format error. */
64 #define LOADER_ERR_MEM 5 /**< Not enough memory. */
65 #define LOADER_ERR_OPEN 6 /**< Could not open file. */
66 #define LOADER_ERR_ARCH 7 /**< Wrong architecture. */
67 #define LOADER_ERR_VERSION 8 /**< Wrong OS version. */
68 #define LOADER_ERR_NOLOADER 9 /**< Program loading not supported. */
69 
70 #ifdef LOADER_CONF_ARCH
71 #include LOADER_CONF_ARCH
72 #endif /* LOADER_CONF_ARCH */
73 
74 /**
75  * Load and execute a program.
76  *
77  * This macro is used for loading and executing a program, and
78  * requires support from the architecture dependent code. The actual
79  * program loading is made by architecture specific functions.
80  *
81  * \note A program loaded with LOADER_LOAD() must call the
82  * LOADER_UNLOAD() function to unload itself.
83  *
84  * \param name The name of the program to be loaded.
85  *
86  * \param arg A pointer argument that is passed to the program.
87  *
88  * \return A loader error, or LOADER_OK if loading was successful.
89  */
90 #ifndef LOADER_LOAD
91 #define LOADER_LOAD(name, arg) LOADER_ERR_NOLOADER
92 #endif /* LOADER_LOAD */
93 
94 /**
95  * Unload a program from memory.
96  *
97  * This macro is used for unloading a program and deallocating any
98  * memory that was allocated during the loading of the program. This
99  * function must be called by the program itself.
100  *
101  */
102 #ifndef LOADER_UNLOAD
103 #define LOADER_UNLOAD()
104 #endif /* LOADER_UNLOAD */
105 
106 /**
107  * Load a DSC (program description).
108  *
109  * Loads a DSC (program description) into memory and returns a pointer
110  * to the dsc.
111  *
112  * \return A pointer to the DSC or NULL if it could not be loaded.
113  */
114 #ifndef LOADER_LOAD_DSC
115 #define LOADER_LOAD_DSC(name) NULL
116 #endif /* LOADER_LOAD_DSC */
117 
118 /**
119  * Unload a DSC (program description).
120  *
121  * Unload a DSC from memory and deallocate any memory that was
122  * allocated when it was loaded.
123  */
124 #ifndef LOADER_UNLOAD_DSC
125 #define LOADER_UNLOAD_DSC(dsc)
126 #endif /* LOADER_UNLOAD */
127 
128 #endif /* LOADER_H_ */
129 
130 /** @} */
131 /** @} */