File size: 13,416 Bytes
5070096 |
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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 |
standard library package Actions {
doc
/*
* This package defines the base types for actions and related behavioral elements in the
* SysML language.
*/
private import Base::Anything;
private import ScalarValues::Positive;
private import ScalarValues::Natural;
private import SequenceFunctions::size;
private import SequenceFunctions::isEmpty;
private import Occurrences::Occurrence;
private import Occurrences::HappensWhile;
private import Performances::Performance;
private import Performances::performances;
private import Transfers::SendPerformance;
private import Transfers::sendPerformances;
private import Transfers::AcceptPerformance;
private import Transfers::acceptPerformances;
private import FeatureReferencingPerformances::FeatureWritePerformance;
private import ControlPerformances::MergePerformance;
private import ControlPerformances::DecisionPerformance;
private import ControlPerformances::IfThenPerformance;
private import ControlPerformances::IfThenElsePerformance;
private import ControlPerformances::LoopPerformance;
private import TransitionPerformances::TransitionPerformance;
private import TransitionPerformances::NonStateTransitionPerformance;
private import Transfers::MessageTransfer;
private import Connections::MessageConnection;
abstract action def Action :> Performance {
doc
/*
* Action is the most general class of Performances of ActionDefinitions in a system or
* part of a system. Action is the base class of all ActionDefinitions.
*/
ref action self: Action :>> Performance::self;
ref action incomingTransfers :>> Performance::incomingTransfers;
action start: Action :>> startShot {
doc
/*
* The starting snapshot of an Action.
*/
}
action done: Action :>> endShot {
doc
/*
* The ending snapshot of an Action.
*/
}
action subactions: Action[0..*] :> actions, subperformances {
doc
/*
* The subperformances of this Action that are Actions.
*/
ref occurrence :>> this = (that as Action).this {
doc
/*
* The "this" reference of a subaction is always the same as that of
* its owning Action.
*/
}
}
action sendSubactions: SendAction[0..*] :> subactions, sendActions {
doc
/*
* The subactions of this Action that are SendActions.
*/
}
action acceptSubactions: AcceptAction[0..*] :> subactions, acceptActions {
doc
/*
* The subactions of this Action that are AcceptActions.
*/
}
abstract action controls : ControlAction[0..*] :> subactions {
doc
/*
* The subactions of this Action that are ControlActions.
*/
}
abstract action merges : MergeAction[0..*] :> controls {
doc
/*
* The controls of this Action that are MergeActions.
*/
}
abstract action decisions : DecisionAction :> controls {
doc
/*
* The controls of this Action that are DecisionActions.
*/
}
abstract action joins : JoinAction :> controls {
doc
/*
* The controls of this Action that are JoinActions.
*/
}
abstract action forks : ForkAction :> controls {
doc
/*
* The controls of this Action that are ForkActions.
*/
}
abstract action transitions : TransitionAction[0..*] :> subactions, transitionActions {
doc
/*
* The subactions of this Action that are TransitionActions.
*/
}
abstract action decisionTransitions : DecisionTransitionAction[0..*] :> transitions {
doc
/*
* The subactions of this Action that are DecisionTransitionActions.
*/
}
abstract action assignments : AssignmentAction[0..*] :> subactions, assignmentActions {
doc
/*
* The subactions of this Action that are AssignmentActions.
*/
}
abstract action ifSubactions : IfThenAction[0..*] :> subactions, ifThenActions {
doc
/*
* The subactions of this Action that are IfThenActions (including IfThenElseActions).
*/
}
abstract action loops : LoopAction[0..*] :> subactions, loopActions {
doc
/*
* The subactions of this Action that are LoopActions.
*/
}
abstract action whileLoops : WhileLoopAction[0..*] :> loops, whileLoopActions {
doc
/*
* The loops of this Action that are WhileLoopActions.
*/
}
abstract action forLoops : ForLoopAction[0..*] :> loops, forLoopActions {
doc
/*
* The loops of this Action that are ForLoopActions.
*/
}
}
abstract action actions: Action[0..*] nonunique :> performances {
doc
/*
* actions is the base feature for all ActionUsages.
*/
}
action def SendAction :> Action, SendPerformance {
doc
/*
* A SendAction is an Action used to type SendActionUsages. It initiates an outgoingTransferFromSelf
* from a designated sender Occurrence with a given payload, optionally to a designated receiver.
*/
in payload :>> sentItem;
ref sentMessage :>> sentTransfer: MessageTransfer, MessageConnection;
}
abstract action sendActions: SendAction[0..*] nonunique :> actions, sendPerformances {
doc
/*
* sendActions is the base feature for all SendActionUsages.
*/
}
action def AcceptMessageAction :> Action, AcceptPerformance {
doc
/*
* An AcceptMessageAction is an Action that identifies an incomingTransferToSelf
* of a designated receiver Occurrence, providing its payload as output.
*/
inout payload :>> acceptedItem;
ref acceptedMessage :>> acceptedTransfer: MessageTransfer, MessageConnection;
}
action def AcceptAction :> AcceptMessageAction {
doc
/*
* An AcceptAction is an AcceptMessageAction used to type AcceptActionUsages that are
* not accepters for TransitionActions. It waits for a payload or message of the specified
* kind to be accepted by a nested state transition.
*/
ref :>> acceptedMessage = aState.aTransition.accepter.acceptedMessage;
state aState {
transition aTransition first start accept apayload: Anything via receiver then done;
}
bind payload = aState.aTransition.apayload;
}
abstract action acceptActions: AcceptAction[0..*] nonunique :> actions, acceptPerformances {
doc
/*
* acceptActions is the base feature for standalone AcceptActionUsages.
*/
}
abstract action def ControlAction :> Action {
doc
/*
* A ControlAction is the Action of a control node, which has no inherent behavior.
*/
bind start = done {
doc
/*
* A ControlAction is instantaneous.
*/
}
}
action def MergeAction :> ControlAction, MergePerformance {
doc
/*
* A MergeAction is the ControlAction for a merge node.
*
* Note: Incoming succession connectors to a MergeAction must have source multiplicity
* 0..1 and subset the incomingHBLink feature inherited from MergePerformance.
*/
}
action def DecisionAction :> ControlAction, DecisionPerformance {
doc
/*
* A DecisionAction is the ControlAction for a decision node.
*
* Note: Outgoing succession connectors from a DecisionAction must have target multiplicity
* 0..1 and subset the outgoingHBLink feature inherited from DecisionPerformance.
* If an outgoing succession has a guard, it should have a transitionStep typed by
* DecisionTransition.
*/
}
action def JoinAction :> ControlAction {
doc
/*
* A JoinAction is the ControlAction for a JoinNode.
*
* Note: Join behavior results from requiring that the source multiplicity of all
* incoming succession connectors be 1..1.
*/
}
action def ForkAction :> ControlAction {
doc
/*
* A ForkAction is the ControlAction for a ForkNode.
*
* Note: Fork behavior results from requiring that the target multiplicity of all
* outgoing succession connectors be 1..1.
*/
}
abstract action def TransitionAction :> Action, TransitionPerformance {
doc
/*
* A TransitionAction is a TransitionPerformance with an Action as transitionLinkSource.
* It is the base type of all TransitionUsages.
*/
in transitionLinkSource : Action :>> TransitionPerformance::transitionLinkSource;
ref acceptedMessage : MessageConnection :>> trigger;
ref receiver :>> triggerTarget;
action accepter : AcceptMessageAction :>> 'accept';
bind receiver = accepter.receiver;
bind acceptedMessage = accepter.acceptedMessage;
action effect: Action :>> TransitionPerformance::effect;
}
action def DecisionTransitionAction :> TransitionAction, NonStateTransitionPerformance {
doc
/*
* A DecisionTransitionAction is a TransitionAction and NonStateTransitionPerformance that has a
* guard, but no trigger or effects. It is the base type of TransitionUsages used as
* conditional successions in action models.
*/
ref action :>> accepter[0..0];
ref action :>> effect[0..0];
}
abstract action transitionActions: TransitionAction[0..*] nonunique :> actions {
doc
/*
* transitionActions is the base feature for all TransitionUsages.
*/
}
action def AssignmentAction :> FeatureWritePerformance, Action {
doc
/*
* An AssignmentAction is an Action, used to type an AssignmentActionUsage. It is also a
* FeatureWritePerformance that updates the accessedFeature of its target Occurrence with
* the given replacementValues.
*/
in target : Occurrence[1];
inout replacementValues : Anything[0..*] nonunique;
}
abstract action assignmentActions : AssignmentAction[0..*] nonunique :> actions {
doc
/*
* assignmentActions is the base feature for all AssignmentActionsUsages.
*/
in :>> target : Occurrence[1] default that as Occurrence {
doc
/*
* The default target for assignmentActions is its featuring instance (if that is
* an Occurrence).
*/
}
}
action def IfThenAction :> Action, IfThenPerformance {
doc
/*
* An IfThenAction is a Kernel IfThenPerformance that is also an Action.
* It is the base type for all IfActionUsages.
*/
in :>> ifTest[1];
in action :>> thenClause[0..1];
}
action def IfThenElseAction :> IfThenAction, IfThenElsePerformance {
doc
/*
* An IfThenElseAction is a Kernel IfThenElsePeformance that is also an IfThenAction.
* It is the base type for all IfActionUsages that have an elseAction.
*/
in :>> ifTest[1];
in action :>> thenClause[0..1];
in action :>> elseClause[0..1];
}
abstract action ifThenActions : IfThenAction[0..*] nonunique :> actions {
doc
/*
* ifThenActions is the base feature for all IfActionUsages.
*/
}
abstract action ifThenElseActions : IfThenElseAction[0..*] nonunique :> actions {
doc
/*
* ifThenElseActions is the base feature for all IfActionUsages that have an elseAction.
*/
}
abstract action def LoopAction :> Action {
doc
/*
* A LoopAction is the base type for all LoopActionUsages.
*/
in action body[0..*] {
doc
/*
* The action that is performed repeatedly in the loop.
*/
}
}
action def WhileLoopAction :> LoopAction, LoopPerformance {
doc
/*
* A WhileLoopAction is a Kernel LoopPerformance that is also a LoopAction.
* It is the base type for all WhileLoopActionUsages.
*/
in :>> whileTest default {true} {
doc
/*
* A Boolean expression that must be true for the loop to continue.
* It is evaluated before the body is performed and is always evaluated at
* least once.
*/
}
in action body :>> LoopAction::body, LoopPerformance::body {
doc
/*
* The action that is performed while the whileTest is true and the
* untilTest is false.
*/
}
in :>> untilTest default {false} {
doc
/*
* A Boolean expression that must be false for the loop to continue.
* It is evaluated after the body is performed.
*/
}
}
private abstract action def ForLoopActionBase :> LoopAction {
in action body;
in ref seq[0..*] ordered nonunique;
}
action def ForLoopAction :> ForLoopActionBase {
doc
/*
* A ForLoopAction is a LoopAction that iterates over an ordered sequence of values.
* It is the base type for all ForLoopActionUsages.
*/
protected ref var[0..1] :> seq {
doc
/*
* The loop variable that is assigned successive elements of seq on each
* iteration of the loop.
*/
}
in ref :>> seq {
doc
/*
* The sequence of values over which the loop iterates.
*/
}
in action :>> body {
doc
/*
* The action that is performed on each iteration of the loop.
*/
}
private attribute index : Positive {
doc
/*
* The index of the element of seq assigned to var on the current iteration
* of the loop.
*/
}
private action initialization
assign index := 1;
then private action whileLoop
while index <= size(seq) {
assign var := seq#(index);
then perform body;
then assign index := index + 1;
}
}
abstract action loopActions : LoopAction[0..*] nonunique :> actions {
doc
/*
* loopActions is the base feature for all LoopActionUsages.
*/
}
abstract action whileLoopActions : WhileLoopAction[0..*] nonunique :> loopActions {
doc
/*
* whileLoopActions is the base feature for all WhileLoopActionUsages.
*/
}
abstract action forLoopActions : ForLoopAction[0..*] nonunique :> loopActions {
doc
/*
* forLoopActions is the base feature for all ForLoopActionUsages.
*/
}
} |