暂无描述

procedures.js 9.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /**
  2. * @license
  3. * Visual Blocks Editor
  4. *
  5. * Copyright 2012 Google Inc.
  6. * https://developers.google.com/blockly/
  7. *
  8. * Licensed under the Apache License, Version 2.0 (the "License");
  9. * you may not use this file except in compliance with the License.
  10. * You may obtain a copy of the License at
  11. *
  12. * http://www.apache.org/licenses/LICENSE-2.0
  13. *
  14. * Unless required by applicable law or agreed to in writing, software
  15. * distributed under the License is distributed on an "AS IS" BASIS,
  16. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. */
  20. /**
  21. * @fileoverview Utility functions for handling procedures.
  22. * @author fraser@google.com (Neil Fraser)
  23. */
  24. 'use strict';
  25. goog.provide('Blockly.Procedures');
  26. // TODO(scr): Fix circular dependencies
  27. // goog.require('Blockly.Block');
  28. goog.require('Blockly.Field');
  29. goog.require('Blockly.Names');
  30. goog.require('Blockly.Workspace');
  31. /**
  32. * Category to separate procedure names from variables and generated functions.
  33. */
  34. Blockly.Procedures.NAME_TYPE = 'PROCEDURE';
  35. /**
  36. * Find all user-created procedure definitions in a workspace.
  37. * @param {!Blockly.Workspace} root Root workspace.
  38. * @return {!Array.<!Array.<!Array>>} Pair of arrays, the
  39. * first contains procedures without return variables, the second with.
  40. * Each procedure is defined by a three-element list of name, parameter
  41. * list, and return value boolean.
  42. */
  43. Blockly.Procedures.allProcedures = function(root) {
  44. var blocks = root.getAllBlocks();
  45. var proceduresReturn = [];
  46. var proceduresNoReturn = [];
  47. for (var i = 0; i < blocks.length; i++) {
  48. if (blocks[i].getProcedureDef) {
  49. var tuple = blocks[i].getProcedureDef();
  50. if (tuple) {
  51. if (tuple[2]) {
  52. proceduresReturn.push(tuple);
  53. } else {
  54. proceduresNoReturn.push(tuple);
  55. }
  56. }
  57. }
  58. }
  59. proceduresNoReturn.sort(Blockly.Procedures.procTupleComparator_);
  60. proceduresReturn.sort(Blockly.Procedures.procTupleComparator_);
  61. return [proceduresNoReturn, proceduresReturn];
  62. };
  63. /**
  64. * Comparison function for case-insensitive sorting of the first element of
  65. * a tuple.
  66. * @param {!Array} ta First tuple.
  67. * @param {!Array} tb Second tuple.
  68. * @return {number} -1, 0, or 1 to signify greater than, equality, or less than.
  69. * @private
  70. */
  71. Blockly.Procedures.procTupleComparator_ = function(ta, tb) {
  72. return ta[0].toLowerCase().localeCompare(tb[0].toLowerCase());
  73. };
  74. /**
  75. * Ensure two identically-named procedures don't exist.
  76. * @param {string} name Proposed procedure name.
  77. * @param {!Blockly.Block} block Block to disambiguate.
  78. * @return {string} Non-colliding name.
  79. */
  80. Blockly.Procedures.findLegalName = function(name, block) {
  81. if (block.isInFlyout) {
  82. // Flyouts can have multiple procedures called 'do something'.
  83. return name;
  84. }
  85. while (!Blockly.Procedures.isLegalName(name, block.workspace, block)) {
  86. // Collision with another procedure.
  87. var r = name.match(/^(.*?)(\d+)$/);
  88. if (!r) {
  89. name += '2';
  90. } else {
  91. name = r[1] + (parseInt(r[2], 10) + 1);
  92. }
  93. }
  94. return name;
  95. };
  96. /**
  97. * Does this procedure have a legal name? Illegal names include names of
  98. * procedures already defined.
  99. * @param {string} name The questionable name.
  100. * @param {!Blockly.Workspace} workspace The workspace to scan for collisions.
  101. * @param {Blockly.Block=} opt_exclude Optional block to exclude from
  102. * comparisons (one doesn't want to collide with oneself).
  103. * @return {boolean} True if the name is legal.
  104. */
  105. Blockly.Procedures.isLegalName = function(name, workspace, opt_exclude) {
  106. var blocks = workspace.getAllBlocks();
  107. // Iterate through every block and check the name.
  108. for (var i = 0; i < blocks.length; i++) {
  109. if (blocks[i] == opt_exclude) {
  110. continue;
  111. }
  112. if (blocks[i].getProcedureDef) {
  113. var procName = blocks[i].getProcedureDef();
  114. if (Blockly.Names.equals(procName[0], name)) {
  115. return false;
  116. }
  117. }
  118. }
  119. return true;
  120. };
  121. /**
  122. * Rename a procedure. Called by the editable field.
  123. * @param {string} text The proposed new name.
  124. * @return {string} The accepted name.
  125. * @this {!Blockly.Field}
  126. */
  127. Blockly.Procedures.rename = function(text) {
  128. // Strip leading and trailing whitespace. Beyond this, all names are legal.
  129. text = text.replace(/^[\s\xa0]+|[\s\xa0]+$/g, '');
  130. // Ensure two identically-named procedures don't exist.
  131. text = Blockly.Procedures.findLegalName(text, this.sourceBlock_);
  132. // Rename any callers.
  133. var blocks = this.sourceBlock_.workspace.getAllBlocks();
  134. for (var i = 0; i < blocks.length; i++) {
  135. if (blocks[i].renameProcedure) {
  136. blocks[i].renameProcedure(this.text_, text);
  137. }
  138. }
  139. return text;
  140. };
  141. /**
  142. * Construct the blocks required by the flyout for the procedure category.
  143. * @param {!Blockly.Workspace} workspace The workspace contianing procedures.
  144. * @return {!Array.<!Element>} Array of XML block elements.
  145. */
  146. Blockly.Procedures.flyoutCategory = function(workspace) {
  147. var xmlList = [];
  148. if (Blockly.Blocks['procedures_defnoreturn']) {
  149. // <block type="procedures_defnoreturn" gap="16"></block>
  150. var block = goog.dom.createDom('block');
  151. block.setAttribute('type', 'procedures_defnoreturn');
  152. block.setAttribute('gap', 16);
  153. xmlList.push(block);
  154. }
  155. if (Blockly.Blocks['procedures_defreturn']) {
  156. // <block type="procedures_defreturn" gap="16"></block>
  157. var block = goog.dom.createDom('block');
  158. block.setAttribute('type', 'procedures_defreturn');
  159. block.setAttribute('gap', 16);
  160. xmlList.push(block);
  161. }
  162. if (Blockly.Blocks['procedures_ifreturn']) {
  163. // <block type="procedures_ifreturn" gap="16"></block>
  164. var block = goog.dom.createDom('block');
  165. block.setAttribute('type', 'procedures_ifreturn');
  166. block.setAttribute('gap', 16);
  167. xmlList.push(block);
  168. }
  169. if (xmlList.length) {
  170. // Add slightly larger gap between system blocks and user calls.
  171. xmlList[xmlList.length - 1].setAttribute('gap', 24);
  172. }
  173. function populateProcedures(procedureList, templateName) {
  174. for (var i = 0; i < procedureList.length; i++) {
  175. var name = procedureList[i][0];
  176. var args = procedureList[i][1];
  177. // <block type="procedures_callnoreturn" gap="16">
  178. // <mutation name="do something">
  179. // <arg name="x"></arg>
  180. // </mutation>
  181. // </block>
  182. var block = goog.dom.createDom('block');
  183. block.setAttribute('type', templateName);
  184. block.setAttribute('gap', 16);
  185. var mutation = goog.dom.createDom('mutation');
  186. mutation.setAttribute('name', name);
  187. block.appendChild(mutation);
  188. for (var t = 0; t < args.length; t++) {
  189. var arg = goog.dom.createDom('arg');
  190. arg.setAttribute('name', args[t]);
  191. mutation.appendChild(arg);
  192. }
  193. xmlList.push(block);
  194. }
  195. }
  196. var tuple = Blockly.Procedures.allProcedures(workspace);
  197. populateProcedures(tuple[0], 'procedures_callnoreturn');
  198. populateProcedures(tuple[1], 'procedures_callreturn');
  199. return xmlList;
  200. };
  201. /**
  202. * Find all the callers of a named procedure.
  203. * @param {string} name Name of procedure.
  204. * @param {!Blockly.Workspace} workspace The workspace to find callers in.
  205. * @return {!Array.<!Blockly.Block>} Array of caller blocks.
  206. */
  207. Blockly.Procedures.getCallers = function(name, workspace) {
  208. var callers = [];
  209. var blocks = workspace.getAllBlocks();
  210. // Iterate through every block and check the name.
  211. for (var i = 0; i < blocks.length; i++) {
  212. if (blocks[i].getProcedureCall) {
  213. var procName = blocks[i].getProcedureCall();
  214. // Procedure name may be null if the block is only half-built.
  215. if (procName && Blockly.Names.equals(procName, name)) {
  216. callers.push(blocks[i]);
  217. }
  218. }
  219. }
  220. return callers;
  221. };
  222. /**
  223. * When a procedure definition is disposed of, find and dispose of all its
  224. * callers.
  225. * @param {string} name Name of deleted procedure definition.
  226. * @param {!Blockly.Workspace} workspace The workspace to delete callers from.
  227. */
  228. Blockly.Procedures.disposeCallers = function(name, workspace) {
  229. var callers = Blockly.Procedures.getCallers(name, workspace);
  230. for (var i = 0; i < callers.length; i++) {
  231. callers[i].dispose(true, false);
  232. }
  233. };
  234. /**
  235. * When a procedure definition changes its parameters, find and edit all its
  236. * callers.
  237. * @param {string} name Name of edited procedure definition.
  238. * @param {!Blockly.Workspace} workspace The workspace to delete callers from.
  239. * @param {!Array.<string>} paramNames Array of new parameter names.
  240. * @param {!Array.<string>} paramIds Array of unique parameter IDs.
  241. */
  242. Blockly.Procedures.mutateCallers = function(name, workspace,
  243. paramNames, paramIds) {
  244. var callers = Blockly.Procedures.getCallers(name, workspace);
  245. for (var i = 0; i < callers.length; i++) {
  246. callers[i].setProcedureParameters(paramNames, paramIds);
  247. }
  248. };
  249. /**
  250. * Find the definition block for the named procedure.
  251. * @param {string} name Name of procedure.
  252. * @param {!Blockly.Workspace} workspace The workspace to search.
  253. * @return {Blockly.Block} The procedure definition block, or null not found.
  254. */
  255. Blockly.Procedures.getDefinition = function(name, workspace) {
  256. var blocks = workspace.getAllBlocks();
  257. for (var i = 0; i < blocks.length; i++) {
  258. if (blocks[i].getProcedureDef) {
  259. var tuple = blocks[i].getProcedureDef();
  260. if (tuple && Blockly.Names.equals(tuple[0], name)) {
  261. return blocks[i];
  262. }
  263. }
  264. }
  265. return null;
  266. };