Skip to content
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

[trello.com/c/mCIOWeDH] Fixed file presenting #596

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

just-software-dev
Copy link
Member

@just-software-dev just-software-dev commented Nov 20, 2024

The problem was because a new pack of images could be presenting before complete closing of the previous one (it's possible after swiping). It led to unexpected behaviour because the service wasn't made to process a few packs simultaneously


var copyURL = URL(fileURLWithPath: file.url.deletingLastPathComponent().path)
copyURL.appendPathComponent(fullName)

if FileManager.default.fileExists(atPath: copyURL.path) {
try? FileManager.default.removeItem(at: copyURL)
if !FileManager.default.fileExists(atPath: copyURL.path) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Не лучше ли будет удалять и заново копировать, чтобы избежать возможного кейса:

  1. Скопируется файл
  2. Форсированно закроется приложение
  3. Откроется другой файл с таким же названием

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Этот механизм должен поддерживать параллельность, так как у нас баг был по сути в том, что не было поддержки параллельности. Если будем удалять еще не закрытый файл, это может привести к непредсказуемому результату. Предлагаю тогда добавлять уникальный ID к названию файла

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants