MapTags(tagList,mapList,mapType);
VOID MapTags(struct TagItem *,struct TagItem *,ULONG);
Apply a "mapping list" mapList to tagList.
If the ti_Tag field of an item in tagList appears as ti_Tag in some item in mapList, overwrite ti_Tag with the corresponding ti_Data from the map list.
The mapType parameter specifies how the mapping operation is to proceed, with the following available types:
MAP_REMOVE_NOT_FOUND
If a tag in tagList does not appear in the mapList, remove
it from tagList.
MAP_KEEP_NOT_FOUND
To have items which do not appear in the mapList survive the
mapping process as-is.
MapTags() is central to BOOPSI gadget interconnections where you want to convert the tag values from one space (the sender) to another (the receiver).
The procedure will change the values of the input tag list tagList (but not mapList).
You can "filter" a list by passing MAP_REMOVE_NOT_FOUND as mapType, and having the data items in mapList equal the corresponding tags.
You can perform the inverse filter ("everything but") by passing a mapType of MAP_KEEP_NOT_FOUND, and creating a map item for every tag you want to filter out, pairing it with a mapped data value of TAG_IGNORE.
For safety and "order independence" of tag item arrays, if you attempt to map some tag to the value TAG_DONE, the value TAG_IGNORE will be substituted instead.
/* Consider this source list: */
struct TagItem list[] =
{
{MY_SIZE, 71},
{MY_WEIGHT, 200},
{TAG_DONE, }
};
/* And the mapping list: */
struct TagItem map[] =
{
{MY_SIZE, HIS_TALL},
{TAG_DONE, }
};
/* Then after MapTags(list,map,MAP_REMOVE_NOT_FOUND), 'list' will
become: */
{HIS_TALL,71},
{TAG_IGNORE,},
{TAG_DONE,}
/* Or after MapTags(list,map,MAP_KEEP_NOT_FOUND), 'list' will
become: */
{HIS_TALL, 71},
{MY_WEIGHT, 200},
{TAG_DONE, }
Prior to V39, the mapType parameter did not work. The function always behaved as if the parameter was set to MAP_KEEP_NOT_FOUND.