Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nghttp3_tnode.h « lib « nghttp3 « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e1e5d5bdf98c8b65383525db81c41d8325eb571 (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
 * nghttp3
 *
 * Copyright (c) 2019 nghttp3 contributors
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
#ifndef NGHTTP3_TNODE_H
#define NGHTTP3_TNODE_H

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif /* HAVE_CONFIG_H */

#include <nghttp3/nghttp3.h>

#include "nghttp3_pq.h"

#define NGHTTP3_DEFAULT_WEIGHT 16
#define NGHTTP3_MAX_WEIGHT 256
#define NGHTTP3_TNODE_MAX_CYCLE_GAP ((1llu << 24) * 256 + 255)

typedef enum {
  NGHTTP3_NODE_ID_TYPE_STREAM = 0x00,
  NGHTTP3_NODE_ID_TYPE_PUSH = 0x01,
  NGHTTP3_NODE_ID_TYPE_PLACEHOLDER = 0x02,
  NGHTTP3_NODE_ID_TYPE_ROOT = 0x03,
  /* NGHTTP3_NODE_ID_TYPE_UT is defined for unit test */
  NGHTTP3_NODE_ID_TYPE_UT = 0xff,
} nghttp3_node_id_type;

typedef struct {
  nghttp3_node_id_type type;
  int64_t id;
} nghttp3_node_id;

nghttp3_node_id *nghttp3_node_id_init(nghttp3_node_id *nid,
                                      nghttp3_node_id_type type, int64_t id);

int nghttp3_node_id_eq(const nghttp3_node_id *a, const nghttp3_node_id *b);

struct nghttp3_tnode;
typedef struct nghttp3_tnode nghttp3_tnode;

struct nghttp3_tnode {
  nghttp3_pq_entry pe;
  nghttp3_pq pq;
  nghttp3_tnode *parent;
  nghttp3_tnode *first_child;
  nghttp3_tnode *next_sibling;
  size_t num_children;
  nghttp3_node_id nid;
  uint64_t seq;
  uint64_t cycle;
  uint32_t pending_penalty;
  uint32_t weight;
  /* active is defined for unit test and is nonzero if this node is
     active. */
  int active;
};

void nghttp3_tnode_init(nghttp3_tnode *tnode, const nghttp3_node_id *nid,
                        uint64_t seq, uint32_t weight, nghttp3_tnode *parent,
                        const nghttp3_mem *mem);

void nghttp3_tnode_free(nghttp3_tnode *tnode);

/*
 * nghttp3_tnode_is_active returns nonzero if |tnode| is active.  Only
 * NGHTTP3_NODE_ID_TYPE_STREAM and NGHTTP3_NODE_ID_TYPE_PUSH (and
 * NGHTTP3_NODE_ID_TYPE_UT for unit test) can become active.
 */
int nghttp3_tnode_is_active(nghttp3_tnode *tnode);

void nghttp3_tnode_unschedule(nghttp3_tnode *tnode);

/*
 * nghttp3_tnode_unschedule_detach works like
 * nghttp3_tnode_unschedule, but it removes |tnode| even if tnode->pq
 * is not empty.
 */
void nghttp3_tnode_unschedule_detach(nghttp3_tnode *tnode);

/*
 * nghttp3_tnode_schedule schedules |tnode| using |nwrite| as penalty.
 * If |tnode| has already been scheduled, it is rescheduled by the
 * amount of |nwrite|.
 */
int nghttp3_tnode_schedule(nghttp3_tnode *tnode, size_t nwrite);

/*
 * nghttp3_tnode_is_scheduled returns nonzero if |tnode| is scheduled.
 */
int nghttp3_tnode_is_scheduled(nghttp3_tnode *tnode);

/*
 * nghttp3_tnode_get_next returns node which has highest priority.
 * This function returns NULL if there is no node.
 */
nghttp3_tnode *nghttp3_tnode_get_next(nghttp3_tnode *node);

/*
 * nghttp3_tnode_insert inserts |tnode| as a first child of |parent|.
 * |tnode| might have its descendants.
 */
void nghttp3_tnode_insert(nghttp3_tnode *tnode, nghttp3_tnode *parent);

/*
 * nghttp3_tnode_insert_exclusive inserts |tnode| to |parent| as a
 * distinct child.  The existing direct children of |parent| become
 * the children of |tnode|.
 */
int nghttp3_tnode_insert_exclusive(nghttp3_tnode *tnode, nghttp3_tnode *parent);

/*
 * nghttp3_tnode_remove removes |tnode| along with its subtree from
 * its parent.
 */
void nghttp3_tnode_remove(nghttp3_tnode *tnode);

/*
 * nghttp3_tnode_squash removes |tnode| from its parent.  The weight
 * of |tnode| is distributed to the direct descendants of |tnode|.
 * They are inserted to the former parent of |tnode|.
 */
int nghttp3_tnode_squash(nghttp3_tnode *tnode);

/*
 * nghttp3_tnode_find_ascendant returns an ascendant of |tnode| whose
 * node ID is |nid|.  If no such node exists, this function returns
 * NULL.
 */
nghttp3_tnode *nghttp3_tnode_find_ascendant(nghttp3_tnode *tnode,
                                            const nghttp3_node_id *nid);

int nghttp3_tnode_has_active_descendant(nghttp3_tnode *tnode);

#endif /* NGHTTP3_TNODE_H */