]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/bind9/lib/isc/lib.c
MFC r363988:
[FreeBSD/stable/9.git] / contrib / bind9 / lib / isc / lib.c
1 /*
2  * Copyright (C) 2004, 2005, 2007, 2009, 2014, 2015  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 1999-2001  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: lib.c,v 1.16 2009/09/02 23:48:02 tbox Exp $ */
19
20 /*! \file */
21
22 #include <config.h>
23
24 #include <stdio.h>
25 #include <stdlib.h>
26
27 #include <isc/app.h>
28 #include <isc/lib.h>
29 #include <isc/mem.h>
30 #include <isc/msgs.h>
31 #include <isc/once.h>
32 #include <isc/print.h>
33 #include <isc/socket.h>
34 #include <isc/task.h>
35 #include <isc/timer.h>
36 #include <isc/util.h>
37
38 /***
39  *** Globals
40  ***/
41
42 LIBISC_EXTERNAL_DATA isc_msgcat_t *             isc_msgcat = NULL;
43
44
45 /***
46  *** Private
47  ***/
48
49 static isc_once_t               msgcat_once = ISC_ONCE_INIT;
50
51 /***
52  *** Functions
53  ***/
54
55 static void
56 open_msgcat(void) {
57         isc_msgcat_open("libisc.cat", &isc_msgcat);
58 }
59
60 void
61 isc_lib_initmsgcat(void) {
62         isc_result_t result;
63
64         /*!
65          * Initialize the ISC library's message catalog, isc_msgcat, if it
66          * has not already been initialized.
67          */
68
69         result = isc_once_do(&msgcat_once, open_msgcat);
70         if (result != ISC_R_SUCCESS) {
71                 /*
72                  * Normally we'd use RUNTIME_CHECK() or FATAL_ERROR(), but
73                  * we can't do that here, since they might call us!
74                  * (Note that the catalog might be open anyway, so we might
75                  * as well try to  provide an internationalized message.)
76                  */
77                 fprintf(stderr, "%s:%d: %s: isc_once_do() %s.\n",
78                         __FILE__, __LINE__,
79                         isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
80                                        ISC_MSG_FATALERROR, "fatal error"),
81                         isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
82                                        ISC_MSG_FAILED, "failed"));
83                 abort();
84         }
85 }
86
87 #ifndef BIND9
88 static isc_once_t               register_once = ISC_ONCE_INIT;
89
90 static void
91 do_register(void) {
92         RUNTIME_CHECK(isc__mem_register() == ISC_R_SUCCESS);
93         RUNTIME_CHECK(isc__app_register() == ISC_R_SUCCESS);
94         RUNTIME_CHECK(isc__task_register() == ISC_R_SUCCESS);
95         RUNTIME_CHECK(isc__socket_register() == ISC_R_SUCCESS);
96         RUNTIME_CHECK(isc__timer_register() == ISC_R_SUCCESS);
97 }
98
99 void
100 isc_lib_register(void) {
101         RUNTIME_CHECK(isc_once_do(&register_once, do_register)
102                       == ISC_R_SUCCESS);
103 }
104 #endif