DEV Community

Cover image for Creating Safe Custom Types with Validation in Go
Rafael Mori
Rafael Mori

Posted on

Creating Safe Custom Types with Validation in Go

Introduction

In Go programming, creating custom types with validation is paramount for ensuring data integrity and security. This article explores a code structure that exemplifies the creation of a custom type, incorporating robust validation and adhering to best practices for safety and compliance.

Code Structure

Let's break down the essential components:

  1. Necessary Imports:
import (
        "fmt"
        "strings"
)
Enter fullscreen mode Exit fullscreen mode
  1. Custom Type Definition:
type Example string
Enter fullscreen mode Exit fullscreen mode

We define a custom type Example as a string, providing a clear and concise representation of the data.

  1. Constants and Allowed Options:
const (
        ArgumentA = "value_a"
        ArgumentB = "value_b"
)

var AllowedOptions = []string{string(ArgumentA), string(ArgumentB)}
Enter fullscreen mode Exit fullscreen mode

We define constants for allowed values and store them in a slice for easy reference and management.

  1. Methods for the Example Type:
  • String(): Returns the string representation of the Example value.
func (f Example) String() string {
        return string(f)
}
Enter fullscreen mode Exit fullscreen mode
  • Type(): Returns the name of the type.
func (f *Example) Type() string {
        return "Example"
}
Enter fullscreen mode Exit fullscreen mode
  • Set(): Validates the input value and sets the Example value if valid.
func (f *Example) Set(value string) error {
        for _, exampleOption := range AllowedOptions {
                if exampleOption == value {
                        *f = Example(value)
                        return nil
                }
        }
        return fmt.Errorf("allowed values: %s", strings.Join(AllowedOptions, ", "))
}
Enter fullscreen mode Exit fullscreen mode

Advantages of Using Custom Types with Validation

  • Enhanced Data Security: By rigorously validating input, we prevent invalid or malicious data from entering the system, bolstering overall security.
  • Improved Compliance: Adhering to validation rules helps ensure compliance with relevant standards like GDPR or HIPAA.
  • Increased Code Maintainability: Custom types promote modularity and make code easier to maintain and extend.
  • Enhanced Type Safety: Go's type system provides compile-time checks, minimizing runtime errors and improving code quality.
  • Improved Code Readability: Custom types make code more self-documenting, enhancing understanding and collaboration.

Conclusion

Employing custom types with validation in Go is a best practice for developing robust, secure, and maintainable applications. This approach is particularly valuable in scenarios demanding high data integrity, such as financial systems or healthcare applications.

Additional Considerations

  • Thorough Testing: Rigorous testing of custom types, especially the Set method, is crucial to ensure validation works as expected.
  • Meaningful Error Handling: Provide informative error messages to aid in debugging and troubleshooting.
  • Contextual Adaptation: Tailor validation logic to specific use cases, such as command-line arguments or configuration file parsing.

By embracing custom types with validation, you can significantly enhance the quality, security, and reliability of your Go applications.

Complete Code Example:

package main

// Package flags provides custom flag types for the git command.
import (
    "fmt"
    "strings"
)

// Example is a custom type that implements the flag.Value interface.
type Example string

// Example values.
const (
    ArgumentA = "value_a"
    ArgumentB = "value_b"
)

// AllowedOptions is a list of allowed values for the Example type.
var AllowedOptions = []string{string(ArgumentA), string(ArgumentB)}

// String returns the string representation of the Example type.
func (f Example) String() string {
    // Return the string representation of the Example type.
    return string(f)
}

// Type returns the type name of the Example type.
func (f *Example) Type() string {
    // Return the type name.
    return "Example"
}

// Set validates and sets the value for the Example type.
// It returns an error if the value is not allowed.
func (f *Example) Set(value string) error {
    // Check if the value is allowed.
    for _, exampleOption := range AllowedOptions {
        // If the value is allowed, set it and return nil.
        if exampleOption == value {
            // Set the value.
            *f = Example(value)
            return nil
        }
    }

    // If the value is not allowed, return an error.
    return fmt.Errorf("allowed values: %s", strings.Join(AllowedOptions, ", "))
}

func main() {
        // Example usage:
        var myExample Example
        err := myExample.Set("value_a")
        if err != nil {
                fmt.Println(err)
        } else {
                fmt.Println("Set value:", myExample)
        }
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)