Manipulate a JSON Property: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Taustin moved page manipulate a JSON Property to Manipulate a JSON Property over redirect)
No edit summary
 
Line 8: Line 8:


JSON array of Creature objects
JSON array of Creature objects
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[{
[{
     "name": "Umber Hulk",
     "name": "Umber Hulk",
Line 34: Line 34:
     "SpecialATK": "NA"
     "SpecialATK": "NA"
}]
}]
</source>
</syntaxhighlight>




Line 42: Line 42:


'''Calling Macro snippet''' (Remove all Creatures that have more HitDice than the entered number)
'''Calling Macro snippet''' (Remove all Creatures that have more HitDice than the entered number)
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>


<!--  
<!--  
Line 65: Line 65:


<!-- continue processing with the newly filtered array of objects -->
<!-- continue processing with the newly filtered array of objects -->
</source>
</syntaxhighlight>




'''jsonFilterArrObj'''
'''jsonFilterArrObj'''
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
<!--  
<!--  
Filter out objects from an array of objects.
Filter out objects from an array of objects.
Line 96: Line 96:


[H: macro.return = jAO]
[H: macro.return = jAO]
</source>
</syntaxhighlight>


====Sorting JSON Objects Based on an Arbitrary Nested Value====
====Sorting JSON Objects Based on an Arbitrary Nested Value====
Line 102: Line 102:
JSON Objects can contain an arbitrary number of keys and values (for which the value may itself be another JSON object). For example, a nested JSON object called "Monsters" might look like this:
JSON Objects can contain an arbitrary number of keys and values (for which the value may itself be another JSON object). For example, a nested JSON object called "Monsters" might look like this:


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
{
{
  "Troll":
  "Troll":
Line 117: Line 117:
   }
   }
}
}
</source>
</syntaxhighlight>


Note that each value in the key-value pairs in the above object is actually a complete JSON object in its own right.  
Note that each value in the key-value pairs in the above object is actually a complete JSON object in its own right.  
Line 141: Line 141:
This sequence simply creates a sample object to practice sorting. In actual use, you may wish to pass an object as an argument, or pull an object from a token's properties, as necessary.
This sequence simply creates a sample object to practice sorting. In actual use, you may wish to pass an object as an argument, or pull an object from a token's properties, as necessary.


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h:troll = json.set("{}", "name", "Troll", "HD", 4, "HP", 75)]
[h:troll = json.set("{}", "name", "Troll", "HD", 4, "HP", 75)]
[h:orc = json.set("{}", "name", "Orc", "HD", 3, "HP", 13)]
[h:orc = json.set("{}", "name", "Orc", "HD", 3, "HP", 13)]
Line 148: Line 148:
[h:kobold=json.set("{}", "name", "Kobold", "HD", 1, "HP", 4)]
[h:kobold=json.set("{}", "name", "Kobold", "HD", 1, "HP", 4)]
[h:monsters = json.set("{}", "Troll", troll, "Orc", orc, "Goblin", goblin, "Gnoll", gnoll, "Kobold", kobold)]
[h:monsters = json.set("{}", "Troll", troll, "Orc", orc, "Goblin", goblin, "Gnoll", gnoll, "Kobold", kobold)]
</source>
</syntaxhighlight>


