Implement comprehensive weather parsing capabilities following Clean Architecture principles with composite parser pattern for routing between aviation and weather messages. ## Features Added - Weather report parsing (METAR, SPECI, TAF) - Composite parser pattern for message routing - Lenient parsing with warnings for unrecognized tokens - Support for PROB and RMK sections in TAF - Rich domain modeling with typed weather elements ## Architecture **Domain Layer** (internal/domain/weather/): - WeatherMessage interface with Metar and Taf implementations - Weather elements: Wind, Visibility, Cloud, Temperature, Altimeter, Phenomenon - Domain errors: ErrInvalidFormat, ErrMissingStation, ErrMissingTime **Port Layer** (internal/port/weather_parser.go): - WeatherParser interface with CanParse and Parse methods **Adapter Layer** (internal/adapter/parser/weather/): - WeatherParserImpl with classification and parsing logic - Comprehensive regex patterns for weather elements - METAR/SPECI parser with element extraction - TAF parser with period handling (FM, TEMPO, BECMG, PROB) - Helper functions for time parsing and unit conversions **Composite Parser** (internal/adapter/parser/composite.go): - Routes weather reports to weather parser - Falls back to aviation parser for telegrams - Converts WeatherMessage to ParsedTelegram format ## Integration - Updated ProvideParser to create composite parser with weather parser - Added weather parser to Wire DI configuration - Updated processor_bench_test.go for weather parser integration - Documentation added in docs/weather-parser.md ## Testing - 29 comprehensive tests for weather parsing (all passing) - Tests for classification, METAR, SPECI, TAF, and composite routing - Benchmark compatibility maintained ## Fixes Applied - TAF PROB parsing: Include PROB/RMK in special section detection - Composite test: Updated to use properly formatted AFTN telegram - Linter issues: Switch statement refactor, removed unused patterns - Ineffective break statement fixed in TAF parser ## Coverage ~1,743 lines of new code with: - Complete METAR/SPECI parsing - TAF parsing with period support - Lenient error handling with warnings - Unit conversions and time utilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
45 lines
996 B
Go
45 lines
996 B
Go
package weather
|
|
|
|
import (
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
var (
|
|
// metarPattern matches METAR or SPECI at the start followed by station code
|
|
metarPattern = regexp.MustCompile(`^(METAR|SPECI)\s+[A-Z0-9]{4}`)
|
|
// tafPattern matches TAF at the start followed by station code
|
|
tafPattern = regexp.MustCompile(`^TAF\s+[A-Z0-9]{4}`)
|
|
)
|
|
|
|
// Classify identifies the weather report type from raw text
|
|
// Returns the report type (METAR, SPECI, or TAF) and true if it's a weather report
|
|
func Classify(raw string) (string, bool) {
|
|
raw = strings.TrimSpace(raw)
|
|
if raw == "" {
|
|
return "", false
|
|
}
|
|
|
|
// Check for METAR/SPECI
|
|
if metarPattern.MatchString(raw) {
|
|
if strings.HasPrefix(raw, "SPECI") {
|
|
return "SPECI", true
|
|
}
|
|
return "METAR", true
|
|
}
|
|
|
|
// Check for TAF
|
|
if tafPattern.MatchString(raw) {
|
|
return "TAF", true
|
|
}
|
|
|
|
return "", false
|
|
}
|
|
|
|
// HasValidEnding checks if the report ends with '='
|
|
func HasValidEnding(raw string) bool {
|
|
raw = strings.TrimSpace(raw)
|
|
return strings.HasSuffix(raw, "=")
|
|
}
|
|
|