ftra

Descripción del contenido de la página

Herramienta en Forth para traducir subcadenas de texto.

Etiquetas:

Escribí este programa en Forth para transformar una cadena de texto mediante traducción de ciertas subcadenas en otras.

Código fuente

ftra.fs

.( ftra.fs ) cr
\ -----------------------------

\ Copyright (C) 2005,2007,2013 Marcos Cruz (programandala.net)
\ License: http://programandala.net/license

\ Text strings translation tool
\ Program written in Forth; developed with Forth 5mx and Gforth.

\ History
\ ------------------------------------------

\ 2005-11-01
\   Start. Algorithm to translate chars into strings.
\ 2005-11-10
\   Rewrite. New improved algorithm to translate strings into strings.
\ 2005-11-11
\   Bugs fixed. It seems it works.
\ 2007-05-08
  \ 'translate-more?' factored out from 'tra'.
\   Bug fixed in 'tra' :
\   The translation halted when the last word in the text had to be translated but
\   it was shorter than the first word in the translation table.
\   The best order for the elements in the translation table is not solved yet.
\   Provisional solution: remove that condition.
\ 2013-12-10
\   Source code style and stack notation updated.
\   '-left' removed, '/string' does exactly the same.
\   '.tra-table-element' factored from '.tra-table'.
\   Some comments fixed.

\ ------------------------------------------

marker ftra

variable tra-table  \ address of the current translation table
variable tra-pointer  \ pointer to the current string in the current translation table

: tra-pointer0  ( -- )
  \ Init the translation pointer.
  tra-table @ tra-pointer !
  ;
: tra-table:  ( "<spaces>name" -- )
  \ Start the translation table definition.
  create  does>  ( -- ) ( dfa ) tra-table ! tra-pointer0
  ;
: ;tra-table  ( -- )
  \ Finish the translation table definition.
  0 dup c, c, align
  ;
: c>s,  ( b -- )
  \ Compile a one char string into the data space.
  1 c, c,
  ;
variable translation  \ address of the translation
variable >translation  \ pointer to the next char in the translation
: translation+!  ( ca len -- )
  \ Add a string to the current translation.
  dup >r >translation @ swap cmove  \ move chars
  r> dup >translation +!  \ update char pointer
  translation @ dup C@ rot + swap C!  \ update string count
  ;
: translate-this?  ( ca1 len1 ca2 len2 -- ca1 len1 ca2 len2 wf )
  \ Is ca2 len2 a prefix of ca1 len1?
  \ ca1 len1 = remaining text to be translated
  \ ca2 len2 = text to translate, from the translation table
  dup >r 2over 2over 2swap drop r> compare 0=
  ;
: tra-pointer@  ( -- ca len )
  \ Fetch the string pointed.
  tra-pointer @ count
  ;
: tra-pointer+  ( -- )
  \ Update tra-pointer to the next string in the translation table.
  tra-pointer dup @ dup C@ 1+ swap + swap !
  ;
: translation0  ( -- )
  \ Init the translation.
  here
  dup translation !  \ address
  0 over c!  \ char count
  1+ >translation !  \ pointer to the first char
  ;
: translate-more?  ( ca1 len1 -- ca1 len1 ca2 len2 wf )
  \ Keep on translating?
  \ ca1 len1 = remaining text to be translated
  \ ca2 len2 = text to translate, from the translation table
  \ wf = translate the text?
  [ false ] [if]
    \ Original version with 3 conditions, and debug code.
    \ dup 
    dup 0<> \ is there text to translate?
\    cr dup if ." C1" then \ xxx informer
    >r tra-pointer@
    ( ca1 len1 ca2 len2 -- )
    \ ca1 len1 = remaining text to be translated
    \ ca2 len2 = text to translate, from the translation table
    dup 0<>  \ is there a possible translation?
\    dup if ." C2" then \ xxx informer
    r> and
    \ over r> <=  \ is the possible translation shorter than the text to translate?
