aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/aws/aws-c-io/source/retry_strategy.c
blob: 0df0823fe4bb894b91724a109792321b01b118cf (plain) (blame)
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
/** 
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 
 * SPDX-License-Identifier: Apache-2.0. 
 */ 
#include <aws/io/retry_strategy.h> 
 
void aws_retry_strategy_acquire(struct aws_retry_strategy *retry_strategy) { 
    aws_atomic_fetch_add_explicit(&retry_strategy->ref_count, 1, aws_memory_order_relaxed); 
} 
 
void aws_retry_strategy_release(struct aws_retry_strategy *retry_strategy) { 
    size_t ref_count = aws_atomic_fetch_sub_explicit(&retry_strategy->ref_count, 1, aws_memory_order_seq_cst); 
 
    if (ref_count == 1) { 
        retry_strategy->vtable->destroy(retry_strategy); 
    } 
} 
 
int aws_retry_strategy_acquire_retry_token( 
    struct aws_retry_strategy *retry_strategy, 
    const struct aws_byte_cursor *partition_id, 
    aws_retry_strategy_on_retry_token_acquired_fn *on_acquired, 
    void *user_data, 
    uint64_t timeout_ms) { 
    AWS_PRECONDITION(retry_strategy); 
    AWS_PRECONDITION(retry_strategy->vtable->acquire_token); 
    return retry_strategy->vtable->acquire_token(retry_strategy, partition_id, on_acquired, user_data, timeout_ms); 
} 
 
int aws_retry_strategy_schedule_retry( 
    struct aws_retry_token *token, 
    enum aws_retry_error_type error_type, 
    aws_retry_strategy_on_retry_ready_fn *retry_ready, 
    void *user_data) { 
    AWS_PRECONDITION(token); 
    AWS_PRECONDITION(token->retry_strategy); 
    AWS_PRECONDITION(token->retry_strategy->vtable->schedule_retry); 
 
    return token->retry_strategy->vtable->schedule_retry(token, error_type, retry_ready, user_data); 
} 
 
int aws_retry_strategy_token_record_success(struct aws_retry_token *token) { 
    AWS_PRECONDITION(token); 
    AWS_PRECONDITION(token->retry_strategy); 
    AWS_PRECONDITION(token->retry_strategy->vtable->record_success); 
 
    return token->retry_strategy->vtable->record_success(token); 
} 
 
void aws_retry_strategy_release_retry_token(struct aws_retry_token *token) { 
    if (token) { 
        AWS_PRECONDITION(token->retry_strategy); 
        AWS_PRECONDITION(token->retry_strategy->vtable->release_token); 
 
        token->retry_strategy->vtable->release_token(token); 
    } 
}