File: buffer.c

package info (click to toggle)
comedilib 0.11.0%2B5-1.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,544 kB
  • sloc: xml: 19,779; ansic: 14,719; sh: 5,679; cpp: 2,211; ruby: 1,658; perl: 700; makefile: 596; yacc: 439; lex: 86; python: 17
file content (211 lines) | stat: -rw-r--r-- 6,063 bytes parent folder | download | duplicates (3)
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
/*
    lib/buffer.c
    functions for manipulating buffers

    COMEDILIB - Linux Control and Measurement Device Interface Library
    Copyright (C) 1997-2001 David A. Schleef <ds@schleef.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, version 2.1
    of the License.

    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.
*/

#include "libinternal.h"
#include <string.h>

EXPORT_ALIAS_DEFAULT(_comedi_set_buffer_size,comedi_set_buffer_size,0.7.18);
int _comedi_set_buffer_size(comedi_t *it, unsigned int subdev, unsigned int size)
{
	int ret;
	comedi_bufconfig bc;

	if(!valid_subd(it,subdev)) return -1;
	memset(&bc, 0, sizeof(bc));
	bc.subdevice = subdev;
	bc.size = size;
	ret = comedi_ioctl(it->fd, COMEDI_BUFCONFIG, &bc);
	if(ret < 0) return ret;

	return bc.size;
}

EXPORT_ALIAS_DEFAULT(_comedi_set_max_buffer_size,comedi_set_max_buffer_size,0.7.18);
int _comedi_set_max_buffer_size(comedi_t *it, unsigned int subdev, unsigned int max_size)
{
	int ret;
	comedi_bufconfig bc;

	if(!valid_subd(it,subdev)) return -1;
	memset(&bc, 0, sizeof(bc));
	bc.subdevice = subdev;
	bc.maximum_size = max_size;
	ret = comedi_ioctl(it->fd, COMEDI_BUFCONFIG, &bc);
	if(ret < 0) return ret;

	return bc.maximum_size;
}

EXPORT_ALIAS_DEFAULT(_comedi_get_max_buffer_size,comedi_get_max_buffer_size,0.7.18);
int _comedi_get_max_buffer_size(comedi_t *it, unsigned int subdevice)
{
	return comedi_set_max_buffer_size(it, subdevice, 0);
}

EXPORT_ALIAS_DEFAULT(_comedi_get_buffer_size,comedi_get_buffer_size,0.7.18);
int _comedi_get_buffer_size(comedi_t *it, unsigned int subdev)
{
	return comedi_set_buffer_size(it, subdev, 0);
}

EXPORT_ALIAS_DEFAULT(_comedi_get_buffer_contents,comedi_get_buffer_contents,0.7.18);
int _comedi_get_buffer_contents(comedi_t *it, unsigned int subdev)
{
	int ret;
	comedi_bufinfo bi;

	if(!valid_subd(it,subdev)) return -1;
	memset(&bi, 0, sizeof(bi));
	bi.subdevice = subdev;
	ret = comedi_ioctl(it->fd, COMEDI_BUFINFO, &bi);
	if(ret < 0)
	{
		if(__comedi_errno == EPIPE)__comedi_errno = EBUF_OVR;
		return ret;
	}
	return bi.buf_write_count - bi.buf_read_count;
}

EXPORT_ALIAS_DEFAULT(_comedi_mark_buffer_read,comedi_mark_buffer_read,0.7.18);
int _comedi_mark_buffer_read(comedi_t *it, unsigned int subdev, unsigned int bytes)
{
	int ret;
	comedi_bufinfo bi;

	if(!valid_subd(it,subdev)) return -1;
	memset(&bi, 0, sizeof(bi));
	bi.subdevice = subdev;
	bi.bytes_read = bytes;
	ret = comedi_ioctl(it->fd, COMEDI_BUFINFO, &bi);
	if(ret < 0)
	{
		if(__comedi_errno == EPIPE)__comedi_errno = EBUF_OVR;
		return -1;
	}
	return bi.bytes_read;
}

