Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents
maxLevel3

Introduction

User-defined routines (UDR) are functions that perform specific actions that you can define in your SIL™ programs for a later use. These can considerably improve the readability and maintainability of your code.

Syntax

Code Block
languagejava
function <name>(<type> param1, <type> param2, ...) {
    Instruction1;
    ...
    InstructionN;
    return <value>;
}
Note

The name of the UDR cannot contain spaces.

Example

Code Block
function zero(){
    return 0;
}
number a = zero();
Warning

Definition of UDRs must be done before the code, even though it is not used anywhere up to that point. Therefore, the following code is invalid.

Code Block
number i;
const number pi = 3.14;
i = 0; //this is the error line, i is initialized to a constant and this is extra code, not allowed
function circleArea(number r) {
    return r * r * pi;
}


However, you are allowed to declare global variables and constants before function definitions:

Code Block
number i = 0; //global var with initialization, ok
const number pi = 3.14; //constant, ok

function circleArea(number r) {
    return (i + r) * (i + r) * pi;
}
number r = 10;
runnerLog("Area of radius " + r + " is " + circleArea(r));
i++;
runnerLog("Area of radius " + (r + i) + " is " + circleArea(r));

Running the above code in the Power Scripts for JIRA (formerly known as JJUPIN) Runner gadget:

 

Parameters

The list of parameters in the definition of a UDR can be of any length (including 0) and their respective types can be any valid SIL™ type.

Example

Code Block
function zero(){
    return 0;
}

function doSomething(string s, number n1, number [] n2, boolean flag, string [] oneMore){
    ....
}

UDRs use a "pass-by-value" policy. This means that even though you modify the value of a parameter in your function, on exit the value will be lost.

Example

Excerpt
Code Block
function increment(number a){
    a = a + 1; // the value of a is only modified locally
    return a;
}
number b = 0;
number c = increment(b); // the value of b does not change
print(b);  // this prints 0
print(c);  // this prints 1

Constant Parameters

Parameters of user-defined routines can be made read-only in the scope of the routine by adding the keyword "const" before the parameter definition in the signature of the routine.

Code Block
function f(const string s) {
	...
}


Variable visibility

There are three categories of variables that can be used in a UDR:

Local variables

These are the variables you define in the body of the UDR. These can be used throughout the body of the UDR. On exit, the values of these variables are lost.

Code Block
function example(){
    number a = 3;
    number b = a + 10;
    // use here variables a and b
}

  

Parameter variables

These are the values passed to the UDR in the list of parameters. Because SIL™ uses a "pass-by-value" policy, even though you modify the value of these variables in the body of the function, on exit, their original values will be restored.

Insert excerpt
User-defined Routines (UDR)
User-defined Routines (UDR)
nopaneltrue

Global variables

These are the variables that are already defined and can be used right away (issue fields, customfields and any variables defined before the routine). You can use issue fields and custom fields anywhere in your code (including in the UDR body) without having to declare them.

...

Notice that the key variable is a standard issue field that you could otherwise use anywhere in your SIL™ program without having to declare it.

Return value

Return values can be used to communicate with the context that called the UDR or to halt its execution.

Examples

Code Block
function isEven(number a){
    return (a % 2 == 0);
}

...