-
Notifications
You must be signed in to change notification settings - Fork 163
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
キーワードを指定してタグジャンプができないバグを修正 #1208
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
✅ Build sakura 1.0.2639 completed (commit 7bae8237d2 by @7-rate) |
berryzplus
reviewed
Feb 20, 2020
✅ Build sakura 1.0.2640 completed (commit 9e4e97f193 by @7-rate) |
✅ Build sakura 1.0.2641 completed (commit 9da407a215 by @7-rate) |
berryzplus
approved these changes
Feb 21, 2020
動作確認まで出来てないんですが、コードの範疇で問題なさそうなんでapproveにしてしまいました:smiley: |
誰かマージの代行を頼みます。 |
マージしやした。 |
HoppingTappy
pushed a commit
to HoppingTappy/sakura
that referenced
this pull request
Jun 16, 2020
キーワードを指定してタグジャンプができないバグを修正
beru
added
🐛bug🦋
■バグ修正(Something isn't working)
💩degradation🧻🚽
デグレ (前に動いていた機能が動かなくなった)
labels
Mar 21, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR の目的
#836 にてデグレしていたため、修正する。
通常のタグジャンプは可能だが、キーワードを指定してタグジャンプ機能ができなくなっていた。
カテゴリ
PR の背景
#836 で、タグジャンプを高速化するためにtagsファイルのパラメータ(!_TAG_FILE_FORMAT等)の読み込みのための関数ReadTagsParameterを作成しました。
タグジャンプの際にはReadTagsParameter()の後にfind_key_for_BinarySearch() または find_key_for_LinearSearch()にてタグを検索する作りにしていましたが、
find_key_for_LinearSearch()のときに今回のバグが再現します。
→キーワードを指定してタグジャンプの時はfind_key_for_LinearSearch()になりますので、タグジャンプできない状態でした。
細かい話としては、ReadTagsParameter()を抜ける際にはファイルシーク位置はtagsファイルのパラメーター群を読み終わった所にしたいため、old_offsetにて読み込んだ位置を保持しているつもりでした。
しかし、old_offsetの設定は到達不可能な場所で行っていたため、ReadTagsParameter()を抜ける際のファイルシークは初期化していないold_offset(不定値)での位置になっていました。
PR のメリット
キーワードを指定してタグジャンプ機能が従来通り使えるようになります。
PR のデメリット (トレードオフとかあれば)
特になし
PR の影響範囲
タグジャンプ機能のみ
関連チケット
#836
参考資料
なし