File: ref_string.xml

package info (click to toggle)
cl-uffi 1.4.37-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 708 kB
  • ctags: 378
  • sloc: lisp: 3,408; xml: 2,889; makefile: 229; ansic: 169; sh: 74
file content (514 lines) | stat: -rw-r--r-- 13,956 bytes parent folder | download | duplicates (6)
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
               "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
<!ENTITY % myents SYSTEM "entities.inc">
%myents;
]>

<reference id="strings">
  <title>Strings</title>
  <partintro>
    <title>Overview</title>
    <para>
      &uffi; has functions to two types of <varname>C</varname>-compatible
      strings: <emphasis>cstring</emphasis> and <emphasis>foreign</emphasis>
      strings.  cstrings are used <emphasis>only</emphasis> as parameters to
      and from functions. In some implementations a cstring is not a foreign
      type but rather the Lisp string itself. On other platforms a cstring
      is a newly allocated foreign vector for storing characters. The
      following is an example of using cstrings to both send and return a
      value.
    </para>
    
    <screen>
(uffi:def-function ("getenv" c-getenv) 
   ((name :cstring))
   :returning :cstring)

(defun my-getenv (key)
  "Returns an environment variable, or NIL if it does not exist"
  (check-type key string)
  (uffi:with-cstring (key-native key)
    (uffi:convert-from-cstring (c-getenv key-native))))
    </screen>

    <para>
      In contrast, foreign strings are always a foreign vector of
      characters which have memory allocated. Thus, if you need to
      allocate memory to hold the return value of a string, you must
      use a foreign string and not a cstring.  The following is an
      example of using a foreign string for a return value.
    </para>

    <screen>
(uffi:def-function ("gethostname" c-gethostname)
    ((name (* :unsigned-char))
     (len :int))
  :returning :int)

(defun gethostname ()
  "Returns the hostname"
  (let* ((name (uffi:allocate-foreign-string 256))
         (result-code (c-gethostname name 256))
         (hostname (when (zerop result-code)
                     (uffi:convert-from-foreign-string name))))
    ;; UFFI does not yet provide a universal way to free
    ;; memory allocated by C's malloc. At this point, a program
    ;; needs to call C's free function to free such memory.
    (unless (zerop result-code)
      (error "gethostname() failed."))))
    </screen>

    <para>
      Foreign functions that return pointers to freshly allocated
      strings should in general not return cstrings, but foreign
      strings. (There is no portable way to release such cstrings from
      Lisp.) The following is an example of handling such a function.
    </para>

    <screen>
(uffi:def-function ("readline" c-readline)
    ((prompt :cstring))
  :returning (* :char))

