This repository was archived by the owner on Aug 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstructoview.js
More file actions
169 lines (164 loc) · 4.67 KB
/
Copy pathstructoview.js
File metadata and controls
169 lines (164 loc) · 4.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
Copyright 2021-2022 Jens Hofschröer <structogramview@nigjo.de>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
class StructElement extends HTMLElement {
getName(){
return this.constructor.name.substr(6).toUpperCase();
}
}
class StructBlock extends StructElement {
}
class StructContainer extends StructElement {
set condition(condition){this.setAttribute('condition', condition);}
get condition(){return this.getAttribute('condition');}
setBlock(index, block){
if(this.children.length<index)
throw "IndexOutOfBound: "+index+' > '+(this.children.length-1);
if(index<this.children.length)
this.replaceChild(block, this.children[index]);
else
this.appendChild(block);
}
getBlock(index){
if(this.children.length<index)
throw "IndexOutOfBound: "+index+' > '+this.children.length;
if(index<this.children.length)
return this.children[index];
else
return this.appendChild(new StructBlock());
}
}
class StructSequence extends StructElement {
}
class StructComment extends StructSequence {
isMultiline() {
return this.textContent.indexOf("\n") > 0;
}
get lines() {
return this.textContent.split("\n");
}
addComment(line) {
if (this.textContent.length !== 0) {
this.textContent += "\n" + line;
} else {
this.textContent = line;
}
}
}
class StructDecision extends StructContainer {
getName(){
return "IF";
}
set thenBlock(block){
this.setBlock(0, block);
}
get thenBlock(){
return this.getBlock(0);
}
set elseBlock(block){
this.getBlock(0);//ensure block 0
this.setBlock(1, block);
}
get elseBlock(){
this.getBlock(0);//ensure block 0
return this.getBlock(1);
}
}
class StructChoose extends StructContainer {
getName(){
return "SELECT";
}
set defaultBlock(block){
this.lastBlock = block;
}
get defaultBlock(){
if(!this.lastBlock){
this.lastBlock = new StructBlock();
this.lastBlock.kind = 'defaultBlock';
this.appendChild(this.lastBlock);
}
return this.lastBlock;
}
createNextCase(){
var block = new StructCaseBlock();
this.insertBefore(block, this.defaultBlock);
return block;
}
}
class StructCaseBlock extends StructBlock {
set condition(condition){this.setAttribute('condition',condition);}
get condition(){return this.getAttribute('condition');}
}
class StructLoop extends StructContainer {
set loopBlock(block){
this.setBlock(0, block);
}
get loopBlock(){
return this.getBlock(0);
}
}
class StructIteration extends StructLoop {
getName(){
return "FOR";
}
}
class StructRepeat extends StructIteration {
getName(){
return "REPEAT";
}
}
class StructCall extends StructSequence {
}
class StructBreak extends StructSequence {
set exit(isexit){
if(isexit){
this.setAttribute("exit", "true");
}else{
this.removeAttribute("exit");
}
}
get exit(){
return this.getAttribute("exit")==="true";
}
}
class StructConcurrent extends StructContainer {
createThread(){
var nextThread = new StructBlock();
this.appendChild(nextThread);
return nextThread;
}
}
class StructDiagram extends StructElement {
set caption(caption){this.setAttribute('caption',caption);}
get caption(){return this.getAttribute('caption');}
}
customElements.define('struct-diagram',StructDiagram);
customElements.define('struct-sequence',StructSequence);
customElements.define('struct-comment',StructComment);
customElements.define('struct-block',StructBlock);
customElements.define('struct-decision',StructDecision);
customElements.define('struct-select',StructChoose);
customElements.define('struct-case',StructCaseBlock);
customElements.define('struct-loop',StructLoop);
customElements.define('struct-iteration',StructIteration);
customElements.define('struct-repeat',StructRepeat);
customElements.define('struct-call',StructCall);
customElements.define('struct-break',StructBreak);
customElements.define('struct-concurrent',StructConcurrent);
function StructCodeParseException(linenum, line, error){
this.linenum=linenum;
this.line = line;
this.contextError = error?error.toString():'unknown';
this.toString = function() {
return "Error in line " + linenum + ": '"+line+"', " + this.contextError;
};
}