tecscde 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (237) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.rubocop.yml +125 -0
  4. data/.rubocop_todo.yml +188 -0
  5. data/CHANGELOG.md +3 -0
  6. data/Gemfile +6 -0
  7. data/LICENSE +46 -0
  8. data/LICENSE.ja +32 -0
  9. data/README.ja.md +200 -0
  10. data/README.md +35 -0
  11. data/Rakefile +27 -0
  12. data/bin/tecscde +64 -0
  13. data/glade/tecscde-cell-property.glade +205 -0
  14. data/glade/tecscde-celltype-property.glade +172 -0
  15. data/glade/tecscde-celltype.glade +414 -0
  16. data/glade/tecscde-export.glade +161 -0
  17. data/glade/test-cell-plugin.rb +51 -0
  18. data/glade/test-cell-property.rb +35 -0
  19. data/glade/test-export.rb +35 -0
  20. data/glade/test-palette.rb +26 -0
  21. data/lib/tcflow.rb +148 -0
  22. data/lib/tecscde.rb +65 -0
  23. data/lib/tecscde/NewCell.png +0 -0
  24. data/lib/tecscde/SelectArrow.png +0 -0
  25. data/lib/tecscde/attr_tree_view.rb +253 -0
  26. data/lib/tecscde/cell_plugin_dialog.glade +294 -0
  27. data/lib/tecscde/cell_plugin_dialog.rb +89 -0
  28. data/lib/tecscde/celltype_tree_view.rb +105 -0
  29. data/lib/tecscde/change_set_control.rb +35 -0
  30. data/lib/tecscde/change_set_control/change_set.rb +32 -0
  31. data/lib/tecscde/change_set_control/change_set_manager.rb +62 -0
  32. data/lib/tecscde/command.rb +35 -0
  33. data/lib/tecscde/control.rb +491 -0
  34. data/lib/tecscde/highlighted_objects.rb +180 -0
  35. data/lib/tecscde/logger.rb +74 -0
  36. data/lib/tecscde/main_view_and_model.rb +80 -0
  37. data/lib/tecscde/palette.glade +553 -0
  38. data/lib/tecscde/palette.rb +174 -0
  39. data/lib/tecscde/preferences.glade +117 -0
  40. data/lib/tecscde/preferences.rb +44 -0
  41. data/lib/tecscde/tecs_model.rb +1137 -0
  42. data/lib/tecscde/tecs_model/hbar.rb +68 -0
  43. data/lib/tecscde/tecs_model/tm_c_port.rb +122 -0
  44. data/lib/tecscde/tecs_model/tm_c_port_array.rb +98 -0
  45. data/lib/tecscde/tecs_model/tm_cell.rb +496 -0
  46. data/lib/tecscde/tecs_model/tm_e_port.rb +126 -0
  47. data/lib/tecscde/tecs_model/tm_e_port_array.rb +78 -0
  48. data/lib/tecscde/tecs_model/tm_join.rb +293 -0
  49. data/lib/tecscde/tecs_model/tm_join_bar.rb +146 -0
  50. data/lib/tecscde/tecs_model/tm_port.rb +238 -0
  51. data/lib/tecscde/tecs_model/tm_port_array.rb +246 -0
  52. data/lib/tecscde/tecs_model/tm_region.rb +107 -0
  53. data/lib/tecscde/tecs_model/tm_uneditable.rb +68 -0
  54. data/lib/tecscde/tecs_model/vbar.rb +68 -0
  55. data/lib/tecscde/templates/_cell_info.cde.erb +15 -0
  56. data/lib/tecscde/templates/_join_info.cde.erb +28 -0
  57. data/lib/tecscde/templates/main.cde.erb +49 -0
  58. data/lib/tecscde/tm_object.rb +91 -0
  59. data/lib/tecscde/version.rb +4 -0
  60. data/lib/tecscde/view.rb +58 -0
  61. data/lib/tecscde/view/cairo_matrix.rb +90 -0
  62. data/lib/tecscde/view/canvas.rb +59 -0
  63. data/lib/tecscde/view/constants.rb +114 -0
  64. data/lib/tecscde/view/main_view.rb +1245 -0
  65. data/lib/tecsflow.rb +475 -0
  66. data/lib/tecsflow/C_parser.tab.rb +2471 -0
  67. data/lib/tecsflow/C_parser.y.rb +1087 -0
  68. data/lib/tecsflow/classes.rb +421 -0
  69. data/lib/tecsgen.rb +581 -0
  70. data/lib/tecsgen/core/C_parser.tab.rb +2477 -0
  71. data/lib/tecsgen/core/C_parser.y +1032 -0
  72. data/lib/tecsgen/core/bnf-deb.tab.rb +5193 -0
  73. data/lib/tecsgen/core/bnf.tab.rb +5193 -0
  74. data/lib/tecsgen/core/bnf.y +2211 -0
  75. data/lib/tecsgen/core/componentobj.rb +7901 -0
  76. data/lib/tecsgen/core/ctypes.rb +226 -0
  77. data/lib/tecsgen/core/expression.rb +1031 -0
  78. data/lib/tecsgen/core/gen_xml.rb +374 -0
  79. data/lib/tecsgen/core/generate.rb +5206 -0
  80. data/lib/tecsgen/core/location.rb +116 -0
  81. data/lib/tecsgen/core/messages.rb +101 -0
  82. data/lib/tecsgen/core/optimize.rb +456 -0
  83. data/lib/tecsgen/core/plugin.rb +332 -0
  84. data/lib/tecsgen/core/pluginModule.rb +165 -0
  85. data/lib/tecsgen/core/syntaxobj.rb +1234 -0
  86. data/lib/tecsgen/core/tecs_lang.rb +306 -0
  87. data/lib/tecsgen/core/tecsgen.rb +453 -0
  88. data/lib/tecsgen/core/tecsinfo.rb +860 -0
  89. data/lib/tecsgen/core/tool_info.rb +258 -0
  90. data/lib/tecsgen/core/types.rb +1632 -0
  91. data/lib/tecsgen/core/unjoin_plugin.rb +218 -0
  92. data/lib/tecsgen/core/value.rb +650 -0
  93. data/lib/tecsgen/messages/messages_console_en_US.rb +1171 -0
  94. data/lib/tecsgen/messages/messages_console_ja_JP.rb +1171 -0
  95. data/lib/tecsgen/messages/messages_file_en_US.rb +334 -0
  96. data/lib/tecsgen/messages/messages_file_ja_JP.rb +163 -0
  97. data/lib/tecsgen/plugin/ATK1AlarmPlugin.rb +196 -0
  98. data/lib/tecsgen/plugin/ATK1DelayTaskPlugin.rb +106 -0
  99. data/lib/tecsgen/plugin/ATK1EventPlugin.rb +147 -0
  100. data/lib/tecsgen/plugin/ATK1ISRPlugin.rb +174 -0
  101. data/lib/tecsgen/plugin/ATK1KernelPlugin.rb +287 -0
  102. data/lib/tecsgen/plugin/ATK1ResourcePlugin.rb +124 -0
  103. data/lib/tecsgen/plugin/ATK1TaskPlugin.rb +220 -0
  104. data/lib/tecsgen/plugin/C2TECSBridgePlugin.rb +210 -0
  105. data/lib/tecsgen/plugin/CellPlugin.rb +61 -0
  106. data/lib/tecsgen/plugin/CelltypePlugin.rb +72 -0
  107. data/lib/tecsgen/plugin/CompositePlugin.rb +66 -0
  108. data/lib/tecsgen/plugin/DomainPlugin.rb +89 -0
  109. data/lib/tecsgen/plugin/HRP2AlarmHandlerPlugin.rb +76 -0
  110. data/lib/tecsgen/plugin/HRP2Cache.rb +1 -0
  111. data/lib/tecsgen/plugin/HRP2CyclicHandlerPlugin.rb +75 -0
  112. data/lib/tecsgen/plugin/HRP2DataqueuePlugin.rb +68 -0
  113. data/lib/tecsgen/plugin/HRP2EventflagPlugin.rb +68 -0
  114. data/lib/tecsgen/plugin/HRP2FixedSizeMemoryPoolPlugin.rb +68 -0
  115. data/lib/tecsgen/plugin/HRP2HandlerPlugin.rb +117 -0
  116. data/lib/tecsgen/plugin/HRP2KernelObjectPlugin.rb +372 -0
  117. data/lib/tecsgen/plugin/HRP2ObjectPlugin.rb +94 -0
  118. data/lib/tecsgen/plugin/HRP2Plugin.rb +140 -0
  119. data/lib/tecsgen/plugin/HRP2PostHook.rb +111 -0
  120. data/lib/tecsgen/plugin/HRP2PriorityDataqueuePlugin.rb +66 -0
  121. data/lib/tecsgen/plugin/HRP2RPCPlugin.rb +319 -0
  122. data/lib/tecsgen/plugin/HRP2SVCPlugin.rb +473 -0
  123. data/lib/tecsgen/plugin/HRP2SemaphorePlugin.rb +67 -0
  124. data/lib/tecsgen/plugin/HRP2TaskPlugin.rb +200 -0
  125. data/lib/tecsgen/plugin/HRPHandlerPlugin.rb +125 -0
  126. data/lib/tecsgen/plugin/HRPKernelObjectManager.rb +72 -0
  127. data/lib/tecsgen/plugin/HRPKernelObjectPlugin.rb +333 -0
  128. data/lib/tecsgen/plugin/HRPObjectPlugin.rb +93 -0
  129. data/lib/tecsgen/plugin/HRPPlugin.rb +356 -0
  130. data/lib/tecsgen/plugin/HRPRPCPlugin.rb +407 -0
  131. data/lib/tecsgen/plugin/HRPSVCPlugin.rb +859 -0
  132. data/lib/tecsgen/plugin/HRPTaskPlugin.rb +107 -0
  133. data/lib/tecsgen/plugin/Mruby2CBridgePlugin.rb +86 -0
  134. data/lib/tecsgen/plugin/MrubyBridgeCellPlugin.rb +264 -0
  135. data/lib/tecsgen/plugin/MrubyBridgeCelltypePlugin.rb +293 -0
  136. data/lib/tecsgen/plugin/MrubyBridgeCompositePlugin.rb +49 -0
  137. data/lib/tecsgen/plugin/MrubyBridgePlugin.rb +67 -0
  138. data/lib/tecsgen/plugin/MrubyBridgeSignaturePlugin.rb +1307 -0
  139. data/lib/tecsgen/plugin/MrubyInfoBridgePlugin.rb +14 -0
  140. data/lib/tecsgen/plugin/MrubyInfoBridgeSignaturePlugin.rb +994 -0
  141. data/lib/tecsgen/plugin/MultiPlugin.rb +57 -0
  142. data/lib/tecsgen/plugin/NotifierPlugin.rb +1217 -0
  143. data/lib/tecsgen/plugin/OpaqueMarshalerPlugin.rb +81 -0
  144. data/lib/tecsgen/plugin/OpaqueRPCPlugin.rb +323 -0
  145. data/lib/tecsgen/plugin/RPCPlugin.rb +266 -0
  146. data/lib/tecsgen/plugin/RepeatCellPlugin.rb +166 -0
  147. data/lib/tecsgen/plugin/RepeatJoinPlugin.rb +130 -0
  148. data/lib/tecsgen/plugin/SharedOpaqueRPCPlugin.rb +357 -0
  149. data/lib/tecsgen/plugin/SharedRPCPlugin.rb +329 -0
  150. data/lib/tecsgen/plugin/SignaturePlugin.rb +77 -0
  151. data/lib/tecsgen/plugin/TECS2CBridgePlugin.rb +178 -0
  152. data/lib/tecsgen/plugin/TECSInfoPlugin.rb +280 -0
  153. data/lib/tecsgen/plugin/ThroughPlugin.rb +333 -0
  154. data/lib/tecsgen/plugin/TracePlugin.rb +484 -0
  155. data/lib/tecsgen/plugin/lib/GenHRP2Marshaler.rb +761 -0
  156. data/lib/tecsgen/plugin/lib/GenOpaqueMarshaler.rb +1107 -0
  157. data/lib/tecsgen/plugin/lib/GenParamCopy.rb +365 -0
  158. data/lib/tecsgen/plugin/lib/GenTransparentMarshaler.rb +683 -0
  159. data/lib/tecsgen/plugin/lib/MrubyBridgeCelltypePluginModule.rb +283 -0
  160. data/lib/tecsgen/plugin/lib/MrubyBridgeSignaturePluginModule.rb +277 -0
  161. data/lib/tecsgen/version.rb +6 -0
  162. data/samples/FigureSamples/active/active.cde +104 -0
  163. data/samples/FigureSamples/active/active.cdl +20 -0
  164. data/samples/FigureSamples/active/active.pdf +0 -0
  165. data/samples/FigureSamples/active/active.png +0 -0
  166. data/samples/FigureSamples/active/gen/tmp_C_src.c +36 -0
  167. data/samples/FigureSamples/active/gen/tmp_cygwin_tecs.h +1908 -0
  168. data/samples/FigureSamples/active/gen/tmp_plugin_post_code.cdl +0 -0
  169. data/samples/FigureSamples/allocator/allocator-internal.png +0 -0
  170. data/samples/FigureSamples/allocator/allocator.cde +171 -0
  171. data/samples/FigureSamples/allocator/allocator.cdl +58 -0
  172. data/samples/FigureSamples/allocator/allocator.png +0 -0
  173. data/samples/FigureSamples/basic/Makefile +87 -0
  174. data/samples/FigureSamples/basic/SimpleSample-trace.cdl +50 -0
  175. data/samples/FigureSamples/basic/SimpleSample.cde +91 -0
  176. data/samples/FigureSamples/basic/SimpleSample.cdl +47 -0
  177. data/samples/FigureSamples/basic/basic.cde +93 -0
  178. data/samples/FigureSamples/basic/basic.cdl +46 -0
  179. data/samples/FigureSamples/basic/basic.png +0 -0
  180. data/samples/FigureSamples/callback/callback.cde +130 -0
  181. data/samples/FigureSamples/callback/callback.cdl +29 -0
  182. data/samples/FigureSamples/callback/callback.png +0 -0
  183. data/samples/FigureSamples/carray/carray.cde +144 -0
  184. data/samples/FigureSamples/carray/carray.cdl +38 -0
  185. data/samples/FigureSamples/carray/carray.png +0 -0
  186. data/samples/FigureSamples/cearray/cearray.cde +314 -0
  187. data/samples/FigureSamples/cearray/cearray.cdl +60 -0
  188. data/samples/FigureSamples/cearray/cearray.png +0 -0
  189. data/samples/FigureSamples/composite/composite-internal.png +0 -0
  190. data/samples/FigureSamples/composite/composite.cde +216 -0
  191. data/samples/FigureSamples/composite/composite.cdl +95 -0
  192. data/samples/FigureSamples/composite/composite.png +0 -0
  193. data/samples/FigureSamples/earray/earray.cde +142 -0
  194. data/samples/FigureSamples/earray/earray.cdl +38 -0
  195. data/samples/FigureSamples/earray/earray.png +0 -0
  196. data/samples/FigureSamples/join/Makefile +87 -0
  197. data/samples/FigureSamples/join/join.cde +132 -0
  198. data/samples/FigureSamples/join/join.cdl +40 -0
  199. data/samples/FigureSamples/join/join.png +0 -0
  200. data/samples/FigureSamples/relay/Makefile +99 -0
  201. data/samples/FigureSamples/relay/relay-internal.png +0 -0
  202. data/samples/FigureSamples/relay/relay.cde +284 -0
  203. data/samples/FigureSamples/relay/relay.cdl +52 -0
  204. data/samples/FigureSamples/relay/relay.png +0 -0
  205. data/samples/FigureSamples/rpc/Makefile +123 -0
  206. data/samples/FigureSamples/rpc/rpc-expand.png +0 -0
  207. data/samples/FigureSamples/rpc/rpc.cde +245 -0
  208. data/samples/FigureSamples/rpc/rpc.png +0 -0
  209. data/samples/FigureSamples/rpc/rpc_sample.cdl +53 -0
  210. data/samples/SimpleSample/Makefile +25 -0
  211. data/samples/SimpleSample/SimpleSample/Makefile +86 -0
  212. data/samples/SimpleSample/SimpleSample/Makefile-trace +91 -0
  213. data/samples/SimpleSample/SimpleSample/README.txt +106 -0
  214. data/samples/SimpleSample/SimpleSample/SimpleSample-trace.cdl +50 -0
  215. data/samples/SimpleSample/SimpleSample/SimpleSample.cdl +45 -0
  216. data/samples/SimpleSample/SimpleSample/src/tSample.c +77 -0
  217. data/samples/SimpleSample/SimpleSample/src/tSimple.c +48 -0
  218. data/samples/SimpleSample/SimpleSample/src/tecs-types.h +27 -0
  219. data/samples/SimpleSample/SimpleSampleOpaqueRPC/Makefile +51 -0
  220. data/samples/SimpleSample/SimpleSampleOpaqueRPC/Makefile-trace +91 -0
  221. data/samples/SimpleSample/SimpleSampleOpaqueRPC/README.txt +106 -0
  222. data/samples/SimpleSample/SimpleSampleOpaqueRPC/SimpleSample-trace.cdl +80 -0
  223. data/samples/SimpleSample/SimpleSampleOpaqueRPC/SimpleSample.cdl +77 -0
  224. data/samples/SimpleSample/SimpleSampleOpaqueRPC/rSample/Makefile +112 -0
  225. data/samples/SimpleSample/SimpleSampleOpaqueRPC/rSimple/Makefile +109 -0
  226. data/samples/SimpleSample/SimpleSampleOpaqueRPC/src/tSample.c +80 -0
  227. data/samples/SimpleSample/SimpleSampleOpaqueRPC/src/tSimple.c +47 -0
  228. data/samples/SimpleSample/SimpleSampleOpaqueRPC/src/tTaskMain.c +66 -0
  229. data/samples/SimpleSample/SimpleSampleOpaqueRPC/src/tecs-types.h +27 -0
  230. data/samples/SimpleSample/SimpleSampleTransparentRPC/Makefile +125 -0
  231. data/samples/SimpleSample/SimpleSampleTransparentRPC/Makefile-trace +130 -0
  232. data/samples/SimpleSample/SimpleSampleTransparentRPC/SimpleSample-trace.cdl +54 -0
  233. data/samples/SimpleSample/SimpleSampleTransparentRPC/SimpleSample.cdl +53 -0
  234. data/samples/SimpleSample/SimpleSampleTransparentRPC/src/tSample.c +80 -0
  235. data/samples/SimpleSample/SimpleSampleTransparentRPC/src/tSimple.c +54 -0
  236. data/tecscde.gemspec +41 -0
  237. metadata +353 -0
