manifest
Sidecar JSON file storing a skeleton to create stubs and patch containers.
IH5Manifest ¶
Bases: BaseModel
A metadata sidecar file for a collection of IH5 record files.
It contains the skeleton of the container, in order to be able to create a patch for an IH5Record the data is not locally available for (but manifest is).
Source code in src/metador_core/ih5/manifest.py
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 |
|
from_userblock
classmethod
¶
from_userblock(
ub: IH5UserBlock,
skeleton: IH5UserBlock = None,
exts: IH5UserBlock = None,
) -> IH5Manifest
Create a manifest file based on a user block.
Source code in src/metador_core/ih5/manifest.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|
__bytes__ ¶
__bytes__() -> bytes
Serialize to JSON and return UTF-8 encoded bytes to be written in a file.
Source code in src/metador_core/ih5/manifest.py
49 50 51 52 53 54 |
|
save ¶
save(path: Path)
Save manifest (as returned by bytes()) into a file.
Source code in src/metador_core/ih5/manifest.py
56 57 58 59 60 |
|
IH5UBExtManifest ¶
Bases: BaseModel
IH5 user block extension for stub and manifest support.
Source code in src/metador_core/ih5/manifest.py
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 |
|
is_stub_container
instance-attribute
¶
is_stub_container: bool
True if file has the structure of another container, without actual data inside.
manifest_uuid
instance-attribute
¶
manifest_uuid: UUID
UUID of the manifest file that belongs to this IH5 file.
manifest_hashsum
instance-attribute
¶
manifest_hashsum: QualHashsumStr
Hashsum of the manifest file that belongs to this IH5 file.
ext_name
classmethod
¶
ext_name() -> str
Name of user block extension section for stub and manifest info.
Source code in src/metador_core/ih5/manifest.py
75 76 77 78 |
|
get
classmethod
¶
get(ub: IH5UserBlock) -> Optional[IH5UBExtManifest]
Parse extension metadata from userblock, if it is available.
Source code in src/metador_core/ih5/manifest.py
80 81 82 83 84 85 |
|
update ¶
update(ub: IH5UserBlock)
Create or overwrite extension metadata in given userblock.
Source code in src/metador_core/ih5/manifest.py
87 88 89 |
|
IH5MFRecord ¶
Bases: IH5Record
IH5Record extended by a manifest file.
The manifest file is a sidcar JSON file that contains enough information to support the creation of a stub container and patching a dataset without having the actual container locally available.
In a chain of container files, only the base container may be a stub. All files without the manifest extension in the userblock are considered not stubs.
An IH5MFRecord is a valid IH5Record (the manifest file then is simply ignored). Also, it is possible to open an IH5Record as IH5MFRecord and turn it into a valid IH5MFRecord by committing a patch (this will create the missing manifest).
In addition to the ability to create stubs, the manifest file can be used to carry information that should be attached to a container, but is too large or inappropriate for storage in the userblock (e.g. should be available separately).
The manifest should store information that applies semantically to the whole fileset at the current patch level, it MUST NOT be required to have manifest files for each ih5 patch. Additional information stored in the manifest is inherited to the manifest of successive patches until overridden.
The main use case of this extension is to be used by automated packers from suitably prepared source directories, to be uploaded to remote locations, and for these packers being able to create patches for the record without access to all the data containers (based only on the most recent manifest file).
Source code in src/metador_core/ih5/manifest.py
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 |
|
manifest
property
¶
manifest: IH5Manifest
Return loaded manifest object of latest committed record patch.
create_stub
classmethod
¶
create_stub(
record: Union[Path, str], manifest_file: Path
) -> IH5MFRecord
Create a stub base container for patching an existing but unavailable record.
The stub is based on the user block of a real IH5 record container line
and the skeleton of the overlay structure (as returned by IH5Skeleton
),
which are taken from a provided manifest file.
Patches created on top of the stub are compatible with the original record whose metadata the stub is based on.
The returned container is read-only and only serves as base for patches.
Source code in src/metador_core/ih5/manifest.py
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 |
|