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

Implement remove command #89

Open
wants to merge 78 commits into
base: develop
Choose a base branch
from
Open

Implement remove command #89

wants to merge 78 commits into from

Conversation

rk1274
Copy link
Contributor

@rk1274 rk1274 commented Feb 12, 2025

@rk1274 rk1274 requested review from sb10 and mjkw31 February 12, 2025 15:37
@y-popov
Copy link
Contributor

y-popov commented Feb 13, 2025

We also need to store remove requests in the database, so if a server goes down we will be able to recover interrrupted removal process

@rk1274 rk1274 requested a review from sb10 February 17, 2025 13:26
- Rename functions in discoveryCoordinator
- Move buildRemoveItemDef to set pkg
- Make mock mutex private
@rk1274 rk1274 requested a review from sb10 March 18, 2025 08:59
mjkw31
mjkw31 previously approved these changes Mar 18, 2025
Copy link
Contributor

@mjkw31 mjkw31 left a comment

Choose a reason for hiding this comment

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

LGTM.

@rk1274 rk1274 requested a review from sb10 March 28, 2025 15:56
sb10
sb10 previously approved these changes Mar 31, 2025
@sb10 sb10 dismissed their stale review March 31, 2025 15:03

requested changes

Copy link
Contributor

Choose a reason for hiding this comment

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

These new types should not be internal; external code won't be able to type check against these. The structs should be defined in the pkg where they are used so that callers can ask if the error is specifically a kind of error from that pkg.

Maybe PathError can be here if it's used in multiple pkgs and callers don't need to do their own type check, but not the more specific Dir one.

Copy link
Contributor

Choose a reason for hiding this comment

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

So we create a DirNotEmptyError using NewDirNotEmpty in baton and mock, and type check against it in remove. So if we put that error in the remove, baton and mock would need to import remove that makes no sense and will cause import cycle because remove already imports internal.
We guess the best place for that error is in internal

Copy link
Contributor

Choose a reason for hiding this comment

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

Even if the error stays in the internal, external users still will be able to use the error using ibackup.internal.DirNotEmptyError, won't they?

Copy link
Contributor

@y-popov y-popov Apr 2, 2025

Choose a reason for hiding this comment

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

Michael explained that internal is a special folder that is not available to external users.
How about making errs package with all the ibackup errors?

Copy link
Contributor

Choose a reason for hiding this comment

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

The error type should be defined in the package that creates that error, not in the package that is doing the type check. So it should be defined in baton, and hopefully mock can import from baton to use it?

Copy link
Contributor

Choose a reason for hiding this comment

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

Actually, it shouldn't be defined in an interface implementation package. We should sit together and look at the code...

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.

4 participants