-
Notifications
You must be signed in to change notification settings - Fork 5
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
feat: Add deprecation warnings and documentation #335
base: dev
Are you sure you want to change the base?
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.
Hello @uristdwarf, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
Summary of Changes
This pull request addresses two main issues: deprecation warnings and documentation improvements. It adds warnings for features that will be removed in version 5.0.0, giving users advance notice. Additionally, it fixes documentation issues in the man pages to improve clarity and accuracy.
Highlights
- Deprecation Warnings: Adds
safs::log_warn
messages to the master code to warn about deprecatedemptytrash
,emptyreserved
,setgoal
, andsettrashtime
operations in changelogs, as well as XOR goals in goal configs. Also adds warnings to tools likefile_info
,recursive_remove
,set_goal
,set_trashtime
, andsnapshot
when the-l
option is used, indicating it will become the default behavior. A warning is also added tosfsmount
when thesfscachefiles
option is used. - Documentation Updates: Updates man pages for
saunafs-fileinfo
,saunafs-getgoal
,saunafs-gettrashtime
,saunafs-makesnapshot
,saunafs-rremove
,sfschunkserver
,sfsmaster
,sfsmetalogger
, andsfsmount
to reflect deprecations and clarify option usage. - Tooling: The
sfstools.sh
script now emits a warning that it is deprecated and that thesaunafs
command should be used instead.
Changelog
Click here to see the changelog
- doc/saunafs-fileinfo.1.adoc
- Added documentation for the
-l
option, noting its deprecation and future default status.
- Added documentation for the
- doc/saunafs-getgoal.1.adoc
- Added documentation for the
-l
option, noting its deprecation and future default status. - Documented the deprecation of
rgetgoal
andrsetgoal
aliases.
- Added documentation for the
- doc/saunafs-gettrashtime.1.adoc
- Added documentation for the
-l
option, noting its deprecation and future default status. - Documented the deprecation of
rgettrashtime
andrsettrashtime
aliases.
- Added documentation for the
- doc/saunafs-makesnapshot.1.adoc
- Added documentation for the
-l
option, noting its deprecation and future default status.
- Added documentation for the
- doc/saunafs-rremove.1.adoc
- Added documentation for the
-l
option, noting its deprecation and future default status.
- Added documentation for the
- doc/sfschunkserver.8.adoc
- Removed deprecated
-f
and-s
options from the synopsis and description.
- Removed deprecated
- doc/sfsmaster.8.adoc
- Removed deprecated
-f
and-s
options from the synopsis and description.
- Removed deprecated
- doc/sfsmetalogger.8.adoc
- Removed deprecated
-f
option from the synopsis.
- Removed deprecated
- doc/sfsmount.1.adoc
- Documented the deprecation of the
-o sfscachefiles
option. - Fixed a typo in the description of
sfslognotificationarea
andsfsmessagesuppressionperiod
.
- Documented the deprecation of the
- src/common/goal.h
- Added
<algorithm>
include - Added
isXor()
method to theGoal
class to check for XOR slices.
- Added
- src/master/goal_config_loader.cc
- Added a warning message when XOR goals are detected in the goals config file.
- src/master/restore.cc
- Added warning messages for deprecated
emptytrash
,emptyreserved
,setgoal
, andsettrashtime
operations used in changelogs.
- Added warning messages for deprecated
- src/mount/fuse/mount_config.cc
- Added a warning message when the
sfscachefiles
mount option is used.
- Added a warning message when the
- src/tools/file_info.cc
- Updated usage message to indicate the
-l
option will be default in 5.0.0. - Added a warning message when the
-l
option is used.
- Updated usage message to indicate the
- src/tools/main.cc
- Added a warning message when deprecated tool names (rgetgoal, rsetgoal, rgettrashtime, rsettrashtime) are used.
- src/tools/recursive_remove.cc
- Updated usage message to indicate the
-l
option will be default in 5.0.0. - Added a warning message when the
-l
option is used. - Fixed an issue where trailing slashes were not being removed from the input path on Windows.
- Updated usage message to indicate the
- src/tools/set_goal.cc
- Updated usage message to indicate the
-l
option will be default in 5.0.0. - Added a warning message when the
-l
option is used.
- Updated usage message to indicate the
- src/tools/set_trashtime.cc
- Updated usage message to indicate the
-l
option will be default in 5.0.0. - Added a warning message when the
-l
option is used. - Added
<common/massert.h>
include.
- Updated usage message to indicate the
- src/tools/sfstools.sh
- Added a warning message to indicate the script is deprecated and that the
saunafs
command should be used instead.
- Added a warning message to indicate the script is deprecated and that the
- src/tools/snapshot.cc
- Updated usage message to indicate the
-l
option will be default in 5.0.0. - Added a warning message when the
-l
option is used.
- Updated usage message to indicate the
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command>
or @gemini-code-assist <command>
. Below is a summary of the supported commands.
Feature | Command | Description |
---|---|---|
Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/
folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Did you know?
The SaunaFS
project name might be inspired by the Finnish word 'sauna', referring to a traditional Finnish bath. This could be a playful reference to cleaning and maintaining the file system, similar to how a sauna cleanses the body.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
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.
Code Review
This pull request adds deprecation warnings and documentation updates for features that will be removed in version 5.0.0. The changes are well-structured and provide helpful information to users about the upcoming changes. However, there are a few areas where the messaging and implementation could be improved to ensure clarity and consistency.
Summary of Findings
- Inconsistent deprecation warning messages: The deprecation warning messages are not consistent across all files. Some messages mention that the feature will be removed in 5.0.0, while others do not. Consistency in messaging is important for a good user experience.
- Placement of deprecation warnings: The deprecation warnings for the
-l
option are placed within theif (long_wait)
block. This means that the warning is only shown when the-l
option is used. It would be better to show the warning regardless of whether the option is used, as the option itself is deprecated. - Missing deprecation warning in
sfstools.sh
: Thesfstools.sh
script is deprecated, but there is no mention of usingsaunafs
instead. This could lead to confusion for users who are not aware of the change. - Inaccurate deprecation message for rgettrashtime and rsettrashtime: The deprecation message for
rgettrashtime
andrsettrashtime
insrc/tools/main.cc
incorrectly states to use the same command with-r
flag. The correct commands aregettrashtime -r
andsettrashtime -r
. - Inconsistent use of
eassert
vsmassert
: The code uses botheassert
andmassert
for similar checks. It would be better to use a single assertion macro for consistency.
Merge Readiness
The pull request is not quite ready for merging. The inconsistencies in the deprecation warning messages and the placement of the -l
option warnings should be addressed. Additionally, the missing deprecation warning in sfstools.sh
and the inaccurate deprecation message for rgettrashtime
and rsettrashtime
should be corrected. I am unable to approve this pull request, and recommend that these issues be addressed before merging. Please have others review and approve this code before merging.
c992dc2
to
6793b22
Compare
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
* Fix missing options in some of the man files. Signed-off-by: Urmas Rist <urmas@leil.io>
Signed-off-by: Urmas Rist <urmas@leil.io>
Signed-off-by: Urmas Rist <urmas@leil.io>
Signed-off-by: Urmas Rist <urmas@leil.io>
Signed-off-by: Urmas Rist <urmas@leil.io>
-s and -f options have not existed for a long time. Signed-off-by: Urmas Rist <urmas@leil.io>
Though already removed from documentation, and thus it's removal or modification isn't really considered a breaking change, a warning is added nonetheless that XOR could be removed in any future release. Signed-off-by: Urmas Rist <urmas@leil.io>
Add warnings for deprecations that will be removed in 5.0.0.
Also fix some documentation issues for the man files.