"src/components/Auth/SignInForm/SignInForm.tsx" did not exist on "b331727c43ce5f0bbf9b2d66091807298db74584"
Newer
Older
The DES starts it's operations (eg. <FileType> filtering), considering a logical hierachy of directories starting form a given BASE_PATH that
reflects the configuration within a given processor configuration file.
The directories are created automatically with the following structure:
```
$BASE_PATH/$AOI/$PROCESSOR
```
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
## FileType filtering ##
The files to be handled by a give *Task* or that are used for *Task* triggering, are filtered by regular expressions defined in the *FileType* tag of the *Task*
Files are detected by the *FileType* filtering IFF:
- An equivalend .md5 file exists in the logical directory hierarchy (ex.yourfile.txt.md5), unless the tag *MD5Filter* is set explicitly to value *false*
- No stamp file exists (eg. yourfile.txt.stamp) in the path defined by *STAMPS_PATH/$PROCESSOR*
Stamp files are used to indicate that a file has already been processed by some Task
A given Task,
IFF a given *Task* returns either *EXIT_SUCESS* (0) or *EXIT_WARNING* (1), the DES will create an equivalent stamp file for the file processed
IF a given *Task* does not comply to the *EXIT_CODES* defined above, the *Task* implementation, upon completion,
should therefore either delete the input file and it's equivalent md5, create an equivalent stamp file in *STAMPS_PATH/$PROCESSOR* directory
## Stamp files ##
A Stamp file is an empty file that is created iff a given Task has been completed for a given input file filtered by a *FileType* expression.
In presence of a stamp file a subsequent *FileType* filtering will not detect the file that has an equivalent stamp file.
Stamp files are stored in the directory specified by *STAMPS_PATH/$PROCESSOR*
Stamp files have the following naming convention:
```
[PUSH | GET | TASK]_[Consumer name | Task name]_[Procesor name]_[AOI name]_[File name].stamp
```
Example:
```
TASK_createInstantSolarRadiation_EURAC_RADBEAM_P_southtyrol_TREURAC_RADBEAM_P.southtyrol.dem_ST_25m_LIDAR_32632.year.2017.2018-06-19T16:45:00.Eurac.01.00.trigger.stamp
```