@@ -0,0 +1,130 @@
1
+ # このファイルは tecsgen により自動生成されました
2
+ # Makefile.temp は gen の一つ上のディレクトリに移して使用します
3
+ # % mv Makefile.temp Makefile
4
+ #
5
+ # clean のデフォルト動作は $(GEN_DIR)/Makefile.* を削除します
6
+ #
7
+ # このファイルは GNU make で gcc を用い POSIX 環境で動作するモジュールをビルドするのに適切なように生成されています
8
+ # vpath, CFLAGS, OTHER_OBJS などを調整する必要があるかもしれません
9
+ # 他の環境やターゲットの場合、このファイルを元に変更する必要があります
10
+
11
+ # 変数 #_MVAR_#
12
+ # fixed variable (unchangeable by config or plugin)
13
+ TARGET_BASE = SimpleSample-trace
14
+ BASE_DIR = .
15
+ GEN_DIR = $(BASE_DIR)/gen
16
+ INCLUDES = -I $(BASE_DIR)/. -I $(TECSPATH) -I $(TECSPATH)/../test/cygwin -I $(TECSPATH)/rpc -I $(BASE_DIR)/./gen -I $(TECSPATH)/mruby -I $(TECSPATH)/posix -I $(GEN_DIR)
17
+ DEFINES =
18
+
19
+ # end of fixed variable (unchangeable by config or plugin)
20
+ #default C Compiler
21
+ CC = gcc
22
+
23
+ #default C Compiler options
24
+ CFLAGS = $(INCLUDES) $(DEFINES) -D "Inline=static inline"
25
+
26
+ #default Liknker
27
+ LD = gcc
28
+
29
+ #default Liknker Options
30
+ LDFLAGS =
31
+
32
+ #default srource directory
33
+ SRC_DIR = $(BASE_DIR)/src
34
+
35
+ #default target name
36
+ TARGET = $(TARGET_BASE).exe
37
+
38
+ #default TECS generator
39
+ TECSGEN_EXE = tecsgen
40
+
41
+ #Time Stamp
42
+ TIMESTAMP = tecsgen.timestamp
43
+
44
+ #default relocatable object (.o) directory
45
+ _TECS_OBJ_DIR = $(GEN_DIR)/
46
+
47
+
48
+
49
+ # Pre-tecsgen target
50
+ PRE_TECSGEN_TARGET =
51
+
52
+ # Post-tecsgen target
53
+ POST_TECSGEN_TARGET =
54
+
55
+ # vpath for C sources and headers
56
+ vpath %.c $(SRC_DIR) $(GEN_DIR) $(TECSPATH) $(TECSPATH)/../test/cygwin $(TECSPATH)/rpc ./gen $(TECSPATH)/mruby $(TECSPATH)/posix
57
+ vpath %.h $(SRC_DIR) $(GEN_DIR) $(TECSPATH) $(TECSPATH)/../test/cygwin $(TECSPATH)/rpc ./gen $(TECSPATH)/mruby $(TECSPATH)/posix
58
+
59
+ # Other objects (out of tecsgen)
60
+ # OTHER_OBJS = # Add objects out of tecs care.
61
+ OTHER_OBJS = $(_TECS_OBJ_DIR)vasyslog.o
62
+ # ルール #_MRUL_#
63
+ allall: tecs
64
+ make -f Makefile-trace all # in order to include generated Makefile.tecsgen & Makefile.depend
65
+
66
+ all : $(TARGET)
67
+
68
+
69
+ # depend を include #_MDEP_#
70
+ -include $(GEN_DIR)/Makefile.tecsgen
71
+ -include $(GEN_DIR)/Makefile.depend
72
+
73
+ $(TARGET) : $(TIMESTAMP) $(CELLTYPE_COBJS) $(TECSGEN_COBJS) $(PLUGIN_COBJS) $(OTHER_OBJS)
74
+ $(LD) -o $(TARGET) $(TECSGEN_COBJS) $(CELLTYPE_COBJS) $(PLUGIN_COBJS) $(OTHER_OBJS) $(LDFLAGS)
75
+ clean :
76
+ rm -f $(CELLTYPE_COBJS) $(TECSGEN_COBJS) $(PLUGIN_COBJS) $(OTHER_OBJS) $(TARGET) $(TIMESTAMP)
77
+ rm -rf $(GEN_DIR)
78
+
79
+ tecs : $(PRE_TECSGEN_TARGET) $(TIMESTAMP) $(POST_TECSGEN_TARGET)
80
+
81
+ $(TIMESTAMP) : $(TECS_IMPORTS)
82
+ $(TECSGEN_EXE) -I $(TECSPATH) -I $(TECSPATH)/../test/cygwin -I $(TECSPATH)/rpc -I ./gen SimpleSample-trace.cdl
83
+ touch $(TIMESTAMP)
84
+
85
+ # generic target for objs
86
+ $(_TECS_OBJ_DIR)%.o : %.c
87
+ $(CC) -c $(CFLAGS) -o $@ $<
88
+
89
+ $(_TECS_OBJ_DIR)tTask.o : tTask.c
90
+ $(CC) -c $(CFLAGS) -o $@ $<
91
+
92
+ $(_TECS_OBJ_DIR)tKernel.o : tKernel.c
93
+ $(CC) -c $(CFLAGS) -o $@ $<
94
+
95
+ $(_TECS_OBJ_DIR)tSemaphore.o : tSemaphore.c
96
+ $(CC) -c $(CFLAGS) -o $@ $<
97
+
98
+ $(_TECS_OBJ_DIR)tEventflag.o : tEventflag.c
99
+ $(CC) -c $(CFLAGS) -o $@ $<
100
+
101
+ $(_TECS_OBJ_DIR)tDataqueuePeer.o : tDataqueuePeer.c
102
+ $(CC) -c $(CFLAGS) -o $@ $<
103
+
104
+ $(_TECS_OBJ_DIR)tSysLog.o : tSysLog.c
105
+ $(CC) -c $(CFLAGS) -o $@ $<
106
+
107
+ $(_TECS_OBJ_DIR)tTDR.o : tTDR.c
108
+ $(CC) -c $(CFLAGS) -o $@ $<
109
+
110
+ $(_TECS_OBJ_DIR)tRPCDedicatedTaskMain.o : tRPCDedicatedTaskMain.c
111
+ $(CC) -c $(CFLAGS) -o $@ $<
112
+
113
+ $(_TECS_OBJ_DIR)tDataqueueAdaptor.o : tDataqueueAdaptor.c
114
+ $(CC) -c $(CFLAGS) -o $@ $<
115
+
116
+ $(_TECS_OBJ_DIR)tSample.o : tSample.c
117
+ $(CC) -c $(CFLAGS) -o $@ $<
118
+
119
+ $(_TECS_OBJ_DIR)tSimple.o : tSimple.c
120
+ $(CC) -c $(CFLAGS) -o $@ $<
121
+
122
+ $(_TECS_OBJ_DIR)tMarshaler_sSample.o : tMarshaler_sSample.c
123
+ $(CC) -c $(CFLAGS) -o $@ $<
124
+
125
+ $(_TECS_OBJ_DIR)tUnmarshaler_sSample.o : tUnmarshaler_sSample.c
126
+ $(CC) -c $(CFLAGS) -o $@ $<
127
+
128
+ $(_TECS_OBJ_DIR)tTracePlugin_sSample.o : tTracePlugin_sSample.c
129
+ $(CC) -c $(CFLAGS) -o $@ $<
130
+
@@ -0,0 +1,54 @@
1
+ /*
2
+ * Simple な Sample (TransparentRPC 版)
3
+ *
4
+ * +-------------+ +-------------+ +-------------+
5
+ * | | | | | |
6
+ * | tTask | sTaskBody | tSimple | sSample | tSample |
7
+ * | Task |-----------|> Simple |==========|> Sample |
8
+ * | |cTask eBody| |cCall eEnt| |
9
+ * | |Body | | | |
10
+ * +-------------+ +-------------+ +-------------+
11
+ */
12
+
13
+
14
+ // cygwin 用の簡易な型定義
15
+ import( <cygwin_kernel.cdl> );
16
+ // TECS 対応 TOPPERS/ASP ならば import( <kernel.cdl> ); でよい
17
+
18
+ import( <tSysLog.cdl> );
19
+ import( <rpc.cdl> );
20
+ import( <tDataqueueOWChannel.cdl> );
21
+
22
+ cell tSysLog SysLog {};
23
+ cell tKernel Kernel {};
24
+
25
+ signature sSample {
26
+ ER sayHello( [in]int32_t times );
27
+ ER howAreYou( [out,string(len)]char_t *buf, [in]int32_t len );
28
+ };
29
+
30
+ celltype tSample {
31
+ entry sSample eEnt;
32
+ };
33
+
34
+ [singleton,active]
35
+ celltype tSimple {
36
+ call sSample cCall;
37
+ entry sTaskBody eBody;
38
+ };
39
+
40
+ cell tSample Sample {
41
+ };
42
+
43
+ cell tSimple Simple {
44
+ [through(TracePlugin,""),
45
+ through(RPCPlugin,"")]
46
+ cCall = Sample.eEnt;
47
+ };
48
+
49
+ cell tTask Task {
50
+ cBody = Simple.eBody;
51
+ priority = 11;
52
+ stackSize = 1024;
53
+ taskAttribute = C_EXP( "TA_ACT" );
54
+ };
@@ -0,0 +1,53 @@
1
+ /*
2
+ * Simple な Sample (TransparentRPC 版)
3
+ *
4
+ * +-------------+ +-------------+ +-------------+
5
+ * | | | | | |
6
+ * | tTask | sTaskBody | tSimple | sSample | tSample |
7
+ * | Task |-----------|> Simple |==========|> Sample |
8
+ * | |cTask eBody| |cCall eEnt| |
9
+ * | |Body | | | |
10
+ * +-------------+ +-------------+ +-------------+
11
+ */
12
+
13
+
14
+ // cygwin 用の簡易な型定義
15
+ import( <cygwin_kernel.cdl> );
16
+ // TECS 対応 TOPPERS/ASP ならば import( <kernel.cdl> ); でよい
17
+
18
+ import( <tSysLog.cdl> );
19
+ import( <rpc.cdl> );
20
+ import( <tDataqueueOWChannel.cdl> );
21
+
22
+ signature sSample {
23
+ ER sayHello( [in]int32_t times );
24
+ ER howAreYou( [out,string(len)]char_t *buf, [in]int32_t len );
25
+ };
26
+
27
+ celltype tSample {
28
+ entry sSample eEnt;
29
+ };
30
+
31
+ [singleton]
32
+ celltype tSimple {
33
+ call sSample cCall;
34
+ entry sTaskBody eBody;
35
+ };
36
+
37
+ cell tSysLog SysLog {
38
+ };
39
+
40
+ cell tSample Sample {
41
+ };
42
+
43
+ cell tSimple Simple {
44
+ [through(RPCPlugin,"")]
45
+ cCall = Sample.eEnt;
46
+ };
47
+
48
+ cell tTask Task {
49
+ cBody = Simple.eBody;
50
+ priority = 11;
51
+ stackSize = 1024;
52
+ taskAttribute = C_EXP( "TA_ACT" );
53
+ };
@@ -0,0 +1,80 @@
1
+ /*
2
+ * このファイルは tecsgen によりテンプレートとして自動生成されました
3
+ * このファイルを編集して使用することが意図されていますが
4
+ * tecsgen の再実行により上書きされてしまうため、通常
5
+ * gen/tSample_template.c => src/tSample.c
6
+ * のように名前, フォルダを変更してから修正します
7
+ */
8
+ /* #[<PREAMBLE>]#
9
+ * #[<...>]# から #[</...>]# で囲まれたコメントは編集しないでください
10
+ * tecsmerge によるマージに使用されます
11
+ *
12
+ * #[</PREAMBLE>]# */
13
+
14
+ /* プロトタイプ宣言や変数の定義をここに書きます #_PAC_# */
15
+ #include "tSample_tecsgen.h"
16
+ #include <stdio.h>
17
+
18
+ #ifndef E_OK
19
+ #define E_OK 0 /* success */
20
+ #define E_ID (-18) /* illegal ID */
21
+ #endif
22
+
23
+ /* 受け口関数 #_TEPF_# */
24
+ /* #[<ENTRY_PORT>]# eEnt
25
+ * entry port: eEnt
26
+ * signature: sSample
27
+ * context: task
28
+ * #[</ENTRY_PORT>]# */
29
+
30
+ /* #[<ENTRY_FUNC>]# eEnt_sayHello
31
+ * name: eEnt_sayHello
32
+ * global_name: tSample_eEnt_sayHello
33
+ * oneway: false
34
+ * #[</ENTRY_FUNC>]# */
35
+ ER
36
+ eEnt_sayHello(CELLIDX idx, int32_t times)
37
+ {
38
+ ER ercd = E_OK;
39
+ CELLCB *p_cellcb;
40
+ if (VALID_IDX(idx)) {
41
+ p_cellcb = GET_CELLCB(idx);
42
+ }
43
+ else {
44
+ return(E_ID);
45
+ } /* end if VALID_IDX(idx) */
46
+
47
+ /* ここに処理本体を記述します #_TEFB_# */
48
+ while( times-- > 0 )
49
+ printf( "Hello! " );
50
+ puts( "" );
51
+
52
+ return(ercd);
53
+ }
54
+
55
+ /* #[<ENTRY_FUNC>]# eEnt_howAreYou
56
+ * name: eEnt_howAreYou
57
+ * global_name: tSample_eEnt_howAreYou
58
+ * oneway: false
59
+ * #[</ENTRY_FUNC>]# */
60
+ ER
61
+ eEnt_howAreYou(CELLIDX idx, char_t* buf, int32_t len)
62
+ {
63
+ ER ercd = E_OK;
64
+ CELLCB *p_cellcb;
65
+ if (VALID_IDX(idx)) {
66
+ p_cellcb = GET_CELLCB(idx);
67
+ }
68
+ else {
69
+ return(E_ID);
70
+ } /* end if VALID_IDX(idx) */
71
+
72
+ /* ここに処理本体を記述します #_TEFB_# */
73
+ strncpy( buf, "I'm fine thank you.", len );
74
+
75
+ return(ercd);
76
+ }
77
+
78
+ /* #[<POSTAMBLE>]#
79
+ * これより下に非受け口関数を書きます
80
+ * #[</POSTAMBLE>]#*/
@@ -0,0 +1,54 @@
1
+ /*
2
+ * このファイルは tecsgen によりテンプレートとして自動生成されました
3
+ * このファイルを編集して使用することが意図されていますが
4
+ * tecsgen の再実行により上書きされてしまうため、通常
5
+ * gen/tSimple_template.c => src/tSimple.c
6
+ * のように名前, フォルダを変更してから修正します
7
+ */
8
+ /* #[<PREAMBLE>]#
9
+ * #[<...>]# から #[</...>]# で囲まれたコメントは編集しないでください
10
+ * tecsmerge によるマージに使用されます
11
+ *
12
+ * 呼び口関数 #_TCPF_#
13
+ * call port : cCall signature: sSample context: task
14
+ * ER cCall_sayHello( int32_t times );
15
+ * ER cCall_howAreYou( char_t* buf, int32_t len );
16
+ *
17
+ * #[</PREAMBLE>]# */
18
+
19
+ /* プロトタイプ宣言や変数の定義をここに書きます #_PAC_# */
20
+ #include "tSimple_tecsgen.h"
21
+ #include <stdio.h>
22
+
23
+ #ifndef E_OK
24
+ #define E_OK 0 /* success */
25
+ #define E_ID (-18) /* illegal ID */
26
+ #endif
27
+
28
+ /* #[<ENTRY_PORT>]# eBody
29
+ * entry port: eBody
30
+ * signature: sTaskBody
31
+ * context: task
32
+ * #[</ENTRY_PORT>]# */
33
+
34
+ /* #[<ENTRY_FUNC>]# eBody_main
35
+ * name: eBody_main
36
+ * global_name: tSimple_eBody_main
37
+ * oneway: false
38
+ * #[</ENTRY_FUNC>]# */
39
+ void
40
+ eBody_main()
41
+ {
42
+ #define BUF_LEN 64
43
+ char_t buf[64];
44
+ #define HELLO_TIMES (3)
45
+ puts( "calling sayHello" );
46
+ cCall_sayHello( HELLO_TIMES );
47
+ cCall_howAreYou( buf, BUF_LEN );
48
+ puts( buf );
49
+ exit(0);
50
+ }
51
+
52
+ /* #[<POSTAMBLE>]#
53
+ * これより下に非受け口関数を書きます
54
+ * #[</POSTAMBLE>]#*/
@@ -0,0 +1,41 @@
1
+ lib = File.expand_path('lib', __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "tecscde/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "tecscde"
7
+ spec.version = TECSCDE::VERSION
8
+ spec.authors = ["Hiroshi OYAMA", "Kenji Okimoto"]
9
+ spec.email = ["hiro22022@gmail.com", "okimoto@clear-code.com"]
10
+
11
+ spec.summary = %q{TECSCDE - TECS Component Diagram Editor}
12
+ spec.description = %q{TECSCDE - TECS Component Diagram Editor}
13
+ spec.homepage = "https://www.toppers.jp/"
14
+
15
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
16
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
17
+ if spec.respond_to?(:metadata)
18
+ spec.metadata["homepage_uri"] = spec.homepage
19
+ spec.metadata["source_code_uri"] = "https://github.com/hiro22022/TECSCDE"
20
+ spec.metadata["changelog_uri"] = "https://github.com/hiro22022/TECSCDE/CHANGELOG.md"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ # Specify which files should be added to the gem when it is released.
27
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
28
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
29
+ `git ls-files -z`.split("\x0").reject {|f| f.match(%r{^(test|spec|features)/}) }
30
+ end
31
+ spec.bindir = "bin"
32
+ spec.executables = spec.files.grep(%r{^bin/}) {|f| File.basename(f) }
33
+ spec.require_paths = ["lib"]
34
+
35
+ spec.add_runtime_dependency "gtk2", ">= 3.3.0"
36
+
37
+ spec.add_development_dependency "bundler"
38
+ spec.add_development_dependency "racc"
39
+ spec.add_development_dependency "rake"
40
+ spec.add_development_dependency "rubocop", "~> 0.61.1"
41
+ end
metadata ADDED
@@ -0,0 +1,353 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tecscde
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.6.0
5
+ platform: ruby
6
+ authors:
7
+ - Hiroshi OYAMA
8
+ - Kenji Okimoto
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2019-03-12 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: gtk2
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: 3.3.0
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: 3.3.0
28
+ - !ruby/object:Gem::Dependency
29
+ name: bundler
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: racc
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: rake
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ - !ruby/object:Gem::Dependency
71
+ name: rubocop
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: 0.61.1
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: 0.61.1
84
+ description: TECSCDE - TECS Component Diagram Editor
85
+ email:
86
+ - hiro22022@gmail.com
87
+ - okimoto@clear-code.com
88
+ executables:
89
+ - tecscde
90
+ extensions: []
91
+ extra_rdoc_files: []
92
+ files:
93
+ - ".gitignore"
94
+ - ".rubocop.yml"
95
+ - ".rubocop_todo.yml"
96
+ - CHANGELOG.md
97
+ - Gemfile
98
+ - LICENSE
99
+ - LICENSE.ja
100
+ - README.ja.md
101
+ - README.md
102
+ - Rakefile
103
+ - bin/tecscde
104
+ - glade/tecscde-cell-property.glade
105
+ - glade/tecscde-celltype-property.glade
106
+ - glade/tecscde-celltype.glade
107
+ - glade/tecscde-export.glade
108
+ - glade/test-cell-plugin.rb
109
+ - glade/test-cell-property.rb
110
+ - glade/test-export.rb
111
+ - glade/test-palette.rb
112
+ - lib/tcflow.rb
113
+ - lib/tecscde.rb
114
+ - lib/tecscde/NewCell.png
115
+ - lib/tecscde/SelectArrow.png
116
+ - lib/tecscde/attr_tree_view.rb
117
+ - lib/tecscde/cell_plugin_dialog.glade
118
+ - lib/tecscde/cell_plugin_dialog.rb
119
+ - lib/tecscde/celltype_tree_view.rb
120
+ - lib/tecscde/change_set_control.rb
121
+ - lib/tecscde/change_set_control/change_set.rb
122
+ - lib/tecscde/change_set_control/change_set_manager.rb
123
+ - lib/tecscde/command.rb
124
+ - lib/tecscde/control.rb
125
+ - lib/tecscde/highlighted_objects.rb
126
+ - lib/tecscde/logger.rb
127
+ - lib/tecscde/main_view_and_model.rb
128
+ - lib/tecscde/palette.glade
129
+ - lib/tecscde/palette.rb
130
+ - lib/tecscde/preferences.glade
131
+ - lib/tecscde/preferences.rb
132
+ - lib/tecscde/tecs_model.rb
133
+ - lib/tecscde/tecs_model/hbar.rb
134
+ - lib/tecscde/tecs_model/tm_c_port.rb
135
+ - lib/tecscde/tecs_model/tm_c_port_array.rb
136
+ - lib/tecscde/tecs_model/tm_cell.rb
137
+ - lib/tecscde/tecs_model/tm_e_port.rb
138
+ - lib/tecscde/tecs_model/tm_e_port_array.rb
139
+ - lib/tecscde/tecs_model/tm_join.rb
140
+ - lib/tecscde/tecs_model/tm_join_bar.rb
141
+ - lib/tecscde/tecs_model/tm_port.rb
142
+ - lib/tecscde/tecs_model/tm_port_array.rb
143
+ - lib/tecscde/tecs_model/tm_region.rb
144
+ - lib/tecscde/tecs_model/tm_uneditable.rb
145
+ - lib/tecscde/tecs_model/vbar.rb
146
+ - lib/tecscde/templates/_cell_info.cde.erb
147
+ - lib/tecscde/templates/_join_info.cde.erb
148
+ - lib/tecscde/templates/main.cde.erb
149
+ - lib/tecscde/tm_object.rb
150
+ - lib/tecscde/version.rb
151
+ - lib/tecscde/view.rb
152
+ - lib/tecscde/view/cairo_matrix.rb
153
+ - lib/tecscde/view/canvas.rb
154
+ - lib/tecscde/view/constants.rb
155
+ - lib/tecscde/view/main_view.rb
156
+ - lib/tecsflow.rb
157
+ - lib/tecsflow/C_parser.tab.rb
158
+ - lib/tecsflow/C_parser.y.rb
159
+ - lib/tecsflow/classes.rb
160
+ - lib/tecsgen.rb
161
+ - lib/tecsgen/core/C_parser.tab.rb
162
+ - lib/tecsgen/core/C_parser.y
163
+ - lib/tecsgen/core/bnf-deb.tab.rb
164
+ - lib/tecsgen/core/bnf.tab.rb
165
+ - lib/tecsgen/core/bnf.y
166
+ - lib/tecsgen/core/componentobj.rb
167
+ - lib/tecsgen/core/ctypes.rb
168
+ - lib/tecsgen/core/expression.rb
169
+ - lib/tecsgen/core/gen_xml.rb
170
+ - lib/tecsgen/core/generate.rb
171
+ - lib/tecsgen/core/location.rb
172
+ - lib/tecsgen/core/messages.rb
173
+ - lib/tecsgen/core/optimize.rb
174
+ - lib/tecsgen/core/plugin.rb
175
+ - lib/tecsgen/core/pluginModule.rb
176
+ - lib/tecsgen/core/syntaxobj.rb
177
+ - lib/tecsgen/core/tecs_lang.rb
178
+ - lib/tecsgen/core/tecsgen.rb
179
+ - lib/tecsgen/core/tecsinfo.rb
180
+ - lib/tecsgen/core/tool_info.rb
181
+ - lib/tecsgen/core/types.rb
182
+ - lib/tecsgen/core/unjoin_plugin.rb
183
+ - lib/tecsgen/core/value.rb
184
+ - lib/tecsgen/messages/messages_console_en_US.rb
185
+ - lib/tecsgen/messages/messages_console_ja_JP.rb
186
+ - lib/tecsgen/messages/messages_file_en_US.rb
187
+ - lib/tecsgen/messages/messages_file_ja_JP.rb
188
+ - lib/tecsgen/plugin/ATK1AlarmPlugin.rb
189
+ - lib/tecsgen/plugin/ATK1DelayTaskPlugin.rb
190
+ - lib/tecsgen/plugin/ATK1EventPlugin.rb
191
+ - lib/tecsgen/plugin/ATK1ISRPlugin.rb
192
+ - lib/tecsgen/plugin/ATK1KernelPlugin.rb
193
+ - lib/tecsgen/plugin/ATK1ResourcePlugin.rb
194
+ - lib/tecsgen/plugin/ATK1TaskPlugin.rb
195
+ - lib/tecsgen/plugin/C2TECSBridgePlugin.rb
196
+ - lib/tecsgen/plugin/CellPlugin.rb
197
+ - lib/tecsgen/plugin/CelltypePlugin.rb
198
+ - lib/tecsgen/plugin/CompositePlugin.rb
199
+ - lib/tecsgen/plugin/DomainPlugin.rb
200
+ - lib/tecsgen/plugin/HRP2AlarmHandlerPlugin.rb
201
+ - lib/tecsgen/plugin/HRP2Cache.rb
202
+ - lib/tecsgen/plugin/HRP2CyclicHandlerPlugin.rb
203
+ - lib/tecsgen/plugin/HRP2DataqueuePlugin.rb
204
+ - lib/tecsgen/plugin/HRP2EventflagPlugin.rb
205
+ - lib/tecsgen/plugin/HRP2FixedSizeMemoryPoolPlugin.rb
206
+ - lib/tecsgen/plugin/HRP2HandlerPlugin.rb
207
+ - lib/tecsgen/plugin/HRP2KernelObjectPlugin.rb
208
+ - lib/tecsgen/plugin/HRP2ObjectPlugin.rb
209
+ - lib/tecsgen/plugin/HRP2Plugin.rb
210
+ - lib/tecsgen/plugin/HRP2PostHook.rb
211
+ - lib/tecsgen/plugin/HRP2PriorityDataqueuePlugin.rb
212
+ - lib/tecsgen/plugin/HRP2RPCPlugin.rb
213
+ - lib/tecsgen/plugin/HRP2SVCPlugin.rb
214
+ - lib/tecsgen/plugin/HRP2SemaphorePlugin.rb
215
+ - lib/tecsgen/plugin/HRP2TaskPlugin.rb
216
+ - lib/tecsgen/plugin/HRPHandlerPlugin.rb
217
+ - lib/tecsgen/plugin/HRPKernelObjectManager.rb
218
+ - lib/tecsgen/plugin/HRPKernelObjectPlugin.rb
219
+ - lib/tecsgen/plugin/HRPObjectPlugin.rb
220
+ - lib/tecsgen/plugin/HRPPlugin.rb
221
+ - lib/tecsgen/plugin/HRPRPCPlugin.rb
222
+ - lib/tecsgen/plugin/HRPSVCPlugin.rb
223
+ - lib/tecsgen/plugin/HRPTaskPlugin.rb
224
+ - lib/tecsgen/plugin/Mruby2CBridgePlugin.rb
225
+ - lib/tecsgen/plugin/MrubyBridgeCellPlugin.rb
226
+ - lib/tecsgen/plugin/MrubyBridgeCelltypePlugin.rb
227
+ - lib/tecsgen/plugin/MrubyBridgeCompositePlugin.rb
228
+ - lib/tecsgen/plugin/MrubyBridgePlugin.rb
229
+ - lib/tecsgen/plugin/MrubyBridgeSignaturePlugin.rb
230
+ - lib/tecsgen/plugin/MrubyInfoBridgePlugin.rb
231
+ - lib/tecsgen/plugin/MrubyInfoBridgeSignaturePlugin.rb
232
+ - lib/tecsgen/plugin/MultiPlugin.rb
233
+ - lib/tecsgen/plugin/NotifierPlugin.rb
234
+ - lib/tecsgen/plugin/OpaqueMarshalerPlugin.rb
235
+ - lib/tecsgen/plugin/OpaqueRPCPlugin.rb
236
+ - lib/tecsgen/plugin/RPCPlugin.rb
237
+ - lib/tecsgen/plugin/RepeatCellPlugin.rb
238
+ - lib/tecsgen/plugin/RepeatJoinPlugin.rb
239
+ - lib/tecsgen/plugin/SharedOpaqueRPCPlugin.rb
240
+ - lib/tecsgen/plugin/SharedRPCPlugin.rb
241
+ - lib/tecsgen/plugin/SignaturePlugin.rb
242
+ - lib/tecsgen/plugin/TECS2CBridgePlugin.rb
243
+ - lib/tecsgen/plugin/TECSInfoPlugin.rb
244
+ - lib/tecsgen/plugin/ThroughPlugin.rb
245
+ - lib/tecsgen/plugin/TracePlugin.rb
246
+ - lib/tecsgen/plugin/lib/GenHRP2Marshaler.rb
247
+ - lib/tecsgen/plugin/lib/GenOpaqueMarshaler.rb
248
+ - lib/tecsgen/plugin/lib/GenParamCopy.rb
249
+ - lib/tecsgen/plugin/lib/GenTransparentMarshaler.rb
250
+ - lib/tecsgen/plugin/lib/MrubyBridgeCelltypePluginModule.rb
251
+ - lib/tecsgen/plugin/lib/MrubyBridgeSignaturePluginModule.rb
252
+ - lib/tecsgen/version.rb
253
+ - samples/FigureSamples/active/active.cde
254
+ - samples/FigureSamples/active/active.cdl
255
+ - samples/FigureSamples/active/active.pdf
256
+ - samples/FigureSamples/active/active.png
257
+ - samples/FigureSamples/active/gen/tmp_C_src.c
258
+ - samples/FigureSamples/active/gen/tmp_cygwin_tecs.h
259
+ - samples/FigureSamples/active/gen/tmp_plugin_post_code.cdl
260
+ - samples/FigureSamples/allocator/allocator-internal.png
261
+ - samples/FigureSamples/allocator/allocator.cde
262
+ - samples/FigureSamples/allocator/allocator.cdl
263
+ - samples/FigureSamples/allocator/allocator.png
264
+ - samples/FigureSamples/basic/Makefile
265
+ - samples/FigureSamples/basic/SimpleSample-trace.cdl
266
+ - samples/FigureSamples/basic/SimpleSample.cde
267
+ - samples/FigureSamples/basic/SimpleSample.cdl
268
+ - samples/FigureSamples/basic/basic.cde
269
+ - samples/FigureSamples/basic/basic.cdl
270
+ - samples/FigureSamples/basic/basic.png
271
+ - samples/FigureSamples/callback/callback.cde
272
+ - samples/FigureSamples/callback/callback.cdl
273
+ - samples/FigureSamples/callback/callback.png
274
+ - samples/FigureSamples/carray/carray.cde
275
+ - samples/FigureSamples/carray/carray.cdl
276
+ - samples/FigureSamples/carray/carray.png
277
+ - samples/FigureSamples/cearray/cearray.cde
278
+ - samples/FigureSamples/cearray/cearray.cdl
279
+ - samples/FigureSamples/cearray/cearray.png
280
+ - samples/FigureSamples/composite/composite-internal.png
281
+ - samples/FigureSamples/composite/composite.cde
282
+ - samples/FigureSamples/composite/composite.cdl
283
+ - samples/FigureSamples/composite/composite.png
284
+ - samples/FigureSamples/earray/earray.cde
285
+ - samples/FigureSamples/earray/earray.cdl
286
+ - samples/FigureSamples/earray/earray.png
287
+ - samples/FigureSamples/join/Makefile
288
+ - samples/FigureSamples/join/join.cde
289
+ - samples/FigureSamples/join/join.cdl
290
+ - samples/FigureSamples/join/join.png
291
+ - samples/FigureSamples/relay/Makefile
292
+ - samples/FigureSamples/relay/relay-internal.png
293
+ - samples/FigureSamples/relay/relay.cde
294
+ - samples/FigureSamples/relay/relay.cdl
295
+ - samples/FigureSamples/relay/relay.png
296
+ - samples/FigureSamples/rpc/Makefile
297
+ - samples/FigureSamples/rpc/rpc-expand.png
298
+ - samples/FigureSamples/rpc/rpc.cde
299
+ - samples/FigureSamples/rpc/rpc.png
300
+ - samples/FigureSamples/rpc/rpc_sample.cdl
301
+ - samples/SimpleSample/Makefile
302
+ - samples/SimpleSample/SimpleSample/Makefile
303
+ - samples/SimpleSample/SimpleSample/Makefile-trace
304
+ - samples/SimpleSample/SimpleSample/README.txt
305
+ - samples/SimpleSample/SimpleSample/SimpleSample-trace.cdl
306
+ - samples/SimpleSample/SimpleSample/SimpleSample.cdl
307
+ - samples/SimpleSample/SimpleSample/src/tSample.c
308
+ - samples/SimpleSample/SimpleSample/src/tSimple.c
309
+ - samples/SimpleSample/SimpleSample/src/tecs-types.h
310
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/Makefile
311
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/Makefile-trace
312
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/README.txt
313
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/SimpleSample-trace.cdl
314
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/SimpleSample.cdl
315
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/rSample/Makefile
316
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/rSimple/Makefile
317
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/src/tSample.c
318
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/src/tSimple.c
319
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/src/tTaskMain.c
320
+ - samples/SimpleSample/SimpleSampleOpaqueRPC/src/tecs-types.h
321
+ - samples/SimpleSample/SimpleSampleTransparentRPC/Makefile
322
+ - samples/SimpleSample/SimpleSampleTransparentRPC/Makefile-trace
323
+ - samples/SimpleSample/SimpleSampleTransparentRPC/SimpleSample-trace.cdl
324
+ - samples/SimpleSample/SimpleSampleTransparentRPC/SimpleSample.cdl
325
+ - samples/SimpleSample/SimpleSampleTransparentRPC/src/tSample.c
326
+ - samples/SimpleSample/SimpleSampleTransparentRPC/src/tSimple.c
327
+ - tecscde.gemspec
328
+ homepage: https://www.toppers.jp/
329
+ licenses: []
330
+ metadata:
331
+ homepage_uri: https://www.toppers.jp/
332
+ source_code_uri: https://github.com/hiro22022/TECSCDE
333
+ changelog_uri: https://github.com/hiro22022/TECSCDE/CHANGELOG.md
334
+ post_install_message:
335
+ rdoc_options: []
336
+ require_paths:
337
+ - lib
338
+ required_ruby_version: !ruby/object:Gem::Requirement
339
+ requirements:
340
+ - - ">="
341
+ - !ruby/object:Gem::Version
342
+ version: '0'
343
+ required_rubygems_version: !ruby/object:Gem::Requirement
344
+ requirements:
345
+ - - ">="
346
+ - !ruby/object:Gem::Version
347
+ version: '0'
348
+ requirements: []
349
+ rubygems_version: 3.0.1
350
+ signing_key:
351
+ specification_version: 4
352
+ summary: TECSCDE - TECS Component Diagram Editor
353
+ test_files: []