(defun readline (prompt)
  "Reads a string from console with line-editing."
  (with-cstring (c-prompt prompt)
      (let* ((c-str (c-readline c-prompt))
             (str (convert-from-foreign-string c-str)))
        (uffi:free-foreign-object c-str)
        str)))
    </screen>
    
  </partintro>
  
    <refentry id="convert-from-cstring">
      <refnamediv>
	<refname>convert-from-cstring</refname>
	<refpurpose>Converts a cstring to a Lisp string.</refpurpose>
	<refclass>Macro</refclass>
      </refnamediv>
      <refsynopsisdiv>
	<title>Syntax</title>
	<synopsis>
	  <function>convert-from-cstring</function>
	  <replaceable>cstring</replaceable> 
	  => 
	  <returnvalue>string</returnvalue>
	</synopsis>
      </refsynopsisdiv>
      <refsect1>
	<title>Arguments and Values</title>
	<variablelist>
	  <varlistentry>
	    <term><parameter>cstring</parameter></term>
	    <listitem>
	      <para>A cstring.
	      </para>
	    </listitem>
	  </varlistentry>
	  <varlistentry>
	    <term><returnvalue>string</returnvalue></term>
	    <listitem>
	      <para>A Lisp string.
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>
      </refsect1>
      <refsect1>
	<title>Description</title>
	<para>
	  Converts a Lisp string to a <constant>cstring</constant>. This is
	  most often used when processing the results of a foreign function
	  that returns a cstring.
	</para>
      </refsect1>
      <refsect1>
	<title>Side Effects</title>
	<para>None.</para>
      </refsect1>
      <refsect1>
	<title>Affected by</title>
	<para>None.</para>
      </refsect1>
      <refsect1>
	<title>Exceptional Situations</title>
	<para>None.</para>
      </refsect1>
  </refentry>
  
  
  <refentry id="convert-to-cstring">
    <refnamediv>
      <refname>convert-to-cstring</refname>
      <refpurpose>Converts a Lisp string to a cstring.</refpurpose>
      <refclass>Macro</refclass>
    </refnamediv>
    <refsynopsisdiv>
      <title>Syntax</title>
      <synopsis>
	<function>convert-to-cstring</function> 
	<replaceable>string</replaceable>
	=>
	<returnvalue>cstring</returnvalue>
      </synopsis>
    </refsynopsisdiv>
    <refsect1>
      <title>Arguments and Values</title>
      <variablelist>
	<varlistentry>
	  <term><parameter>string</parameter></term>
	  <listitem>
	    <para>A Lisp string.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><returnvalue>cstring</returnvalue></term>
	  <listitem>
	    <para>A cstring.
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>
    </refsect1>
    <refsect1>
      <title>Description</title>
      <para>
	Converts a Lisp string to a <varname>cstring</varname>. The
	<varname>cstring</varname> should be freed with
	<function>free-cstring</function>.
      </para>
    </refsect1>
    <refsect1>
      <title>Side Effects</title>
      <para>On some implementations, this function allocates memory.</para>
    </refsect1>
    <refsect1>
      <title>Affected by</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Exceptional Situations</title>
      <para>None.</para>
    </refsect1>
  </refentry>
  
  
  <refentry id="free-cstring">
    <refnamediv>
      <refname>free-cstring</refname>
      <refpurpose>Free memory used by cstring.
      </refpurpose>
      <refclass>Macro</refclass>
    </refnamediv>
    <refsynopsisdiv>
      <title>Syntax</title>
      <synopsis>
	<function>free-cstring</function> <replaceable>cstring</replaceable>
      </synopsis>
    </refsynopsisdiv>
    <refsect1>
      <title>Arguments and Values</title>
      <variablelist>
	<varlistentry>
	  <term><parameter>cstring</parameter></term>
	  <listitem>
	    <para>A cstring.
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>
    </refsect1>
    <refsect1>
      <title>Description</title>
      <para>
	Frees any memory possibly allocated by
	<function>convert-to-cstring</function>. On some implementions, a cstring is just the Lisp string itself.
      </para>
    </refsect1>
    <refsect1>
      <title>Side Effects</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Affected by</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Exceptional Situations</title>
      <para>None.</para>
    </refsect1>
  </refentry>
  
  
  <refentry id="with-cstring">
    <refnamediv>
      <refname>with-cstring</refname>
      <refpurpose>Binds a newly created cstring.</refpurpose>
      <refclass>Macro</refclass>
    </refnamediv>
    <refsynopsisdiv>
      <title>Syntax</title>
      <synopsis>
	<function>with-cstring</function>
	<replaceable>(cstring string) {body}</replaceable>
      </synopsis>
    </refsynopsisdiv>
    <refsect1>
      <title>Arguments and Values</title>
      <variablelist>
	<varlistentry>
	  <term><parameter>cstring</parameter></term>
	  <listitem>
	    <para>A symbol naming the cstring to be created.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>string</parameter></term>
	  <listitem>
	    <para>A Lisp string that will be translated to a cstring.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>body</parameter></term>
	  <listitem>
	    <para>The body of where the cstring will be bound.
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>
    </refsect1>
    <refsect1>
      <title>Description</title>
      <para>
	Binds a symbol to a cstring created from conversion of a
	string. Automatically frees the <varname>cstring</varname>.
      </para>
    </refsect1>
    <refsect1>
      <title>Examples</title>
      <para>
	<screen>
(def-function ("getenv" c-getenv) 
   ((name :cstring))
   :returning :cstring)

