29
29
#import " MTREventTLVValueDecoder_Internal.h"
30
30
#import " MTRFramework.h"
31
31
#import " MTRLogging_Internal.h"
32
+ #import " MTRMetricKeys.h"
32
33
#import " MTRSetupPayload_Internal.h"
33
34
#import " NSDataSpanConversion.h"
34
35
#import " NSStringSpanConversion.h"
61
62
using chip::Optional;
62
63
using chip::SessionHandle;
63
64
using chip::Messaging::ExchangeManager;
65
+ using namespace chip ::Tracing::DarwinFramework;
64
66
65
67
NSString * const MTRAttributePathKey = @" attributePath" ;
66
68
NSString * const MTRCommandPathKey = @" commandPath" ;
@@ -1861,9 +1863,12 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
1861
1863
queue : (dispatch_queue_t )queue
1862
1864
completion : (MTRDeviceOpenCommissioningWindowHandler)completion
1863
1865
{
1866
+ MATTER_LOG_METRIC_BEGIN (kMetricOpenPairingWindow );
1867
+
1864
1868
if (self.isPASEDevice ) {
1865
1869
MTR_LOG_ERROR (" Can't open a commissioning window over PASE" );
1866
1870
dispatch_async (queue, ^{
1871
+ MATTER_LOG_METRIC_END (kMetricOpenPairingWindow , CHIP_ERROR_INCORRECT_STATE);
1867
1872
completion (nil , [MTRError errorForCHIPErrorCode: CHIP_ERROR_INCORRECT_STATE]);
1868
1873
});
1869
1874
return ;
@@ -1873,6 +1878,7 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
1873
1878
if (!CanCastTo<uint16_t >(durationVal)) {
1874
1879
MTR_LOG_ERROR (" Error: Duration %llu is too large." , durationVal);
1875
1880
dispatch_async (queue, ^{
1881
+ MATTER_LOG_METRIC_END (kMetricOpenPairingWindow , CHIP_ERROR_INVALID_INTEGER_VALUE);
1876
1882
completion (nil , [MTRError errorForCHIPErrorCode: CHIP_ERROR_INVALID_INTEGER_VALUE]);
1877
1883
});
1878
1884
return ;
@@ -1883,6 +1889,7 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
1883
1889
if (discriminatorVal > 0xFFF ) {
1884
1890
MTR_LOG_ERROR (" Error: Discriminator %llu is too large. Max value %d" , discriminatorVal, 0xFFF );
1885
1891
dispatch_async (queue, ^{
1892
+ MATTER_LOG_METRIC_END (kMetricOpenPairingWindow , CHIP_ERROR_INVALID_INTEGER_VALUE);
1886
1893
completion (nil , [MTRError errorForCHIPErrorCode: CHIP_ERROR_INVALID_INTEGER_VALUE]);
1887
1894
});
1888
1895
return ;
@@ -1894,6 +1901,7 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
1894
1901
if (!CanCastTo<uint32_t >(passcodeVal) || !SetupPayload::IsValidSetupPIN (static_cast <uint32_t >(passcodeVal))) {
1895
1902
MTR_LOG_ERROR (" Error: Setup passcode %llu is not valid" , passcodeVal);
1896
1903
dispatch_async (queue, ^{
1904
+ MATTER_LOG_METRIC_END (kMetricOpenPairingWindow , CHIP_ERROR_INVALID_INTEGER_VALUE);
1897
1905
completion (nil , [MTRError errorForCHIPErrorCode: CHIP_ERROR_INVALID_INTEGER_VALUE]);
1898
1906
});
1899
1907
return ;
@@ -1906,19 +1914,22 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
1906
1914
auto resultCallback = ^(CHIP_ERROR status, const SetupPayload & payload) {
1907
1915
if (status != CHIP_NO_ERROR) {
1908
1916
dispatch_async (queue, ^{
1917
+ MATTER_LOG_METRIC_END (kMetricOpenPairingWindow , status);
1909
1918
completion (nil , [MTRError errorForCHIPErrorCode: status]);
1910
1919
});
1911
1920
return ;
1912
1921
}
1913
1922
auto * payloadObj = [[MTRSetupPayload alloc ] initWithSetupPayload: payload];
1914
1923
if (payloadObj == nil ) {
1915
1924
dispatch_async (queue, ^{
1925
+ MATTER_LOG_METRIC_END (kMetricOpenPairingWindow , CHIP_ERROR_NO_MEMORY);
1916
1926
completion (nil , [MTRError errorForCHIPErrorCode: CHIP_ERROR_NO_MEMORY]);
1917
1927
});
1918
1928
return ;
1919
1929
}
1920
1930
1921
1931
dispatch_async (queue, ^{
1932
+ MATTER_LOG_METRIC_END (kMetricOpenPairingWindow , CHIP_NO_ERROR);
1922
1933
completion (payloadObj, nil );
1923
1934
});
1924
1935
};
@@ -1930,6 +1941,7 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
1930
1941
1931
1942
if (errorCode != CHIP_NO_ERROR) {
1932
1943
dispatch_async (queue, ^{
1944
+ MATTER_LOG_METRIC_END (kMetricOpenPairingWindow , errorCode);
1933
1945
completion (nil , [MTRError errorForCHIPErrorCode: errorCode]);
1934
1946
});
1935
1947
return ;
@@ -1939,6 +1951,7 @@ - (void)_openCommissioningWindowWithSetupPasscode:(nullable NSNumber *)setupPass
1939
1951
}
1940
1952
errorHandler: ^(NSError * error) {
1941
1953
dispatch_async (queue, ^{
1954
+ MATTER_LOG_METRIC_END (kMetricOpenPairingWindow , [MTRError errorToCHIPErrorCode: error]);
1942
1955
completion (nil , error);
1943
1956
});
1944
1957
}];
0 commit comments