Module: DTK::Client::AssemblyWorkspaceMixin

Includes:
AssemblyTemplateMixin, ListDiffsMixin
Included in:
Node
Defined in:
lib/commands/common/thor/assembly_workspace.rb

Constant Summary collapse

REQ_ASSEMBLY_OR_WS_ID =
[:service_id!, :workspace_id!]

Instance Method Summary collapse

Methods included from AssemblyTemplateMixin

#get_assembly_name, #get_assembly_stage_name, #parse_service_settings

Methods included from ListDiffsMixin

#list_component_module_diffs, #list_diffs_aux, #list_remote_diffs_aux, #print_diffs

Instance Method Details

#action_info_aux(context_params) ⇒ Object



579
580
581
582
583
584
585
586
587
# File 'lib/commands/common/thor/assembly_workspace.rb', line 579

def action_info_aux(context_params)
  assembly_or_workspace_id,workflow_name = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1],method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :subtype     => 'instance'
  }
  post_body.merge!(:task_action => workflow_name) if workflow_name
  post(rest_url("assembly/info_about_task"),post_body)
end

#add_assembly(context_params) ⇒ Object



977
978
979
980
981
982
983
984
985
# File 'lib/commands/common/thor/assembly_workspace.rb', line 977

def add_assembly(context_params)
  assembly_or_workspace_id,assembly_template_id = context_params.retrieve_arguments([[:service_id, :workspace_id!],:option_1!],method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :assembly_template_id => assembly_template_id
  }
  post_body.merge!(:auto_add_connections => true) if options.auto_complete?
  post rest_url("assembly/add_assembly_template"), post_body
end

#assembly_start(workspace_id, node_pattern_filter) ⇒ Object

Raises:



1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1550

def assembly_start(workspace_id, node_pattern_filter)
  post_body = {
    :assembly_id  => workspace_id,
    :node_pattern => node_pattern_filter
  }

  # we expect action result ID
  response = post rest_url("assembly/start"), post_body
  return response unless response.ok?()
  raise DtkValidationError, response.data(:errors).first if response.data(:errors)

  task_id = response.data(:task_id)
  post rest_url("task/execute"), "task_id" => task_id
end

#assembly_stop(workspace_id, node_pattern_filter) ⇒ Object

Raises:



1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1565

def assembly_stop(workspace_id, node_pattern_filter)
  post_body = {
    :assembly_id => workspace_id,
    :node_pattern => node_pattern_filter
  }
  action = options.legacy? ? 'stop' : 'stop_using_workflow'
  response = post rest_url("assembly/#{action}"), post_body
  return response unless response.ok?()
  raise DtkValidationError, response.data(:errors).first if response.data(:errors)

  response
end

#cancel_task_aux(context_params) ⇒ Object



82
83
84
85
86
87
88
89
# File 'lib/commands/common/thor/assembly_workspace.rb', line 82

def cancel_task_aux(context_params)
  assembly_or_workspace_id, task_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1],method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id
  }
  post_body.merge!(:task_id => task_id) if task_id
  post rest_url("assembly/cancel_task"), post_body
end

#clear_tasks_aux(context_params) ⇒ Object



1686
1687
1688
1689
1690
1691
1692
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1686

def clear_tasks_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id
  }
  post rest_url("assembly/clear_tasks"), post_body
end

#converge_aux(context_params, opts = {}) ⇒ Object



278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
# File 'lib/commands/common/thor/assembly_workspace.rb', line 278

def converge_aux(context_params, opts = {})
  assembly_or_workspace_id,task_action,task_params_string = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1,:option_2],method_argument_names)

  task_params = parse_params?(task_params_string)

  # check for violations
  response = post rest_url("assembly/find_violations"), :assembly_id => assembly_or_workspace_id
  return response unless response.ok?
  if response.data and response.data.size > 0
    error_message = "The following violations were found; they must be corrected before workspace can be converged"
    OsUtil.print(error_message, :red)
    if opts[:are_there_violations]
      return response.render_table(:violation), true
    else
      return response.render_table(:violation)
    end
  end

  post_body = PostBody.new(
    :assembly_id  => assembly_or_workspace_id,
    :commit_msg?  => options.commit_msg,
    :task_action? => task_action,
    :task_params? => task_params
  )
  response = post rest_url("assembly/create_task"), post_body
  return response unless response.ok?

  if response.data
    if confirmation_message = response.data["confirmation_message"]
      return unless Console.confirmation_prompt("Workspace service is stopped, do you want to start it"+'?')
      post_body.merge!(:start_assembly=>true)
      response = post rest_url("assembly/create_task"), post_body
      return response unless response.ok?
    end
  end
  unless task_id = response.data(:task_id)
    if message = response.data(:message)
      OsUtil.print(message, :yellow)
    end
    return Response::Ok.new()
  end

  # execute task
  response = post rest_url("task/execute"), "task_id" => task_id
  return response unless response.ok?

  if opts[:mode] == :stream
    task_status_stream(assembly_or_workspace_id)
  end

  Response::Ok.new()
end

#create_attribute_aux(context_params) ⇒ Object



938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
# File 'lib/commands/common/thor/assembly_workspace.rb', line 938

def create_attribute_aux(context_params)
  if context_params.is_there_identifier?(:attribute)
    mapping = [REQ_ASSEMBLY_OR_WS_ID,:attribute_id!, :option_1]
  else
    mapping = [REQ_ASSEMBLY_OR_WS_ID,:option_1!,:option_2]
  end
  assembly_id, pattern, value = context_params.retrieve_arguments(mapping,method_argument_names)
  post_body = {
    :assembly_id => assembly_id,
    :pattern => pattern,
    :create => true,
  }
  post_body.merge!(:value => value) if value
  post_body.merge!(:required => true) if options.required?
  post_body.merge!(:dynamic => true) if options.dynamic?
  if datatype = options['type']
    post_body.merge!(:datatype => datatype)
  end
  post rest_url("assembly/set_attributes"), post_body
end

#create_component_aux(context_params) ⇒ Object



694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
# File 'lib/commands/common/thor/assembly_workspace.rb', line 694

def create_component_aux(context_params)
  # If method is invoked from 'assembly/node' level retrieve node_id argument
  # directly from active context
  if context_params.is_there_identifier?(:node)
    mapping = [REQ_ASSEMBLY_OR_WS_ID, :node_id!, :option_1!]
    assembly_id, node_id, component_template_id = context_params.retrieve_arguments(mapping, method_argument_names)
  else
    # otherwise retrieve node_id from command options
    mapping = [REQ_ASSEMBLY_OR_WS_ID, :option_1!]
    assembly_id, component_template_id = context_params.retrieve_arguments(mapping, method_argument_names)
    node_id = nil
  end

  # assembly_id,node_id,component_template_id = context_params.retrieve_arguments(mapping,method_argument_names)
  namespace, component_template_id = get_namespace_and_name_for_component(component_template_id)

  post_body = {
    :assembly_id => assembly_id,
    :node_id => node_id,
    :component_template_id => component_template_id
  }

  post_body.merge!(:namespace => namespace) if namespace
  post_body.merge!(:auto_complete_links => options.auto_complete) if options.auto_complete?
  post rest_url("assembly/add_component"), post_body
end

#create_node_aux(context_params) ⇒ Object



987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
# File 'lib/commands/common/thor/assembly_workspace.rb', line 987

def create_node_aux(context_params)
  assembly_or_workspace_id, assembly_node_name = context_params.retrieve_arguments([[:service_id, :workspace_id!],:option_1!], method_argument_names)

  if assembly_node_name.match("/") || assembly_node_name.match(" ")
    raise DtkError, "Node name is ill-formed (contains empty or / characters)"
  end

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :assembly_node_name => assembly_node_name
  }
  post_body.merge!(:image => options.image) if options.image?
  post_body.merge!(:instance_size => options.instance_size) if options.instance_size?

  post rest_url("assembly/add_node"), post_body
end

#create_node_group_aux(context_params) ⇒ Object



1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1004

def create_node_group_aux(context_params)
  assembly_or_workspace_id, node_group_name = context_params.retrieve_arguments([[:service_id, :workspace_id!],:option_1!], method_argument_names)
  cardinality = options.cardinality

  # default value for cardinality is 1 (if user does not specify otherwise)
  # invalid values for cardinality are 0 and any string
  if cardinality.eql?('0') || !cardinality.to_s.match(/^[0-9]+$/)
    fail DtkError.new("Invalid cardinality value '#{cardinality}'!")
  end

  post_body = {
    :assembly_id     => assembly_or_workspace_id,
    :cardinality     => options.cardinality,
    :node_group_name => node_group_name
  }
  post_body.merge!(:image => options.image) if options.image?
  post_body.merge!(:instance_size => options.instance_size) if options.instance_size?

  post rest_url("assembly/add_node_group"), post_body
