Refactor data processing and message formatting

Updated the JSON data structure for better readability and added more comprehensive output formatting in the main function. Utilized a single 'output' string to accumulate messages, improving code readability and efficiency.
This commit is contained in:
Winni Neessen 2024-09-01 17:05:11 +02:00
parent ab747282c8
commit bdd7efec82
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -56,25 +56,36 @@ type JSONType struct {
} }
func main() { func main() {
data := []byte(`{"string":"test", "int":123, "int64": 12345678901234, "float64":0, "nil":null, "bool":true}`) data := []byte(`{
"bytes": "Ynl0ZXM=",
"bool": true,
"float32": null,
"float64":0,
"int": 123,
"int64": 12345678901234,
"nilvalue": null,
"string":"test"
}`)
var example JSONType var example JSONType
if err := json.Unmarshal(data, &example); err != nil { var output string
fmt.Println("failed to unmarshal JSON:", err) if err := json.Unmarshal(data, &example); err != nil {
os.Exit(1) fmt.Println("failed to unmarshal JSON:", err)
} os.Exit(1)
}
if example.Bool.NotNil() { if example.Bool.NotNil() {
fmt.Printf("Bool is: %t\n", example.Bool.Value()) output += fmt.Sprintf("Bool is: %t, ", example.Bool.Value())
} }
if example.Float64.IsNil() { if example.Float32.IsNil() {
fmt.Println("Float 32 is NIL") output += "Float 32 is nil, "
} }
if example.Float64.NotNil() { if example.Float64.NotNil() {
fmt.Printf("Float is: %f\n", example.Float64.Value()) output += fmt.Sprintf("Float 64 is: %f, ", example.Float64.Value())
} }
if !example.String.IsNil() { if example.String.NotNil() {
fmt.Printf("String is: %s\n", example.String.Value()) output += fmt.Sprintf("String is: %s", example.String.Value())
} }
fmt.Println(output)
} }
``` ```