[CCSDK-28] populated the seed code for dgbuilder
[ccsdk/distribution.git] / dgbuilder / nodes / dge / dgelogic / execute.html
1 <!--
2   Copyright 2013 IBM Corp.
3
4   Licensed under the Apache License, Version 2.0 (the "License");
5   you may not use this file except in compliance with the License.
6   You may obtain a copy of the License at
7
8   http://www.apache.org/licenses/LICENSE-2.0
9
10   Unless required by applicable law or agreed to in writing, software
11   distributed under the License is distributed on an "AS IS" BASIS,
12   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   See the License for the specific language governing permissions and
14   limitations under the License.
15 -->
16
17 <script type="text/x-red" data-template-name="execute">
18     <div class="form-row">
19         <label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
20         <input type="text" id="node-input-name" placeholder="Name">
21     </div>
22     <div class="form-row">
23         <label for="node-input-xml"><i class="fa fa-wrench"></i> Node XML</label>
24         <input type="hidden" id="node-input-xml" autofocus="autofocus">
25         <div style="height: 450px;" class="node-text-editor" id="node-input-xml-editor" onkeyup="resetStatus()" ></div>
26     </div>
27     <div class="form-row">
28     <a href="#" class="btn btn-mini" id="node-input-validate" style="margin-top: 4px;"><b>Validate XML</b></a>
29      <a href="#" class="btn btn-mini" id="node-input-show-sli-values" style="margin-top: 4px;"><b>Show Values</b></a> 
30     <input type="hidden" id="node-input-comments">
31     <a href="#" class="btn btn-mini" id="node-input-btnComments" style="margin-top: 4px;"><b>Add Comments</b></a>
32     <div id="node-validate-result" class="form-tips" style="float:right;font-size:10px"></div>
33     </div>
34     <div class="form-tips">See the Info tab for help using this node.</div>
35 </script>
36
37 <script type="text/x-red" data-help-name="execute">
38         <p>A execute node.</p>
39         <p>Do not include closing tag - it will be automatically generated.</p>
40         <div class="section">
41 <h3><a name="Java_Plugin_Support"></a>Java Plugin Support</h3>
42 <div class="section">
43 <h4><a name="Execute_node"></a>Execute node</h4>
44 <div class="section">
45 <h5><a name="Description"></a>Description</h5>
46 <p>An <b>execute</b> node is used to execute Java code supplied as a plugin</p></div>
47 <div class="section">
48 <h5><a name="Attributes"></a>Attributes</h5>
49 <table border="1" class="table table-striped">
50 <tr class="a">
51 <td align="center"><b>plugin</b></td>
52 <td align="left">Fully qualified Java class of plugin to be used</td></tr>
53 <tr class="b">
54 <td align="center"><b>method</b></td>
55 <td align="left">Name of method in the plugin class to execute. Method must return void, and take 2 arguments: a Map (for parameters) and a SvcLogicContext (to allow plugin read/write access to context memory)</td></tr></table></div>
56 <div class="section">
57 <h5><a name="Parameters"></a>Parameters</h5>
58 <p>Specific to plugin / method</p></div>
59 <div class="section">
60 <h5><a name="Outcomes"></a>Outcomes</h5>
61 <table border="1" class="table table-striped">
62 <tr class="a">
63 <td align="center"><b>success</b></td>
64 <td align="left">Device successfully configured</td></tr>
65 <tr class="b">
66 <td align="center"><b>not-found</b></td>
67 <td align="left">Plugin class could not be loaded</td></tr>
68 <tr class="a">
69 <td align="center"><b>unsupported-method</b></td>
70 <td align="left">Named method taking (Map, SvcLogicContext) could not be found</td></tr>
71 <tr class="b">
72 <td align="center"><b>failure</b></td>
73 <td align="left">Configure failed for some other reason</td></tr></table></div>
74 <div class="section">
75 <h5><a name="Example"></a>Example</h5>
76 <div class="source">
77 <pre>&lt;execute plugin=&quot;org.onap.ccsdk.sli.plugin.HelloWorld&quot;
78            method=&quot;log&quot;&gt;
79   &lt;parameter name=&quot;message&quot; value=&quot;Hello, world!&quot; /&gt;
80   &lt;outcome value=&quot;success&quot;&gt;
81       &lt;return status=&quot;success&quot;/&gt;
82   &lt;/outcome&gt;
83   &lt;outcome value=&quot;not-found&quot;&gt;
84     &lt;return status=&quot;failure&quot;&gt;
85       &lt;parameter name=&quot;error-code&quot; value=&quot;1590&quot; /&gt;
86       &lt;parameter name=&quot;error-message&quot; value=&quot;Could not locate plugin&quot; /&gt;
87     &lt;/return&gt;
88   &lt;/outcome&gt;
89   &lt;outcome value=&quot;Other&quot;&gt;
90     &lt;return status=&quot;failure&quot;&gt;
91       &lt;parameter name=&quot;error-code&quot; value=&quot;1542&quot; /&gt;
92       &lt;parameter name=&quot;error-message&quot; value=&quot;Internal error&quot; /&gt;
93     &lt;/return&gt;
94   &lt;/outcome&gt;
95 &lt;/execute&gt;</pre></div></div></div></div>
96 </script>
97
98
99 <script type="text/javascript">
100     RED.nodes.registerType('execute',{
101         color:"#fdd0a2",
102         category: 'DGElogic',
103         defaults: {
104             name: {value:"execute"},
105             xml: {value:"<execute plugin='' method='' >\n"},
106             comments:{value:""},        
107             outputs: {value:1}
108         },
109         inputs:1,
110         outputs:1,
111         icon: "arrow-in.png",
112         label: function() {
113             return this.name;
114         },
115         oneditprepare: function() {
116             $( "#node-input-outputs" ).spinner({
117                 min:1
118             });
119
120              var comments = $( "#node-input-comments").val();
121              if(comments != null){
122                 comments = comments.trim();
123                 if(comments != ''){
124                         $("#node-input-btnComments").html("<span style='color:blue;'><b>View Comments</b></span>");
125                 }
126              }
127
128
129             function functionDialogResize(ev,ui) {
130                 $("#node-input-xml-editor").css("height",(ui.size.height-275)+"px");
131             };
132
133             $( "#dialog" ).dialog( "option", "width", 1200 );
134             $( "#dialog" ).dialog( "option", "height", 750 );
135             $( "#dialog" ).on("dialogresize", functionDialogResize);
136             $( "#dialog" ).one("dialogopen", function(ev) {
137                 var size = $( "#dialog" ).dialog('option','sizeCache-function');
138                 if (size) {
139                     functionDialogResize(null,{size:size});
140                 }
141             });
142
143             /* close dialog when ESC is pressed and released */ 
144             $( "#dialog" ).keyup(function(event){
145                 if(event.which == 27 ) {
146                         $("#node-dialog-cancel").click();
147                 }
148             }); 
149
150             $( "#dialog" ).one("dialogclose", function(ev,ui) {
151                 var height = $( "#dialog" ).dialog('option','height');
152                 $( "#dialog" ).off("dialogresize",functionDialogResize);
153             });
154             var that = this;
155             require(["orion/editor/edit"], function(edit) {
156                 that.editor = edit({
157                     parent:document.getElementById('node-input-xml-editor'),
158                     lang:"html",
159                     contents: $("#node-input-xml").val()
160                 });
161                 RED.library.create({
162                     url:"functions", // where to get the data from
163                     type:"function", // the type of object the library is for
164                     editor:that.editor, // the field name the main text body goes to
165                     fields:['name','outputs']
166                 });
167                 $("#node-input-name").focus();
168                 $("#node-input-validate").click(function(){
169                                 console.log("validate clicked.");
170                                 //console.dir(that.editor);
171                                 //console.log("getText:" + that.editor.getText());
172                                 var val = that.editor.getText();
173                                 validateXML(val); 
174                 });
175                 $("#node-input-show-sli-values").click(function(){
176                                 console.log("SLIValues clicked.");
177                                 showValuesBox(that.editor,sliValuesObj);
178                 });
179
180             });
181             //for click of add comments button
182             $("#node-input-btnComments").click(function(e){
183                         showCommentsBox();
184             }); 
185         },
186         oneditsave: function() {
187             $("#node-input-xml").val(this.editor.getText());
188                 var resp=validateXML(this.editor.getText());
189                 if(resp){
190                         this.status = {fill:"green",shape:"dot",text:"OK"};
191                 }else{
192                         this.status = {fill:"red",shape:"dot",text:"ERROR"};
193                 }       
194                 delete this.editor;
195         }
196     });
197 </script>