text-conversions-0.3.0: Safe conversions between textual types

Safe HaskellNone
LanguageHaskell2010

Data.Text.Conversions

Description

This module provides a set of typeclasses for safely converting between textual data. The built-in String type, as well as strict Text and lazy Text, are safely convertible between one another. The ByteString type is frequently treated in much the same manner, but this is unsafe for two reasons:

  • Since ByteString encodes binary data, it does not specify a particular encoding, so assuming a particular encoding like UTF-8 would be incorrect.
  • Furthermore, decoding binary data into text given a particular encoding can fail. Most systems simply use decodeUtf8 and similar functions, which will dangerously throw exceptions when given invalid data.

This module addresses both problems by providing a DecodeText typeclass for decoding binary data in a way that can fail and by providing a UTF8 wrapper type for selecting the desired encoding.

Most of the time, you will not need to create your own instances or use the underlying functions that make the conversion machinery tick. Instead, just use the convertText method to convert between two textual datatypes or the decodeConvertText method to perform a conversion that can fail.

Examples:

>>> convertText ("hello" :: String) :: Text
"hello"
>>> decodeConvertText (UTF8 ("hello" :: ByteString)) :: Maybe Text
Just "hello"
>>> decodeConvertText (UTF8 ("\xc3\x28" :: ByteString)) :: Maybe Text
Nothing

Synopsis

Documentation

newtype Base16 a #

Wrapper type used to select a base 16 encoding when encoding or decoding binary data. Safe because base 16 encoding will always produce ASCII output.

Constructors

Base16 

Fields

Instances

Functor Base16 # 

Methods

fmap :: (a -> b) -> Base16 a -> Base16 b #

(<$) :: a -> Base16 b -> Base16 a #

Eq a => Eq (Base16 a) # 

Methods

(==) :: Base16 a -> Base16 a -> Bool #

(/=) :: Base16 a -> Base16 a -> Bool #

Show a => Show (Base16 a) # 

Methods

showsPrec :: Int -> Base16 a -> ShowS #

show :: Base16 a -> String #

showList :: [Base16 a] -> ShowS #

FromText (Maybe (Base16 ByteString)) # 
FromText (Maybe (Base16 ByteString)) # 
ToText (Base16 ByteString) # 
ToText (Base16 ByteString) # 

newtype Base64 a #

Wrapper type used to select a base 64 encoding when encoding or decoding binary data. Safe because base 64 encoding will always produce ASCII output.

Constructors

Base64 

Fields

Instances

Functor Base64 # 

Methods

fmap :: (a -> b) -> Base64 a -> Base64 b #

(<$) :: a -> Base64 b -> Base64 a #

Eq a => Eq (Base64 a) # 

Methods

(==) :: Base64 a -> Base64 a -> Bool #

(/=) :: Base64 a -> Base64 a -> Bool #

Show a => Show (Base64 a) # 

Methods

showsPrec :: Int -> Base64 a -> ShowS #

show :: Base64 a -> String #

showList :: [Base64 a] -> ShowS #

FromText (Maybe (Base64 ByteString)) # 
FromText (Maybe (Base64 ByteString)) # 
ToText (Base64 ByteString) # 
ToText (Base64 ByteString) # 

class Functor f => DecodeText f a where #

A simple typeclass that handles converting arbitrary datatypes to Text when the operation can fail. If you have a type that satisfies that requirement, implement this typeclass, but if the operation cannot fail, use ToText instead.

Minimal complete definition

decodeText

Methods

decodeText :: a -> f Text #

class FromText a where #

A simple typeclass that handles converting Text to arbitrary datatypes. If you have a type that can be produced from text, implement this typeclass, not ConvertText. However, you probably do not want to call fromText directly; call convertText, instead.

Minimal complete definition

fromText

Methods

fromText :: Text -> a #

class ToText a where #

A simple typeclass that handles converting arbitrary datatypes to Text when the operation cannot fail. If you have a type that satisfies that requirement, implement this typeclass, but if the operation can fail, use DecodeText instead.

Minimal complete definition

toText

Methods

toText :: a -> Text #

newtype UTF8 a #

Simple wrapper type that is used to select a desired encoding when encoding or decoding text from binary data, such as ByteStrings.

Constructors

UTF8 

Fields

Instances

Functor UTF8 # 

Methods

fmap :: (a -> b) -> UTF8 a -> UTF8 b #

(<$) :: a -> UTF8 b -> UTF8 a #

DecodeText Maybe (UTF8 ByteString) # 
DecodeText Maybe (UTF8 ByteString) # 
Eq a => Eq (UTF8 a) # 

Methods

(==) :: UTF8 a -> UTF8 a -> Bool #

(/=) :: UTF8 a -> UTF8 a -> Bool #

Show a => Show (UTF8 a) # 

Methods

showsPrec :: Int -> UTF8 a -> ShowS #

show :: UTF8 a -> String #

showList :: [UTF8 a] -> ShowS #

FromText (UTF8 ByteString) # 
FromText (UTF8 ByteString) # 

convertText :: (ToText a, FromText b) => a -> b #

A function that provides a way to safely convert between arbitrary textual datatypes where the conversion to text cannot fail.

>>> convertText ("hello" :: String) :: Text
"hello"

decodeConvertText :: (DecodeText f a, FromText b) => a -> f b #

A function that provides a way to safely convert between arbitrary textual datatypes where the conversion to text can fail, such as decoding binary data to text. Since binary data can represent text in many different potential encodings, it is necessary to use a newtype that picks the particular encoding, like UTF8:

>>> convertText (UTF8 ("hello" :: ByteString)) :: Maybe Text
Just "hello"