EXPORT_ALIAS_DEFAULT(_comedi_mark_buffer_written,comedi_mark_buffer_written,0.8.0);
int _comedi_mark_buffer_written(comedi_t *it, unsigned int subdev, unsigned int bytes)
{
	int ret;
	comedi_bufinfo bi;

	if(!valid_subd(it,subdev)) return -1;
	memset(&bi, 0, sizeof(bi));
	bi.subdevice = subdev;
	bi.bytes_written = bytes;
	ret = comedi_ioctl(it->fd, COMEDI_BUFINFO, &bi);
	if(ret < 0)
	{
		if(__comedi_errno == EPIPE)__comedi_errno = EBUF_UNDR;
		return -1;
	}
	return bi.bytes_written;
}

EXPORT_ALIAS_DEFAULT(_comedi_get_buffer_read_offset,comedi_get_buffer_read_offset,0.11.0);
int _comedi_get_buffer_read_offset(comedi_t *it, unsigned int subdev)
{
	int ret;
	comedi_bufinfo bi;

	if(!valid_subd(it,subdev)) return -1;
	memset(&bi, 0, sizeof(bi));
	bi.subdevice = subdev;
	ret = comedi_ioctl(it->fd, COMEDI_BUFINFO, &bi);
	if(ret < 0) return ret;
	return bi.buf_read_ptr;
}

/*
 * Keep this for backwards compatibility as a synonym of
 * comedi_get_buffer_read_offset().
 * TODO: mark this as deprecated.
 */
EXPORT_ALIAS_DEFAULT(_comedi_get_buffer_offset,comedi_get_buffer_offset,0.7.18);
int _comedi_get_buffer_offset(comedi_t *it, unsigned int subdev)
{
	return comedi_get_buffer_read_offset(it, subdev);
}

EXPORT_ALIAS_DEFAULT(_comedi_get_buffer_write_offset,comedi_get_buffer_write_offset,0.11.0);
int _comedi_get_buffer_write_offset(comedi_t *it, unsigned int subdev)
{
	int ret;
	comedi_bufinfo bi;

	if(!valid_subd(it,subdev)) return -1;
	memset(&bi, 0, sizeof(bi));
	bi.subdevice = subdev;
	ret = comedi_ioctl(it->fd, COMEDI_BUFINFO, &bi);
	if(ret < 0) return ret;
	return bi.buf_write_ptr;
}

EXPORT_ALIAS_DEFAULT(_comedi_get_buffer_read_count,comedi_get_buffer_read_count,0.11.0);
int _comedi_get_buffer_read_count(comedi_t *it, unsigned int subdev, unsigned int *read_count)
{
	int ret;
	comedi_bufinfo bi;

	*read_count = 0;
	if(!valid_subd(it,subdev)) return -1;
	memset(&bi, 0, sizeof(bi));
	bi.subdevice = subdev;
	ret = comedi_ioctl(it->fd, COMEDI_BUFINFO, &bi);
	if(ret < 0) return ret;
	*read_count = bi.buf_read_count;
	return 0;
}

EXPORT_ALIAS_DEFAULT(_comedi_get_buffer_write_count,comedi_get_buffer_write_count,0.11.0);
int _comedi_get_buffer_write_count(comedi_t *it, unsigned int subdev, unsigned int *write_count)
{
	int ret;
	comedi_bufinfo bi;

	*write_count = 0;
	if(!valid_subd(it,subdev)) return -1;
	memset(&bi, 0, sizeof(bi));
	bi.subdevice = subdev;
	ret = comedi_ioctl(it->fd, COMEDI_BUFINFO, &bi);
	if(ret < 0) return ret;
	*write_count = bi.buf_write_count;
	return 0;
}

/*
 * Keep _comedi_get_front_count for backwards compatibility.
 * It is not in "comedilib.h" and is not documented.
 */
EXPORT_ALIAS_DEFAULT(_comedi_get_front_count,comedi_get_front_count,0.7.18);
int _comedi_get_front_count(comedi_t *it, unsigned int subdev)
{
	unsigned int write_count;
	int ret;

	ret = _comedi_get_buffer_write_count(it, subdev, &write_count);
	if (ret < 0) return ret;
	return write_count;
}