end

#create_workspace_aux(context_params) ⇒ Object



1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1785

def create_workspace_aux(context_params)
  workspace_name = context_params.retrieve_arguments([:option_1], method_argument_names)
  parent_service = options.parent_service

  post_body = {}
  post_body.merge!(:parent_service => parent_service) if parent_service
  if workspace_name
    # TODO: DTK-2551: Aldin put the check to see if name conflicts on server side
    assembly_list = Assembly.assembly_list()
    raise DTK::Client::DtkValidationError, "Unable to create workspace with name '#{workspace_name}'. Service or workspace with specified name exists already!" if assembly_list.include?(workspace_name)
    post_body.merge!(:workspace_name => workspace_name)
  end

  post rest_url("assembly/create_workspace"), post_body
end

#delete_and_destroy(context_params) ⇒ Object



805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
# File 'lib/commands/common/thor/assembly_workspace.rb', line 805

def delete_and_destroy(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([:option_1!],method_argument_names)
  assembly_name = get_name(assembly_or_workspace_id)

  unless options.force?
    # Ask user if really want to delete assembly, if not then return to dtk-shell without deleting
    #used form "+'?' because ?" confused emacs ruby rendering
    what = "service"
    return unless Console.confirmation_prompt("Are you sure you want to delete and destroy #{what} '#{assembly_name}' and its nodes"+'?')
  end

  #purge local clone
  response = purge_clone_aux(:all,:assembly_module => {:assembly_name => assembly_name})
  return response unless response.ok?

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :subtype => :instance
  }

  response = post rest_url("assembly/delete"), post_body

  # when changing context send request for getting latest assemblies instead of getting from cache
  # @@invalidate_map << :assembly
  response
end

#delete_and_destroy_aux(context_params) ⇒ Object



331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
# File 'lib/commands/common/thor/assembly_workspace.rb', line 331

def delete_and_destroy_aux(context_params)
  assembly_name = context_params.retrieve_arguments([:option_1!],method_argument_names)

  if assembly_name.to_s =~ /^[0-9]+$/
    assembly_id = assembly_name
  else
    assembly_id = get_assembly_id(assembly_name)
  end

  if !options.force? && !options.y?
    msg =
      if options.recursive?
        "Are you sure you want to delete and destroy target instance and its associated service instances"
      else
        "Are you sure you want to delete and destroy service '#{assembly_name}' and its nodes"
      end

    return unless Console.confirmation_prompt(msg+'?')
  end

  unsaved_modules = check_if_unsaved_cmp_module_changes(assembly_id)
  unless unsaved_modules.empty?
    return unless Console.confirmation_prompt("Deleting this service will cause unsaved changes in component module(s) '#{unsaved_modules.join(',')}' to be lost. Do you still want to proceed"+'?')
  end

  assembly_changed = check_if_unsaved_assembly_changes(assembly_id, assembly_name)
  if assembly_changed == true
    return unless Console.confirmation_prompt("You made some changes in assembly or it's workflow that will be lost if you delete this service. Do you still want to proceed"+'?')
  end

  # purge local clone
  response = purge_clone_aux(:all,:assembly_module => {:assembly_name => assembly_name})
  return response unless response.ok?

  post_body = {
    :assembly_id => assembly_id,
    :subtype     => :instance
  }
  post_body.merge!(:recursive => options.recursive) if options.recursive?

  action = options.force? ? 'delete' : 'delete_using_workflow'
  response = post rest_url("assembly/#{action}"), post_body

  response
end

#delete_aux(context_params) ⇒ Object



1058
1059
1060
1061
1062
1063
1064
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1058

def delete_aux(context_params)
  if context_params.is_last_command_eql_to?(:node)
    delete_node_aux(context_params)
  elsif context_params.is_last_command_eql_to?(:component)
    delete_component_aux(context_params)
  end
end

#delete_component_aux(context_params, opts = {}) ⇒ Object



1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1100

def delete_component_aux(context_params, opts = {})
  assembly_or_workspace_id, node_id, node_name, component_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:node_id, :node_name, :option_1!],method_argument_names)

  if !options.force? && !options.y?
    what = "component"
    return unless Console.confirmation_prompt("Are you sure you want to delete #{what} '#{component_id}'"+'?')
  end

  full_path = component_id.clone
  if node_id.nil? && !(component_id.to_s =~ /^[0-9]+$/)
    if component_id.to_s.include?('/')
      cmp_match = component_id.match(/([\w-]*)\/(.*)/)
      node_id, component_id = cmp_match[1], cmp_match[2]
      node_name = node_id
    else
      # TODO: update server so dont have to pass in 'assembly_wide'
      node_id = node_name = 'assembly_wide'
    end
  end

  task_action = "#{full_path}.delete"
  task_params_string = nil
  # support 'converge' task action as synonym for 'create'
  task_action = 'create' if task_action && task_action.eql?('converge')

  # parse params and return format { 'p_name1' => 'p_value1' , 'p_name2' => 'p_value2' }
  task_params = parse_params?(task_params_string)||{}

  # match if sent node/component
  if task_action_match = task_action.match(/(^[\w\-\:]*)\/(.*)/)
    node, task_action = $1, $2
    task_params.merge!("node" => node)
  end

  task_params['node'] ||= node_name if node_name

  post_body = PostBody.new(
    :assembly_id  => assembly_or_workspace_id,
    :commit_msg?  => options.commit_msg,
    :task_action? => task_action,
    :task_params? => task_params,
    :component_id => component_id
  )
  post_body.merge!(:noop_if_no_action => opts[:noop_if_no_action])# if opts[:noop_if_no_action]
  post_body.merge!(:cmp_full_name => "#{node_name}/#{component_id}") if (node_name && !(component_id.to_s =~ /^[0-9]+$/))
  post_body.merge!(:node_id => node_id) if node_id

  # response = post rest_url("assembly/exec"), post_body
  action = options.force? ? 'delete_component' : 'delete_component_using_workflow'
  response = post(rest_url("assembly/#{action}"), post_body)
  return response unless response.ok?

  response_data = response.data

  if violations = response_data['violations']
    OsUtil.print("The following violations were found; they must be corrected before workspace can be converged", :red)
    resp = DTK::Client::Response.new(:assembly, { "status" => 'ok', "data" => violations })
    return opts[:internal_trigger] ? { :violations => resp } : resp.render_table(:violation)
  end

  if confirmation_message = response_data["confirmation_message"]
    return unless Console.confirmation_prompt("Workspace service is stopped, do you want to start it"+'?')

    response = post rest_url("assembly/exec"), post_body.merge!(:start_assembly => true, :skip_violations => true)
    return response unless response.ok?

    response_data = response.data
  end

  if message = response_data["message"]
    OsUtil.print(message, :yellow)
    return
  end

  return Response::Ok.new()
end

#delete_node_aux(context_params) ⇒ Object



1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1066

def delete_node_aux(context_params)
  assembly_or_workspace_id, node_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1!],method_argument_names)
  if !options.force? && !options.y?
    what = "node"
    return unless Console.confirmation_prompt("Are you sure you want to delete and destroy #{what} '#{node_id}'"+'?')
  end

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :node_id => node_id
  }

  action = options.force? ? 'delete_node' : 'delete_node_using_workflow'
  response = post(rest_url("assembly/#{action}"),post_body)
  response
end

#delete_node_group_aux(context_params) ⇒ Object



1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1083

def delete_node_group_aux(context_params)
  assembly_or_workspace_id, node_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1!],method_argument_names)

  if !options.force? && !options.y?
    what = "node"
    return unless Console.confirmation_prompt("Are you sure you want to delete and destroy #{what} '#{node_id}'"+'?')
  end

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :node_id => node_id
  }
  action = options.force? ? 'delete_node_group' : 'delete_node_group_using_workflow'
  response = post(rest_url("assembly/#{action}"),post_body)
  response
end

#deploy_aux(context_params) ⇒ Object



1709
1710
1711
1712
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1709

def deploy_aux(context_params)
  new_context_params = get_deploy_or_stage_context(context_params, options)
  ContextRouter.routeTask(:service_module, "deploy", new_context_params, @conn)
end

#destroy_and_reset_nodes_aux(context_params) ⇒ Object



1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1046

