This is the initial code of the kata that have to be refactored:
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
(ns parrot-refactoring.core) | |
(def ^:private load-factor 9.0) | |
(def ^:private base-speed 12.0) | |
(defn- compute-base-speed-for-voltage [voltage] | |
(min 24.0 (* voltage base-speed))) | |
(defn speed [parrot] | |
(case (:type parrot) | |
:european-parrot | |
base-speed | |
:african-parrot | |
(max 0.0 (- base-speed (* load-factor (:num-coconuts parrot)))) | |
:norwegian-blue-parrot | |
(if (:nailed parrot) | |
0.0 | |
(compute-base-speed-for-voltage (:voltage parrot))) | |
(throw (Exception. "Should be unreachable!")))) |
- One using protocols:
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
(ns parrot-refactoring.core) | |
(def ^:private base-speed 12.0) | |
(def ^:private minimum-speed 0.0) | |
(defprotocol Parrot | |
(speed [this])) | |
(defrecord EuropeanParrot [] | |
Parrot | |
(speed [_] | |
base-speed)) | |
(defrecord AfricanParrot [num-coconuts] | |
Parrot | |
(speed [_] | |
(let [load-factor 9.0] | |
(max minimum-speed (- base-speed (* load-factor num-coconuts)))))) | |
(defrecord NorwegiaBlueParrot [voltage] | |
Parrot | |
(speed [_] | |
(let [maximum-speed 24.0] | |
(min maximum-speed (* voltage base-speed))))) | |
(defrecord NailedNorwegiaBlueParrot [] | |
Parrot | |
(speed [_] minimum-speed)) | |
(defn european [] | |
(->EuropeanParrot)) | |
(defn african [num-coconuts] | |
(->AfricanParrot num-coconuts)) | |
(defn norwegian-blue-parrot [voltage] | |
(->NorwegiaBlueParrot voltage)) | |
(defn nailed-norwegian-blue-parrot [] | |
(->NailedNorwegiaBlueParrot)) |
If you feel like following the refactoring process, check the baby steps in the commits. You can find the code in this GitHub repository.
- And another one using multimethods:
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
(ns parrot-refactoring.core) | |
(def ^:private base-speed 12.0) | |
(def ^:private minimum-speed 0.0) | |
(defmulti speed :type) | |
(defmethod speed :european-parrot [_] | |
base-speed) | |
(defmethod speed :african-parrot [{:keys [num-coconuts]}] | |
(let [load-factor 9.0] | |
(max minimum-speed (- base-speed (* load-factor num-coconuts))))) | |
(defmethod speed :norwegian-blue-parrot [{:keys [nailed voltage]}] | |
(let [maximum-speed 24.0] | |
(if nailed | |
minimum-speed | |
(min maximum-speed (* voltage base-speed))))) | |
(defmethod speed :default [_] | |
(throw (Exception. "Should be unreachable!"))) |
Again, check the commits of the refactoring baby steps here, if you feel like following the refactoring process. You can find the code of this second version in this GitHub repository. I'd like to thank Emily Bache for sharing this kata.
No comments:
Post a Comment