0b6d91cad8e2a744e2851634bcb684567d841b7f
[yazproxy-moved-to-github.git] / src / msg-thread.cpp
1 /* $Id: msg-thread.cpp,v 1.7 2005-08-15 12:51:57 adam Exp $
2    Copyright (c) 1998-2005, Index Data.
3
4 This file is part of the yaz-proxy.
5
6 YAZ proxy 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 YAZ proxy 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 YAZ proxy; 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 #include <pthread.h>
22 #include <unistd.h>
23 #include <ctype.h>
24 #include <stdio.h>
25
26 #include <yaz++/socket-observer.h>
27 #include <yaz/log.h>
28
29 #include "msg-thread.h"
30
31 using namespace yazpp_1;
32
33 Msg_Thread_Queue::Msg_Thread_Queue()
34 {
35     m_list = 0;
36 }
37
38 int Msg_Thread_Queue::size()
39 {
40     int no = 0;
41     Msg_Thread_Queue_List *l;
42     for (l = m_list; l; l = l->m_next)
43         no++;
44     return no;
45 }
46
47 void Msg_Thread_Queue::enqueue(IMsg_Thread *m)
48 {
49     Msg_Thread_Queue_List *l = new Msg_Thread_Queue_List;
50     l->m_next = m_list;
51     l->m_item = m;
52     m_list = l;
53 }
54
55 IMsg_Thread *Msg_Thread_Queue::dequeue()
56 {
57     Msg_Thread_Queue_List **l = &m_list;
58     if (!*l)
59         return 0;
60     while ((*l)->m_next)
61         l = &(*l)->m_next;
62     IMsg_Thread *m = (*l)->m_item;
63     delete *l;
64     *l = 0;
65     return m;
66 }
67
68 static void *tfunc(void *p)
69 {
70     Msg_Thread *pt = (Msg_Thread *) p;
71     pt->run(0);
72     return 0;
73 }
74
75
76 Msg_Thread::Msg_Thread(ISocketObservable *obs)
77     : m_SocketObservable(obs)
78 {
79     pipe(m_fd);
80     obs->addObserver(m_fd[0], this);
81     obs->maskObserver(this, SOCKET_OBSERVE_READ);
82
83     m_stop_flag = false;
84     pthread_mutex_init(&m_mutex_input_data, 0);
85     pthread_cond_init(&m_cond_input_data, 0);
86     pthread_mutex_init(&m_mutex_output_data, 0);
87     pthread_create(&m_thread_id, 0, tfunc, this);
88 }
89
90 Msg_Thread::~Msg_Thread()
91 {
92     pthread_mutex_lock(&m_mutex_input_data);
93     m_stop_flag = true;
94     pthread_cond_signal(&m_cond_input_data);
95     pthread_mutex_unlock(&m_mutex_input_data);
96     
97     pthread_join(m_thread_id, 0);
98
99     m_SocketObservable->deleteObserver(this);
100
101     pthread_cond_destroy(&m_cond_input_data);
102     pthread_mutex_destroy(&m_mutex_input_data);
103     pthread_mutex_destroy(&m_mutex_output_data);
104     close(m_fd[0]);
105     close(m_fd[1]);
106 }
107
108 void Msg_Thread::socketNotify(int event)
109 {
110     if (event & SOCKET_OBSERVE_READ)
111     {
112         char buf[2];
113         read(m_fd[0], buf, 1);
114         pthread_mutex_lock(&m_mutex_output_data);
115         IMsg_Thread *out = m_output.dequeue();
116         pthread_mutex_unlock(&m_mutex_output_data);
117         if (out)
118             out->result();
119     }
120 }
121
122 void Msg_Thread::run(void *p)
123 {
124     while(1)
125     {
126         pthread_mutex_lock(&m_mutex_input_data);
127         while (!m_stop_flag && m_input.size() == 0)
128             pthread_cond_wait(&m_cond_input_data, &m_mutex_input_data);
129         if (m_stop_flag)
130         {
131             pthread_mutex_unlock(&m_mutex_input_data);
132             break;
133         }
134         IMsg_Thread *in = m_input.dequeue();
135         pthread_mutex_unlock(&m_mutex_input_data);
136
137         IMsg_Thread *out = in->handle();
138         pthread_mutex_lock(&m_mutex_output_data);
139         m_output.enqueue(out);
140         
141         write(m_fd[1], "", 1);
142         pthread_mutex_unlock(&m_mutex_output_data);
143     }
144 }
145
146 void Msg_Thread::put(IMsg_Thread *m)
147 {
148     pthread_mutex_lock(&m_mutex_input_data);
149     m_input.enqueue(m);
150     pthread_cond_signal(&m_cond_input_data);
151     pthread_mutex_unlock(&m_mutex_input_data);
152 }
153 /*
154  * Local variables:
155  * c-basic-offset: 4
156  * indent-tabs-mode: nil
157  * End:
158  * vim: shiftwidth=4 tabstop=8 expandtab
159  */
160