Class: HRP2SVCPlugin

Inherits:
ThroughPlugin show all
Defined in:
lib/tecsgen/plugin/HRP2SVCPlugin.rb

Overview

拡張サービスコールを用いたドメイン間通信の throughプラグイン HRP2ドメインプラグインによって挿入される

Constant Summary collapse

@@generated_celltype_header =

RPCPlugin の initialize

説明は ThroughPlugin (plugin.rb) を参照
{}

Constants inherited from Plugin

Plugin::PluginArgProc

Instance Method Summary collapse

Methods inherited from ThroughPlugin

#check_plugin_arg, #gen_cdl_file, gen_post_code, #get_cell_name, #get_through_entry_port_name, #get_through_entry_port_subscript, #set_through_info, #show_tree, #subst_name

Methods inherited from Plugin

#cdl_error, #check_plugin_arg, #gen_cdl_file, #gen_ep_func?, #gen_postamble, #gen_preamble, #new_cell, #parse_plugin_arg, #print_msg, #set_locale, #set_silent

Methods inherited from Node

#cdl_error, #cdl_error2, #cdl_error3, #cdl_info, #cdl_info2, #cdl_warning, #cdl_warning2, #get_locale, #locale_str, #set_locale

Constructor Details

#initialize(cell_name, plugin_arg, next_cell, next_cell_port_name, next_cell_port_subscript, signature, celltype, caller_cell) ⇒ HRP2SVCPlugin

Returns a new instance of HRP2SVCPlugin.



89
90
91
92
93
94
95
96
97
98
# File 'lib/tecsgen/plugin/HRP2SVCPlugin.rb', line 89

def initialize(cell_name, plugin_arg, next_cell, next_cell_port_name, next_cell_port_subscript, signature, celltype, caller_cell)
  super
  @ct_name_body = "#{@ct_name}SVCBody_#{@next_cell.get_name}_#{@next_cell_port_name}".to_sym
  @ct_name = "#{@ct_name}SVCCaller_#{@next_cell.get_name}_#{@next_cell_port_name}".to_sym
  @cell_name_body = "#{@cell_name}SVCBody".to_sym
  @cell_name = "#{@cell_name}SVCCaller".to_sym
  puts "%%%% "
  p @next_cell.get_name
  p @caller_cell.get_name
end

Instance Method Details

#gen_ep_func_body(file, b_singleton, ct_name, global_ct_name, sig_name, ep_name, func_name, func_global_name, func_type, params) ⇒ Object

受け口関数の本体(C言語)を生成する

通常であれば、ジェネレータは受け口関数のテンプレートを生成する
プラグインの場合、変更する必要のないセルタイプコードを生成する
file

FILE 出力先ファイル

b_singleton

bool true if singleton

ct_name

Symbol

global_ct_name

string

sig_name

string

ep_name

string

func_name

string

func_global_name

string

func_type

class derived from Type



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
330
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
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
# File 'lib/tecsgen/plugin/HRP2SVCPlugin.rb', line 284

def gen_ep_func_body(file, b_singleton, ct_name, global_ct_name, sig_name, ep_name, func_name, func_global_name, func_type, params)
  puts "generate ep_func for #{ct_name}"

  if !HRP2KernelObjectPlugin.include_celltype?(@next_cell.get_celltype)
      # 拡張サービスコール呼出し
    if !func_type.get_type.is_a?(VoidType)
      file.print("  #{func_type.get_type_str}  retval;\n")
    end

      if !b_singleton

        file.print <<EOT
#{ct_name}_CB    *p_cellcb;
if( VALID_IDX( idx ) ){
  p_cellcb = #{global_ct_name}_GET_CELLCB(idx);
}else{
   /* エラー処理コードをここに記述 */
}

EOT
      end

      # p "celltype_name, sig_name, func_name, func_global_name"
      # p "#{ct_name}, #{sig_name}, #{func_name}, #{func_global_name}"

      delim = ""
      if !func_type.get_type.is_a?(VoidType)
        file.print("  retval = (#{func_type.get_type_str})")
      else
        file.print("  ")
      end

      # file.print( "#{@call_port_name}_#{func_name}(" )
      # svcid = SVCManage.assign_id
      new_func = false
      if SVCManage.include_func_id?("#{@ct_name_body}_#{func_name}") == false
        new_func = true
          SVCManage.set_func_id("#{@ct_name_body}_#{func_name}")
      end
      svcid = SVCManage.get_func_id("#{@ct_name_body}_#{func_name}")
      # file.print( "cal_svc( #{@ct_name_body}_#{func_name}" )
      file.print("cal_svc( #{svcid}")

      #    if ( ! b_singleton ) then
      #      file.print( " tecs_this" )
      #      delim = ","
      #    end

      i = 0
      params.each{|param|
        delim = ","
          file.printf("#{delim} #{param.get_name}")
          i += 1
      }

      while i < 5 do
        delim = ","
          file.printf("#{delim} 0")
          i += 1
      end

      file.print(" );\n")

      if !func_type.get_type.is_a?(VoidType)
        file.print("  return retval;\n")
      end

      # 拡張サービスコール本体
      if new_func
        file2 = AppFile.open("#{$gen}/#{@ct_name_body}.c")

