base operation
Bases: ABC
Abstract base class for all file operations.
This class provides a common structure for tasks like moving, deleting, or processing files. It manages configuration, directory validation, logging, and the main execution loop.
Attributes:
| Name | Type | Description |
|---|---|---|
settings |
AppSettings
|
The global settings object with default values. |
command |
str
|
Name of the operation being executed. |
sleep |
float
|
Time in seconds to wait between cycles if 'repeat' is True. |
repeat |
bool
|
If True, the operation runs in a continuous loop. |
files_for_task |
Tuple[Path]
|
A collection of files found for processing. |
pattern |
tuple
|
File extensions or keywords to match files for processing. |
source_directory |
Path
|
The directory to search for files for processing. |
target_directory |
Path
|
The directory where results are saved. |
stop |
bool
|
A flag to stop the execution loop. |
logger |
Logger
|
Logger instance for the specific operation. |
Source code in file_operations/file_operation.py
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 | |
pattern
property
writable
tuple: Returns the file matching patterns.
sleep
property
writable
float: Returns the sleep interval in seconds.
stop
property
writable
bool: Returns the status of the stop flag.
target_directory
property
writable
Path: Returns the directory where results are processed.
__init__(settings, **kwargs)
Initializes the operation with settings and specific arguments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
settings
|
AppSettings
|
Global configuration instance. |
required |
**kwargs
|
dict
|
Arguments from the command line, such as 'src', 'dst', 'command', and 'log_path'. |
{}
|
Source code in file_operations/file_operation.py
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 | |
add_arguments(settings, parser)
abstractmethod
staticmethod
Abstract method to define specific CLI arguments for the operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
settings
|
AppSettings
|
To provide default values for arguments. |
required |
parser
|
ArgumentParser
|
The subparser for the command. |
required |
Source code in file_operations/file_operation.py
140 141 142 143 144 145 146 147 148 149 150 | |
check_directories()
Checks the source directory and ensures the target directory exists.
If the target directory is missing, it creates it automatically with all parents.
Source code in file_operations/file_operation.py
101 102 103 104 105 106 107 108 | |
check_source_directory()
Validates that the source directory exists on the file system.
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If the source path does not exist. |
Source code in file_operations/file_operation.py
88 89 90 91 92 93 94 95 96 97 98 | |
do_task()
abstractmethod
Abstract method where the main logic of the operation is implemented.
Source code in file_operations/file_operation.py
152 153 154 155 | |
get_files(source_directory, pattern)
Scans the source directory for files that match the given patterns.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source_directory
|
Path
|
The folder to search in. |
required |
pattern
|
Union[Tuple[str], Tuple[str, ...]]
|
A tuple of strings to match filenames (e.g., ('.jpg', '.png')). |
required |
Returns:
| Type | Description |
|---|---|
Tuple[Path]
|
Tuple[Path]: A tuple containing Path objects of the found files. |
Source code in file_operations/file_operation.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | |
run()
Starts the main execution lifecycle of the operation.
This method handles the directory checks and enters a loop if 'repeat' is enabled. It calls 'do_task' for the actual work and handles KeyboardInterrupt for safe stopping.
Source code in file_operations/file_operation.py
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 | |