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 の目的
共有メモリ管理クラスの基底クラスを変更して、共有メモリに関する検証を行いやすくします。
カテゴリ
PR の背景
#1570 で
util/design_template.h
を活用するための変更を行いました。#1581 とほぼ同件です。
共有メモリは元々「プロセス内に1つのみ」という仕様なので、
変更先の基底クラステンプレートを
TSingleInstance<T>
とします。PR のメリット
PR のデメリット (トレードオフとかあれば)
とくにおもいつきません。
仕様・動作説明
CShareDataの基底クラスを
TSingleton
からTSingleInstance
に変更します。CShareData*
からCShareData
に変更します。※変数名がハンガリアンなので修正規模が大きく見えます。
ややこしくなるので、変更により可能となるテストケースの追加は行いません。
PR の影響範囲
CShareDataに依存するコードに影響を与える修正です。
テスト内容
修正の主要部分が単体テストのカバー範囲であるため、追加のテストは不要と考えています。
関連 issue, PR
#1570
参考資料
sakura/sakura_core/env/CShareData.h
Lines 55 to 58 in cf05ed9
変更前はサクラエディタ独自「シングルトンっぽいクラス」を基底クラスとしているため、インスタンスを破棄することができません。ここのコメントの大半は現状の挙動に対して「ウソ」になってるのでこれをもって変更の正当性を騙るのはビミョーですが、当初仕様がら離れていく変更でないことの担保にはなると思います。