#             if @@generated_celltype_header[ @ct_name_body ].nil?
#                 @@generated_celltype_header[ @ct_name_body ] = true
#                 p @@generated_celltype_header[ @ct_name_body ]
#                 file2.print <<EOT
# /*
#  * このファイルは tecsgen により自動生成されました
#  * このファイルを編集して使用することは、意図されていません
#  */
# /* #[<PREAMBLE>]#
#  * #[<...>]# から #[</...>]# で囲まれたコメントは編集しないでください
#  * tecsmerge によるマージに使用されます
#  *
#  * #[</PREAMBLE>]# */
#
# /* プロトタイプ宣言や変数の定義をここに書きます #_PAC_# */
# #include "#{@ct_name_body}_tecsgen.h"
#
# #ifndef E_OK
# #define  E_OK  0    /* success */
# #define  E_ID  (-18)  /* illegal ID */
# #endif
#
# EOT
#             end

          if func_type.get_type.is_a?(VoidType)
            retval_assign = ""
              retval_return = ""
          else
            retval_assign = "retval = (ER_UINT)"
              retval_return = "retval"
          end

          file2.print <<EOT
ER_UINT
#{@ct_name_body}_#{func_name}(intptr_t par1, intptr_t par2, intptr_t par3, intptr_t par4, intptr_t par5, ID cdmid)
{
  #{@ct_name_body}_CB    *p_cellcb;
#if 0
  if( VALID_IDX( idx ) ){
    p_cellcb = #{@ct_name_body}_GET_CELLCB(idx);
  }else{
     /* エラー処理コードをここに記述 */
  }
#else
  p_cellcb = NULL;
#endif

  ER_UINT retval = 0;

EOT

          num = 1
          params.each{|param|
            if param.get_declarator.get_ptr_level > 0
              if param.get_direction == :IN
                file2.print <<EOT
  if(prb_mem((void *)par#{num}, sizeof(#{param.get_type.get_type_str}), TSK_SELF, TPM_READ) != E_OK){
      return E_MACV;
  }
EOT

              elsif param.get_direction == :OUT
                file2.print <<EOT
  if(prb_mem((void *)par#{num}, sizeof(#{param.get_type.get_type_str}), TSK_SELF, TPM_WRITE) != E_OK){
      return E_MACV;
  }
EOT

              end
            end
              num += 1
          }

          file2.print"    #{retval_assign}#{@call_port_name}_#{func_name}("

          delim = ""
          num = 1
          params.each{|param|
            file2.print delim.to_s
              delim = ", "
              file2.print "(#{param.get_type.get_type_str})"
              file2.print "par" + num.to_s
              file2.print param.get_type.get_type_str_post
              num += 1
          }

          file2.print ");\n"

          if !func_type.get_type.is_a?(VoidType)
            file2.print "\n    return #{retval_return};\n"
          end
          file2.print "}\n\n"

          file2.close

          file2 = AppFile.open("#{$gen}/tecsgen.cfg")
          file2.print "\n/* Generated by HRP2SVCPlugin */\n\n"
          # TODO: スタックサイズは適当
          file2.print <<EOT
KERNEL_DOMAIN{
  DEF_SVC( #{svcid}, { TA_NULL, #{@ct_name_body}_#{func_name}, 256 } );
}
EOT
          file2.close

          file2 = AppFile.open("#{$gen}/#{@ct_name_body}_factory.h")
          file2.print "\n/* Generated by HRP2SVCPlugin */\n\n"
          file2.print <<EOT
extern ER_UINT #{@ct_name_body}_#{func_name}(intptr_t par1, intptr_t par2, intptr_t par3, intptr_t par4, intptr_t par5, ID cdmid);
EOT
          file2.close
      end
  else
      # カーネルドメインのセルは特別なことは何もせず,普通に呼び出す
    super
  end
end

#gen_plugin_decl_code(file) ⇒ Object



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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# File 'lib/tecsgen/plugin/HRP2SVCPlugin.rb', line 108

def gen_plugin_decl_code(file)
  # このセルタイプ(同じシグニチャ)は既に生成されているか?
  if !HRP2KernelObjectPlugin.include_celltype?(@next_cell.get_celltype)
    if @@generated_celltype[@ct_name_body].nil?
      @@generated_celltype[@ct_name_body] = [self]
        file2 = CFile.open("#{$gen}/#{@ct_name_body}.cdl", "w")
        file2.print <<EOT
[active]
celltype #{@ct_name_body} {
  call #{@signature.get_name} #{@call_port_name};
};
EOT
        file2.close
    else
      @@generated_celltype[@ct_name_body] << self
    end
  file.print "import( \"#{$gen}/#{@ct_name_body}.cdl\" );\n"
  end

  # このセルタイプ(同じシグニチャ)は既に生成されているか?
  if @@generated_celltype[@ct_name].nil?
    @@generated_celltype[@ct_name] = [self]
      file2 = CFile.open("#{$gen}/#{@ct_name}.cdl", "w")
      if !HRP2KernelObjectPlugin.include_celltype?(@next_cell.get_celltype)
        file2.print <<EOT
celltype #{@ct_name} {
  entry #{@signature.get_name} #{@entry_port_name};
};
EOT
      else
          # TODO inlineにした方が効率がよいが,tecsgenの生成したヘッダファイルの
          # 読込順のためにエラーとなる
        file2.print <<EOT
celltype #{@ct_name} {
  //[inline] entry #{@signature.get_name} #{@entry_port_name};
  entry #{@signature.get_name} #{@entry_port_name};
  call #{@signature.get_name} #{@call_port_name};
};
EOT
      end

      file2.close
  else
    @@generated_celltype[@ct_name] << self
  end
  file.print "import( \"#{$gen}/#{@ct_name}.cdl\" );\n"

=begin
  # TODO: send. receive 対応
  send_receive = []
  if @signature != nil then
    @signature.each_param{ |fd,param|
      dir =param.get_direction
      case dir
      when :SEND, :RECEIVE
        send_receive << [ dir, fd, param ]
      end
    }
  end
=end

=begin
composite #{@ct_name} {
  entry #{@signature.get_name} #{@entry_port_name};
  call #{@signature.get_name} #{@call_port_name};

  cell #{@ct_name}Client #{@cell_name}Client{
  };

  [active]
  cell #{@ct_name}Server #{@cell_name}Server{
      #{@call_port_name} => composite.#{@call_port_name};
  };

  composite.#{@entry_port_name} => #{@cell_name}.#{@entry_port_name};
};
=end
end

