r1518: Initial revision
[uffi.git] / examples / gethostname.cl
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:  Mar 2002
9 ;;;;
10 ;;;; Copyright (c) 2002 Kevin M. Rosenberg
11 ;;;;
12 ;;;; $Id: gethostname.cl,v 1.1 2002/03/09 19:55:33 kevin Exp $
13 ;;;;
14 ;;;; This file is part of UFFI. 
15 ;;;;
16 ;;;; UFFI is free software; you can redistribute it and/or modify
17 ;;;; it under the terms of the GNU General Public License (version 2) as
18 ;;;; published by the Free Software Foundation.
19 ;;;;
20 ;;;; UFFI is distributed in the hope that it will be useful,
21 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 ;;;; GNU General Public License for more details.
24 ;;;;
25 ;;;; You should have received a copy of the GNU General Public License
26 ;;;; along with UFFI; if not, write to the Free Software Foundation, Inc.,
27 ;;;; 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28 ;;;; *************************************************************************
29
30 (in-package :cl-user)
31
32
33 ;;; This example is inspired by the example on the CL-Cookbook web site
34
35 (uffi:def-routine ("gethostname" c-gethostname) 
36     ((name :c-string)
37      (len :int))
38   :returning :int)
39
40 (defun gethostname ()
41   "Returns the hostname"
42   (let* ((name (uffi:allocate-foreign-string 256))
43          (result (c-gethostname name 256)))
44     (unwind-protect
45         (if (zerop result)
46             (uffi:convert-from-foreign-string name)
47           (error "gethostname() failed."))
48       (uffi:free-foreign-object name))))
49     
50 (format t "~&Hostname: ~A" (gethostname))
51