top of page

How to check for empty values in an array in DataWeave | Part 4: Arrays Module



I had this use-case where I had to make sure all the values inside an array were not empty. By “empty,” I’m referring to an empty string (“”), a null value (null), or even an empty array ([]). There were some cases when I would receive a null value instead of an array. The array could only contain strings or nulls, but not objects. However, I’ll be adding tests to check for empty objects as well.


Note: The term “null” refers to a null value, whereas “Null” refers to the data type. The same rule applies to string/String, array/Array, and object/Object. I can have an empty array ([]), which is of the type Array, or a string “abc,” which is of the type String.


In this series of posts, I explain 6 different approaches to achieve (almost) the same output using different DataWeave functions/operators. As we advance through the posts, the functions will become easier to read, and the logic will have fewer flaws.


I use the DataWeave Playground throughout these articles. You can follow this post to set up a local Docker image (no previous Docker experience is needed), or you can also open a new Mule project and use the Transform Message component.


Note: You can also use the online DataWeave Playground tool from this link, if available.




Using the Arrays Module


I’ll skip the step-by-step process that we’ve been doing for the past 3 posts to show you 3 different approaches this time.


Let’s take a look at the function we created in the last post.

%dw 2.0
output application/json
fun containsEmptyValues(arr) = if (isEmpty(arr)) true 
    else not isEmpty(arr filter isEmpty($))
---
{
    nullValue: containsEmptyValues(null),
    emptyArray: containsEmptyValues([]),
    arrayWithEmptyString: containsEmptyValues([""]),
    arrayWithNull: containsEmptyValues([null]),
    arrayWithEmptyString2: containsEmptyValues(["1", ""]),
    arrayWithNull2: containsEmptyValues(["1", null]),
    arrayWithValues: containsEmptyValues(["1", "2"]),
    arrayWithEmptyObject: containsEmptyValues([{}]),
    arrayWithEmptyObject2: containsEmptyValues(["1",{}]),
    arrayWithNonEmptyObject: containsEmptyValues([{a:"b"}])
}

We will be using the “some” function from the Arrays module. To do this, we first need to import the function from the array.

%dw 2.0
output application/json
import some from dw::core::Arrays
fun containsEmptyValues(arr) = if (isEmpty(arr)) true 
    else not isEmpty(arr filter isEmpty($))
---

Note: You can also import all the functions from a module using “import * from…


After that, we’ll replace the “else” expression with “arr some isEmpty($)”. This will check if at least one of the items inside the “arr” array is an empty value. If this is the case, it will return a true value.

%dw 2.0
output application/json
import some from dw::core::Arrays
fun containsEmptyValues(arr) = if (isEmpty(arr)) true 
    else arr some isEmpty($)
---

As you can see, we receive the same expected output. We didn’t remove the first condition from the code because when we try to do “arr some isEmpty($)” when arr is null or when arr is an empty array ([]), the output will be false instead of the true value that we’re expecting.




Using Pattern Matching (match/case)


This alternative uses pattern matching with the match/case statements (sort of like the switch/case Java statements).


This is what our code would look like:

%dw 2.0
output application/json
import some from dw::core::Arrays
fun containsEmptyValues(arr) = arr match {
    case [] -> true
    case a is Array -> a some isEmpty($)
    else -> isEmpty(arr)
}
---

In this case, we’re immediately returning true when we receive an empty array ([]). If our data is not an empty array, then we go to the second “case,” which checks if the parameter is of type Array and runs the logic that includes the “some” function. Finally, if none of those two conditions match (when the value is null), we go to the “else” part and run the “isEmpty” function.



Using Function Overloading


Function overloading executes pattern matching logic underneath. If performance is an issue, use this solution instead of the previous one.


This is what our code would look like for our two types (Null and Array):

%dw 2.0
output application/json
import some from dw::core::Arrays
fun containsEmptyValues(value: Null) = true // first fun
fun containsEmptyValues(arr: Array) = ( // second fun
    if (arr == []) true // if (isEmpty(arr)) true
    else arr some isEmpty($)
)
---

We’re defining the same function twice, both with just one parameter. The difference is that the first one expects a Null data type, and the second one expects Array. By making this distinction, we can immediately return a true value if the parameter is a null value (the first function) and the rest of the logic is handled by the second function.


Note that you can define the condition either as “if (arr == []) true” or as “if (isEmpty(arr)) true”, and both will work as expected.


You can also use some pattern matching under the second function instead of using an if/else statement. This code would look something like this:

fun containsEmptyValues(arr: Array) = arr match { //second fun
   case [] -> true
   else -> arr some isEmpty($)
}


Recap


Let’s finalize this series with a summary of all the approaches we have learned throughout these posts.


Solution 1: sizeOf, groupBy, isEmpty, default

fun containsEmptyValues(arr) = sizeOf((arr groupBy isEmpty($))."true" default []) > 0
  • Not very easy to read (too many parentheses).

  • DataWeave shows a warning.

  • Null and empty array return false instead of true.


Solution 2: sizeOf, filter, isEmpty, default

fun containsEmptyValues(arr) = sizeOf(arr default [] filter isEmpty($)) > 0
  • Slightly easier to read, but still confusing.

  • Null and empty array return false instead of true.


Solution 3: isEmpty, filter

fun containsEmptyValues(arr) = if (isEmpty(arr)) true 
    else not isEmpty(arr filter isEmpty($))
  • Works as expected, but may not be the best solution for larger payloads.


Solution 4: Arrays Module

import some from dw::core::Arrays
fun containsEmptyValues(arr) = if (isEmpty(arr)) true 
    else arr some isEmpty($)
  • Works as expected, and the performance might be better for larger payloads.


Solution 5: Pattern Matching

import some from dw::core::Arrays
fun containsEmptyValues(arr) = arr match {
    case [] -> true
    case a is Array -> a some isEmpty($)
    else -> isEmpty(arr)
}
  • Works as expected and leaves room to implement more “case” statements to handle additional data types or conditions.


Solution 6: Function Overloading

import some from dw::core::Arrays
fun containsEmptyValues(value: Null) = true 
// 1) using if/else
fun containsEmptyValues(arr: Array) = ( 
    if (arr == []) true // if (isEmpty(arr)) true
    else arr some isEmpty($)
)
// 2) using match/case
// fun containsEmptyValues(arr: Array) = arr match { 
//     case [] -> true
//     else -> arr some isEmpty($)
// }
  • Works as expected and leaves room to implement more functions to handle additional data types.

  • Function overloading executes pattern matching logic underneath. If performance is an issue, use this solution instead of solution 5.



Oh! And before I forget, there was a quiz in the previous post. The question was, “Do the following scripts generate the same output?”

1) not true or true
2) ! true or true

The answer is: NO! They do not return the same value. The first one returns false, while the second one returns true. Why? This is how these scripts are really run:

1) not (true or true) = not (true) = false
2) (! true) or true = (false) or true = true

Mind-blowing, right?! You can read more about this in the Mule Docs - Logical Operators.



And now we’re really done with this series!

Which solution would you choose? Let me know if you can think of any other solutions in the comments below.


Don’t miss any DataWeave content! Subscribe to our newsletter or follow us on social media to become a DataWeave champion. :D


Keep on practicing!

-Alex





2,958 views1 comment
bottom of page