#gen_through_cell_code(file) ⇒ Object

through cell コードを生成



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
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
264
265
266
267
268
269
270
# File 'lib/tecsgen/plugin/HRP2SVCPlugin.rb', line 190

def gen_through_cell_code(file)
 # require "HRP2Cache"

 gen_plugin_decl_code(file)

 if !HRP2KernelObjectPlugin.include_celltype?(@next_cell.get_celltype)
 # セルを探す
 # path =["::",@next_cell.get_name]  # mikan namespace
 # cell = Namespace.find( path )
 # cell = Namespace.find( @next_cell.get_namespace_path )

 ##### クライアント側のセルの生成 #####
 # file.print "[domain(HRP2, \"trusted\")]"
   nest = @start_region.gen_region_str_pre file
 nest_str = "  " * nest

 # クライアント側チャンネルの生成
 # 拡張サービスコール呼出し
 file.print <<EOT
#{nest_str}  //  Client Side Channel
#{nest_str}  cell #{@ct_name} #{@cell_name}{
#{nest_str}  };

EOT

 @start_region.gen_region_str_post file
 file.print "\n\n"

 ##### サーバー側のセルの生成 #####
 nest = @end_region.gen_region_str_pre file
 nest_str = "  " * nest
 if @next_cell_port_subscript
   subscript = "[" + @next_cell_port_subscript.to_s + "]"
 else
   subscript = ""
 end

 # サーバー側チャンネルの生成
 # 拡張サービスコール本体
 file.print <<EOT

#{nest_str}  //  Server Side Channel
#{nest_str}  cell #{@ct_name_body} #{@cell_name_body}{
#{nest_str}    #{@call_port_name} = #{@next_cell.get_namespace_path.get_path_str}.#{@next_cell_port_name}#{subscript};
#{nest_str}  };
EOT

 @end_region.gen_region_str_post file

 file2 = AppFile.open("#{$gen}/tecsgen.cfg")
 file2.print "\n/* Generated by HRP2SVCPlugin */\n\n"
 file2.print <<EOT
#include "#{@ct_name_body}_factory.h"
EOT
 file2.close
 else

 ##### クライアント側のセルの生成 #####
   nest = @start_region.gen_region_str_pre file
 nest_str = "  " * nest
 if @next_cell_port_subscript
   subscript = "[" + @next_cell_port_subscript.to_s + "]"
 else
   subscript = ""
 end

 # クライアント側チャンネルの生成
 # 拡張サービスコール呼出し
 file.print <<EOT
#{nest_str}  //  Client Side Channel
#{nest_str}  cell #{@ct_name} #{@cell_name}{
#{nest_str}    #{@call_port_name} = #{@next_cell.get_namespace_path.get_path_str}.#{@next_cell_port_name}#{subscript};
#{nest_str}  };

EOT

 @start_region.gen_region_str_post file
 file.print "\n\n"

 end
end

#get_cell_namespace_pathObject

NamespacePath を得る

生成するセルの namespace path を生成する



102
103
104
105
106
# File 'lib/tecsgen/plugin/HRP2SVCPlugin.rb', line 102

def get_cell_namespace_path
#    nsp = @region.get_namespace.get_namespace_path
  nsp = @start_region.get_namespace_path
  return nsp.append(@cell_name)
end