def destroy_and_reset_nodes_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)
  unless options.force?
    return unless Console.confirmation_prompt("Are you sure you want to destroy and reset all nodes in the workspace"+'?')
  end

  post_body = {
    :assembly_id => assembly_or_workspace_id
  }
  response = post(rest_url("assembly/destroy_and_reset_nodes"),post_body)
end

#edit_attributes_aux(context_params) ⇒ Object



479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
# File 'lib/commands/common/thor/assembly_workspace.rb', line 479

def edit_attributes_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)
  context_params.forward_options(:format => 'yaml')

  response = list_attributes_aux(context_params,:attribute_type=>:editable)
  return response unless response.ok?

  yaml_input = response.data
  edited_yaml = attributes_editor(yaml_input)
  # sending params in yaml format because marshalling fouls with some data types like nil and Booleans
  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :settings_yaml_content => edited_yaml
  }

  post rest_url("assembly/apply_attribute_settings"), post_body
end

#edit_module_aux(context_params) ⇒ Object



390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
# File 'lib/commands/common/thor/assembly_workspace.rb', line 390

def edit_module_aux(context_params)
  assembly_or_workspace_id, component_module_name = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1!],method_argument_names)

  response = prepare_for_edit_module(assembly_or_workspace_id, component_module_name)
  return response unless response.ok?

  assembly_name,component_module_id,version,repo_url,branch,commit_sha,full_module_name = response.data(:assembly_name,:module_id,:version,:repo_url,:workspace_branch,:branch_head_sha,:full_module_name)
  component_module_name = full_module_name if full_module_name

  edit_opts = {
    :automatically_clone => true,
    :pull_if_needed => false,
    :service_instance_module => true,
    :skip_if_exist_check => true,
    :assembly_module => {
      :assembly_name => assembly_name,
      :version => version
    },
    :workspace_branch_info => {
      :repo_url => repo_url,
      :branch => branch,
      :module_name => component_module_name,
      :commit_sha => commit_sha
    }
  }

  version = nil #TODO: version associated with assembly is passed in edit_opts, which is a little confusing
  edit_aux(:component_module,component_module_id,component_module_name,version,edit_opts)
end

#edit_or_create_workflow_aux(context_params, opts = {}) ⇒ Object



438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
# File 'lib/commands/common/thor/assembly_workspace.rb', line 438

def edit_or_create_workflow_aux(context_params,opts={})
  option_1 = (opts[:create] ? :option_1! : :option_1)
  assembly_or_workspace_id, workflow_name = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,option_1],method_argument_names)
  post_body = {
    :assembly_id       => assembly_or_workspace_id,
    :module_type       => 'service_module',
    :modification_type => 'workflow'
  }
  if workflow_name
    post_body.merge!(:task_action => workflow_name)
  end
  if opts[:create]
    post_body.merge!(:create => true)
    post_body.merge!(:base_task_action => opts[:create_from]) if opts[:create_from]
  end
  response = post rest_url("assembly/prepare_for_edit_module"), post_body
  return response unless response.ok?

  assembly_name,service_module_id,service_module_name,version,repo_url,branch,branch_head_sha,edit_file = response.data(:assembly_name,:module_id,:full_module_name,:version,:repo_url,:workspace_branch,:branch_head_sha,:edit_file)
  edit_opts = {
    :command => 'edit-workflow',
    :automatically_clone => true,
    :assembly_module => {
      :assembly_name => assembly_name,
      :version => version
    },
    :workspace_branch_info => {
      :repo_url => repo_url,
      :branch => branch,
      :module_name => service_module_name
    },
    :commit_sha => branch_head_sha,
    :pull_if_needed => true,
    :modification_type => :workflow,
    :edit_file => edit_file
  }
  edit_opts.merge!(:task_action => workflow_name) if workflow_name
  version = nil #TODO: version associated with assembly is passed in edit_opts, which is a little confusing
  edit_aux(:service_module,service_module_id,service_module_name,version,edit_opts)
end

#exec_aux(context_params, opts = {}) ⇒ Object



209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/commands/common/thor/assembly_workspace.rb', line 209

def exec_aux(context_params, opts = {})
  assembly_or_workspace_id, task_action, task_params_string = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID, :option_1!, :option_2], method_argument_names)

  # support 'converge' task action as synonym for 'create'
  task_action = 'create' if task_action && task_action.eql?('converge')

  # parse params and return format { 'p_name1' => 'p_value1' , 'p_name2' => 'p_value2' }
  task_params = parse_params?(task_params_string)||{}

  # match if sent node/component
  if task_action_match = task_action.match(/(^[\w\-\:]*)\/(.*)/)
    node, task_action = $1, $2
    task_params.merge!("node" => node)
  end

  post_body = PostBody.new(
    :assembly_id  => assembly_or_workspace_id,
    :commit_msg?  => options.commit_msg,
    :task_action? => task_action,
    :task_params? => task_params
  )
  post_body.merge!(:noop_if_no_action => opts[:noop_if_no_action]) if opts[:noop_if_no_action]
  response = post rest_url("assembly/exec"), post_body
  return response unless response.ok?

  response_data = response.data

  if violations = response_data['violations']
    OsUtil.print("The following violations were found; they must be corrected before workspace can be converged", :red)
    resp = DTK::Client::Response.new(:assembly, { "status" => 'ok', "data" => violations })
    return opts[:internal_trigger] ? { :violations => resp } : resp.render_table(:violation)
  end

  if confirmation_message = response_data["confirmation_message"]
    message_text = 
      if confirmation_message_text = response_data["confirmation_message_text"]
         confirmation_message_text
      else
        "Workspace service is stopped, do you want to start it"
      end
    return unless Console.confirmation_prompt("#{message_text}"+'?')

    response = post rest_url("assembly/exec"), post_body.merge!(:start_assembly => true, :skip_violations => true)
    return response unless response.ok?

    response_data = response.data
  end

  if message = response_data["message"]
    OsUtil.print(message, :yellow)
    return
  end

  return Response::Ok.new()
end

#exec_sync_aux(context_params) ⇒ Object



265
266
267
268
269
270
271
272
273
274
275
276
# File 'lib/commands/common/thor/assembly_workspace.rb', line 265

def exec_sync_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID], method_argument_names)

  response = exec_aux(context_params, {:internal_trigger => true})
  return response if (response.is_a?(Response) && !response.ok?) || response.nil?

  if violations_response = response[:violations]
    return violations_response.render_table(:violation)
  end

  task_status_stream(assembly_or_workspace_id)
end

#execute_ad_hoc_action_aux(context_params) ⇒ Object

desc “SERVICE-NAME/ID execute-action COMPONENT-INSTANCE [ACTION-NAME [ACTION-PARAMS]]”



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'lib/commands/common/thor/assembly_workspace.rb', line 190

def execute_ad_hoc_action_aux(context_params)
  assembly_or_workspace_id,component_id,method_name,action_params_string = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1!,:option_2,:option_3],method_argument_names)

  action_params = parse_params?(action_params_string)

  post_body = {
    :assembly_id  => assembly_or_workspace_id,
    :component_id => component_id 
  }
  post_body.merge!(:method_name => method_name) if method_name
  post_body.merge!(:action_params => action_params) if action_params

  response = post rest_url("assembly/ad_hoc_action_execute"), post_body
  return response unless response.ok?

  task_status_stream(assembly_or_workspace_id, :ignore_stage_level_info => true)
  nil
end

#execute_tests_aux(context_params) ⇒ Object

Raises:



1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1220

def execute_tests_aux(context_params)
  assembly_or_workspace_id,node_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:node_id],method_argument_names)

  execute_test_tries = 30
  execute_test_sleep = 1

  if !options['timeout'].nil?
    begin
      execute_test_tries = Integer(options['timeout'])
    rescue
      raise DtkValidationError, "Timeout value is not valid"
    end
  end

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :components => options["component"]
  }
  post_body[:node_id] = node_id unless node_id.nil?

  response = post(rest_url("assembly/initiate_execute_tests"),post_body)

  raise DtkValidationError, response.data(:errors) if response.data(:errors)
  return response unless response.ok?

  action_results_id = response.data(:action_results_id)
  end_loop, response, count, ret_only_if_complete = false, nil, 0, true

  until end_loop do
    post_body = {
      :action_results_id => action_results_id,
      :return_only_if_complete => ret_only_if_complete,
      :disable_post_processing => false,
      :sort_key => "module_name"
    }

    response = post(rest_url("assembly/get_action_results"),post_body)
    count += 1

    if count > execute_test_tries or response.data(:is_complete)
      response.data(:results).each do |res|
        if res.key?('test_error')
          test_error = res.delete('test_error')
          res['errors'] = { "message" => test_error, "type" => "test_error" }
        end
      end
      end_loop = true
    else
      #last time in loop return whetever is there
      if count == execute_test_tries
        ret_only_if_complete = false
      end
      sleep execute_test_sleep
    end
  end

  if (response.data(:results).empty? && options['timeout'].nil?)
    raise DtkValidationError, "Could not finish execution of tests in default timeframe (#{execute_test_tries} seconds). Try again with passing --timeout TIMEOUT parameter"
  elsif (response.data(:results).empty? && !options['timeout'].nil?)
    raise DtkValidationError, "Could not finish execution of tests in set timeframe (#{execute_test_tries} seconds). Try again with increasing --timeout TIMEOUT parameter"
  else
    response.print_error_table = true
    response.set_data(*response.data(:results))
    response.render_table(:execute_tests_data_v2)
  end
