1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">
<erlref>
<header>
<copyright>
<year>1996</year><year>2016</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</legalnotice>
<title>epp</title>
<prepared>Kenneth Lundin</prepared>
<responsible>Kenneth Lundin</responsible>
<docno>1</docno>
<approved>Kenneth Lundin</approved>
<checked></checked>
<date>1997-01-31</date>
<rev>B</rev>
<file>epp.xml</file>
</header>
<module>epp</module>
<modulesummary>An Erlang code preprocessor.</modulesummary>
<description>
<p>The Erlang code preprocessor includes functions that are used by the
<seealso marker="compiler:compile"><c>compile</c></seealso>
module to preprocess macros and include files before
the parsing takes place.</p>
<p>The Erlang source file <marker
id="encoding"/><em>encoding</em> is selected by a
comment in one of the first two lines of the source file. The
first string matching the regular expression
<c>coding\s*[:=]\s*([-a-zA-Z0-9])+</c> selects the encoding. If
the matching string is not a valid encoding, it is ignored. The
valid encodings are <c>Latin-1</c> and <c>UTF-8</c>, where the
case of the characters can be chosen freely.</p>
<p><em>Examples:</em></p>
<pre>
%% coding: utf-8</pre>
<pre>
%% For this file we have chosen encoding = Latin-1</pre>
<pre>
%% -*- coding: latin-1 -*-</pre>
</description>
<datatypes>
<datatype>
<name name="macros"></name>
</datatype>
<datatype>
<name name="epp_handle"></name>
<desc><p>Handle to the <c>epp</c> server.</p></desc>
</datatype>
<datatype>
<name name="source_encoding"></name>
</datatype>
</datatypes>
<funcs>
<func>
<name name="close" arity="1"/>
<fsummary>Close the preprocessing of the file associated with <c>Epp</c>.
</fsummary>
<desc>
<p>Closes the preprocessing of a file.</p>
</desc>
</func>
<func>
<name name="default_encoding" arity="0"/>
<fsummary>Return the default encoding of Erlang source files.</fsummary>
<desc>
<p>Returns the default encoding of Erlang source files.</p>
</desc>
</func>
<func>
<name name="encoding_to_string" arity="1"/>
<fsummary>Return a string representation of an encoding.</fsummary>
<desc>
<p>Returns a string representation of an encoding. The string
is recognized by
<seealso marker="#read_encoding/1"><c>read_encoding/1,2</c></seealso>,
<seealso marker="#read_encoding_from_binary/1">
<c>read_encoding_from_binary/1,2</c></seealso>, and
<seealso marker="#set_encoding/1"><c>set_encoding/1,2</c></seealso>
as a valid encoding.</p>
</desc>
</func>
<func>
<name name="format_error" arity="1"/>
<fsummary>Format an error descriptor.</fsummary>
<desc>
<p>Takes an <c><anno>ErrorDescriptor</anno></c> and returns
a string that
describes the error or warning. This function is usually
called implicitly when processing an <c>ErrorInfo</c>
structure (see section
<seealso marker="#errorinfo">Error Information</seealso>).</p>
</desc>
</func>
<func>
<name name="open" arity="1"/>
<fsummary>Open a file for preprocessing.</fsummary>
<desc>
<p>Opens a file for preprocessing.</p>
<p>If you want to change the file name of the implicit -file()
attributes inserted during preprocessing, you can do with
<c>{source_name, <anno>SourceName</anno>}</c>. If unset it will
default to the name of the opened file.</p>
<p>If <c>extra</c> is specified in
<c><anno>Options</anno></c>, the return value is
<c>{ok, <anno>Epp</anno>, <anno>Extra</anno>}</c> instead
of <c>{ok, <anno>Epp</anno>}</c>.</p>
</desc>
</func>
<func>
<name name="open" arity="2"/>
<fsummary>Open a file for preprocessing.</fsummary>
<desc>
<p>Equivalent to
<c>epp:open([{name, FileName}, {includes, IncludePath}])</c>.</p>
</desc>
</func>
<func>
<name name="open" arity="3"/>
<fsummary>Open a file for preprocessing.</fsummary>
<desc>
<p>Equivalent to <c>epp:open([{name, FileName}, {includes, IncludePath},
{macros, PredefMacros}])</c>.</p>
</desc>
</func>
<func>
<name name="parse_erl_form" arity="1"/>
<fsummary>Return the next Erlang form from the opened Erlang source file.
</fsummary>
<type name="warning_info"/>
<desc>
<p>Returns the next Erlang form from the opened Erlang source file.
Tuple <c>{eof, <anno>Line</anno>}</c> is returned at the end of the
file. The first form corresponds to an implicit attribute
<c>-file(File,1).</c>, where <c>File</c> is the file name.</p>
</desc>
</func>
<func>
<name name="parse_file" arity="2"/>
<fsummary>Preprocess and parse an Erlang source file.</fsummary>
<desc>
<p>Preprocesses and parses an Erlang source file.
Notice that tuple <c>{eof, <anno>Line</anno>}</c> returned at the
end of the file is included as a "form".</p>
<p>If you want to change the file name of the implicit -file()
attributes inserted during preprocessing, you can do with
<c>{source_name, <anno>SourceName</anno>}</c>. If unset it will
default to the name of the opened file.</p>
<p>If <c>extra</c> is specified in
<c><anno>Options</anno></c>, the return value is
<c>{ok, [<anno>Form</anno>], <anno>Extra</anno>}</c> instead
of <c>{ok, [<anno>Form</anno>]}</c>.</p>
</desc>
</func>
<func>
<name name="parse_file" arity="3"/>
<fsummary>Preprocess and parse an Erlang source file.</fsummary>
<desc>
<p>Equivalent to <c>epp:parse_file(FileName, [{includes, IncludePath},
{macros, PredefMacros}])</c>.</p>
</desc>
</func>
<func>
<name name="read_encoding" arity="1"/>
<name name="read_encoding" arity="2"/>
<fsummary>Read the encoding from a file.</fsummary>
<desc>
<p>Read the <seealso marker="#encoding">encoding</seealso> from
a file. Returns the read encoding, or <c>none</c> if no
valid encoding is found.</p>
<p>Option <c>in_comment_only</c> is <c>true</c> by
default, which is correct for Erlang source files. If set to
<c>false</c>, the encoding string does not necessarily have to
occur in a comment.</p>
</desc>
</func>
<func>
<name name="read_encoding_from_binary" arity="1"/>
<name name="read_encoding_from_binary" arity="2"/>
<fsummary>Read the encoding from a binary.</fsummary>
<desc>
<p>Read the <seealso marker="#encoding">encoding</seealso> from
a binary. Returns the read encoding, or <c>none</c> if no
valid encoding is found.</p>
<p>Option <c>in_comment_only</c> is <c>true</c> by
default, which is correct for Erlang source files. If set to
<c>false</c>, the encoding string does not necessarily have to
occur in a comment.</p>
</desc>
</func>
<func>
<name name="set_encoding" arity="1"/>
<fsummary>Read and set the encoding of an I/O device.</fsummary>
<desc>
<p>Reads the <seealso marker="#encoding">encoding</seealso> from
an I/O device and sets the encoding of the device
accordingly. The position of the I/O device referenced by
<c><anno>File</anno></c> is not affected. If no valid
encoding can be read from the I/O device, the encoding of the
I/O device is set to the default encoding.</p>
<p>Returns the read encoding, or <c>none</c> if no valid
encoding is found.</p>
</desc>
</func>
<func>
<name name="set_encoding" arity="2"/>
<fsummary>Read and set the encoding of an I/O device.</fsummary>
<desc>
<p>Reads the <seealso marker="#encoding">encoding</seealso> from
an I/O device and sets the encoding of the device
accordingly. The position of the I/O device referenced by
<c><anno>File</anno></c> is not affected. If no valid
encoding can be read from the I/O device, the encoding of the
I/O device is set to the
<seealso marker="#encoding">encoding</seealso> specified by
<c><anno>Default</anno></c>.</p>
<p>Returns the read encoding, or <c>none</c> if no valid
encoding is found.</p>
</desc>
</func>
</funcs>
<section>
<title>Error Information</title>
<marker id="errorinfo"/>
<p><c>ErrorInfo</c> is the standard <c>ErrorInfo</c> structure that is
returned from all I/O modules. The format is as follows:</p>
<code type="none">
{ErrorLine, Module, ErrorDescriptor}</code>
<p>A string describing the error is obtained with the following call:</p>
<code type="none">
Module:format_error(ErrorDescriptor)</code>
</section>
<section>
<title>See Also</title>
<p><seealso marker="erl_parse"><c>erl_parse(3)</c></seealso></p>
</section>
</erlref>
|