\    dup if ." C3" then  \ xxx informer
    \ and 
  [else]
    \ 2007-05-08 New version with only 2 conditions.
    dup 0<> >r \ is there text to translate?
    tra-pointer@ dup 0<>  \ is there a possible translation?
    r> and
  [then]
  ;
: tra  ( ca1 len1 -- ca2 len2 )
  \ Translate a string using the current translation table.
  \ ca1 len1 = text to be translated
  \ ca2 len2 = translated text
\ 2dup cr type ." --> ? " \ xxx informer
  translation0
  begin
    dup
\    more and \ xxx informer
  while  tra-pointer0
    begin  translate-more?
    while
\      cr ."  translate more: " 2over type ."  --> " 2dup type  \ xxx informer
      tra-pointer+ translate-this?
      if
\      cr ."  translate this:"  2over type ."  --> " 2dup type \ xxx informer
        nip /string  tra-pointer@ translation+!  tra-pointer0
      else
\      cr ."  don't translate this: " 2over type ."  --> " 2dup type  \ xxx informer
        2drop  tra-pointer+
      then
    repeat  2drop dup
    if
      over 1 translation+!  1 /string  \ char not translated
    then
  repeat  2drop  translation @ count
\  2dup cr ." RESULT: " type \ xxx informer
  ;
: .tra-table-element  ( ca len -- )
  \ Print the content of an element of the current translation table
  cr type ."  > "  tra-pointer+
  tra-pointer@ type  tra-pointer+
  ;
: .tra-table  ( -- )
  \ Print the content of the current translation table
  tra-pointer0
  begin   tra-pointer@ dup
  while   .tra-table-element
  repeat  2drop
  ;

.(  ftra.fs compiled ) cr

ftra-utf8.fs

\ ****************************
CR .( ftra-utf8 )
\ ****************************