end

#get_assembly_id(assembly_name) ⇒ Object

Raises:



45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/commands/common/thor/assembly_workspace.rb', line 45

def get_assembly_id(assembly_name)
  assembly_id = nil
  list = CommandBaseThor.get_cached_response(:service, "assembly/list", {})

  list.data.each do |item|
    if item["display_name"] == assembly_name
      assembly_id = item["id"]
      break
    end
  end

  raise DtkError,"[ERROR] Illegal name (#{assembly_name}) for service." unless assembly_id
  assembly_id
end

#get_deploy_or_stage_context(context_params, options) ⇒ Object

Raises:



1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1714

def get_deploy_or_stage_context(context_params, options)
  assembly_template_name, instance_name = context_params.retrieve_arguments([:option_1!, :option_2], method_argument_names)

  service_module_name, assembly, assembly_name = assembly_template_name.split('/')
  raise DtkValidationError, "Service module name is ill-formed! Should contain <namespace>:<name>" unless service_module_name =~ /(^[^:]+):([^:]+$)/

  unless assembly_name
    assembly_name = assembly
    assembly = nil
  end
  raise DtkValidationError, "ASSEMBLY-NAME parameter is ill-formed! Should contain <namespace>:<service_name>/assembly/<assembly_name> or <namespace>:<service_name>/<assembly_name>" if assembly && !assembly.eql?('assembly')

  new_context_params = DTK::Shell::ContextParams.new
  new_context_params.add_context_to_params(:service_module, :service_module)
  new_context_params.add_context_name_to_params(:service_module, :service_module, service_module_name)
  new_context_params.method_arguments = [assembly_name]
  new_context_params.method_arguments << instance_name if instance_name

  fwd_opts         = {}
  node_size        = options.node_size
  os_type          = options.os_type
  version          = options.version
  no_auto_complete = options.no_auto_complete
  is_target        = options.is_target?
  parent_service   = options.parent_service
  do_not_encode    = options.do_not_encode
  stream_results   = options['stream-results']

  fwd_opts.merge!(:node_size => node_size) if node_size
  fwd_opts.merge!(:os_type => os_type) if os_type
  fwd_opts.merge!(:version => version) if version
  fwd_opts.merge!(:no_auto_complete => no_auto_complete) if no_auto_complete
  fwd_opts.merge!(:is_target => is_target) if is_target
  fwd_opts.merge!(:parent_service => parent_service) if parent_service
  fwd_opts.merge!(:do_not_encode => do_not_encode) if do_not_encode
  fwd_opts.merge!('stream-results' => stream_results) if stream_results
  new_context_params.forward_options(fwd_opts)

  new_context_params
end

#get_name(assembly_or_workspace_id) ⇒ Object



41
42
43
# File 'lib/commands/common/thor/assembly_workspace.rb', line 41

def get_name(assembly_or_workspace_id)
  get_name_from_id_helper(assembly_or_workspace_id)
end

#get_netstats_aux(context_params) ⇒ Object

Raises:



1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1177

def get_netstats_aux(context_params)
  netstat_tries = 6
  netstat_sleep = 0.5

  assembly_or_workspace_id,node_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:node_id],method_argument_names)

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :node_id => node_id
  }

  response = post(rest_url("assembly/initiate_get_netstats"),post_body)
  raise DtkValidationError, response.data(:errors) if response.data(:errors)
  return response unless response.ok?

  action_results_id = response.data(:action_results_id)
  end_loop, response, count, ret_only_if_complete = false, nil, 0, true

  until end_loop do
    post_body = {
      :action_results_id => action_results_id,
      :return_only_if_complete => ret_only_if_complete,
      :disable_post_processing => false,
      :sort_key => "port"
    }
    response = post(rest_url("assembly/get_action_results"),post_body)
    count += 1
    if count > netstat_tries or response.data(:is_complete)
      end_loop = true
    else
      #last time in loop return whetever is teher
      if count == netstat_tries
        ret_only_if_complete = false
      end
      sleep netstat_sleep
    end
  end

  #TODO: needed better way to render what is one of the fields which is any array (:results in this case)
  response.set_data(*response.data(:results))
  response.render_table(:netstat_data)
end

#get_ps_aux(context_params) ⇒ Object

Raises:



1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1287

def get_ps_aux(context_params)
  get_ps_tries = 6
  get_ps_sleep = 0.5

  assembly_or_workspace_id,node_id,filter_pattern = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:node_id, :option_1],method_argument_names)

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :node_id => node_id
  }

  response = post(rest_url("assembly/initiate_get_ps"),post_body)
  raise DtkValidationError, response.data(:errors) if response.data(:errors)
  return response unless response.ok?

  action_results_id = response.data(:action_results_id)
  end_loop, response, count, ret_only_if_complete = false, nil, 0, true

  until end_loop do
    post_body = {
      :action_results_id => action_results_id,
      :return_only_if_complete => ret_only_if_complete,
      :disable_post_processing => false,
      :sort_key => "pid"
    }
    response = post(rest_url("assembly/get_action_results"),post_body)

    count += 1
    if count > get_ps_tries or response.data(:is_complete)
      end_loop = true
    else
      #last time in loop return whetever is teher
      if count == get_ps_tries
        ret_only_if_complete = false
      end
      sleep get_ps_sleep
    end
  end
  filtered = response.data(:results).flatten

  # Amar: had to add more complex filtering in order to print node id and node name in output,
  #       as these two values are sent only in the first element of node's processes list
  unless (filter_pattern.nil? || !options["filter"])
    node_id = ""
    node_name = ""
    filtered.reject! do |r|
      match = r.to_s.include?(filter_pattern)
      if r["node_id"] && r["node_id"] != node_id
        node_id = (r["node_id"] && r["node_id"].to_s)
        node_name = r["node_name"]
      end

      if match && !node_id.empty?
        r["node_id"] = node_id
        r["node_name"] = node_name
        node_id = ""
        node_name = ""
      end
      !match
    end
  end

  response.set_data(*filtered)
  response.render_table(:ps_data)
end

#grant_access_aux(context_params) ⇒ Object



832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
# File 'lib/commands/common/thor/assembly_workspace.rb', line 832

def grant_access_aux(context_params)
  service_id, system_user, rsa_key_name, path_to_rsa_pub_key = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID, :option_1!, :option_2!, :option_3],method_argument_names)

  path_to_rsa_pub_key ||= SSHUtil.default_rsa_pub_key_path()
  rsa_pub_key_content = SSHUtil.read_and_validate_pub_key(path_to_rsa_pub_key)

  response = post_file rest_url("assembly/initiate_ssh_pub_access"), {
    :agent_action => :grant_access,
    :system_user => system_user,
    :rsa_pub_name => rsa_key_name,
    :rsa_pub_key => rsa_pub_key_content,
    :assembly_id => service_id,
    :target_nodes => options.nodes
  }

  return response unless response.ok?

  action_results_id = response.data(:action_results_id)

  print_action_results(action_results_id)

  nil
end

#grep_aux(context_params) ⇒ Object



1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1474