(defun getenv (key)
  "Returns an environment variable, or NIL if it does not exist"
  (check-type key string)
  (with-cstring (key-cstring key)
    (convert-from-cstring (c-getenv key-cstring))))
	</screen>
      </para>
    </refsect1>
    <refsect1>
      <title>Side Effects</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Affected by</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Exceptional Situations</title>
      <para>None.</para>
    </refsect1>
  </refentry>
  
  
  <refentry id="convert-from-foreign-string">
    <refnamediv>
      <refname>convert-from-foreign-string</refname>
      <refpurpose>Converts a foreign string into a Lisp string.</refpurpose>
      <refclass>Macro</refclass>
    </refnamediv>
    <refsynopsisdiv>
      <title>Syntax</title>
      <synopsis>
	<function>convert-from-foreign-string</function>
	<replaceable>foreign-string &amp;key length null-terminated-p</replaceable>
	=>
	<returnvalue>string</returnvalue>
      </synopsis>
    </refsynopsisdiv>
    <refsect1>
      <title>Arguments and Values</title>
      <variablelist>
	<varlistentry>
	  <term><parameter>foreign-string</parameter></term>
	  <listitem>
	    <para>A foreign string.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>length</parameter></term>
	  <listitem>
	    <para>The length of the foreign string to convert. The
	    default is the length of the string until a &null;
	    character is reached.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>null-terminated-p</parameter></term>
	  <listitem>
	    <para>A boolean flag with a default value of &t; When true,
	    the string is converted until the first &null; character is reached.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><returnvalue>string</returnvalue></term>
	  <listitem>
	    <para>A Lisp string.
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>
    </refsect1>
    <refsect1>
      <title>Description</title>
      <para>
	Returns a Lisp string from a foreign string. 
	Can translated ASCII and binary strings.
      </para>
    </refsect1>
    <refsect1>
      <title>Side Effects</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Affected by</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Exceptional Situations</title>
      <para>None.</para>
    </refsect1>
  </refentry>
  
  
  <refentry id="convert-to-foreign-string">
    <refnamediv>
      <refname>convert-to-foreign-string</refname>
      <refpurpose>Converts a Lisp string to a foreign string.
      </refpurpose>
      <refclass>Macro</refclass>
    </refnamediv>
    <refsynopsisdiv>
      <title>Syntax</title>
      <synopsis>
	<function>convert-to-foreign-string</function>
	<replaceable>string</replaceable> =>
	<returnvalue>foreign-string</returnvalue>
      </synopsis>
    </refsynopsisdiv>
    <refsect1>
      <title>Arguments and Values</title>
      <variablelist>
	<varlistentry>
	  <term><parameter>string</parameter></term>
	  <listitem>
	    <para>A Lisp string.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><returnvalue>foreign-string</returnvalue></term>
	  <listitem>
	    <para>A foreign string.
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>
    </refsect1>
    <refsect1>
      <title>Description</title>
      <para>
	Converts a Lisp string to a foreign string. Memory should be
	freed with <function>free-foreign-object</function>.
      </para>
    </refsect1>
    <refsect1>
      <title>Side Effects</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Affected by</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Exceptional Situations</title>
      <para>None.</para>
    </refsect1>
  </refentry>
  
  <refentry id="allocate-foreign-string">
    <refnamediv>
      <refname>allocate-foreign-string</refname>
      <refpurpose>Allocates space for a foreign string.
      </refpurpose>
      <refclass>Macro</refclass>
    </refnamediv>
    <refsynopsisdiv>
      <title>Syntax</title>
      <synopsis>
	<function>allocate-foreign-string</function> <replaceable>size
	&amp;key unsigned</replaceable> =>
	<returnvalue>foreign-string</returnvalue>
      </synopsis>
    </refsynopsisdiv>
    <refsect1>
      <title>Arguments and Values</title>
      <variablelist>
	<varlistentry>
	  <term><parameter>size</parameter></term>
	  <listitem>
	    <para>The size of the space to be allocated in bytes.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>unsigned</parameter></term>
	  <listitem>
	    <para>A boolean flag with a default value of &t;. When true,
	    marks the pointer as an <constant>:unsigned-char</constant>.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><returnvalue>foreign-string</returnvalue></term>
	  <listitem>
	    <para>A foreign string which has undefined contents.
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>
    </refsect1>
    <refsect1>
      <title>Description</title>
      <para>
	Allocates space for a foreign string. Memory should
	be freed with <function>free-foreign-object</function>.
      </para>
    </refsect1>
    <refsect1>
      <title>Side Effects</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Affected by</title>
      <para>None.</para>
    </refsect1>
    <refsect1>
      <title>Exceptional Situations</title>
      <para>None.</para>
    </refsect1>
  </refentry>
  
</reference>