Class: SQLite3::Translator
- Inherits:
-
Object
- Object
- SQLite3::Translator
- Defined in:
- lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/translator.rb,
lib/sqlite3-1.5.3-x86_64-darwin/lib/sqlite3/translator.rb
Overview
The Translator class encapsulates the logic and callbacks necessary for converting string data to a value of some specified type. Every Database instance may have a Translator instance, in order to assist in type translation (Database#type_translation).
Further, applications may define their own custom type translation logic by registering translator blocks with the corresponding database’s translator instance (Database#translator).
Instance Method Summary collapse
-
#add_translator(type, &block) ⇒ Object
Add a new translator block, which will be invoked to process type translations to the given type.
-
#initialize ⇒ Translator
constructor
Create a new Translator instance.
-
#translate(type, value) ⇒ Object
Translate the given string value to a value of the given type.
Constructor Details
#initialize ⇒ Translator
Create a new Translator instance. It will be preinitialized with default translators for most SQL data types.
18 19 20 21 22 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/translator.rb', line 18 def initialize @translators = Hash.new( proc { |type,value| value } ) @type_name_cache = {} register_default_translators end |
Instance Method Details
#add_translator(type, &block) ⇒ Object
Add a new translator block, which will be invoked to process type translations to the given type. The type should be an SQL datatype, and may include parentheses (i.e., “VARCHAR(30)”). However, any parenthetical information is stripped off and discarded, so type translation decisions are made solely on the “base” type name.
The translator block itself should accept two parameters, “type” and “value”. In this case, the “type” is the full type name (including parentheses), so the block itself may include logic for changing how a type is translated based on the additional data. The “value” parameter is the (string) data to convert.
The block should return the translated value.
37 38 39 40 41 42 43 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/translator.rb', line 37 def add_translator( type, &block ) # :yields: type, value warn(<<-eowarn) if $VERBOSE #{caller[0]} is calling `add_translator`. Built in translators are deprecated and will be removed in version 2.0.0 eowarn @translators[ type_name( type ) ] = block end |
#translate(type, value) ⇒ Object
Translate the given string value to a value of the given type. In the absence of an installed translator block for the given type, the value itself is always returned. Further, nil
values are never translated, and are always passed straight through regardless of the type parameter.
49 50 51 52 53 54 55 56 57 58 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/translator.rb', line 49 def translate( type, value ) unless value.nil? # FIXME: this is a hack to support Sequel if type && %w{ datetime timestamp }.include?(type.downcase) @translators[ type_name( type ) ].call( type, value.to_s ) else @translators[ type_name( type ) ].call( type, value ) end end end |