@@ -20,13 +20,14 @@ import androidx.appactions.interaction.capabilities.core.AppEntityListener
20
20
import androidx.appactions.interaction.capabilities.core.EntitySearchResult
21
21
import androidx.appactions.interaction.capabilities.core.InventoryListListener
22
22
import androidx.appactions.interaction.capabilities.core.InventoryListener
23
+ import androidx.appactions.interaction.capabilities.core.SearchAction
23
24
import androidx.appactions.interaction.capabilities.core.ValidationResult
24
25
import androidx.appactions.interaction.capabilities.core.ValueListener
25
26
import androidx.appactions.interaction.capabilities.core.impl.converters.ParamValueConverter
26
27
import androidx.appactions.interaction.capabilities.core.impl.converters.SlotTypeConverter
27
28
import androidx.appactions.interaction.capabilities.core.impl.exceptions.StructConversionException
28
29
import androidx.appactions.interaction.capabilities.core.impl.task.exceptions.InvalidResolverException
29
- import androidx.appactions.interaction.capabilities.core.SearchAction
30
+ import androidx.appactions.interaction.capabilities.core.impl.utils.invokeExternalSuspendBlock
30
31
import androidx.appactions.interaction.proto.ParamValue
31
32
32
33
/* *
@@ -44,18 +45,22 @@ private constructor(
44
45
val appEntity: AppEntityListener <ValueTypeT >? = null ,
45
46
val appEntityList: AppEntityListListener <ValueTypeT >? = null ,
46
47
val inventory: InventoryListener <ValueTypeT >? = null ,
47
- val inventoryList: InventoryListListener <ValueTypeT >? = null ,
48
+ val inventoryList: InventoryListListener <ValueTypeT >? = null
48
49
) {
49
50
50
51
/* * Wrapper which should invoke the `lookupAndRender` provided by the developer. */
51
52
@Throws(InvalidResolverException ::class )
52
53
suspend fun invokeLookup (
53
- searchAction : SearchAction <ValueTypeT >,
54
+ searchAction : SearchAction <ValueTypeT >
54
55
): EntitySearchResult <ValueTypeT > {
55
56
return if (appEntity != null ) {
56
- appEntity.lookupAndRender(searchAction)
57
+ invokeExternalSuspendBlock(" lookupAndRender" ) {
58
+ appEntity.lookupAndRender(searchAction)
59
+ }
57
60
} else if (appEntityList != null ) {
58
- appEntityList.lookupAndRender(searchAction)
61
+ invokeExternalSuspendBlock(" lookupAndRender" ) {
62
+ appEntityList.lookupAndRender(searchAction)
63
+ }
59
64
} else {
60
65
throw InvalidResolverException (" invokeLookup is not supported on this resolver" )
61
66
}
@@ -68,9 +73,13 @@ private constructor(
68
73
@Throws(InvalidResolverException ::class )
69
74
suspend fun invokeEntityRender (entityIds : List <String >) {
70
75
if (inventory != null ) {
71
- inventory.renderChoices(entityIds)
76
+ invokeExternalSuspendBlock(" renderChoices" ) {
77
+ inventory.renderChoices(entityIds)
78
+ }
72
79
} else if (inventoryList != null ) {
73
- inventoryList.renderChoices(entityIds)
80
+ invokeExternalSuspendBlock(" renderChoices" ) {
81
+ inventoryList.renderChoices(entityIds)
82
+ }
74
83
} else {
75
84
throw InvalidResolverException (" invokeEntityRender is not supported on this resolver" )
76
85
}
@@ -83,22 +92,24 @@ private constructor(
83
92
@Throws(StructConversionException ::class )
84
93
suspend fun notifyValueChange (
85
94
paramValues : List <ParamValue >,
86
- converter : ParamValueConverter <ValueTypeT >,
95
+ converter : ParamValueConverter <ValueTypeT >
87
96
): ValidationResult {
88
97
val singularConverter = SlotTypeConverter .ofSingular(converter)
89
98
val repeatedConverter = SlotTypeConverter .ofRepeated(converter)
90
- return when {
91
- value != null -> value.onReceived(singularConverter.convert(paramValues))
92
- valueList != null -> valueList.onReceived(repeatedConverter.convert(paramValues))
93
- appEntity != null ->
94
- appEntity.onReceived(singularConverter.convert(paramValues))
95
- appEntityList != null ->
96
- appEntityList.onReceived(repeatedConverter.convert(paramValues))
97
- inventory != null ->
98
- inventory.onReceived(singularConverter.convert(paramValues))
99
- inventoryList != null ->
100
- inventoryList.onReceived(repeatedConverter.convert(paramValues))
101
- else -> throw IllegalStateException (" unreachable" )
99
+ return invokeExternalSuspendBlock(" onReceived" ) {
100
+ when {
101
+ value != null -> value.onReceived(singularConverter.convert(paramValues))
102
+ valueList != null -> valueList.onReceived(repeatedConverter.convert(paramValues))
103
+ appEntity != null ->
104
+ appEntity.onReceived(singularConverter.convert(paramValues))
105
+ appEntityList != null ->
106
+ appEntityList.onReceived(repeatedConverter.convert(paramValues))
107
+ inventory != null ->
108
+ inventory.onReceived(singularConverter.convert(paramValues))
109
+ inventoryList != null ->
110
+ inventoryList.onReceived(repeatedConverter.convert(paramValues))
111
+ else -> throw IllegalStateException (" unreachable" )
112
+ }
102
113
}
103
114
}
104
115
@@ -113,14 +124,14 @@ private constructor(
113
124
GenericResolverInternal (appEntity = appEntity)
114
125
115
126
fun <ValueTypeT > fromAppEntityListListener (
116
- appEntityList : AppEntityListListener <ValueTypeT >,
127
+ appEntityList : AppEntityListListener <ValueTypeT >
117
128
) = GenericResolverInternal (appEntityList = appEntityList)
118
129
119
130
fun <ValueTypeT > fromInventoryListener (inventory : InventoryListener <ValueTypeT >) =
120
131
GenericResolverInternal (inventory = inventory)
121
132
122
133
fun <ValueTypeT > fromInventoryListListener (
123
- inventoryList : InventoryListListener <ValueTypeT >,
134
+ inventoryList : InventoryListListener <ValueTypeT >
124
135
) = GenericResolverInternal (inventoryList = inventoryList)
125
136
}
126
137
}
0 commit comments