aboutsummaryrefslogtreecommitdiffstats
path: root/datarouter-node/src/main/java/com/att/research/datarouter/node/DeliveryQueue.java
blob: 71c77978d6b99e8edf51ceb135b3845fc7b74a35 (plain)
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/*******************************************************************************
 * ============LICENSE_START==================================================
 * * org.onap.dmaap
 * * ===========================================================================
 * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * * ===========================================================================
 * * Licensed under the Apache License, Version 2.0 (the "License");
 * * you may not use this file except in compliance with the License.
 * * You may obtain a copy of the License at
 * * 
 *  *      http://www.apache.org/licenses/LICENSE-2.0
 * * 
 *  * Unless required by applicable law or agreed to in writing, software
 * * distributed under the License is distributed on an "AS IS" BASIS,
 * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * * See the License for the specific language governing permissions and
 * * limitations under the License.
 * * ============LICENSE_END====================================================
 * *
 * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * *
 ******************************************************************************/


package com.att.research.datarouter.node;

import java.io.*;
import java.util.*;

/**
 *	Mechanism for monitoring and controlling delivery of files to a destination.
 *	<p>
 *	The DeliveryQueue class maintains lists of DeliveryTasks for a single
 *	destination (a subscription or another data router node) and assigns
 *	delivery threads to try to deliver them.  It also maintains a delivery
 *	status that causes it to back off on delivery attempts after a failure.
 *	<p>
 *	If the most recent delivery result was a failure, then no more attempts
 *	will be made for a period of time.  Initially, and on the first failure
 *	following a success, this delay will be DeliveryQueueHelper.getInitFailureTimer() (milliseconds).
 *	If, after this delay, additional failures occur, each failure will
 *	multiply the delay by DeliveryQueueHelper.getFailureBackoff() up to a
 *	maximum delay specified by DeliveryQueueHelper.getMaxFailureTimer().
 *	Note that this behavior applies to the delivery queue as a whole and not
 *	to individual files in the queue.  If multiple files are being
 *	delivered and one fails, the delay will be started.  If a second
 *	delivery fails while the delay was active, it will not change the delay
 *	or change the duration of any subsequent delay.
 *	If, however, it succeeds, it will cancel the delay.
 *	<p>
 *	The queue maintains 3 collections of files to deliver: A todo list of
 *	files that will be attempted, a working set of files that are being
 *	attempted, and a retry set of files that were attempted and failed.
 *	Whenever the todo list is empty and needs to be refilled, a scan of the
 *	spool directory is made and the file names sorted.  Any files in the working set are ignored.
 *	If a DeliveryTask for the file is in the retry set, then that delivery
 *	task is placed on the todo list.  Otherwise, a new DeliveryTask for the
 *	file is created and placed on the todo list.
 *	If, when a DeliveryTask is about to be removed from the todo list, its
 *	age exceeds DeliveryQueueHelper.getExpirationTimer(), then it is instead
 *	marked as expired.
 *	<p>
 *	A delivery queue also maintains a skip flag.  This flag is true if the
 *	failure timer is active or if no files are found in a directory scan.
 */
public class DeliveryQueue implements Runnable, DeliveryTaskHelper	{
	private DeliveryQueueHelper	dqh;
	private DestInfo	di;
	private Hashtable<String, DeliveryTask>	working = new Hashtable<String, DeliveryTask>();
	private Hashtable<String, DeliveryTask> retry = new Hashtable<String, DeliveryTask>();
	private int	todoindex;
	private boolean	failed;
	private long	failduration;
	private long	resumetime;
	File	dir;
	private Vector<DeliveryTask> todo = new Vector<DeliveryTask>();
	/**
	 *	Try to cancel a delivery task.
	 *	@return	The length of the task in bytes or 0 if the task cannot be cancelled.
	 */
	public synchronized long cancelTask(String pubid) {
		if (working.get(pubid) != null) {
			return(0);
		}
		DeliveryTask dt = retry.get(pubid);
		if (dt == null) {
			for (int i = todoindex; i < todo.size(); i++) {
				DeliveryTask xdt = todo.get(i);
				if (xdt.getPublishId().equals(pubid)) {
					dt = xdt;
					break;
				}
			}
		}
		if (dt == null) {
			dt = new DeliveryTask(this, pubid);
			if (dt.getFileId() == null) {
				return(0);
			}
		}
		if (dt.isCleaned()) {
			return(0);
		}
		StatusLog.logExp(dt.getPublishId(), dt.getFeedId(), dt.getSubId(), dt.getURL(), dt.getMethod(), dt.getCType(), dt.getLength(), "diskFull", dt.getAttempts());
		dt.clean();
		return(dt.getLength());
	}
	/**
	 *	Mark that a delivery task has succeeded.
	 */
	public synchronized void markSuccess(DeliveryTask task) {
		working.remove(task.getPublishId());
		task.clean();
		failed = false;
		failduration = 0;
	}
	/**
	 *	Mark that a delivery task has expired.
	 */
	public synchronized void markExpired(DeliveryTask task) {
		task.clean();
	}
	/**
	 *	Mark that a delivery task has failed permanently.
	 */
	public synchronized void markFailNoRetry(DeliveryTask task) {
		working.remove(task.getPublishId());
		task.clean();
		failed = false;
		failduration = 0;
	}
	private void fdupdate() {
		if (!failed) {
			failed = true;
			if (failduration == 0) {
				failduration = dqh.getInitFailureTimer();
			}
			resumetime = System.currentTimeMillis() + failduration;
			long maxdur = dqh.getMaxFailureTimer();
			failduration = (long)(failduration * dqh.getFailureBackoff());
			if (failduration > maxdur) {
				failduration = maxdur;
			}
		}
	}
	/**
	 *	Mark that a delivery task has been redirected.
	 */
	public synchronized void markRedirect(DeliveryTask task) {
		working.remove(task.getPublishId());
		retry.put(task.getPublishId(), task);
	}
	/**
	 *	Mark that a delivery task has temporarily failed.
	 */
	public synchronized void markFailWithRetry(DeliveryTask task) {
		working.remove(task.getPublishId());
		retry.put(task.getPublishId(), task);
		fdupdate();
	}
	/**
	 *	Get the next task.
	 */
	public synchronized DeliveryTask getNext() {
		DeliveryTask ret = peekNext();
		if (ret != null) {
			todoindex++;
			working.put(ret.getPublishId(), ret);
		}
		return(ret);
	}
	/**
	 *	Peek at the next task.
	 */
	public synchronized DeliveryTask peekNext() {
		long now = System.currentTimeMillis();
		long mindate = now - dqh.getExpirationTimer();
		if (failed) {
			if (now > resumetime) {
				failed = false;
			} else {
				return(null);
			}
		}
		while (true) {
			if (todoindex >= todo.size()) {
				todoindex = 0;
				todo = new Vector<DeliveryTask>();
				String[] files = dir.list();
				Arrays.sort(files);
				for (String fname: files) {
					if (!fname.endsWith(".M")) {
						continue;
					}
					String fname2 = fname.substring(0, fname.length() - 2);
					long pidtime = 0;
					int dot = fname2.indexOf('.');
					if (dot < 1) {
						continue;
					}
					try {
						pidtime = Long.parseLong(fname2.substring(0, dot));
					} catch (Exception e) {
					}
					if (pidtime < 1000000000000L) {
						continue;
					}
					if (working.get(fname2) != null) {
						continue;
					}
					DeliveryTask dt = retry.get(fname2);
					if (dt == null) {
						dt = new DeliveryTask(this, fname2);
					}
					todo.add(dt);
				}
				retry = new Hashtable<String, DeliveryTask>();
			}
			if (todoindex < todo.size()) {
				DeliveryTask dt = todo.get(todoindex);
				if (dt.isCleaned()) {
					todoindex++;
					continue;
				}
				if (dt.getDate() >= mindate) {
					return(dt);
				}
				todoindex++;
				reportExpiry(dt);
				continue;
			}
			return(null);
		}
	}
	/**
	 *	Create a delivery queue for a given destination info
	 */
	public DeliveryQueue(DeliveryQueueHelper dqh, DestInfo di) {
		this.dqh = dqh;
		this.di = di;
		dir = new File(di.getSpool());
		dir.mkdirs();
	}
	/**
	 *	Update the destination info for this delivery queue
	 */
	public void config(DestInfo di) {
		this.di = di;
	}
	/**
	 *	Get the dest info
	 */
	public DestInfo getDestInfo() {
		return(di);
	}
	/**
	 *	Get the config manager
	 */
	public DeliveryQueueHelper getConfig() {
		return(dqh);
	}
	/**
	 *	Exceptional condition occurred during delivery
	 */
	public void reportDeliveryExtra(DeliveryTask task, long sent) {
		StatusLog.logDelExtra(task.getPublishId(), task.getFeedId(), task.getSubId(), task.getLength(), sent);
	}
	/**
	 *	Message too old to deliver
	 */
	public void reportExpiry(DeliveryTask task) {
		StatusLog.logExp(task.getPublishId(), task.getFeedId(), task.getSubId(), task.getURL(), task.getMethod(), task.getCType(), task.getLength(), "retriesExhausted", task.getAttempts());
		markExpired(task);
	}
	/**
	 *	Completed a delivery attempt
	 */
	public void reportStatus(DeliveryTask task, int status, String xpubid, String location) {
		if (status < 300) {
			StatusLog.logDel(task.getPublishId(), task.getFeedId(), task.getSubId(), task.getURL(), task.getMethod(), task.getCType(), task.getLength(), di.getAuthUser(), status, xpubid);
			markSuccess(task);
		} else if (status < 400 && dqh.isFollowRedirects()) {
			StatusLog.logDel(task.getPublishId(), task.getFeedId(), task.getSubId(), task.getURL(), task.getMethod(), task.getCType(), task.getLength(), di.getAuthUser(), status, location);
			if (dqh.handleRedirection(di, location, task.getFileId())) {
				markRedirect(task);
			} else {
				StatusLog.logExp(task.getPublishId(), task.getFeedId(), task.getSubId(), task.getURL(), task.getMethod(), task.getCType(), task.getLength(), "notRetryable", task.getAttempts());
				markFailNoRetry(task);
			}
		} else if (status < 500) {
			StatusLog.logDel(task.getPublishId(), task.getFeedId(), task.getSubId(), task.getURL(), task.getMethod(), task.getCType(), task.getLength(), di.getAuthUser(), status, location);
			StatusLog.logExp(task.getPublishId(), task.getFeedId(), task.getSubId(), task.getURL(), task.getMethod(), task.getCType(), task.getLength(), "notRetryable", task.getAttempts());
			markFailNoRetry(task);
		} else {
			StatusLog.logDel(task.getPublishId(), task.getFeedId(), task.getSubId(), task.getURL(), task.getMethod(), task.getCType(), task.getLength(), di.getAuthUser(), status, location);
			markFailWithRetry(task);
		}
	}
	/**
	 *	Delivery failed by reason of an exception
	 */
	public void reportException(DeliveryTask task, Exception exception) {
		StatusLog.logDel(task.getPublishId(), task.getFeedId(), task.getSubId(), task.getURL(), task.getMethod(), task.getCType(), task.getLength(), di.getAuthUser(), -1, exception.toString());
		dqh.handleUnreachable(di);
		markFailWithRetry(task);
	}
	/**
	 *	Get the feed ID for a subscription
	 *	@param subid	The subscription ID
	 *	@return	The feed ID
	 */
	public String getFeedId(String subid) {
		return(dqh.getFeedId(subid));
	}
	/**
	 *	Get the URL to deliver a message to given the file ID
	 */
	public String getDestURL(String fileid) {
		return(dqh.getDestURL(di, fileid));
	}
	/**
	 *	Deliver files until there's a failure or there are no more
	 *	files to deliver
	 */
	public void run() {
		DeliveryTask t;
		long endtime = System.currentTimeMillis() + dqh.getFairTimeLimit();
		int filestogo = dqh.getFairFileLimit();
		while ((t = getNext()) != null) {
			t.run();
			if (--filestogo <= 0 || System.currentTimeMillis() > endtime) {
				break;
			}
		}
	}
	/**
	 *	Is there no work to do for this queue right now?
	 */
	public synchronized boolean isSkipSet() {
		return(peekNext() == null);
	}
	/**
	 *	Reset the retry timer
	 */
	public void resetQueue() {
		resumetime = System.currentTimeMillis();
	}
}