Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9348896
directory.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
directory.py
View Options
# Copyright (C) 2016 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
import
tarfile
import
tempfile
from
swh.model.identifiers
import
ObjectType
from
swh.vault.cookers.base
import
BaseVaultCooker
from
swh.vault.to_disk
import
DirectoryBuilder
class
DirectoryCooker
(
BaseVaultCooker
):
"""Cooker to create a directory bundle """
BUNDLE_TYPE
=
"flat"
SUPPORTED_OBJECT_TYPES
=
{
ObjectType
.
DIRECTORY
}
def
check_exists
(
self
):
return
not
list
(
self
.
storage
.
directory_missing
([
self
.
obj_id
]))
def
prepare_bundle
(
self
):
with
tempfile
.
TemporaryDirectory
(
prefix
=
"tmp-vault-directory-"
)
as
td
:
directory_builder
=
DirectoryBuilder
(
self
.
storage
,
td
.
encode
(),
self
.
obj_id
)
directory_builder
.
build
()
with
tarfile
.
open
(
fileobj
=
self
.
fileobj
,
mode
=
"w:gz"
)
as
tar
:
tar
.
add
(
td
,
arcname
=
str
(
self
.
swhid
))
File Metadata
Details
Attached
Mime Type
text/x-python
Expires
Jul 4 2025, 6:55 PM (5 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3338741
Attached To
rDVAU Software Heritage Vault
Event Timeline
Log In to Comment