'''2. Request Sorting Key and Sort Direction from User'''
'''2. Request Sorting Key and Sort Direction from User'''
Line 154: Line 154:
This section is also optional (and not useful if this macro will be used as a function/called macro), but for the example code it makes it easier to experiment with. This section uses [[input|input()]] to gather user input, and [[abort|abort()]] to halt processing if the user hits "Cancel." Finally, it uses an [[Macros:Branching_and_Looping#IF_Option|IF():]] roll option to set a variable with a "friendly" indicator of sort direction, which will be used at the end in the final output.  
This section is also optional (and not useful if this macro will be used as a function/called macro), but for the example code it makes it easier to experiment with. This section uses [[input|input()]] to gather user input, and [[abort|abort()]] to halt processing if the user hits "Cancel." Finally, it uses an [[Macros:Branching_and_Looping#IF_Option|IF():]] roll option to set a variable with a "friendly" indicator of sort direction, which will be used at the end in the final output.  


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h:status = input(
[h:status = input(
"whichKey|name,HD,HP|Pick Sorting Key|LIST|SELECT=0 VALUE=STRING",
"whichKey|name,HD,HP|Pick Sorting Key|LIST|SELECT=0 VALUE=STRING",
Line 162: Line 162:


[h,if(substring(whichDirection,1)=="+"): dirString = "ascending"; dirString = "descending"]
[h,if(substring(whichDirection,1)=="+"): dirString = "ascending"; dirString = "descending"]
</source>
</syntaxhighlight>


'''3. Set Basic Variables'''
'''3. Set Basic Variables'''
Line 175: Line 175:
*''sortedJSON'' will hold the new, nicely sorted JSON object; the original object will be unchanged.
*''sortedJSON'' will hold the new, nicely sorted JSON object; the original object will be unchanged.


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h:sortObj=monsters]
[h:sortObj=monsters]
[h:sortKey = whichKey]
[h:sortKey = whichKey]
Line 182: Line 182:
[h:keyList = ""]  
[h:keyList = ""]  
[h:sortedJSON = "{}"]
[h:sortedJSON = "{}"]
</source>
</syntaxhighlight>


'''4. Extract the Value of ''sortKey'' from each Nested Object'''
'''4. Extract the Value of ''sortKey'' from each Nested Object'''
Line 194: Line 194:
Now we actually can determine what the right order will ultimately be - we sort ''keyList'' using [[listSort|listSort()]] based on the direction specified by the user. '''This is a critical step!''' We've gone through each object, and figured out what the ''value'' of the thing we're sorting on is - so if we're sorting on "name", we've gone and actually retrieved each object's ''name'', and put it in a list with the others. We then sort that list, which tells us the final order to use when we reassemble the main object!
Now we actually can determine what the right order will ultimately be - we sort ''keyList'' using [[listSort|listSort()]] based on the direction specified by the user. '''This is a critical step!''' We've gone through each object, and figured out what the ''value'' of the thing we're sorting on is - so if we're sorting on "name", we've gone and actually retrieved each object's ''name'', and put it in a list with the others. We then sort that list, which tells us the final order to use when we reassemble the main object!


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h,foreach(item, sortObjContentList),CODE:
[h,foreach(item, sortObjContentList),CODE:
{
{
Line 202: Line 202:


[h:keyList = listSort(keyList, sortDirection)]
[h:keyList = listSort(keyList, sortDirection)]
</source>
</syntaxhighlight>


'''5. Iterating through ''keyList'' and Each Nested Object'''
'''5. Iterating through ''keyList'' and Each Nested Object'''
Line 212: Line 212:
If a match is found, the matching nested object is added to ''sortedJSON'' using [[json.set|json.set()]]. In this fashion, we're using ''keyList'' to tell us what order the final nested objects should be in, and we then just need to go through our nested objects, setting them in that order via the following code.
If a match is found, the matching nested object is added to ''sortedJSON'' using [[json.set|json.set()]]. In this fashion, we're using ''keyList'' to tell us what order the final nested objects should be in, and we then just need to go through our nested objects, setting them in that order via the following code.


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h,foreach(key,keyList),CODE:
[h,foreach(key,keyList),CODE:
{
{
Line 222: Line 222:
   }]
   }]
}]
}]
</source>
</syntaxhighlight>


'''6. Outputting the Results in an Attractive Fashion'''
'''6. Outputting the Results in an Attractive Fashion'''
Line 228: Line 228:
The final step is to output results. The use of [[json.indent|json.indent()]] here simply makes the sorted JSON object easy to read.
The final step is to output results. The use of [[json.indent|json.indent()]] here simply makes the sorted JSON object easy to read.


<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
JSON Object sorted by [r:whichKey], [r:dirString]:<br>
JSON Object sorted by [r:whichKey], [r:dirString]:<br>
<pre>[r:json.indent(sortedJSON, 3)]</pre>
<pre>[r:json.indent(sortedJSON, 3)]</pre>
</source>
</syntaxhighlight>
[[Category:How To]]
[[Category:How To]]

Latest revision as of 17:54, 15 March 2023

How to manipulate a JSON property

Example: jsonFilterArrObj() -- Filtering out objects from an array of objects

If you have an array of objects and want to filter that list given one of the elements in the object, this subroutine/callable macro jsonFilterArrObj will do the job.

As an example, here is an array of creature data:

JSON array of Creature objects

[{
    "name": "Umber Hulk",
    "hd": 8,
    "size": "Large",
    "reach": 10,
    "str": 23,
    "dex": 13,
    "con": 19,
    "mov": "20, burrow 20",
    "AC": "18/10/17",
    "SpecialATK": "Confusing Gaze(Su)"
},
{

    "name": "Ogre",
    "hd": 4,
    "size": "Large",
    "reach": 10,
    "str": 21,
    "dex": 8,
    "con": 15,
    "mov": 30,
    "AC": "16/8/17 Hide",
    "SpecialATK": "NA"
}]


If you want to shorten the list by filtering on various elements of the object, you can call the jsonFilterArrObj macro to return the filtered array of objects.

To call the macro, setup the JSON parameter to pass like thus:

Calling Macro snippet (Remove all Creatures that have more HitDice than the entered number)

<!-- 
"hd" = Element I want to filter against for this example
jAll = JSON array of Creature objects
fHD = number I prompted for with an input() dialog, this is the value I am testing against
-->


[H: jAll = "[]"]
[H, FOR(i,1,cntAll): jAll = json.append(jALL, json.set(table("Polymorph", i), "imageID", tableimage("Polymorph", i)))]
[H: jAll = json.sort(jAll, "a")]

[H: tjF = json.append("[]", jAll)]
[H: tjF = json.append(tjF, "hd")]
[H: tjF = json.append(tjF, fHD)]
[H: tjF = json.append(tjF, "<")]
[H, MACRO("jsonFilterArrObj@"+getMacroLocation()): tjF]
[H: jFiltered = macro.return]
[H: Assert(!(json.isEmpty(jFiltered)), "Polymorph: No choices available.", 0)]
[H: cntF = json.length(jFiltered)]

<!-- continue processing with the newly filtered array of objects -->


jsonFilterArrObj

<!-- 
Filter out objects from an array of objects.
inputs (macro.args is a JSON array containing):
  jAO = A JSON array of objects
  elem = The element to filter against
  fDat = The data to compare against
  fType = Filter comparison: >, <, ==, >=, <=, !=
output:
  macro.return = jAOf (The array with the elements removed that met the criteria)
-->

[H: jAO = json.get(macro.args, 0)]
[H: elem = json.get(macro.args, 1)]
[H: fDat = json.get(macro.args, 2)]
[H: fType = json.get(macro.args, 3)]

[H: cntAll = json.length(jAO)]
[H: assert(cntAll, "Null Array so filter aborts.")]

[H, for(i, cntAll - 1, -1, -1), CODE: {
  [H: tDat = json.get(json.get(jAO, i), elem)]
  [ bTest = eval("fDat"+fType+"tDat")]<br>
  [H, IF(bTest): jAO = json.remove(jAO, i); ""]
}]

[H: macro.return = jAO]

Sorting JSON Objects Based on an Arbitrary Nested Value

JSON Objects can contain an arbitrary number of keys and values (for which the value may itself be another JSON object). For example, a nested JSON object called "Monsters" might look like this:

{
 "Troll":
  {
    "name":"Troll",
    "HD":4,
    "HP":75
  },
 "Orc":
  {
    "name":"Orc",
    "HD":3,
    "HP":22
  }
}

Note that each value in the key-value pairs in the above object is actually a complete JSON object in its own right.

It is occasionally useful to be able to sort a JSON object that contains other JSON objects based on a value in one of the "sub-objects." For instance, if a JSON object exists that contains token names and distances to those tokens from a given point, one may want to sort the JSON so that the nearest objects are first, and the farthest are last.

Or, using the above "Monsters" example, one may wish to sort it by name, or by HP, or by HD.

The following macro routine is a generic method to sort JSON objects based on an arbitrary value within a nested object.

Assumptions

  • This macro requires the use of a JSON object supporting version of MapTool; it was written and tested in version 1.3.b53.
  • The macro is generic, and will run using any given JSON object conforming to the general "nested object" structure. In this case, a nested JSON object is created in the beginning so that there is a sample object to sort. However: this routine should be applicable to JSON arrays of objects as well - it would simply require using the index of the nested object rather than the nested object's key.
  • It can be unclear which object is being discussed when you have multiply nested objects. In the following explanation, "nested object" will always refer to an object contained within a larger JSON. So, the larger object is Monsters, while Troll would be a nested object.

Macro Code and Discussion

Please see the full macro code for the complete macro.

1. Create Sample Object

This sequence simply creates a sample object to practice sorting. In actual use, you may wish to pass an object as an argument, or pull an object from a token's properties, as necessary.

[h:troll = json.set("{}", "name", "Troll", "HD", 4, "HP", 75)]
[h:orc = json.set("{}", "name", "Orc", "HD", 3, "HP", 13)]
[h:goblin = json.set("{}", "name", "Goblin", "HD", 2, "HP", 6)]
[h:gnoll = json.set("{}", "name", "Gnoll", "HD", 3, "HP", 19)]
[h:kobold=json.set("{}", "name", "Kobold", "HD", 1, "HP", 4)]
[h:monsters = json.set("{}", "Troll", troll, "Orc", orc, "Goblin", goblin, "Gnoll", gnoll, "Kobold", kobold)]

2. Request Sorting Key and Sort Direction from User

This section is also optional (and not useful if this macro will be used as a function/called macro), but for the example code it makes it easier to experiment with. This section uses input() to gather user input, and abort() to halt processing if the user hits "Cancel." Finally, it uses an IF(): roll option to set a variable with a "friendly" indicator of sort direction, which will be used at the end in the final output.

[h:status = input(
"whichKey|name,HD,HP|Pick Sorting Key|LIST|SELECT=0 VALUE=STRING",
"whichDirection|A+,A-,N+,N-|Direction (A+/- for strings, N+/- for numbers!)|LIST|SELECT=0 VALUE=STRING"
)]
[h:abort(status)]

[h,if(substring(whichDirection,1)=="+"): dirString = "ascending"; dirString = "descending"]

3. Set Basic Variables

This segment initializes some variables that will be used later:

  • sortObj is the object to be sorted (in this case, the JSON Object Monsters)
  • sortOn is the value on which to sort (name, HD, or HP)
  • sortDirection is the direction of the sort, which will be passed to listSort()
  • sortObjContentList is a list - created using json.fields() - of each nested object within Monsters; effectively it is a list of the "names" of each monster
  • keyList is a list that will contain the value that corresponds to the thing we're sorting on - so if you choose to sort by name, then keyList will ultimately contain the value of name for each monster in the Monsters object
  • sortedJSON will hold the new, nicely sorted JSON object; the original object will be unchanged.
[h:sortObj=monsters]
[h:sortKey = whichKey]
[h:sortDirection = whichDirection]
[h:sortObjContentList = json.fields(sortObj)]
[h:keyList = ""] 
[h:sortedJSON = "{}"]

4. Extract the Value of sortKey from each Nested Object

Here, we use FOREACH() to loop through each element in sortObjContentList (in other words, go one-by-one through the list of monster names). The FOREACH() option lets us say that item holds the value of each of those (so for the first pass, item holds the first monster name in the list, and on the second pass, it moves to the next, and so on). We need to do this so that we can extract the detailed information about each monsters from the Monsters object (in this case, we assign the detailed information to a new variable called itemDetail).

With the nested objects extracted, we can then retrieve the value of the thing we're sorting on by using json.get() on the variable itemDetail. We stick that value in the previously empty list keyList.

Finally, once we've gone through each nested object held within Monsters and each nested object's value for our chosen sort (remember, we put that information in the variable sortKey) has been added to keyList, we're finished with the loop.

Now we actually can determine what the right order will ultimately be - we sort keyList using listSort() based on the direction specified by the user. This is a critical step! We've gone through each object, and figured out what the value of the thing we're sorting on is - so if we're sorting on "name", we've gone and actually retrieved each object's name, and put it in a list with the others. We then sort that list, which tells us the final order to use when we reassemble the main object!

[h,foreach(item, sortObjContentList),CODE:
{
   [h:itemDetail = json.get(sortObj,item)]
   [h: keyList = listAppend(keyList, json.get(itemDetail, sortKey))]
}]

[h:keyList = listSort(keyList, sortDirection)]

5. Iterating through keyList and Each Nested Object

This is the most complex part of the routine. FOREACH(): through each element in the variable keyList (which, you will recall, contains the values corresponding to sortKey for each nested object). For each element in keyList, we then loop through all of the nested objects in Monsters to see which one(s) match up to the current element of keyList.

So, for example, if the current value - key - in the outer loop is 4, and we are sorting by "HD", the inner loop will iterate through each nested object and check to see if the value of "HD" for that nested object is equal to 4.

If a match is found, the matching nested object is added to sortedJSON using json.set(). In this fashion, we're using keyList to tell us what order the final nested objects should be in, and we then just need to go through our nested objects, setting them in that order via the following code.

[h,foreach(key,keyList),CODE:
{
   [foreach(object,sortObj),CODE:
   {
     [objectDetail = json.get(sortObj,object)]
     [h:sortOnValue = json.get(objectDetail, sortKey)]
     [if(sortOnValue == key): sortedJSON=json.set(sortedJSON, object, objectDetail);""]
   }]
}]

6. Outputting the Results in an Attractive Fashion

The final step is to output results. The use of json.indent() here simply makes the sorted JSON object easy to read.

JSON Object sorted by [r:whichKey], [r:dirString]:<br>
<pre>[r:json.indent(sortedJSON, 3)]</pre>