hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
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
/*
 * Copyright (C) 2008 Philippe Gerum <rpm@xenomai.org>.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
 
#ifndef _COPPERPLATE_REGISTRY_H
#define _COPPERPLATE_REGISTRY_H
 
#include <sys/types.h>
#include <pthread.h>
#include <fcntl.h>
#include <boilerplate/list.h>
#include <boilerplate/hash.h>
#include <boilerplate/obstack.h>
 
struct fsobj;
 
#define REGISTRY_SHARED  1
#define REGISTRY_ANON    2
 
#ifdef CONFIG_XENO_REGISTRY
 
struct registry_operations {
   int (*open)(struct fsobj *fsobj, void *priv);
   int (*release)(struct fsobj *fsobj, void *priv);
   ssize_t (*read)(struct fsobj *fsobj,
           char *buf, size_t size, off_t offset,
           void *priv);
   ssize_t (*write)(struct fsobj *fsobj,
            const char *buf, size_t size, off_t offset,
            void *priv);
};
 
struct regfs_dir;
 
struct fsobj {
   pthread_mutex_t lock;
   char *path;
   const char *basename;
   int mode;
   size_t privsz;
   struct regfs_dir *dir;
   struct timespec ctime;
   struct timespec mtime;
   const struct registry_operations *ops;
   struct pvholder link;
   struct pvhashobj hobj;
};
 
#ifdef __cplusplus
extern "C" {
#endif
 
int registry_add_dir(const char *fmt, ...);
 
int registry_init_file(struct fsobj *fsobj,
              const struct registry_operations *ops,
              size_t privsz);
 
int registry_add_file(struct fsobj *fsobj,
             int mode,
             const char *fmt, ...);
 
void registry_destroy_file(struct fsobj *fsobj);
 
void registry_touch_file(struct fsobj *fsobj);
 
int __registry_pkg_init(const char *arg0,
           char *mountpt,
           int flags);
 
int registry_pkg_init(const char *arg0,
             int flags);
 
void registry_pkg_destroy(void);
 
#ifdef __cplusplus
}
#endif
 
#else /* !CONFIG_XENO_REGISTRY */
 
struct fsobj {
};
 
struct registry_operations {
};
 
static inline
int registry_add_dir(const char *fmt, ...)
{
   return 0;
}
 
static inline
void registry_init_file(struct fsobj *fsobj,
           const struct registry_operations *ops,
           size_t privsz)
{
}
 
static inline
int registry_add_file(struct fsobj *fsobj,
             int mode,
             const char *fmt, ...)
{
   return 0;
}
 
static inline
void registry_destroy_file(struct fsobj *fsobj)
{
}
 
static inline
void registry_touch_file(struct fsobj *fsobj)
{
}
 
static inline
int __registry_pkg_init(const char *arg0,
           char *mountpt, int flags)
{
   return 0;
}
 
static inline
int registry_pkg_init(const char *arg0,
             int flags)
{
   return 0;
}
 
static inline
void registry_pkg_destroy(void)
{
}
 
#endif /* !CONFIG_XENO_REGISTRY */
 
#endif /* !_COPPERPLATE_REGISTRY_H */