def grep_aux(context_params)
  if context_params.is_there_identifier?(:node)
    mapping = [REQ_ASSEMBLY_OR_WS_ID,:option_1!,:node_id!,:option_2!]
    is_node = true
  else
    mapping = [REQ_ASSEMBLY_OR_WS_ID,:option_1!,:option_2!,:option_3!]
  end

  assembly_or_workspace_id,log_path,node_pattern,grep_pattern = context_params.retrieve_arguments(mapping,method_argument_names)

  begin
    post_body = {
      :assembly_id         => assembly_or_workspace_id,
      :subtype             => 'instance',
      :log_path            => log_path,
      :node_pattern        => node_pattern,
      :grep_pattern        => grep_pattern,
      :stop_on_first_match => options.first?
    }

    response = post rest_url("assembly/initiate_grep"), post_body
    raise DtkValidationError, response.data(:errors) if response.data(:errors)

    unless response.ok?
      raise DtkError, "Error while getting log from server. Message: #{response['errors'][0]['message'].nil? ? 'There was no successful response.' : response['errors'].first['message']}"
    end

    action_results_id = response.data(:action_results_id)
    action_body = {
      :action_results_id => action_results_id,
      :return_only_if_complete => true,
      :disable_post_processing => true
    }

    # number of re-tries
    3.downto(1) do
      response = post(rest_url("assembly/get_action_results"),action_body)

      # server has found an error
      unless response.data(:results).nil?
        if response.data(:results)['error']
          raise DtkError, response.data(:results)['error']
        end
      end

      break if response.data(:is_complete)

      sleep(1)
    end

    raise DtkError, "Error while logging there was no successful response after 3 tries." unless response.data(:is_complete)

    console_width = ENV["COLUMNS"].to_i

    response.data(:results).each do |r|
      raise DtkError, r[1]["error"] if r[1]["error"]

      message_colorized = OsUtil.colorize(r[0].inspect, :green)

      if r[1]["output"].empty?
        puts "NODE-ID #{message_colorized} - Log does not contain data that matches you pattern #{grep_pattern}!"
      else
        puts "\n"
        console_width.times do
          print "="
        end
        puts "NODE-ID: #{message_colorized}\n" unless is_node
        puts "Log output:\n"
        puts r[1]["output"].gsub(/`/,'\'')
      end
    end
  rescue DtkError => e
    raise e
  end
end

#info_aux(context_params) ⇒ Object



774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
# File 'lib/commands/common/thor/assembly_workspace.rb', line 774

def info_aux(context_params)
  assembly_or_workspace_id, node_id, component_id, attribute_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID, :node_id, :component_id, :attribute_id],method_argument_names)
  is_json_return = context_params.get_forwarded_options[:json_return] || false

  # return only node group info if triggered from node group
  is_node_group = true if context_params.shadow_entity_name == 'node_group'

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :node_id     => node_id,
    :component_id => component_id,
    :attribute_id => attribute_id,
    :subtype     => :instance,
    :json_return => is_json_return
  }

  post_body.merge!(:only_node_group_info => true) if is_node_group
  resp = post rest_url("assembly/info"), post_body

  # if waiting for json response we do not need to render rest of data
  return resp if is_json_return

  if (component_id.nil? && !node_id.nil?)
    resp.render_workspace_node_info("node")
  elsif (component_id && node_id)
    resp.render_workspace_node_info("component")
  else
    return resp
  end
end


684
685
686
687
688
689
690
691
692
# File 'lib/commands/common/thor/assembly_workspace.rb', line 684

def link_attribute_aux(context_params)
  assembly_or_workspace_id, target_attr_term, source_attr_term = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1!,:option_2!],method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :target_attribute_term => target_attr_term,
    :source_attribute_term => source_attr_term
  }
  post rest_url("assembly/add_ad_hoc_attribute_links"), post_body
end


647
648
649
650
651
652
653
654
655
# File 'lib/commands/common/thor/assembly_workspace.rb', line 647

def link_attributes_aux(context_params)
  assembly_id, target_attr_term, source_attr_term = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1!,:option_2!],method_argument_names)
  post_body = {
    :assembly_id => assembly_id,
    :target_attribute_term => target_attr_term,
    :source_attribute_term => source_attr_term
  }
  post rest_url("assembly/add_ad_hoc_attribute_links"), post_body
end


726
727
728
729
# File 'lib/commands/common/thor/assembly_workspace.rb', line 726

def link_components_aux(context_params)
  post_body = link_unlink_components__ret_post_body(context_params)
  post rest_url('assembly/add_service_link'), post_body
end

#link_unlink_components__ret_post_body(context_params) ⇒ Object



731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
# File 'lib/commands/common/thor/assembly_workspace.rb', line 731

def link_unlink_components__ret_post_body(context_params)
  if context_params.is_last_command_eql_to?(:component)
    assembly_or_workspace_id, dep_cmp, antec_cmp, dependency_name = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID, :component_id!, :option_1!, :option_2], method_argument_names)
  else
    assembly_or_workspace_id, dep_cmp, antec_cmp, dependency_name = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID, :option_1!, :option_2!, :option_3], method_argument_names)
  end

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :input_component_id => dep_cmp,
    :output_component_id => antec_cmp
  }
  post_body.merge!(:dependency_name => dependency_name) if dependency_name

  post_body
end

#list_actions_aux(context_params) ⇒ Object



179
180
181
182
183
184
185
186
187
# File 'lib/commands/common/thor/assembly_workspace.rb', line 179

def list_actions_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)

  post_body = { :assembly_id  => assembly_or_workspace_id }
  post_body.merge!(:type => options.type) if options.type?

  response = post rest_url("assembly/list_actions"), post_body
  response.render_table('service_actions')
end

#list_ad_hoc_actions_aux(context_params) ⇒ Object



167
168
169
170
171
172
173
174
175
176
177
# File 'lib/commands/common/thor/assembly_workspace.rb', line 167

def list_ad_hoc_actions_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)

  post_body = {
    :assembly_id  => assembly_or_workspace_id,
    :type         => options.summary? ? :component_type : :component_instance  
  }

  response = post rest_url("assembly/ad_hoc_action_list"), post_body
  response.render_table()
end

#list_attributes_aux(context_params, opts = {}) ⇒ Object



674
675
676
677
# File 'lib/commands/common/thor/assembly_workspace.rb', line 674

def list_attributes_aux(context_params,opts={})
  context_params.method_arguments = ["attributes"]
  list_aux(context_params,opts)
end

#list_aux(context_params, opts = {}) ⇒ Object



1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1578

def list_aux(context_params,opts={})
  assembly_or_workspace_id, node_id, component_id, attribute_id, about = context_params.retrieve_arguments([[:service_id!, :workspace_id],:node_id,:component_id,:attribute_id,:option_1],method_argument_names)
  detail_to_include = nil
  format = nil
  post_options = Hash.new

  # use_default is used if we want to use provided data_type and not data_type returned from server
  use_default = false

  # if list method is called outside of dtk-shell and called for workspace context (dtk workspace list-nodes)
  # without workspace identifier, we will set 'workspace' as identifier (dtk workspace workspace list-nodes)
  assembly_or_workspace_id = 'workspace' if (context_params.is_last_command_eql_to?(:workspace) && assembly_or_workspace_id.nil?)

  #TODO: looking for cleaner way of showing which ones are using the default datatype passed back from server;
  #might use data_type = DynamicDatatype
  if about
    case about
      when "nodes"
        data_type = :node
      when "components"
        data_type = :component
        if options.deps?
          detail_to_include = [:component_dependencies]
        end
      when "attributes"
        node_id      = options.node unless node_id
        component_id = options.component unless component_id
        attribute_id = options.attribute unless attribute_id

        data_type = (options.links? ? :workspace_attribute_w_link : :workspace_attribute)
        edit_attr_format = context_params.get_forwarded_options()[:format] if context_params.get_forwarded_options()
        if tags = options.tags
          post_options.merge!(:tags => tags.split(','))
        end
        if format = (options.format || edit_attr_format)
          post_options.merge!(:format => format)
          #dont need to compute links if using a format
        elsif options.links?
          detail_to_include = [:attribute_links]
        end
        if opts[:attribute_type]
          post_options.merge!(:attribute_type => opts[:attribute_type])
        end
      when "modules"
         detail_to_include = [:version_info]
         data_type = nil #TODO: DynamicDatatype
      when "tasks"
        data_type = :task
      else
        raise_validation_error_method_usage('list')
    end
  end

  post_body = {
    :assembly_id  => assembly_or_workspace_id,
    :node_id      => node_id,
    :component_id => component_id,
    :attribute_id => attribute_id,
    :subtype      => 'instance',
  }.merge(post_options)

  post_body.merge!(:detail_to_include => detail_to_include) if detail_to_include
  rest_endpoint = "assembly/info_about"

  if context_params.is_last_command_eql_to?(:attribute)
    raise DtkError, "Not supported command for current context level." if attribute_id
    about, data_type = get_type_and_raise_error_if_invalid(about, "attributes", ["attributes"])
  elsif context_params.is_last_command_eql_to?(:component)
    if component_id
      about, data_type = get_type_and_raise_error_if_invalid(about, "attributes", ["attributes"])
    else
      about, data_type = get_type_and_raise_error_if_invalid(about, "components", ["attributes", "components"])
    end
  elsif context_params.is_last_command_eql_to?(:node)
    if node_id
      about, data_type = get_type_and_raise_error_if_invalid(about, "components", ["attributes", "components"])
    else
      about, data_type = get_type_and_raise_error_if_invalid(about, "nodes", ["attributes", "components", "nodes"])
    end
  else
    if assembly_or_workspace_id
      about, data_type = get_type_and_raise_error_if_invalid(about, "nodes", ["attributes", "components", "nodes", "modules","tasks"])

      if data_type.to_s.eql?("component")
        data_type = nil #DynamicDatatype
      end
      #TODO: need to cleanup that data_type set in multiple places
      if about == "attributes"
        data_type = (options.links? ? :workspace_attribute_w_link : :workspace_attribute)
      end
    else
      data_type = :assembly
      post_body = { :subtype  => 'instance', :detail_level => 'nodes' }
      rest_endpoint = "assembly/list"
    end
  end

  post_body[:about] = about
  response = post rest_url(rest_endpoint), post_body

  # set render view to be used
  unless format
    response.render_table(data_type, use_default)
  end

  response
end


748
749
750
751
752
753
754
755
756
757
758
759
760
761
# File 'lib/commands/common/thor/assembly_workspace.rb', line 748

def list_component_links_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id
  }
  data_type = :service_link
  if context_params.is_last_command_eql_to?(:component)
    component_id = context_params.retrieve_arguments([:component_id!],method_argument_names)
    post_body.merge!(:component_id => component_id, :context => "component")
    data_type = :service_link_from_component
  end
  response = post rest_url("assembly/list_service_links"), post_body
  response.render_table(data_type)
end

#list_components_aux(context_params) ⇒ Object



662
663
664
665
666
# File 'lib/commands/common/thor/assembly_workspace.rb', line 662

def list_components_aux(context_params)
  context_params.method_arguments = ["components"]
  list_aux(context_params)
  # list_assemblies(context_params)
end

#list_connections_aux(context_params) ⇒ Object



763
764
765
766
767
768
769
770
771
772
# File 'lib/commands/common/thor/assembly_workspace.rb', line 763

def list_connections_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :find_possible => true
  }
  response = post rest_url("assembly/list_connections"), post_body
  response.render_table(:possible_service_connection)
end

#list_modules_aux(context_params) ⇒ Object



668
669
670
671
672
# File 'lib/commands/common/thor/assembly_workspace.rb', line 668

def list_modules_aux(context_params)
  context_params.method_arguments = ["modules"]
  list_aux(context_params)
  # list_assemblies(context_params)
end

#list_nodes_aux(context_params) ⇒ Object



657
658
659
660
# File 'lib/commands/common/thor/assembly_workspace.rb', line 657

def list_nodes_aux(context_params)
  context_params.method_arguments = ["nodes"]
  list_aux(context_params)
end

#list_remote_module_diffs(context_params) ⇒ Object



420
421
422
423
424
425
426
427
# File 'lib/commands/common/thor/assembly_workspace.rb', line 420

def list_remote_module_diffs(context_params)
  assembly_or_workspace_id, component_module_name = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1!],method_argument_names)
  response = prepare_for_edit_module(assembly_or_workspace_id, component_module_name)
  return response unless response.ok?

  assembly_name,component_module_id,workspace_branch,commit_sha,module_branch_idh,repo_id = response.data(:assembly_name,:module_id,:workspace_branch,:branch_head_sha,:module_branch_idh,:repo_id)
  list_component_module_diffs(component_module_id, assembly_name, workspace_branch, commit_sha, module_branch_idh['guid'], repo_id)
end

#list_ssh_access_aux(context_params) ⇒ Object



876
877
878
879
880
881
882
883
884
885
# File 'lib/commands/common/thor/assembly_workspace.rb', line 876

def list_ssh_access_aux(context_params)
  service_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)

  response = post_file rest_url("assembly/list_ssh_access"), {
    :assembly_id => service_id
  }

  response.render_table(:ssh_access)
  response
end

#list_tasks_aux(context_params) ⇒ Object



679
680
681
682
# File 'lib/commands/common/thor/assembly_workspace.rb', line 679

def list_tasks_aux(context_params)
  context_params.method_arguments = ["tasks"]
  list_aux(context_params)
end

#list_violations_aux(context_params) ⇒ Object



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# File 'lib/commands/common/thor/assembly_workspace.rb', line 142

def list_violations_aux(context_params)
  assembly_or_workspace_id, action = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID, :option_1],method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id
  }
  post_body.merge!(action: action) if action
  post_body.merge!(ret_objects: true) if options.fix?
  response = post rest_url("assembly/find_violations"), post_body
  violation_table_form = response.render_table(:violation)
  unless options.fix? and !response.data.empty?
    violation_table_form
  else
    OsUtil.print("The following violations were found:", :red)
    violation_table_form.render_data
    OsUtil.print("Answer the following prompts to correct the violations:", :yellow)
    result = Violation.fix_violations(assembly_or_workspace_id, response.data) 
    result.rerun_violation_check? ? list_violations_aux(context_params) : Response::Ok.new
  end
end

#prepare_for_edit_module(assembly_or_workspace_id, component_module_name) ⇒ Object



429
430
431
432
433
434
435
436
# File 'lib/commands/common/thor/assembly_workspace.rb', line 429

def prepare_for_edit_module(assembly_or_workspace_id, component_module_name)
  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :module_name => component_module_name,
    :module_type => 'component_module'
  }
  response = post rest_url("assembly/prepare_for_edit_module"), post_body
end


162
163
164
165
# File 'lib/commands/common/thor/assembly_workspace.rb', line 162

def print_includes_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)
  response = post rest_url("assembly/print_includes"),:assembly_id => assembly_or_workspace_id
end

#promote_assembly_aux(mode, assembly_or_workspace_id, service_module_name_x = nil, assembly_template_name = nil, opts = {}) ⇒ Object

mode will be :create or :update service_module_name_x can be name or fullname (NS:MOduleName)



93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'lib/commands/common/thor/assembly_workspace.rb', line 93

def promote_assembly_aux(mode, assembly_or_workspace_id, service_module_name_x = nil, assembly_template_name = nil, opts = {})
  namespace = nil
  local_clone_dir_exists = nil

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :mode => mode.to_s
  }

  if service_module_name_x
    service_module_name = service_module_name_x
    if service_module_name_x =~ /(^[^:]+):([^:]+$)/
      namespace, service_module_name = [$1,$2]
    end
    post_body.merge!(:service_module_name => service_module_name)
  end

  namespace ||= opts[:default_namespace]
  if namespace
    local_clone_dir_exists = Helper(:git_repo).local_clone_dir_exists?(:service_module, service_module_name, :namespace => namespace)
    post_body.merge!(:namespace => namespace)
    post_body.merge!(:local_clone_dir_exists => true) if local_clone_dir_exists
  end

  post_body.merge!(:assembly_template_name => assembly_template_name) if assembly_template_name
  post_body.merge!(:use_module_namespace => true) if opts[:use_module_namespace]
  post_body.merge!(:description => opts[:description]) if opts[:description]
  response = post rest_url('assembly/promote_to_template'), post_body
  return response unless response.ok?()

  # synchronize_clone will load new assembly template into service clone on workspace (if it exists)
  commit_sha, workspace_branch, namespace, full_module_name, repo_url, version = response.data(:commit_sha, :workspace_branch, :module_namespace, :full_module_name, :repo_url, :version)
  service_module_name ||= response.data(:module_name)
  merge_warning_message = response.data(:merge_warning_message)
  opts = { :local_branch => workspace_branch, :namespace => namespace }

  if (mode == :update) || local_clone_dir_exists
    response = Helper(:git_repo).synchronize_clone(:service_module, service_module_name, commit_sha, opts)
  else
    response = Helper(:git_repo).create_clone_with_branch(:service_module, service_module_name, repo_url, workspace_branch, version, namespace)
  end
  return response unless response.ok?

  OsUtil.print("New assembly template '#{assembly_template_name}' created in service module '#{full_module_name}'.", :yellow) if mode == :create
  OsUtil.print(merge_warning_message, :yellow) if merge_warning_message

  response
end

#pull_base_component_module_aux(context_params) ⇒ Object



523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
# File 'lib/commands/common/thor/assembly_workspace.rb', line 523

def pull_base_component_module_aux(context_params)
  assembly_or_workspace_id, component_module_name = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1!],method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :module_name => component_module_name,
    :module_type => 'component_module'
  }
  post_body.merge!(:force => true) if options.force?
  response = post(rest_url("assembly/prepare_for_pull_from_base"),post_body)
  return response unless response.ok?

  if dsl_parsing_errors = response.data(:dsl_parsing_errors)
    # TODO: DTK-2206; think error message below is incorrect
    error_message = "Module '#{component_module_name}' parsing errors found:\n#{dsl_parsing_errors}\nYou can fix errors using 'edit' command from module context and invoke promote-module-updates again.\n"
    OsUtil.print(error_message, :red)
    return Response::Error.new()
  end

  assembly_name, module_id, module_name, version, base_module_branch, branch_head_sha, local_branch, namespace, repo_url, current_branch_sha = response.data(:assembly_name, :module_id, :full_module_name, :version, :workspace_branch, :branch_head_sha, :local_branch, :module_namespace, :repo_url, :current_branch_sha)
  edit_opts = {
    :assembly_module => {
      :assembly_name => assembly_name,
      :version => version
    },
    :workspace_branch_info => {
      :repo_url => repo_url,
      :branch => local_branch,
      :module_name => module_name,
      :commit_sha  => branch_head_sha
    },
    :remote_branch => base_module_branch,
    :commit_sha    => branch_head_sha,
    :current_branch_sha => current_branch_sha,
    :full_module_name => module_name,
    :skip_if_exist_check => true
  }
  opts = {:local_branch => local_branch, :namespace => namespace}

  opts.merge!(:hard_reset => true) if options.revert?
  opts.merge!(:force => true) if options.force?

  response = Helper(:git_repo).pull_changes?(:component_module, module_name, edit_opts.merge!(opts))
  return response unless response.ok?()

  edit_opts.merge!(:force_parse => true, :update_from_includes => true, :print_dependencies => true, :remote_branch => local_branch, :force_clone => true)
  response = push_clone_changes_aux(:component_module, module_id, nil, "Pull base module updates", true, edit_opts)

  unless response.ok?()
    # if parsing error on assembly module (components/attributes/link_defs integrity violations) do git reset --hard
    Helper(:git_repo).hard_reset_branch_to_sha(:component_module, module_name, edit_opts)
    return response
  end

  Response::Ok.new()
end

#purge_aux(context_params) ⇒ Object



1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1025

def purge_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)
  unless options.force?
    return unless Console.confirmation_prompt("Are you sure you want to delete and destroy all nodes in the workspace"+'?')
  end

  unsaved_modules = check_if_unsaved_cmp_module_changes(assembly_or_workspace_id)
  unless unsaved_modules.empty?
    return unless Console.confirmation_prompt("Purging the workspace will cause unsaved changes in component module(s) '#{unsaved_modules.join(',')}' to be lost. Do you still want to proceed"+'?')
  end

  # purge local clone
  response = purge_clone_aux(:all,:assembly_module => {:assembly_name => 'workspace'})
  return response unless response.ok?

  post_body = {
    :assembly_id => assembly_or_workspace_id
  }
  response = post(rest_url("assembly/purge"),post_body)
end

#push_module_updates_aux(context_params) ⇒ Object



497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
# File 'lib/commands/common/thor/assembly_workspace.rb', line 497

def push_module_updates_aux(context_params)
  assembly_or_workspace_id, component_module_name = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID, :option_1!], method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :module_name => component_module_name,
    :module_type => 'component_module'
  }
  post_body.merge!(:force => true) if options.force?
  response = post(rest_url('assembly/promote_module_updates'), post_body)
  return response unless response.ok?
  return Response::Ok.new() unless response.data(:any_updates)
  if dsl_parsing_errors = response.data(:dsl_parsing_errors)
    error_message = "Module '#{component_module_name}' parsing errors found:\n#{dsl_parsing_errors}\nYou can fix errors using 'edit' command from referenced service modules and then invoke 'push-component-module-updates' again from this context.\n"
    OsUtil.print(error_message, :red)
    return Response::NoOp.new()
  end
  module_name, namespace, branch, ff_change = response.data(:module_name, :module_namespace, :workspace_branch, :fast_forward_change)
  ff_change ||= true
  opts = { :local_branch => branch, :namespace => namespace }
  opts.merge!(:hard_reset => true) unless ff_change
  opts.merge!(:force => true) if options.force?
  response = Helper(:git_repo).pull_changes?(:component_module, module_name, opts)
  return response unless response.ok?()
  Response::Ok.new()
end

#revoke_access_aux(context_params) ⇒ Object



856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
# File 'lib/commands/common/thor/assembly_workspace.rb', line 856

def revoke_access_aux(context_params)
  service_id, system_user, rsa_key_name = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID, :option_1!, :option_2!],method_argument_names)

  response = post_file rest_url("assembly/initiate_ssh_pub_access"), {
    :agent_action => :revoke_access,
    :system_user => system_user,
    :rsa_pub_name => rsa_key_name,
    :assembly_id => service_id,
    :target_nodes => options.nodes
  }

  return response unless response.ok?

  action_results_id = response.data(:action_results_id)

  print_action_results(action_results_id)

  nil
end

#set_attribute_aux(context_params) ⇒ Object

Raises:



896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
# File 'lib/commands/common/thor/assembly_workspace.rb', line 896

def set_attribute_aux(context_params)
  if context_params.is_there_identifier?(:attribute)
    mapping = (options.unset? ? [REQ_ASSEMBLY_OR_WS_ID, :attribute_id!] : [REQ_ASSEMBLY_OR_WS_ID, :attribute_id!, :option_1!])
  else
    mapping = (options.unset? ? [REQ_ASSEMBLY_OR_WS_ID, :option_1!] : [REQ_ASSEMBLY_OR_WS_ID, :option_1!, :option_2!])
  end

  assembly_or_workspace_id, pattern, value = context_params.retrieve_arguments(mapping, method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :pattern => pattern
  }

  raise DtkValidationError, 'Please use only component-attribute (-c) or node-attribute (-n) option' if options.component_attribute? && options.node_attribute?

  # if try to set service instance attribute but using -n option to sepicify it is node attribute, say that node attribute does not exist
  raise DtkError, "[ERROR] Node attribute '#{pattern}' does not exist" if options.node_attribute? && !pattern.include?('/')

  # make sure -c and -n are used only with node or cmp attributes directly on service instance
  validate_service_instance_node_or_cmp_attrs(pattern, options) if options.component_attribute? || options.node_attribute?

  post_body.merge!(:component_attribute => true) if options.component_attribute?
  post_body.merge!(:node_attribute => true) if options.node_attribute? || context_params.is_there_identifier?(:node)
  post_body.merge!(:value => value) unless options.unset?

  response = post rest_url('assembly/set_attributes'), post_body
  return response unless response.ok?

  if r_data = response.data
    if r_data.is_a?(Hash)
      if ambiguous = r_data['ambiguous']
        unless ambiguous.empty?
          msg = "It is ambiguous whether '#{ambiguous.join(', ')}' #{ambiguous.size == 1 ? 'is' : 'are'} node or component attribute(s). Run set-attribute again with one of options -c [--component-attribute] or -n [--node-attribute]."
          raise DtkError, msg
        end
      end
    end
  end

  Response::Ok.new()
end

#set_default_target_aux(context_params) ⇒ Object



1755
1756
1757
1758
1759
1760
1761
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1755

def set_default_target_aux(context_params)
  target_instance_name = context_params.retrieve_arguments([:option_1!], method_argument_names)
  post_body = {
    :assembly_id => target_instance_name
  }
  post rest_url("assembly/set_default_target"), post_body
end

#set_required_attributes(context_params) ⇒ Object



1353
1354
1355
1356
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1353

def set_required_attributes(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)
  set_required_attributes_aux(assembly_or_workspace_id,:assembly,:instance)
end

#set_required_attributes_converge_aux(context_params, opts = {}) ⇒ Object



1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1763

def set_required_attributes_converge_aux(context_params, opts = {})
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID], method_argument_names)

  message             = " You will have to converge service instance manually!"
  attributes_response = set_required_attributes_aux(assembly_or_workspace_id, :assembly, :instance, message)
  return attributes_response if attributes_response.is_a?(Response) && !attributes_response.ok?

  response, violations = converge_aux(context_params, { :are_there_violations => true })
  return response unless response.ok?

  if violations
    forwarded_options = context_params.get_forwarded_options()
    context_params.forward_options(forwarded_options.merge!(:violations => true))
  else
    instance_name        = "/service/#{context_params.get_forwarded_options[:instance_name]}"
    opts[:instance_name] = instance_name
    DTK::Client::OsUtil.print("Service instance '#{instance_name}' deployment has been started. Changing context to '#{instance_name}'.", :green)
  end

  response
end

#set_target_aux(context_params) ⇒ Object



887
888
889
890
891
892
893
894
# File 'lib/commands/common/thor/assembly_workspace.rb', line 887

def set_target_aux(context_params)
  assembly_or_workspace_id, target_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID,:option_1!],method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :target_id => target_id
  }
  post rest_url("assembly/set_target"), post_body
end

#stage_aux(context_params) ⇒ Object



1704
1705
1706
1707
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1704

def stage_aux(context_params)
  new_context_params = get_deploy_or_stage_context(context_params, options)
  ContextRouter.routeTask(:service_module, "stage", new_context_params, @conn)
end

#start_aux(context_params) ⇒ Object



60
61
62
63
64
65
66
67
68
69
# File 'lib/commands/common/thor/assembly_workspace.rb', line 60

def start_aux(context_params)
  if context_params.is_there_identifier?(:node)
    mapping = [REQ_ASSEMBLY_OR_WS_ID,:node_id]
  else
    mapping = [REQ_ASSEMBLY_OR_WS_ID,:option_1]
  end

  assembly_or_workspace_id, node_pattern = context_params.retrieve_arguments(mapping,method_argument_names)
  assembly_start(assembly_or_workspace_id, node_pattern)
end

#stop_aux(context_params) ⇒ Object



71
72
73
74
75
76
77
78
79
80
# File 'lib/commands/common/thor/assembly_workspace.rb', line 71

def stop_aux(context_params)
  if context_params.is_there_identifier?(:node)
    mapping = [REQ_ASSEMBLY_OR_WS_ID,:node_id]
  else
    mapping = [REQ_ASSEMBLY_OR_WS_ID,:option_1]
  end

  assembly_or_workspace_id, node_pattern = context_params.retrieve_arguments(mapping,method_argument_names)
  assembly_stop(assembly_or_workspace_id, node_pattern)
end

#tail_aux(context_params) ⇒ Object



1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1358

def tail_aux(context_params)
  if context_params.is_there_identifier?(:node)
    mapping = [REQ_ASSEMBLY_OR_WS_ID,:node_id!,:option_1!,:option_2]
  else
    mapping = [REQ_ASSEMBLY_OR_WS_ID,:option_1!,:option_2!,:option_3]
  end

  assembly_or_workspace_id,log_path,node_identifier,grep_option = context_params.retrieve_arguments(mapping,method_argument_names)

  last_line = nil
  begin

    file_path = File.join('/tmp',"dtk_tail_#{Time.now.to_i}.tmp")
    tail_temp_file = File.open(file_path,"a")

    file_ready = false

    t1 = Thread.new do
      while true
        post_body = {
          :assembly_id     => assembly_or_workspace_id,
          :subtype         => 'instance',
          :start_line      => last_line,
          :node_identifier => node_identifier,
          :log_path        => log_path,
          :grep_option     => grep_option
        }

        response = post rest_url("assembly/initiate_get_log"), post_body
        raise DtkValidationError, response.data(:errors) if response.data(:errors)

        unless response.ok?
          raise DtkError, "Error while getting log from server, there was no successful response."
        end

        action_results_id = response.data(:action_results_id)
        action_body = {
          :action_results_id => action_results_id,
          :return_only_if_complete => true,
          :disable_post_processing => true
        }

        # number of re-tries
        3.times do
          response = post(rest_url("assembly/get_action_results"),action_body)

          # server has found an error
          unless response.data(:results).nil?
            if response.data(:results)['error']
              raise DtkError, response.data(:results)['error']
            end
          end

          break if response.data(:is_complete)

          sleep(1)
        end

        if response.data(:is_complete)
          # due to complicated response we change its formating
          response = response.data(:results).first[1]

          unless response["error"].nil?
            raise DtkError, response["error"]
          end

          # removing invalid chars from log
          output = response["output"].gsub(/`/,'\'')

          unless output.empty?
            file_ready = true
            tail_temp_file << output
            tail_temp_file.flush
          end

          last_line = response["last_line"]
          sleep(LOG_SLEEP_TIME_W)
        else
          file_ready = true
          tail_temp_file << "\n\nError while logging there was no successful response after 3 tries, (^C, Q) to exit. \n\n"
          tail_temp_file.flush
          tail_temp_file.close
          Thread.current.exit
        end
      end
    end

    t2 = Thread.new do
      # ramp up time
      begin
        if options.more?
          system("tail -f #{file_path} | more")
        else
          # needed ramp up time for t1 to start writting to file
          while not file_ready
            sleep(0.5)
          end
          system("less +F #{file_path}")
        end
      ensure
        # wheter application resolves normaly or is interrupted
        # t1 will be killed
        t1.exit()
      end
    end

    t1.join()
    t2.join()
  rescue Interrupt
    t2.exit()
  rescue DtkError => e
    t2.exit()
    raise e
  end
