ConfigFile-1.1.4: Configuration file reading & writing

CopyrightCopyright (C) 2004-2008 John Goerzen
LicenseEither LGPL or BSD3, as specified in the COPYRIGHT file.
MaintainerJohn Goerzen <jgoerzen@complete.org>
Stabilityprovisional
Portabilityportable
Safe HaskellNone
LanguageHaskell98

Data.ConfigFile.Types

Description

Internal types for Data.ConfigFile. This module is not intended to be used directly by your programs.

Copyright (c) 2004-2008 John Goerzen, jgoerzen@complete.org

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Synopsis

Documentation

typeCPOptions = MapOptionSpecStringSource

Storage of options.

typeCPData = MapSectionSpecCPOptionsSource

The main data storage type (storage of sections).

PLEASE NOTE: This type is exported only for use by other modules under Data.ConfigFile. You should NEVER access the FiniteMap in a ConfigParser directly. This type may change in future releases of MissingH, which could break your programs. Please retrict yourself to the interface in ConfigFile.

dataCPErrorDataSource

Possible ConfigParser errors.

Constructors

ParseErrorString

Parse error

SectionAlreadyExistsSectionSpec

Attempt to create an already-existing ection

NoSectionSectionSpec

The section does not exist

NoOptionOptionSpec

The option does not exist

OtherProblemString

Miscellaneous error

InterpolationErrorString

Raised by interpolatingAccess if a request was made for a non-existant option

typeCPError = (CPErrorData, String) Source

Indicates an error occurred. The String is an explanation of the location of the error.

dataConfigParserSource

This is the main record that is used by ConfigFile.

Constructors

ConfigParser 

Fields

content :: CPData

The data itself

optionxform :: OptionSpec -> OptionSpec

How to transform an option into a standard representation

defaulthandler :: ConfigParser -> SectionSpec -> OptionSpec -> EitherCPErrorString

Function to look up an option, considering a default value if usedefault is True; or ignoring a default value otherwise. The option specification is assumed to be already transformed.

usedefault :: Bool

Whether or not to seek out a default action when no match is found.

accessfunc :: ConfigParser -> SectionSpec -> OptionSpec -> EitherCPErrorString

Function that is used to perform lookups, do optional interpolation, etc. It is assumed that accessfunc will internally call defaulthandler to do the underlying lookup. The option value is not assumed to be transformed.

typeSectionSpec = StringSource

Names of sections

typeOptionSpec = StringSource

Names of options

typeParseOutput = [(String, [(String, String)])] Source

Internal output from parser

close