Syntax::Highlight::Perl::Improved - Highlighting of Perl Syntactical Structures |
This file documents Syntax::Highlight::Perl::Improved version 1.0.
# simple procedural use Syntax::Highlight::Perl::Improved ':BASIC'; # or ':FULL'
print format_string($my_string);
# OO use Syntax::Highlight::Perl::Improved;
my $formatter = new Syntax::Highlight::Perl::Improved; print $formatter->format_string($my_string);
This module provides syntax highlighting for Perl code. The design bias is roughly line-oriented and streamed (ie, processing a file line-by-line in a single pass). Provisions may be made in the future for tasks related to ``back-tracking'' (ie, re-doing a single line in the middle of a stream) such as speeding up state copying.
The only constructor provided is new()
. When called on an existing object, new()
will
create a new copy of that object. Otherwise, new()
creates a new copy of the (internal)
Default Object. Note that the use of the procedural syntax modifies the Default Object
and that those changes will be reflected in any subsequent new()
calls.
Formatting is done using the format_string()
method. Call format_string()
with one or more
strings to format, or it will default to using $_
.
You can set the text used for formatting a syntax element using set_format()
(or set
the start and end format individually using set_start_format()
and set_end_format()
,
respectively).
You can also retrieve the text used for formatting for an element via get_start_format()
or get_end_format
. Bulk retrieval of the names or values of defined formats is possible
via get_format_names_list()
(names), get_start_format_values_list()
and get_end_format_values_list()
.
See FORMAT TYPES later in this document for information on what format elements can be used.
You can check certain aspects of the state of the formatter via the methods: in_heredoc()
,
in_string()
, in_pod()
, was_pod()
, in_data()
, and line_count()
.
You can reset all of the above states (and a few other internal ones) using reset()
.
You can set or check the stability of formatting via unstable()
.
In unstable (TRUE) mode, formatting is not considered to be persistent with nested formats. Or, put another way, when unstable, the formatter can only ``remember'' one format at a time and must reinstate formatting for each token. An example of unstable formatting is using ANSI color escape sequences in a terminal.
In stable (FALSE) mode (the default), formatting is considered persistent within arbitrarily nested formats. Even in stable mode, however, formatting is never allowed to span multiple lines; it is always fully closed at the end of the line and reinstated at the beginning of a new line, if necessary. This is to ensure properly balanced tags when only formatting a partial code snippet. An example of stable formatting is HTML.
Using define_substitution()
, you can have the formatter substitute certain strings with others,
after the original string has been parsed (but before formatting is applied). This is useful
for escaping characters special to the output mode (eg, > and < in HTML) without them
affecting the way the code is parsed.
You can retrieve the current substitutions (as a hash-ref) via substitutions()
.
The Syntax::Highlight::Perl::Improved formatter recognizes and differentiates between many Perl syntactical elements. Each type of syntactical element has a Format Type associated with it. There is also a 'DEFAULT' type that is applied to any element who's Format Type does not have a value.
Several of the Format Types have underscores in their name. This underscore is special, and indicates that the Format Type can be ``generalized.'' This means that you can assign a value to just the first part of the Format Type name (the part before the underscore) and that value will be applied to all Format Types with the same first part. For example, the Format Types for all types of variables begin with ``Variable_''. Thus, if you assign a value to the Format Type ``Variable'', it will be applied to any type of variable. Generalized Format Types take precedence over non-generalized Format Types. So the value assigned to ``Variable'' would be applied to ``Variable_Scalar'', even if ``Variable_Scalar'' had a value explicitly assigned to it.
You can also define a ``short-cut'' name for each Format Type that can be generalized. The short-cut name would be the part of the Format Type name after the underscore. For example, the short-cut for ``Variable_Scalar'' would be ``Scalar''. Short-cut names have the least precedence and are only assigned if neither the generalized Type name, nor the full Type name have values.
Following is a list of all the syntactical elements that Syntax::Highlight::Perl::Improved currently recognizes, along with a short description of what each would be applied to.
m//
, s///
, tr///
, etc), a Here-Document terminating
line, the lone period terminating a format, and, of course, normal quotes ('
, "
, `
, q{}
,
qq{}
, qr{}
, qx{}
).
format
s, Here-Documents, Regular Expressions, and the like.
Note that (theoretically) this format is not applied to non-scalar variables that are
being used as scalars (ie: array or hash lookups, nor references to anything other than scalars).
Syntax::Highlight::Perl::Improved figures out (or at least tries to) the actual type of the variable
being used (by looking at how you're subscripting it) and formats it accordingly. The first
character of the variable (ie, the $
, @
, %
, or *
) tells you the type of value being
used, and the color (hopefully) tells you the type of variable being used to get that value.
(See KNOWN ISSUES for information about when this doesn't work quite right.)
\n
(newline), or \d
(digits).
Only occurs within strings or regular expressions.
Note that Perl does not make any distinction between keywords and built-in functions (at least not in the documentation). Thus I had to make a subjective call as to what would be considered keywords and what would be built-in functions.
The list of keywords can be found (and overloaded) in the variable
$Syntax::Highlight::Perl::Improved::keyword_list_re
as a pre-compiled regular expression.
The list of built-in functions can be found (and overloaded) in the variable
$Syntax::Highlight::Perl::Improved::builtin_list_re
as a pre-compiled regular expression.
The list of built-in functions can be found (and overloaded) in the variable
$Syntax::Highlight::Perl::Improved::builtin_list_re
as a pre-compiled regular expression.
The list of operators can be found (and overloaded) in the variable
$Syntax::Highlight::Perl::Improved::operator_list_re
as a pre-compiled regular expression.
Note that this does not apply to the package portion of a fully qualified variable name.
__END__
' and '__DATA__
'.
CodeTerm
).
Syntax::Highlight::Perl::Improved uses OO method-calls internally (and actually defines a Default Object that is used when the functions are invoked procedurally) so you will not gain anything (efficiency-wise) by using the procedural interface. It is just a matter of style.
It is actually recommended that you use the OO interface, as this allows you to instantiate multiple, concurrent-yet-separate formatters. Though I cannot think of why you would need multiple formatters instantiated. :-)
One point to note: the new()
method uses the Default Object to initialize new objects. This
means that any changes to the state of the Default Object (including Format definitions) made by
using the procedural interface will be reflected in any subsequently created objects. This can
be useful in some cases (eg, call set_format()
procedurally just before creating a batch of new
objects to define default Formats for them all) but will most likely lead to trouble.
If called with a non-zero number, puts the formatter into unstable formatting mode.
In unstable mode, it is assumed that formatting is not persistent one token to the next and that each token must be explicitly formatted.
If the first parameter is a reference to a hash, the formatter will replace it's own hash with the given one, and subsequent changes to the hash outside the formatter will be reflected.
Otherwise, it will copy the arguments passed into it's own hash, and any substitutions already defined (but not in the parameter list) will be preserved. (ie, the new substitutions will be added, without destroying what was there already.)
-c
check
(ie, executing BEGIN and END blocks and the like). That's not going to happen.
If you are indexing (subscripting) an array or hash, the formatter tries to figure
out the ``real'' variable class by looking at how you index the variable. However, if
you do something funky (but legal in Perl) and put line-breaks or comments between
the variable class character ($) and your identifier, the formatter will get confused
and treat your variable as a scalar. Until it finds the index character. Then it
will format the scalar class character ($) as a scalar and your identifier as
the ``correct'' class.
If you put a line-break between your variable identifier and it's indexing character (see
above), which is also legal in Perl, the formatter will never find it and treat your
variable as a scalar.
If you put a line-break between a bareword hash-subscript and the hash variable, or between
a bareword and its associated =>
operator, the bareword will not be formatted correctly
(as a string). (Noticing a pattern here?)
Bug reports are always welcome. Email me at b
David C.Y. Liu b
based on code by Cory Johns darkness@yossman.net
Copyright (c) 2004 David C.Y. Liu. This library is free software; you can redistribute and/or modify it under the same conditions as Perl itself.
Note: This is Cory John's todo list, not mine. Currently none of these features are planned for the near future.
eval(Data::Dumper)
deep-copy.
Generalize state transitions (reset()
and, in the future, copy_state()
) to use
non-hard-coded keys and values for state variables. Probably will extrapolate them into an
overloadable hash, and use the aforementioned deep-copy to assign them.
Create a method to save or copy states between objects (copy_state()
). Would be useful for
using this module in an editor.
Add support for greater-than-one length special characters. Specifically, octal,
hexidecimal, and control character codes. For example, \644
, \x1a4
or \c[
.
qq()
quotes.
Renamed to Syntax::Highlight::Perl::Improved.
_format_line()
into _process_token()
(where they should've been all along), generally making _format_line()
more logical. Contemplating extrapolating the tokenizing and token
loop into its own subroutine to avoid all the recursive calls.
Fixed bug that caused special characters to be recognized outside of
strings.
Added $VERSION variable.
Added support for different types of literal numbers: floating point,
exponential notation (eg: 1.3e10), hexidecimal, and underscore-separated.
Added the CodeTerm
and DATA
Formats.
was_pod()
and updated the documentation for in_pod().
format = ...
').
Syntax::Highlight::Perl::Improved - Highlighting of Perl Syntactical Structures |