Allow any number of worker threads for sel_thread. Added optional parameter
[pazpar2-moved-to-github.git] / src / getaddrinfo.c
1 /* $Id: getaddrinfo.c,v 1.4 2007-04-23 08:06:21 adam Exp $
2    Copyright (c) 2006-2007, Index Data.
3
4 This file is part of Pazpar2.
5
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 #if HAVE_CONFIG_H
23 #include "cconfig.h"
24 #endif
25
26 #include "sel_thread.h"
27
28 #include <unistd.h>
29 #include <stdlib.h>
30 #include <pthread.h>
31 #include <assert.h>
32 #include <sys/types.h>
33 #include <sys/socket.h>
34 #include <netdb.h>
35 #include <netinet/in.h>
36
37 #include <yaz/log.h>
38 #include <yaz/nmem.h>
39 #include <yaz/tcpip.h>
40
41 #include "pazpar2.h"
42
43 struct work {
44     char *hostport;  /* hostport to be resolved in separate thread */
45     char *ipport;    /* result or NULL if it could not be resolved */
46     struct host *host; /* host that we're dealing with - mother thread */
47 };
48
49 static int log_level = YLOG_LOG;
50
51 void perform_getaddrinfo(struct work *w)
52 {
53     int res = 0;
54     char *port;
55     struct addrinfo *addrinfo, hints;
56     char *hostport = xstrdup(w->hostport);
57     
58     if ((port = strchr(hostport, ':')))
59         *(port++) = '\0';
60     else
61         port = "210";
62     
63     hints.ai_flags = 0;
64     hints.ai_family = PF_INET;
65     hints.ai_socktype = SOCK_STREAM;
66     hints.ai_protocol = IPPROTO_TCP;
67     hints.ai_addrlen = 0;
68     hints.ai_addr = 0;
69     hints.ai_canonname = 0;
70     hints.ai_next = 0;
71     // This is not robust code. It assumes that getaddrinfo always
72     // returns AF_INET address.
73     if ((res = getaddrinfo(hostport, port, &hints, &addrinfo)))
74     {
75         yaz_log(YLOG_WARN, "Failed to resolve %s: %s", 
76                 w->hostport, gai_strerror(res));
77     }
78     else
79     {
80         char ipport[128];
81         unsigned char addrbuf[4];
82         assert(addrinfo->ai_family == PF_INET);
83         memcpy(addrbuf, 
84                &((struct sockaddr_in*)addrinfo->ai_addr)->sin_addr.s_addr, 4);
85         sprintf(ipport, "%u.%u.%u.%u:%s",
86                 addrbuf[0], addrbuf[1], addrbuf[2], addrbuf[3], port);
87         freeaddrinfo(addrinfo);
88         w->ipport = xstrdup(ipport);
89         yaz_log(log_level, "Resolved %s -> %s", hostport, ipport);
90     }
91     xfree(hostport);
92 }
93
94 static void work_handler(void *vp)
95 {
96     struct work *w = vp;
97
98     int sec = 0;  /* >0 for debugging/testing purposes */
99     if (sec)
100     {
101         yaz_log(log_level, "waiting %d seconds", sec);
102         sleep(sec);
103     }
104     perform_getaddrinfo(w);
105 }
106
107 void iochan_handler(struct iochan *i, int event)
108 {
109     sel_thread_t p = iochan_getdata(i);
110
111     if (event & EVENT_INPUT)
112     {
113         struct work *w = sel_thread_result(p);
114         w->host->ipport = w->ipport;
115         connect_resolver_host(w->host);
116         xfree(w);
117     }
118 }
119
120 static sel_thread_t resolver_thread = 0;
121
122 static void getaddrinfo_start(void)
123 {
124     int fd;
125     sel_thread_t p = resolver_thread = 
126         sel_thread_create(work_handler, 0 /* work_destroy */, &fd,
127                           3 /* no of resolver threads */);
128     if (!p)
129     {
130         yaz_log(YLOG_FATAL|YLOG_ERRNO, "sel_create_create failed");
131         exit(1);
132     }
133     else
134     {
135         IOCHAN chan = iochan_create(fd, iochan_handler, EVENT_INPUT);
136         iochan_setdata(chan, p);
137         pazpar2_add_channel(chan);
138     }
139     yaz_log(log_level, "resolver start");
140     resolver_thread = p;
141 }
142
143 int host_getaddrinfo(struct host *host)
144 {
145     struct work *w = xmalloc(sizeof(*w));
146     int use_thread = 1; /* =0 to disable threading entirely */
147
148     w->hostport = host->hostport;
149     w->ipport = 0;
150     w->host = host;
151     if (use_thread)
152     {
153         if (resolver_thread == 0)
154             getaddrinfo_start();
155         assert(resolver_thread);
156         sel_thread_add(resolver_thread, w);
157     }
158     else
159     {
160         perform_getaddrinfo(w);
161         host->ipport = w->ipport;
162         xfree(w);
163         if (!host->ipport)
164             return -1;
165     }
166     return 0;
167 }
168
169 /*
170  * Local variables:
171  * c-basic-offset: 4
172  * indent-tabs-mode: nil
173  * End:
174  * vim: shiftwidth=4 tabstop=8 expandtab
175  */