mirror of
https://github.com/google/blockly.git
synced 2025-12-16 06:10:12 +01:00
* feat(generators): Add block generator function dictionary Add a dictionary of block generator functions, provisionally called .forBlock. Look up generator functions there first, but fall back to looking up on 'this' (with deprecation notice) for backwards compatibility. Also tweak error message generation to use template literal. * refactor(generators)!: Update generator definitions to use dictionary * fix(tests): Have blockToCodeTest clean up after itself Have the blockToCodeTest helper function delete the block generator functions it adds to generator once the test is done. * refactor(tests): Use generator dictionary in insertion marker test The use of generators in insertion_marker_test.js was overlooked in the earlier commit making such updates, and some test here were failing due to lack of cleanup in cleanup in the generator_test.js. BREAKING CHANGE: this PR moves the generator functions we provide from their previous location directly on the CodeGenerator instances to the new .forBlock dictionary on each instance. This does not oblige external developers to do the same for their custom generators, but they will need to update any code that references the generator functions we provide (in generators/*/*, i.e. on javascriptGenerator, dartGenerator etc.) e.g. to replace the implementation or reuse the implementation for a different block type.
292 lines
9.3 KiB
JavaScript
292 lines
9.3 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2012 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Generating Python for text blocks.
|
|
*/
|
|
|
|
import * as goog from '../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.Python.texts');
|
|
|
|
import * as stringUtils from '../../core/utils/string.js';
|
|
import {NameType} from '../../core/names.js';
|
|
import {pythonGenerator as Python} from '../python.js';
|
|
|
|
|
|
Python.forBlock['text'] = function(block) {
|
|
// Text value.
|
|
const code = Python.quote_(block.getFieldValue('TEXT'));
|
|
return [code, Python.ORDER_ATOMIC];
|
|
};
|
|
|
|
Python.forBlock['text_multiline'] = function(block) {
|
|
// Text value.
|
|
const code = Python.multiline_quote_(block.getFieldValue('TEXT'));
|
|
const order =
|
|
code.indexOf('+') !== -1 ? Python.ORDER_ADDITIVE : Python.ORDER_ATOMIC;
|
|
return [code, order];
|
|
};
|
|
|
|
/**
|
|
* Regular expression to detect a single-quoted string literal.
|
|
*/
|
|
const strRegExp = /^\s*'([^']|\\')*'\s*$/;
|
|
|
|
/**
|
|
* Enclose the provided value in 'str(...)' function.
|
|
* Leave string literals alone.
|
|
* @param {string} value Code evaluating to a value.
|
|
* @return {Array<string|number>} Array containing code evaluating to a string
|
|
* and
|
|
* the order of the returned code.[string, number]
|
|
*/
|
|
const forceString = function(value) {
|
|
if (strRegExp.test(value)) {
|
|
return [value, Python.ORDER_ATOMIC];
|
|
}
|
|
return ['str(' + value + ')', Python.ORDER_FUNCTION_CALL];
|
|
};
|
|
|
|
Python.forBlock['text_join'] = function(block) {
|
|
// Create a string made up of any number of elements of any type.
|
|
// Should we allow joining by '-' or ',' or any other characters?
|
|
switch (block.itemCount_) {
|
|
case 0:
|
|
return ["''", Python.ORDER_ATOMIC];
|
|
case 1: {
|
|
const element =
|
|
Python.valueToCode(block, 'ADD0', Python.ORDER_NONE) || "''";
|
|
const codeAndOrder = forceString(element);
|
|
return codeAndOrder;
|
|
}
|
|
case 2: {
|
|
const element0 =
|
|
Python.valueToCode(block, 'ADD0', Python.ORDER_NONE) || "''";
|
|
const element1 =
|
|
Python.valueToCode(block, 'ADD1', Python.ORDER_NONE) || "''";
|
|
const code = forceString(element0)[0] + ' + ' + forceString(element1)[0];
|
|
return [code, Python.ORDER_ADDITIVE];
|
|
}
|
|
default: {
|
|
const elements = [];
|
|
for (let i = 0; i < block.itemCount_; i++) {
|
|
elements[i] =
|
|
Python.valueToCode(block, 'ADD' + i, Python.ORDER_NONE) || "''";
|
|
}
|
|
const tempVar = Python.nameDB_.getDistinctName('x', NameType.VARIABLE);
|
|
const code = '\'\'.join([str(' + tempVar + ') for ' + tempVar + ' in [' +
|
|
elements.join(', ') + ']])';
|
|
return [code, Python.ORDER_FUNCTION_CALL];
|
|
}
|
|
}
|
|
};
|
|
|
|
Python.forBlock['text_append'] = function(block) {
|
|
// Append to a variable in place.
|
|
const varName =
|
|
Python.nameDB_.getName(block.getFieldValue('VAR'), NameType.VARIABLE);
|
|
const value = Python.valueToCode(block, 'TEXT', Python.ORDER_NONE) || "''";
|
|
return varName + ' = str(' + varName + ') + ' + forceString(value)[0] + '\n';
|
|
};
|
|
|
|
Python.forBlock['text_length'] = function(block) {
|
|
// Is the string null or array empty?
|
|
const text = Python.valueToCode(block, 'VALUE', Python.ORDER_NONE) || "''";
|
|
return ['len(' + text + ')', Python.ORDER_FUNCTION_CALL];
|
|
};
|
|
|
|
Python.forBlock['text_isEmpty'] = function(block) {
|
|
// Is the string null or array empty?
|
|
const text = Python.valueToCode(block, 'VALUE', Python.ORDER_NONE) || "''";
|
|
const code = 'not len(' + text + ')';
|
|
return [code, Python.ORDER_LOGICAL_NOT];
|
|
};
|
|
|
|
Python.forBlock['text_indexOf'] = function(block) {
|
|
// Search the text for a substring.
|
|
// Should we allow for non-case sensitive???
|
|
const operator = block.getFieldValue('END') === 'FIRST' ? 'find' : 'rfind';
|
|
const substring =
|
|
Python.valueToCode(block, 'FIND', Python.ORDER_NONE) || "''";
|
|
const text =
|
|
Python.valueToCode(block, 'VALUE', Python.ORDER_MEMBER) || "''";
|
|
const code = text + '.' + operator + '(' + substring + ')';
|
|
if (block.workspace.options.oneBasedIndex) {
|
|
return [code + ' + 1', Python.ORDER_ADDITIVE];
|
|
}
|
|
return [code, Python.ORDER_FUNCTION_CALL];
|
|
};
|
|
|
|
Python.forBlock['text_charAt'] = function(block) {
|
|
// Get letter at index.
|
|
// Note: Until January 2013 this block did not have the WHERE input.
|
|
const where = block.getFieldValue('WHERE') || 'FROM_START';
|
|
const textOrder =
|
|
(where === 'RANDOM') ? Python.ORDER_NONE : Python.ORDER_MEMBER;
|
|
const text = Python.valueToCode(block, 'VALUE', textOrder) || "''";
|
|
switch (where) {
|
|
case 'FIRST': {
|
|
const code = text + '[0]';
|
|
return [code, Python.ORDER_MEMBER];
|
|
}
|
|
case 'LAST': {
|
|
const code = text + '[-1]';
|
|
return [code, Python.ORDER_MEMBER];
|
|
}
|
|
case 'FROM_START': {
|
|
const at = Python.getAdjustedInt(block, 'AT');
|
|
const code = text + '[' + at + ']';
|
|
return [code, Python.ORDER_MEMBER];
|
|
}
|
|
case 'FROM_END': {
|
|
const at = Python.getAdjustedInt(block, 'AT', 1, true);
|
|
const code = text + '[' + at + ']';
|
|
return [code, Python.ORDER_MEMBER];
|
|
}
|
|
case 'RANDOM': {
|
|
Python.definitions_['import_random'] = 'import random';
|
|
const functionName = Python.provideFunction_('text_random_letter', `
|
|
def ${Python.FUNCTION_NAME_PLACEHOLDER_}(text):
|
|
x = int(random.random() * len(text))
|
|
return text[x]
|
|
`);
|
|
const code = functionName + '(' + text + ')';
|
|
return [code, Python.ORDER_FUNCTION_CALL];
|
|
}
|
|
}
|
|
throw Error('Unhandled option (text_charAt).');
|
|
};
|
|
|
|
Python.forBlock['text_getSubstring'] = function(block) {
|
|
// Get substring.
|
|
const where1 = block.getFieldValue('WHERE1');
|
|
const where2 = block.getFieldValue('WHERE2');
|
|
const text =
|
|
Python.valueToCode(block, 'STRING', Python.ORDER_MEMBER) || "''";
|
|
let at1;
|
|
switch (where1) {
|
|
case 'FROM_START':
|
|
at1 = Python.getAdjustedInt(block, 'AT1');
|
|
if (at1 === 0) {
|
|
at1 = '';
|
|
}
|
|
break;
|
|
case 'FROM_END':
|
|
at1 = Python.getAdjustedInt(block, 'AT1', 1, true);
|
|
break;
|
|
case 'FIRST':
|
|
at1 = '';
|
|
break;
|
|
default:
|
|
throw Error('Unhandled option (text_getSubstring)');
|
|
}
|
|
|
|
let at2;
|
|
switch (where2) {
|
|
case 'FROM_START':
|
|
at2 = Python.getAdjustedInt(block, 'AT2', 1);
|
|
break;
|
|
case 'FROM_END':
|
|
at2 = Python.getAdjustedInt(block, 'AT2', 0, true);
|
|
// Ensure that if the result calculated is 0 that sub-sequence will
|
|
// include all elements as expected.
|
|
if (!stringUtils.isNumber(String(at2))) {
|
|
Python.definitions_['import_sys'] = 'import sys';
|
|
at2 += ' or sys.maxsize';
|
|
} else if (at2 === 0) {
|
|
at2 = '';
|
|
}
|
|
break;
|
|
case 'LAST':
|
|
at2 = '';
|
|
break;
|
|
default:
|
|
throw Error('Unhandled option (text_getSubstring)');
|
|
}
|
|
const code = text + '[' + at1 + ' : ' + at2 + ']';
|
|
return [code, Python.ORDER_MEMBER];
|
|
};
|
|
|
|
Python.forBlock['text_changeCase'] = function(block) {
|
|
// Change capitalization.
|
|
const OPERATORS = {
|
|
'UPPERCASE': '.upper()',
|
|
'LOWERCASE': '.lower()',
|
|
'TITLECASE': '.title()'
|
|
};
|
|
const operator = OPERATORS[block.getFieldValue('CASE')];
|
|
const text = Python.valueToCode(block, 'TEXT', Python.ORDER_MEMBER) || "''";
|
|
const code = text + operator;
|
|
return [code, Python.ORDER_FUNCTION_CALL];
|
|
};
|
|
|
|
Python.forBlock['text_trim'] = function(block) {
|
|
// Trim spaces.
|
|
const OPERATORS = {
|
|
'LEFT': '.lstrip()',
|
|
'RIGHT': '.rstrip()',
|
|
'BOTH': '.strip()'
|
|
};
|
|
const operator = OPERATORS[block.getFieldValue('MODE')];
|
|
const text = Python.valueToCode(block, 'TEXT', Python.ORDER_MEMBER) || "''";
|
|
const code = text + operator;
|
|
return [code, Python.ORDER_FUNCTION_CALL];
|
|
};
|
|
|
|
Python.forBlock['text_print'] = function(block) {
|
|
// Print statement.
|
|
const msg = Python.valueToCode(block, 'TEXT', Python.ORDER_NONE) || "''";
|
|
return 'print(' + msg + ')\n';
|
|
};
|
|
|
|
Python.forBlock['text_prompt_ext'] = function(block) {
|
|
// Prompt function.
|
|
const functionName = Python.provideFunction_('text_prompt', `
|
|
def ${Python.FUNCTION_NAME_PLACEHOLDER_}(msg):
|
|
try:
|
|
return raw_input(msg)
|
|
except NameError:
|
|
return input(msg)
|
|
`);
|
|
let msg;
|
|
if (block.getField('TEXT')) {
|
|
// Internal message.
|
|
msg = Python.quote_(block.getFieldValue('TEXT'));
|
|
} else {
|
|
// External message.
|
|
msg = Python.valueToCode(block, 'TEXT', Python.ORDER_NONE) || "''";
|
|
}
|
|
let code = functionName + '(' + msg + ')';
|
|
const toNumber = block.getFieldValue('TYPE') === 'NUMBER';
|
|
if (toNumber) {
|
|
code = 'float(' + code + ')';
|
|
}
|
|
return [code, Python.ORDER_FUNCTION_CALL];
|
|
};
|
|
|
|
Python.forBlock['text_prompt'] = Python.forBlock['text_prompt_ext'];
|
|
|
|
Python.forBlock['text_count'] = function(block) {
|
|
const text = Python.valueToCode(block, 'TEXT', Python.ORDER_MEMBER) || "''";
|
|
const sub = Python.valueToCode(block, 'SUB', Python.ORDER_NONE) || "''";
|
|
const code = text + '.count(' + sub + ')';
|
|
return [code, Python.ORDER_FUNCTION_CALL];
|
|
};
|
|
|
|
Python.forBlock['text_replace'] = function(block) {
|
|
const text = Python.valueToCode(block, 'TEXT', Python.ORDER_MEMBER) || "''";
|
|
const from = Python.valueToCode(block, 'FROM', Python.ORDER_NONE) || "''";
|
|
const to = Python.valueToCode(block, 'TO', Python.ORDER_NONE) || "''";
|
|
const code = text + '.replace(' + from + ', ' + to + ')';
|
|
return [code, Python.ORDER_MEMBER];
|
|
};
|
|
|
|
Python.forBlock['text_reverse'] = function(block) {
|
|
const text = Python.valueToCode(block, 'TEXT', Python.ORDER_MEMBER) || "''";
|
|
const code = text + '[::-1]';
|
|
return [code, Python.ORDER_MEMBER];
|
|
};
|