end

#task_action_detail_aw_aux(context_params) ⇒ Object



638
639
640
641
642
643
644
645
# File 'lib/commands/common/thor/assembly_workspace.rb', line 638

def task_action_detail_aw_aux(context_params)
  assembly_or_workspace_id, message_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID, :option_1!], method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :message_id => message_id
  }
  post rest_url("assembly/task_action_detail"), post_body
end

#task_status_aw_aux(context_params) ⇒ Object



599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
# File 'lib/commands/common/thor/assembly_workspace.rb', line 599

def task_status_aw_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)
  mode = 
    if options.wait?
      :refresh
    else
      if options.has_key?('mode') and options.mode.nil?
        raise DtkError::Usage.new("option --mode needs an argument")
      end
     (options.mode || :snapshot).to_sym
    end

  response = task_status_aux(mode, assembly_or_workspace_id, :assembly, :summarize => options.summarize?)

  # when executing delete-and-destroy <service_instance> and delete successfully switch to base service context
  if response.is_a?(Response) && response.ok? && response.data && response.data.first['change_context']
    MainContext.get_context.change_context(["/service/"])
    return Response::Ok.new()
  end

  if mode == :stream
    #no response if ok
    response unless response.ok?
  else
    # TODO: Hack which is necessery for the specific problem (DTK-725), 
    #       we don't get proper error message when there is a timeout doing converge
    
    unless response == true
      return response.merge("data" => [{ "errors" => {"message" => "Task does not exist for workspace."}}]) unless response["data"]
      response["data"].each do |data|
        if data["errors"]
          data["errors"]["message"] = "[TIMEOUT ERROR] Server is taking too long to respond." if data["errors"]["message"] == "error"
        end
      end
    end
    response
  end
