-
Notifications
You must be signed in to change notification settings - Fork 0
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
base: develop
Are you sure you want to change the base?
Conversation
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 |
…emoved from DB and delint
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.
LGTM.
internal/error.go
Outdated
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.
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.
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.
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
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.
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?
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.
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?
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.
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?
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.
Actually, it shouldn't be defined in an interface implementation package. We should sit together and look at the code...
https://jira.sanger.ac.uk/browse/HSI-64