File indexing completed on 2025-01-18 10:13:16
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef UPB_HASH_STR_TABLE_H_
0009 #define UPB_HASH_STR_TABLE_H_
0010
0011 #include "upb/hash/common.h"
0012
0013
0014 #include "upb/port/def.inc"
0015
0016 typedef struct {
0017 upb_table t;
0018 } upb_strtable;
0019
0020 #ifdef __cplusplus
0021 extern "C" {
0022 #endif
0023
0024
0025
0026 bool upb_strtable_init(upb_strtable* table, size_t expected_size, upb_Arena* a);
0027
0028
0029 UPB_INLINE size_t upb_strtable_count(const upb_strtable* t) {
0030 return t->t.count;
0031 }
0032
0033 void upb_strtable_clear(upb_strtable* t);
0034
0035
0036
0037
0038
0039
0040
0041 bool upb_strtable_insert(upb_strtable* t, const char* key, size_t len,
0042 upb_value val, upb_Arena* a);
0043
0044
0045
0046 bool upb_strtable_lookup2(const upb_strtable* t, const char* key, size_t len,
0047 upb_value* v);
0048
0049
0050 UPB_INLINE bool upb_strtable_lookup(const upb_strtable* t, const char* key,
0051 upb_value* v) {
0052 return upb_strtable_lookup2(t, key, strlen(key), v);
0053 }
0054
0055
0056
0057 bool upb_strtable_remove2(upb_strtable* t, const char* key, size_t len,
0058 upb_value* val);
0059
0060 UPB_INLINE bool upb_strtable_remove(upb_strtable* t, const char* key,
0061 upb_value* v) {
0062 return upb_strtable_remove2(t, key, strlen(key), v);
0063 }
0064
0065
0066 bool upb_strtable_resize(upb_strtable* t, size_t size_lg2, upb_Arena* a);
0067
0068
0069
0070
0071
0072
0073
0074
0075
0076
0077
0078 #define UPB_STRTABLE_BEGIN -1
0079
0080 bool upb_strtable_next2(const upb_strtable* t, upb_StringView* key,
0081 upb_value* val, intptr_t* iter);
0082 void upb_strtable_removeiter(upb_strtable* t, intptr_t* iter);
0083 void upb_strtable_setentryvalue(upb_strtable* t, intptr_t iter, upb_value v);
0084
0085
0086
0087
0088
0089
0090
0091
0092
0093
0094
0095
0096
0097
0098
0099
0100
0101
0102
0103
0104
0105
0106
0107
0108
0109
0110
0111
0112
0113
0114
0115
0116
0117
0118 typedef struct {
0119 const upb_strtable* t;
0120 size_t index;
0121 } upb_strtable_iter;
0122
0123 UPB_INLINE const upb_tabent* str_tabent(const upb_strtable_iter* i) {
0124 return &i->t->t.entries[i->index];
0125 }
0126
0127 void upb_strtable_begin(upb_strtable_iter* i, const upb_strtable* t);
0128 void upb_strtable_next(upb_strtable_iter* i);
0129 bool upb_strtable_done(const upb_strtable_iter* i);
0130 upb_StringView upb_strtable_iter_key(const upb_strtable_iter* i);
0131 upb_value upb_strtable_iter_value(const upb_strtable_iter* i);
0132 void upb_strtable_iter_setdone(upb_strtable_iter* i);
0133 bool upb_strtable_iter_isequal(const upb_strtable_iter* i1,
0134 const upb_strtable_iter* i2);
0135
0136 #ifdef __cplusplus
0137 }
0138 #endif
0139
0140 #include "upb/port/undef.inc"
0141
0142 #endif