SphinxBase 0.6
info.c
1/* -*- c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/* ====================================================================
3 * Copyright (c) 1999-2004 Carnegie Mellon University. All rights
4 * reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 *
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 *
18 * This work was supported in part by funding from the Defense Advanced
19 * Research Projects Agency and the National Science Foundation of the
20 * United States of America, and the CMU Sphinx Speech Consortium.
21 *
22 * THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND
23 * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
24 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
26 * NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 * ====================================================================
35 *
36 */
37/* HISTORY
38 * $Log$
39 * Revision 1.3 2005/06/22 03:06:46 arthchan2003
40 * Add keyword.
41 *
42 * Revision 1.2 2005/06/15 04:21:46 archan
43 * 1, Fixed doxygen-documentation, 2, Add keyword such that changes will be logged into a file.
44 *
45 */
46
47#if !(defined(_WIN32) || defined(_WIN32_WCE))
48#include <unistd.h>
49#endif
50
51#include "sphinxbase/info.h"
52#include "sphinxbase/err.h"
53
54void
55print_appl_info(char *appl_name)
56{
57#if !(defined(_WIN32) || defined(_WIN32_WCE))
58 {
59 /* FIXME: Argh. */
60 char host[4096], path[16384];
61
62 gethostname(host, 1024);
63 host[1023] = '\0';
64
65 E_INFO("Host: '%s'\n", host);
66 if (getcwd(path, sizeof(path)) == NULL)
67 E_ERROR_SYSTEM("Failed to get current directory");
68 else
69 E_INFO("Directory: '%s'\n", path);
70 }
71#endif
72
73 E_INFO("%s Compiled on: %s, AT: %s\n\n", appl_name, __DATE__,
74 __TIME__);
75}
Implementation of logging routines.
#define E_ERROR_SYSTEM
Print error text; Call perror("");.
Definition err.h:142
#define E_INFO
Print logging information to standard error stream.
Definition err.h:147
Print hostname, directory name, compile time and date.
SPHINXBASE_EXPORT void print_appl_info(char *appl_name)
This function prints the hostname, the directory, compile time and date .
Definition info.c:55