Class: PropertiesHandler

Inherits:
Riddl::Utils::Properties::HandlerBase
  • Object
show all
Defined in:
lib/cpee/handler_properties.rb

Overview

This file is part of CPEE.

CPEE is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

CPEE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with CPEE (file COPYING in the main directory). If not, see <www.gnu.org/licenses/>.

Instance Method Summary collapse

Instance Method Details

#createObject



47
# File 'lib/cpee/handler_properties.rb', line 47

def create; sync; end

#deleteObject



49
# File 'lib/cpee/handler_properties.rb', line 49

def delete; sync; end

#syncObject



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
# File 'lib/cpee/handler_properties.rb', line 16

def sync
  case @property
    when 'handlerwrapper'
      @data.unserialize_handlerwrapper!
      @data.notify('handlerwrapper/change', :instance => @data.instance)
    when 'description'
      nots = @data.unserialize_description!
      nots.uniq.each do |noti|
        @data.notify(*noti)
      end
    when 'endpoints'
      @data.unserialize_endpoints!
      @data.notify('endpoints/change', :label => 'external', :instance => @data.instance, :instance_name => @data.info, :instance_uuid => @data.uuid, :changed => @data.endpoints.keys, :values => @data.endpoints)
    when 'dataelements'
      @data.unserialize_dataelements!
      @data.notify('dataelements/change', :label => 'external', :instance => @data.instance, :instance_name => @data.info, :instance_uuid => @data.uuid, :changed => @data.dataelements.keys, :values => @data.dataelements)
    when 'attributes'
      @data.unserialize_attributes!
      @data.notify('attributes/change', :label => 'external', :instance => @data.instance, :instance_name => @data.info, :instance_uuid => @data.uuid, :changed => @data.attributes.keys, :values => @data.attributes)
    when 'positions'
      @data.unserialize_positions!
      @data.notify('position/change', :instance => @data.instance)
    when 'transformation'
      @data.notify('transformation/change', :instance => @data.instance)
    when 'state'
      @data.unserialize_state!
    else
      nil
  end
end

#updateObject



48
# File 'lib/cpee/handler_properties.rb', line 48

def update; sync; end