indexing
description: "String format of the database"
legal: "See notice at end of class."
status: "See notice at end of class."
date: "$Date: 2006-12-21 11:51:40 -0800 (Thu, 21 Dec 2006) $"
revision: "$Revision: 65703 $"
class interface
DATABASE_STRING [G -> DATABASE create default_create end]
create
default_create
ANY
feature
bit_type: INTEGER_32 is 8
INTERNAL
boolean_field (i: INTEGER_32; object: ANY): BOOLEAN
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
boolean_field: field_type (i, object) = boolean_type
boolean_type: INTEGER_32 is 3
INTERNAL
character_32_field (i: INTEGER_32; object: ANY): CHARACTER_32
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
character_32_field: field_type (i, object) = character_32_type
character_32_type: INTEGER_32 is 12
INTERNALWide_character_type
INTERNAL
character_8_field (i: INTEGER_32; object: ANY): CHARACTER_8
`i'`object'
INTERNALcharacter_field
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
character_8_field: field_type (i, object) = character_8_type
character_8_type: INTEGER_32 is 2
INTERNALCharacter_type
INTERNAL
character_field (i: INTEGER_32; object: ANY): CHARACTER_8
`i'`object'
INTERNALcharacter_8_field
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
character_8_field: field_type (i, object) = character_8_type
character_type: INTEGER_32 is 2
INTERNALCharacter_8_type
INTERNAL
class_name (object: ANY): STRING_8
`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
class_name_of_type (type_id: INTEGER_32): STRING_8
`type_id'
INTERNAL
require INTERNAL
type_id_nonnegative: type_id >= 0
db_spec: DATABASE
HANDLE_SPEC
ensure HANDLE_SPEC
not_void: Result /= Void
double_field (i: INTEGER_32; object: ANY): REAL_64
`i'`object'
INTERNALreal_64_field
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
real_64_field: field_type (i, object) = real_64_type
double_type: INTEGER_32 is 6
INTERNALReal_64_type
INTERNAL
dynamic_type (object: ANY): INTEGER_32
`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
ensure INTERNAL
dynamic_type_nonnegative: Result >= 0
expanded_field_type (i: INTEGER_32; object: ANY): STRING_8
`i'
`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
is_expanded: field_type (i, object) = expanded_type
ensure INTERNAL
result_exists: Result /= Void
expanded_type: INTEGER_32 is 7
INTERNAL
field (i: INTEGER_32; object: ANY): ?ANY
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
not_special: not is_special (object)
field_name (i: INTEGER_32; object: ANY): STRING_8
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
not_special: not is_special (object)
ensure INTERNAL
result_exists: Result /= Void
field_name_of_type (i: INTEGER_32; type_id: INTEGER_32): STRING_8
`i'`type_id'
INTERNAL
require INTERNAL
type_id_nonnegative: type_id >= 0
index_large_enough: i >= 1
index_small_enought: i <= field_count_of_type (type_id)
field_offset (i: INTEGER_32; object: ANY): INTEGER_32
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
not_special: not is_special (object)
field_static_type_of_type (i: INTEGER_32; type_id: INTEGER_32): INTEGER_32
`i'`type_id'
INTERNAL
require INTERNAL
type_id_nonnegative: type_id >= 0
index_large_enough: i >= 1
index_small_enough: i <= field_count_of_type (type_id)
ensure INTERNAL
field_type_nonnegative: Result >= 0
field_type (i: INTEGER_32; object: ANY): INTEGER_32
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
ensure INTERNAL
field_type_nonnegative: Result >= 0
field_type_of_type (i: INTEGER_32; type_id: INTEGER_32): INTEGER_32
`i'`type_id'
INTERNAL
require INTERNAL
type_id_nonnegative: type_id >= 0
index_large_enough: i >= 1
index_small_enough: i <= field_count_of_type (type_id)
ensure INTERNAL
field_type_nonnegative: Result >= 0
generating_type: STRING_8
ANY
ensure ANY
generating_type_not_void: Result /= Void
generating_type_not_empty: not Result.is_empty
generator: STRING_8
ANY
ensure ANY
generator_not_void: Result /= Void
generator_not_empty: not Result.is_empty
generic_count (obj: ANY): INTEGER_32
`obj'
INTERNAL
require INTERNAL
obj_not_void: obj /= Void
generic_count_of_type (type_id: INTEGER_32): INTEGER_32
`type_id'
INTERNAL
require INTERNAL
type_id_nonnegative: type_id >= 0
generic_dynamic_type (object: ANY; i: INTEGER_32): INTEGER_32
`object'
`i'
INTERNAL
require INTERNAL
object_not_void: object /= Void
object_generic: generic_count (object) > 0
i_valid: i > 0 and i <= generic_count (object)
ensure INTERNAL
dynamic_type_nonnegative: Result >= 0
generic_dynamic_type_of_type (type_id: INTEGER_32; i: INTEGER_32): INTEGER_32
`type_id'`i'
INTERNAL
require INTERNAL
type_id_nonnegative: type_id >= 0
type_id_generic: generic_count_of_type (type_id) > 0
i_valid: i > 0 and i <= generic_count_of_type (type_id)
ensure INTERNAL
dynamic_type_nonnegative: Result >= 0
integer_16_field (i: INTEGER_32; object: ANY): INTEGER_16
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
integer_16_field: field_type (i, object) = integer_16_type
integer_16_type: INTEGER_32 is 10
INTERNAL
integer_32_field (i: INTEGER_32; object: ANY): INTEGER_32
`i'`object'
INTERNALinteger_field
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
integer_32_field: field_type (i, object) = integer_32_type
integer_32_type: INTEGER_32 is 4
INTERNALInteger_type
INTERNAL
integer_64_field (i: INTEGER_32; object: ANY): INTEGER_64
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
integer_64_field: field_type (i, object) = integer_64_type
integer_64_type: INTEGER_32 is 11
INTERNAL
integer_8_field (i: INTEGER_32; object: ANY): INTEGER_8
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
integer_8_field: field_type (i, object) = integer_8_type
integer_8_type: INTEGER_32 is 9
INTERNAL
integer_field (i: INTEGER_32; object: ANY): INTEGER_32
`i'`object'
INTERNALinteger_32_field
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
integer_32_field: field_type (i, object) = integer_32_type
integer_type: INTEGER_32 is 4
INTERNALInteger_32_type
INTERNAL
max_predefined_type: INTEGER_32 is 16
INTERNAL
natural_16_field (i: INTEGER_32; object: ANY): NATURAL_16
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
natural_16_field: field_type (i, object) = natural_16_type
natural_16_type: INTEGER_32 is 14
INTERNAL
natural_32_field (i: INTEGER_32; object: ANY): NATURAL_32
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
natural_32_field: field_type (i, object) = natural_32_type
natural_32_type: INTEGER_32 is 15
INTERNAL
natural_64_field (i: INTEGER_32; object: ANY): NATURAL_64
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
natural_64_field: field_type (i, object) = natural_64_type
natural_64_type: INTEGER_32 is 16
INTERNAL
natural_8_field (i: INTEGER_32; object: ANY): NATURAL_8
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
natural_8_field: field_type (i, object) = natural_8_type
natural_8_type: INTEGER_32 is 13
INTERNAL
none_type: INTEGER_32 is -2
INTERNAL
pointer_field (i: INTEGER_32; object: ANY): POINTER
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
pointer_field: field_type (i, object) = pointer_type
pointer_type: INTEGER_32 is 0
INTERNAL
real_32_field (i: INTEGER_32; object: ANY): REAL_32
`i'`object'
INTERNALreal_field
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
real_32_field: field_type (i, object) = real_32_type
real_32_type: INTEGER_32 is 5
INTERNALReal_type
INTERNAL
real_64_field (i: INTEGER_32; object: ANY): REAL_64
`i'`object'
INTERNALdouble_field
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
real_64_field: field_type (i, object) = real_64_type
real_64_type: INTEGER_32 is 6
INTERNALDouble_type
INTERNAL
real_field (i: INTEGER_32; object: ANY): REAL_32
`i'`object'
INTERNALreal_32_field
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
real_32_field: field_type (i, object) = real_32_type
real_type: INTEGER_32 is 5
INTERNALReal_32_type
INTERNAL
reference_type: INTEGER_32 is 1
INTERNAL
type_name (object: ANY): STRING_8
`object'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
type_name_of_type (type_id: INTEGER_32): STRING_8
`type_id'`type_id'
INTERNAL
require INTERNAL
type_id_nonnegative: type_id >= 0
wide_character_type: INTEGER_32 is 12
INTERNALCharacter_32_type
INTERNAL
feature
bit_size (i: INTEGER_32; object: ANY): INTEGER_32
`i'`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
index_large_enough: i >= 1
index_small_enough: i <= field_count (object)
is_bit: field_type (i, object) = bit_type
ensure INTERNAL
positive_result: Result > 0
deep_physical_size (object: ANY): INTEGER_32
`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
field_count (object: ANY): INTEGER_32
`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
field_count_of_type (type_id: INTEGER_32): INTEGER_32
`type_id'
INTERNAL
require INTERNAL
type_id_nonnegative: type_id >= 0
physical_size (object: ANY): INTEGER_32
`object'
INTERNAL
require INTERNAL
object_not_void: object /= Void
feature
frozen deep_equal (some: ?ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
shallow_implies_deep: standard_equal (some, other) implies Result
both_or_none_void: (some = Void) implies (Result = (other = Void))
same_type: (Result and (some /= Void)) implies (other /= Void and then some.same_type (other))
symmetric: Result implies deep_equal (other, some)
frozen equal (some: ?ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.is_equal (other))
frozen is_deep_equal (other: DATABASE_STRING [G]): BOOLEAN
`Current'`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
shallow_implies_deep: standard_is_equal (other) implies Result
same_type: Result implies same_type (other)
symmetric: Result implies other.is_deep_equal (Current)
is_equal (other: DATABASE_STRING [G]): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
symmetric: Result implies other.is_equal (Current)
consistent: standard_is_equal (other) implies Result
same (object: ANY): BOOLEAN
`object'
DB_TYPE
require DB_TYPE
object_not_void: object /= Void
ensure DB_TYPE
Result = (dynamic_type (object) = dynamic)
frozen standard_equal (some: ?ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.standard_is_equal (other))
frozen standard_is_equal (other: DATABASE_STRING [G]): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
same_type: Result implies same_type (other)
symmetric: Result implies other.standard_is_equal (Current)
feature
conforms_to (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: