整理: TTSEngine
メソッド引数に CoreAdapter
を追加
#1392
Closed
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.
内容
概要:
TTSEngine
メソッド引数にCoreAdapter
を追加するリファクタリング#1391 で提案されたとおり、
TTSEngine
は関数へ解体できる。現在の
TTSEngine
は内部に._core
変数を持っているため、メソッド引数由来のコアを利用するよう変更する必要がある。しかしこれを実装するには引数用のコアを用意するコードが必要であり、これにも着手すると
TTSEngine
外の diff が大きくなる。よって、段階的に進めるためにまず第一段階として(トリッキーだが)
._core
をメソッド引数に渡す形を取る。すなわちメソッドコール時にtts_engine.method_x(tts_engine._core, other_args)
としてコアを取得して渡す。こうすれば外部への影響を最小限にしながら、まず第一歩であるメソッドのコア引数を実現できる。
また、
self._core
を間違って利用しないように各メソッドを static method へ変換すればより安全である。このような形で
TTSEngine
メソッド引数にCoreAdapter
を追加するリファクタリングを提案します。関連 Issue
part 1 of #1391