-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add cache file versioning, distrust cache with different version #33
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Chybí changelog
2e37f6c
to
fe1b5b1
Compare
f667943
to
c9ad956
Compare
c9ad956
to
6b98c50
Compare
"""Filters out disallowed characters, used with str.filter""" | ||
return char not in "\",\n} " | ||
|
||
# This expects the first item in the json file to be the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kdyz ocekáváš že to má být v první line je potřeba v případě nenajití toho stringu procházet celý soubor?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Načítám soubor řádek po řádku, jakmile narazím na jakékoli písmenko abecedy, zjistím, jestli načtené znaky začínají slovem "version", pokud ano, pokračuju parsováním verze z momentálního načteného řádku, co začínal slovem version a další řádky nečtu. Pokud ne, vracím false. Jediný případ kdy bych přečetl celý soubor by nastal, pokud by v něm nebyla písmenka, což se v normálním případě nestane, jen někdo se zlým úmyslem by mi mohl soubor zaplnit pouze speciálnímy znaky a čísly a v takovém případě bych doopravdy četl celý soubor.
Pokud by se celý soubor nacházel na prvním řádku, přečtu ho taky celý, to není ideální, ale dokud s tím nebude problém, nechci špinit kód dalšími checky
Updated to reflect the requested changes, reviewer does not have time to re-review this time
No description provided.