Cloud Code Functions

How to Create a Report showing the Complexity of your Cloud Code

Introduction

This section will teach you to generate a Code Complexity report of your Cloud Code using Plato.

Cloud Code must be efficient from design. As it is called many many times, a slightly worse performance can become a huge problem and affect your production environment badly.

If you take your time to design your clode code efficiently, you will be able to serve more requests using smaller servers, which can lead to huge savings over time.
On the other hand, badly designed cloud code can only scale up in bigger, more expensive machines, which also has limitations. This situation can and probably will lead to the necessity of rewriting code and more spendings over time.

Please take your time to test, load test and constantly check reports on code complexity.

Prerequisites

To complete this tutorial, you will need:

  • A local environment with Node.js installed to apply unit tests. You can follow the Official NodeJS tutorial to successfully install Node.js at your terminal.
  • An app created at Back4App.
  • Back4App Command Line Configured with the project.

First off, we need to talk about Plato

We usually start developing by creating a smaller set of functions that break a big problem into smaller, easier to address ones.
This approach is usually fine and these initial smaller functions grow over time, making more complex operations and dealing with more data.
As data grows in your application, computing intensive tasks such as loops and recursive calls get called more and more, which tends to slow the application. In severe cases it might even freeze the application completely.
This is where Plato comes in.

Plato is a JavaScript source code visualization, static analysis, and complexity tool that generates reports showing how complex your application is getting and where to address fixes to potentially speed up processes.

Step 1 - Installing Plato

If you have NodeJS and NPM installed in your system, installing Plato is as easy as typing

1
npm install -g plato

If you don’t, please install those before proceeding.

Step 2 - Running Plato

Running Plato after installation consists of typing the following command from the directory where your Cloud Code is:

1
plato -r -d MyReportFolder -t "My Report for this App" -x .json *.js

the options mean:

  • -r: Recursive, meaning it will go into directories and subdirectories looking for files
  • -d MyReportFolder: (output) Directory. Plato will create a directory named MyReportFolder where it will store its results
  • -t “My Report for this App”: Title. Plato will name this report My Report for this App. This is useful to create multiple reports over time and keep track
  • -x .json: Exclude .json files. You can tell Plato to ignore file types so it runs faster
  • *.js: Look for anything with the extension .js to be evaluated

Step 3 - Getting results

In the MyReportFolder creted by the command above, you will find an index.html containing the report. Open that file in a browser and you will find something like this:

Account Settings

In my case, I only had a file named main.js, but depending on your code, you can have more files.
Scroll down to the Files section and click the file name you want to open (main.js in my case). This will open the report for that file:

Account Settings

  • Mainteinability is a value between 0 and 100 that represents the relative ease of maintaining the code. A high value means better maintainability.
  • Difficulty measure is related to the difficulty of the program to write or understand.
  • Estimated Errors is Halstead’s delivered bugs is an estimate for the number of errors in the implementation.

The Function Weight has two metrics:

  • By Complexity: This metric counts the number of distinct paths through a block of code. Lower values are better.
  • By SLOC: Source Lines of Code / Logical Lines of Code

Now you can scroll down and watch the alerts and possible fixes that are suggested:

Account Settings

In my case, it is telling that arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6'), which is not a problem.
But let’s add some very inneficient code to that function and re-evaluate:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function getSquareRootOf(numberOne, numberTwo, numberThree){
	var finalResult;

	var i = 0;
	var j = 0;
	var k = 0;

	for (i = 0; i < 100; i ++){
		for (j = 0; j < 100; i ++){
			for (k = 0; k < 100; k++){
				var resultOne = getSquareRootOf(numberOne);
				var resultTwo = getSquareRootOf(numberTwo);
				var resultThree = getSquareRootOf(numberThree);
				finalResult = resultOne + resultTwo + resultThree;
			}
		}
	}
}

And evaluate the result:

Account Settings

As we can see, the complexity of this function is 4, which is OK. The higher the number you get, the more complex the function is and the more you should ensure it is efficient.

Plato will also warn you of missing semicolons and other potential Javascript errors.

Conclusion

Having a tool such as Plato checking the complexity of your code and continuously reworking cloud code to be as fast, efficient as possible can lead to huge savings over time.
You and all developers should include this step or something similar in your development process to ensure you get the most bang for your buck serving requests.