package Syntax::Highlight::Universal; use strict; use vars qw($VERSION @ISA); @ISA = qw(DynaLoader); $VERSION = '0.4'; my $load = 1; my $defaultConfig = 1; my @configQueue; my $precompiledConfig; my $type = 0; my $cacheDir; my $cachePrefixLen = 2; my $result; my $curRegions; my @schemeStack; my $curLine; my $curLineNum; my $pos; my $curCacheDir; my $curCacheFile; sub initParsing { my ($lines, $type) = @_; if (defined $cacheDir) { my $text = join("\n", $type, @$lines); require Digest::MD5; $curCacheFile = Digest::MD5::md5_hex($text); $curCacheDir = $cacheDir; if ($cachePrefixLen > 0 && $cachePrefixLen < 32) { $curCacheDir .= '/' . substr($curCacheFile, 0, $cachePrefixLen); substr($curCacheFile, 0, $cachePrefixLen) = ''; } if (open(local *FILE, "$curCacheDir/$curCacheFile")) { binmode(FILE); local $/; return ; } } else { undef $curCacheDir; undef $curCacheFile; } $result = ''; $curRegions = []; @schemeStack = (); $curLineNum = 0; return; } sub addRegion { my ($lines, $lineNum, $sx, $ex, $region) = @_; return unless defined $region && $sx != $ex; _setCurLineNum($lines, $lineNum) unless $lineNum == $curLineNum; my $class = _createClassName($region); _insertRegion({ sx => $sx, ex => $ex, start => qq(), end => qq(), }); } sub enterScheme { my ($lines, $lineNum, $sx, $ex, $scheme, $region) = @_; return unless defined $region; _setCurLineNum($lines, $lineNum) unless $lineNum == $curLineNum; my $class = _createClassName($region); my $regionDescr = { sx => $sx, ex => length($lines->[$lineNum]), start => qq(), end => '', }; _insertRegion($regionDescr); push @schemeStack, $regionDescr; } sub leaveScheme { my ($lines, $lineNum, $sx, $ex, $scheme, $region) = @_; return unless defined $region; _setCurLineNum($lines, $lineNum) unless $lineNum == $curLineNum; if ($#schemeStack >= 0 && defined $schemeStack[-1]) { $schemeStack[-1]{ex} = $ex; $schemeStack[-1]{end} = qq(); } else { _insertRegion({ sx => 0, ex => $ex, start => '', end => qq(), }); } pop @schemeStack; } sub finalizeParsing { my ($lines, $type) = @_; _setCurLineNum($lines, $#$lines + 1); $result .= '' x ($#schemeStack + 1); if (defined $curCacheDir) { mkdir($curCacheDir, 0700) unless -d $curCacheDir; if (open(local* FILE, ">$curCacheDir/$curCacheFile")) { binmode(FILE); print FILE $result; } } return $result; } sub _createClassName { my $region = shift; my $class = $region->name; for ($region = $region->parent; defined $region; $region = $region->parent) { $class .= ' ' . $region->name; } $class =~ s/[^\w ]/_/g; return $class; } sub _setCurLineNum { my($lines, $lineNum) = @_; for (; $curLineNum < $lineNum; $curLineNum++) { $curLine = $lines->[$curLineNum]; _finalizeLine(); $result .= "\n"; $curRegions = []; undef $_ foreach @schemeStack; } } sub _insertRegion { my($region) = @_; $region->{children} = []; my $list = $curRegions; my $found = 0; for (my $i = 0; $i <= $#$list; $i++) { my $cmp = $list->[$i]; if ($cmp->{sx} >= $region->{ex}) { splice(@$list, $i, 0, $region); $found = 1; last; } elsif ($cmp->{sx} <= $region->{sx} && $cmp->{ex} >= $region->{ex}) { $list = $cmp->{children}; $i = -1; } elsif ($cmp->{sx} >= $region->{sx} && $cmp->{ex} <= $region->{ex}) { my $j = 1; $j++ while $i+$j <= $#$list && $list->[$i+$j]{sx} >= $region->{sx} && $list->[$i+$j]{ex} <= $region->{ex}; push @{$region->{children}}, splice(@$list, $i, $j, $region); $found = 1; last; } elsif (($cmp->{sx} < $region->{sx} && $cmp->{ex} > $region->{sx}) || ($cmp->{sx} < $region->{ex} && $cmp->{ex} > $region->{ex})) { # We don't allow intersecting regions yet return; } } push @$list, $region unless $found; } sub _finalizeLine { my($pos, $ex, $list) = @_; $pos = 0 unless defined $pos; $ex = length($curLine) unless defined $ex; $list = $curRegions unless defined $list; foreach my $region (@$list) { $result .= _toHTML(substr($curLine, $pos, $region->{sx} - $pos)) if $region->{sx} > $pos; $result .= $region->{start}; _finalizeLine($region->{sx}, $region->{ex}, $region->{children}) if $region->{sx} < $region->{ex}; $result .= $region->{end}; $pos = $region->{ex}; } $result .= _toHTML(substr($curLine, $pos, $ex - $pos)) if $ex > $pos; } sub _toHTML { my $text = shift; my %translate = ('&' => '&', '<' => '<', '>' => '>', '"' => '"'); $text =~ s/([&<>\"])/$translate{$1}/g; return $text; } sub new { my $class = shift; return bless({}, $class); } sub setPrecompiledConfig { shift; my $file = shift; $file = 'precompiled.hrcc' unless defined $file; die "Can't load precompiled config file after a plain config file has been loaded" if $type == 2; die "Can't load more than one precompiled config file" if $type == 1; $defaultConfig = 0; $type = 1; my @dirs = (''); push @dirs, map {"$_/Syntax/Highlight/Universal/"} @INC; my $found = 0; foreach my $dir (@dirs) { if (-f "$dir$file") { $precompiledConfig = "$dir$file"; $found = 1; last; } } die "Could not find config file $file" unless $found; } sub addConfig { shift; die "Can't load plain config files after a precompiled config file has been loaded" if $type == 1; $defaultConfig = 0; $type = 2; my @dirs = (''); push @dirs, map {"$_/Syntax/Highlight/Universal/"} @INC; foreach my $file (@_) { my $found = 0; foreach my $dir (@dirs) { if (-f "$dir$file") { push @configQueue, "$dir$file"; $found = 1; last; } } die "Could not find config file $file" unless $found; } } sub setCacheDir { shift; $cacheDir = shift; } sub setCachePrefixLen { shift; $cachePrefixLen = int(shift); } sub _init { if ($load) { require DynaLoader; __PACKAGE__->bootstrap; $load = 0; } addConfig(undef, 'hrc/proto.hrc') if $defaultConfig; if (defined $precompiledConfig) { _deserialize($precompiledConfig); undef $precompiledConfig; } else { _addConfig($_) foreach @configQueue; @configQueue = (); } } sub highlight { shift; my ($type, $text, $callbacks) = @_; unless (defined($callbacks) && UNIVERSAL::isa($callbacks, 'HASH')) { $callbacks = { initParsing => \&initParsing, addRegion => \&addRegion, enterScheme => \&enterScheme, leaveScheme => \&leaveScheme, finalizeParsing => \&finalizeParsing, }; } $text = [split(/\r?\n/, $text)] unless UNIVERSAL::isa($text, 'ARRAY'); my $result; $result = $callbacks->{initParsing}->($text, $type) if exists($callbacks->{initParsing}); return $result if defined $result; _init; _highlight($type, $text, $callbacks); $result = $callbacks->{finalizeParsing}->($text, $type) if exists($callbacks->{finalizeParsing}); return $result; } sub precompile { shift; my $file = shift; _init; _serialize($file); } 1; __END__ =head1 NAME Syntax::Highlight::Universal - Syntax highlighting module based on the Colorer library =head1 SYNOPSIS use Syntax::Highlight::Universal; my $highlighter = Syntax::Highlight::Universal->new; $highlighter->addConfig("hrc/proto.hrc"); $highlighter->setPrecompiledConfig("precompiled.hrcc"); $highlighter->setCacheDir("/tmp/highlighter"); $highlighter->setCachePrefixLen(2); my $result = $highlighter->highlight("perl", "print 'Hello, World!'"); my $callbacks = { initParsing => \&myInitHandler, addRegion => \&myRegionHandler, enterScheme => \&mySchemeStartHandler, leaveScheme => \&mySchemeEndHandler, finalizeParsing => \&myFinalizeHandler, }; $highlighter->highlight("perl", "print 'Hello, World!'", $callbacks); $highlighter->precompile("precompiled.hrcc"); =head1 ABSTRACT This module can process text of any format and produce a syntax highlighted version of it. The default output format is (X)HTML, custom formats are also possible. It uses parts of the Colorer library (http://colorer.sf.net/) and supports its HRC configuration files (http://colorer.sf.net/hrc-ref/). Configuration files for about 100 file formats are included. =head1 DESCRIPTION Syntax::Highlight::Universal doesn't export any functions. You can call its methods either statically or through an object. The result will be the same but we will use the latter here as it is the more convenient of the two. =head2 Creating a new object my $highlighter = Syntax::Highlight::Universal->new; This will create a new object and bind it to the C namespace. It can be used to call the methods of this module in a more convenient way. However, this object has no other meaning, any configuration changes performed through it will have global effect. =head2 Processing text my $result = $highlighter->highlight(FORMAT, TEXT, [CALLBACKS]); This will process the text and produce its syntax highlighted variant, by default in (X)HTML format. =over 4 =item FORMAT This must be one of the formats defined in the configuration file. Usually it will be one of the following: c, cpp, asm, perl, java, idl, pascal, csharp, jsnet, vbnet, forth, fortran, vbasic, html, css, html-css, svg-css, jsp, php, php-body, xhtml-trans, xhtml-strict, xhtml-frameset, asp.vb, asp.js, asp.ps, svg, coldfusion, jScript, actionscript, vbScript, xml, dtd, xslt, xmlschema, relaxng, xlink, clarion, Clipper, foxpro, sqlj, paradox, sql, mysql, Batch, shell, apache, config, hrc, hrd, delphiform, javacc, javaProperties, lex, yacc, makefile, regedit, resources, TeX, dcl, vrml, rarscript, nsi, iss, isScripts, c1c, ada, abap4, AutoIt, awk, dssp, adsp, Baan, cobol, cache, eiffel, icon, lisp, matlab, modula2, picasm, python, rexx, ruby, sml, ocaml, tcltk, sicstusProlog, turboProlog, verilog, vhdl, z80, asm80, filesbbs, diff, messages, text, default =item TEXT The text to be processed, either as a string or as a reference to a list of lines (without the newline symbols) =item CALLBACKS Optional parameter, a hash reference defining the functions to be called during parsing of the text (all hash entries are optional). If this parameter is omitted it will be set to: { initParsing => \&Syntax::Highlight::Universal::initParsing, addRegion => \&Syntax::Highlight::Universal::addRegion, enterScheme => \&Syntax::Highlight::Universal::enterScheme, leaveScheme => \&Syntax::Highlight::Universal::leaveScheme, finalizeParsing => \&Syntax::Highlight::Universal::finalizeParsing, } The callbacks are explained in detail L. =item Return value If the callbacks parameter is omitted, the return value is the syntax highlighted version of the text in (X)HTML. The regions are translated into CspanE> elements, the class attribute is set to the region's name. The resulting code can be formatted via CSS. Directory C of the distribution contains some sample CSS files created from Colorer's HRD files with the hrd2css script (also in this directory). You have to keep in mind that some of these color schemes are meant for a specific background color. If the default callback functions are overridden, either the return value of the C or C callback will be returned, depending on whether C returns a value. =back =head2 Importing configuration files $highlighter->addConfig(FILE, ...); This method imports a list of configuration files. They replace C that is used by default. =over 4 =item FILE The file containing a list of file format definitions. If this file can't be found in the current directory, the module will look for it in its library directory as well. For information on the format of the file, see HRC reference (http://colorer.sf.net/hrc-ref/). =back =head2 Precompiling configuration files $highlighter->precompile(FILE); Parsing HRC files takes a while, resulting in a high time demand for processing of the first text. In order to speed it up, configuration files can be preprocessed into a binary file. The time to load the configuration will be reduced by a factor 5-10, memory usage also decreases. However, the binary file can't be changed and has to be rebuilt every time changes are made on the HRC files. Furthermore it isn't platform independent and should be always rebuilt when moving to another server/another operating system. This method will process the current configuration and write it into a file in a binary format. It might take some time, the whole configuration needs to be loaded into memory. C will create a precompiled configuration file C. It can be copied into the library directory of the module and used instead of the HRC configuration. =over 4 =item FILE Name of the file to be written =back =head2 Loading a precompiled configuration $highlighter->setPrecompiledConfig([FILE]); This method will load a precompiled configuration file. It can only be called once, combining several files isn't yet supported. L can't be used either when using a precompiled configuration. =over 4 =item FILE The precompiled configuration file. If this file can't be found in the current directory, the module will look for it in its library directory as well. You can omit this parameter, the file C will be loaded then. =back =head2 Setting a cache directory $highlighter->setCacheDir(DIR); This method will enable caching of the results and define a cache directory. Then, a text will only go through the complete processing if there is no file for it in the cache directory. Syntax highlighting takes time, therefore caching is generally a good idea. However, it won't be of much use if the texts processed are always different. Other problem is the cleaning of the cache directory. The cache files are never removed, this has to be done separately, e.g. with a cron script emptying the cache directory every two days. Caching only works if the default callback functions are used. =over 4 =item DIR The cache directory. The module might create subdirectories, depending on the prefix length setting (see L). =back =head2 Setting cache prefix length $highlighter->setCachePrefixLen(LENGTH); This method defines how many characters should be used for subdirectories of the cache directory. =over 4 =item LENGTH If this parameter is zero, the files will be put directly into the cache directory. Otherwise subdirectories with names of specified length (the first characters of the file name) will be created to allow faster access to large amounts of files. The file name will contain the remaining of the 32 characters. Default value is 2, meaning that there can be up to 256 subdirectories. =back =head2 Callbacks All callback functions get a reference to the list of text lines as their first parameter. The other parameters differ: =head3 initParsing(LINES, FORMAT) =head3 finalizeParsing(LINES, FORMAT) These functions are called before/after the parsing of the text. If C returns a value, parsing will be aborted and L will return this value. This can be used for caching to return cached results before even starting parsing. Otherwise parsing will proceed normally and the return value of C will be returned. =over 4 =item FORMAT The text format, same as the parameter to L =back =head3 addRegion(LINES, LINENO, START, END, REGION) Called whenever a new region inside a line is identified. =over 4 =item LINENO Line number, zero-based. This parameter can only increase, Colorer never goes back to a previous line. =item START The position of region start within the line =item END The position of region end (the first character not belonging to the region) within the line =item REGION A Colorer region object. Information on its methods is given L. =back =head3 enterScheme(LINES, LINENO, START, END, SCHEME, REGION) =head3 leaveScheme(LINES, LINENO, START, END, SCHEME, REGION) Called whenever the start/end of a scheme is found. The parameters are all the same as for C, except: =over 4 =item SCHEME A Colorer scheme object. Information on its methods is given L. =back =head2 Regions Colorer defines a large set of regions that are organized hierarchically. Each region represents text elements of a certain type. The region object has the following methods: =over 4 =item $region->name Returns the name of the region. This is something like Eregexp:SymbolE. =item $region->description Returns the description of a region or an undefined value if this region has no description. For the region mentioned above this would be EESC-Symbols: \(,\n,\r,etcE. =item $region->parent Returns the region that is above the current in the hierarchy or an undefined value for a top-level region. Usually this will be a region that is defined more generally and whose meaning includes the current region. For the region mentioned above the parent will be a region with the name Edef:StringContentE. =item $region->id Returns a unique numerical id for the region. =back =head2 Schemes Schemes in Colorer describe general context changes. For example, the scheme will change when parsing an interpolated string constant. The current scheme defines the regions that can be found, e.g. you can't have function calls inside a string scheme. Schemes unlike regions can stretch over multiple lines. The current Colorer version defines only one method for the scheme object: =over 4 =item $scheme->name Returns the name of the scheme, e.g. Eperl:InterpolateStringE for an interpolated string constant in Perl. =back =head1 PROBLEMS =head2 HTML output is too verbose The default output will use the name of a region and of all its parents as the class name for a block of text. This allows adding styles only for generally defined regions in most cases while still being able to take language-specific features into account. However, this increases the amount of text largely. I: Use server-side compression, e.g. mod_gzip. The size difference in compressed output is negligible. I: You can replace the function used for creating class names to include only one region name of the C scheme. *Syntax::Highlight::Universal::_createClassName = sub { $region = shift; while (defined $region && $region->name !~ /^def:/) { $region = $region->parent; } my $class = defined $region ? $region->name : 'unknown'; $class =~ s/\W/_/g; return $class; }; Note: this approach is not recommended and might stop working in future versions of the module. =head2 Text processing is very slow Colorer was originally meant for desktop applications where one second to load the configuration files doesn't matter. Unfortunately it matters a lot for web applications. Furthermore, the parsing of text itself also needs some time though much less than processing HRC configuration. I: If you often have to highlight the same texts, you can use caching. L where the module can store processed text. Next time the same text needs to be highlighted the result will be taken from the cache instead of parsing the text all over again (and loading the necessary configuration files in the process). I: This module implements a mechanism to store an already parsed Colorer configuration on disk and load it into memory again. The time requirement is 5-10 times less than for loading HRC configurations. See description of methods L and L for more information on this feature. When installing the module C will automatically create a precompiled configuration file C (about 2 MB) that can be copied into the module's library directory (that's where the C directory is put when installing the module). =head1 INCLUDED COLORER FILES The source files belonging to the Colorer library are in the C directory of the distribution. It is a subset of files from Colorer-take5 Library beta3. All files are unchanged with the following exceptions: =over 4 =item common/Features.h The constants C, C, C, C have been removed (the corresponding files haven't been included). Instead, a constant C is defined. =item common/Common.h This file doesn't include C any more. =item colorer/parsers/HRCParserImpl.cpp Some blocks have been added that become active if C is defined. They are used to store additional information in the objects of class C so that they can be written to disk and restored without being changed. =item colorer/parsers/helpers/HRCParserHelper.(h|cpp) If C is defined, some fields are added to the class C. =item colorer/parsers/HRCParserImpl.cpp Method C has been made virtual to allow overloading. =item xml/xmldom.h Made the definition of constants in class C an C (MS Visual C++ 6.0 has problems with the current definition). =back If you plan to use this module with another Colorer version you should consider repeating these changes. Furthermore the HRC files from the colorer library are included, these are in the directory C. Here only the file C has been added and C changed appropriately. This format is meant for highlighting pure PHP code that isn't embedded in HTML. Directory C contains color schemes that have been translated from Colorer's HRD files with the hrd2css script. =head1 SEE ALSO =over 4 =item Colorer homepage http://colorer.sf.net/ =item HRC reference http://colorer.sf.net/hrc-ref/ =back =head1 AUTHOR Wladimir Palant, Epalant@cpan.orgE =head1 COPYRIGHT AND LICENSE Copyright (C) 2005 by Wladimir Palant This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.1 or, at your option, any later version of Perl 5 you may have available. Colorer is (C) by Igor Russkih. For information on the license see http://colorer.sf.net/Z<>. =cut