fix: yaml.load_file uses io.open directly -- delegate to fs or remove #24
Labels
No labels
coordination/cross-repo
coordination/needed
effort
large
effort
medium
effort
small
meta/duplicate
meta/planning
meta/wontfix
priority
high
priority
low
priority
medium
session
blocker
session
handover
session
next
status
blocked
status
done
status
in-progress
status
review
status
to-go
type
admin
type
bug
type
config
type
deployment
type
docs
type
enhancement
type
feature
type
handover
type
infrastructure
type
installation
type
maintenance
type
migration
type
research
type
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
DAW/daw-lua-common#24
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
yaml.load_fileusesio.opendirectly. Pure data parsers indaw.common do not do filesystem access -- that belongs in fs.lua.
Options
yaml.load_file, callers usefs.read_file+yaml.loadyaml.load_filebut delegate tofs.read_fileinternally(requires yaml.lua to depend on daw.common.fs)
Decision needed
How many callers use
yaml.load_filedirectly?If few: remove it. If many: delegate to fs.
See also
load_file delegates to daw.common.fs.file.read_file(). No more raw io.open in yaml/.