dolphindb 2.0.1017 → 2.0.1018
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.
- package/language.js +21 -58
- package/language.js.map +1 -1
- package/package.json +1 -1
- package/test.d.ts +1 -1
- package/test.js +2 -1
- package/test.js.map +1 -1
package/language.js
CHANGED
|
@@ -248,6 +248,7 @@ export const constants = [
|
|
|
248
248
|
'False',
|
|
249
249
|
'None',
|
|
250
250
|
];
|
|
251
|
+
const func_name_pattern = '[^\\d\\W]\\w*!?';
|
|
251
252
|
function get_tm_language(python = false) {
|
|
252
253
|
return {
|
|
253
254
|
$schema: 'https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json',
|
|
@@ -532,33 +533,36 @@ function get_tm_language(python = false) {
|
|
|
532
533
|
function_call: {
|
|
533
534
|
patterns: [
|
|
534
535
|
{
|
|
535
|
-
begin:
|
|
536
|
+
begin: `(@)?(${func_name_pattern})\\s*(?=\\()`,
|
|
536
537
|
beginCaptures: {
|
|
537
|
-
1: {
|
|
538
|
-
|
|
539
|
-
},
|
|
540
|
-
2: {
|
|
541
|
-
patterns: [
|
|
542
|
-
{
|
|
543
|
-
include: '#function_name'
|
|
544
|
-
}
|
|
545
|
-
]
|
|
546
|
-
}
|
|
538
|
+
1: { name: 'variable.other.readwrite.instance.dolphindb' },
|
|
539
|
+
2: { patterns: [{ include: '#function_name' }] }
|
|
547
540
|
},
|
|
548
541
|
end: '(?<=\\))',
|
|
549
542
|
name: 'meta.function-call.dolphindb',
|
|
550
|
-
patterns: [
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
543
|
+
patterns: [{ include: '#arguments' }]
|
|
544
|
+
}
|
|
545
|
+
]
|
|
546
|
+
},
|
|
547
|
+
method_call: {
|
|
548
|
+
patterns: [
|
|
549
|
+
{
|
|
550
|
+
begin: `(?:(\\.)|(::))\\s*(${func_name_pattern})(?=\\()`,
|
|
551
|
+
beginCaptures: {
|
|
552
|
+
1: { name: 'punctuation.separator.method.period.dolphindb' },
|
|
553
|
+
2: { name: 'keyword.operator.prototype.dolphindb' },
|
|
554
|
+
3: { patterns: [{ include: '#function_name' }] }
|
|
555
|
+
},
|
|
556
|
+
end: '(?<=\\))',
|
|
557
|
+
name: 'meta.method-call.dolphindb',
|
|
558
|
+
patterns: [{ include: '#arguments' }]
|
|
555
559
|
}
|
|
556
560
|
]
|
|
557
561
|
},
|
|
558
562
|
function_name: {
|
|
559
563
|
patterns: [
|
|
560
564
|
{
|
|
561
|
-
match:
|
|
565
|
+
match: func_name_pattern,
|
|
562
566
|
name: 'entity.name.function.dolphindb'
|
|
563
567
|
},
|
|
564
568
|
{
|
|
@@ -702,47 +706,6 @@ function get_tm_language(python = false) {
|
|
|
702
706
|
}
|
|
703
707
|
]
|
|
704
708
|
},
|
|
705
|
-
method_call: {
|
|
706
|
-
patterns: [
|
|
707
|
-
{
|
|
708
|
-
begin: '(?:(\\.)|(::))\\s*([\\w$]+!?)(?=\\()',
|
|
709
|
-
beginCaptures: {
|
|
710
|
-
1: {
|
|
711
|
-
name: 'punctuation.separator.method.period.dolphindb'
|
|
712
|
-
},
|
|
713
|
-
2: {
|
|
714
|
-
name: 'keyword.operator.prototype.dolphindb'
|
|
715
|
-
},
|
|
716
|
-
3: {
|
|
717
|
-
patterns: [
|
|
718
|
-
{
|
|
719
|
-
include: '#method_name'
|
|
720
|
-
}
|
|
721
|
-
]
|
|
722
|
-
}
|
|
723
|
-
},
|
|
724
|
-
end: '(?<=\\))',
|
|
725
|
-
name: 'meta.method-call.dolphindb',
|
|
726
|
-
patterns: [
|
|
727
|
-
{
|
|
728
|
-
include: '#arguments'
|
|
729
|
-
}
|
|
730
|
-
]
|
|
731
|
-
}
|
|
732
|
-
]
|
|
733
|
-
},
|
|
734
|
-
method_name: {
|
|
735
|
-
patterns: [
|
|
736
|
-
{
|
|
737
|
-
match: '[a-zA-Z_$][\\w$]*',
|
|
738
|
-
name: 'entity.name.function.dolphindb'
|
|
739
|
-
},
|
|
740
|
-
{
|
|
741
|
-
match: '\\d[\\w$]*',
|
|
742
|
-
name: 'invalid.illegal.identifier.dolphindb'
|
|
743
|
-
}
|
|
744
|
-
]
|
|
745
|
-
},
|
|
746
709
|
operator: {
|
|
747
710
|
patterns: [
|
|
748
711
|
{
|
package/language.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"language.js","sourceRoot":"","sources":["language.ts"],"names":[],"mappings":"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","sourcesContent":["const sql_keywords = [\n // 不要单独算关键字比较好\n // 'column',\n // 'table',\n // 'database',\n \n 'select',\n 'exec',\n 'update',\n \n 'insert',\n 'insert into',\n \n 'create table',\n 'create database',\n \n 'alter table',\n \n // alter table ... add column_name datatype\n 'add',\n 'rename',\n 'to',\n 'drop',\n \n \n 'drop table',\n 'drop database',\n \n 'delete',\n \n 'transaction',\n \n 'join',\n 'inner join',\n 'full join',\n 'full outer join',\n 'left join',\n 'left outer join',\n 'left semi join',\n 'right join',\n 'right outer join',\n 'left semijoin',\n 'cross join',\n \n 'context by',\n 'partitioned by',\n 'group by',\n 'pivot by',\n 'order by',\n 'cgroup by',\n 'partition by',\n \n 'csort',\n 'limit',\n 'top',\n \n 'into',\n 'from',\n 'where',\n 'having',\n 'with',\n 'set',\n 'as',\n 'in',\n 'or',\n 'not',\n 'on',\n 'like',\n 'values',\n 'if',\n 'exists',\n 'distinct',\n 'map',\n \n \n 'between', 'and', // between ... and ...\n \n 'is null', 'is not null',\n \n // case when ... then ... end\n 'case', 'when', 'then', 'else', 'end',\n \n 'union', 'union all',\n \n 'nulls first', 'nulls last',\n \n 'asc', 'desc',\n]\n\n\nexport const keywords = [\n 'assert',\n \n 'const',\n 'mutable',\n \n 'def',\n 'defg',\n \n // 'map',\n 'mapr',\n \n 'timer',\n \n // 流程控制\n // 'if',\n // 'else',\n 'do',\n 'for',\n 'while',\n 'return',\n 'continue',\n 'break',\n 'try',\n 'catch',\n 'throw',\n 'go',\n \n // 模块\n 'use',\n 'module',\n \n \n // 仅 Python 有的\n 'async',\n 'await',\n 'class',\n 'del',\n 'elif',\n 'except',\n 'finally',\n 'global',\n 'import',\n 'is',\n 'lambda',\n 'nonlocal',\n 'pass',\n 'raise',\n 'yield',\n \n \n // --- SQL\n ... sql_keywords,\n ... sql_keywords.map(keyword => keyword.toUpperCase())\n].sort((l, r) => { // 长的在前面,正则表达式先匹配全部,而不是部分单词,防止高亮显示不正确\n const delta_len = l.length - r.length\n if (delta_len !== 0)\n return -delta_len\n \n return 0 // 否则保留原本顺序\n})\n\n\nexport const constants = [\n 'NULL',\n 'true',\n 'false',\n 'pi',\n 'e',\n \n // --- form\n 'SCALAR',\n 'VECTOR',\n 'PAIR',\n 'MATRIX',\n 'SET',\n 'DICT',\n 'TABLE',\n // 'CHART',\n // 'CHUNK',\n \n // --- type\n 'VOID',\n 'BOOL',\n 'CHAR',\n 'SHORT',\n 'INT', 'INDEX',\n 'LONG',\n 'DATE',\n 'MONTH',\n 'TIME',\n 'MINUTE',\n 'SECOND',\n 'DATETIME',\n 'TIMESTAMP',\n 'NANOTIME',\n 'NANOTIMESTAMP',\n 'FLOAT',\n 'DOUBLE',\n 'SYMBOL',\n 'STRING',\n 'UUID',\n 'FUNCTIONDEF',\n 'HANDLE',\n 'CODE',\n 'DATASOURCE',\n 'RESOURCE',\n 'ANY',\n // 'COMPRESS',\n 'DICTIONARY',\n 'DATEHOUR',\n 'IPADDR',\n 'INT128',\n 'BLOB',\n 'COMPLEX',\n 'POINT',\n 'DURATION',\n 'OBJECT',\n 'DECIMAL32',\n 'DECIMAL64',\n 'DECIMAL128',\n \n // partition type\n 'SEQ',\n 'RANGE',\n 'HASH',\n 'VALUE',\n 'LIST',\n 'COMPO',\n \n \n // defined\n // https://www.dolphindb.cn/cn/help/FunctionsandCommands/FunctionReferences/d/defined.html\n 'VAR',\n 'SHARED',\n 'DEF',\n 'GLOBAL',\n \n \n // 用户权限管理\n // https://www.dolphindb.cn/cn/help/200/SystemManagement/UserAccessControl.html\n // https://www.dolphindb.cn/cn/help/200/FunctionsandCommands/CommandsReferences/d/deny.html\n 'TABLE_READ',\n 'TABLE_WRITE',\n 'TABLE_INSERT',\n 'TABLE_UPDATE',\n 'TABLE_DELETE',\n \n 'DBOBJ_CREATE',\n 'DBOBJ_DELETE',\n \n 'DB_DELETE',\n 'DB_INSERT',\n 'DB_MANAGE',\n 'DB_OWNER',\n 'DB_READ',\n 'DB_UPDATE',\n 'DB_WRITE',\n \n 'SCRIPT_EXEC',\n 'TASK_GROUP_MEM_LIMIT',\n 'TEST_EXEC',\n 'VIEW_EXEC',\n 'QUERY_RESULT_MEM_LIMIT',\n \n \n // hint\n // https://www.dolphindb.cn/cn/help/200/FunctionsandCommands/FunctionReferences/s/sql.html\n 'HINT_HASH',\n 'HINT_SNAPSHOT',\n 'HINT_KEEPORDER',\n 'HINT_SEQ',\n 'HINT_EXPLAIN',\n 'HINT_VECTORIZED',\n \n \n // --- seek mode\n 'HEAD',\n 'CURRENT',\n 'TAIL',\n \n // --- chart type\n // https://www.dolphindb.cn/cn/help/200/FunctionsandCommands/FunctionReferences/p/plot.html\n 'LINE',\n 'PIE',\n 'COLUMN',\n 'BAR',\n 'AREA',\n 'SCATTER',\n 'HISTOGRAM',\n 'KLINE',\n \n \n // --- log level\n 'DEBUG',\n 'INFO',\n 'WARNING',\n 'ERROR',\n \n // keep duplicates\n // https://www.dolphindb.cn/cn/help/200/FunctionsandCommands/FunctionReferences/c/createPartitionedTable.html?highlight=first\n 'FIRST',\n 'LAST',\n 'ALL',\n \n // keep\n // https://www.dolphindb.cn/cn/help/200/FunctionsandCommands/FunctionReferences/i/isDuplicated.html?highlight=none\n 'NONE',\n \n 'HASH_PTN',\n \n // 仅 Python 有的\n 'True',\n 'False',\n 'None',\n \n] as const\n\n\n\nfunction get_tm_language (python = false) {\n return {\n $schema: 'https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json',\n \n name: python ? 'DolphinDB Python' : 'DolphinDB',\n \n scopeName: python ? 'source.dolphindb-python' : 'source.dolphindb',\n \n patterns: [\n {\n match: '\\\\.\\\\.\\\\.',\n name: 'invalid.ellipsis.dolphindb'\n },\n {\n include: '#keyword'\n },\n {\n include: '#literal'\n },\n {\n include: '#comment'\n },\n {\n include: '#decorator'\n },\n {\n include: '#variable'\n },\n {\n include: '#operator'\n },\n {\n include: '#method_call'\n },\n {\n include: '#function_call'\n },\n {\n include: '#property'\n },\n {\n match: ';',\n name: 'punctuation.terminator.statement.dolphindb'\n },\n {\n match: ',',\n name: 'punctuation.separator.commma.dolphindb'\n }\n ],\n \n \n repository: {\n keyword: {\n // \\b: word boundary\n // (?<![.$]): boundary 不是 . 或 $\n // ?!\\s*: 不是 label\n match: `\\\\b(?<![.$])(${keywords.join('|')})(?!(\\\\s*:|\\\\())\\\\b`,\n name: 'keyword.control.dolphindb'\n },\n \n literal: {\n patterns: [\n { include: '#constant' },\n { include: '#datetime' },\n { include: '#string' },\n { include: '#number' },\n ]\n },\n \n constant: {\n match: `\\\\b(?<![.$])(${constants.join('|')})(?!\\\\s*:)\\\\b`,\n name: 'constant.language.int.dolphindb'\n },\n \n decorator: {\n match: '^@testing',\n name: 'meta.decorator.dolphindb',\n },\n \n datetime: {\n patterns: [\n {\n match: '\\\\b[0-9]{4}[.][0-9]{2}[.][0-9]{2}[T ][0-9]{2}:[0-9]{2}:[0-9]{2}([.][0-9]{3,9})?\\\\b',\n name: 'constant.numeric.datetime.datetime.dolphindb',\n },\n {\n match: '\\\\b[0-9]{4}\\\\.[0-9]{2}M\\\\b',\n name: 'constant.numeric.datetime.month.dolphindb',\n },\n {\n match: '\\\\b[0-9]{4}\\\\.[0-9]{2}\\\\.[0-9]{2}\\\\b',\n name: 'constant.numeric.datetime.date.dolphindb',\n },\n {\n match: '\\\\b[0-9]{2}:[0-9]{2}:[0-9]{2}([.][0-9]{3,9})?\\\\b',\n name: 'constant.numeric.datetime.time.dolphindb',\n },\n {\n match: '\\\\b[0-9]{2}:[0-9]{2}m\\\\b',\n name: 'constant.numeric.datetime.minute.dolphindb',\n },\n ]\n },\n \n string: {\n patterns: [\n {\n include: '#string_single_quoted'\n },\n {\n include: '#string_double_quoted'\n },\n {\n begin: \"'''\",\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.string.begin.dolphindb'\n }\n },\n end: \"'''\",\n endCaptures: {\n 0: {\n name: 'punctuation.definition.string.end.dolphindb'\n }\n },\n name: 'string.quoted.single.heredoc.dolphindb',\n patterns: [\n {\n captures: {\n 1: {\n name: 'punctuation.definition.escape.backslash.dolphindb'\n }\n },\n match: '(\\\\\\\\).',\n name: 'constant.character.escape.backslash.dolphindb'\n }\n ]\n },\n {\n begin: '\"\"\"',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.string.begin.dolphindb'\n }\n },\n end: '\"\"\"',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.string.end.dolphindb'\n }\n },\n name: 'string.quoted.double.heredoc.dolphindb',\n patterns: [\n {\n captures: {\n 1: {\n name: 'punctuation.definition.escape.backslash.dolphindb'\n }\n },\n match: '(\\\\\\\\).',\n name: 'constant.character.escape.backslash.dolphindb'\n },\n {\n include: '#interpolated_dolphindb'\n }\n ]\n },\n {\n match: '`[\\\\w\\\\.]*',\n name: 'string.quoted.other.dolphindb'\n }\n ]\n },\n \n number: {\n patterns: [\n {\n match: '\\\\b[01]+[bB]\\\\b',\n name: 'constant.numeric.binary.dolphindb'\n },\n {\n // 97c\n match: '\\\\b[0-9]+([clhsmyM]|ms)\\\\b',\n name: 'constant.numeric.dolphindb'\n },\n {\n // 1.2f, 1f\n match: '\\\\b[0-9]+(\\\\.[0-9]+)?f\\\\b',\n name: 'constant.numeric.dolphindb'\n },\n {\n match: \n '(?x)\\n' +\n '(?:\\n' +\n ' (?:\\\\b[0-9]+(\\\\.)[0-9]+[eE][+-]?[0-9]+\\\\b)| # 1.1E+3\\n' +\n ' (?:\\\\b[0-9]+(\\\\.)[eE][+-]?[0-9]+\\\\b)| # 1.E+3\\n' +\n ' (?:\\\\b(\\\\.)[0-9]+[eE][+-]?[0-9]+\\\\b)| # .1E+3\\n' +\n ' (?:\\\\b[0-9]+[eE][+-]?[0-9]+\\\\b)| # 1E+3\\n' +\n ' (?:\\\\b[0-9]+(\\\\.)[0-9]+\\\\b)| # 1.1\\n' +\n ' (?:\\\\b[0-9]+(?=\\\\.{2,3}))| # 1 followed by a slice\\n' +\n ' (?:\\\\b[0-9]+(\\\\.)\\\\b)| # 1.\\n' +\n ' (?:\\\\b(\\\\.)[0-9]+\\\\b)| # .1\\n' +\n ' (?:\\\\b[0-9]+\\\\b(?!\\\\.)) # 1\\n' +\n ')\\n',\n \n captures: {\n 0: {\n name: 'constant.numeric.decimal.dolphindb'\n },\n 1: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n },\n 2: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n },\n 3: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n },\n 4: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n },\n 5: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n },\n 6: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n }\n }\n },\n ]\n },\n \n string_single_quoted: {\n patterns: [\n {\n begin: \"'\",\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.string.begin.dolphindb'\n }\n },\n end: \"'\",\n endCaptures: {\n 0: {\n name: 'punctuation.definition.string.end.dolphindb'\n }\n },\n name: 'string.quoted.single.dolphindb',\n patterns: [\n {\n captures: {\n 1: {\n name: 'punctuation.definition.escape.backslash.dolphindb'\n }\n },\n match: '(\\\\\\\\)(x[0-9A-Fa-f]{2}|[0-2][0-7]{0,2}|3[0-6][0-7]?|37[0-7]?|[4-7][0-7]?|.)',\n name: 'constant.character.escape.backslash.dolphindb'\n }\n ]\n }\n ]\n },\n \n string_double_quoted: {\n patterns: [\n {\n begin: '\"',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.string.begin.dolphindb'\n }\n },\n end: '\"',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.string.end.dolphindb'\n }\n },\n name: 'string.quoted.double.dolphindb',\n patterns: [\n {\n captures: {\n 1: {\n name: 'punctuation.definition.escape.backslash.dolphindb'\n }\n },\n match: '(\\\\\\\\)(x[0-9A-Fa-f]{2}|[0-2][0-7]{0,2}|3[0-6][0-7]|37[0-7]?|[4-7][0-7]?|.)',\n name: 'constant.character.escape.backslash.dolphindb'\n },\n {\n include: '#interpolated_dolphindb'\n }\n ]\n }\n ]\n },\n \n function_call: {\n patterns: [\n {\n begin: '(@)?([\\\\w$]+!?)\\\\s*(?=\\\\()',\n beginCaptures: {\n 1: {\n name: 'variable.other.readwrite.instance.dolphindb'\n },\n 2: {\n patterns: [\n {\n include: '#function_name'\n }\n ]\n }\n },\n end: '(?<=\\\\))',\n name: 'meta.function-call.dolphindb',\n patterns: [\n {\n include: '#arguments'\n }\n ]\n }\n ]\n },\n \n function_name: {\n patterns: [\n {\n match: '[a-zA-Z_\\\\u4e00-\\\\u9fa5][\\\\w\\\\u4e00-\\\\u9fa5]*',\n name: 'entity.name.function.dolphindb'\n },\n {\n match: '\\\\d[\\\\w]*',\n name: 'invalid.illegal.identifier.dolphindb'\n }\n ]\n },\n \n function_params: {\n patterns: [\n {\n begin: '\\\\(',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.parameters.begin.bracket.round.dolphindb'\n }\n },\n end: '\\\\)',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.parameters.end.bracket.round.dolphindb'\n }\n },\n name: 'meta.parameters.dolphindb',\n patterns: [\n {\n include: '#variable'\n },\n {\n match: '(@(?:[a-zA-Z_$][\\\\w$]*)?)(\\\\.\\\\.\\\\.)?',\n captures: {\n 1: {\n name: 'variable.parameter.function.readwrite.instance.dolphindb'\n },\n 2: {\n name: 'keyword.operator.splat.dolphindb'\n }\n }\n },\n {\n include: '$self'\n }\n ]\n }\n ]\n },\n \n comment: {\n patterns: python ? [\n {\n begin: '#',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.comment.dolphindb'\n }\n },\n end: '$',\n name: 'comment.line.number-sign.dolphindb'\n }\n ] : [\n {\n begin: '/\\\\*',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.comment.dolphindb'\n }\n },\n end: '\\\\*/',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.comment.dolphindb'\n }\n },\n name: 'comment.block.dolphindb'\n },\n {\n begin: '//',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.comment.dolphindb'\n }\n },\n end: '$',\n name: 'comment.line.number-sign.dolphindb'\n },\n ]\n },\n \n arguments: {\n patterns: [\n {\n begin: '\\\\(',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.arguments.begin.bracket.round.dolphindb'\n }\n },\n end: '\\\\)',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.arguments.end.bracket.round.dolphindb'\n }\n },\n name: 'meta.arguments.dolphindb',\n patterns: [\n {\n include: '$self'\n },\n {\n include: '#literal'\n },\n {\n include: '#variable'\n }\n ]\n }\n ]\n },\n \n variable: {\n patterns: [\n {\n match: '(@)([a-zA-Z_\\\\$]\\\\w*)?',\n name: 'variable.other.readwrite.instance.dolphindb'\n }\n ]\n },\n \n interpolated_dolphindb: {\n patterns: [\n {\n begin: '\\\\#\\\\{',\n captures: {\n 0: {\n name: 'punctuation.section.embedded.dolphindb'\n }\n },\n end: '\\\\}',\n name: 'source.dolphindb.embedded.source',\n patterns: [\n {\n include: '$self'\n }\n ]\n }\n ]\n },\n \n method_call: {\n patterns: [\n {\n begin: '(?:(\\\\.)|(::))\\\\s*([\\\\w$]+!?)(?=\\\\()',\n beginCaptures: {\n 1: {\n name: 'punctuation.separator.method.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n patterns: [\n {\n include: '#method_name'\n }\n ]\n }\n },\n end: '(?<=\\\\))',\n name: 'meta.method-call.dolphindb',\n patterns: [\n {\n include: '#arguments'\n }\n ]\n }\n ]\n },\n \n method_name: {\n patterns: [\n {\n match: '[a-zA-Z_$][\\\\w$]*',\n name: 'entity.name.function.dolphindb'\n },\n {\n match: '\\\\d[\\\\w$]*',\n name: 'invalid.illegal.identifier.dolphindb'\n }\n ]\n },\n \n operator: {\n patterns: [\n {\n match: '<<|>>',\n name: 'keyword.operator.bitwise.shift.dolphindb'\n },\n {\n match: '!=|<=|>=|==|>|<',\n name: 'keyword.operator.comparison.dolphindb'\n },\n {\n match: '<-|->',\n name: 'keyword.operator.join.dolphindb'\n },\n {\n match: '&&|!|\\\\|\\\\|',\n name: 'keyword.operator.logical.dolphindb'\n },\n {\n match: '&|\\\\||\\\\^',\n name: 'keyword.operator.bitwise.dolphindb'\n },\n {\n match: '\\\\.\\\\.',\n name: 'keyword.operator.splat.dolphindb'\n },\n {\n match: '\\\\?',\n name: 'keyword.operator.existential.dolphindb'\n },\n {\n match: '/|<-|%|\\\\*|/|-|\\\\$|\\\\+',\n name: 'keyword.operator.dolphindb'\n },\n {\n match: '([a-zA-Z$_][\\\\w$]*)?\\\\s*(=|:(?!:))(?![>=])',\n captures: {\n 1: {\n name: 'variable.assignment.dolphindb'\n },\n 2: {\n name: 'keyword.operator.assignment.dolphindb'\n }\n }\n }\n ]\n },\n \n property: {\n patterns: [\n {\n match: '(?:(\\\\.)|(::))\\\\s*([A-Z][A-Z0-9_$]*\\\\b\\\\$*)(?=\\\\s*\\\\??(\\\\.\\\\s*[a-zA-Z_$]\\\\w*|::))',\n captures: {\n 1: {\n name: 'punctuation.separator.property.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n name: 'constant.other.object.property.dolphindb'\n }\n }\n },\n {\n match: '(?:(\\\\.)|(::))\\\\s*(\\\\$*[a-zA-Z_$][\\\\w$]*)(?=\\\\s*\\\\??(\\\\.\\\\s*[a-zA-Z_$]\\\\w*|::))',\n captures: {\n 1: {\n name: 'punctuation.separator.property.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n name: 'variable.other.object.property.dolphindb'\n }\n }\n },\n {\n match: '(?:(\\\\.)|(::))\\\\s*([A-Z][A-Z0-9_$]*\\\\b\\\\$*)',\n captures: {\n 1: {\n name: 'punctuation.separator.property.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n name: 'constant.other.property.dolphindb'\n }\n }\n },\n {\n match: '(?:(\\\\.)|(::))\\\\s*(\\\\$*[a-zA-Z_$][\\\\w$]*)',\n captures: {\n 1: {\n name: 'punctuation.separator.property.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n name: 'variable.other.property.dolphindb'\n }\n }\n },\n {\n match: '(?:(\\\\.)|(::))\\\\s*([0-9][\\\\w$]*)',\n captures: {\n 1: {\n name: 'punctuation.separator.property.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n name: 'invalid.illegal.identifier.dolphindb'\n }\n }\n }\n ]\n }\n }\n } as Block\n}\n\n\nexport const tm_language = get_tm_language(false)\n\nexport const tm_language_python = get_tm_language(true)\n\n\ninterface Block {\n patterns: Pattern[]\n repository?: Record<string, Pattern | Block>\n}\n\ntype Pattern = Match | Include | Block\n\ntype Match = MatchOne | MatchBeginEnd\n\ninterface MatchOne {\n /** a single-line regular expression */\n match: RegExp | string\n \n /** This is the scope that will be applied to the matched text */\n name?: string\n \n /** This use of the captures > patterns structure is extremely important. \n Without it, a stretch of text matched by a match rule is considered finished, and \n TextMate’s search proceeds to the rest of the line after the matched text. \n With it, the stretch of matched text itself becomes a candidate for further matches. \n */\n captures?: Captures\n}\n\ninterface MatchBeginEnd {\n begin: RegExp | string\n \n end: RegExp | string\n \n /** This is the scope (or an expression evaluating to a scope) to be applied to \n the entire matched stretch(es) of text starting at the start of the begin match.\n */\n name?: string\n \n /** This is the scope to be applied to what’s between the begin match and the end match (or the end of the document). */\n contentName?: string\n \n /** it applies to the region between the begin and end matches. */\n patterns?: Pattern[]\n \n beginCaptures?: Captures\n \n endCaptures?: Captures\n \n whileCaptures?: Captures\n \n /** If the name or number of the matched group happens to be the same for both the begin pattern and the other pattern, \n you can (if appropriate) use captures as a shorthand to avoid saying the same thing twice.\n */\n captures?: Captures\n \n applyEndPatternLast?: 1\n}\n\ninterface Include {\n include: string\n}\n\ntype Captures = Record<string | number, {\n /** This is the scope that will be assigned to the matched group text. */\n name?: string\n \n /** This is a list of match rules to be sought within the matched group text \n — thus permitting the search for matches to continue inside the matched text.\n */\n patterns?: Pattern[]\n}>\n\n"]}
|
|
1
|
+
{"version":3,"file":"language.js","sourceRoot":"","sources":["language.ts"],"names":[],"mappings":"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","sourcesContent":["const sql_keywords = [\n // 不要单独算关键字比较好\n // 'column',\n // 'table',\n // 'database',\n \n 'select',\n 'exec',\n 'update',\n \n 'insert',\n 'insert into',\n \n 'create table',\n 'create database',\n \n 'alter table',\n \n // alter table ... add column_name datatype\n 'add',\n 'rename',\n 'to',\n 'drop',\n \n \n 'drop table',\n 'drop database',\n \n 'delete',\n \n 'transaction',\n \n 'join',\n 'inner join',\n 'full join',\n 'full outer join',\n 'left join',\n 'left outer join',\n 'left semi join',\n 'right join',\n 'right outer join',\n 'left semijoin',\n 'cross join',\n \n 'context by',\n 'partitioned by',\n 'group by',\n 'pivot by',\n 'order by',\n 'cgroup by',\n 'partition by',\n \n 'csort',\n 'limit',\n 'top',\n \n 'into',\n 'from',\n 'where',\n 'having',\n 'with',\n 'set',\n 'as',\n 'in',\n 'or',\n 'not',\n 'on',\n 'like',\n 'values',\n 'if',\n 'exists',\n 'distinct',\n 'map',\n \n \n 'between', 'and', // between ... and ...\n \n 'is null', 'is not null',\n \n // case when ... then ... end\n 'case', 'when', 'then', 'else', 'end',\n \n 'union', 'union all',\n \n 'nulls first', 'nulls last',\n \n 'asc', 'desc',\n]\n\n\nexport const keywords = [\n 'assert',\n \n 'const',\n 'mutable',\n \n 'def',\n 'defg',\n \n // 'map',\n 'mapr',\n \n 'timer',\n \n // 流程控制\n // 'if',\n // 'else',\n 'do',\n 'for',\n 'while',\n 'return',\n 'continue',\n 'break',\n 'try',\n 'catch',\n 'throw',\n 'go',\n \n // 模块\n 'use',\n 'module',\n \n \n // 仅 Python 有的\n 'async',\n 'await',\n 'class',\n 'del',\n 'elif',\n 'except',\n 'finally',\n 'global',\n 'import',\n 'is',\n 'lambda',\n 'nonlocal',\n 'pass',\n 'raise',\n 'yield',\n \n \n // --- SQL\n ... sql_keywords,\n ... sql_keywords.map(keyword => keyword.toUpperCase())\n].sort((l, r) => { // 长的在前面,正则表达式先匹配全部,而不是部分单词,防止高亮显示不正确\n const delta_len = l.length - r.length\n if (delta_len !== 0)\n return -delta_len\n \n return 0 // 否则保留原本顺序\n})\n\n\nexport const constants = [\n 'NULL',\n 'true',\n 'false',\n 'pi',\n 'e',\n \n // --- form\n 'SCALAR',\n 'VECTOR',\n 'PAIR',\n 'MATRIX',\n 'SET',\n 'DICT',\n 'TABLE',\n // 'CHART',\n // 'CHUNK',\n \n // --- type\n 'VOID',\n 'BOOL',\n 'CHAR',\n 'SHORT',\n 'INT', 'INDEX',\n 'LONG',\n 'DATE',\n 'MONTH',\n 'TIME',\n 'MINUTE',\n 'SECOND',\n 'DATETIME',\n 'TIMESTAMP',\n 'NANOTIME',\n 'NANOTIMESTAMP',\n 'FLOAT',\n 'DOUBLE',\n 'SYMBOL',\n 'STRING',\n 'UUID',\n 'FUNCTIONDEF',\n 'HANDLE',\n 'CODE',\n 'DATASOURCE',\n 'RESOURCE',\n 'ANY',\n // 'COMPRESS',\n 'DICTIONARY',\n 'DATEHOUR',\n 'IPADDR',\n 'INT128',\n 'BLOB',\n 'COMPLEX',\n 'POINT',\n 'DURATION',\n 'OBJECT',\n 'DECIMAL32',\n 'DECIMAL64',\n 'DECIMAL128',\n \n // partition type\n 'SEQ',\n 'RANGE',\n 'HASH',\n 'VALUE',\n 'LIST',\n 'COMPO',\n \n \n // defined\n // https://www.dolphindb.cn/cn/help/FunctionsandCommands/FunctionReferences/d/defined.html\n 'VAR',\n 'SHARED',\n 'DEF',\n 'GLOBAL',\n \n \n // 用户权限管理\n // https://www.dolphindb.cn/cn/help/200/SystemManagement/UserAccessControl.html\n // https://www.dolphindb.cn/cn/help/200/FunctionsandCommands/CommandsReferences/d/deny.html\n 'TABLE_READ',\n 'TABLE_WRITE',\n 'TABLE_INSERT',\n 'TABLE_UPDATE',\n 'TABLE_DELETE',\n \n 'DBOBJ_CREATE',\n 'DBOBJ_DELETE',\n \n 'DB_DELETE',\n 'DB_INSERT',\n 'DB_MANAGE',\n 'DB_OWNER',\n 'DB_READ',\n 'DB_UPDATE',\n 'DB_WRITE',\n \n 'SCRIPT_EXEC',\n 'TASK_GROUP_MEM_LIMIT',\n 'TEST_EXEC',\n 'VIEW_EXEC',\n 'QUERY_RESULT_MEM_LIMIT',\n \n \n // hint\n // https://www.dolphindb.cn/cn/help/200/FunctionsandCommands/FunctionReferences/s/sql.html\n 'HINT_HASH',\n 'HINT_SNAPSHOT',\n 'HINT_KEEPORDER',\n 'HINT_SEQ',\n 'HINT_EXPLAIN',\n 'HINT_VECTORIZED',\n \n \n // --- seek mode\n 'HEAD',\n 'CURRENT',\n 'TAIL',\n \n // --- chart type\n // https://www.dolphindb.cn/cn/help/200/FunctionsandCommands/FunctionReferences/p/plot.html\n 'LINE',\n 'PIE',\n 'COLUMN',\n 'BAR',\n 'AREA',\n 'SCATTER',\n 'HISTOGRAM',\n 'KLINE',\n \n \n // --- log level\n 'DEBUG',\n 'INFO',\n 'WARNING',\n 'ERROR',\n \n // keep duplicates\n // https://www.dolphindb.cn/cn/help/200/FunctionsandCommands/FunctionReferences/c/createPartitionedTable.html?highlight=first\n 'FIRST',\n 'LAST',\n 'ALL',\n \n // keep\n // https://www.dolphindb.cn/cn/help/200/FunctionsandCommands/FunctionReferences/i/isDuplicated.html?highlight=none\n 'NONE',\n \n 'HASH_PTN',\n \n // 仅 Python 有的\n 'True',\n 'False',\n 'None',\n \n] as const\n\n\nconst func_name_pattern = '[^\\\\d\\\\W]\\\\w*!?'\n\n\nfunction get_tm_language (python = false) {\n return {\n $schema: 'https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json',\n \n name: python ? 'DolphinDB Python' : 'DolphinDB',\n \n scopeName: python ? 'source.dolphindb-python' : 'source.dolphindb',\n \n patterns: [\n {\n match: '\\\\.\\\\.\\\\.',\n name: 'invalid.ellipsis.dolphindb'\n },\n {\n include: '#keyword'\n },\n {\n include: '#literal'\n },\n {\n include: '#comment'\n },\n {\n include: '#decorator'\n },\n {\n include: '#variable'\n },\n {\n include: '#operator'\n },\n {\n include: '#method_call'\n },\n {\n include: '#function_call'\n },\n {\n include: '#property'\n },\n {\n match: ';',\n name: 'punctuation.terminator.statement.dolphindb'\n },\n {\n match: ',',\n name: 'punctuation.separator.commma.dolphindb'\n }\n ],\n \n \n repository: {\n keyword: {\n // \\b: word boundary\n // (?<![.$]): boundary 不是 . 或 $\n // ?!\\s*: 不是 label\n match: `\\\\b(?<![.$])(${keywords.join('|')})(?!(\\\\s*:|\\\\())\\\\b`,\n name: 'keyword.control.dolphindb'\n },\n \n literal: {\n patterns: [\n { include: '#constant' },\n { include: '#datetime' },\n { include: '#string' },\n { include: '#number' },\n ]\n },\n \n constant: {\n match: `\\\\b(?<![.$])(${constants.join('|')})(?!\\\\s*:)\\\\b`,\n name: 'constant.language.int.dolphindb'\n },\n \n decorator: {\n match: '^@testing',\n name: 'meta.decorator.dolphindb',\n },\n \n datetime: {\n patterns: [\n {\n match: '\\\\b[0-9]{4}[.][0-9]{2}[.][0-9]{2}[T ][0-9]{2}:[0-9]{2}:[0-9]{2}([.][0-9]{3,9})?\\\\b',\n name: 'constant.numeric.datetime.datetime.dolphindb',\n },\n {\n match: '\\\\b[0-9]{4}\\\\.[0-9]{2}M\\\\b',\n name: 'constant.numeric.datetime.month.dolphindb',\n },\n {\n match: '\\\\b[0-9]{4}\\\\.[0-9]{2}\\\\.[0-9]{2}\\\\b',\n name: 'constant.numeric.datetime.date.dolphindb',\n },\n {\n match: '\\\\b[0-9]{2}:[0-9]{2}:[0-9]{2}([.][0-9]{3,9})?\\\\b',\n name: 'constant.numeric.datetime.time.dolphindb',\n },\n {\n match: '\\\\b[0-9]{2}:[0-9]{2}m\\\\b',\n name: 'constant.numeric.datetime.minute.dolphindb',\n },\n ]\n },\n \n string: {\n patterns: [\n {\n include: '#string_single_quoted'\n },\n {\n include: '#string_double_quoted'\n },\n {\n begin: \"'''\",\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.string.begin.dolphindb'\n }\n },\n end: \"'''\",\n endCaptures: {\n 0: {\n name: 'punctuation.definition.string.end.dolphindb'\n }\n },\n name: 'string.quoted.single.heredoc.dolphindb',\n patterns: [\n {\n captures: {\n 1: {\n name: 'punctuation.definition.escape.backslash.dolphindb'\n }\n },\n match: '(\\\\\\\\).',\n name: 'constant.character.escape.backslash.dolphindb'\n }\n ]\n },\n {\n begin: '\"\"\"',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.string.begin.dolphindb'\n }\n },\n end: '\"\"\"',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.string.end.dolphindb'\n }\n },\n name: 'string.quoted.double.heredoc.dolphindb',\n patterns: [\n {\n captures: {\n 1: {\n name: 'punctuation.definition.escape.backslash.dolphindb'\n }\n },\n match: '(\\\\\\\\).',\n name: 'constant.character.escape.backslash.dolphindb'\n },\n {\n include: '#interpolated_dolphindb'\n }\n ]\n },\n {\n match: '`[\\\\w\\\\.]*',\n name: 'string.quoted.other.dolphindb'\n }\n ]\n },\n \n number: {\n patterns: [\n {\n match: '\\\\b[01]+[bB]\\\\b',\n name: 'constant.numeric.binary.dolphindb'\n },\n {\n // 97c\n match: '\\\\b[0-9]+([clhsmyM]|ms)\\\\b',\n name: 'constant.numeric.dolphindb'\n },\n {\n // 1.2f, 1f\n match: '\\\\b[0-9]+(\\\\.[0-9]+)?f\\\\b',\n name: 'constant.numeric.dolphindb'\n },\n {\n match: \n '(?x)\\n' +\n '(?:\\n' +\n ' (?:\\\\b[0-9]+(\\\\.)[0-9]+[eE][+-]?[0-9]+\\\\b)| # 1.1E+3\\n' +\n ' (?:\\\\b[0-9]+(\\\\.)[eE][+-]?[0-9]+\\\\b)| # 1.E+3\\n' +\n ' (?:\\\\b(\\\\.)[0-9]+[eE][+-]?[0-9]+\\\\b)| # .1E+3\\n' +\n ' (?:\\\\b[0-9]+[eE][+-]?[0-9]+\\\\b)| # 1E+3\\n' +\n ' (?:\\\\b[0-9]+(\\\\.)[0-9]+\\\\b)| # 1.1\\n' +\n ' (?:\\\\b[0-9]+(?=\\\\.{2,3}))| # 1 followed by a slice\\n' +\n ' (?:\\\\b[0-9]+(\\\\.)\\\\b)| # 1.\\n' +\n ' (?:\\\\b(\\\\.)[0-9]+\\\\b)| # .1\\n' +\n ' (?:\\\\b[0-9]+\\\\b(?!\\\\.)) # 1\\n' +\n ')\\n',\n \n captures: {\n 0: {\n name: 'constant.numeric.decimal.dolphindb'\n },\n 1: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n },\n 2: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n },\n 3: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n },\n 4: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n },\n 5: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n },\n 6: {\n name: 'punctuation.separator.decimal.period.dolphindb'\n }\n }\n },\n ]\n },\n \n string_single_quoted: {\n patterns: [\n {\n begin: \"'\",\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.string.begin.dolphindb'\n }\n },\n end: \"'\",\n endCaptures: {\n 0: {\n name: 'punctuation.definition.string.end.dolphindb'\n }\n },\n name: 'string.quoted.single.dolphindb',\n patterns: [\n {\n captures: {\n 1: {\n name: 'punctuation.definition.escape.backslash.dolphindb'\n }\n },\n match: '(\\\\\\\\)(x[0-9A-Fa-f]{2}|[0-2][0-7]{0,2}|3[0-6][0-7]?|37[0-7]?|[4-7][0-7]?|.)',\n name: 'constant.character.escape.backslash.dolphindb'\n }\n ]\n }\n ]\n },\n \n string_double_quoted: {\n patterns: [\n {\n begin: '\"',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.string.begin.dolphindb'\n }\n },\n end: '\"',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.string.end.dolphindb'\n }\n },\n name: 'string.quoted.double.dolphindb',\n patterns: [\n {\n captures: {\n 1: {\n name: 'punctuation.definition.escape.backslash.dolphindb'\n }\n },\n match: '(\\\\\\\\)(x[0-9A-Fa-f]{2}|[0-2][0-7]{0,2}|3[0-6][0-7]|37[0-7]?|[4-7][0-7]?|.)',\n name: 'constant.character.escape.backslash.dolphindb'\n },\n {\n include: '#interpolated_dolphindb'\n }\n ]\n }\n ]\n },\n \n function_call: {\n patterns: [\n {\n begin: `(@)?(${func_name_pattern})\\\\s*(?=\\\\()`,\n beginCaptures: {\n 1: { name: 'variable.other.readwrite.instance.dolphindb' },\n 2: { patterns: [{ include: '#function_name' }] }\n },\n end: '(?<=\\\\))',\n name: 'meta.function-call.dolphindb',\n patterns: [{ include: '#arguments' }]\n }\n ]\n },\n \n \n method_call: {\n patterns: [\n {\n begin: `(?:(\\\\.)|(::))\\\\s*(${func_name_pattern})(?=\\\\()`,\n beginCaptures: {\n 1: { name: 'punctuation.separator.method.period.dolphindb' },\n 2: { name: 'keyword.operator.prototype.dolphindb' },\n 3: { patterns: [{ include: '#function_name' }] }\n },\n end: '(?<=\\\\))',\n name: 'meta.method-call.dolphindb',\n patterns: [{ include: '#arguments' }]\n }\n ]\n },\n \n \n function_name: {\n patterns: [\n {\n match: func_name_pattern,\n name: 'entity.name.function.dolphindb'\n },\n {\n match: '\\\\d[\\\\w]*',\n name: 'invalid.illegal.identifier.dolphindb'\n }\n ]\n },\n \n function_params: {\n patterns: [\n {\n begin: '\\\\(',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.parameters.begin.bracket.round.dolphindb'\n }\n },\n end: '\\\\)',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.parameters.end.bracket.round.dolphindb'\n }\n },\n name: 'meta.parameters.dolphindb',\n patterns: [\n {\n include: '#variable'\n },\n {\n match: '(@(?:[a-zA-Z_$][\\\\w$]*)?)(\\\\.\\\\.\\\\.)?',\n captures: {\n 1: {\n name: 'variable.parameter.function.readwrite.instance.dolphindb'\n },\n 2: {\n name: 'keyword.operator.splat.dolphindb'\n }\n }\n },\n {\n include: '$self'\n }\n ]\n }\n ]\n },\n \n comment: {\n patterns: python ? [\n {\n begin: '#',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.comment.dolphindb'\n }\n },\n end: '$',\n name: 'comment.line.number-sign.dolphindb'\n }\n ] : [\n {\n begin: '/\\\\*',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.comment.dolphindb'\n }\n },\n end: '\\\\*/',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.comment.dolphindb'\n }\n },\n name: 'comment.block.dolphindb'\n },\n {\n begin: '//',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.comment.dolphindb'\n }\n },\n end: '$',\n name: 'comment.line.number-sign.dolphindb'\n },\n ]\n },\n \n arguments: {\n patterns: [\n {\n begin: '\\\\(',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.arguments.begin.bracket.round.dolphindb'\n }\n },\n end: '\\\\)',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.arguments.end.bracket.round.dolphindb'\n }\n },\n name: 'meta.arguments.dolphindb',\n patterns: [\n {\n include: '$self'\n },\n {\n include: '#literal'\n },\n {\n include: '#variable'\n }\n ]\n }\n ]\n },\n \n variable: {\n patterns: [\n {\n match: '(@)([a-zA-Z_\\\\$]\\\\w*)?',\n name: 'variable.other.readwrite.instance.dolphindb'\n }\n ]\n },\n \n interpolated_dolphindb: {\n patterns: [\n {\n begin: '\\\\#\\\\{',\n captures: {\n 0: {\n name: 'punctuation.section.embedded.dolphindb'\n }\n },\n end: '\\\\}',\n name: 'source.dolphindb.embedded.source',\n patterns: [\n {\n include: '$self'\n }\n ]\n }\n ]\n },\n \n \n operator: {\n patterns: [\n {\n match: '<<|>>',\n name: 'keyword.operator.bitwise.shift.dolphindb'\n },\n {\n match: '!=|<=|>=|==|>|<',\n name: 'keyword.operator.comparison.dolphindb'\n },\n {\n match: '<-|->',\n name: 'keyword.operator.join.dolphindb'\n },\n {\n match: '&&|!|\\\\|\\\\|',\n name: 'keyword.operator.logical.dolphindb'\n },\n {\n match: '&|\\\\||\\\\^',\n name: 'keyword.operator.bitwise.dolphindb'\n },\n {\n match: '\\\\.\\\\.',\n name: 'keyword.operator.splat.dolphindb'\n },\n {\n match: '\\\\?',\n name: 'keyword.operator.existential.dolphindb'\n },\n {\n match: '/|<-|%|\\\\*|/|-|\\\\$|\\\\+',\n name: 'keyword.operator.dolphindb'\n },\n {\n match: '([a-zA-Z$_][\\\\w$]*)?\\\\s*(=|:(?!:))(?![>=])',\n captures: {\n 1: {\n name: 'variable.assignment.dolphindb'\n },\n 2: {\n name: 'keyword.operator.assignment.dolphindb'\n }\n }\n }\n ]\n },\n \n property: {\n patterns: [\n {\n match: '(?:(\\\\.)|(::))\\\\s*([A-Z][A-Z0-9_$]*\\\\b\\\\$*)(?=\\\\s*\\\\??(\\\\.\\\\s*[a-zA-Z_$]\\\\w*|::))',\n captures: {\n 1: {\n name: 'punctuation.separator.property.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n name: 'constant.other.object.property.dolphindb'\n }\n }\n },\n {\n match: '(?:(\\\\.)|(::))\\\\s*(\\\\$*[a-zA-Z_$][\\\\w$]*)(?=\\\\s*\\\\??(\\\\.\\\\s*[a-zA-Z_$]\\\\w*|::))',\n captures: {\n 1: {\n name: 'punctuation.separator.property.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n name: 'variable.other.object.property.dolphindb'\n }\n }\n },\n {\n match: '(?:(\\\\.)|(::))\\\\s*([A-Z][A-Z0-9_$]*\\\\b\\\\$*)',\n captures: {\n 1: {\n name: 'punctuation.separator.property.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n name: 'constant.other.property.dolphindb'\n }\n }\n },\n {\n match: '(?:(\\\\.)|(::))\\\\s*(\\\\$*[a-zA-Z_$][\\\\w$]*)',\n captures: {\n 1: {\n name: 'punctuation.separator.property.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n name: 'variable.other.property.dolphindb'\n }\n }\n },\n {\n match: '(?:(\\\\.)|(::))\\\\s*([0-9][\\\\w$]*)',\n captures: {\n 1: {\n name: 'punctuation.separator.property.period.dolphindb'\n },\n 2: {\n name: 'keyword.operator.prototype.dolphindb'\n },\n 3: {\n name: 'invalid.illegal.identifier.dolphindb'\n }\n }\n }\n ]\n }\n }\n } as Block\n}\n\n\nexport const tm_language = get_tm_language(false)\n\nexport const tm_language_python = get_tm_language(true)\n\n\ninterface Block {\n patterns: Pattern[]\n repository?: Record<string, Pattern | Block>\n}\n\ntype Pattern = Match | Include | Block\n\ntype Match = MatchOne | MatchBeginEnd\n\ninterface MatchOne {\n /** a single-line regular expression */\n match: RegExp | string\n \n /** This is the scope that will be applied to the matched text */\n name?: string\n \n /** This use of the captures > patterns structure is extremely important. \n Without it, a stretch of text matched by a match rule is considered finished, and \n TextMate’s search proceeds to the rest of the line after the matched text. \n With it, the stretch of matched text itself becomes a candidate for further matches. \n */\n captures?: Captures\n}\n\ninterface MatchBeginEnd {\n begin: RegExp | string\n \n end: RegExp | string\n \n /** This is the scope (or an expression evaluating to a scope) to be applied to \n the entire matched stretch(es) of text starting at the start of the begin match.\n */\n name?: string\n \n /** This is the scope to be applied to what’s between the begin match and the end match (or the end of the document). */\n contentName?: string\n \n /** it applies to the region between the begin and end matches. */\n patterns?: Pattern[]\n \n beginCaptures?: Captures\n \n endCaptures?: Captures\n \n whileCaptures?: Captures\n \n /** If the name or number of the matched group happens to be the same for both the begin pattern and the other pattern, \n you can (if appropriate) use captures as a shorthand to avoid saying the same thing twice.\n */\n captures?: Captures\n \n applyEndPatternLast?: 1\n}\n\ninterface Include {\n include: string\n}\n\ntype Captures = Record<string | number, {\n /** This is the scope that will be assigned to the matched group text. */\n name?: string\n \n /** This is a list of match rules to be sought within the matched group text \n — thus permitting the search for matches to continue inside the matched text.\n */\n patterns?: Pattern[]\n}>\n\n"]}
|
package/package.json
CHANGED
package/test.d.ts
CHANGED
package/test.js
CHANGED
|
@@ -4,7 +4,8 @@ import { keywords } from './language.js';
|
|
|
4
4
|
import { DDB, DdbConnectionError, DdbDatabaseError, DdbForm, DdbInt, DdbLong, DdbObj, DdbType, DdbVectorAny, DdbVectorDouble, DdbVectorSymbol, month2ms, DdbDurationUnit } from './index.js';
|
|
5
5
|
set_inspect_options();
|
|
6
6
|
// linux
|
|
7
|
-
export const url = 'ws://115.239.209.123:8892'
|
|
7
|
+
// export const url = 'ws://115.239.209.123:8892' as const
|
|
8
|
+
export const url = 'ws://192.168.0.200:20023';
|
|
8
9
|
(async function test() {
|
|
9
10
|
console.log('--- 测试开始 ---'.green);
|
|
10
11
|
let ddb = new DDB(url);
|
package/test.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test.js","sourceRoot":"","sources":["test.ts"],"names":[],"mappings":"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","sourcesContent":["import { deepEqual } from 'assert/strict'\n\nimport { assert, defer, inspect, set_inspect_options, WebSocketConnectionError } from 'xshell'\n\nimport { keywords } from './language.js'\nimport { DDB, DdbConnectionError, DdbDatabaseError, DdbForm, DdbInt, DdbLong, DdbObj, DdbType, DdbVectorAny, DdbVectorDouble, DdbVectorSymbol, month2ms, type DdbStringObj, type DdbVectorAnyObj, type DdbDurationVectorValue, DdbDurationUnit, type DdbVectorObj, type DdbTableObj } from './index.js'\n\n\nset_inspect_options()\n\n\n// linux\nexport const url = 'ws://115.239.209.123:8892' as const\n// export const url = 'ws://192.168.0.200:20023' as const\n// export const url = 'ws://192.168.0.29:9002' as const\n\n// windows\n// export const url = 'ws://192.168.0.29:9002' as const\n\n// local 8848\n// export const url = 'ws://127.0.0.1:8848' as const\n\n\n;(async function test () {\n console.log('--- 测试开始 ---'.green)\n \n let ddb = new DDB(url)\n \n const tests = [\n test_repl,\n \n test_keywords,\n test_types,\n test_reconnection,\n test_connection_error,\n test_print,\n test_time,\n test_streaming,\n test_error,\n ]\n \n for (const fn_test of tests)\n await fn_test(ddb)\n \n ddb.disconnect()\n \n console.log('--- 测试通过 ---'.green)\n})()\n\n\n\nfunction test_keywords () {\n assert(new Set(keywords).size === keywords.length, 'keywords 中不能有重复的项')\n}\n\n\nasync function get_printed (ddb: DDB, code: string) {\n return new Promise<string>(async (resolve, reject) => {\n try {\n let resolved = false\n await ddb.eval(\n `print(${code})`,\n {\n listener ({ type, data }) {\n if (type === 'print' && !resolved) {\n resolved = true\n resolve(data)\n }\n }\n }\n )\n if (!resolved)\n reject(new Error('未输出 print 消息'))\n } catch (error) {\n reject(error)\n }\n })\n}\n\n\nasync function test_repl (ddb: DDB) {\n \n}\n\n\nasync function test_reconnection (ddb: DDB) {\n let _ddb = new DDB(url)\n \n await _ddb.connect()\n _ddb.disconnect()\n \n let error: DdbConnectionError\n \n try {\n await _ddb.connect()\n } catch (_error) {\n error = _error\n }\n \n assert(error && error instanceof DdbConnectionError)\n}\n\n\nasync function test_connection_error (ddb: DDB) {\n let _ddb = new DDB(url)\n \n await _ddb.connect()\n _ddb.disconnect()\n \n let error: DdbConnectionError\n \n try {\n await _ddb.eval('1 + 1')\n } catch (_error) {\n error = _error\n }\n \n assert(error && error instanceof DdbConnectionError)\n}\n\n\nasync function test_error (ddb: DDB) {\n console.log('测试 DdbDatabaseError 和 DdbConnectionError')\n \n const error_message = '错误消息'\n const error_script = `throw ${error_message.quote()}`\n \n let database_error: DdbDatabaseError\n \n try {\n await ddb.eval(error_script)\n } catch (error) {\n database_error = error\n }\n \n assert(database_error)\n assert(database_error instanceof DdbDatabaseError)\n assert(database_error.message === `throw ${error_message.quote('double')} => ${error_message}`)\n assert(database_error.name === 'DdbDatabaseError')\n assert(database_error.ddb === ddb)\n assert(database_error.type === 'script')\n assert(database_error.options.script === error_script)\n assert(database_error.stack.includes('test_error'))\n \n \n let ddbtest = new DDB(url)\n let connection_error: DdbConnectionError\n try {\n await ddbtest.connect()\n ddbtest.disconnect()\n await ddbtest.eval('1')\n } catch (error) {\n connection_error = error\n }\n \n assert(connection_error)\n assert(connection_error instanceof DdbConnectionError)\n assert(connection_error.ddb === ddbtest)\n \n \n // --- 首次连接失败也会抛出 DdbConnectionError\n let ddbtest2 = new DDB('ws://dolphindb.com/')\n let connection_error2: DdbConnectionError\n try {\n await ddbtest2.connect()\n } catch (error) {\n connection_error2 = error\n }\n \n assert(connection_error2)\n assert(connection_error2 instanceof DdbConnectionError)\n assert(connection_error2.cause && connection_error2.cause instanceof WebSocketConnectionError)\n}\n\n\nasync function test_print (ddb: DDB) {\n console.log('测试 print message')\n \n const str = 'test print message\\n中文'\n \n assert(await get_printed(ddb, str.quote()) === str)\n \n console.log('测试 verbose 输出')\n \n let vddb = new DDB(url, { verbose: true })\n \n await vddb.call('typestr', [\n new DdbVectorAny([\n new DdbVectorSymbol(['a', 'b', 'a', 'b', 'a', 'b']),\n new DdbLong(3n)\n ])\n ])\n \n vddb.disconnect()\n}\n\n\nasync function test_streaming (ddb: DDB) {\n console.log('测试流数据')\n \n await ddb.eval(\n 'try {\\n' +\n \" if (!defined('prices', SHARED)) {\\n\" +\n ' share(\\n' +\n ' streamTable(\\n' +\n ' 10000:0,\\n' +\n \" ['time', 'stock', 'price'],\\n\" +\n ' [TIMESTAMP, SYMBOL, DOUBLE]\\n' +\n ' ),\\n' +\n \" 'prices'\\n\" +\n ' )\\n' +\n \" print('prices 流表创建成功')\\n\" +\n ' } else\\n' +\n \" print('prices 流表已存在')\\n\" +\n '} catch (error) {\\n' +\n \" print('prices 流表创建失败')\\n\" +\n ' print(error)\\n' +\n '}\\n'\n )\n \n let total_rows = 0\n \n let promise = defer<void>()\n \n let sddb = new DDB(url, {\n streaming: {\n table: 'prices',\n handler ({ rows, error, colnames, data, time, id, window, schema }) {\n if (error)\n throw error\n \n if (total_rows === 0 && schema) {\n console.log('流订阅返回了 table schema')\n console.log(schema)\n }\n \n // console.log(data)\n \n deepEqual(colnames, ['time', 'stock', 'price'])\n \n assert(data.form === DdbForm.vector)\n assert(data.rows === 3)\n assert(id)\n assert(time)\n assert(window.rows)\n \n total_rows += rows\n \n if (total_rows === 50)\n promise.resolve()\n },\n }\n })\n \n await sddb.connect()\n \n await ddb.eval(\n 'n = 5\\n' +\n '\\n' +\n 'for (i in 0..9)\\n' +\n ' append!(\\n' +\n ' prices,\\n' +\n ' table([\\n' +\n ' (now() + 0..(n-1)) as time,\\n' +\n \" take(['MSFT', 'FUTU'], n) as stock,\\n\" +\n ' (0..(n-1) \\\\ 10) as price\\n' +\n ' ])\\n' +\n ' )\\n'\n )\n \n await promise\n console.log('流数据已全部收齐')\n \n sddb.disconnect()\n}\n\n\nasync function test_time (ddb: DDB) {\n console.log('测试时间显示')\n \n await time2str_equal(ddb, '2022-09-01T14:30:01.095')\n await time2str_equal(ddb, '2022-07-01T00:00:00.000')\n await time2str_equal(ddb, '2022-07-02T00:00:00.000')\n await time2str_equal(ddb, '2022-06-30T00:00:00.000')\n await time2str_equal(ddb, '2022-12-22T16:57:30.248')\n \n \n console.log('测试 month2ms')\n assert(\n month2ms(\n (\n await ddb.eval<DdbObj<number>>('2022.12M')\n ).value\n ) === new Date('2022.12.01').valueOf()\n )\n}\n\n\nasync function time2str_equal (ddb: DDB, timestr: string) {\n const code = `temporalParse('${timestr}', 'yyyy-MM-ddTHH:mm:sss.SSS')`\n \n assert(\n inspect(\n await ddb.eval(code),\n { colors: false }\n ).slice('timestamp('.length, -1) === \n (\n await get_printed(ddb, code)\n ).replace('T', ' ')\n )\n}\n\n\nexport async function test_types (ddb: DDB) {\n console.log('测试通过 ddb.call 调用 getNodeAlias 函数')\n console.log(await ddb.call('getNodeAlias'))\n \n console.log('测试 ddb.call 上传不同类型的变量')\n const result0 = await ddb.call('typestr', [new DdbInt(1)])\n console.log(result0)\n assert(result0.form === DdbForm.scalar)\n assert(result0.type === DdbType.string)\n assert(result0.value === 'INT')\n \n console.log('测试 ddb.call 上传不同类型的变量')\n const result1 = await ddb.call('typestr', [new DdbVectorDouble([0.1, 0.2, 0.3])])\n console.log(result1)\n assert(result1.form === DdbForm.scalar)\n assert(result1.type === DdbType.string)\n assert(result1.value === 'FAST DOUBLE VECTOR')\n \n console.log('测试 array vector')\n const av = await ddb.eval(\n 'av = array(INT[], 0, 3)\\n' +\n 'append!(av, [1..4])\\n' +\n 'append!(av, [1..70000])\\n' +\n 'av\\n'\n )\n \n console.log(av)\n assert(av.form === DdbForm.vector)\n assert(av.type === DdbType.int + 64) // array vector 的 type 比较特殊,需要偏移 64\n assert(av.rows === 2)\n \n \n console.log('测试大数据')\n let bigarr = new Float64Array(10)\n bigarr.fill(0.5)\n \n await ddb.call<DdbStringObj>('typestr', [\n new DdbObj({\n form: DdbForm.vector,\n type: DdbType.double,\n length: 0,\n rows: bigarr.length,\n cols: 1,\n value: bigarr\n })\n ])\n \n await ddb.upload(['a'], [\n new DdbObj({\n form: DdbForm.vector,\n type: DdbType.double,\n length: 0,\n rows: bigarr.length,\n cols: 1,\n value: bigarr\n })\n ])\n \n assert((\n await ddb.eval<DdbVectorDouble>('a')\n ).rows === bigarr.length)\n \n \n console.log('测试 datasource')\n \n const ds = (await ddb.eval<DdbVectorAnyObj>(\n 'db_path = \"dfs://test-datasource\"\\n' + \n 'tb_name = \"db\"\\n' + \n 'if (!existsTable(db_path, tb_name))\\n' + \n ' createTable(\\n' + \n ' database(db_path, VALUE , [1]),\\n' +\n ' table(1:0,`id`name, [INT, STRING]),\\n' +\n ' tb_name\\n' +\n ' ).append!(table(1 2 as id, `str1`str2 as name))\\n' +\n '\\n' +\n 'tb = loadTable(db_path, tb_name)\\n' +\n 'sqlDS(<select * from tb where id = 1>)\\n'\n )).value[0] as DdbStringObj\n \n const { type, form, value } = ds\n \n assert(type === DdbType.datasource && form === DdbForm.scalar, '返回的 DdbObj 具有正确的 type 和 form')\n \n assert(value === 'DataSource< select [7] * from tb where id == 1 >')\n \n // 如果直接构造 DdbObj Datasource,将其送入 ddb.call, ddb将仍然认为送入的是一个 STRING \n assert(\n (await ddb.call<DdbStringObj>('typestr', [ds])).value === 'STRING', \n '从 js 构建的 Datasource DdbObj 会被识别为 STRING'\n )\n \n console.log('测试 pair<duration>')\n const dp = await ddb.eval<DdbVectorObj<DdbDurationVectorValue>>(\n 'pair(duration(\"20d\"), duration(\"2H\"))'\n ) \n \n console.log(dp)\n assert(dp.type === DdbType.duration, 'dp 的返回值应该为 Duration')\n assert(dp.value[0].data === 20 && dp.value[0].unit === DdbDurationUnit.d, 'pair<duration> 的 value 应该已解析')\n \n console.log('测试 void vector')\n const table = await ddb.eval<DdbTableObj>('select *, NULL as val from table(1..100 as id)')\n const { value: [ints, voids] } = table\n \n console.log(voids)\n assert(voids.rows === ints.rows, 'void vector 应该具有正常的 vector length')\n assert(voids.length === 10, 'void vector 应该具有正确的数据长度')\n assert(voids.value === null, 'void vector 的值应该为 null')\n \n await ddb.upload(['voidtable'], [table])\n}\n\n"]}
|
|
1
|
+
{"version":3,"file":"test.js","sourceRoot":"","sources":["test.ts"],"names":[],"mappings":"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","sourcesContent":["import { deepEqual } from 'assert/strict'\n\nimport { assert, defer, inspect, set_inspect_options, WebSocketConnectionError } from 'xshell'\n\nimport { keywords } from './language.js'\nimport { DDB, DdbConnectionError, DdbDatabaseError, DdbForm, DdbInt, DdbLong, DdbObj, DdbType, DdbVectorAny, DdbVectorDouble, DdbVectorSymbol, month2ms, type DdbStringObj, type DdbVectorAnyObj, type DdbDurationVectorValue, DdbDurationUnit, type DdbVectorObj, type DdbTableObj } from './index.js'\n\n\nset_inspect_options()\n\n\n// linux\n// export const url = 'ws://115.239.209.123:8892' as const\nexport const url = 'ws://192.168.0.200:20023' as const\n// export const url = 'ws://192.168.0.29:9002' as const\n\n// windows\n// export const url = 'ws://192.168.0.29:9002' as const\n\n// local 8848\n// export const url = 'ws://127.0.0.1:8848' as const\n\n\n;(async function test () {\n console.log('--- 测试开始 ---'.green)\n \n let ddb = new DDB(url)\n \n const tests = [\n test_repl,\n \n test_keywords,\n test_types,\n test_reconnection,\n test_connection_error,\n test_print,\n test_time,\n test_streaming,\n test_error,\n ]\n \n for (const fn_test of tests)\n await fn_test(ddb)\n \n ddb.disconnect()\n \n console.log('--- 测试通过 ---'.green)\n})()\n\n\n\nfunction test_keywords () {\n assert(new Set(keywords).size === keywords.length, 'keywords 中不能有重复的项')\n}\n\n\nasync function get_printed (ddb: DDB, code: string) {\n return new Promise<string>(async (resolve, reject) => {\n try {\n let resolved = false\n await ddb.eval(\n `print(${code})`,\n {\n listener ({ type, data }) {\n if (type === 'print' && !resolved) {\n resolved = true\n resolve(data)\n }\n }\n }\n )\n if (!resolved)\n reject(new Error('未输出 print 消息'))\n } catch (error) {\n reject(error)\n }\n })\n}\n\n\nasync function test_repl (ddb: DDB) {\n \n}\n\n\nasync function test_reconnection (ddb: DDB) {\n let _ddb = new DDB(url)\n \n await _ddb.connect()\n _ddb.disconnect()\n \n let error: DdbConnectionError\n \n try {\n await _ddb.connect()\n } catch (_error) {\n error = _error\n }\n \n assert(error && error instanceof DdbConnectionError)\n}\n\n\nasync function test_connection_error (ddb: DDB) {\n let _ddb = new DDB(url)\n \n await _ddb.connect()\n _ddb.disconnect()\n \n let error: DdbConnectionError\n \n try {\n await _ddb.eval('1 + 1')\n } catch (_error) {\n error = _error\n }\n \n assert(error && error instanceof DdbConnectionError)\n}\n\n\nasync function test_error (ddb: DDB) {\n console.log('测试 DdbDatabaseError 和 DdbConnectionError')\n \n const error_message = '错误消息'\n const error_script = `throw ${error_message.quote()}`\n \n let database_error: DdbDatabaseError\n \n try {\n await ddb.eval(error_script)\n } catch (error) {\n database_error = error\n }\n \n assert(database_error)\n assert(database_error instanceof DdbDatabaseError)\n assert(database_error.message === `throw ${error_message.quote('double')} => ${error_message}`)\n assert(database_error.name === 'DdbDatabaseError')\n assert(database_error.ddb === ddb)\n assert(database_error.type === 'script')\n assert(database_error.options.script === error_script)\n assert(database_error.stack.includes('test_error'))\n \n \n let ddbtest = new DDB(url)\n let connection_error: DdbConnectionError\n try {\n await ddbtest.connect()\n ddbtest.disconnect()\n await ddbtest.eval('1')\n } catch (error) {\n connection_error = error\n }\n \n assert(connection_error)\n assert(connection_error instanceof DdbConnectionError)\n assert(connection_error.ddb === ddbtest)\n \n \n // --- 首次连接失败也会抛出 DdbConnectionError\n let ddbtest2 = new DDB('ws://dolphindb.com/')\n let connection_error2: DdbConnectionError\n try {\n await ddbtest2.connect()\n } catch (error) {\n connection_error2 = error\n }\n \n assert(connection_error2)\n assert(connection_error2 instanceof DdbConnectionError)\n assert(connection_error2.cause && connection_error2.cause instanceof WebSocketConnectionError)\n}\n\n\nasync function test_print (ddb: DDB) {\n console.log('测试 print message')\n \n const str = 'test print message\\n中文'\n \n assert(await get_printed(ddb, str.quote()) === str)\n \n console.log('测试 verbose 输出')\n \n let vddb = new DDB(url, { verbose: true })\n \n await vddb.call('typestr', [\n new DdbVectorAny([\n new DdbVectorSymbol(['a', 'b', 'a', 'b', 'a', 'b']),\n new DdbLong(3n)\n ])\n ])\n \n vddb.disconnect()\n}\n\n\nasync function test_streaming (ddb: DDB) {\n console.log('测试流数据')\n \n await ddb.eval(\n 'try {\\n' +\n \" if (!defined('prices', SHARED)) {\\n\" +\n ' share(\\n' +\n ' streamTable(\\n' +\n ' 10000:0,\\n' +\n \" ['time', 'stock', 'price'],\\n\" +\n ' [TIMESTAMP, SYMBOL, DOUBLE]\\n' +\n ' ),\\n' +\n \" 'prices'\\n\" +\n ' )\\n' +\n \" print('prices 流表创建成功')\\n\" +\n ' } else\\n' +\n \" print('prices 流表已存在')\\n\" +\n '} catch (error) {\\n' +\n \" print('prices 流表创建失败')\\n\" +\n ' print(error)\\n' +\n '}\\n'\n )\n \n let total_rows = 0\n \n let promise = defer<void>()\n \n let sddb = new DDB(url, {\n streaming: {\n table: 'prices',\n handler ({ rows, error, colnames, data, time, id, window, schema }) {\n if (error)\n throw error\n \n if (total_rows === 0 && schema) {\n console.log('流订阅返回了 table schema')\n console.log(schema)\n }\n \n // console.log(data)\n \n deepEqual(colnames, ['time', 'stock', 'price'])\n \n assert(data.form === DdbForm.vector)\n assert(data.rows === 3)\n assert(id)\n assert(time)\n assert(window.rows)\n \n total_rows += rows\n \n if (total_rows === 50)\n promise.resolve()\n },\n }\n })\n \n await sddb.connect()\n \n await ddb.eval(\n 'n = 5\\n' +\n '\\n' +\n 'for (i in 0..9)\\n' +\n ' append!(\\n' +\n ' prices,\\n' +\n ' table([\\n' +\n ' (now() + 0..(n-1)) as time,\\n' +\n \" take(['MSFT', 'FUTU'], n) as stock,\\n\" +\n ' (0..(n-1) \\\\ 10) as price\\n' +\n ' ])\\n' +\n ' )\\n'\n )\n \n await promise\n console.log('流数据已全部收齐')\n \n sddb.disconnect()\n}\n\n\nasync function test_time (ddb: DDB) {\n console.log('测试时间显示')\n \n await time2str_equal(ddb, '2022-09-01T14:30:01.095')\n await time2str_equal(ddb, '2022-07-01T00:00:00.000')\n await time2str_equal(ddb, '2022-07-02T00:00:00.000')\n await time2str_equal(ddb, '2022-06-30T00:00:00.000')\n await time2str_equal(ddb, '2022-12-22T16:57:30.248')\n \n \n console.log('测试 month2ms')\n assert(\n month2ms(\n (\n await ddb.eval<DdbObj<number>>('2022.12M')\n ).value\n ) === new Date('2022.12.01').valueOf()\n )\n}\n\n\nasync function time2str_equal (ddb: DDB, timestr: string) {\n const code = `temporalParse('${timestr}', 'yyyy-MM-ddTHH:mm:sss.SSS')`\n \n assert(\n inspect(\n await ddb.eval(code),\n { colors: false }\n ).slice('timestamp('.length, -1) === \n (\n await get_printed(ddb, code)\n ).replace('T', ' ')\n )\n}\n\n\nexport async function test_types (ddb: DDB) {\n console.log('测试通过 ddb.call 调用 getNodeAlias 函数')\n console.log(await ddb.call('getNodeAlias'))\n \n console.log('测试 ddb.call 上传不同类型的变量')\n const result0 = await ddb.call('typestr', [new DdbInt(1)])\n console.log(result0)\n assert(result0.form === DdbForm.scalar)\n assert(result0.type === DdbType.string)\n assert(result0.value === 'INT')\n \n console.log('测试 ddb.call 上传不同类型的变量')\n const result1 = await ddb.call('typestr', [new DdbVectorDouble([0.1, 0.2, 0.3])])\n console.log(result1)\n assert(result1.form === DdbForm.scalar)\n assert(result1.type === DdbType.string)\n assert(result1.value === 'FAST DOUBLE VECTOR')\n \n console.log('测试 array vector')\n const av = await ddb.eval(\n 'av = array(INT[], 0, 3)\\n' +\n 'append!(av, [1..4])\\n' +\n 'append!(av, [1..70000])\\n' +\n 'av\\n'\n )\n \n console.log(av)\n assert(av.form === DdbForm.vector)\n assert(av.type === DdbType.int + 64) // array vector 的 type 比较特殊,需要偏移 64\n assert(av.rows === 2)\n \n \n console.log('测试大数据')\n let bigarr = new Float64Array(10)\n bigarr.fill(0.5)\n \n await ddb.call<DdbStringObj>('typestr', [\n new DdbObj({\n form: DdbForm.vector,\n type: DdbType.double,\n length: 0,\n rows: bigarr.length,\n cols: 1,\n value: bigarr\n })\n ])\n \n await ddb.upload(['a'], [\n new DdbObj({\n form: DdbForm.vector,\n type: DdbType.double,\n length: 0,\n rows: bigarr.length,\n cols: 1,\n value: bigarr\n })\n ])\n \n assert((\n await ddb.eval<DdbVectorDouble>('a')\n ).rows === bigarr.length)\n \n \n console.log('测试 datasource')\n \n const ds = (await ddb.eval<DdbVectorAnyObj>(\n 'db_path = \"dfs://test-datasource\"\\n' + \n 'tb_name = \"db\"\\n' + \n 'if (!existsTable(db_path, tb_name))\\n' + \n ' createTable(\\n' + \n ' database(db_path, VALUE , [1]),\\n' +\n ' table(1:0,`id`name, [INT, STRING]),\\n' +\n ' tb_name\\n' +\n ' ).append!(table(1 2 as id, `str1`str2 as name))\\n' +\n '\\n' +\n 'tb = loadTable(db_path, tb_name)\\n' +\n 'sqlDS(<select * from tb where id = 1>)\\n'\n )).value[0] as DdbStringObj\n \n const { type, form, value } = ds\n \n assert(type === DdbType.datasource && form === DdbForm.scalar, '返回的 DdbObj 具有正确的 type 和 form')\n \n assert(value === 'DataSource< select [7] * from tb where id == 1 >')\n \n // 如果直接构造 DdbObj Datasource,将其送入 ddb.call, ddb将仍然认为送入的是一个 STRING \n assert(\n (await ddb.call<DdbStringObj>('typestr', [ds])).value === 'STRING', \n '从 js 构建的 Datasource DdbObj 会被识别为 STRING'\n )\n \n console.log('测试 pair<duration>')\n const dp = await ddb.eval<DdbVectorObj<DdbDurationVectorValue>>(\n 'pair(duration(\"20d\"), duration(\"2H\"))'\n ) \n \n console.log(dp)\n assert(dp.type === DdbType.duration, 'dp 的返回值应该为 Duration')\n assert(dp.value[0].data === 20 && dp.value[0].unit === DdbDurationUnit.d, 'pair<duration> 的 value 应该已解析')\n \n console.log('测试 void vector')\n const table = await ddb.eval<DdbTableObj>('select *, NULL as val from table(1..100 as id)')\n const { value: [ints, voids] } = table\n \n console.log(voids)\n assert(voids.rows === ints.rows, 'void vector 应该具有正常的 vector length')\n assert(voids.length === 10, 'void vector 应该具有正确的数据长度')\n assert(voids.value === null, 'void vector 的值应该为 null')\n \n await ddb.upload(['voidtable'], [table])\n}\n\n"]}
|