end


721
722
723
724
# File 'lib/commands/common/thor/assembly_workspace.rb', line 721

def unlink_components_aux(context_params)
  post_body = link_unlink_components__ret_post_body(context_params)
  post rest_url("assembly/delete_service_link"), post_body
end

#unset(context_params) ⇒ Object



959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
# File 'lib/commands/common/thor/assembly_workspace.rb', line 959

def unset(context_params)
  if context_params.is_there_identifier?(:attribute)
    mapping = [[:service_id, :workspace_id!],:attribute_id!]
  else
    mapping = [[:service_id, :workspace_id!],:option_1!]
  end

  assembly_or_workspace_id, pattern, value = context_params.retrieve_arguments(mapping,method_argument_names)

  post_body = {
    :assembly_id => assembly_or_workspace_id,
    :pattern => pattern,
    :value => nil
  }
  #TODO: have this return format like assembly show attributes with subset of rows that gt changed
  post rest_url("assembly/set_attributes"), post_body
end

#validate_service_instance_node_or_cmp_attrs(pattern, options) ⇒ Object



1694
1695
1696
1697
1698
1699
1700
1701
1702
# File 'lib/commands/common/thor/assembly_workspace.rb', line 1694

def validate_service_instance_node_or_cmp_attrs(pattern, options)
  split_pattern = pattern.split('/')
  return if split_pattern.size == 2
  if options.node_attribute?
    raise DtkError, 'Please use -n option only with service instance node attributes (node_name/attribute_name)'
  elsif options.component_attribute?
    raise DtkError, 'Please use -c option only with service instance component attributes (cmp_name/attribute_name)'
  end
end

#workflow_list_aux(context_params) ⇒ Object



589
590
591
592
593
594
595
596
597
# File 'lib/commands/common/thor/assembly_workspace.rb', line 589

def workflow_list_aux(context_params)
  assembly_or_workspace_id = context_params.retrieve_arguments([REQ_ASSEMBLY_OR_WS_ID],method_argument_names)
  post_body = {
    :assembly_id => assembly_or_workspace_id
  }
  response = post(rest_url("assembly/task_action_list"),post_body)
  data_type = 'task_action'
  response.render_table(data_type)
end