Module: Protobuf::ActiveRecord::Columns::ClassMethods

Defined in:
lib/protobuf/active_record/columns.rb

Instance Method Summary collapse

Instance Method Details

#_protobuf_column_typesObject



29
30
31
32
33
# File 'lib/protobuf/active_record/columns.rb', line 29

def _protobuf_column_types
  _protobuf_map_columns unless _protobuf_mapped_columns?

  @_protobuf_column_types
end

#_protobuf_columnsObject



23
24
25
26
27
# File 'lib/protobuf/active_record/columns.rb', line 23

def _protobuf_columns
  _protobuf_map_columns unless _protobuf_mapped_columns?

  @_protobuf_columns
end

#_protobuf_date_column?(key) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


42
43
44
# File 'lib/protobuf/active_record/columns.rb', line 42

def _protobuf_date_column?(key)
  _protobuf_column_types[:date].include?(key)
end

#_protobuf_date_datetime_time_or_timestamp_columnObject



35
36
37
38
39
# File 'lib/protobuf/active_record/columns.rb', line 35

def _protobuf_date_datetime_time_or_timestamp_column
  _protobuf_map_columns unless _protobuf_mapped_columns?

  @_protobuf_date_datetime_time_or_timestamp_column
end

#_protobuf_date_datetime_time_or_timestamp_column?(key) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


47
48
49
# File 'lib/protobuf/active_record/columns.rb', line 47

def _protobuf_date_datetime_time_or_timestamp_column?(key)
  _protobuf_date_datetime_time_or_timestamp_column.include?(key)
end

#_protobuf_datetime_column?(key) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


52
53
54
# File 'lib/protobuf/active_record/columns.rb', line 52

def _protobuf_datetime_column?(key)
  _protobuf_column_types[:datetime].include?(key)
end

#_protobuf_map_columns(force = false) ⇒ Object

Map out the columns for future reference on type conversion :nodoc:



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
# File 'lib/protobuf/active_record/columns.rb', line 58

def _protobuf_map_columns(force = false)
  COLUMN_TYPE_MAP_MUTEX.synchronize do
    @_protobuf_mapped_columns = false if force

    return unless table_exists?
    return if _protobuf_mapped_columns?

    @_protobuf_columns = {}
    @_protobuf_column_types = ::Hash.new { |h, k| h[k] = ::Set.new }
    @_protobuf_date_datetime_time_or_timestamp_column = ::Set.new

    columns.map do |column|
      column_name_symbol = column.name.to_sym
      column_type_symbol = column.type.to_sym
      @_protobuf_columns[column_name_symbol] = column
      @_protobuf_column_types[column_type_symbol] << column_name_symbol

      if DATE_OR_TIME_TYPES.include?(column_type_symbol)
        @_protobuf_date_datetime_time_or_timestamp_column << column_name_symbol
      end
    end

    @_protobuf_mapped_columns = true
  end
end

#_protobuf_mapped_columns?Boolean

Returns:

  • (Boolean)


84
85
86
# File 'lib/protobuf/active_record/columns.rb', line 84

def _protobuf_mapped_columns?
  @_protobuf_mapped_columns
end

#_protobuf_time_column?(key) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


89
90
91
# File 'lib/protobuf/active_record/columns.rb', line 89

def _protobuf_time_column?(key)
  _protobuf_column_types[:time].include?(key)
end

#_protobuf_timestamp_column?(key) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


94
95
96
# File 'lib/protobuf/active_record/columns.rb', line 94

def _protobuf_timestamp_column?(key)
  _protobuf_column_types[:timestamp].include?(key)
end