FileResultHandlerImpl.java
32.1 KB
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.aemfd.docmanager.Document
* org.slf4j.Logger
* org.slf4j.LoggerFactory
*/
package com.adobe.aemfd.watchfolder.job;
import com.adobe.aemfd.docmanager.Document;
import com.adobe.aemfd.watchfolder.config.WatchFolderConfiguration;
import com.adobe.aemfd.watchfolder.job.FilePathBuilder;
import com.adobe.aemfd.watchfolder.job.IOUtil;
import com.adobe.aemfd.watchfolder.job.WatchedFolderUtils;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public class FileResultHandlerImpl {
private WatchFolderConfiguration config;
private static final Logger _logger = LoggerFactory.getLogger(FileResultHandlerImpl.class);
FileResultHandlerImpl(WatchFolderConfiguration config) {
this.config = config;
}
private String getResultNameFromLocation(String aSourceLocation) {
int indexOfSeparator = aSourceLocation.lastIndexOf(WatchedFolderUtils.FILE_SEPARATOR);
if (indexOfSeparator != -1) {
return aSourceLocation.substring(indexOfSeparator + 1);
}
return aSourceLocation;
}
private String resolvePattern(String aPattern, String aOrigSourceName, String aJobId) {
String _filename = null;
if (aPattern != null && aPattern.length() > 0) {
_filename = FilePathBuilder.getConcretePath(aPattern, aOrigSourceName, System.currentTimeMillis(), aJobId);
}
return _filename;
}
private File resolveDestination(String aDestinationPattern, String aWatchFolderUrl, String aSourceName, String aJobId, boolean aOverWrite) {
String _resolvedPattern = null;
File _resolvedFile = null;
if (aDestinationPattern != null) {
_resolvedPattern = this.resolvePattern(aDestinationPattern, aSourceName, aJobId);
_resolvedFile = new File(_resolvedPattern);
if (!_resolvedFile.isAbsolute()) {
_resolvedFile = new File(aWatchFolderUrl, _resolvedPattern);
}
if (_resolvedFile.exists()) {
if (!aOverWrite) {
_resolvedFile = WatchedFolderUtils.resolveDuplicateFile(_resolvedFile.getAbsolutePath(), aOverWrite);
} else {
WatchedFolderUtils.recursiveDeleteDir(_resolvedFile);
}
}
if (FilePathBuilder.isFolderPath(aDestinationPattern)) {
FilePathBuilder.makeDirectoryPath(_resolvedFile);
} else {
FilePathBuilder.makeDirectoryPath(_resolvedFile.getParentFile());
}
}
return _resolvedFile;
}
public void tryPreservingFiles(File aSourceFile, File aDestinationFile, boolean preserve) {
long _timeNow = System.currentTimeMillis();
if (preserve) {
if (aSourceFile != null && aSourceFile.exists() && aDestinationFile != null) {
if (aSourceFile.renameTo(aDestinationFile)) {
aDestinationFile.setLastModified(_timeNow);
_logger.info("FileResultHandlerImpl ----- preserved- source ----" + aSourceFile.getAbsolutePath() + "--- to ---" + aDestinationFile.getAbsolutePath());
} else {
try {
if (aSourceFile.isDirectory()) {
FilePathBuilder.makeDirectoryPath(aDestinationFile);
}
IOUtil.copyFile(aSourceFile, aDestinationFile);
WatchedFolderUtils.markForDelete(aSourceFile);
}
catch (Throwable t) {
_logger.info("FileResultHandlerImpl ----- preserved-Failed to preserve source to location----" + aDestinationFile + " , possible reasons----");
String _error = null;
if (aSourceFile == null) {
_logger.info("FileResultHandlerImpl ----- preserved- source file is null");
_error = "Source file is null";
}
if (aSourceFile != null && !aSourceFile.exists()) {
_error = "Source file does not exist";
_logger.info("FileResultHandlerImpl ----- preserved- source file----" + aSourceFile.getAbsolutePath() + " does not exists");
}
if (aSourceFile != null && aSourceFile.exists()) {
_error = "Source file exists but preserve failed";
}
_logger.info("Failed to preserve the source");
throw new RuntimeException(_error, t);
}
}
}
} else if (WatchedFolderUtils.recursiveDeleteDir(aSourceFile)) {
_logger.info("Save Results : Delete the stage file----" + aSourceFile.getAbsolutePath() + "as preserve was off");
} else {
_logger.info("Could not delete the files in the stage folder, marking for delete");
WatchedFolderUtils.markForDelete(aSourceFile);
}
}
/*
* WARNING - Removed try catching itself - possible behaviour change.
* Unable to fully structure code
*/
protected void saveFailure(String message, String stackTrace, String aSourceLocation, Map<String, Document> docMap, Throwable ffit, String jobId, boolean aPreserveFiles) {
block72 : {
block71 : {
_d = new Date(System.currentTimeMillis());
out = null;
_stageCleanupFailure = null;
_possibleDiskFullFailure = null;
_failedToWrite = false;
_stageFile = null;
_failureFolder = null;
_sourceName = null;
_failureMessage = new StringBuffer("Failure Time----").append(_d.toString()).append(aSourceLocation == null ? "" : "\nsource location ---- ");
if (message != null) {
_failureMessage.append("Reason of failure is-----").append(message);
}
if (aSourceLocation != null) {
_stageFile = new File(aSourceLocation);
_sourceName = this.getResultNameFromLocation(aSourceLocation);
}
_destinationPattern = this.config.getFailureFolderName();
_fOverwrite = this.config.isOverwriteDuplicateFilename();
_watchFolderUrl = this.config.getFolderPath();
_deleteStage = true;
if (_destinationPattern != null && _destinationPattern.length() > 0) {
_destinationPattern = FilePathBuilder.isFolderPath(_destinationPattern) != false ? _destinationPattern + "%F/" : _destinationPattern + WatchedFolderUtils.FILE_SEPARATOR + "%F/";
_failureFolder = this.resolveDestination(_destinationPattern, _watchFolderUrl, _sourceName, jobId, _fOverwrite);
if ((_failureFolder = _failureFolder.getCanonicalFile()) != null) {
FileResultHandlerImpl._logger.debug("FileResultHandler : execute ----- failure folder is " + _failureFolder.getAbsolutePath());
_failureFile = new File(_failureFolder, _sourceName);
try {
if (_stageFile.exists()) {
_stageFile = _stageFile.getCanonicalFile();
this.tryPreservingFiles(_stageFile, _failureFile, this.config.isPreserveOnFailure() != false && aPreserveFiles != false);
}
}
catch (Throwable t) {
_stageCleanupFailure = t;
}
if (docMap != null) {
_unsaved_results = new File(_failureFolder, "unsaved_results");
try {
_i = 0;
for (Map.Entry<String, Document> dme : docMap.entrySet()) {
_doc = dme.getValue();
if (_doc != null) {
FilePathBuilder.makeDirectoryPath(_unsaved_results);
_name = dme.getKey();
if (_name == null || _name.length() <= 0) {
_name = "result_" + _i;
}
_resultFile = new File(_unsaved_results, WatchedFolderUtils.replaceNonDigitNonLetterCharacters(_name));
_doc.copyToFile(_resultFile);
FileResultHandlerImpl._logger.debug("Copying unsaved result to " + _resultFile.getAbsolutePath());
}
++_i;
}
_failureMessage.append("\nResults are saved in unsaved_results").append(" folder due to\n").append(ffit.getLocalizedMessage());
_failureMessage.append("\nStack trace:\n").append(this.getStackTrace(ffit));
}
catch (Throwable t) {
FileResultHandlerImpl._logger.error("Exception while saving failure", t);
_failureMessage.append("Results are not saved in unsaved_results").append(" folder due to\n").append(t.getLocalizedMessage());
}
}
}
}
var30_32 = null;
try {
block70 : {
if (_failureFolder != null) {
logFile = new File(_failureFolder, "failure.log");
if (message != null) {
_failureMessage.append("\n");
_failureMessage.append(message);
}
if (_stageCleanupFailure != null) {
_failureMessage.append(_stageCleanupFailure.getLocalizedMessage());
}
out = new PrintWriter(new FileWriter(logFile, true));
out.println(_failureMessage);
if (stackTrace != null) {
out.println(stackTrace);
}
break block70;
}
_failedToWrite = true;
}
var33_41 = null;
if (!_failedToWrite) break block71;
_sb = new StringBuffer();
_sb.append("Reason for failure is ----");
if (message != null) {
_sb.append("\n");
_sb.append(message);
}
_sb.append(" Failed to write failure. Possible reasons are -----");
if (_possibleDiskFullFailure != null && (_errorMessage = _possibleDiskFullFailure.getMessage()) != null && _errorMessage.length() > 0) {
_sb.append("\n").append(_errorMessage);
}
_sb.append("\n - Folder may not have write permission.");
_sb.append("\n - Make sure disk is not full");
}
catch (Throwable var32_68) {
var33_43 = null;
if (_failedToWrite) {
_sb = new StringBuffer();
_sb.append("Reason for failure is ----");
if (message != null) {
_sb.append("\n");
_sb.append(message);
}
_sb.append(" Failed to write failure. Possible reasons are -----");
if (_possibleDiskFullFailure != null && (_errorMessage = _possibleDiskFullFailure.getMessage()) != null && _errorMessage.length() > 0) {
_sb.append("\n").append(_errorMessage);
}
_sb.append("\n - Folder may not have write permission.");
_sb.append("\n - Make sure disk is not full");
FileResultHandlerImpl._logger.info(_sb.toString());
}
if (out != null) {
out.close();
}
throw var32_68;
}
FileResultHandlerImpl._logger.info(_sb.toString());
}
if (out != null) {
out.close();
}
** GOTO lbl283
{
catch (Throwable t) {
_possibleDiskFullFailure = t;
_failedToWrite = true;
var33_42 = null;
if (_failedToWrite) {
_sb = new StringBuffer();
_sb.append("Reason for failure is ----");
if (message != null) {
_sb.append("\n");
_sb.append(message);
}
_sb.append(" Failed to write failure. Possible reasons are -----");
if (_possibleDiskFullFailure != null && (_errorMessage = _possibleDiskFullFailure.getMessage()) != null && _errorMessage.length() > 0) {
_sb.append("\n").append(_errorMessage);
}
_sb.append("\n - Folder may not have write permission.");
_sb.append("\n - Make sure disk is not full");
FileResultHandlerImpl._logger.info(_sb.toString());
}
if (out != null) {
out.close();
}
break block72;
}
}
{
catch (Throwable t) {
block74 : {
FileResultHandlerImpl._logger.error("Exception while saving failure", t);
_failureMessage.append(t.getMessage());
var30_33 = null;
try {
block73 : {
if (_failureFolder != null) {
logFile = new File(_failureFolder, "failure.log");
if (message != null) {
_failureMessage.append("\n");
_failureMessage.append(message);
}
if (_stageCleanupFailure != null) {
_failureMessage.append(_stageCleanupFailure.getLocalizedMessage());
}
out = new PrintWriter(new FileWriter(logFile, true));
out.println(_failureMessage);
if (stackTrace != null) {
out.println(stackTrace);
}
break block73;
}
_failedToWrite = true;
}
var33_44 = null;
if (!_failedToWrite) break block74;
_sb = new StringBuffer();
_sb.append("Reason for failure is ----");
if (message != null) {
_sb.append("\n");
_sb.append(message);
}
_sb.append(" Failed to write failure. Possible reasons are -----");
if (_possibleDiskFullFailure != null && (_errorMessage = _possibleDiskFullFailure.getMessage()) != null && _errorMessage.length() > 0) {
_sb.append("\n").append(_errorMessage);
}
_sb.append("\n - Folder may not have write permission.");
_sb.append("\n - Make sure disk is not full");
}
catch (Throwable var32_69) {
var33_46 = null;
if (_failedToWrite) {
_sb = new StringBuffer();
_sb.append("Reason for failure is ----");
if (message != null) {
_sb.append("\n");
_sb.append(message);
}
_sb.append(" Failed to write failure. Possible reasons are -----");
if (_possibleDiskFullFailure != null && (_errorMessage = _possibleDiskFullFailure.getMessage()) != null && _errorMessage.length() > 0) {
_sb.append("\n").append(_errorMessage);
}
_sb.append("\n - Folder may not have write permission.");
_sb.append("\n - Make sure disk is not full");
FileResultHandlerImpl._logger.info(_sb.toString());
}
if (out != null) {
out.close();
}
throw var32_69;
}
FileResultHandlerImpl._logger.info(_sb.toString());
}
if (out != null) {
out.close();
}
break block72;
{
catch (Throwable t) {
_possibleDiskFullFailure = t;
_failedToWrite = true;
var33_45 = null;
if (_failedToWrite) {
_sb = new StringBuffer();
_sb.append("Reason for failure is ----");
if (message != null) {
_sb.append("\n");
_sb.append(message);
}
_sb.append(" Failed to write failure. Possible reasons are -----");
if (_possibleDiskFullFailure != null && (_errorMessage = _possibleDiskFullFailure.getMessage()) != null && _errorMessage.length() > 0) {
_sb.append("\n").append(_errorMessage);
}
_sb.append("\n - Folder may not have write permission.");
_sb.append("\n - Make sure disk is not full");
FileResultHandlerImpl._logger.info(_sb.toString());
}
if (out != null) {
out.close();
}
break block72;
}
}
}
}
catch (Throwable var29_71) {
block76 : {
var30_34 = null;
try {
block75 : {
if (_failureFolder != null) {
logFile = new File(_failureFolder, "failure.log");
if (message != null) {
_failureMessage.append("\n");
_failureMessage.append(message);
}
if (_stageCleanupFailure != null) {
_failureMessage.append(_stageCleanupFailure.getLocalizedMessage());
}
out = new PrintWriter(new FileWriter(logFile, true));
out.println(_failureMessage);
if (stackTrace != null) {
out.println(stackTrace);
}
break block75;
}
_failedToWrite = true;
}
var33_47 = null;
if (!_failedToWrite) break block76;
_sb = new StringBuffer();
_sb.append("Reason for failure is ----");
if (message != null) {
_sb.append("\n");
_sb.append(message);
}
_sb.append(" Failed to write failure. Possible reasons are -----");
if (_possibleDiskFullFailure != null && (_errorMessage = _possibleDiskFullFailure.getMessage()) != null && _errorMessage.length() > 0) {
_sb.append("\n").append(_errorMessage);
}
_sb.append("\n - Folder may not have write permission.");
_sb.append("\n - Make sure disk is not full");
}
catch (Throwable var32_70) {
var33_49 = null;
if (_failedToWrite) {
_sb = new StringBuffer();
_sb.append("Reason for failure is ----");
if (message != null) {
_sb.append("\n");
_sb.append(message);
}
_sb.append(" Failed to write failure. Possible reasons are -----");
if (_possibleDiskFullFailure != null && (_errorMessage = _possibleDiskFullFailure.getMessage()) != null && _errorMessage.length() > 0) {
_sb.append("\n").append(_errorMessage);
}
_sb.append("\n - Folder may not have write permission.");
_sb.append("\n - Make sure disk is not full");
FileResultHandlerImpl._logger.info(_sb.toString());
}
if (out != null) {
out.close();
}
throw var32_70;
}
FileResultHandlerImpl._logger.info(_sb.toString());
}
if (out != null) {
out.close();
}
** GOTO lbl282
{
catch (Throwable t) {
_possibleDiskFullFailure = t;
_failedToWrite = true;
var33_48 = null;
if (_failedToWrite) {
_sb = new StringBuffer();
_sb.append("Reason for failure is ----");
if (message != null) {
_sb.append("\n");
_sb.append(message);
}
_sb.append(" Failed to write failure. Possible reasons are -----");
if (_possibleDiskFullFailure != null && (_errorMessage = _possibleDiskFullFailure.getMessage()) != null && _errorMessage.length() > 0) {
_sb.append("\n").append(_errorMessage);
}
_sb.append("\n - Folder may not have write permission.");
_sb.append("\n - Make sure disk is not full");
FileResultHandlerImpl._logger.info(_sb.toString());
}
if (out != null) {
out.close();
}
}
}
lbl282: // 2 sources:
throw var29_71;
}
}
}
private String getStackTrace(Throwable t) {
if (t == null) {
return null;
}
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
t.printStackTrace(pw);
pw.flush();
return sw.toString();
}
public void handleFailure(Throwable cause, File input, String jobId) {
String msg = null;
String st = null;
if (cause != null) {
msg = cause.getLocalizedMessage();
st = this.getStackTrace(cause);
}
this.handleFailure(msg, st, input, jobId);
}
public void handleFailure(String message, String stackTrace, File input, String jobId) {
String _watchfolderLocation = input == null ? null : input.getAbsolutePath();
_logger.info("handleFailure() called for source: " + _watchfolderLocation + ", msg: " + message);
if (_logger.isTraceEnabled()) {
_logger.trace("handleFailure ----- " + _watchfolderLocation);
}
try {
this.saveFailure(message, stackTrace, _watchfolderLocation, null, null, jobId, true);
}
catch (Throwable _t) {
_logger.info(_t.getLocalizedMessage());
_logger.debug("Failure while saving failure", _t);
}
}
private String resolveName(String _fileAttr, Document aDoc, String aSourceName) {
String _potentialName = WatchedFolderUtils.getFilenameWithNoExtension(aSourceName);
if (aDoc != null && _fileAttr != null) {
_potentialName = _fileAttr;
_potentialName = WatchedFolderUtils.resolveFilenameWithoutReplacingSpecialCharacters(_potentialName);
}
return _potentialName;
}
protected void saveResults(Map<String, Document> response, String aSourceLocation, String aJobId) {
String _destinationPattern = this.config.getResultFolderName();
boolean _fOverwrite = this.config.isOverwriteDuplicateFilename();
String _watchFolderUrl = this.config.getFolderPath();
String _sourceName = this.getResultNameFromLocation(aSourceLocation);
HashMap<String, Map<String, Document>> _failureMap = new HashMap<String, Map<String, Document>>();
int _successCount = 0;
Throwable ffit = null;
int _failureCount = 0;
if (_destinationPattern != null && _destinationPattern.length() > 0) {
_destinationPattern = FilePathBuilder.isFolderPath(_destinationPattern) ? _destinationPattern.substring(0, _destinationPattern.length() - 1) + WatchedFolderUtils.FILE_SEPARATOR : _destinationPattern + WatchedFolderUtils.FILE_SEPARATOR;
try {
String _filePattern = this.config.getOutputFilePattern();
if (_filePattern != null) {
if (_filePattern.startsWith(WatchedFolderUtils.FILE_SEPARATOR)) {
_filePattern = _filePattern.substring(1);
}
_filePattern = _destinationPattern + _filePattern;
boolean _isFolderPattern = FilePathBuilder.isFolderPath(_filePattern);
File _resultFile = this.resolveDestination(_filePattern, _watchFolderUrl, _sourceName, aJobId, _fOverwrite);
File _destinationFile = null;
if (response != null && response.size() > 0 && _resultFile != null) {
for (Map.Entry<String, Document> dme : response.entrySet()) {
Document _currentDocument = dme.getValue();
_destinationFile = _resultFile.getCanonicalFile();
if (_isFolderPattern) {
_destinationFile = new File(_destinationFile, this.resolveName(dme.getKey(), _currentDocument, _sourceName));
}
if (_destinationFile.exists()) {
if (!_fOverwrite) {
_destinationFile = WatchedFolderUtils.resolveDuplicateFile(_destinationFile.getAbsolutePath(), _fOverwrite);
} else {
WatchedFolderUtils.recursiveDeleteDir(_destinationFile);
}
}
_currentDocument.copyToFile(_destinationFile);
++_successCount;
}
}
}
}
catch (Throwable _t) {
ffit = _t;
++_failureCount;
_failureMap.put("__RESERVED__PARAM__", response);
}
}
int _failureNos = _failureMap.size();
boolean _preservedSources = false;
if (_successCount > 0 || _successCount == 0 && _failureCount == 0) {
this.preserveFiles(aSourceLocation, aJobId);
_preservedSources = true;
}
if (_failureNos > 0 && _successCount <= 0) {
if (_preservedSources) {
this.saveFailure(null, null, aSourceLocation, response, ffit, aJobId, false);
} else {
this.saveFailure(null, null, aSourceLocation, response, ffit, aJobId, true);
}
}
}
private void preserveFiles(String aSourceLocation, String aJobId) {
String _sourceName = this.getResultNameFromLocation(aSourceLocation);
String _destinationPattern = this.config.getPreserveFolderName();
boolean _fOverwrite = this.config.isOverwriteDuplicateFilename();
String _watchFolderUrl = this.config.getFolderPath();
File _sourceFile = null;
Object _preserveFolder = null;
File _preserveFile = null;
if (aSourceLocation != null) {
try {
_sourceFile = new File(aSourceLocation);
if (_sourceFile.exists()) {
_sourceFile = _sourceFile.getCanonicalFile();
if (_destinationPattern != null && _destinationPattern.length() > 0) {
if (!FilePathBuilder.isFolderPath(_destinationPattern)) {
_destinationPattern = _destinationPattern + WatchedFolderUtils.FILE_SEPARATOR;
}
_destinationPattern = _sourceFile.isDirectory() ? _destinationPattern + _sourceName + WatchedFolderUtils.FILE_SEPARATOR : _destinationPattern + _sourceName;
_preserveFile = this.resolveDestination(_destinationPattern, _watchFolderUrl, _sourceName, aJobId, _fOverwrite);
}
this.tryPreservingFiles(_sourceFile, _preserveFile, _preserveFile != null);
}
}
catch (IOException ioe) {
throw new RuntimeException("Error preserving files", ioe);
}
}
}
public void handleSuccess(Map<String, Document> response, File input, String jobId) {
String _watchfolderLocation = input.getAbsolutePath();
_logger.info("handleSuccess() called for source: " + _watchfolderLocation);
if (_logger.isTraceEnabled()) {
_logger.trace("handleSuccess ----- " + _watchfolderLocation);
}
try {
if (_watchfolderLocation == null) {
throw new RuntimeException("Source is null!");
}
if (response != null) {
if (_logger.isTraceEnabled()) {
_logger.trace("handleSuccess -----: " + _watchfolderLocation);
}
this.saveResults(response, _watchfolderLocation, jobId);
}
}
catch (Throwable _t) {
this.handleFailure(_t, input, jobId);
}
}
}