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
|
%D \module
%D [ file=verb-sql,
%D version=2000.05.09,
%D title=\CONTEXT\ Verbatim Macros,
%D subtitle=Pretty \SQL\ Verbatim,
%D author={Berend de Boer \& Hans Hagen},
%D date=\currentdate,
%D copyright={Berend de Boer \& Hans Hagen}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.
\writestatus{loading}{Context Support Macros / Pretty SQL Verbatim}
%D \quotation {He, I want pretty pretting too!}, Berend cried out
%D one day, \quotation {But now for \SQL.}. This query language
%D shows code like:
%D
%D \startbuffer
%D \startSQL
%D select * -- some comment
%D from tableA
%D where 1 = 2
%D \stopSQL
%D \stopbuffer
%D
%D \typebuffer
%D
%D and this should become something pretty like:
%D
%D \getbuffer
%D
%D or, with Berend's preferences:
%D
%D \startbuffer[setup]
%D \setuptyping
%D [SQL]
%D [text=yes,palet=,icommand=\bf,vcommand=,ccommand=\it]
%D \stopbuffer
%D
%D \getbuffer[setup]
%D \getbuffer
%D
%D This kind of pretty printing is accomplished by:
%D
%D \typebuffer
%D Like we did with the \JAVASCRIPT\ driver, we will borrow
%D most of the macros from the \PERL\ driver.
\ifx\undefined\setupprettyPLtype \input verb-pl \relax \fi
\unprotect
%D \SQL\ has the one line comment sequence \type{--} and the
%D multi line comment delimiters \type{/*} and \type{*/}. The
%D next counter keeps track of multi line comment nesting.
\newcount\SQLcommentlevel
%D We need to handle \type{%}, \type{#} and \type{-} a bit
%D different than in the \PERL\ driver. Compared to the
%D \JAVASCRIPT\ driver |<|we copied most of the code from
%D that one|>|, we now also have type~45.
\gdef\SQLsetspecials%
{\PLsetspecials
\setpretty`\#=32
\setpretty`\:=41
\setpretty`\%=41
\setpretty`\/=43
\setpretty`\*=44
\setpretty`\-=45 }
%D We need three additional handlers:
\gdef\SQLsethandlers%
{\PLsethandlers
\installprettyhandler 43 \SQLtypefourthree
\installprettyhandler 44 \SQLtypefourfour
\installprettyhandler 45 \SQLtypefourfive }
%D Next we have to do some general housekeeping.
\gdef\SQLsetcontrols%
{\PLsetcontrols
\def\flushrestofverbatimline%
{\endPLtypesix
\ifcase\SQLcommentlevel
\inPLcommentfalse
\verbatimfont
\fi
\PLverbosefalse
\PLverboseskipped=0}}
\gdef\SQLsetvariables
{\PLsetvariables
\global\SQLcommentlevel=0 }
\gdef\setupprettySQLtype%
{\def\prettyidentifier{SQL}%
\let\PLidentifiers=\SQLidentifiers
\let\PLvariables=\SQLvariables
\SQLsetvariables
\SQLsetcontrols
\SQLsethandlers
\SQLsetspecials
\PLsetdiagnostics}
%D We have to look upto four characters ahead. If you don't
%D grab the picture, just skip reading these macros.
\gdef\SQLtypefourthree%
{\handlenextnextpretty\doSQLtypefourthree\PLtypefourtwo}
\gdef\doSQLtypefourthree#1#2%
{\getprettydata{#2}%
\ifnum\prettytype=43
\let\next=\dodoSQLtypefourthree
\else\ifnum\prettytype=44
\global\advance\SQLcommentlevel by 1
\global\inPLcommenttrue
\PLverbosecorrection
\let\next=\SQLtogglecomment
\else
\let\next=\PLtypefourtwo
\fi\fi
\next{#1}#2}
\gdef\SQLtogglecomment#1#2%
{\ifnum\SQLcommentlevel=1
\prettynaturalfont
\beginofpretty[\!!prettyone]\getpretties{#1}{#2}\endofpretty
\else
\getpretties{#1}{#2}%
\fi}
\gdef\dodoSQLtypefourthree% #1%
{\endPLtypesix
\handlenextnextpretty\dododoSQLtypefourthree\dodododoPLtypefourthree}
\gdef\dododoSQLtypefourthree%
{\ifnewpretty\expandafter\handlenewpretty\fi\dodododoSQLtypefourthree}
\gdef\dodododoSQLtypefourthree#1#2%
{\ifinPLcomment
\getpretties{#1}{#2}%
\else
\global\inPLcommenttrue
\PLverbosecorrection
\beginofpretty[\!!prettyone]\getpretties{#1}{#2}\endofpretty
\fi}
\gdef\SQLtypefourfour%
{\handlenextnextpretty\doSQLtypefourfour\PLtypefourtwo}
\gdef\doSQLtypefourfour#1#2%
{\getprettydata{#2}%
\ifnum\prettytype=43
\SQLtogglecomment{#1}#2%
\global\advance\SQLcommentlevel by -1
\ifcase\SQLcommentlevel
\global\inPLcommentfalse
\prettyverbatimfont
\fi
\else
\endPLtypesix
\beginofpretty[\!!prettyfour]\getpretty{#1}\endofpretty
\expandafter#2%
\fi}
%D Much of the indirect calls (\type {dodo..}) is due to
%D looking ahead as well as midway pretty print changing.
\gdef\SQLtypefourfive%
{\handlenextnextpretty\doSQLtypefourfive\PLtypefourtwo}
\gdef\doSQLtypefourfive#1#2%
{\getprettydata{#2}%
\ifnum\prettytype=45
\let\next=\dodoSQLtypefourfive
\else
\let\next=\PLtypefourtwo
\fi
\next{#1}#2}
\gdef\dodoSQLtypefourfive% #1%
{\endPLtypesix
\handlenextnextpretty\dododoSQLtypefourfive\dodododoPLtypefourfive}
\gdef\dododoSQLtypefourfive%
{\ifnewpretty\expandafter\handlenewpretty\fi\dodododoSQLtypefourfive}
\gdef\dodododoSQLtypefourfive#1#2%
{\ifinPLcomment
\getpretties{#1}{#2}%
\else
\global\inPLcommenttrue
\PLverbosecorrection
\ifnaturaltextext
\let\next\naturaltextext
\else
\prettynaturalfont
\def\next{\beginofpretty[\!!prettyone]\getpretties{#1}{#2}\endofpretty}%
\fi
\expandafter\next
\fi}
%D We need a different list of reserved words. This list
%D replaces the \PERL\ one.
\useprettyidentifiers \SQLidentifiers \SQLsetspecials
add all alter and any as asc avg begin between break
browse bulk by cascade case check close clustered coalesce
column commit constraint contains count create cross
cursor database default delete desc distinct drop else end
exec execute exists exit fetch for foreign from grant
group having if in index inner insert into is join key
left like max min nocheck nonclustered not null of on open
or order outer over plan prepare proc procedure public
references return revoce right rollback rule select set
sum table then to tran transaction trigger truncate
uncommited union unique update use values varying view
when where while with work
\useprettyidentifiers \SQLvariables \SQLsetspecials
not-yet-defined
\protect \endinput
|