-
Notifications
You must be signed in to change notification settings - Fork 289
/
mailstream_cancel.c
214 lines (179 loc) · 5.08 KB
/
mailstream_cancel.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
* libEtPan! -- a mail stuff library
*
* Copyright (C) 2001, 2014 - DINH Viet Hoa
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the libEtPan! project nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "mailstream_cancel.h"
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifdef WIN32
# include <win_etpan.h>
#endif
#ifdef LIBETPAN_REENTRANT
# ifndef WIN32
# include <pthread.h>
# endif
#endif
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef WIN32
# include <io.h>
# include <fcntl.h>
#endif
#ifdef LIBETPAN_REENTRANT
# ifdef WIN32
# define MUTEX_KEY CRITICAL_SECTION
static int MUTEX_INIT(CRITICAL_SECTION* mutex) {
InitializeCriticalSection( mutex);
return 0;
}
# define MUTEX_LOCK(x) EnterCriticalSection(x)
# define MUTEX_UNLOCK(x) LeaveCriticalSection(x)
# define MUTEX_DESTROY(x) DeleteCriticalSection(x);
# else
# define MUTEX_KEY pthread_mutex_t
# define MUTEX_INIT(x) pthread_mutex_init(x, NULL)
# define MUTEX_DESTROY(x) pthread_mutex_destroy(x);
# define MUTEX_LOCK(x) pthread_mutex_lock(x)
# define MUTEX_UNLOCK(x) pthread_mutex_unlock(x)
# endif
#else
# define MUTEX_INIT(x)
# define MUTEX_DESTROY(x)
# define MUTEX_LOCK(x)
# define MUTEX_UNLOCK(x)
#endif
struct mailstream_cancel_internal {
#ifdef LIBETPAN_REENTRANT
MUTEX_KEY ms_lock;
#endif
#ifdef WIN32
HANDLE event;
#endif
};
struct mailstream_cancel * mailstream_cancel_new(void)
{
int r;
struct mailstream_cancel * cancel;
struct mailstream_cancel_internal * ms_internal;
cancel = malloc(sizeof(struct mailstream_cancel));
if (cancel == NULL)
goto err;
cancel->ms_cancelled = 0;
ms_internal = malloc(sizeof(* ms_internal));
if (ms_internal == NULL)
goto free;
cancel->ms_internal = ms_internal;
#ifndef WIN32
r = pipe(cancel->ms_fds);
if (r < 0)
goto free_internal;
#else
ms_internal->event = CreateEvent(NULL, TRUE, FALSE, NULL);
if (ms_internal->event == NULL)
goto free_internal;
#endif
#ifdef LIBETPAN_REENTRANT
r = MUTEX_INIT(&ms_internal->ms_lock);
if (r != 0)
goto close_pipe;
#endif
return cancel;
close_pipe:
#ifndef WIN32
close(cancel->ms_fds[0]);
close(cancel->ms_fds[1]);
#else
CloseHandle(ms_internal->event);
#endif
free_internal:
free(cancel->ms_internal);
free:
free(cancel);
err:
return NULL;
}
void mailstream_cancel_free(struct mailstream_cancel * cancel)
{
struct mailstream_cancel_internal * ms_internal;
ms_internal = cancel->ms_internal;
MUTEX_DESTROY(&ms_internal->ms_lock);
#ifndef WIN32
close(cancel->ms_fds[0]);
close(cancel->ms_fds[1]);
#else
CloseHandle(ms_internal->event);
#endif
free(cancel->ms_internal);
free(cancel);
}
void mailstream_cancel_notify(struct mailstream_cancel * cancel)
{
char ch;
struct mailstream_cancel_internal * ms_internal;
ms_internal = cancel->ms_internal;
MUTEX_LOCK(&ms_internal->ms_lock);
cancel->ms_cancelled = 1;
MUTEX_UNLOCK(&ms_internal->ms_lock);
ch = 0;
#ifndef WIN32
write(cancel->ms_fds[1], &ch, 1);
#else
SetEvent(ms_internal->event);
#endif
}
void mailstream_cancel_ack(struct mailstream_cancel * cancel)
{
#ifndef WIN32
char ch;
read(cancel->ms_fds[0], &ch, 1);
#endif
}
int mailstream_cancel_cancelled(struct mailstream_cancel * cancel)
{
int cancelled;
struct mailstream_cancel_internal * ms_internal;
ms_internal = cancel->ms_internal;
MUTEX_LOCK(&ms_internal->ms_lock);
cancelled = cancel->ms_cancelled;
MUTEX_UNLOCK(&ms_internal->ms_lock);
return cancelled;
}
int mailstream_cancel_get_fd(struct mailstream_cancel * cancel)
{
#ifndef WIN32
return cancel->ms_fds[0];
#else
struct mailstream_cancel_internal * ms_internal;
ms_internal = cancel->ms_internal;
return ms_internal->event;
#endif
}