-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRunsNetSpeedMeasurer.h
78 lines (65 loc) · 2.7 KB
/
RunsNetSpeedMeasurer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//
// RunsNetSpeedMeasurer.h
// RunsNetSpeedMeasurer
//
// Created by runs on 2018/3/16.
// Learning from Vladislav Dugnist
// Copyright © 2018年 Olacio. All rights reserved.
//
#import <Foundation/Foundation.h>
#if __LP64__ || (TARGET_OS_EMBEDDED && !TARGET_OS_IPHONE) || TARGET_OS_WIN32 || NS_BUILD_32_LIKE_64
typedef long RLong;
typedef unsigned long RULong;
#else
typedef long long RLong;
typedef unsigned long long RULong;
#endif
typedef NS_ENUM(NSUInteger, RunsNetConnectionType) {
RunsNetConnectionType_WiFi = 0,
RunsNetConnectionType_WWAN = 1,
};
NS_ASSUME_NONNULL_BEGIN
@class RunsNetMeasurerResult;
typedef void(^RunsNetworkSpeedAttributeCallback)(RunsNetMeasurerResult *result);
@protocol ISpeedMeasurerProtocol;
@protocol RunsNetSpeedMeasurerDelegate <NSObject>
- (void)measurer:(id<ISpeedMeasurerProtocol>)measurer didCompletedByInterval:(RunsNetMeasurerResult *)result;
@end
@protocol ISpeedMeasurerProtocol <NSObject>
@property (nonatomic, assign) NSUInteger accuracyLevel;//精度等级 1~5
@property (nonatomic, assign) NSTimeInterval measurerInterval;
@property (nonatomic, weak) id<RunsNetSpeedMeasurerDelegate> delegate;//Block和Delegate 二选一, Block优先级更高.
@property (nonatomic, strong) RunsNetworkSpeedAttributeCallback measurerBlock;//Block和Delegate 二选一, Block优先级更高.
- (instancetype)initWithAccuracyLevel:(NSUInteger)accuracyLevel interval:(NSTimeInterval)interval;
- (void)execute;
- (void)shutdown;
@end
@interface RunsNetFragmentation : NSObject
@property (nonatomic, assign) RunsNetConnectionType connectionType;
@property (nonatomic, assign) u_int32_t inputBytesCount;
@property (nonatomic, assign) u_int32_t outputBytesCount;
@property (nonatomic) NSTimeInterval beginTimestamp;
@property (nonatomic) NSTimeInterval endTimestamp;
+ (NSString *)maxValueInputKeyPath;
+ (NSString *)minValueInputKeyPath;
+ (NSString *)avgValueInputKeyPath;
+ (NSString *)maxValueOutputKeyPath;
+ (NSString *)minValueOutputKeyPath;
+ (NSString *)avgValueOutputKeyPath;
+ (NSString *)realTimeInputKeyPath;
+ (NSString *)realTimeOutputKeyPath;
@end
@interface RunsNetMeasurerResult : NSObject
@property (nonatomic, assign) RunsNetConnectionType connectionType;
@property (nonatomic, assign) double uplinkMaxSpeed;
@property (nonatomic, assign) double uplinkMinSpeed;
@property (nonatomic, assign) double uplinkAvgSpeed;
@property (nonatomic, assign) double uplinkCurSpeed;
@property (nonatomic, assign) double downlinkMaxSpeed;
@property (nonatomic, assign) double downlinkMinSpeed;
@property (nonatomic, assign) double downlinkAvgSpeed;
@property (nonatomic, assign) double downlinkCurSpeed;
@end
@interface RunsNetSpeedMeasurer : NSObject <ISpeedMeasurerProtocol>
@end
NS_ASSUME_NONNULL_END