IRI.hs revision 5ce020a9257f3aa096a3c8f9cce4eb61d2741011
1a38107941725211e7c3f051f7a8f5e12199f03acmaeder{- |
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederModule : $Header$
e9458b1a7a19a63aa4c179f9ab20f4d50681c168Jens ElknerCopyright : (c) DFKI GmbH 2012
46c318705d1532d90572abf9ee869016583d985bTill MossakowskiLicense : GPLv2 or higher, see LICENSE.txt
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder
98890889ffb2e8f6f722b00e265a211f13b5a861Corneliu-Claudiu ProdescuMaintainer : 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
46c318705d1532d90572abf9ee869016583d985bTill Mossakowskisame as the Network.URI module by Graham Klyne, but is extended to IRI
46c318705d1532d90572abf9ee869016583d985bTill Mossakowskisupport [2] and even Manchester-Syntax-IRI [3], [4] and CURIE [5].
46c318705d1532d90572abf9ee869016583d985bTill Mossakowski
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederFour methods are provided for parsing different
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maederkinds of IRI string (as noted in [1], [2]):
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian Maeder'parseIRI',
a389e88e0acb83d8489bdc5e55bc5522b152bbecEugen Kuksa'parseIRIReference',
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian Maeder'parseRelativeReference' and
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian Maeder'parseAbsoluteIRI'.
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian Maeder
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian MaederAn additional method is provided for parsing an abbreviated IRI according to
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian Maeder[3], [4]: 'parseIRIManchester' and according to [5]: 'parseIRICurie'
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian Maeder
11c3a215d5cf043181e83929f1ce214df65cb587Christian MaederFurther, four methods are provided for classifying different
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian Maederkinds of IRI string (as noted in [1], [2]):
002961cfb5c53204887101239d2a47c83d596585Christian Maeder'isIRI',
9f7cd2db42cbc88253af8034f8d1fb83e1ecd4cdChristian Maeder'isIRIReference',
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian Maeder'isRelativeReference' and
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian Maeder'isAbsoluteIRI'.
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian Maeder
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaederAdditionally, classification of full, abbreviated and simple IRI is provided
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaederby 'isIRIManchester', isIRICurie.
4f3a84cb1b7e55ce38df8f4ac71d06b574b23cb1mscodescu
33f5512f0538c5ec4141205a8440ff6ba9e96139Christian MaederThe abbreviated syntaxes [3], [4], [5] provide three different kinds of IRI.
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederAn existing element of type IRI can be classified in one of those kinds.
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederMost of the code has been copied from the Network.URI implementation,
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maederbut it is extended to IRI, Manchester-syntax and CURIE.
db6729e623b4053149084ccf4b35e5308ac7e359Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian MaederReferences
b1f2971b105e6da3f4722315e0a0e2abef96e66fcmaeder
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder(1) <http://www.ietf.org/rfc/rfc3986.txt>
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder
8acac20a235839e60ea2d43709fce47de1c68bc1Christian Maeder(2) <http://www.ietf.org/rfc/rfc3987.txt>
1a38107941725211e7c3f051f7a8f5e12199f03acmaeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder(3) <http://www.w3.org/TR/2009/NOTE-owl2-manchester-syntax-20091027/>
db6729e623b4053149084ccf4b35e5308ac7e359Christian Maeder
a43c1a7fa08c12524415386aa13a566cc9e53a4fChristian Maeder(4) <http://www.w3.org/TR/2008/REC-rdf-sparql-query-20080115/>
8acac20a235839e60ea2d43709fce47de1c68bc1Christian Maeder
8acac20a235839e60ea2d43709fce47de1c68bc1Christian Maeder(5) <http://www.w3.org/TR/rdfa-core/#s_curies>
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder-}
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maedermodule Common.IRI
720eeee7c9d8442093c8d05bed743193eee906e0Christian Maeder (
720eeee7c9d8442093c8d05bed743193eee906e0Christian Maeder -- * The IRI type
720eeee7c9d8442093c8d05bed743193eee906e0Christian Maeder IRI (..)
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder , IRIAuth (..)
720eeee7c9d8442093c8d05bed743193eee906e0Christian Maeder , PNameLn(..)
720eeee7c9d8442093c8d05bed743193eee906e0Christian Maeder , nullIRI
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder , hasFullIRI
720eeee7c9d8442093c8d05bed743193eee906e0Christian Maeder , isAbbrev
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder , isSimple
248ab4f138caa9a594cd3fe0815e7fd4150701efChristian Maeder , isExpanded
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder -- * Conversion
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder , simpleIdToIRI
0789323dfca89bae8f710da5bba20220b9af2feaChristian Maeder
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder -- * Parsing
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder , parseIRI
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder , parseIRIReference
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder , parseRelativeReference
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder , parseAbsoluteIRI
5dc46f6d0fdd8747d730f9e79a93978145ed43bbChristian Maeder , parseCurie
720eeee7c9d8442093c8d05bed743193eee906e0Christian Maeder , parseIRICurie
720eeee7c9d8442093c8d05bed743193eee906e0Christian Maeder , parseIRIReferenceCurie
11c3a215d5cf043181e83929f1ce214df65cb587Christian Maeder , parseIRIManchester
720eeee7c9d8442093c8d05bed743193eee906e0Christian Maeder
92dc581bf568c9e225aa9d0570ab0a4b6ebdab69Christian Maeder -- * Test for strings containing various kinds of IRI
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , isIRI
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , isIRIReference
db6729e623b4053149084ccf4b35e5308ac7e359Christian Maeder , isRelativeReference
db6729e623b4053149084ccf4b35e5308ac7e359Christian Maeder , isAbsoluteIRI
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder , isCurie
db6729e623b4053149084ccf4b35e5308ac7e359Christian Maeder , isIRICurie
1a38107941725211e7c3f051f7a8f5e12199f03acmaeder , isIRIReferenceCurie
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , isIRIManchester
002961cfb5c53204887101239d2a47c83d596585Christian Maeder , isIPv6address
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder , isIPv4address
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder -- * Relative IRIs
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder , relativeTo
002961cfb5c53204887101239d2a47c83d596585Christian Maeder , nonStrictRelativeTo
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , relativeFrom
002961cfb5c53204887101239d2a47c83d596585Christian Maeder
b7bba589fb78fe61379de93d531556c00da36cd9Christian Maeder -- * Operations on IRI strings
dc62afbf79603699b39b2387f48298634f642e67cmaeder
002961cfb5c53204887101239d2a47c83d596585Christian Maeder {- | Support for putting strings into IRI-friendly
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder escaped format and getting them back again. -}
002961cfb5c53204887101239d2a47c83d596585Christian Maeder , iriToString
11c3a215d5cf043181e83929f1ce214df65cb587Christian Maeder , iriToStringUnsecure
dc62afbf79603699b39b2387f48298634f642e67cmaeder , iriToStringShort
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder , iriToStringShortUnsecure
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder , iriToStringFullUnsecure
9f7cd2db42cbc88253af8034f8d1fb83e1ecd4cdChristian Maeder , isReserved, isUnreserved
01ddc4cad68fa84b4e9dd41089ad876329bae5b0Christian Maeder , isAllowedInIRI, isUnescapedInIRI
9f7cd2db42cbc88253af8034f8d1fb83e1ecd4cdChristian Maeder , escapeIRIChar
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder , escapeIRIString
1596a4d2cc01bff500afdd3789a43ec93210e81fChristian Maeder , unEscapeString
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder -- * Parser combinators, special additions to export list
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder , iri
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder , iriReference
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder , irelativeRef
429df04296fa571432f62cbfad6855e1420e0fd6Christian Maeder , absoluteIRI
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder , iriCurie
11c3a215d5cf043181e83929f1ce214df65cb587Christian Maeder , iriReferenceCurie
01ddc4cad68fa84b4e9dd41089ad876329bae5b0Christian Maeder , curie
11c3a215d5cf043181e83929f1ce214df65cb587Christian Maeder , ncname
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaeder , iriManchester
fbc1e851413f39999a00a0d3be0edf75bbf42007Ewaryst Schulz
db6729e623b4053149084ccf4b35e5308ac7e359Christian Maeder -- * IRI Normalization functions
fbc1e851413f39999a00a0d3be0edf75bbf42007Ewaryst Schulz , expandCurie
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder , normalizeCase
1a38107941725211e7c3f051f7a8f5e12199f03acmaeder , normalizeEscape
1a38107941725211e7c3f051f7a8f5e12199f03acmaeder , normalizePathSegments
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder ) where
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder
ab53b2d1773ac020b0df4cc9edeb0debe12e7a09cmaederimport Text.ParserCombinators.Parsec
14d7908303969441ba30c2748de45f20345c6b31Christian Maeder ( GenParser, ParseError
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder , parse, (<|>), (<?>), try
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maeder , option, many, many1
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder , char, satisfy, oneOf, string, digit, eof
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder , unexpected
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder )
b410420153cc9ac37fb4ebb86699cba7fa19bc35Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maederimport Control.Monad (MonadPlus (..))
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maederimport Data.Char (ord, chr, isHexDigit, toLower, toUpper, digitToInt)
db6729e623b4053149084ccf4b35e5308ac7e359Christian Maederimport Numeric (showIntAtBase)
db6729e623b4053149084ccf4b35e5308ac7e359Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maederimport Data.Ord (comparing)
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maederimport Data.Map as Map (Map, lookup)
248ab4f138caa9a594cd3fe0815e7fd4150701efChristian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maederimport Common.Id
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maederimport Common.Lexer
a43c1a7fa08c12524415386aa13a566cc9e53a4fChristian Maederimport Common.Parsec
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder
e49fd57c63845c7806860a9736ad09f6d44dbaedChristian Maeder-- * The IRI datatype
54a535fb81b928ac8f99a11bdcfa8998533204a5Christian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder{- | Represents a general universal resource identifier using
8acac20a235839e60ea2d43709fce47de1c68bc1Christian Maederits component parts.
8acac20a235839e60ea2d43709fce47de1c68bc1Christian Maeder
8acac20a235839e60ea2d43709fce47de1c68bc1Christian MaederFor example, for the (full) IRI
8acac20a235839e60ea2d43709fce47de1c68bc1Christian Maeder
8acac20a235839e60ea2d43709fce47de1c68bc1Christian Maeder> foo://anonymous@www.haskell.org:42/ghc?query#frag
8acac20a235839e60ea2d43709fce47de1c68bc1Christian Maeder
8acac20a235839e60ea2d43709fce47de1c68bc1Christian Maederor the abbreviated IRI
8acac20a235839e60ea2d43709fce47de1c68bc1Christian Maeder
> prefix:abbrevPath
or the simple IRI
> abbrevPath
-}
data IRI = IRI
{ iriScheme :: String -- ^ @foo:@
, iriAuthority :: Maybe IRIAuth -- ^ @\/\/anonymous\@www.haskell.org:42@
, iriPath :: String -- ^ local part @\/ghc@
, iriQuery :: String -- ^ @?query@
, iriFragment :: String -- ^ @#frag@
, prefixName :: String -- ^ @prefix@
, abbrevPath :: String -- ^ @abbrevPath@
, iriPos :: Range -- ^ position
}
-- | Type for authority value within a IRI
data IRIAuth = IRIAuth
{ iriUserInfo :: String -- ^ @anonymous\@@
, iriRegName :: String -- ^ @www.haskell.org@
, iriPort :: String -- ^ @:42@
} deriving (Eq, Ord, Show)
-- | 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
{- 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 _ = iriToString defaultUserInfoMap
-- 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 k = case (hasFullIRI i, hasFullIRI k) of
(True, True) -> comparing (\ j ->
(iriScheme j, iriAuthority j, iriPath j,
iriQuery j, iriFragment j)) i k
(False, False) -> comparing
(\ j -> (prefixName j, abbrevPath j, iriQuery j, iriFragment j)) i k
(b1, b2) -> compare b1 b2
-- |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 ""
-- |converts IRI to String of full/expanded form, also showing Auth info, no enclosing brackets
iriToStringFullUnsecure :: IRI -> String
iriToStringFullUnsecure i = iriToStringFull id i ""
defaultUserInfoMap :: String -> String
defaultUserInfoMap uinf = user ++ newpass
where
(user, pass) = break (== ':') uinf
newpass = if null pass || pass `elem` ["@", ":@"]
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 << eof) "" 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 = brackets iri <|> curie
{- | Parses an absolute or relative IRI enclosed in '<', '>' or a CURIE
see @iriReference@ -}
iriReferenceCurie :: IRIParser st IRI
iriReferenceCurie = brackets (iri <|> irelativeRef) <|> curie
brackets :: IRIParser st IRI -> IRIParser st IRI
brackets p = char '<' >> p << char '>' << skipSmart
-- | 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 -}
pnCharsBaseP :: Char -> Bool
pnCharsBaseP 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)
pnCharsBase :: GenParser Char st Char
pnCharsBase = satisfy pnCharsBaseP
pnCharsU :: GenParser Char st Char
pnCharsU = satisfy pnCharsUP
pnChars :: GenParser Char st Char
pnChars = satisfy pnCharsP
pnCharsUP :: Char -> Bool
pnCharsUP c = pnCharsBaseP c || c == '_'
pnCharsP :: Char -> Bool
pnCharsP c =
let n = ord c in
c == '-' ||
pnCharsUP 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
(PNameLn prefix loc) <- try pnameLn
return IRI
{ iriScheme = ""
, iriAuthority = Nothing
, iriPath = ""
, iriQuery = ""
, iriFragment = ""
, prefixName = prefix
, abbrevPath = loc
, iriPos = nullRange
}
<|> do
loc <- pnLocal
return IRI
{ iriScheme = ""
, iriAuthority = Nothing
, iriPath = ""
, iriQuery = ""
, iriFragment = ""
, prefixName = ""
, abbrevPath = loc
, iriPos = nullRange
}
data PNameLn = PNameLn PNameNs PnLocal deriving (Show, Eq, Ord)
type PNameNs = String
type PnPrefix = String
type PnLocal = String
pnameLn :: GenParser Char st PNameLn
pnameLn = do
ns <- pnameNs
loc <- pnLocal
return $ PNameLn ns loc
pnameNs :: GenParser Char st PNameNs
pnameNs = string ":" <|> pnPrefix <++> string ":"
pnPrefix :: GenParser Char st PnPrefix
pnPrefix = do
c1 <- pnCharsBase
t <- do
s1 <- many (pnChars <|> 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]
pnLocal :: GenParser Char st PnLocal
pnLocal = do
c1 <- pnCharsU <|> digit
t <- do
s1 <- many (pnChars <|> oneOf "./'")
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
}
ihierOrIrelativePart :: IRIParser st (Maybe IRIAuth, String)
ihierOrIrelativePart = do
try (string "//")
ua <- uiauthority
up <- ipathAbEmpty
return (ua, up)
ihierPart :: IRIParser st (Maybe IRIAuth, String)
ihierPart = ihierOrIrelativePart
<|> 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 = do
hs <- countMinMax 0 7 h4c
fmap (concat hs ++) $ case length hs of
7 -> h4 <|> string ":"
6 -> ipv4address <|> char ':' <:> (h4 <|> return "")
0 -> string "::" <++> ipv6rest 7
n -> char ':' <:> ipv6rest (7 - n)
<?> "IPv6 address"
ipv6rest :: Int -> IRIParser st String
ipv6rest m = do
fs <- countMinMax 0 (m - 1) h4c
fmap (concat fs ++) $ if null fs then
ipv4address <|> h4 <|> return ""
else if length fs == m - 1 then h4 else
ipv4address <|> h4
h4c :: IRIParser st String
h4c = try $ h4 <++> string ":"
h4 :: IRIParser st String
h4 = countMinMax 1 4 hexDigitChar
ipv4address :: IRIParser st String
ipv4address = try (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 = ihierOrIrelativePart
<|> 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 = isHexDigit
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 { iriQuery = query
, iriFragment = fragment
, prefixName = pname
, abbrevPath = aPath
})
| hasFullIRI i = ("<" ++) . iriToStringFull iuserinfomap i . (">" ++)
| otherwise = (pname ++) . (aPath ++) . (query ++) . (fragment ++)
iriToStringShort :: (String -> String) -> IRI -> ShowS
iriToStringShort iuserinfomap i@(IRI { iriQuery = query
, iriFragment = fragment
, prefixName = pname
, abbrevPath = aPath
})
| hasFullIRI i && not (isAbbrev i) =
("<" ++) . iriToStringFull iuserinfomap i . (">" ++)
| otherwise = (pname ++) . (aPath ++) . (query ++) . (fragment ++)
iriToStringFull :: (String -> String) -> IRI -> ShowS
iriToStringFull iuserinfomap i@(IRI { iriScheme = scheme
, iriAuthority = authority
, iriPath = path
, iriQuery = query
, iriFragment = fragment
, abbrevPath = aPath
})
| isAbbrev i && not (hasFullIRI i) = (aPath ++) . (query ++) . (fragment ++)
| otherwise = (scheme ++) . iriAuthToString iuserinfomap authority
. (path ++) . (query ++) . (fragment ++)
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 = concatMap (escapeIRIChar p)
{- | 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
-- @Nothing@ iff there is no IRI @i@ assigned to the prefix of @c@ or the concatenation of @i@ and @abbrevPath c@ is not a valid IRI
expandCurie :: Map String IRI -> IRI -> Maybe IRI
expandCurie prefixMap c =
if hasFullIRI c then Just c else
let pn = if null $ prefixName c then ":" else prefixName c in
case Map.lookup pn prefixMap of
Nothing -> Nothing
Just i -> case mergeCurie c i of
Nothing -> Nothing
Just j -> Just $ j { prefixName = prefixName c
, abbrevPath = abbrevPath c }
{- |'mergeCurie' merges the CURIE @c@ into IRI @i@, appending their string representations -}
mergeCurie :: IRI -> IRI -> Maybe IRI
mergeCurie c i =
parseIRI $ iriToStringFull id i "" ++ iriToStringFull id c ""
{- | 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) }