\ Copyright (C) 2005 Marcos Cruz (http://programandala.net)
\ License: http://programandala.net/license

\ Translation table for ftra:
\
\ Some translations from the Windows character set (windows-1252;
\ Unofficial synonyms include cp-1252 and WinLatin1) into HTML
\ entities.

\ Special translations provided by Jukka "Yucca" Korpela in his web
\ page.

\ Note: code positions 128·-·159 have been reserved for eventual use
\ as control codes.

[undefined] ftra [IF]
  include ftra.fs
[THEN]

tra-table: utf8

S" ‚" s, S" &#8218;" s,  \ Jukka
S" ƒ" s, S" &#402;" s,  \ Jukka
S" „" s, S" &#8222;" s,  \ Jukka
S" …" s, S" &#8230;" s,  \ Jukka
S" †" s, S" &#8224;" s,  \ Jukka
S" ‡" s, S" &#8225;" s,  \ Jukka
S" ˆ" s, S" &#710;" s,  \ Jukka
S" ‰" s, S" &#8240;" s,  \ Jukka
S" Š" s, S" &#352;" s,  \ Jukka
S" ‹" s, S" &#8249;" s,  \ Jukka
S" Œ" s, S" &#338;" s,  \ Jukka
S" ‘" s, S" &#8216;" s,  \ Jukka
S" ’" s, S" &#2019;" s,  \ Jukka
S" “" s, S" &#8220;" s,  \ Jukka
S" ”" s, S" &#8221;" s,  \ Jukka
S" •" s, S" &#2022;" s,  \ Jukka
S" –" s, S" &#8211;" s,  \ Jukka
S" —" s, S" &#8212;" s,  \ Jukka
S" ˜" s, S" &#732;" s,  \ Jukka
S" ™" s, S" &#8482;" s,  \ Jukka
S" š" s, S" &#353;" s,  \ Jukka
S" ›" s, S" &#8250;" s,  \ Jukka
S" œ" s, S" &#339;" s,  \ Jukka
S" Ÿ" s, S" &#376;" s,  \ Jukka
S" ¡" s, S" &#161;" s,
S" ª" s, S" &#170;" s,
S" «" s, S" &#171;" s,
S" ·" s, S" &#183;" s,
S" º" s, S" &#186;" s,
S" »" s, S" &#187;" s,
S" ¿" s, S" &#191;" s,
S" À" s, S" &#192;" s,
S" Á" s, S" &#193;" s,
S" Ç" s, S" &#199;" s,
S" È" s, S" &#200;" s,
S" É" s, S" &#201;" s,
S" Í" s, S" &#205;" s,
S" Ñ" s, S" &#209;" s,
S" Ó" s, S" &#211;" s,
S" Ú" s, S" &#218;" s,
S" Ü" s, S" &#220;" s,
S" à" s, S" &#224;" s,
S" á" s, S" &#225;" s,
S" ä" s, S" &#228;" s,
S" ç" s, S" &#231;" s,
S" é" s, S" &#233;" s,
S" í" s, S" &#237;" s,
S" ñ" s, S" &#241;" s,
S" ó" s, S" &#243;" s,
S" ô" s, S" &#244;" s,
S" ú" s, S" &#250;" s,
S" ü" s, S" &#252;" s,

;tra-table

.(  ftra-utf8 ok!)

ftra-utf8es.fs

\ ****************************
CR .( ftra_utf8es )
\ ****************************

\ Copyright (C) 2005 Marcos Cruz (http://programandala.net)
\ License: http://programandala.net/license

\ Translation table for ftra:
\ Some translations from the Windows character set 
\ (windows-1252;  Unofficial synonyms include cp-1252 and WinLatin1) 
\ into HTML entities. 
\ Sorted to translate Spanish texts more quickly.

\ Special translations provided by Jukka "Yucca" Korpela in his web page.

[undefined] ftra [IF]
  include ftra.fs
[THEN]

tra-table: utf8es

\ The most used, the Spanish chars

S" á" S, S" &#225;" S,
S" é" S, S" &#233;" S,
S" í" S, S" &#237;" S,
S" ó" S, S" &#243;" S,
S" ú" S, S" &#250;" S,
S" ñ" S, S" &#241;" S,
S" Á" S, S" &#193;" S,
S" É" S, S" &#201;" S,
S" Í" S, S" &#205;" S,
S" Ó" S, S" &#211;" S,
S" Ú" S, S" &#218;" S,
S" Ñ" S, S" &#209;" S,
S" ¿" S, S" &#191;" S,
S" ¡" S, S" &#161;" S,
S" ü" S, S" &#252;" S,
S" Ü" S, S" &#220;" S,

\ Some tipographical chars

S" «" S, S" &#171;" S,
S" ·" S, S" &#183;" S,
S" ª" S, S" &#170;" S,
S" º" S, S" &#186;" S,
S" »" S, S" &#187;" S,

\ Chars from other languages

S" à" S, S" &#224;" S,
S" ä" S, S" &#228;" S,
S" ç" S, S" &#231;" S,
S" À" S, S" &#192;" S,
S" Ç" S, S" &#199;" S,
S" È" S, S" &#200;" S,
S" ô" S, S" &#244;" S,
S" ò" S, S" &#242;" S,
S" Ò" S, S" &#210;" S,

\ Special chars

S"  " S, S" &nbsp;" S,  \ 160

\ Problem chars (128-159)

false [IF]

\ Original translations for chars 128-159

S" ‚" S, S" &#8218;" S,  \ Jukka
S" ƒ" S, S" &#402;" S,  \ Jukka
S" „" S, S" &#8222;" S,  \ Jukka
S" …" S, S" &#8230;" S,  \ Jukka
S" †" S, S" &#8224;" S,  \ Jukka
S" ‡" S, S" &#8225;" S,  \ Jukka
S" ˆ" S, S" &#710;" S,  \ Jukka
S" ‰" S, S" &#8240;" S,  \ Jukka
S" Š" S, S" &#352;" S,  \ Jukka
S" ‹" S, S" &#8249;" S,  \ Jukka
S" Œ" S, S" &#338;" S,  \ Jukka
S" ‘" S, S" &#8216;" S,  \ Jukka
S" ’" S, S" &#2019;" S,  \ Jukka
S" “" S, S" &#8220;" S,  \ Jukka
S" ”" S, S" &#8221;" S,  \ Jukka
S" •" S, S" &#2022;" S,  \ Jukka
S" –" S, S" &#8211;" S,  \ Jukka
S" —" S, S" &#8212;" S,  \ Jukka
S" ˜" S, S" &#732;" S,  \ Jukka
S" ™" S, S" &#8482;" S,  \ Jukka
S" š" S, S" &#353;" S,  \ Jukka
S" ›" S, S" &#8250;" S,  \ Jukka
S" œ" S, S" &#339;" S,  \ Jukka
S" Ÿ" S, S" &#376;" S,  \ Jukka

[ELSE]

\ 2006 04 03

\ Actual secure translations for chars 128-159

S" €" S, S" EUR" S,  \ 128
S" ‚" S, S" &#39;" S,   130
S" „" S, S" &#34;" S,  \ 132
S" ‹" S, S" &#60;" S,  \ 139
S" Œ" S, S" OE" S,  \ 140
S" ‘" S, S" &#39;" S,  \ 145
S" ’" S, S" &#39;" S,  \ 146
S" “" S, S" &#34;" S,  \ 147
S" ”" S, S" &#34;" S,  \ 148
S" •" S, S" &#183;" S,  \ 149
S" –" S, S" -" S,  \ 150
S" —" S, S"  - " S,  \ 151
S" ˜" S, S" &#126;" S,  \ 152
S" ™" S, S" (TM)" S,  \ 153
S" ›" S, S" &#62;" S,  155
S" œ" S, S" oe" S,  \ 156

[THEN]

;tra-table

.(  ftra_utf8es ok!)

ftra-x-alfabeto-utf8es.fs

\ ****************************
CR .( ftra-x-alfabeto-utf8 )
\ ****************************

\ Copyright (C) 2005 Marcos Cruz (http://programandala.net)
\ License: http://programandala.net/license

\ Translation table for ftra:
\ from the Esperanto x alphabet into HTML entities.

[undefined] ftra [IF]
  include ftra.fs
[THEN]

tra-table: x-alfabeto-utf8

S" cx" s, S" &#265;" s,
S" gx" s, S" &#285;" s,
S" jx" s, S" &#309;" s,
S" sx" s, S" &#349;" s,
S" ux" s, S" &#365;" s,
S" Cx" s, S" &#264;" s,
S" Gx" s, S" &#284;" s,
S" Jx" s, S" &#308;" s,
S" Sx" s, S" &#348;" s,
S" Ux" s, S" &#364;" s,
S" hx" s, S" &#293;" s,
S" Hx" s, S" &#292;" s,

;tra-table

.(  ftra_x-alfabeto-utf8 ok!)

ftra-example.fs

\ ftra-example

\ Copyright (C) 2005 Marcos Cruz (http://programandala.net)
\ License: http://programandala.net/license

\ Example translation table for ftra.

[undefined] ftra [IF]
S" ftra.fs" INCLUDED
[THEN]

: .tra 2DUP CR TYPE tra CR TYPE CR ;

tra-table: TheBeatles

  \ Sintax:
  \ CHAR char-from c>s, S" string-to" s,
  \ CHAR char-from c>s, CHAR char-to c>s,
  \ S" string from" s, S" string to" s,
  \ S" string from" s, CHAR char-to c>s,
  \ Note: the "from" elements have to be sorted, from longer to shorter.

  S" goodbye" s, S" hello" s,
  S" hello" s, S" goodbye" s,
  S" stop" s, S" go, go, go" s,
  S" yes" s, S" no" s,

;tra-table

TheBeatles .tra-table CR

S" I say yes, you say no." .tra
S" You say stop and I say go, go, go." .tra
S" You say goodbye and I say hello." .tra


Descargas

Páginas relacionadas

ftrac
Herramienta en Forth para traducir caracteres dentro de una cadena de texto en subcadenas.