You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+132
Original file line number
Diff line number
Diff line change
@@ -5,3 +5,135 @@ This repository contains the backoffAlgorithm library, a utility library to calc
5
5
This library supports the "Full Jitter" algorithm for exponential back-off with jitter.
6
6
More information about the algorithm can be seen in the [Exponential Backoff and Jitter](https://aws.amazon.com/blogs/architecture/exponential-backoff-and-jitter/) AWS blog.
7
7
8
+
## Reference example
9
+
10
+
The example below shows how to use the backoffAlgorithm library to retry a DNS resolution query for `amazon.com`.
11
+
12
+
```c
13
+
#include"retry_utils.h"
14
+
#include<stdlib.h>
15
+
#include<string.h>
16
+
#include<netdb.h>
17
+
18
+
/* The maximum number of retries for the example code. */
19
+
#defineRETRY_MAX_ATTEMPTS ( 5U )
20
+
21
+
/* The maximum back-off delay (in milliseconds) for between retries in the example. */
22
+
#defineRETRY_MAX_BACKOFF_DELAY_MS( 5000U )
23
+
24
+
/* The base back-off delay (in milliseconds) for retry configuration in the example. */
25
+
#defineRETRY_BACKOFF_BASE_MS ( 500U )
26
+
27
+
/**
28
+
* A random number generator to provide to the backoffAlgorithm
29
+
* library.
30
+
*
31
+
* This function is used in the exponential backoff with jitter algorithm
32
+
* to calculate the backoff value for the next retry attempt.
33
+
*
34
+
* It is recommended to either use a True Random Number Generator (TRNG) for
35
+
* calculation of unique back-off values in devices so that collision between
36
+
* devices attempting retries at the same intervals can be avoided.
37
+
*
38
+
* For the simplicity of the code example, this function is a pseudo
39
+
* random number generator.
40
+
*
41
+
* @return The generated random number. This example function ALWAYS succeeds
A compiler that supports **C89 or later** such as *gcc* is required to build the library.
97
+
98
+
For instance, if the example above is copied to a file named `example.c`, *gcc* can be used like so:
99
+
```bash
100
+
gcc -I source/include example.c source/retry_utils.c -o example
101
+
./example
102
+
```
103
+
104
+
*gcc* can also produce an output file to be linked:
105
+
```bash
106
+
gcc -I source/include -c source/retry_utils.c
107
+
```
108
+
109
+
## Building unit tests
110
+
111
+
### Checkout Unity Submodule
112
+
By default, the submodules in this repository are configured with `update=none` in [.gitmodules](.gitmodules), to avoid increasing clone time and disk space usage of other repositories (like [amazon-freertos](https://github.com/aws/amazon-freertos) that submodules this repository).
113
+
114
+
To build unit tests, the submodule dependency of Unity is required. Use the following command to clone the submodule:
# Target for Coverity analysis that builds the library.
40
+
add_library( coverity_analysis
41
+
${RETRY_UTILS_SOURCES} )
42
+
43
+
# Backoff Algorithm library public include path.
44
+
target_include_directories( coverity_analysis
45
+
PUBLIC
46
+
${RETRY_UTILS_INCLUDE_PUBLIC_DIRS} )
47
+
48
+
# ==================================== Unit Test Configuration ====================================
49
+
50
+
# Include Unity build configuration.
51
+
include( unit-test/unity_build.cmake )
52
+
53
+
# Check if the Unity source directory exists, and if not present, clone the submodule
54
+
# if BUILD_CLONE_SUBMODULES configuration is enabled.
55
+
if( NOTEXISTS${UNITY_DIR}/src )
56
+
# Attempt to clone Unity.
57
+
if( ${BUILD_CLONE_SUBMODULES} )
58
+
clone_unity()
59
+
else()
60
+
message( FATAL_ERROR "The required submodule Unity does not exist. Either clone it manually, or set BUILD_CLONE_SUBMODULES to 1 to automatically clone it during build." )
61
+
endif()
62
+
endif()
63
+
64
+
# Add unit test and coverage configuration.
65
+
66
+
# Use CTest utility for managing test runs. This has to be added BEFORE
67
+
# defining test targets with add_test()
68
+
enable_testing()
69
+
70
+
# Add build targets for Unity and Unit, required for unit testing.
71
+
add_unity_targets()
72
+
73
+
# Add function to enable Unity based tests and coverage.
0 commit comments