r3485: *** empty log message ***
[uffi.git] / examples / gethostname.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          gethostname.cl
6 ;;;; Purpose:       UFFI Example file to get hostname of system
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: gethostname.lisp,v 1.2 2002/11/25 19:04:57 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; UFFI users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (in-package :cl-user)
20
21
22 ;;; This example is inspired by the example on the CL-Cookbook web site
23
24 (uffi:def-function ("gethostname" c-gethostname) 
25     ((name (* :unsigned-char))
26      (len :int))
27   :returning :int)
28
29 (defun gethostname ()
30   "Returns the hostname"
31   (let* ((name (uffi:allocate-foreign-string 256))
32          (result-code (c-gethostname name 256))
33          (hostname (when (zerop result-code)
34                      (uffi:convert-from-foreign-string name))))
35     (uffi:free-foreign-object name)
36     (unless (zerop result-code)
37       (error "gethostname() failed."))))
38
39 (defun gethostname2 ()
40   "Returns the hostname"
41   (uffi:with-foreign-object (name '(:array :unsigned-char 256))
42     (if (zerop (c-gethostname (uffi:char-array-to-pointer name) 256))
43         (uffi:convert-from-foreign-string name)
44         (error "gethostname() failed."))))
45
46 #+examples-uffi
47 (progn
48   (format t "~&Hostname (technique 1): ~A" (gethostname))
49   (format t "~&Hostname (technique 2): ~A" (gethostname2)))
50
51 #+test-uffi
52 (progn
53   (let ((hostname1 (gethostname))
54         (hostname2 (gethostname2)))
55     
56     (util.test:test (and (stringp hostname1) (stringp hostname2)) t
57                     :fail-info "gethostname not string")
58     (util.test:test (and (not (zerop (length hostname1)))
59                          (not (zerop (length hostname2)))) t
60                          :fail-info "gethostname length 0")
61     (util.test:test (string= hostname1 hostname1) t
62                     :fail-info "gethostname techniques don't match"))
63   )
64
65