IRI.hs revision da5ff3703cc54721f3536212455d6348550057a0
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder{-# LANGUAGE CPP, DeriveDataTypeable #-}
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder{- |
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederModule : $Header$
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederCopyright : (c) DFKI GmbH 2012
98890889ffb2e8f6f722b00e265a211f13b5a861Corneliu-Claudiu ProdescuLicense : GPLv2 or higher, see LICENSE.txt
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederMaintainer : Eugen Kuksa <eugenk@informatik.uni-bremen.de>
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederStability : provisional
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederPortability : portable
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederThis module defines functions for handling IRIs. It is substantially the
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maedersame as the Network.URI module by Graham Klyne, but is extended to IRI
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maedersupport [2] and even Manchester-Syntax-IRI [3], [4] and CURIE [5].
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederFour methods are provided for parsing different
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maederkinds of IRI string (as noted in [1], [2]):
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder'parseIRI',
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder'parseIRIReference',
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder'parseRelativeReference' and
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder'parseAbsoluteIRI'.
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederAn additional method is provided for parsing an abbreviated IRI according to
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder[3], [4]: 'parseIRIManchester' and according to [5]: 'parseIRICurie'
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder
10b1417752a7cd79344892ad4dbb14831851c638Ewaryst SchulzFurther, four methods are provided for classifying different
10b1417752a7cd79344892ad4dbb14831851c638Ewaryst Schulzkinds of IRI string (as noted in [1], [2]):
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder'isIRI',
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder'isIRIReference',
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder'isRelativeReference' and
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder'isAbsoluteIRI'.
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder
0789323dfca89bae8f710da5bba20220b9af2feaChristian MaederAdditionally, classification of full, abbreviated and simple IRI is provided
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maederby 'isIRIManchester', isIRICurie.
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
248ab4f138caa9a594cd3fe0815e7fd4150701efChristian MaederThe abbreviated syntaxes [3], [4], [5] provide three different kinds of IRI.
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian MaederAn existing element of type IRI can be classified in one of those kinds.
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian MaederMost of the code has been copied from the Network.URI implementation,
248ab4f138caa9a594cd3fe0815e7fd4150701efChristian Maederbut it is extended to IRI, Manchester-syntax and CURIE.
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder
0789323dfca89bae8f710da5bba20220b9af2feaChristian MaederReferences
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder(1) <http://www.ietf.org/rfc/rfc3986.txt>
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder(2) <http://www.ietf.org/rfc/rfc3987.txt>
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
6df66a8a7be47ca0d9a4d15b89d3380c8e1f4aedEwaryst Schulz(3) <http://www.w3.org/TR/2009/NOTE-owl2-manchester-syntax-20091027/>
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
6df66a8a7be47ca0d9a4d15b89d3380c8e1f4aedEwaryst Schulz(4) <http://www.w3.org/TR/2008/REC-rdf-sparql-query-20080115/>
6df66a8a7be47ca0d9a4d15b89d3380c8e1f4aedEwaryst Schulz
6df66a8a7be47ca0d9a4d15b89d3380c8e1f4aedEwaryst Schulz(5) <http://www.w3.org/TR/curie/#s_syntax>
6df66a8a7be47ca0d9a4d15b89d3380c8e1f4aedEwaryst Schulz
6df66a8a7be47ca0d9a4d15b89d3380c8e1f4aedEwaryst Schulz-}
6df66a8a7be47ca0d9a4d15b89d3380c8e1f4aedEwaryst Schulz
6df66a8a7be47ca0d9a4d15b89d3380c8e1f4aedEwaryst Schulzmodule Common.IRI
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder (
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder -- * The IRI type
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder IRI (..)
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder , IRIAuth (..)
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder , nullIRI
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , iriType
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder -- * Conversion
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder , simpleIdToIRI
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder -- * Parsing
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , parseIRI
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , parseIRIReference
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , parseRelativeReference
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , parseAbsoluteIRI
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , parseCurie
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , parseIRICurie
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , parseIRIReferenceCurie
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder , parseIRIManchester
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder -- * Test for strings containing various kinds of IRI
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder , isIRI
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , isIRIReference
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , isRelativeReference
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , isAbsoluteIRI
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , isCurie
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , isIRICurie
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , isIRIReferenceCurie
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , isIRIManchester
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , isIPv6address
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , isIPv4address
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder -- * Relative IRIs
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , relativeTo
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , nonStrictRelativeTo
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , relativeFrom
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder -- * Operations on IRI strings
429df04296fa571432f62cbfad6855e1420e0fd6Christian Maeder
429df04296fa571432f62cbfad6855e1420e0fd6Christian Maeder {- | Support for putting strings into IRI-friendly
429df04296fa571432f62cbfad6855e1420e0fd6Christian Maeder escaped format and getting them back again. -}
429df04296fa571432f62cbfad6855e1420e0fd6Christian Maeder , iriToString
fbc1e851413f39999a00a0d3be0edf75bbf42007Ewaryst Schulz , iriToStringUnsecure
fbc1e851413f39999a00a0d3be0edf75bbf42007Ewaryst Schulz , iriToStringShort
fbc1e851413f39999a00a0d3be0edf75bbf42007Ewaryst Schulz , iriToStringShortUnsecure
fbc1e851413f39999a00a0d3be0edf75bbf42007Ewaryst Schulz , isReserved, isUnreserved
fbc1e851413f39999a00a0d3be0edf75bbf42007Ewaryst Schulz , isAllowedInIRI, isUnescapedInIRI
fbc1e851413f39999a00a0d3be0edf75bbf42007Ewaryst Schulz , escapeIRIChar
fbc1e851413f39999a00a0d3be0edf75bbf42007Ewaryst Schulz , escapeIRIString
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder , unEscapeString
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder -- * Parser combinators, special additions to export list
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , iri
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , iriReference
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , irelativeRef
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , absoluteIRI
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder , iriCurie
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , iriReferenceCurie
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , curie
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder , ncname
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , iriManchester
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder -- * IRI Normalization functions
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , expandCurie
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , normalizeCase
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , normalizeEscape
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , normalizePathSegments
14d7908303969441ba30c2748de45f20345c6b31Christian Maeder ) where
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maederimport Text.ParserCombinators.Parsec
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder ( GenParser, ParseError
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder , parse, (<|>), (<?>), try
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder , option, many, many1, count, notFollowedBy
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder , char, satisfy, oneOf, string, digit, eof
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , unexpected
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maeder )
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maeder
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maederimport Control.Monad (MonadPlus (..))
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maederimport Data.Char (ord, chr, isHexDigit, toLower, toUpper, digitToInt)
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maederimport Numeric (showIntAtBase)
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maederimport Data.Typeable (Typeable)
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maederimport Data.Map (Map, findWithDefault, empty)
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maederimport Common.Id
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maederimport Common.Lexer
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maederimport Common.Parsec
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maederimport ATerm.Lib
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder-- * The IRI datatype
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
248ab4f138caa9a594cd3fe0815e7fd4150701efChristian Maeder{- | Represents a general universal resource identifier using
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maederits component parts.
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian MaederFor example, for the (full) IRI
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder> foo://anonymous@www.haskell.org:42/ghc?query#frag
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maederor the abbreviated IRI
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maeder> prefix:abbrevPath
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maeder
10b1417752a7cd79344892ad4dbb14831851c638Ewaryst Schulzor the simple IRI
10b1417752a7cd79344892ad4dbb14831851c638Ewaryst Schulz
10b1417752a7cd79344892ad4dbb14831851c638Ewaryst Schulz> abbrevPath
e2e5830e2562de2f9a7daa31704fca25285180f0Ewaryst Schulz-}
831b0d8f47480be51d14f2cf122913507859f9c3Ewaryst Schulzdata IRI = IRI
831b0d8f47480be51d14f2cf122913507859f9c3Ewaryst Schulz { iriScheme :: String -- ^ @foo:@
831b0d8f47480be51d14f2cf122913507859f9c3Ewaryst Schulz , iriAuthority :: Maybe IRIAuth -- ^ @\/\/anonymous\@www.haskell.org:42@
831b0d8f47480be51d14f2cf122913507859f9c3Ewaryst Schulz , iriPath :: String -- ^ local part @\/ghc@
9029484754c7b2037321e7cbd077580866845265Christian Maeder , iriQuery :: String -- ^ @?query@
831b0d8f47480be51d14f2cf122913507859f9c3Ewaryst Schulz , iriFragment :: String -- ^ @#frag@
831b0d8f47480be51d14f2cf122913507859f9c3Ewaryst Schulz , prefixName :: String -- ^ @prefix@
e2e5830e2562de2f9a7daa31704fca25285180f0Ewaryst Schulz , abbrevPath :: String -- ^ @abbrevPath@
831b0d8f47480be51d14f2cf122913507859f9c3Ewaryst Schulz , iriPos :: Range -- ^ position
e2e5830e2562de2f9a7daa31704fca25285180f0Ewaryst Schulz } deriving (Typeable)
e2e5830e2562de2f9a7daa31704fca25285180f0Ewaryst Schulz
e2e5830e2562de2f9a7daa31704fca25285180f0Ewaryst Schulz-- | Type for authority value within a IRI
10b1417752a7cd79344892ad4dbb14831851c638Ewaryst Schulzdata IRIAuth = IRIAuth
10b1417752a7cd79344892ad4dbb14831851c638Ewaryst Schulz { iriUserInfo :: String -- ^ @anonymous\@@
9029484754c7b2037321e7cbd077580866845265Christian Maeder , iriRegName :: String -- ^ @www.haskell.org@
10b1417752a7cd79344892ad4dbb14831851c638Ewaryst Schulz , iriPort :: String -- ^ @:42@
10b1417752a7cd79344892ad4dbb14831851c638Ewaryst Schulz } deriving (Eq, Typeable, Ord, Show)
10b1417752a7cd79344892ad4dbb14831851c638Ewaryst Schulz
data IRIType = Full | ExpandedAbbrev | ExpandedSimple | Abbreviated | Simple
deriving (Eq, Show, Typeable, Ord)
-- | Blank IRI
nullIRI :: IRI
nullIRI = IRI
{ iriScheme = ""
, iriAuthority = Nothing
, iriPath = ""
, iriQuery = ""
, iriFragment = ""
, prefixName = ""
, abbrevPath = ""
, iriPos = nullRange
}
-- | do we have a full (possibly expanded) IRI (i.e. for comparisons)
hasFullIRI :: IRI -> Bool
hasFullIRI i = not . null $ iriScheme i ++ iriPath i
-- | do we have an abbreviated IRI (i.e. for pretty printing)
isAbbrev :: IRI -> Bool
isAbbrev i = not . null $ prefixName i ++ abbrevPath i
-- | do we have an expanded IRI with a full and an abbreviated IRI
isExpanded :: IRI -> Bool
isExpanded i = hasFullIRI i && isAbbrev i
{- | do we have a simple IRI that is a (possibly expanded) abbreviated IRI
without prefix -}
isSimple :: IRI -> Bool
isSimple i = null (prefixName i) && isAbbrev i
-- | Returns Type of an IRI
iriType :: IRI -> IRIType
iriType i =
if (not . null) $ iriPath i then (
if (null $ abbrevPath i) && (null $ prefixName i) then Full else
if null $ prefixName i then ExpandedSimple else ExpandedAbbrev
) else if null $ prefixName i then Simple else Abbreviated
{- IRI as instance of Show. Note that for security reasons, the default
behaviour is to suppress any iuserinfo field (see RFC3986, section 7.5).
This can be overridden by using iriToString directly with first
argument @id@ (noting that this returns a ShowS value rather than a string).
[[[Another design would be to embed the iuserinfo mapping function in
the IRIAuth value, with the default value suppressing iuserinfo formatting,
but providing a function to return a new IRI value with iuserinfo
data exposed by show.]]]
-}
instance Show IRI where
showsPrec _ i = iriToString defaultUserInfoMap i
-- equal iff expansion is equal or abbreviation is equal
instance Eq IRI where
(==) i j = compare i j == EQ
-- compares full/expanded IRI (if expanded) or abbreviated part if not expanded
instance Ord IRI where
compare i j = case (iriType i, iriType j) of
(Simple, Simple) -> abbrevPath i `compare` abbrevPath j
(Abbreviated, Abbreviated) ->
let pnC = prefixName i `compare` prefixName j
apC = abbrevPath i `compare` abbrevPath j
in if pnC /= EQ then pnC else apC
(Simple, _) -> compare (expandCurie empty i) j
(_, Simple) -> compare i (expandCurie empty j)
(Abbreviated, _) -> compare (expandCurie empty i) j
(_, Abbreviated) -> compare i (expandCurie empty j)
_ ->
let scC = iriScheme i `compare` iriScheme j
auC = iriAuthority i `compare` iriAuthority j
paC = iriPath i `compare` iriPath j
quC = iriQuery i `compare` iriQuery j
frC = iriFragment i `compare` iriFragment j
in if scC /= EQ then scC else
if auC /= EQ then auC else
if paC /= EQ then paC else
if quC /= EQ then quC else frC
-- |converts IRI to String of expanded form, also showing Auth info
iriToStringUnsecure :: IRI -> String
iriToStringUnsecure i = (iriToString id i) ""
-- |converts IRI to String of abbreviated form, also showing Auth info
iriToStringShortUnsecure :: IRI -> String
iriToStringShortUnsecure i = (iriToStringShort id i) ""
defaultUserInfoMap :: String -> String
defaultUserInfoMap uinf = user ++ newpass
where
(user, pass) = break (== ':') uinf
newpass = if null pass || (pass == "@")
|| (pass == ":@")
then pass
else ":...@"
instance GetRange IRI where
getRange = iriPos
-- | Converts a Simple_ID to an IRI
simpleIdToIRI :: SIMPLE_ID -> IRI
simpleIdToIRI sid = nullIRI { abbrevPath = tokStr sid
, iriPos = tokPos sid
}
-- * Parse a IRI
{- | Turn a string containing an RFC3987 IRI into an 'IRI'.
Returns 'Nothing' if the string is not a valid IRI;
(an absolute IRI with optional fragment identifier). -}
parseIRI :: String -> Maybe IRI
parseIRI = parseIRIAny iri
{- | Parse a IRI reference to an 'IRI' value.
Returns 'Nothing' if the string is not a valid IRI reference.
(an absolute or relative IRI with optional fragment identifier). -}
parseIRIReference :: String -> Maybe IRI
parseIRIReference = parseIRIAny iriReference
{- | Parse a relative IRI to an 'IRI' value.
Returns 'Nothing' if the string is not a valid relative IRI.
(a relative IRI with optional fragment identifier). -}
parseRelativeReference :: String -> Maybe IRI
parseRelativeReference = parseIRIAny irelativeRef
{- | Parse an absolute IRI to an 'IRI' value.
Returns 'Nothing' if the string is not a valid absolute IRI.
(an absolute IRI without a fragment identifier). -}
parseAbsoluteIRI :: String -> Maybe IRI
parseAbsoluteIRI = parseIRIAny absoluteIRI
-- | Turn a string containing a CURIE into an 'IRI'
parseCurie :: String -> Maybe IRI
parseCurie = parseIRIAny curie
{- | Turn a string containing an IRI or a CURIE into an 'IRI'.
Returns 'Nothing' if the string is not a valid IRI;
(an absolute IRI enclosed in '<' and '>' with optional fragment identifier
or a CURIE). -}
parseIRICurie :: String -> Maybe IRI
parseIRICurie = parseIRIAny iriCurie
{- | Parse an absolute or relative IRI enclosed in '<', '>' or a CURIE to an 'IRI' value.
Returns 'Nothing' if the string is not a valid IRI reference or CURIE. -}
parseIRIReferenceCurie :: String -> Maybe IRI
parseIRIReferenceCurie = parseIRIAny iriReferenceCurie
{- | Turn a string containing an IRI (by Manchester-syntax) into an 'IRI'.
Returns 'Nothing' if the string is not a valid IRI;
(an absolute IRI enclosed in '<' and '>' with optional fragment identifier,
an abbreviated IRI or a simple IRI). -}
parseIRIManchester :: String -> Maybe IRI
parseIRIManchester = parseIRIAny iriManchester
{- |Test if string contains a valid IRI
(an absolute IRI with optional fragment identifier). -}
isIRI :: String -> Bool
isIRI = isValidParse iri
{- | Test if string contains a valid IRI reference
(an absolute or relative IRI with optional fragment identifier). -}
isIRIReference :: String -> Bool
isIRIReference = isValidParse iriReference
{- |Test if string contains a valid relative IRI
(a relative IRI with optional fragment identifier). -}
isRelativeReference :: String -> Bool
isRelativeReference = isValidParse irelativeRef
{- | Test if string contains a valid absolute IRI
(an absolute IRI without a fragment identifier). -}
isAbsoluteIRI :: String -> Bool
isAbsoluteIRI = isValidParse absoluteIRI
{- | Test if string contains a valid IRI or CURIE
(an absolute IRI enclosed in '<' and '>' with optional fragment identifier
or a CURIE). -}
isIRICurie :: String -> Bool
isIRICurie = isValidParse iriCurie
{- | Test if string contains a valid absolute or relative IRI enclosed in '<', '>' or a CURIE -}
isIRIReferenceCurie :: String -> Bool
isIRIReferenceCurie = isValidParse iriReferenceCurie
-- | Test if string contains a valid CURIE
isCurie :: String -> Bool
isCurie = isValidParse curie
{- | Test if string contains a valid IRI by Manchester-syntax
(an absolute IRI enclosed in '<' and '>' with optional fragment identifier,
an abbreviated IRI or a simple IRI). -}
isIRIManchester :: String -> Bool
isIRIManchester = isValidParse iriManchester
-- | Test if string contains a valid IPv6 address
isIPv6address :: String -> Bool
isIPv6address = isValidParse ipv6address
-- | Test if string contains a valid IPv4 address
isIPv4address :: String -> Bool
isIPv4address = isValidParse ipv4address
-- Helper function for turning a string into a IRI
parseIRIAny :: IRIParserDirect IRI -> String -> Maybe IRI
parseIRIAny parser iristr = case parseAll parser "" iristr of
Left _ -> Nothing
Right u -> Just u
-- Helper function to test a string match to a parser
isValidParse :: IRIParserDirect a -> String -> Bool
isValidParse parser iristr = case parseAll parser "" iristr of
Left _ -> False
Right _ -> True
parseAll :: IRIParserDirect a -> String -> String -> Either ParseError a
parseAll parser = parse (parser << eof)
-- * IRI parser body based on Parsec elements and combinators
-- Parser parser type. Currently:
type IRIParserDirect a = GenParser Char () a
type IRIParser st a = GenParser Char st a
-- RFC3986, section 2.1
-- | Parse and return a 'pct-encoded' sequence
escaped :: IRIParser st String
escaped = char '%' <:> hexDigitChar <:> single hexDigitChar
-- RFC3986, section 2.2
{- | Returns 'True' if the character is a \"reserved\" character in a
IRI. To include a literal instance of one of these characters in a
component of a IRI, it must be escaped. -}
isReserved :: Char -> Bool
isReserved c = isGenDelims c || isSubDelims c
isGenDelims :: Char -> Bool
isGenDelims c = c `elem` ":/?#[]@"
isSubDelims :: Char -> Bool
isSubDelims c = c `elem` "!$&'()*+,;="
subDelims :: IRIParser st String
subDelims = single $ satisfy isSubDelims
-- RFC3986, section 2.3
{- |Returns 'True' if the character is an \"unreserved\" character in
a IRI. These characters do not need to be escaped in a IRI. The
only characters allowed in a IRI are either \"reserved\",
\"unreserved\", or an escape sequence (@%@ followed by two hex digits). -}
isUnreserved :: Char -> Bool
isUnreserved c = isAlphaNumChar c || (c `elem` "-_.~") || (isUcsChar c)
iunreservedChar :: IRIParser st String
iunreservedChar = single $ satisfy isUnreserved
iriWithPos :: IRIParser st IRI -> IRIParser st IRI
iriWithPos parser = do
p <- getPos
i <- parser
q <- getPos
return $ i {iriPos = appRange (Range [p, q]) $ iriPos i}
-- BEGIN CURIE
-- | Parses an absolute IRI enclosed in '<', '>' or a CURIE
iriCurie :: IRIParser st IRI
iriCurie = do
char '<'
i <- iri
char '>'
skipSmart
return i
<|> curie
{- | Parses an absolute or relative IRI enclosed in '<', '>' or a CURIE
see @iriReference@ -}
iriReferenceCurie :: IRIParser st IRI
iriReferenceCurie = do
char '<'
i <- iri <|> irelativeRef
char '>'
skipSmart
return i
<|> curie
-- | Parses a CURIE <http://www.w3.org/TR/rdfa-core/#s_curies>
curie :: IRIParser st IRI
curie = iriWithPos $ do
c <- string ":"
i <- reference
skipSmart
return $ i { prefixName = c }
<|> do
pn <- try (do
n <- ncname
c <- string ":"
return $ n ++ c
)
i <- reference
skipSmart
return $ i { prefixName = pn }
<|> do
r <- reference
skipSmart
return r
reference :: IRIParser st IRI
reference = iriWithPos $ do
up <- ihierPartNoAuth
uq <- option "" uiquery
uf <- option "" uifragment
return IRI
{ iriScheme = ""
, iriAuthority = Nothing
, iriPath = ""
, iriQuery = uq
, iriFragment = uf
, prefixName = ""
, abbrevPath = up
, iriPos = nullRange
}
-- | Prefix part of CURIE in @prefix_part:reference@
-- http://www.w3.org/TR/2009/REC-xml-names-20091208/#NT-NCName
ncname :: GenParser Char st String
ncname = nameStartChar <:> many nameChar
nameStartChar :: GenParser Char st Char
nameStartChar = satisfy nameStartCharP
nameChar :: GenParser Char st Char
nameChar = satisfy nameCharP
{- NOTE: Usually ':' is allowed. Here, only ncname uses nameStartChar, however.
Thus we disallow ':' -}
nameStartCharP :: Char -> Bool
nameStartCharP c =
let n = ord c in
(c == '_') || -- usually: (c `elem` ":_") ||
isAlphaChar c ||
(0x00C0 <= n && n <= 0x00D6) ||
(0x00D8 <= n && n <= 0x00F6) ||
(0x00F8 <= n && n <= 0x02FF) ||
(0x0370 <= n && n <= 0x037D) ||
(0x037F <= n && n <= 0x1FFF) ||
(0x200C <= n && n <= 0x200D) ||
(0x2070 <= n && n <= 0x218F) ||
(0x2C00 <= n && n <= 0x2FEF) ||
(0x3001 <= n && n <= 0xD7FF) ||
(0xF900 <= n && n <= 0xFDCF) ||
(0xFDF0 <= n && n <= 0xFFFD) ||
(0x10000 <= n && n <= 0xEFFFF)
nameCharP :: Char -> Bool
nameCharP c =
let n = ord c in
nameStartCharP c ||
isDigitChar c ||
c `elem` "-." ||
n == 0xB7 ||
(0x0300 <= n && n <= 0x036F) ||
(0x203F <= n && n <= 0x2040)
-- END CURIE
-- BEGIN SPARQL
{- http://www.w3.org/TR/2008/REC-rdf-sparql-query-20080115/
Section 4.1 -}
pn_chars_baseP :: Char -> Bool
pn_chars_baseP c =
let n = ord c in
isAlphaChar c ||
(0x00C0 <= n && n <= 0x00D6) ||
(0x00D8 <= n && n <= 0x00F6) ||
(0x00F8 <= n && n <= 0x02FF) ||
(0x0370 <= n && n <= 0x037D) ||
(0x037F <= n && n <= 0x1FFF) ||
(0x200C <= n && n <= 0x200D) ||
(0x2070 <= n && n <= 0x218F) ||
(0x2C00 <= n && n <= 0x2FEF) ||
(0x00D8 <= n && n <= 0x00F6) ||
(0x3001 <= n && n <= 0xD7FF) ||
(0xF900 <= n && n <= 0xFDCF) ||
(0xFDF0 <= n && n <= 0xFFFD) ||
(0x10000 <= n && n <= 0xEFFFF)
pn_chars_base :: GenParser Char st Char
pn_chars_base = satisfy pn_chars_baseP
pn_chars_u :: GenParser Char st Char
pn_chars_u = satisfy pn_chars_uP
pn_chars :: GenParser Char st Char
pn_chars = satisfy pn_charsP
pn_chars_uP :: Char -> Bool
pn_chars_uP c = (pn_chars_baseP c) || (c == '_')
pn_charsP :: Char -> Bool
pn_charsP c =
let n = ord c in
c == '-' ||
pn_chars_uP c ||
isDigitChar c ||
(n == 0x00B7) ||
(0x0300 <= n && n <= 0x036F) ||
(0x203F <= n && n <= 0x2040)
{- http://www.w3.org/TR/2009/NOTE-owl2-manchester-syntax-20091027/
section 2.1 -}
{- fullIRI := an IRI as defined in [RFC 3987], enclosed in a pair of < (U+3C)
and > (U+3E) characters
prefixName := a finite sequence of characters matching the PNAME_NS production
of [SPARQL] and not matching any of the keyword terminals of the syntax
abbreviatedIRI := a finite sequence of characters matching the PNAME_LN#
production of [SPARQL]
simpleIRI := a finite sequence of characters matching the PN_LOCAL production
of [SPARQL] and not matching any of the keyword terminals of the syntax
IRI := fullIRI | abbreviatedIRI | simpleIRI -}
iriManchester :: IRIParser st IRI
iriManchester = iriWithPos $ do
char '<'
i <- iri <|> irelativeRef
char '>'
return i
<|> do
(PName_Ln prefix loc) <- try pname_ln
return $ IRI
{ iriScheme = ""
, iriAuthority = Nothing
, iriPath = ""
, iriQuery = ""
, iriFragment = ""
, prefixName = prefix
, abbrevPath = loc
, iriPos = nullRange
}
<|> do
loc <- pn_local
return $ IRI
{ iriScheme = ""
, iriAuthority = Nothing
, iriPath = ""
, iriQuery = ""
, iriFragment = ""
, prefixName = ""
, abbrevPath = loc
, iriPos = nullRange
}
data PNAME_LN = PName_Ln PNAME_NS PN_LOCAL deriving (Show, Eq, Ord)
type PNAME_NS = String
type PN_PREFIX = String
type PN_LOCAL = String
pname_ln :: GenParser Char st PNAME_LN
pname_ln = do
ns <- pname_ns
loc <- pn_local
return $ PName_Ln ns loc
pname_ns :: GenParser Char st PNAME_NS
pname_ns = string ":" <|> pn_prefix <++> string ":"
pn_prefix :: GenParser Char st PN_PREFIX
pn_prefix = do
c1 <- pn_chars_base
t <- do
s1 <- many (pn_chars <|> char '.')
if null s1 then return Nothing else case last s1 of
'.' -> fail "Last character in prefix must not be '.'"
_ -> return $ Just s1
<|> return Nothing
case t of
Just str -> return $ c1 : str
Nothing -> return [c1]
pn_local :: GenParser Char st PN_LOCAL
pn_local = do
c1 <- pn_chars_u <|> digit
t <- do
s1 <- many (pn_chars <|> char '.')
if null s1 then return Nothing else case last s1 of
'.' -> fail "Last character in prefix must not be '.'"
_ -> return $ Just s1
<|> return Nothing
case t of
Just str -> return $ c1 : str
Nothing -> return [c1]
-- END SPARQL
-- RFC3987, section 2.2
-- IRI = scheme ":" ihier-part [ "?" iquery ] [ "#" ifragment ]
{- ihier-part = "//" iauthority ipath-abempty
/ ipath-absolute
/ ipath-rootless
/ ipath-empty -}
iri :: IRIParser st IRI
iri = iriWithPos $ do
us <- try uscheme
(ua, up) <- ihierPart
uq <- option "" uiquery
uf <- option "" uifragment
return IRI
{ iriScheme = us
, iriAuthority = ua
, iriPath = up
, iriQuery = uq
, iriFragment = uf
, prefixName = ""
, abbrevPath = ""
, iriPos = nullRange
}
ihierPart :: IRIParser st (Maybe IRIAuth, String)
ihierPart = do
try (string "//")
ua <- uiauthority
up <- ipathAbEmpty
return (ua, up)
<|> fmap (\ s -> (Nothing, s)) ihierPartNoAuth
ihierPartNoAuth :: IRIParser st String
ihierPartNoAuth = ipathAbs <|> ipathRootLess <|> return ""
-- RFC3986, section 3.1
uscheme :: IRIParser st String
uscheme = oneThenMany alphaChar (satisfy isSchemeChar) <++> string ":"
-- RFC3987, section 2.2
uiauthority :: IRIParser st (Maybe IRIAuth)
uiauthority = do
uu <- option "" (try iuserinfo)
uh <- ihost
up <- option "" port
return $ Just $ IRIAuth
{ iriUserInfo = uu
, iriRegName = uh
, iriPort = up
}
-- RFC3987, section 2.2
iuserinfo :: IRIParser st String
iuserinfo = flat (many $ uchar ";:&=+$,") <++> string "@"
-- RFC3987, section 2.2
ihost :: IRIParser st String
ihost = ipLiteral <|> try ipv4address <|> iregName
ipLiteral :: IRIParser st String
ipLiteral = char '[' <:> (ipv6address <|> ipvFuture) <++> string "]"
<?> "IP address literal"
ipvFuture :: IRIParser st String
ipvFuture = char 'v' <:> hexDigitChar <:> char '.'
<:> many1 (satisfy isIpvFutureChar)
isIpvFutureChar :: Char -> Bool
isIpvFutureChar c = isUnreserved c || isSubDelims c || c == ';'
ipv6address :: IRIParser st String
ipv6address =
try ( do
{ a2 <- count 6 h4c
; a3 <- ls32
; return $ concat a2 ++ a3
} )
<|> try ( do
{ string "::"
; a2 <- count 5 h4c
; a3 <- ls32
; return $ "::" ++ concat a2 ++ a3
} )
<|> try ( do
{ a1 <- opt_n_h4c_h4 0
; string "::"
; a2 <- count 4 h4c
; a3 <- ls32
; return $ a1 ++ "::" ++ concat a2 ++ a3
} )
<|> try ( do
{ a1 <- opt_n_h4c_h4 1
; string "::"
; a2 <- count 3 h4c
; a3 <- ls32
; return $ a1 ++ "::" ++ concat a2 ++ a3
} )
<|> try ( do
{ a1 <- opt_n_h4c_h4 2
; string "::"
; a2 <- count 2 h4c
; a3 <- ls32
; return $ a1 ++ "::" ++ concat a2 ++ a3
} )
<|> try ( do
{ a1 <- opt_n_h4c_h4 3
; string "::"
; a2 <- h4c
; a3 <- ls32
; return $ a1 ++ "::" ++ a2 ++ a3
} )
<|> try ( do
{ a1 <- opt_n_h4c_h4 4
; string "::"
; a3 <- ls32
; return $ a1 ++ "::" ++ a3
} )
<|> try ( do
{ a1 <- opt_n_h4c_h4 5
; string "::"
; a3 <- h4
; return $ a1 ++ "::" ++ a3
} )
<|> try ( do
{ a1 <- opt_n_h4c_h4 6
; string "::"
; return $ a1 ++ "::"
} )
<?> "IPv6 address"
opt_n_h4c_h4 :: Int -> IRIParser st String
opt_n_h4c_h4 n = option "" $ flat (countMinMax 0 n h4c) <++> h4
ls32 :: IRIParser st String
ls32 = try (h4c <++> h4)
<|> ipv4address
h4c :: IRIParser st String
h4c = try $ h4 <++> (string ":" << notFollowedBy (char ':'))
h4 :: IRIParser st String
h4 = countMinMax 1 4 hexDigitChar
ipv4address :: IRIParser st String
ipv4address = decOctet <++> string "."
<++> decOctet <++> string "."
<++> decOctet <++> string "."
<++> decOctet
decOctet :: IRIParser st String
decOctet = do
a1 <- countMinMax 1 3 digitChar
if (read a1 :: Int) > 255 then
fail "Decimal octet value too large"
else
return a1
iregName :: IRIParser st String
iregName =
flat (countMinMax 0 255 $ iunreservedChar <|> escaped <|> subDelims)
<?> "Registered name"
-- RFC3986, section 3.2.3
port :: IRIParser st String
port = char ':' <:> many digitChar
-- RFC3987, section 2.2
{- ipath = ipath-abempty ; begins with "/" or is empty
/ ipath-absolute ; begins with "/" but not "//"
/ ipath-noscheme ; begins with a non-colon isegment
/ ipath-rootless ; begins with a isegment
/ ipath-empty ; zero characters -}
{- ipath-abempty = *( "/" iisegment )
ipath-absolute = "/" [ iisegment-nz *( "/" iisegment ) ]
ipath-noscheme = iisegment-nz-nc *( "/" iisegment )
ipath-rootless = iisegment-nz *( "/" iisegment )
ipath-empty = 0<iipchar> -}
{- iisegment = *iipchar
iisegment-nz = 1*iipchar
iisegment-nz-nc = 1*( iunreserved / pct-encoded / sub-delims
/ "@" )
; non-zero-length isegment without any colon ":" -}
{- iipchar = iunreserved / pct-encoded / sub-delims / ":"
/ "@" -}
ipathAbEmpty :: IRIParser st String
ipathAbEmpty = flat $ many slashIsegment
ipathAbs :: IRIParser st String
ipathAbs = char '/' <:> option "" ipathRootLess
ipathRootLess :: IRIParser st String
ipathRootLess = flat $ isegmentNz <:> many slashIsegment
ipathNoScheme :: IRIParser st String
ipathNoScheme = flat $ isegmentNzc <:> many slashIsegment
slashIsegment :: IRIParser st String
slashIsegment = char '/' <:> isegment
isegment :: IRIParser st String
isegment = flat $ many ipchar
isegmentNz :: IRIParser st String
isegmentNz = flat $ many1 ipchar
isegmentNzc :: IRIParser st String
isegmentNzc = flat . many1 $ uchar "@"
ipchar :: IRIParser st String
ipchar = uchar ":@"
-- helper function for ipchar and friends
uchar :: String -> IRIParser st String
uchar extras =
iunreservedChar
<|> escaped
<|> subDelims
<|> single (oneOf extras)
-- RFC3987, section 2.2
uiquery :: IRIParser st String
uiquery = char '?' <:> flat (many iqueryPart)
iqueryPart :: IRIParser st String
iqueryPart = many1 iprivate <|> uchar ":@/?"
-- RFC3987, section 2.2
uifragment :: IRIParser st String
uifragment = char '#' <:> flat (many $ uchar ":@/?")
-- Reference, Relative and Absolute IRI forms
-- RFC3987, section 2.2
iriReference :: IRIParser st IRI
iriReference = iri <|> irelativeRef
-- RFC3987, section 2.2
-- irelative-ref = irelative-part [ "?" iquery ] [ "#" ifragment ]
{- irelative-part = "//" iauthority ipath-abempty
/ ipath-absolute -}
irelativeRef :: IRIParser st IRI
irelativeRef = iriWithPos $ do
notMatching uscheme
(ua, up) <- irelativePart
uq <- option "" uiquery
uf <- option "" uifragment
return IRI
{ iriScheme = ""
, iriAuthority = ua
, iriPath = up
, iriQuery = uq
, iriFragment = uf
, prefixName = ""
, abbrevPath = ""
, iriPos = nullRange
}
irelativePart :: IRIParser st ((Maybe IRIAuth), String)
irelativePart = do
try (string "//")
ua <- uiauthority
up <- ipathAbEmpty
return (ua, up)
<|> fmap (\ s -> (Nothing, s)) (ipathAbs <|> ipathNoScheme <|> return "")
-- RFC3987, section 2.2
absoluteIRI :: IRIParser st IRI
absoluteIRI = iriWithPos $ do
us <- uscheme
-- stuff deleted
(ua, up) <- ihierPart
uq <- option "" uiquery
return IRI
{ iriScheme = us
, iriAuthority = ua
, iriPath = up
, iriQuery = uq
, iriFragment = ""
, prefixName = ""
, abbrevPath = ""
, iriPos = nullRange
}
-- Imports from RFC 2234
{- NOTE: can't use isAlphaNum etc. because these deal with ISO 8859
(and possibly Unicode!) chars.
[[[Above was a comment originally in GHC Network/IRI.hs:
when IRIs are introduced then most codepoints above 128(?) should
be treated as unreserved, and higher codepoints for letters should
certainly be allowed.
]]] -}
isAlphaChar :: Char -> Bool
isAlphaChar c = (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')
isDigitChar :: Char -> Bool
isDigitChar c = (c >= '0' && c <= '9')
isAlphaNumChar :: Char -> Bool
isAlphaNumChar c = isAlphaChar c || isDigitChar c
isUcsChar :: Char -> Bool
isUcsChar c =
let n = ord c
in (0xA0 <= n && n <= 0xD7FF) ||
(0x20000 <= n && n <= 0x2FFFD) ||
(0x30000 <= n && n <= 0x3FFFD) ||
(0x40000 <= n && n <= 0x4FFFD) ||
(0x50000 <= n && n <= 0x5FFFD) ||
(0x60000 <= n && n <= 0x6FFFD) ||
(0x70000 <= n && n <= 0x7FFFD) ||
(0x80000 <= n && n <= 0x8FFFD) ||
(0x90000 <= n && n <= 0x9FFFD) ||
(0xA0000 <= n && n <= 0xAFFFD) ||
(0xB0000 <= n && n <= 0xBFFFD) ||
(0xC0000 <= n && n <= 0xCFFFD) ||
(0xD0000 <= n && n <= 0xDFFFD) ||
(0xE0000 <= n && n <= 0xEFFFD)
isIprivate :: Char -> Bool
isIprivate c =
let n = ord c
in (0xE000 <= n && n <= 0xF8FF) ||
(0xF000 <= n && n <= 0xFFFD) ||
(0x100000 <= n && n <= 0x10FFFD)
isHexDigitChar :: Char -> Bool
isHexDigitChar c = isHexDigit c
isSchemeChar :: Char -> Bool
isSchemeChar c = (isAlphaNumChar c) || (c `elem` "+-.")
alphaChar :: IRIParser st Char
alphaChar = satisfy isAlphaChar -- or: Parsec.letter ?
digitChar :: IRIParser st Char
digitChar = satisfy isDigitChar -- or: Parsec.digit ?
hexDigitChar :: IRIParser st Char
hexDigitChar = satisfy isHexDigitChar -- or: Parsec.hexDigit ?
iprivate :: IRIParser st Char
iprivate = satisfy isIprivate
-- Additional parser combinators for common patterns
oneThenMany :: GenParser t s a -> GenParser t s a -> GenParser t s [a]
oneThenMany p1 pr = p1 <:> many pr
countMinMax :: Int -> Int -> GenParser t s a -> GenParser t s [a]
countMinMax m n p | m > 0 = p <:> countMinMax (m - 1) (n - 1) p
countMinMax _ n _ | n <= 0 = return []
countMinMax _ n p = option [] $ p <:> countMinMax 0 (n - 1) p
notMatching :: Show a => GenParser tok st a -> GenParser tok st ()
notMatching p = do
a <- try p
unexpected (show a)
<|> return ()
-- * Reconstruct a IRI string
{- | Turn an 'IRI' into a string.
Uses a supplied function to map the iuserinfo part of the IRI.
The Show instance for IRI uses a mapping that hides any password
that may be present in the IRI. Use this function with argument @id@
to preserve the password in the formatted output. -}
iriToString :: (String -> String) -> IRI -> ShowS
iriToString iuserinfomap i@(IRI { iriScheme = scheme
, iriAuthority = authority
, iriPath = path
, iriQuery = query
, iriFragment = fragment
, prefixName = pname
, abbrevPath = aPath
}) = case iriType i of
Simple -> (aPath ++)
Abbreviated -> (pname ++) . (aPath ++)
_ -> (scheme ++) . (iriAuthToString iuserinfomap authority)
. (path ++) . (query ++) . (fragment ++)
iriToStringShort :: (String -> String) -> IRI -> ShowS
iriToStringShort iuserinfomap i@(IRI { iriScheme = scheme
, iriAuthority = authority
, iriPath = path
, iriQuery = query
, iriFragment = fragment
, prefixName = pname
, abbrevPath = aPath
}) = case iriType i of
Full -> (scheme ++) . (iriAuthToString iuserinfomap authority)
. (path ++) . (query ++) . (fragment ++)
_ -> (pname ++) . (aPath ++)
iriAuthToString :: (String -> String) -> (Maybe IRIAuth) -> ShowS
iriAuthToString _ Nothing = id -- shows ""
iriAuthToString iuserinfomap
(Just IRIAuth { iriUserInfo = uinfo
, iriRegName = regname
, iriPort = iport
} ) =
("//" ++) . (if null uinfo then id else (iuserinfomap uinfo ++))
. (regname ++)
. (iport ++)
-- * Character classes
-- | Returns 'True' if the character is allowed in a IRI.
isAllowedInIRI :: Char -> Bool
isAllowedInIRI c = isReserved c || isUnreserved c || c == '%' -- escape char
-- | Returns 'True' if the character is allowed unescaped in a IRI.
isUnescapedInIRI :: Char -> Bool
isUnescapedInIRI c = isReserved c || isUnreserved c
-- * Escape sequence handling
{- | Escape character if supplied predicate is not satisfied,
otherwise return character as singleton string. -}
escapeIRIChar :: (Char -> Bool) -> Char -> String
escapeIRIChar p c
| p c = [c]
| otherwise = '%' : myShowHex (ord c) ""
where
myShowHex :: Int -> ShowS
myShowHex n r = case showIntAtBase 16 (toChrHex) n r of
[] -> "00"
[d] -> ['0', d]
cs -> cs
toChrHex d
| d < 10 = chr (ord '0' + fromIntegral d)
| otherwise = chr (ord 'A' + fromIntegral (d - 10))
-- | Can be used to make a string valid for use in a IRI.
escapeIRIString
:: (Char -> Bool) {- ^ a predicate which returns 'False'
if the character should be escaped -}
-> String -- ^ the string to process
-> String -- ^ the resulting IRI string
escapeIRIString p s = concatMap (escapeIRIChar p) s
{- | Turns all instances of escaped characters in the string back
into literal characters. -}
unEscapeString :: String -> String
unEscapeString [] = ""
unEscapeString ('%' : x1 : x2 : s) | isHexDigit x1 && isHexDigit x2 =
chr (digitToInt x1 * 16 + digitToInt x2) : unEscapeString s
unEscapeString (c : s) = c : unEscapeString s
-- * Resolving a relative IRI relative to a base IRI
{- | Returns a new 'IRI' which represents the value of the
first 'IRI' interpreted as relative to the second 'IRI'.
For example:
> "foo" `relativeTo` "http://bar.org/" = "http://bar.org/foo"
> "http:foo" `nonStrictRelativeTo` "http://bar.org/" = "http://bar.org/foo"
Algorithm from RFC3986 [3], section 5.2.2 -}
nonStrictRelativeTo :: IRI -> IRI -> Maybe IRI
nonStrictRelativeTo ref base = relativeTo ref' base
where
ref' = if iriScheme ref == iriScheme base
then ref { iriScheme = "" }
else ref
isDefined :: ( MonadPlus m, Eq (m a) ) => m a -> Bool
isDefined a = a /= mzero
{- | Compute an absolute 'IRI' for a supplied IRI
relative to a given base. -}
relativeTo :: IRI -> IRI -> Maybe IRI
relativeTo ref base
| isDefined ( iriScheme ref ) =
just_isegments ref
| isDefined ( iriAuthority ref ) =
just_isegments ref { iriScheme = iriScheme base }
| isDefined ( iriPath ref ) =
if (head (iriPath ref) == '/') then
just_isegments ref
{ iriScheme = iriScheme base
, iriAuthority = iriAuthority base
}
else
just_isegments ref
{ iriScheme = iriScheme base
, iriAuthority = iriAuthority base
, iriPath = mergePaths base ref
}
| isDefined ( iriQuery ref ) =
just_isegments ref
{ iriScheme = iriScheme base
, iriAuthority = iriAuthority base
, iriPath = iriPath base
}
| otherwise =
just_isegments ref
{ iriScheme = iriScheme base
, iriAuthority = iriAuthority base
, iriPath = iriPath base
, iriQuery = iriQuery base
}
where
just_isegments u =
Just $ u { iriPath = removeDotSegments (iriPath u) }
mergePaths b r
| isDefined (iriAuthority b) && null pb = '/' : pr
| otherwise = dropLast pb ++ pr
where
pb = iriPath b
pr = iriPath r
dropLast = fst . splitLast -- reverse . dropWhile (/='/') . reverse
-- Remove dot isegments, but protect leading '/' character
removeDotSegments :: String -> String
removeDotSegments ('/' : ps) = '/' : elimDots ps []
removeDotSegments ps = elimDots ps []
-- Second arg accumulates isegments processed so far in reverse order
elimDots :: String -> [String] -> String
elimDots [] [] = ""
elimDots [] rs = concat (reverse rs)
elimDots ( '.' : '/' : ps) rs = elimDots ps rs
elimDots ( '.' : [] ) rs = elimDots [] rs
elimDots ( '.' : '.' : '/' : ps) rs = elimDots ps (dropHead rs)
elimDots ( '.' : '.' : [] ) rs = elimDots [] (dropHead rs)
elimDots ps rs = elimDots ps1 (r : rs)
where
(r, ps1) = nextSegment ps
-- Return tail of non-null list, otherwise return null list
dropHead :: [a] -> [a]
dropHead [] = []
dropHead (_ : rs) = rs
{- Returns the next isegment and the rest of the path from a path string.
Each isegment ends with the next '/' or the end of string. -}
nextSegment :: String -> (String, String)
nextSegment ps =
case break (== '/') ps of
(r, '/' : ps1) -> (r ++ "/", ps1)
(r, _) -> (r, [])
-- Split last (name) isegment from path, returning (path,name)
splitLast :: String -> (String, String)
splitLast path = (reverse revpath, reverse revname)
where
(revname, revpath) = break (== '/') $ reverse path
-- * Finding a IRI relative to a base IRI
{- | Returns a new 'IRI' which represents the relative location of
the first 'IRI' with respect to the second 'IRI'. Thus, the
values supplied are expected to be absolute IRIs, and the result
returned may be a relative IRI.
Example:
> "http://example.com/Root/sub1/name2#frag"
> `relativeFrom` "http://example.com/Root/sub2/name2#frag"
> == "../sub1/name2#frag"
There is no single correct implementation of this function,
but any acceptable implementation must satisfy the following:
> (uabs `relativeFrom` ubase) `relativeTo` ubase == uabs
For any valid absolute IRI.
(cf. <http://lists.w3.org/Archives/Public/iri/2003Jan/0008.html>
<http://lists.w3.org/Archives/Public/iri/2003Jan/0005.html>) -}
relativeFrom :: IRI -> IRI -> IRI
relativeFrom uabs base
| diff iriScheme uabs base = uabs
| diff iriAuthority uabs base = uabs { iriScheme = "" }
| diff iriPath uabs base = uabs
{ iriScheme = ""
, iriAuthority = Nothing
, iriPath = relPathFrom (removeBodyDotSegments $ iriPath uabs)
(removeBodyDotSegments $ iriPath base)
}
| diff iriQuery uabs base = uabs
{ iriScheme = ""
, iriAuthority = Nothing
, iriPath = ""
}
| otherwise = uabs -- Always carry fragment from uabs
{ iriScheme = ""
, iriAuthority = Nothing
, iriPath = ""
, iriQuery = ""
}
where
diff :: Eq b => (a -> b) -> a -> a -> Bool
diff sel u1 u2 = sel u1 /= sel u2
-- Remove dot isegments except the final isegment
removeBodyDotSegments p = removeDotSegments p1 ++ p2
where
(p1, p2) = splitLast p
relPathFrom :: String -> String -> String
relPathFrom [] _ = "/"
relPathFrom pabs [] = pabs
relPathFrom pabs base = -- Construct a relative path isegments
if sa1 == sb1 -- if the paths share a leading isegment
then if (sa1 == "/") -- other than a leading '/'
then if (sa2 == sb2)
then relPathFrom1 ra2 rb2
else pabs
else relPathFrom1 ra1 rb1
else pabs
where
(sa1, ra1) = nextSegment pabs
(sb1, rb1) = nextSegment base
(sa2, ra2) = nextSegment ra1
(sb2, rb2) = nextSegment rb1
{- relPathFrom1 strips off trailing names from the supplied paths,
and calls difPathFrom to find the relative path from base to
target -}
relPathFrom1 :: String -> String -> String
relPathFrom1 pabs base = relName
where
(sa, na) = splitLast pabs
(sb, nb) = splitLast base
rp = relSegsFrom sa sb
relName = if null rp then
if (na == nb) then ""
else if protect na then "./" ++ na
else na
else
rp ++ na
-- Precede name with some path if it is null or contains a ':'
protect n = null n || ':' `elem` n
{- relSegsFrom discards any common leading isegments from both paths,
then invokes difSegsFrom to calculate a relative path from the end
of the base path to the end of the target path.
The final name is handled separately, so this deals only with
"directory" segtments. -}
relSegsFrom :: String -> String -> String
relSegsFrom [] [] = "" -- paths are identical
relSegsFrom sabs base =
if sa1 == sb1
then relSegsFrom ra1 rb1
else difSegsFrom sabs base
where
(sa1, ra1) = nextSegment sabs
(sb1, rb1) = nextSegment base
{- difSegsFrom calculates a path difference from base to target,
not including the final name at the end of the path
(i.e. results always ends with '/')
This function operates under the invariant that the supplied
value of sabs is the desired path relative to the beginning of
base. Thus, when base is empty, the desired path has been found. -}
difSegsFrom :: String -> String -> String
difSegsFrom sabs "" = sabs
difSegsFrom sabs base = difSegsFrom ("../" ++ sabs) (snd $ nextSegment base)
-- * Other normalization functions
-- |Expands a CURIE to an IRI
expandCurie :: Map String IRI -> IRI -> IRI
expandCurie prefixMap c =
if iriType c == Full then c else
let i = findWithDefault nullIRI (prefixName c) prefixMap in
mergeCurie c i
{ prefixName = prefixName c
, abbrevPath = abbrevPath c
}
{- |'mergeCurie' merges the CURIE @c@ into IRI @i@, appending path and
query-part of @c@ to @i@. Also replacing fragment of @c@ with @i@
if both are not empty. -}
mergeCurie :: IRI -> IRI -> IRI
mergeCurie c i =
i { iriPath = iriPath i ++ abbrevPath c
, iriQuery = iriQuery i ++ case iriQuery c of
"" -> ""
_ : r -> '&' : r
, iriFragment = case iriFragment i of
"" -> iriFragment c
f -> f
}
{- | Case normalization; cf. RFC3986 section 6.2.2.1
NOTE: authority case normalization is not performed -}
normalizeCase :: String -> String
normalizeCase iristr = ncScheme iristr
where
ncScheme (':' : cs) = ':' : ncEscape cs
ncScheme (c : cs) | isSchemeChar c = toLower c : ncScheme cs
ncScheme _ = ncEscape iristr -- no scheme present
ncEscape ('%' : h1 : h2 : cs) =
'%' : toUpper h1 : toUpper h2 : ncEscape cs
ncEscape (c : cs) = c : ncEscape cs
ncEscape [] = []
-- | Encoding normalization; cf. RFC3986 section 6.2.2.2
normalizeEscape :: String -> String
normalizeEscape ('%' : h1 : h2 : cs)
| isHexDigit h1 && isHexDigit h2 && isUnreserved escval =
escval : normalizeEscape cs
where
escval = chr (digitToInt h1 * 16 + digitToInt h2)
normalizeEscape (c : cs) = c : normalizeEscape cs
normalizeEscape [] = []
-- | Path isegment normalization; cf. RFC3986 section 6.2.2.4
normalizePathSegments :: String -> String
normalizePathSegments iristr = normstr jiri
where
jiri = parseIRI iristr
normstr Nothing = iristr
normstr (Just u) = show (normiri u)
normiri u = u { iriPath = removeDotSegments (iriPath u) }
-- FIX: where do the instances fit the best?
instance ShATermConvertible IRI where
toShATermAux att0 u = do
(att1, is) <- toShATerm' att0 ((iriToString id u) "")
return $ addATerm (ShAAppl "IRI" [is] []) att1
fromShATermAux ix att0 =
case getShATerm ix att0 of
x@(ShAAppl "IRI" [is] _) ->
case fromShATerm' is att0 of
(att1, is') ->
case parseIRICurie is' of
Nothing ->
case parseIRIReference is' of
Nothing -> fromShATermError "IRI" x
Just i -> (att1, i)
Just i -> (att1, i)
i -> fromShATermError "IRI" i