diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-01-22 17:35:45 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-01-22 17:35:45 -0500 |
| commit | 2a14395beedc4b3cef74dd7d8b44f14bb8a7ac79 (patch) | |
| tree | 4216df7bc1ae2404c3fef879987eab50bbe89260 /volume.go | |
| parent | 4f6384f449b50a95255837b1fc394b4ebe14caaf (diff) | |
| parent | 9ad538983290fbd62da7f8d6db5a6dfe123a25c3 (diff) | |
| download | volute-2a14395beedc4b3cef74dd7d8b44f14bb8a7ac79.zip | |
merge backend refactoring from main
Diffstat (limited to 'volume.go')
| -rw-r--r-- | volume.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/volume.go b/volume.go new file mode 100644 index 0000000..6f5fb31 --- /dev/null +++ b/volume.go @@ -0,0 +1,33 @@ +package main + +import ( + "errors" + "fmt" +) + +type Volume float32 + +const ( + CubicCentimetre Volume = 1 + Litre Volume = 1_000 + CubicMetre Volume = 1_000_000 + CubicInch Volume = 16.38706 +) + +var VolumeUnits = []string{"cc", "L", "m³", "in³"} + +func ParseVolumeUnit(s string) (Volume, error) { + // Each case corresponds to a value in VolumeUnits. + switch s { + case "cc": + return CubicCentimetre, nil + case "L": + return Litre, nil + case "m³": + return CubicMetre, nil + case "in³": + return CubicInch, nil + default: + return *new(Volume), errors.New(fmt.Sprintf("invalid volume unit: '%s'", s)) + } +} |