1 from __future__
import unicode_literals
11 from .compat
import compat_getenv
19 def __init__(self
, ydl
):
22 def _get_root_dir(self
):
23 res
= self
._ydl
.params
.get('cachedir')
25 cache_root
= compat_getenv('XDG_CACHE_HOME', '~/.cache')
26 res
= os
.path
.join(cache_root
, 'yt-dlp')
27 return expand_path(res
)
29 def _get_cache_fn(self
, section
, key
, dtype
):
30 assert re
.match(r
'^[a-zA-Z0-9_.-]+$', section
), \
31 'invalid section %r' % section
32 assert re
.match(r
'^[a-zA-Z0-9_.-]+$', key
), 'invalid key %r' % key
34 self
._get
_root
_dir
(), section
, '%s.%s' % (key
, dtype
))
38 return self
._ydl
.params
.get('cachedir') is not False
40 def store(self
, section
, key
, data
, dtype
='json'):
41 assert dtype
in ('json',)
46 fn
= self
._get
_cache
_fn
(section
, key
, dtype
)
49 os
.makedirs(os
.path
.dirname(fn
))
50 except OSError as ose
:
51 if ose
.errno
!= errno
.EEXIST
:
53 self
._ydl
.write_debug(f
'Saving {section}.{key} to cache')
54 write_json_file(data
, fn
)
56 tb
= traceback
.format_exc()
57 self
._ydl
.report_warning(
58 'Writing cache to %r failed: %s' % (fn
, tb
))
60 def load(self
, section
, key
, dtype
='json', default
=None):
61 assert dtype
in ('json',)
66 cache_fn
= self
._get
_cache
_fn
(section
, key
, dtype
)
69 with io
.open(cache_fn
, 'r', encoding
='utf-8') as cachef
:
70 self
._ydl
.write_debug(f
'Loading {section}.{key} from cache')
71 return json
.load(cachef
)
74 file_size
= os
.path
.getsize(cache_fn
)
75 except (OSError, IOError) as oe
:
77 self
._ydl
.report_warning(
78 'Cache retrieval from %s failed (%s)' % (cache_fn
, file_size
))
80 pass # No cache available
86 self
._ydl
.to_screen('Cache is disabled (Did you combine --no-cache-dir and --rm-cache-dir?)')
89 cachedir
= self
._get
_root
_dir
()
90 if not any((term
in cachedir
) for term
in ('cache', 'tmp')):
91 raise Exception('Not removing directory %s - this does not look like a cache dir' % cachedir
)
94 'Removing cache dir %s .' % cachedir
, skip_eol
=True)
95 if os
.path
.exists(cachedir
):
96 self
._ydl
.to_screen('.', skip_eol
=True)
97 shutil
.rmtree(cachedir
)
98 self
._ydl
.to_screen('.')