From abbbe32010363079489e3669b18ce25863994ba6 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 15 Nov 2023 09:48:10 +0100 Subject: [PATCH 001/125] Add ideas for json api format examples --- api-formats/advanced/monitor_route.json | 15 ++++++ api-formats/advanced/monitor_signals.json | 14 +++++ api-formats/advanced/monitor_train-state.json | 12 +++++ .../advanced/monitor_train-states.json | 52 +++++++++++++++++++ api-formats/advanced/monitor_trains.json | 24 +++++++++ api-formats/basic/monitor_signals.json | 12 +++++ 6 files changed, 129 insertions(+) create mode 100644 api-formats/advanced/monitor_route.json create mode 100644 api-formats/advanced/monitor_signals.json create mode 100644 api-formats/advanced/monitor_train-state.json create mode 100644 api-formats/advanced/monitor_train-states.json create mode 100644 api-formats/advanced/monitor_trains.json create mode 100644 api-formats/basic/monitor_signals.json diff --git a/api-formats/advanced/monitor_route.json b/api-formats/advanced/monitor_route.json new file mode 100644 index 00000000..1fedf18b --- /dev/null +++ b/api-formats/advanced/monitor_route.json @@ -0,0 +1,15 @@ +{ + "id": "54", + "source_signal": "s1", + "destination_signal": "s4", + "orientation": "left", + "length": 1213.1, + "path": ["seg1", "seg2"], + "sections": ["x1", "x2"], + "points": ["p1", "p2"], + "signals": ["s1", "s4"], + "conflicting_route_ids": ["123","1","2"], + "granted_conflicting_route_ids": ["1"], + "clear": false, + "granted_to_train": "" +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_signals.json b/api-formats/advanced/monitor_signals.json new file mode 100644 index 00000000..42fadc55 --- /dev/null +++ b/api-formats/advanced/monitor_signals.json @@ -0,0 +1,14 @@ +{ + "signals": [ + { + "id": "signal1", + "state": "aspect_go", + "type": "entry" + }, + { + "id": "signal2", + "state": "unknown", + "type": "unknown" + } + ] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_train-state.json b/api-formats/advanced/monitor_train-state.json new file mode 100644 index 00000000..5501be49 --- /dev/null +++ b/api-formats/advanced/monitor_train-state.json @@ -0,0 +1,12 @@ +{ + "id": "cargo_db", + "grabbed": true, + "on_track": true, + "occupied_segments": ["seg1", "seg2"], + "occupied_blocks": ["block1"], + "orientation(?)": "left", + "direction": "forwards", + "speed_step": 10, + "detected_speed_kmh": 2, + "route_id": -1 +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_train-states.json b/api-formats/advanced/monitor_train-states.json new file mode 100644 index 00000000..35856421 --- /dev/null +++ b/api-formats/advanced/monitor_train-states.json @@ -0,0 +1,52 @@ +{ + "trains": [ + { + "id": "cargo_db", + "grabbed": true, + "on_track": true, + "occupied_segments": ["seg1", "seg2"], + "occupied_blocks": ["block1"], + "orientation(?)": "left", + "direction": "forwards", + "speed_step": 10, + "detected_speed_kmh": 2, + "route_id": 54 + }, + { + "id": "cargo_green", + "grabbed": true, + "on_track": false, + "occupied_segments": [], + "occupied_blocks": [], + "orientation(?)": "", + "direction": "", + "speed_step": 0, + "detected_speed_kmh": 0, + "route_id": -1 + }, + { + "id": "cargo_bayern", + "grabbed": false, + "on_track": false, + "occupied_segments": [], + "occupied_blocks": [], + "orientation(?)": "", + "direction": "", + "speed_step": 0, + "detected_speed_kmh": 0, + "route_id": -1 + }, + { + "id": "regional_odeg", + "grabbed": false, + "on_track": true, + "occupied_segments": ["seg58"], + "occupied_blocks": ["platform4"], + "orientation(?)": "left(?)___not sure if this can be determined without a route", + "direction": "forwards", + "speed_step": 0, + "detected_speed_kmh": 0, + "route_id": -1 + } + ] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_trains.json b/api-formats/advanced/monitor_trains.json new file mode 100644 index 00000000..18e3a24f --- /dev/null +++ b/api-formats/advanced/monitor_trains.json @@ -0,0 +1,24 @@ +{ + "trains": [ + { + "id": "cargo_db", + "grabbed": true, + "on_track": true + }, + { + "id": "cargo_green", + "grabbed": true, + "on_track": false + }, + { + "id": "cargo_bayern", + "grabbed": false, + "on_track": false + }, + { + "id": "regional_odeg", + "grabbed": false, + "on_track": true + } + ] +} \ No newline at end of file diff --git a/api-formats/basic/monitor_signals.json b/api-formats/basic/monitor_signals.json new file mode 100644 index 00000000..e6e78ac5 --- /dev/null +++ b/api-formats/basic/monitor_signals.json @@ -0,0 +1,12 @@ +{ + "signals": [ + { + "id": "signal1", + "state": "aspect_go" + }, + { + "id": "signal2", + "state": "unknown" + } + ] +} \ No newline at end of file From e86dfeae6b98010650ffd93b5a93ed7efcff536c Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 15 Nov 2023 09:48:33 +0100 Subject: [PATCH 002/125] add json builder and first try with monitor route --- server/src/handler_monitor.c | 93 +++++++++++++++++ server/src/json_response_builder.c | 158 +++++++++++++++++++++++++++++ server/src/json_response_builder.h | 24 +++++ 3 files changed, 275 insertions(+) create mode 100644 server/src/json_response_builder.c create mode 100644 server/src/json_response_builder.h diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 98f5a611..02922981 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -40,6 +40,7 @@ #include "interlocking.h" #include "bahn_data_util.h" #include "websocket_uploader/engine_uploader.h" +#include "json_response_builder.h" onion_connection_status handler_get_trains(void *_, onion_request *req, onion_response *res) { build_response_header(res); @@ -578,6 +579,94 @@ void sprintf_garray_interlocking_point(GString *output, GArray *garray) { } } +GArray* garray_points_to_garray_str_ids(GArray *points) { + if (points == NULL) { + return NULL; + } + GArray *g_point_ids = g_array_new(FALSE, FALSE, sizeof(char *)); + + for (int i = 0; i < points->len; ++i) { + t_interlocking_point *point = &g_array_index(points, t_interlocking_point, i); + if (point != NULL) { + char *point_id_dcopy = strdup(point->id); + if (point_id_dcopy != NULL) { + g_array_append_val(g_point_ids, point_id_dcopy); + } + } + } + return g_point_ids; +} + +void free_g_strarray(GArray *g_strarray) { + if (g_strarray == NULL) { + return; + } + for (int i = 0; i < g_strarray->len; ++i) { + if (g_array_index(g_strarray, char *, i) != NULL) { + free(g_array_index(g_strarray, char *, i)); + } + } + g_array_free(g_strarray, true); + g_strarray = NULL; +} + +GString* get_route_json(const char *data_route_id) { + if (data_route_id == NULL) { + // Invalid param + syslog_server(LOG_NOTICE, "Get route JSON experiment - input param NULL"); + return NULL; + } + const char *route_id = params_check_route_id(data_route_id); + if (route_id == NULL || strcmp(route_id, "") == 0) { + // Invalid route id + syslog_server(LOG_ERR, "Get route JSON experiment - invalid route id"); + return NULL; + } + + pthread_mutex_lock(&interlocker_mutex); + + const t_interlocking_route *route = get_route(route_id); + if (route == NULL) { + pthread_mutex_unlock(&interlocker_mutex); + // Invalid route / route doesn't exist + syslog_server(LOG_ERR, "Get route JSON experiment - invalid route id (route not found)"); + return NULL; + } + + GString *g_route_str = g_string_new(""); + append_start_of_obj(g_route_str); + append_field_str_value(g_route_str, "source_signal", route->source, true); + append_field_str_value(g_route_str, "destination_signal", route->destination, true); + append_field_str_value(g_route_str, "orientation", route->orientation, true); + append_field_float_value(g_route_str, "length", route->length, true); + append_field_strlist_value_garray(g_route_str, "path", route->path, true); + append_field_strlist_value_garray(g_route_str, "sections", route->sections, true); + append_field_strlist_value_garray(g_route_str, "signals", route->signals, true); + + GArray *g_point_ids = garray_points_to_garray_str_ids(route->points); + append_field_strlist_value_garray(g_route_str, "points", g_point_ids, true); + free_g_strarray(g_point_ids); + + append_field_strlist_value_garray(g_route_str, "conflicting_route_ids", route->conflicts, true); + + const GArray *granted_route_conflicts = get_granted_route_conflicts(route_id); + if (granted_route_conflicts != NULL) { + append_field_strlist_value_garray(g_route_str, "granted_conflicting_route_ids", granted_route_conflicts, true); + } else { + append_field_emptylist_value(g_route_str, "granted_conflicting_route_ids", true); + } + + append_field_bool_value(g_route_str, "clear", get_route_is_clear(route_id), true); + append_field_str_value(g_route_str, "granted_to_train", route->train == NULL ? "" : route->train, false); + append_end_of_obj(g_route_str, false); + + pthread_mutex_unlock(&interlocker_mutex); + + syslog_server(LOG_NOTICE, "Get route JSON experiment - route: %s, output: \n%s", route_id, g_route_str->str); + + return g_route_str; +} + onion_connection_status handler_get_route(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -588,6 +677,10 @@ onion_connection_status handler_get_route(void *_, onion_request *req, onion_res return OCS_NOT_IMPLEMENTED; } + ///TODO: remove - Experiment + get_route_json(data_route_id); + // End of experiment + syslog_server(LOG_INFO, "Request: Get route - route: %s", route_id); GString *route_str = g_string_new(""); diff --git a/server/src/json_response_builder.c b/server/src/json_response_builder.c new file mode 100644 index 00000000..4cd51f8f --- /dev/null +++ b/server/src/json_response_builder.c @@ -0,0 +1,158 @@ +///AUTHOR: Bernhard Luedtke + +#include "json_response_builder.h" + +//const char *end_of_obj_noc = "}"; +//const char *end_of_obj_withc = "},"; +//const char *end_of_list_noc = "]"; +//const char *end_of_list_withc = "],"; + + +GString* append_field_str_value(GString *dest, const char *field, + const char *value_str, bool add_trailing_comma) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": \"%s\"%s", + field, value_str, add_trailing_comma ? "," : ""); + return dest; +} + +GString* append_field_strlist_value(GString *dest, const char *field, + const char **value_liststr, unsigned int list_len, + bool add_trailing_comma) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": [", field); + + for(unsigned int i = 0; i < list_len; ++i) { + const char * list_elem = value_liststr[i]; + if (list_elem != NULL) { + // append to json list and add "," if not last element + g_string_append_printf(dest, "\"%s\"%s", list_elem, (i+1 < list_len) ? ", " : ""); + } + } + g_string_append_printf(dest, "]%s", add_trailing_comma ? "," : ""); + + return dest; +} + +GString* append_field_strlist_value_garray(GString *dest, const char *field, + const GArray* g_strarray, bool add_trailing_comma) { + if (dest == NULL || field == NULL || g_strarray == NULL) { + return NULL; + } + if (g_strarray->len == 0) { + g_string_append_printf(dest, "\n\"%s\": []%s", field, add_trailing_comma ? "," : ""); + return dest; + } + + g_string_append_printf(dest, "\n\"%s\": [", field); + for (unsigned int i = 0; i < g_strarray->len; ++i) { + g_string_append_printf(dest, "\"%s\"%s", + g_array_index(g_strarray, char *, i), + (i+1 < g_strarray->len) ? ", " : ""); + } + g_string_append_printf(dest, "]%s", add_trailing_comma ? "," : ""); + + return dest; +} + +GString* append_field_emptylist_value(GString *dest, const char *field, + bool add_trailing_comma) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": []%s", + field, add_trailing_comma ? "," : ""); + return dest; +} + +GString* append_field_bool_value(GString *dest, const char *field, bool value_bool, + bool add_trailing_comma) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": %s%s", + field, value_bool ? "true" : "false", add_trailing_comma ? "," : ""); + return dest; +} + +GString* append_field_int_value(GString *dest, const char *field, int value_int, + bool add_trailing_comma) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": \"%d\"%s", + field, value_int, add_trailing_comma ? "," : ""); + return dest; +} + +GString* append_field_uint_value(GString *dest, const char *field, unsigned int value_uint, + bool add_trailing_comma) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": \"%u\"%s", + field, value_uint, add_trailing_comma ? "," : ""); + return dest; +} + +GString* append_field_float_value(GString *dest, const char *field, + float value_float, bool add_trailing_comma) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": \"%f\"%s", + field, value_float, add_trailing_comma ? "," : ""); + return dest; +} + +GString* append_field_start_of_list(GString *dest, const char *field) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": [", field); + return dest; +} + +GString* append_start_of_list(GString *dest) { + if (dest == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n["); + return dest; +} + +GString* append_end_of_list(GString *dest, bool add_trailing_comma) { + if (dest == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n]%s", add_trailing_comma ? "," : ""); + return dest; +} + +GString* append_field_with_start_of_obj(GString *dest, const char *field) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": {", field); + return dest; +} + +GString* append_start_of_obj(GString *dest) { + if (dest == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n{"); + return dest; +} + +GString* append_end_of_obj(GString *dest, bool add_trailing_comma) { + if (dest == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n}%s", add_trailing_comma ? "," : ""); + return dest; +} diff --git a/server/src/json_response_builder.h b/server/src/json_response_builder.h new file mode 100644 index 00000000..efe564da --- /dev/null +++ b/server/src/json_response_builder.h @@ -0,0 +1,24 @@ +///AUTHOR: Bernhard Luedtke +#pragma once + +#include +#include + +// Note: End of object and end of list should remove the last non-whitespace/linebreak char if it is a "," + +GString* append_field_str_value(GString *dest, const char *field, const char *value_str, bool add_trailing_comma); +GString* append_field_strlist_value(GString *dest, const char *field, const char **value_liststr, unsigned int list_len, bool add_trailing_comma); +GString* append_field_strlist_value_garray(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma); +GString* append_field_emptylist_value(GString *dest, const char *field, bool add_trailing_comma); +GString* append_field_bool_value(GString *dest, const char *field, bool value_bool, bool add_trailing_comma); +GString* append_field_int_value(GString *dest, const char *field, int value_int, bool add_trailing_comma); +GString* append_field_uint_value(GString *dest, const char *field, unsigned int value_uint, bool add_trailing_comma); +GString* append_field_float_value(GString *dest, const char *field, float value_float, bool add_trailing_comma); + +GString* append_field_start_of_list(GString *dest, const char *field); +GString* append_start_of_list(GString *dest); +GString* append_end_of_list(GString *dest, bool add_trailing_comma); + +GString* append_field_with_start_of_obj(GString *dest, const char *field); +GString* append_start_of_obj(GString *dest); +GString* append_end_of_obj(GString *dest, bool add_trailing_comma); \ No newline at end of file From 82d004edd94d98f5d245734afdf351b2c8e0f1c1 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 15 Nov 2023 09:52:17 +0100 Subject: [PATCH 003/125] add missing free --- server/src/handler_monitor.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 02922981..7baecdb2 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -678,7 +678,8 @@ onion_connection_status handler_get_route(void *_, onion_request *req, onion_res } ///TODO: remove - Experiment - get_route_json(data_route_id); + GString* route_json = get_route_json(data_route_id); + g_string_free(route_json, true); // End of experiment syslog_server(LOG_INFO, "Request: Get route - route: %s", route_id); From 8c052c41f04beb793028df07f59618f178d4ba18 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 15 Nov 2023 10:19:09 +0100 Subject: [PATCH 004/125] more json conversion work --- api-formats/advanced/monitor_route.json | 22 ++++++++-------- server/src/handler_monitor.c | 13 +++++----- server/src/json_response_builder.c | 34 +++++++++++++++++++++---- server/src/json_response_builder.h | 6 ++--- 4 files changed, 50 insertions(+), 25 deletions(-) diff --git a/api-formats/advanced/monitor_route.json b/api-formats/advanced/monitor_route.json index 1fedf18b..fc906a20 100644 --- a/api-formats/advanced/monitor_route.json +++ b/api-formats/advanced/monitor_route.json @@ -1,15 +1,15 @@ { - "id": "54", - "source_signal": "s1", - "destination_signal": "s4", - "orientation": "left", - "length": 1213.1, - "path": ["seg1", "seg2"], - "sections": ["x1", "x2"], - "points": ["p1", "p2"], - "signals": ["s1", "s4"], - "conflicting_route_ids": ["123","1","2"], - "granted_conflicting_route_ids": ["1"], + "id": "40", + "source_signal": "signal36", + "destination_signal": "signal49", + "orientation": "clockwise", + "length": "268.100006", + "path": ["seg35", "seg34", "seg33", "seg84", "seg89", "seg92", "seg91b", "seg91a", "seg90"], + "sections": ["block21"], + "signals": ["signal36", "signal49"], + "points": ["point13", "point12", "point11", "point27", "point29"], + "conflicting_route_ids": [0,1,2], + "granted_conflicting_route_ids": [1], "clear": false, "granted_to_train": "" } \ No newline at end of file diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 7baecdb2..b4768091 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -635,23 +635,24 @@ GString* get_route_json(const char *data_route_id) { GString *g_route_str = g_string_new(""); append_start_of_obj(g_route_str); + append_field_bare_value_from_str(g_route_str, "id", route->id, true); append_field_str_value(g_route_str, "source_signal", route->source, true); append_field_str_value(g_route_str, "destination_signal", route->destination, true); append_field_str_value(g_route_str, "orientation", route->orientation, true); append_field_float_value(g_route_str, "length", route->length, true); - append_field_strlist_value_garray(g_route_str, "path", route->path, true); - append_field_strlist_value_garray(g_route_str, "sections", route->sections, true); - append_field_strlist_value_garray(g_route_str, "signals", route->signals, true); + append_field_strlist_value_garray_strs(g_route_str, "path", route->path, true); + append_field_strlist_value_garray_strs(g_route_str, "sections", route->sections, true); + append_field_strlist_value_garray_strs(g_route_str, "signals", route->signals, true); GArray *g_point_ids = garray_points_to_garray_str_ids(route->points); - append_field_strlist_value_garray(g_route_str, "points", g_point_ids, true); + append_field_strlist_value_garray_strs(g_route_str, "points", g_point_ids, true); free_g_strarray(g_point_ids); - append_field_strlist_value_garray(g_route_str, "conflicting_route_ids", route->conflicts, true); + append_field_barelist_value_from_garray_strs(g_route_str, "conflicting_route_ids", route->conflicts, true); const GArray *granted_route_conflicts = get_granted_route_conflicts(route_id); if (granted_route_conflicts != NULL) { - append_field_strlist_value_garray(g_route_str, "granted_conflicting_route_ids", granted_route_conflicts, true); + append_field_barelist_value_from_garray_strs(g_route_str, "granted_conflicting_route_ids", granted_route_conflicts, true); } else { append_field_emptylist_value(g_route_str, "granted_conflicting_route_ids", true); } diff --git a/server/src/json_response_builder.c b/server/src/json_response_builder.c index 4cd51f8f..3d4dbede 100644 --- a/server/src/json_response_builder.c +++ b/server/src/json_response_builder.c @@ -10,7 +10,7 @@ GString* append_field_str_value(GString *dest, const char *field, const char *value_str, bool add_trailing_comma) { - if (dest == NULL || field == NULL) { + if (dest == NULL || field == NULL || value_str == NULL) { return NULL; } g_string_append_printf(dest, "\n\"%s\": \"%s\"%s", @@ -18,10 +18,20 @@ GString* append_field_str_value(GString *dest, const char *field, return dest; } +GString* append_field_bare_value_from_str(GString *dest, const char *field, + const char *value_str, bool add_trailing_comma) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": %s%s", + field, value_str, add_trailing_comma ? "," : ""); + return dest; +} + GString* append_field_strlist_value(GString *dest, const char *field, const char **value_liststr, unsigned int list_len, bool add_trailing_comma) { - if (dest == NULL || field == NULL) { + if (dest == NULL || field == NULL || value_liststr == NULL) { return NULL; } g_string_append_printf(dest, "\n\"%s\": [", field); @@ -38,8 +48,10 @@ GString* append_field_strlist_value(GString *dest, const char *field, return dest; } -GString* append_field_strlist_value_garray(GString *dest, const char *field, - const GArray* g_strarray, bool add_trailing_comma) { +GString* append_field_value_garray_strs_base(GString *dest, const char *field, + const GArray* g_strarray, + bool add_value_quote_marks, + bool add_trailing_comma) { if (dest == NULL || field == NULL || g_strarray == NULL) { return NULL; } @@ -47,10 +59,11 @@ GString* append_field_strlist_value_garray(GString *dest, const char *field, g_string_append_printf(dest, "\n\"%s\": []%s", field, add_trailing_comma ? "," : ""); return dest; } + const char *format_str_value_elem = add_value_quote_marks ? "\"%s\"%s" : "%s%s"; g_string_append_printf(dest, "\n\"%s\": [", field); for (unsigned int i = 0; i < g_strarray->len; ++i) { - g_string_append_printf(dest, "\"%s\"%s", + g_string_append_printf(dest, format_str_value_elem, g_array_index(g_strarray, char *, i), (i+1 < g_strarray->len) ? ", " : ""); } @@ -59,6 +72,17 @@ GString* append_field_strlist_value_garray(GString *dest, const char *field, return dest; } +GString* append_field_strlist_value_garray_strs(GString *dest, const char *field, + const GArray* g_strarray, bool add_trailing_comma) { + return append_field_value_garray_strs_base(dest, field, g_strarray, true, add_trailing_comma); +} + +GString* append_field_barelist_value_from_garray_strs(GString *dest, const char *field, + const GArray* g_strarray, + bool add_trailing_comma) { + return append_field_value_garray_strs_base(dest, field, g_strarray, false, add_trailing_comma); +} + GString* append_field_emptylist_value(GString *dest, const char *field, bool add_trailing_comma) { if (dest == NULL || field == NULL) { diff --git a/server/src/json_response_builder.h b/server/src/json_response_builder.h index efe564da..019e6203 100644 --- a/server/src/json_response_builder.h +++ b/server/src/json_response_builder.h @@ -4,11 +4,11 @@ #include #include -// Note: End of object and end of list should remove the last non-whitespace/linebreak char if it is a "," - GString* append_field_str_value(GString *dest, const char *field, const char *value_str, bool add_trailing_comma); +GString* append_field_bare_value_from_str(GString *dest, const char *field, const char *value_str, bool add_trailing_comma); GString* append_field_strlist_value(GString *dest, const char *field, const char **value_liststr, unsigned int list_len, bool add_trailing_comma); -GString* append_field_strlist_value_garray(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma); +GString* append_field_strlist_value_garray_strs(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma); +GString* append_field_barelist_value_from_garray_strs(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma); GString* append_field_emptylist_value(GString *dest, const char *field, bool add_trailing_comma); GString* append_field_bool_value(GString *dest, const char *field, bool value_bool, bool add_trailing_comma); GString* append_field_int_value(GString *dest, const char *field, int value_int, bool add_trailing_comma); From 150004a6239be1d8e9c7a0fd196894b9bf525e13 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 15 Nov 2023 10:30:34 +0100 Subject: [PATCH 005/125] adjust json format for route experiment --- api-formats/advanced/monitor_route.json | 2 +- server/src/handler_monitor.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api-formats/advanced/monitor_route.json b/api-formats/advanced/monitor_route.json index fc906a20..869ef005 100644 --- a/api-formats/advanced/monitor_route.json +++ b/api-formats/advanced/monitor_route.json @@ -9,7 +9,7 @@ "signals": ["signal36", "signal49"], "points": ["point13", "point12", "point11", "point27", "point29"], "conflicting_route_ids": [0,1,2], - "granted_conflicting_route_ids": [1], + "granted_conflicting_route_ids": ["41 (cargo_db)", "_comment: current function that computes the granted conflicting route-ids automatically adds the train that the conflict is granted to -> prevents simple numeral list ATM"], "clear": false, "granted_to_train": "" } \ No newline at end of file diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index b4768091..9b6f653f 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -652,7 +652,7 @@ GString* get_route_json(const char *data_route_id) { const GArray *granted_route_conflicts = get_granted_route_conflicts(route_id); if (granted_route_conflicts != NULL) { - append_field_barelist_value_from_garray_strs(g_route_str, "granted_conflicting_route_ids", granted_route_conflicts, true); + append_field_strlist_value_garray_strs(g_route_str, "granted_conflicting_route_ids", granted_route_conflicts, true); } else { append_field_emptylist_value(g_route_str, "granted_conflicting_route_ids", true); } From b19368b553b4ec7bac41bf5169edf5c31116a785 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Nov 2023 08:47:58 +0100 Subject: [PATCH 006/125] changed get route info to json version --- server/src/handler_monitor.c | 51 +++--------------------------------- 1 file changed, 4 insertions(+), 47 deletions(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 9b6f653f..27287c9c 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -611,11 +611,6 @@ void free_g_strarray(GArray *g_strarray) { } GString* get_route_json(const char *data_route_id) { - if (data_route_id == NULL) { - // Invalid param - syslog_server(LOG_NOTICE, "Get route JSON experiment - input param NULL"); - return NULL; - } const char *route_id = params_check_route_id(data_route_id); if (route_id == NULL || strcmp(route_id, "") == 0) { // Invalid route id @@ -628,7 +623,6 @@ GString* get_route_json(const char *data_route_id) { const t_interlocking_route *route = get_route(route_id); if (route == NULL) { pthread_mutex_unlock(&interlocker_mutex); - // Invalid route / route doesn't exist syslog_server(LOG_ERR, "Get route JSON experiment - invalid route id (route not found)"); return NULL; } @@ -663,7 +657,7 @@ GString* get_route_json(const char *data_route_id) { pthread_mutex_unlock(&interlocker_mutex); - syslog_server(LOG_NOTICE, "Get route JSON experiment - route: %s, output: \n%s", route_id, g_route_str->str); + //syslog_server(LOG_NOTICE, "Get route JSON experiment - route: %s, output: \n%s", route_id, g_route_str->str); return g_route_str; } @@ -678,48 +672,11 @@ onion_connection_status handler_get_route(void *_, onion_request *req, onion_res return OCS_NOT_IMPLEMENTED; } - ///TODO: remove - Experiment - GString* route_json = get_route_json(data_route_id); - g_string_free(route_json, true); - // End of experiment - syslog_server(LOG_INFO, "Request: Get route - route: %s", route_id); - GString *route_str = g_string_new(""); - - pthread_mutex_lock(&interlocker_mutex); - t_interlocking_route *route = get_route(route_id); - g_string_append_printf(route_str, "route id: %s\n", route->id); - g_string_append_printf(route_str, " source signal: %s\n", route->source); - g_string_append_printf(route_str, " destination signal: %s\n", route->destination); - g_string_append_printf(route_str, " orientation: %s\n", route->orientation); - g_string_append_printf(route_str, " length: %f\n", route->length); - g_string_append_printf(route_str, " path: "); - sprintf_garray_char(route_str, route->path); - g_string_append_printf(route_str, "\n sections: "); - sprintf_garray_char(route_str, route->sections); - g_string_append_printf(route_str, "\n points: "); - sprintf_garray_interlocking_point(route_str, route->points); - g_string_append_printf(route_str, "\n signals: "); - sprintf_garray_char(route_str, route->signals); - g_string_append_printf(route_str, "\n conflicting route ids: "); - sprintf_garray_char(route_str, route->conflicts); - - g_string_append_printf(route_str, "\nstatus:"); - g_string_append_printf(route_str, "\n granted conflicting route ids: "); - GArray *granted_route_conflicts = get_granted_route_conflicts(route_id); - sprintf_garray_char(route_str, granted_route_conflicts); - g_array_free(granted_route_conflicts, true); - - g_string_append_printf(route_str, "\n route clear: %s", - get_route_is_clear(route_id) ? "yes": "no"); - - g_string_append_printf(route_str, "\n granted train: %s", - route->train == NULL ? "none" : route->train); - pthread_mutex_unlock(&interlocker_mutex); - - onion_response_printf(res, "%s", route_str->str); + GString* route_json = get_route_json(data_route_id); + onion_response_printf(res, "%s", route_json->str); syslog_server(LOG_INFO, "Request: Get route - route: %s - finished", route_id); - g_string_free(route_str, true); + g_string_free(route_json, true); return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get route - system not running or wrong request type"); From 3f2c731b378241822583252206b83fa8a0c2e933 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Nov 2023 09:54:14 +0100 Subject: [PATCH 007/125] more json api --- .../advanced/monitor_granted-routes.json | 12 + api-formats/advanced/monitor_peripherals.json | 14 + api-formats/advanced/monitor_reversers.json | 12 + api-formats/advanced/monitor_segments.json | 20 + .../advanced/monitor_verification-option.json | 3 + .../advanced/monitor_verification-url.json | 3 + server/src/handler_monitor.c | 402 +++++++++++------- server/src/json_response_builder.c | 2 +- server/src/json_response_builder.h | 2 +- 9 files changed, 316 insertions(+), 154 deletions(-) create mode 100644 api-formats/advanced/monitor_granted-routes.json create mode 100644 api-formats/advanced/monitor_peripherals.json create mode 100644 api-formats/advanced/monitor_reversers.json create mode 100644 api-formats/advanced/monitor_segments.json create mode 100644 api-formats/advanced/monitor_verification-option.json create mode 100644 api-formats/advanced/monitor_verification-url.json diff --git a/api-formats/advanced/monitor_granted-routes.json b/api-formats/advanced/monitor_granted-routes.json new file mode 100644 index 00000000..6f62782a --- /dev/null +++ b/api-formats/advanced/monitor_granted-routes.json @@ -0,0 +1,12 @@ +{ + "granted-routes": [ + { + "id": 0, + "train": "cargo_db" + }, + { + "id": 99, + "train": "cargo_green" + } +] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_peripherals.json b/api-formats/advanced/monitor_peripherals.json new file mode 100644 index 00000000..a7aa5fd2 --- /dev/null +++ b/api-formats/advanced/monitor_peripherals.json @@ -0,0 +1,14 @@ +{ + "peripherals": [ + { + "id": "str", + "state-id": "str", + "state-value": 0 + }, + { + "id": "str2", + "state-id": "str2", + "state-value": 1 + } + ] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_reversers.json b/api-formats/advanced/monitor_reversers.json new file mode 100644 index 00000000..27792f03 --- /dev/null +++ b/api-formats/advanced/monitor_reversers.json @@ -0,0 +1,12 @@ +{ + "reversers": [ + { + "id": "r1", + "state": "on" + }, + { + "id": "r2", + "state": "unknown" + } + ] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_segments.json b/api-formats/advanced/monitor_segments.json new file mode 100644 index 00000000..d15fef89 --- /dev/null +++ b/api-formats/advanced/monitor_segments.json @@ -0,0 +1,20 @@ +{ + "segments": [ + { + "id": "seg1", + "occupied-by": ["cargo_db"] + }, + { + "id": "seg2", + "occupied-by": ["cargo_green"] + }, + { + "id": "seg3", + "occupied-by": [] + }, + { + "id": "seg4", + "occupied-by": ["unknown"] + } + ] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_verification-option.json b/api-formats/advanced/monitor_verification-option.json new file mode 100644 index 00000000..d3e8a1a2 --- /dev/null +++ b/api-formats/advanced/monitor_verification-option.json @@ -0,0 +1,3 @@ +{ + "verification-enabled": true +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_verification-url.json b/api-formats/advanced/monitor_verification-url.json new file mode 100644 index 00000000..8ab644df --- /dev/null +++ b/api-formats/advanced/monitor_verification-url.json @@ -0,0 +1,3 @@ +{ + "verification-url": "url" +} \ No newline at end of file diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 27287c9c..97320cce 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -42,6 +42,62 @@ #include "websocket_uploader/engine_uploader.h" #include "json_response_builder.h" + +GArray* garray_points_to_garray_str_ids(GArray *points) { + if (points == NULL) { + return NULL; + } + GArray *g_point_ids = g_array_new(FALSE, FALSE, sizeof(char *)); + + for (int i = 0; i < points->len; ++i) { + t_interlocking_point *point = &g_array_index(points, t_interlocking_point, i); + if (point != NULL) { + char *point_id_dcopy = strdup(point->id); + if (point_id_dcopy != NULL) { + g_array_append_val(g_point_ids, point_id_dcopy); + } + } + } + return g_point_ids; +} + +void free_g_strarray(GArray *g_strarray) { + if (g_strarray == NULL) { + return; + } + for (int i = 0; i < g_strarray->len; ++i) { + if (g_array_index(g_strarray, char *, i) != NULL) { + free(g_array_index(g_strarray, char *, i)); + } + } + g_array_free(g_strarray, true); + g_strarray = NULL; +} + +void sprintf_garray_char(GString *output, GArray *garray) { + if (garray->len == 0) { + g_string_append_printf(output, "none"); + return; + } + for (size_t i = 0; i < garray->len; i++) { + g_string_append_printf(output, "%s%s", + g_array_index(garray, char *, i), + i != (garray->len - 1) ? ", " : ""); + } +} + +void sprintf_garray_interlocking_point(GString *output, GArray *garray) { + if (garray->len == 0) { + g_string_append_printf(output, "none"); + return; + } + for (size_t i = 0; i < garray->len; i++) { + g_string_append_printf(output, "%s%s", + g_array_index(garray, t_interlocking_point, i).id, + i != (garray->len - 1) ? ", " : ""); + } +} + onion_connection_status handler_get_trains(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -377,35 +433,59 @@ onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, } } +GString *get_segments_json() { + t_bidib_id_list_query seg_query = bidib_get_connected_segments(); + + GString *g_segments = g_string_sized_new(48 * (seg_query.length + 1)); + g_string_assign(g_segments, ""); + append_start_of_obj(g_segments); + append_field_start_of_list(g_segments, "segments"); + + bool need_comma = false; + for (size_t i = 0; i < seg_query.length; i++) { + t_bidib_segment_state_query seg_state_query = bidib_get_segment_state(seg_query.ids[i]); + if (!need_comma) { + need_comma = true; + } else { + g_string_append_c(g_segments, ','); + } + append_start_of_obj(g_segments); + append_field_str_value(g_segments, "id", seg_query.ids[i], true); + if (seg_state_query.data.dcc_address_cnt > 0) { + append_field_start_of_list(g_segments, "occupied-by"); + + for (size_t j = 0; j < seg_state_query.data.dcc_address_cnt; j++) { + t_bidib_id_query id_query = bidib_get_train_id(seg_state_query.data.dcc_addresses[j]); + g_string_append_printf(g_segments, "%s\"%s\"", + j != 0 ? ", " : "", + id_query.known ? id_query.id : "unknown"); + bidib_free_id_query(id_query); + } + + append_end_of_list(g_segments, false); + } else { + append_field_emptylist_value(g_segments, "occupied-by", false); + } + append_end_of_obj(g_segments, false); + + bidib_free_segment_state_query(seg_state_query); + } + bidib_free_id_list_query(seg_query); + + append_end_of_list(g_segments, false); + append_end_of_obj(g_segments, false); + return g_segments; +} + onion_connection_status handler_get_segments(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_INFO, "Request: Get segments"); - GString *segments = g_string_new(""); - t_bidib_id_list_query seg_query = bidib_get_connected_segments(); - for (size_t i = 0; i < seg_query.length; i++) { - t_bidib_segment_state_query seg_state_query = bidib_get_segment_state(seg_query.ids[i]); - g_string_append_printf(segments, "%s%s - occupied: %s", - i != 0 ? "\n" : "", seg_query.ids[i], - seg_state_query.data.occupied ? "yes" : "no"); - if (seg_state_query.data.dcc_address_cnt > 0) { - g_string_append_printf(segments, " trains: "); - t_bidib_id_query id_query; - for (size_t j = 0; j < seg_state_query.data.dcc_address_cnt; j++) { - id_query = bidib_get_train_id(seg_state_query.data.dcc_addresses[j]); - g_string_append_printf(segments, "%s%s", - j != 0 ? ", " : "", - id_query.known ? id_query.id : "unknown"); - bidib_free_id_query(id_query); - } - } - bidib_free_segment_state_query(seg_state_query); - } - bidib_free_id_list_query(seg_query); + GString *g_segments = get_segments_json(); - onion_response_printf(res, "%s", segments->str); + onion_response_printf(res, "%s", g_segments->str); syslog_server(LOG_INFO, "Request: Get segments - finished"); - g_string_free(segments, true); + g_string_free(g_segments, true); return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get segments - system not running or wrong request type"); @@ -413,6 +493,56 @@ onion_connection_status handler_get_segments(void *_, onion_request *req, onion_ } } +GString *get_reversers_json() { + t_bidib_id_list_query rev_query = bidib_get_connected_reversers(); + GString *g_reversers = g_string_sized_new(48 * (rev_query.length + 1)); + //GString *g_reversers = g_string_new(""); + g_string_assign(g_reversers, ""); + + append_start_of_obj(g_reversers); + append_field_start_of_list(g_reversers, "reversers"); + + bool need_comma = false; + for (size_t i = 0; i < rev_query.length; i++) { + const char *reverser_id = rev_query.ids[i]; + t_bidib_reverser_state_query rev_state_query = bidib_get_reverser_state(reverser_id); + if (!rev_state_query.available) { + bidib_free_reverser_state_query(rev_state_query); + continue; + } + + if (!need_comma) { + need_comma = true; + } else { + if (g_reversers->str[g_reversers->len-1] == '}') { + syslog_server(LOG_WARNING, "Experiment: reverser json append comma - would be correct"); + } + g_string_append_c(g_reversers, ','); + } + + char *state_value_str = "unknown"; + switch (rev_state_query.data.state_value) { + case BIDIB_REV_EXEC_STATE_OFF: + state_value_str = "off"; + break; + case BIDIB_REV_EXEC_STATE_ON: + state_value_str = "on"; + break; + default: + state_value_str = "unknown"; + break; + } + append_start_of_obj(g_reversers); + append_field_str_value(g_reversers, "id", reverser_id, true); + append_field_str_value(g_reversers, "state", state_value_str, false); + append_end_of_obj(g_reversers, false); + + bidib_free_reverser_state_query(rev_state_query); + } + bidib_free_id_list_query(rev_query); + return g_reversers; +} + onion_connection_status handler_get_reversers(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -421,39 +551,10 @@ onion_connection_status handler_get_reversers(void *_, onion_request *req, onion syslog_server(LOG_ERR, "Request: Get reversers - unable to request state update"); return OCS_NOT_IMPLEMENTED; } - - GString *reversers = g_string_new(""); - t_bidib_id_list_query rev_query = bidib_get_connected_reversers(); - for (size_t i = 0; i < rev_query.length; i++) { - const char *reverser_id = rev_query.ids[i]; - t_bidib_reverser_state_query rev_state_query = bidib_get_reverser_state(reverser_id); - if (!rev_state_query.available) { - continue; - } - - char *state_value_str = "unknown"; - switch (rev_state_query.data.state_value) { - case BIDIB_REV_EXEC_STATE_OFF: - state_value_str = "off"; - break; - case BIDIB_REV_EXEC_STATE_ON: - state_value_str = "on"; - break; - default: - state_value_str = "unknown"; - break; - } - - g_string_append_printf(reversers, "%s%s - state: %s", - i != 0 ? "\n" : "", - reverser_id, state_value_str); - bidib_free_reverser_state_query(rev_state_query); - } - bidib_free_id_list_query(rev_query); - - onion_response_printf(res, "%s", reversers->str); + GString *g_reversers = get_reversers_json(); + onion_response_printf(res, "%s", g_reversers->str); syslog_server(LOG_INFO, "Request: Get reversers - finished"); - g_string_free(reversers, true); + g_string_free(g_reversers, true); return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get reversers - system not running or wrong request type"); @@ -461,26 +562,54 @@ onion_connection_status handler_get_reversers(void *_, onion_request *req, onion } } +GString *get_peripherals_json() { + // Trying out ways of estimating size. The +1 is there to avoid size 0 if query length is 0. + t_bidib_id_list_query per_query = bidib_get_connected_peripherals(); + GString *g_peripherals = g_string_sized_new(48 * (per_query.length + 1)); + g_string_assign(g_peripherals, ""); + append_start_of_obj(g_peripherals); + append_field_start_of_list(g_peripherals, "peripherals"); + + bool need_comma = false; + for (size_t i = 0; i < per_query.length; i++) { + t_bidib_peripheral_state_query per_state_query = bidib_get_peripheral_state(per_query.ids[i]); + if (!per_state_query.available) { + bidib_free_peripheral_state_query(per_state_query); + syslog_server(LOG_WARNING, + "Get pheripherals json - peripheral %s not available", + per_query.ids[i]); + continue; + } + if (!need_comma) { + need_comma = true; + } else { + g_string_append_c(g_peripherals, ','); + } + + append_start_of_obj(g_peripherals); + append_field_str_value(g_peripherals, "id", per_query.ids[i], true); + append_field_str_value(g_peripherals, "state-id", per_state_query.data.state_id, true); + ///TODO: Check if this works correctly; data.state_value is uint8, not unsigned int. + append_field_uint_value(g_peripherals, "state-value", per_state_query.data.state_value, false); + append_end_of_obj(g_peripherals, false); + bidib_free_peripheral_state_query(per_state_query); + } + bidib_free_id_list_query(per_query); + + append_end_of_list(g_peripherals, false); + append_end_of_obj(g_peripherals, false); + + return g_peripherals; +} + onion_connection_status handler_get_peripherals(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_INFO, "Request: Get peripherals"); - GString *peripherals = g_string_new(""); - t_bidib_id_list_query per_query = bidib_get_connected_peripherals(); - for (size_t i = 0; i < per_query.length; i++) { - t_bidib_peripheral_state_query per_state_query = - bidib_get_peripheral_state(per_query.ids[i]); - g_string_append_printf(peripherals, "%s%s - %s: %d", - i != 0 ? "\n" : "", per_query.ids[i], - per_state_query.data.state_id, - per_state_query.data.state_value); - bidib_free_peripheral_state_query(per_state_query); - } - bidib_free_id_list_query(per_query); - - onion_response_printf(res, "%s", peripherals->str); + GString *g_peripherals = get_peripherals_json(); + onion_response_printf(res, "%s", g_peripherals->str); syslog_server(LOG_INFO, "Request: Get peripherals - finished"); - g_string_free(peripherals, true); + g_string_free(g_peripherals, true); return OCS_PROCESSED; } else { syslog_server(LOG_ERR, @@ -493,7 +622,7 @@ onion_connection_status handler_get_verification_option(void *_, onion_request * onion_response *res) { build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_GET) { - onion_response_printf(res, "verification-enabled: %s", + onion_response_printf(res, "{\n\"verification-enabled\": %s\n}", verification_enabled ? "true" : "false"); syslog_server(LOG_INFO, "Request: Get verification option - done"); return OCS_PROCESSED; @@ -508,7 +637,10 @@ onion_connection_status handler_get_verification_url(void *_, onion_request *req build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_GET) { const char *verif_url = get_verifier_url(); - onion_response_printf(res, "verification-url: %s", verif_url == NULL ? "null" : verif_url); + onion_response_printf(res, + "{\n\"verification-url\": \"%s\"\n}", + verif_url == NULL ? "null" : verif_url); + syslog_server(LOG_INFO, "Request: Get verification url - done"); return OCS_PROCESSED; } else { @@ -517,33 +649,57 @@ onion_connection_status handler_get_verification_url(void *_, onion_request *req } } +GString* get_granted_routes_json() { + ///TODO: test - sized new could be nice to avoid reallocs, but now how do initialize the string? + // maybe just with g_string_assign? + GString *g_granted_routes = g_string_sized_new(256); + g_string_assign(g_granted_routes, ""); + + // Old "normal" way without sized new + //GString *g_granted_routes = g_string_new(""); + + append_start_of_obj(g_granted_routes); + append_field_start_of_list(g_granted_routes, "granted-routes"); + + pthread_mutex_lock(&interlocker_mutex); + GArray *route_ids = interlocking_table_get_all_route_ids(); + + bool need_comma = false; + if (route_ids != NULL) { + for (size_t i = 0; i < route_ids->len; i++) { + const char *route_id = g_array_index(route_ids, char *, i); + if (route_id != NULL) { + t_interlocking_route *route = get_route(route_id); + if (route != NULL && route->train != NULL) { + if (!need_comma) { + need_comma = true; + } else { + // Add comma to end of prev. object + g_string_append_c(g_granted_routes, ','); + } + append_start_of_obj(g_granted_routes); + append_field_bare_value_from_str(g_granted_routes, "id", route->id, true); + append_field_str_value(g_granted_routes, "train", route->train, false); + append_end_of_obj(g_granted_routes, false); + } + } + } + g_array_free(route_ids, true); + } + pthread_mutex_unlock(&interlocker_mutex); + + append_end_of_list(g_granted_routes, false); + append_end_of_obj(g_granted_routes, false); + + return g_granted_routes; +} + onion_connection_status handler_get_granted_routes(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_INFO, "Request: Get granted routes"); - bool needNewLine = false; - GString *granted_routes = g_string_new(""); - GArray *route_ids = interlocking_table_get_all_route_ids(); - if (route_ids != NULL) { - for (size_t i = 0; i < route_ids->len; i++) { - const char *route_id = g_array_index(route_ids, char *, i); - if (route_id != NULL) { - t_interlocking_route *route = get_route(route_id); - if (route != NULL && route->train != NULL) { - g_string_append_printf(granted_routes, "%sroute id: %s train: %s", - needNewLine ? "\n" : "", route->id, route->train); - needNewLine = true; - } - } - } - g_array_free(route_ids, true); - } - - if (strcmp(granted_routes->str, "") == 0) { - g_string_append_printf(granted_routes, "No granted routes"); - } - + GString *granted_routes = get_granted_routes_json(); onion_response_printf(res, "%s", granted_routes->str); syslog_server(LOG_INFO, "Request: Get granted routes - finished"); g_string_free(granted_routes, true); @@ -555,61 +711,6 @@ onion_connection_status handler_get_granted_routes(void *_, onion_request *req, } } -void sprintf_garray_char(GString *output, GArray *garray) { - if (garray->len == 0) { - g_string_append_printf(output, "none"); - return; - } - for (size_t i = 0; i < garray->len; i++) { - g_string_append_printf(output, "%s%s", - g_array_index(garray, char *, i), - i != (garray->len - 1) ? ", " : ""); - } -} - -void sprintf_garray_interlocking_point(GString *output, GArray *garray) { - if (garray->len == 0) { - g_string_append_printf(output, "none"); - return; - } - for (size_t i = 0; i < garray->len; i++) { - g_string_append_printf(output, "%s%s", - g_array_index(garray, t_interlocking_point, i).id, - i != (garray->len - 1) ? ", " : ""); - } -} - -GArray* garray_points_to_garray_str_ids(GArray *points) { - if (points == NULL) { - return NULL; - } - GArray *g_point_ids = g_array_new(FALSE, FALSE, sizeof(char *)); - - for (int i = 0; i < points->len; ++i) { - t_interlocking_point *point = &g_array_index(points, t_interlocking_point, i); - if (point != NULL) { - char *point_id_dcopy = strdup(point->id); - if (point_id_dcopy != NULL) { - g_array_append_val(g_point_ids, point_id_dcopy); - } - } - } - return g_point_ids; -} - -void free_g_strarray(GArray *g_strarray) { - if (g_strarray == NULL) { - return; - } - for (int i = 0; i < g_strarray->len; ++i) { - if (g_array_index(g_strarray, char *, i) != NULL) { - free(g_array_index(g_strarray, char *, i)); - } - } - g_array_free(g_strarray, true); - g_strarray = NULL; -} - GString* get_route_json(const char *data_route_id) { const char *route_id = params_check_route_id(data_route_id); if (route_id == NULL || strcmp(route_id, "") == 0) { @@ -656,9 +757,6 @@ GString* get_route_json(const char *data_route_id) { append_end_of_obj(g_route_str, false); pthread_mutex_unlock(&interlocker_mutex); - - //syslog_server(LOG_NOTICE, "Get route JSON experiment - route: %s, output: \n%s", route_id, g_route_str->str); - return g_route_str; } diff --git a/server/src/json_response_builder.c b/server/src/json_response_builder.c index 3d4dbede..1fc920a1 100644 --- a/server/src/json_response_builder.c +++ b/server/src/json_response_builder.c @@ -157,7 +157,7 @@ GString* append_end_of_list(GString *dest, bool add_trailing_comma) { return dest; } -GString* append_field_with_start_of_obj(GString *dest, const char *field) { +GString* append_field_start_of_obj(GString *dest, const char *field) { if (dest == NULL || field == NULL) { return NULL; } diff --git a/server/src/json_response_builder.h b/server/src/json_response_builder.h index 019e6203..0a63c7a1 100644 --- a/server/src/json_response_builder.h +++ b/server/src/json_response_builder.h @@ -19,6 +19,6 @@ GString* append_field_start_of_list(GString *dest, const char *field); GString* append_start_of_list(GString *dest); GString* append_end_of_list(GString *dest, bool add_trailing_comma); -GString* append_field_with_start_of_obj(GString *dest, const char *field); +GString* append_field_start_of_obj(GString *dest, const char *field); GString* append_start_of_obj(GString *dest); GString* append_end_of_obj(GString *dest, bool add_trailing_comma); \ No newline at end of file From c8d1e19cf7fbfc67377d4919d34bf4c0c5bd510b Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Nov 2023 14:39:28 +0100 Subject: [PATCH 008/125] json api for current monitor endpoints --- .../advanced/monitor_point-aspects.json | 3 + api-formats/advanced/monitor_points.json | 23 + .../advanced/monitor_signal-aspects.json | 3 + .../advanced/monitor_track-outputs.json | 40 ++ .../advanced/monitor_train-peripherals.json | 20 + api-formats/advanced/monitor_train-state.json | 12 +- server/src/handler_monitor.c | 632 ++++++++++-------- server/src/interlocking.c | 27 + server/src/interlocking.h | 21 +- server/src/json_response_builder.c | 24 +- server/src/json_response_builder.h | 5 +- 11 files changed, 498 insertions(+), 312 deletions(-) create mode 100644 api-formats/advanced/monitor_point-aspects.json create mode 100644 api-formats/advanced/monitor_points.json create mode 100644 api-formats/advanced/monitor_signal-aspects.json create mode 100644 api-formats/advanced/monitor_track-outputs.json create mode 100644 api-formats/advanced/monitor_train-peripherals.json diff --git a/api-formats/advanced/monitor_point-aspects.json b/api-formats/advanced/monitor_point-aspects.json new file mode 100644 index 00000000..48fc130e --- /dev/null +++ b/api-formats/advanced/monitor_point-aspects.json @@ -0,0 +1,3 @@ +{ + "aspects": ["normal", "reverse"] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_points.json b/api-formats/advanced/monitor_points.json new file mode 100644 index 00000000..5773fd6f --- /dev/null +++ b/api-formats/advanced/monitor_points.json @@ -0,0 +1,23 @@ +{ + "points": [ + { + "id": "point1", + "state": "normal", + "target_state_reached": false + }, + { + "id": "point2", + "state": "normal", + "target_state_reached": true + }, + { + "id": "point3", + "state": "reverse", + "target_state_reached": true + }, + { + "id": "point4", + "state": "reverse" + } + ] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_signal-aspects.json b/api-formats/advanced/monitor_signal-aspects.json new file mode 100644 index 00000000..4b7a5109 --- /dev/null +++ b/api-formats/advanced/monitor_signal-aspects.json @@ -0,0 +1,3 @@ +{ + "aspects": ["aspect_go", "aspect_stop"] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_track-outputs.json b/api-formats/advanced/monitor_track-outputs.json new file mode 100644 index 00000000..e037441f --- /dev/null +++ b/api-formats/advanced/monitor_track-outputs.json @@ -0,0 +1,40 @@ +{ + "track-outputs": [ + { + "id": "master", + "state": "off" + }, + { + "id": "more1", + "state": "stop" + }, + { + "id": "more2", + "state": "soft stop" + }, + { + "id": "more3", + "state": "go" + }, + { + "id": "more4", + "state": "go + ignore watchdog" + }, + { + "id": "more5", + "state": "prog" + }, + { + "id": "more6", + "state": "prog busy" + }, + { + "id": "more7", + "state": "busy" + }, + { + "id": "more8", + "state": "query" + } + ] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_train-peripherals.json b/api-formats/advanced/monitor_train-peripherals.json new file mode 100644 index 00000000..3d971961 --- /dev/null +++ b/api-formats/advanced/monitor_train-peripherals.json @@ -0,0 +1,20 @@ +{ + "peripherals": [ + { + "id": "peripheralID1", + "state": "on" + }, + { + "id": "peripheralID2", + "state": "off" + }, + { + "id": "peripheralID3", + "state": "something-else" + }, + { + "id": "peripheralID4", + "state": "unknown" + } + ] +} \ No newline at end of file diff --git a/api-formats/advanced/monitor_train-state.json b/api-formats/advanced/monitor_train-state.json index 5501be49..12c90709 100644 --- a/api-formats/advanced/monitor_train-state.json +++ b/api-formats/advanced/monitor_train-state.json @@ -1,12 +1,12 @@ { "id": "cargo_db", "grabbed": true, - "on_track": true, - "occupied_segments": ["seg1", "seg2"], - "occupied_blocks": ["block1"], - "orientation(?)": "left", + "orientation": "left", "direction": "forwards", "speed_step": 10, - "detected_speed_kmh": 2, - "route_id": -1 + "detected_kmh_speed": 2, + "route_id": -1, + "on_track": true, + "occupied_segments": ["seg1", "seg2"], + "occupied_blocks": ["block1"] } \ No newline at end of file diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 97320cce..3d79a05c 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -98,21 +98,40 @@ void sprintf_garray_interlocking_point(GString *output, GArray *garray) { } } +GString *get_trains_json() { + t_bidib_id_list_query query = bidib_get_trains(); + GString *g_trains = g_string_sized_new(72 * (query.length + 1)); + g_string_assign(g_trains, ""); + + append_start_of_obj(g_trains, false); + append_field_start_of_list(g_trains, "trains"); + + for (size_t i = 0; i < query.length; i++) { + append_start_of_obj(g_trains, true); + + append_field_str_value(g_trains, "id", query.ids[i], true); + append_field_bool_value(g_trains, "grabbed", train_grabbed(query.ids[i]), true); + + t_bidib_train_position_query train_position_query = bidib_get_train_position(query.ids[i]); + append_field_bool_value(g_trains, "on_track", train_position_query.length > 0, false); + bidib_free_train_position_query(train_position_query); + + append_end_of_obj(g_trains, i+1 < query.length); + } + append_end_of_list(g_trains, false, query.length > 0); + append_end_of_obj(g_trains, false); + bidib_free_id_list_query(query); + return g_trains; +} + onion_connection_status handler_get_trains(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_INFO, "Request: Get available trains"); - GString *trains = g_string_new(""); - t_bidib_id_list_query query = bidib_get_trains(); - for (size_t i = 0; i < query.length; i++) { - g_string_append_printf(trains, "%s%s - grabbed: %s", - i != 0 ? "\n" : "", query.ids[i], - train_grabbed(query.ids[i]) ? "yes" : "no"); - } - bidib_free_id_list_query(query); - onion_response_printf(res, "%s", trains->str); + GString *g_trains = get_trains_json(); + onion_response_printf(res, "%s", g_trains->str); syslog_server(LOG_INFO, "Request: Get available trains - finished"); - g_string_free(trains, true); + g_string_free(g_trains, true); return OCS_PROCESSED; } else { syslog_server(LOG_ERR, @@ -121,6 +140,69 @@ onion_connection_status handler_get_trains(void *_, onion_request *req, onion_re } } +GString *get_train_state_json(const char *data_train) { + if (data_train == NULL) { + ///TODO: Discuss what to return (NULL or empty string? Or "empty" JSON?) + return g_string_new(""); + } + + t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); + if (!train_state_query.known) { + bidib_free_train_state_query(train_state_query); + ///TODO: Discuss what to return (NULL or empty str? Or "empty" JSON, or containing err msg?) + return g_string_new(""); + } + + GString *g_train_state = g_string_sized_new(384); + g_string_assign(g_train_state, ""); + append_start_of_obj(g_train_state, false); + append_field_str_value(g_train_state, "id", data_train, true); + append_field_bool_value(g_train_state, "grabbed", train_grabbed(data_train), true); + const char *orientation_str = (train_state_query.data.orientation == + BIDIB_TRAIN_ORIENTATION_LEFT) ? + "left" : "right"; + append_field_str_value(g_train_state, "orientation", orientation_str, true); + const char *direction_str = train_state_query.data.set_is_forwards ? "forwards" : "backwards"; + append_field_str_value(g_train_state, "direction", direction_str, true); + + append_field_int_value(g_train_state, "speed_step", train_state_query.data.set_speed_step, true); + append_field_int_value(g_train_state, "detected_kmh_speed", train_state_query.data.detected_kmh_speed, true); + + bidib_free_train_state_query(train_state_query); + + pthread_mutex_lock(&interlocker_mutex); + int route_id = interlocking_table_get_route_id_of_train(data_train); + pthread_mutex_unlock(&interlocker_mutex); + append_field_int_value(g_train_state, "route_id", route_id, true); + + t_bidib_train_position_query train_position_query = bidib_get_train_position(data_train); + + append_field_bool_value(g_train_state, "on_track", train_position_query.length > 0, true); + if (train_position_query.length > 0) { + // two passes likely needed, one for segments, one for blocks. + append_field_strlist_value(g_train_state, "occupied_segments", + (const char **) train_position_query.segments, + train_position_query.length, true); + + append_field_start_of_list(g_train_state, "occupied_blocks"); + int added_blocks = 0; + for (size_t i = 0; i < train_position_query.length; i++) { + const char *block_id = config_get_block_id_of_segment(train_position_query.segments[i]); + // only add block if it does not already exist in the list (and thus in g_train_state) + if (block_id != NULL && strstr(g_train_state->str, block_id) == NULL) { + g_string_printf(g_train_state, "%s\"%s\"", added_blocks > 0 ? ", " : "", block_id); + ++added_blocks; + } + } + append_end_of_list(g_train_state, false, added_blocks > 0); + } + + bidib_free_train_position_query(train_position_query); + + append_end_of_obj(g_train_state, false); + return g_train_state; +} + onion_connection_status handler_get_train_state(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -131,55 +213,17 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni } syslog_server(LOG_INFO, "Request: Get train state - train: %s", data_train); - t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); - t_bidib_train_position_query train_position_query = bidib_get_train_position(data_train); - - if (train_state_query.known) { - GString *seg_string = g_string_new("no"); - GString *block_string = g_string_new("no"); - if (train_position_query.length > 0) { - g_string_printf(seg_string, "%s", train_position_query.segments[0]); - for (size_t i = 1; i < train_position_query.length; i++) { - g_string_append_printf(seg_string, ", %s", train_position_query.segments[i]); - } - for (size_t i = 0; i < train_position_query.length; i++) { - const char *block_id = - config_get_block_id_of_segment(train_position_query.segments[i]); - if (block_id != NULL) { - g_string_printf(block_string, "%s", block_id); - break; - } - } - } - bidib_free_train_position_query(train_position_query); - - GString *ret_string = g_string_new(""); - g_string_append_printf(ret_string, "grabbed: %s - on segment: %s - on block: %s" - " - orientation: %s" - " - speed step: %d - detected speed: %d km/h - direction: %s", - train_grabbed(data_train) ? "yes" : "no", - seg_string->str, - block_string->str, - (train_state_query.data.orientation == - BIDIB_TRAIN_ORIENTATION_LEFT) ? - "left" : "right", - train_state_query.data.set_speed_step, - train_state_query.data.detected_kmh_speed, - train_state_query.data.set_is_forwards - ? "forwards" : "backwards"); - bidib_free_train_state_query(train_state_query); - onion_response_printf(res, "%s", ret_string->str); - syslog_server(LOG_INFO, "Request: Get train state - train: %s - finished", data_train); - g_string_free(seg_string, true); - g_string_free(ret_string, true); - return OCS_PROCESSED; - } else { - bidib_free_train_position_query(train_position_query); - bidib_free_train_state_query(train_state_query); + GString *ret_string = get_train_state_json(data_train); + if (ret_string == NULL || ret_string->len == 0) { syslog_server(LOG_ERR, "Request: Get train state - train: %s - invalid train", data_train); return OCS_NOT_IMPLEMENTED; + } else { + onion_response_printf(res, "%s", ret_string->str); + syslog_server(LOG_INFO, "Request: Get train state - train: %s - finished", data_train); + g_string_free(ret_string, true); + return OCS_PROCESSED; } } else { syslog_server(LOG_ERR, "Request: Get train state - system not running or wrong request type"); @@ -187,6 +231,42 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni } } +///TODO: Discuss, change in behaviour: train with no peripherals now does not lead to an error. +GString *get_train_peripherals_json(const char *data_train) { + if (data_train == NULL) { + ///TODO: Discuss what to return (NULL or empty string? Or "empty" JSON?) + return g_string_new(""); + } + + t_bidib_id_list_query query = bidib_get_train_peripherals(data_train); + GString *g_train_peripherals = g_string_sized_new(64 * (query.length + 1)); + g_string_assign(g_train_peripherals, ""); + + append_start_of_obj(g_train_peripherals, false); + append_field_start_of_list(g_train_peripherals, "peripherals"); + + for (size_t i = 0; i < query.length; i++) { + t_bidib_train_peripheral_state_query train_peripheral_state = + bidib_get_train_peripheral_state(data_train, query.ids[i]); + char *state_string; + if (train_peripheral_state.available) { + state_string = train_peripheral_state.state == 1 ? "on" : "off"; + } else { + state_string = "unknown"; + } + + append_start_of_obj(g_train_peripherals, true); + append_field_str_value(g_train_peripherals, "id", query.ids[i], true); + append_field_str_value(g_train_peripherals, "state", state_string, false); + append_end_of_obj(g_train_peripherals, i+1 < query.length); + } + + append_end_of_list(g_train_peripherals, false, query.length > 0); + append_end_of_obj(g_train_peripherals, false); + bidib_free_id_list_query(query); + return g_train_peripherals; +} + onion_connection_status handler_get_train_peripherals(void *_, onion_request *req, onion_response *res) { build_response_header(res); @@ -198,31 +278,14 @@ onion_connection_status handler_get_train_peripherals(void *_, onion_request *re } syslog_server(LOG_INFO, "Request: Get train peripherals - train: %s", data_train); - t_bidib_id_list_query query = bidib_get_train_peripherals(data_train); - if (query.length > 0) { - GString *train_peripherals = g_string_new(""); - for (size_t i = 0; i < query.length; i++) { - t_bidib_train_peripheral_state_query per_state = - bidib_get_train_peripheral_state(data_train, query.ids[i]); - g_string_append_printf(train_peripherals, "%s%s - state: %s", - i != 0 ? "\n" : "", query.ids[i], - per_state.state == 1 ? "on" : "off"); - } - bidib_free_id_list_query(query); - - onion_response_printf(res, "%s", train_peripherals->str); - syslog_server(LOG_INFO, - "Request: Get train peripherals - train: %s - finished", - data_train); - g_string_free(train_peripherals, true); - return OCS_PROCESSED; - } else { - bidib_free_id_list_query(query); - syslog_server(LOG_ERR, - "Request: Get train train peripherals - train: %s - invalid train", - data_train); - return OCS_NOT_IMPLEMENTED; - } + GString *g_train_peripherals = get_train_peripherals_json(data_train); + onion_response_printf(res, "%s", g_train_peripherals->str); + syslog_server(LOG_INFO, + "Request: Get train peripherals - train: %s - finished", + data_train); + g_string_free(g_train_peripherals, true); + return OCS_PROCESSED; + } else { syslog_server(LOG_ERR, "Request: Get train peripherals - system not running or wrong request type"); @@ -230,60 +293,57 @@ onion_connection_status handler_get_train_peripherals(void *_, onion_request *re } } +GString *get_track_outputs_json() { + t_bidib_id_list_query query = bidib_get_track_outputs(); + GString *g_track_outputs = g_string_sized_new(48 * (query.length + 1)); + + g_string_assign(g_track_outputs, ""); + append_start_of_obj(g_track_outputs, false); + append_field_start_of_list(g_track_outputs, "track-outputs"); + + int track_outputs_added = 0; + for (size_t i = 0; i < query.length; i++) { + t_bidib_track_output_state_query track_output_state_query = + bidib_get_track_output_state(query.ids[i]); + if (track_output_state_query.known) { + char *state_string; + switch (track_output_state_query.cs_state) { + case 0x00: state_string = "off"; break; + case 0x01: state_string = "stop"; break; + case 0x02: state_string = "soft stop"; break; + case 0x03: state_string = "go"; break; + case 0x04: state_string = "go + ignore watchdog"; break; + case 0x08: state_string = "prog"; break; + case 0x09: state_string = "prog busy"; break; + case 0x0D: state_string = "busy"; break; + case 0xFF: state_string = "query"; break; + default: state_string = "off"; break; + } + if (track_outputs_added++ > 0) { + g_string_append_c(g_track_outputs, ','); + } + append_start_of_obj(g_track_outputs, true); + append_field_str_value(g_track_outputs, "id", query.ids[i], true); + append_field_str_value(g_track_outputs, "state", state_string, false); + append_end_of_obj(g_track_outputs, false); + } + } + bidib_free_id_list_query(query); + + append_end_of_list(g_track_outputs, false, track_outputs_added > 0); + append_end_of_obj(g_track_outputs, false); + return g_track_outputs; +} + onion_connection_status handler_get_track_outputs(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_INFO, "Request: Get track outputs"); - GString *track_outputs = g_string_new(""); - t_bidib_id_list_query query = bidib_get_track_outputs(); - for (size_t i = 0; i < query.length; i++) { - t_bidib_track_output_state_query track_output_state = - bidib_get_track_output_state(query.ids[i]); - if (track_output_state.known) { - char *state_string; - switch (track_output_state.cs_state) { - case 0x00: - state_string = "off"; - break; - case 0x01: - state_string = "stop"; - break; - case 0x02: - state_string = "soft stop"; - break; - case 0x03: - state_string = "go"; - break; - case 0x04: - state_string = "go + ignore watchdog"; - break; - case 0x08: - state_string = "prog"; - break; - case 0x09: - state_string = "prog busy"; - break; - case 0x0D: - state_string = "busy"; - break; - case 0xFF: - state_string = "query"; - break; - default: - state_string = "off"; - break; - } - g_string_append_printf(track_outputs, "%s%s - state: %s", - i != 0 ? "\n" : "", query.ids[i], - state_string); - } - } - bidib_free_id_list_query(query); - - onion_response_printf(res, "%s", track_outputs->str); + GString *g_track_outputs = get_track_outputs_json(); + onion_response_printf(res, "%s", g_track_outputs->str); syslog_server(LOG_INFO, "Request: Get track outputs - finished"); - g_string_free(track_outputs, true); + g_string_free(g_track_outputs, true); return OCS_PROCESSED; } else { syslog_server(LOG_ERR, @@ -292,35 +352,55 @@ onion_connection_status handler_get_track_outputs(void *_, onion_request *req, } } +GString *get_accessory_json(bool point_accessories) { + t_bidib_id_list_query query; + if (point_accessories) { + query = bidib_get_connected_points(); + } else { + query = bidib_get_connected_signals(); + } + GString *g_accs = g_string_sized_new(64 * (query.length + 1)); + g_string_assign(g_accs, ""); + append_start_of_obj(g_accs, false); + append_field_start_of_list(g_accs, point_accessories ? "points" : "signals"); + + for (size_t i = 0; i < query.length; i++) { + t_bidib_unified_accessory_state_query acc_state = + point_accessories ? bidib_get_point_state(query.ids[i]) : bidib_get_signal_state(query.ids[i]); + + append_start_of_obj(g_accs, true); + append_field_str_value(g_accs, "id", query.ids[i], true); + append_field_str_value(g_accs, "state", + acc_state.type == BIDIB_ACCESSORY_BOARD ? + acc_state.board_accessory_state.state_id : + acc_state.dcc_accessory_state.state_id, + (!point_accessories || acc_state.type != BIDIB_ACCESSORY_BOARD)); + if (point_accessories && acc_state.type == BIDIB_ACCESSORY_BOARD) { + append_field_bool_value(g_accs, "target_state_reached", + acc_state.board_accessory_state.execution_state, false); + } else if (!point_accessories) { + append_field_str_value(g_accs, "type", + config_get_scalar_string_value("signal", query.ids[i], "type"), + false); + } + append_end_of_obj(g_accs, i+1 < query.length); + bidib_free_unified_accessory_state_query(acc_state); + } + append_end_of_list(g_accs, false, query.length > 0); + append_end_of_obj(g_accs, false); + + bidib_free_id_list_query(query); + return g_accs; +} + onion_connection_status handler_get_points(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_INFO, "Request: Get points"); - GString *points = g_string_new(""); - t_bidib_id_list_query query = bidib_get_connected_points(); - for (size_t i = 0; i < query.length; i++) { - t_bidib_unified_accessory_state_query point_state = bidib_get_point_state(query.ids[i]); - - GString *execution_state = g_string_new(""); - if (point_state.type == BIDIB_ACCESSORY_BOARD) { - g_string_printf(execution_state, "(target state%s reached)", - point_state.board_accessory_state.execution_state ? " not" : ""); - } - - g_string_append_printf(points, "%s%s - state: %s %s", - i != 0 ? "\n" : "", query.ids[i], - point_state.type == BIDIB_ACCESSORY_BOARD ? - point_state.board_accessory_state.state_id : - point_state.dcc_accessory_state.state_id, - execution_state->str); - g_string_free(execution_state, true); - bidib_free_unified_accessory_state_query(point_state); - } - bidib_free_id_list_query(query); - - onion_response_printf(res, "%s", points->str); + GString *g_points = get_accessory_json(true); + onion_response_printf(res, "%s", g_points->str); syslog_server(LOG_INFO, "Request: Get points - finished"); - g_string_free(points, true); + g_string_free(g_points, true); return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get points - system not running or wrong request type"); @@ -332,23 +412,10 @@ onion_connection_status handler_get_signals(void *_, onion_request *req, onion_r build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_INFO, "Request: Get signals"); - GString *signals = g_string_new(""); - t_bidib_id_list_query query = bidib_get_connected_signals(); - for (size_t i = 0; i < query.length; i++) { - t_bidib_unified_accessory_state_query signal_state = - bidib_get_signal_state(query.ids[i]); - g_string_append_printf(signals, "%s%s - state: %s", - i != 0 ? "\n" : "", query.ids[i], - signal_state.type == BIDIB_ACCESSORY_BOARD ? - signal_state.board_accessory_state.state_id : - signal_state.dcc_accessory_state.state_id); - bidib_free_unified_accessory_state_query(signal_state); - } - bidib_free_id_list_query(query); - - onion_response_printf(res, "%s", signals->str); + GString *g_signals = get_accessory_json(false); + onion_response_printf(res, "%s", g_signals->str); syslog_server(LOG_INFO, "Request: Get signals - finished"); - g_string_free(signals, true); + g_string_free(g_signals, true); return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get signals - system not running or wrong request type"); @@ -356,6 +423,36 @@ onion_connection_status handler_get_signals(void *_, onion_request *req, onion_r } } +GString *get_accessory_aspects_json(const char *data_id, bool is_point) { + if (data_id == NULL) { + ///TODO: Discuss ret val + return g_string_new(""); + } + t_bidib_id_list_query query; + if (is_point) { + query = bidib_get_point_aspects(data_id); + } else { + query = bidib_get_signal_aspects(data_id); + } + + if (query.length <= 0 || query.ids == NULL) { + ///TODO: Discuss ret val + return g_string_new(""); + } + + GString *g_aspects = g_string_sized_new(query.length * 16); + g_string_assign(g_aspects, ""); + append_start_of_obj(g_aspects, false); + append_field_start_of_list(g_aspects, "aspects"); + + for (size_t i = 0; i < query.length; i++) { + g_string_append_printf(g_aspects, "%s\"%s\"", i != 0 ? ", " : "", query.ids[i]); + } + append_end_of_list(g_aspects, false, query.length > 0); + append_end_of_obj(g_aspects, false); + bidib_free_id_list_query(query); + return g_aspects; +} onion_connection_status handler_get_point_aspects(void *_, onion_request *req, onion_response *res) { @@ -368,24 +465,17 @@ onion_connection_status handler_get_point_aspects(void *_, onion_request *req, } syslog_server(LOG_INFO, "Request: Get point aspects - point: %s", data_point); - t_bidib_id_list_query query = bidib_get_point_aspects(data_point); - if (query.length > 0) { - GString *aspects = g_string_new(""); - for (size_t i = 0; i < query.length; i++) { - g_string_append_printf(aspects, "%s%s", i != 0 ? ", " : "", query.ids[i]); - } - bidib_free_id_list_query(query); - - onion_response_printf(res, "%s", aspects->str); - syslog_server(LOG_INFO, "Request: Get point aspects - point: %s - finished", data_point); - g_string_free(aspects, true); - return OCS_PROCESSED; - } else { - bidib_free_id_list_query(query); + GString *g_aspects = get_accessory_aspects_json(data_point, true); + if (g_aspects == NULL || g_aspects->len <= 0) { syslog_server(LOG_ERR, "Request: Get point aspects - point: %s - invalid point", data_point); return OCS_NOT_IMPLEMENTED; + } else { + onion_response_printf(res, "%s", g_aspects->str); + syslog_server(LOG_INFO, "Request: Get point aspects - point: %s - finished", data_point); + g_string_free(g_aspects, true); + return OCS_PROCESSED; } } else { syslog_server(LOG_ERR, @@ -405,26 +495,19 @@ onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, } syslog_server(LOG_INFO, "Request: Get signal aspects - signal: %s", data_signal); - t_bidib_id_list_query query = bidib_get_signal_aspects(data_signal); - if (query.length > 0) { - GString *aspects = g_string_new(""); - for (size_t i = 0; i < query.length; i++) { - g_string_append_printf(aspects, "%s%s", i != 0 ? ", " : "", query.ids[i]); - } - bidib_free_id_list_query(query); - - onion_response_printf(res, "%s", aspects->str); - syslog_server(LOG_INFO, - "Request: Get signal aspects - signal: %s - finished", - data_signal); - g_string_free(aspects, true); - return OCS_PROCESSED; - } else { - bidib_free_id_list_query(query); + GString *g_aspects = get_accessory_aspects_json(data_signal, false); + if (g_aspects == NULL || g_aspects->len <= 0) { syslog_server(LOG_ERR, "Request: Get signal aspects - signal: %s - invalid signal", data_signal); return OCS_NOT_IMPLEMENTED; + } else { + onion_response_printf(res, "%s", g_aspects->str); + syslog_server(LOG_INFO, + "Request: Get signal aspects - signal: %s - finished", + data_signal); + g_string_free(g_aspects, true); + return OCS_PROCESSED; } } else { syslog_server(LOG_ERR, @@ -438,41 +521,37 @@ GString *get_segments_json() { GString *g_segments = g_string_sized_new(48 * (seg_query.length + 1)); g_string_assign(g_segments, ""); - append_start_of_obj(g_segments); + append_start_of_obj(g_segments, false); append_field_start_of_list(g_segments, "segments"); - bool need_comma = false; + int added_segments = 0; for (size_t i = 0; i < seg_query.length; i++) { t_bidib_segment_state_query seg_state_query = bidib_get_segment_state(seg_query.ids[i]); - if (!need_comma) { - need_comma = true; - } else { + if (added_segments++ > 0) { g_string_append_c(g_segments, ','); } - append_start_of_obj(g_segments); + append_start_of_obj(g_segments, true); append_field_str_value(g_segments, "id", seg_query.ids[i], true); - if (seg_state_query.data.dcc_address_cnt > 0) { - append_field_start_of_list(g_segments, "occupied-by"); - - for (size_t j = 0; j < seg_state_query.data.dcc_address_cnt; j++) { - t_bidib_id_query id_query = bidib_get_train_id(seg_state_query.data.dcc_addresses[j]); - g_string_append_printf(g_segments, "%s\"%s\"", - j != 0 ? ", " : "", - id_query.known ? id_query.id : "unknown"); - bidib_free_id_query(id_query); - } + + append_field_start_of_list(g_segments, "occupied-by"); + for (size_t j = 0; j < seg_state_query.data.dcc_address_cnt; j++) { + t_bidib_id_query id_query = bidib_get_train_id(seg_state_query.data.dcc_addresses[j]); - append_end_of_list(g_segments, false); - } else { - append_field_emptylist_value(g_segments, "occupied-by", false); + g_string_append_printf(g_segments, "%s\"%s\"", + j != 0 ? ", " : "", + id_query.known ? id_query.id : "unknown"); + bidib_free_id_query(id_query); } + + append_end_of_list(g_segments, false, seg_state_query.data.dcc_address_cnt > 0); append_end_of_obj(g_segments, false); bidib_free_segment_state_query(seg_state_query); + } bidib_free_id_list_query(seg_query); - append_end_of_list(g_segments, false); + append_end_of_list(g_segments, false, added_segments > 0); append_end_of_obj(g_segments, false); return g_segments; } @@ -482,7 +561,6 @@ onion_connection_status handler_get_segments(void *_, onion_request *req, onion_ if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_INFO, "Request: Get segments"); GString *g_segments = get_segments_json(); - onion_response_printf(res, "%s", g_segments->str); syslog_server(LOG_INFO, "Request: Get segments - finished"); g_string_free(g_segments, true); @@ -496,13 +574,12 @@ onion_connection_status handler_get_segments(void *_, onion_request *req, onion_ GString *get_reversers_json() { t_bidib_id_list_query rev_query = bidib_get_connected_reversers(); GString *g_reversers = g_string_sized_new(48 * (rev_query.length + 1)); - //GString *g_reversers = g_string_new(""); g_string_assign(g_reversers, ""); - append_start_of_obj(g_reversers); + append_start_of_obj(g_reversers, false); append_field_start_of_list(g_reversers, "reversers"); - bool need_comma = false; + int added_reversers = 0; for (size_t i = 0; i < rev_query.length; i++) { const char *reverser_id = rev_query.ids[i]; t_bidib_reverser_state_query rev_state_query = bidib_get_reverser_state(reverser_id); @@ -511,15 +588,6 @@ GString *get_reversers_json() { continue; } - if (!need_comma) { - need_comma = true; - } else { - if (g_reversers->str[g_reversers->len-1] == '}') { - syslog_server(LOG_WARNING, "Experiment: reverser json append comma - would be correct"); - } - g_string_append_c(g_reversers, ','); - } - char *state_value_str = "unknown"; switch (rev_state_query.data.state_value) { case BIDIB_REV_EXEC_STATE_OFF: @@ -532,12 +600,16 @@ GString *get_reversers_json() { state_value_str = "unknown"; break; } - append_start_of_obj(g_reversers); + bidib_free_reverser_state_query(rev_state_query); + + if (added_reversers++ > 0) { + g_string_append_c(g_reversers, ','); + } + append_start_of_obj(g_reversers, true); append_field_str_value(g_reversers, "id", reverser_id, true); append_field_str_value(g_reversers, "state", state_value_str, false); append_end_of_obj(g_reversers, false); - bidib_free_reverser_state_query(rev_state_query); } bidib_free_id_list_query(rev_query); return g_reversers; @@ -567,10 +639,10 @@ GString *get_peripherals_json() { t_bidib_id_list_query per_query = bidib_get_connected_peripherals(); GString *g_peripherals = g_string_sized_new(48 * (per_query.length + 1)); g_string_assign(g_peripherals, ""); - append_start_of_obj(g_peripherals); + append_start_of_obj(g_peripherals, false); append_field_start_of_list(g_peripherals, "peripherals"); - bool need_comma = false; + int added_peripherals = 0; for (size_t i = 0; i < per_query.length; i++) { t_bidib_peripheral_state_query per_state_query = bidib_get_peripheral_state(per_query.ids[i]); if (!per_state_query.available) { @@ -580,13 +652,11 @@ GString *get_peripherals_json() { per_query.ids[i]); continue; } - if (!need_comma) { - need_comma = true; - } else { + if (added_peripherals++ > 0) { g_string_append_c(g_peripherals, ','); } - append_start_of_obj(g_peripherals); + append_start_of_obj(g_peripherals, true); append_field_str_value(g_peripherals, "id", per_query.ids[i], true); append_field_str_value(g_peripherals, "state-id", per_state_query.data.state_id, true); ///TODO: Check if this works correctly; data.state_value is uint8, not unsigned int. @@ -596,7 +666,7 @@ GString *get_peripherals_json() { } bidib_free_id_list_query(per_query); - append_end_of_list(g_peripherals, false); + append_end_of_list(g_peripherals, false, added_peripherals > 0); append_end_of_obj(g_peripherals, false); return g_peripherals; @@ -658,26 +728,23 @@ GString* get_granted_routes_json() { // Old "normal" way without sized new //GString *g_granted_routes = g_string_new(""); - append_start_of_obj(g_granted_routes); + append_start_of_obj(g_granted_routes, false); append_field_start_of_list(g_granted_routes, "granted-routes"); pthread_mutex_lock(&interlocker_mutex); - GArray *route_ids = interlocking_table_get_all_route_ids(); + GArray *route_ids = interlocking_table_get_all_route_ids_cpy(); - bool need_comma = false; + int routes_added = 0; if (route_ids != NULL) { for (size_t i = 0; i < route_ids->len; i++) { const char *route_id = g_array_index(route_ids, char *, i); if (route_id != NULL) { t_interlocking_route *route = get_route(route_id); if (route != NULL && route->train != NULL) { - if (!need_comma) { - need_comma = true; - } else { - // Add comma to end of prev. object + if (routes_added++ > 0) { g_string_append_c(g_granted_routes, ','); } - append_start_of_obj(g_granted_routes); + append_start_of_obj(g_granted_routes, true); append_field_bare_value_from_str(g_granted_routes, "id", route->id, true); append_field_str_value(g_granted_routes, "train", route->train, false); append_end_of_obj(g_granted_routes, false); @@ -688,7 +755,7 @@ GString* get_granted_routes_json() { } pthread_mutex_unlock(&interlocker_mutex); - append_end_of_list(g_granted_routes, false); + append_end_of_list(g_granted_routes, false, routes_added > 0); append_end_of_obj(g_granted_routes, false); return g_granted_routes; @@ -699,10 +766,10 @@ onion_connection_status handler_get_granted_routes(void *_, onion_request *req, build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_INFO, "Request: Get granted routes"); - GString *granted_routes = get_granted_routes_json(); - onion_response_printf(res, "%s", granted_routes->str); + GString *g_granted_routes = get_granted_routes_json(); + onion_response_printf(res, "%s", g_granted_routes->str); syslog_server(LOG_INFO, "Request: Get granted routes - finished"); - g_string_free(granted_routes, true); + g_string_free(g_granted_routes, true); return OCS_PROCESSED; } else { syslog_server(LOG_ERR, @@ -711,53 +778,44 @@ onion_connection_status handler_get_granted_routes(void *_, onion_request *req, } } -GString* get_route_json(const char *data_route_id) { - const char *route_id = params_check_route_id(data_route_id); - if (route_id == NULL || strcmp(route_id, "") == 0) { - // Invalid route id - syslog_server(LOG_ERR, "Get route JSON experiment - invalid route id"); - return NULL; - } - +GString* get_route_json(const char *route_id) { pthread_mutex_lock(&interlocker_mutex); - const t_interlocking_route *route = get_route(route_id); if (route == NULL) { pthread_mutex_unlock(&interlocker_mutex); - syslog_server(LOG_ERR, "Get route JSON experiment - invalid route id (route not found)"); + syslog_server(LOG_ERR, "Get route json - invalid route id (route not found)"); return NULL; } + GString *g_route = g_string_sized_new(1024); + g_string_assign(g_route, ""); - GString *g_route_str = g_string_new(""); - append_start_of_obj(g_route_str); - append_field_bare_value_from_str(g_route_str, "id", route->id, true); - append_field_str_value(g_route_str, "source_signal", route->source, true); - append_field_str_value(g_route_str, "destination_signal", route->destination, true); - append_field_str_value(g_route_str, "orientation", route->orientation, true); - append_field_float_value(g_route_str, "length", route->length, true); - append_field_strlist_value_garray_strs(g_route_str, "path", route->path, true); - append_field_strlist_value_garray_strs(g_route_str, "sections", route->sections, true); - append_field_strlist_value_garray_strs(g_route_str, "signals", route->signals, true); + append_start_of_obj(g_route, false); + append_field_bare_value_from_str(g_route, "id", route->id, true); + append_field_str_value(g_route, "source_signal", route->source, true); + append_field_str_value(g_route, "destination_signal", route->destination, true); + append_field_str_value(g_route, "orientation", route->orientation, true); + append_field_float_value(g_route, "length", route->length, true); + append_field_strlist_value_garray_strs(g_route, "path", route->path, true); + append_field_strlist_value_garray_strs(g_route, "sections", route->sections, true); + append_field_strlist_value_garray_strs(g_route, "signals", route->signals, true); GArray *g_point_ids = garray_points_to_garray_str_ids(route->points); - append_field_strlist_value_garray_strs(g_route_str, "points", g_point_ids, true); + append_field_strlist_value_garray_strs(g_route, "points", g_point_ids, true); free_g_strarray(g_point_ids); - append_field_barelist_value_from_garray_strs(g_route_str, "conflicting_route_ids", route->conflicts, true); + append_field_barelist_value_from_garray_strs(g_route, "conflicting_route_ids", + route->conflicts, true); - const GArray *granted_route_conflicts = get_granted_route_conflicts(route_id); - if (granted_route_conflicts != NULL) { - append_field_strlist_value_garray_strs(g_route_str, "granted_conflicting_route_ids", granted_route_conflicts, true); - } else { - append_field_emptylist_value(g_route_str, "granted_conflicting_route_ids", true); - } + append_field_strlist_value_garray_strs(g_route, "granted_conflicting_route_ids", + get_granted_route_conflicts(route_id), true); - append_field_bool_value(g_route_str, "clear", get_route_is_clear(route_id), true); - append_field_str_value(g_route_str, "granted_to_train", route->train == NULL ? "" : route->train, false); - append_end_of_obj(g_route_str, false); + append_field_bool_value(g_route, "clear", get_route_is_clear(route_id), true); + append_field_str_value(g_route, "granted_to_train", + route->train == NULL ? "" : route->train, false); + append_end_of_obj(g_route, false); pthread_mutex_unlock(&interlocker_mutex); - return g_route_str; + return g_route; } onion_connection_status handler_get_route(void *_, onion_request *req, onion_response *res) { @@ -771,10 +829,10 @@ onion_connection_status handler_get_route(void *_, onion_request *req, onion_res } syslog_server(LOG_INFO, "Request: Get route - route: %s", route_id); - GString* route_json = get_route_json(data_route_id); - onion_response_printf(res, "%s", route_json->str); + GString* g_route = get_route_json(route_id); + onion_response_printf(res, "%s", g_route->str); syslog_server(LOG_INFO, "Request: Get route - route: %s - finished", route_id); - g_string_free(route_json, true); + g_string_free(g_route, true); return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get route - system not running or wrong request type"); diff --git a/server/src/interlocking.c b/server/src/interlocking.c index f3773aba..951b724e 100644 --- a/server/src/interlocking.c +++ b/server/src/interlocking.c @@ -132,6 +132,33 @@ GArray *interlocking_table_get_all_route_ids(void) { return route_ids; } +GArray *interlocking_table_get_all_route_ids_cpy(void) { + GArray* route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); + + GHashTableIter iter; + gpointer key, value; + g_hash_table_iter_init (&iter, route_hash_table); + while (g_hash_table_iter_next (&iter, &key, &value)) { + t_interlocking_route *route = (t_interlocking_route *) value; + g_array_append_val(route_ids, route->id); + } + return route_ids; +} + +int interlocking_table_get_route_id_of_train(const char *train_id) { + int route_id = -1; + + GHashTableIter iter; + gpointer key, value; + g_hash_table_iter_init (&iter, route_hash_table); + while (g_hash_table_iter_next (&iter, &key, &value)) { + const t_interlocking_route *route = (t_interlocking_route *) value; + if (route != NULL && route->train != NULL && strcmp(route->train, train_id) == 0) + return route_id; + } + return route_id; +} + GArray *interlocking_table_get_route_ids(const char *source_id, const char *destination_id) { size_t len = strlen(source_id) + strlen(destination_id) + 1; char route_string[len]; diff --git a/server/src/interlocking.h b/server/src/interlocking.h index a7210464..8b5cc62a 100644 --- a/server/src/interlocking.h +++ b/server/src/interlocking.h @@ -87,10 +87,29 @@ void free_interlocking_table(void); /** * Return all the route IDs in the interlocking table. * - * @return array of route IDs. Caller is responsible for freeing the GArray + * @return array of route IDs. Caller is responsible for freeing the GArray and its contents(!) */ GArray *interlocking_table_get_all_route_ids(void); +/** + * Return all the route IDs in the interlocking table. + * The strings containing the route IDs are shallow copies of the ones in the interlocking table. + * That means, the caller of this function does not gain their ownership. + * + * @return array of route IDs. Caller is responsible for freeing the GArray, + * but not the contained strings(!) + */ +GArray *interlocking_table_get_all_route_ids_cpy(void); + +/** + * Search for the first route granted to the specified train and return its id. + * + * @param train_id + * @return int id of the first route found that is granted to train. + * -1 if no routes are granted to this train. + */ +int interlocking_table_get_route_id_of_train(const char *train_id); + /** * Return the array of route ID for a given source and destination signal. * diff --git a/server/src/json_response_builder.c b/server/src/json_response_builder.c index 1fc920a1..1003bdc3 100644 --- a/server/src/json_response_builder.c +++ b/server/src/json_response_builder.c @@ -52,10 +52,10 @@ GString* append_field_value_garray_strs_base(GString *dest, const char *field, const GArray* g_strarray, bool add_value_quote_marks, bool add_trailing_comma) { - if (dest == NULL || field == NULL || g_strarray == NULL) { + if (dest == NULL || field == NULL) { return NULL; } - if (g_strarray->len == 0) { + if (g_strarray == NULL || g_strarray->len == 0) { g_string_append_printf(dest, "\n\"%s\": []%s", field, add_trailing_comma ? "," : ""); return dest; } @@ -73,7 +73,7 @@ GString* append_field_value_garray_strs_base(GString *dest, const char *field, } GString* append_field_strlist_value_garray_strs(GString *dest, const char *field, - const GArray* g_strarray, bool add_trailing_comma) { + const GArray* g_strarray, bool add_trailing_comma) { return append_field_value_garray_strs_base(dest, field, g_strarray, true, add_trailing_comma); } @@ -141,19 +141,12 @@ GString* append_field_start_of_list(GString *dest, const char *field) { return dest; } -GString* append_start_of_list(GString *dest) { - if (dest == NULL) { - return NULL; - } - g_string_append_printf(dest, "\n["); - return dest; -} - -GString* append_end_of_list(GString *dest, bool add_trailing_comma) { +GString* append_end_of_list(GString *dest, bool add_trailing_comma, bool with_prepend_newline) { if (dest == NULL) { return NULL; } - g_string_append_printf(dest, "\n]%s", add_trailing_comma ? "," : ""); + g_string_append_printf(dest, "%s]%s", + with_prepend_newline ? "\n" : "", add_trailing_comma ? "," : ""); return dest; } @@ -165,11 +158,12 @@ GString* append_field_start_of_obj(GString *dest, const char *field) { return dest; } -GString* append_start_of_obj(GString *dest) { +///TODO: Make newline configurable +GString* append_start_of_obj(GString *dest, bool with_prepend_newline) { if (dest == NULL) { return NULL; } - g_string_append_printf(dest, "\n{"); + g_string_append_printf(dest, "%s{", with_prepend_newline ? "\n" : ""); return dest; } diff --git a/server/src/json_response_builder.h b/server/src/json_response_builder.h index 0a63c7a1..883a0262 100644 --- a/server/src/json_response_builder.h +++ b/server/src/json_response_builder.h @@ -16,9 +16,8 @@ GString* append_field_uint_value(GString *dest, const char *field, unsigned int GString* append_field_float_value(GString *dest, const char *field, float value_float, bool add_trailing_comma); GString* append_field_start_of_list(GString *dest, const char *field); -GString* append_start_of_list(GString *dest); -GString* append_end_of_list(GString *dest, bool add_trailing_comma); +GString* append_end_of_list(GString *dest, bool add_trailing_comma, bool with_prepend_newline); GString* append_field_start_of_obj(GString *dest, const char *field); -GString* append_start_of_obj(GString *dest); +GString* append_start_of_obj(GString *dest, bool with_prepend_newline); GString* append_end_of_obj(GString *dest, bool add_trailing_comma); \ No newline at end of file From 563d97f860b1ec411bad9624cfd4e880c00cfded Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Nov 2023 15:34:10 +0100 Subject: [PATCH 009/125] fixes after testing and size pre-alloc debug --- server/src/handler_monitor.c | 39 +++++++++++++++++++----------- server/src/json_response_builder.c | 6 ++--- 2 files changed, 28 insertions(+), 17 deletions(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 3d79a05c..650441f9 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -120,6 +120,8 @@ GString *get_trains_json() { } append_end_of_list(g_trains, false, query.length > 0); append_end_of_obj(g_trains, false); + + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_trains_json", 72 * (query.length + 1), g_trains->len); bidib_free_id_list_query(query); return g_trains; } @@ -176,9 +178,10 @@ GString *get_train_state_json(const char *data_train) { append_field_int_value(g_train_state, "route_id", route_id, true); t_bidib_train_position_query train_position_query = bidib_get_train_position(data_train); - - append_field_bool_value(g_train_state, "on_track", train_position_query.length > 0, true); - if (train_position_query.length > 0) { + bool is_on_track = train_position_query.length > 0; + // is_on_track intentionally used for both value and add_trailing_comma parameters. + append_field_bool_value(g_train_state, "on_track", is_on_track, is_on_track); + if (is_on_track) { // two passes likely needed, one for segments, one for blocks. append_field_strlist_value(g_train_state, "occupied_segments", (const char **) train_position_query.segments, @@ -198,8 +201,8 @@ GString *get_train_state_json(const char *data_train) { } bidib_free_train_position_query(train_position_query); - append_end_of_obj(g_train_state, false); + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_train_state_json", 384, g_train_state->len); return g_train_state; } @@ -263,6 +266,8 @@ GString *get_train_peripherals_json(const char *data_train) { append_end_of_list(g_train_peripherals, false, query.length > 0); append_end_of_obj(g_train_peripherals, false); + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_train_peripherals_json", 64 * (query.length + 1), g_train_peripherals->len); + bidib_free_id_list_query(query); return g_train_peripherals; } @@ -328,10 +333,10 @@ GString *get_track_outputs_json() { append_end_of_obj(g_track_outputs, false); } } - bidib_free_id_list_query(query); - append_end_of_list(g_track_outputs, false, track_outputs_added > 0); append_end_of_obj(g_track_outputs, false); + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_track_outputs_json", 48 * (query.length + 1), g_track_outputs->len); + bidib_free_id_list_query(query); return g_track_outputs; } @@ -374,7 +379,8 @@ GString *get_accessory_json(bool point_accessories) { acc_state.type == BIDIB_ACCESSORY_BOARD ? acc_state.board_accessory_state.state_id : acc_state.dcc_accessory_state.state_id, - (!point_accessories || acc_state.type != BIDIB_ACCESSORY_BOARD)); + (!point_accessories + || (point_accessories && acc_state.type == BIDIB_ACCESSORY_BOARD))); if (point_accessories && acc_state.type == BIDIB_ACCESSORY_BOARD) { append_field_bool_value(g_accs, "target_state_reached", acc_state.board_accessory_state.execution_state, false); @@ -388,7 +394,7 @@ GString *get_accessory_json(bool point_accessories) { } append_end_of_list(g_accs, false, query.length > 0); append_end_of_obj(g_accs, false); - + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_accessory_json", 64 * (query.length + 1), g_accs); bidib_free_id_list_query(query); return g_accs; } @@ -450,6 +456,7 @@ GString *get_accessory_aspects_json(const char *data_id, bool is_point) { } append_end_of_list(g_aspects, false, query.length > 0); append_end_of_obj(g_aspects, false); + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_accessory_aspects_json", query.length * 16, g_aspects->len); bidib_free_id_list_query(query); return g_aspects; } @@ -549,10 +556,10 @@ GString *get_segments_json() { bidib_free_segment_state_query(seg_state_query); } - bidib_free_id_list_query(seg_query); - append_end_of_list(g_segments, false, added_segments > 0); append_end_of_obj(g_segments, false); + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_segments_json", 48 * (seg_query.length + 1), g_segments->len); + bidib_free_id_list_query(seg_query); return g_segments; } @@ -611,6 +618,9 @@ GString *get_reversers_json() { append_end_of_obj(g_reversers, false); } + append_end_of_list(g_reversers, false, added_reversers > 0); + append_end_of_obj(g_reversers, false); + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_reversers_json", 48 * (rev_query.length + 1), g_reversers->len); bidib_free_id_list_query(rev_query); return g_reversers; } @@ -637,7 +647,7 @@ onion_connection_status handler_get_reversers(void *_, onion_request *req, onion GString *get_peripherals_json() { // Trying out ways of estimating size. The +1 is there to avoid size 0 if query length is 0. t_bidib_id_list_query per_query = bidib_get_connected_peripherals(); - GString *g_peripherals = g_string_sized_new(48 * (per_query.length + 1)); + GString *g_peripherals = g_string_sized_new(64 * (per_query.length + 1)); g_string_assign(g_peripherals, ""); append_start_of_obj(g_peripherals, false); append_field_start_of_list(g_peripherals, "peripherals"); @@ -664,11 +674,11 @@ GString *get_peripherals_json() { append_end_of_obj(g_peripherals, false); bidib_free_peripheral_state_query(per_state_query); } - bidib_free_id_list_query(per_query); append_end_of_list(g_peripherals, false, added_peripherals > 0); append_end_of_obj(g_peripherals, false); - + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_peripherals_json", 64 * (per_query.length + 1), g_peripherals->len); + bidib_free_id_list_query(per_query); return g_peripherals; } @@ -757,6 +767,7 @@ GString* get_granted_routes_json() { append_end_of_list(g_granted_routes, false, routes_added > 0); append_end_of_obj(g_granted_routes, false); + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_granted_routes_json", 256, g_granted_routes->len); return g_granted_routes; } @@ -813,7 +824,7 @@ GString* get_route_json(const char *route_id) { append_field_str_value(g_route, "granted_to_train", route->train == NULL ? "" : route->train, false); append_end_of_obj(g_route, false); - + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_route_json", 1024, g_route->len); pthread_mutex_unlock(&interlocker_mutex); return g_route; } diff --git a/server/src/json_response_builder.c b/server/src/json_response_builder.c index 1003bdc3..9521b8f1 100644 --- a/server/src/json_response_builder.c +++ b/server/src/json_response_builder.c @@ -108,7 +108,7 @@ GString* append_field_int_value(GString *dest, const char *field, int value_int, if (dest == NULL || field == NULL) { return NULL; } - g_string_append_printf(dest, "\n\"%s\": \"%d\"%s", + g_string_append_printf(dest, "\n\"%s\": %d%s", field, value_int, add_trailing_comma ? "," : ""); return dest; } @@ -118,7 +118,7 @@ GString* append_field_uint_value(GString *dest, const char *field, unsigned int if (dest == NULL || field == NULL) { return NULL; } - g_string_append_printf(dest, "\n\"%s\": \"%u\"%s", + g_string_append_printf(dest, "\n\"%s\": %u%s", field, value_uint, add_trailing_comma ? "," : ""); return dest; } @@ -128,7 +128,7 @@ GString* append_field_float_value(GString *dest, const char *field, if (dest == NULL || field == NULL) { return NULL; } - g_string_append_printf(dest, "\n\"%s\": \"%f\"%s", + g_string_append_printf(dest, "\n\"%s\": %f%s", field, value_float, add_trailing_comma ? "," : ""); return dest; } From 8957d503e562b8e2bf9577ee1f61a1732f9cdaec Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Nov 2023 15:59:52 +0100 Subject: [PATCH 010/125] debug adjustment --- server/src/handler_monitor.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 650441f9..f0843aaa 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -364,7 +364,7 @@ GString *get_accessory_json(bool point_accessories) { } else { query = bidib_get_connected_signals(); } - GString *g_accs = g_string_sized_new(64 * (query.length + 1)); + GString *g_accs = g_string_sized_new(80 * (query.length + 1)); g_string_assign(g_accs, ""); append_start_of_obj(g_accs, false); append_field_start_of_list(g_accs, point_accessories ? "points" : "signals"); @@ -394,7 +394,7 @@ GString *get_accessory_json(bool point_accessories) { } append_end_of_list(g_accs, false, query.length > 0); append_end_of_obj(g_accs, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_accessory_json", 64 * (query.length + 1), g_accs); + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_accessory_json", (unsigned int) 64 * (query.length + 1), g_accs); bidib_free_id_list_query(query); return g_accs; } @@ -446,7 +446,7 @@ GString *get_accessory_aspects_json(const char *data_id, bool is_point) { return g_string_new(""); } - GString *g_aspects = g_string_sized_new(query.length * 16); + GString *g_aspects = g_string_sized_new((query.length + 1) * 20); g_string_assign(g_aspects, ""); append_start_of_obj(g_aspects, false); append_field_start_of_list(g_aspects, "aspects"); @@ -454,7 +454,7 @@ GString *get_accessory_aspects_json(const char *data_id, bool is_point) { for (size_t i = 0; i < query.length; i++) { g_string_append_printf(g_aspects, "%s\"%s\"", i != 0 ? ", " : "", query.ids[i]); } - append_end_of_list(g_aspects, false, query.length > 0); + append_end_of_list(g_aspects, false, false); append_end_of_obj(g_aspects, false); syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_accessory_aspects_json", query.length * 16, g_aspects->len); bidib_free_id_list_query(query); From 5fc5b52035d0a23b09ac98464638df4925ab48c4 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Nov 2023 16:17:00 +0100 Subject: [PATCH 011/125] fix train state json bug and adjust size estimates --- server/src/handler_monitor.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index f0843aaa..d72f8cae 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -100,7 +100,7 @@ void sprintf_garray_interlocking_point(GString *output, GArray *garray) { GString *get_trains_json() { t_bidib_id_list_query query = bidib_get_trains(); - GString *g_trains = g_string_sized_new(72 * (query.length + 1)); + GString *g_trains = g_string_sized_new(64 * (query.length + 1)); g_string_assign(g_trains, ""); append_start_of_obj(g_trains, false); @@ -193,7 +193,7 @@ GString *get_train_state_json(const char *data_train) { const char *block_id = config_get_block_id_of_segment(train_position_query.segments[i]); // only add block if it does not already exist in the list (and thus in g_train_state) if (block_id != NULL && strstr(g_train_state->str, block_id) == NULL) { - g_string_printf(g_train_state, "%s\"%s\"", added_blocks > 0 ? ", " : "", block_id); + g_string_append_printf(g_train_state, "%s\"%s\"", added_blocks > 0 ? ", " : "", block_id); ++added_blocks; } } @@ -242,7 +242,7 @@ GString *get_train_peripherals_json(const char *data_train) { } t_bidib_id_list_query query = bidib_get_train_peripherals(data_train); - GString *g_train_peripherals = g_string_sized_new(64 * (query.length + 1)); + GString *g_train_peripherals = g_string_sized_new(40 * (query.length + 1)); g_string_assign(g_train_peripherals, ""); append_start_of_obj(g_train_peripherals, false); @@ -394,7 +394,7 @@ GString *get_accessory_json(bool point_accessories) { } append_end_of_list(g_accs, false, query.length > 0); append_end_of_obj(g_accs, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_accessory_json", (unsigned int) 64 * (query.length + 1), g_accs); + syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %lu", "get_accessory_json", (size_t) (64 * (query.length + 1)), g_accs); bidib_free_id_list_query(query); return g_accs; } @@ -446,7 +446,7 @@ GString *get_accessory_aspects_json(const char *data_id, bool is_point) { return g_string_new(""); } - GString *g_aspects = g_string_sized_new((query.length + 1) * 20); + GString *g_aspects = g_string_sized_new(32 * (query.length + 1)); g_string_assign(g_aspects, ""); append_start_of_obj(g_aspects, false); append_field_start_of_list(g_aspects, "aspects"); @@ -732,7 +732,7 @@ onion_connection_status handler_get_verification_url(void *_, onion_request *req GString* get_granted_routes_json() { ///TODO: test - sized new could be nice to avoid reallocs, but now how do initialize the string? // maybe just with g_string_assign? - GString *g_granted_routes = g_string_sized_new(256); + GString *g_granted_routes = g_string_sized_new(64); g_string_assign(g_granted_routes, ""); // Old "normal" way without sized new From 940eda50fe8e2bcbeaffa73727eb125ba37b4ea5 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Nov 2023 16:29:03 +0100 Subject: [PATCH 012/125] fixed debug print format --- server/src/handler_monitor.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index d72f8cae..3de15c23 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -121,7 +121,7 @@ GString *get_trains_json() { append_end_of_list(g_trains, false, query.length > 0); append_end_of_obj(g_trains, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_trains_json", 72 * (query.length + 1), g_trains->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_trains_json", 72 * (query.length + 1), g_trains->len); bidib_free_id_list_query(query); return g_trains; } @@ -202,7 +202,7 @@ GString *get_train_state_json(const char *data_train) { bidib_free_train_position_query(train_position_query); append_end_of_obj(g_train_state, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_train_state_json", 384, g_train_state->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_train_state_json", 384, g_train_state->len); return g_train_state; } @@ -266,7 +266,7 @@ GString *get_train_peripherals_json(const char *data_train) { append_end_of_list(g_train_peripherals, false, query.length > 0); append_end_of_obj(g_train_peripherals, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_train_peripherals_json", 64 * (query.length + 1), g_train_peripherals->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_train_peripherals_json", 64 * (query.length + 1), g_train_peripherals->len); bidib_free_id_list_query(query); return g_train_peripherals; @@ -335,7 +335,7 @@ GString *get_track_outputs_json() { } append_end_of_list(g_track_outputs, false, track_outputs_added > 0); append_end_of_obj(g_track_outputs, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_track_outputs_json", 48 * (query.length + 1), g_track_outputs->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_track_outputs_json", 48 * (query.length + 1), g_track_outputs->len); bidib_free_id_list_query(query); return g_track_outputs; } @@ -394,7 +394,7 @@ GString *get_accessory_json(bool point_accessories) { } append_end_of_list(g_accs, false, query.length > 0); append_end_of_obj(g_accs, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %lu", "get_accessory_json", (size_t) (64 * (query.length + 1)), g_accs); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_accessory_json", 64 * (query.length + 1), g_accs->len); bidib_free_id_list_query(query); return g_accs; } @@ -456,7 +456,7 @@ GString *get_accessory_aspects_json(const char *data_id, bool is_point) { } append_end_of_list(g_aspects, false, false); append_end_of_obj(g_aspects, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_accessory_aspects_json", query.length * 16, g_aspects->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_accessory_aspects_json", query.length * 16, g_aspects->len); bidib_free_id_list_query(query); return g_aspects; } @@ -558,7 +558,7 @@ GString *get_segments_json() { } append_end_of_list(g_segments, false, added_segments > 0); append_end_of_obj(g_segments, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_segments_json", 48 * (seg_query.length + 1), g_segments->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_segments_json", 48 * (seg_query.length + 1), g_segments->len); bidib_free_id_list_query(seg_query); return g_segments; } @@ -620,7 +620,7 @@ GString *get_reversers_json() { } append_end_of_list(g_reversers, false, added_reversers > 0); append_end_of_obj(g_reversers, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_reversers_json", 48 * (rev_query.length + 1), g_reversers->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_reversers_json", 48 * (rev_query.length + 1), g_reversers->len); bidib_free_id_list_query(rev_query); return g_reversers; } @@ -677,7 +677,7 @@ GString *get_peripherals_json() { append_end_of_list(g_peripherals, false, added_peripherals > 0); append_end_of_obj(g_peripherals, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_peripherals_json", 64 * (per_query.length + 1), g_peripherals->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_peripherals_json", 64 * (per_query.length + 1), g_peripherals->len); bidib_free_id_list_query(per_query); return g_peripherals; } @@ -767,7 +767,7 @@ GString* get_granted_routes_json() { append_end_of_list(g_granted_routes, false, routes_added > 0); append_end_of_obj(g_granted_routes, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_granted_routes_json", 256, g_granted_routes->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_granted_routes_json", 256, g_granted_routes->len); return g_granted_routes; } @@ -824,7 +824,7 @@ GString* get_route_json(const char *route_id) { append_field_str_value(g_route, "granted_to_train", route->train == NULL ? "" : route->train, false); append_end_of_obj(g_route, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %u, size actual: %u", "get_route_json", 1024, g_route->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_route_json", 1024, g_route->len); pthread_mutex_unlock(&interlocker_mutex); return g_route; } From 1021e23c9c41d571219f1dc4e25ae69051f2118f Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Nov 2023 16:33:48 +0100 Subject: [PATCH 013/125] fix block list linebreak --- server/src/handler_monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 3de15c23..1d59ab67 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -197,7 +197,7 @@ GString *get_train_state_json(const char *data_train) { ++added_blocks; } } - append_end_of_list(g_train_state, false, added_blocks > 0); + append_end_of_list(g_train_state, false, false); } bidib_free_train_position_query(train_position_query); From c376353d812e767ed410eb903d96232b88c16f57 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Nov 2023 16:35:25 +0100 Subject: [PATCH 014/125] updated size estimates in debug print --- server/src/handler_monitor.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 1d59ab67..4cad9cda 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -121,7 +121,7 @@ GString *get_trains_json() { append_end_of_list(g_trains, false, query.length > 0); append_end_of_obj(g_trains, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_trains_json", 72 * (query.length + 1), g_trains->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_trains_json", 64 * (query.length + 1), g_trains->len); bidib_free_id_list_query(query); return g_trains; } @@ -266,7 +266,7 @@ GString *get_train_peripherals_json(const char *data_train) { append_end_of_list(g_train_peripherals, false, query.length > 0); append_end_of_obj(g_train_peripherals, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_train_peripherals_json", 64 * (query.length + 1), g_train_peripherals->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_train_peripherals_json", 40 * (query.length + 1), g_train_peripherals->len); bidib_free_id_list_query(query); return g_train_peripherals; @@ -394,7 +394,7 @@ GString *get_accessory_json(bool point_accessories) { } append_end_of_list(g_accs, false, query.length > 0); append_end_of_obj(g_accs, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_accessory_json", 64 * (query.length + 1), g_accs->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_accessory_json", 80 * (query.length + 1), g_accs->len); bidib_free_id_list_query(query); return g_accs; } @@ -456,7 +456,7 @@ GString *get_accessory_aspects_json(const char *data_id, bool is_point) { } append_end_of_list(g_aspects, false, false); append_end_of_obj(g_aspects, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_accessory_aspects_json", query.length * 16, g_aspects->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_accessory_aspects_json", 32 * (query.length + 1), g_aspects->len); bidib_free_id_list_query(query); return g_aspects; } @@ -767,7 +767,7 @@ GString* get_granted_routes_json() { append_end_of_list(g_granted_routes, false, routes_added > 0); append_end_of_obj(g_granted_routes, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_granted_routes_json", 256, g_granted_routes->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_granted_routes_json", 64, g_granted_routes->len); return g_granted_routes; } From 417d19303ede17363bdbc0f8ea6e3dc19e1457d4 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Nov 2023 16:47:44 +0100 Subject: [PATCH 015/125] updated size estimates --- server/src/handler_monitor.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 4cad9cda..fad3d638 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -100,7 +100,7 @@ void sprintf_garray_interlocking_point(GString *output, GArray *garray) { GString *get_trains_json() { t_bidib_id_list_query query = bidib_get_trains(); - GString *g_trains = g_string_sized_new(64 * (query.length + 1)); + GString *g_trains = g_string_sized_new(60 * (query.length + 1)); g_string_assign(g_trains, ""); append_start_of_obj(g_trains, false); @@ -121,7 +121,7 @@ GString *get_trains_json() { append_end_of_list(g_trains, false, query.length > 0); append_end_of_obj(g_trains, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_trains_json", 64 * (query.length + 1), g_trains->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_trains_json", 60 * (query.length + 1), g_trains->len); bidib_free_id_list_query(query); return g_trains; } @@ -155,7 +155,7 @@ GString *get_train_state_json(const char *data_train) { return g_string_new(""); } - GString *g_train_state = g_string_sized_new(384); + GString *g_train_state = g_string_sized_new(256); g_string_assign(g_train_state, ""); append_start_of_obj(g_train_state, false); append_field_str_value(g_train_state, "id", data_train, true); @@ -202,7 +202,7 @@ GString *get_train_state_json(const char *data_train) { bidib_free_train_position_query(train_position_query); append_end_of_obj(g_train_state, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_train_state_json", 384, g_train_state->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_train_state_json", 256, g_train_state->len); return g_train_state; } @@ -364,7 +364,7 @@ GString *get_accessory_json(bool point_accessories) { } else { query = bidib_get_connected_signals(); } - GString *g_accs = g_string_sized_new(80 * (query.length + 1)); + GString *g_accs = g_string_sized_new(70 * (query.length + 1)); g_string_assign(g_accs, ""); append_start_of_obj(g_accs, false); append_field_start_of_list(g_accs, point_accessories ? "points" : "signals"); @@ -394,7 +394,7 @@ GString *get_accessory_json(bool point_accessories) { } append_end_of_list(g_accs, false, query.length > 0); append_end_of_obj(g_accs, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_accessory_json", 80 * (query.length + 1), g_accs->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_accessory_json", 70 * (query.length + 1), g_accs->len); bidib_free_id_list_query(query); return g_accs; } @@ -526,7 +526,7 @@ onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, GString *get_segments_json() { t_bidib_id_list_query seg_query = bidib_get_connected_segments(); - GString *g_segments = g_string_sized_new(48 * (seg_query.length + 1)); + GString *g_segments = g_string_sized_new(42 * (seg_query.length + 1)); g_string_assign(g_segments, ""); append_start_of_obj(g_segments, false); append_field_start_of_list(g_segments, "segments"); @@ -558,7 +558,7 @@ GString *get_segments_json() { } append_end_of_list(g_segments, false, added_segments > 0); append_end_of_obj(g_segments, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_segments_json", 48 * (seg_query.length + 1), g_segments->len); + syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_segments_json", 42 * (seg_query.length + 1), g_segments->len); bidib_free_id_list_query(seg_query); return g_segments; } From e88a036edbccc57f362bc8eafd222c34669313a0 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 5 Jun 2024 09:12:59 +0200 Subject: [PATCH 016/125] move api format folder --- .../doc/api-formats}/advanced/monitor_granted-routes.json | 0 .../doc/api-formats}/advanced/monitor_peripherals.json | 0 .../doc/api-formats}/advanced/monitor_point-aspects.json | 0 .../doc/api-formats}/advanced/monitor_points.json | 0 .../doc/api-formats}/advanced/monitor_reversers.json | 0 .../doc/api-formats}/advanced/monitor_route.json | 0 .../doc/api-formats}/advanced/monitor_segments.json | 0 .../doc/api-formats}/advanced/monitor_signal-aspects.json | 0 .../doc/api-formats}/advanced/monitor_signals.json | 0 .../doc/api-formats}/advanced/monitor_track-outputs.json | 0 .../doc/api-formats}/advanced/monitor_train-peripherals.json | 0 .../doc/api-formats}/advanced/monitor_train-state.json | 0 .../doc/api-formats}/advanced/monitor_train-states.json | 0 .../doc/api-formats}/advanced/monitor_trains.json | 0 .../doc/api-formats}/advanced/monitor_verification-option.json | 0 .../doc/api-formats}/advanced/monitor_verification-url.json | 0 .../doc/api-formats}/basic/monitor_signals.json | 0 17 files changed, 0 insertions(+), 0 deletions(-) rename {api-formats => server/doc/api-formats}/advanced/monitor_granted-routes.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_peripherals.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_point-aspects.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_points.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_reversers.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_route.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_segments.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_signal-aspects.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_signals.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_track-outputs.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_train-peripherals.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_train-state.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_train-states.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_trains.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_verification-option.json (100%) rename {api-formats => server/doc/api-formats}/advanced/monitor_verification-url.json (100%) rename {api-formats => server/doc/api-formats}/basic/monitor_signals.json (100%) diff --git a/api-formats/advanced/monitor_granted-routes.json b/server/doc/api-formats/advanced/monitor_granted-routes.json similarity index 100% rename from api-formats/advanced/monitor_granted-routes.json rename to server/doc/api-formats/advanced/monitor_granted-routes.json diff --git a/api-formats/advanced/monitor_peripherals.json b/server/doc/api-formats/advanced/monitor_peripherals.json similarity index 100% rename from api-formats/advanced/monitor_peripherals.json rename to server/doc/api-formats/advanced/monitor_peripherals.json diff --git a/api-formats/advanced/monitor_point-aspects.json b/server/doc/api-formats/advanced/monitor_point-aspects.json similarity index 100% rename from api-formats/advanced/monitor_point-aspects.json rename to server/doc/api-formats/advanced/monitor_point-aspects.json diff --git a/api-formats/advanced/monitor_points.json b/server/doc/api-formats/advanced/monitor_points.json similarity index 100% rename from api-formats/advanced/monitor_points.json rename to server/doc/api-formats/advanced/monitor_points.json diff --git a/api-formats/advanced/monitor_reversers.json b/server/doc/api-formats/advanced/monitor_reversers.json similarity index 100% rename from api-formats/advanced/monitor_reversers.json rename to server/doc/api-formats/advanced/monitor_reversers.json diff --git a/api-formats/advanced/monitor_route.json b/server/doc/api-formats/advanced/monitor_route.json similarity index 100% rename from api-formats/advanced/monitor_route.json rename to server/doc/api-formats/advanced/monitor_route.json diff --git a/api-formats/advanced/monitor_segments.json b/server/doc/api-formats/advanced/monitor_segments.json similarity index 100% rename from api-formats/advanced/monitor_segments.json rename to server/doc/api-formats/advanced/monitor_segments.json diff --git a/api-formats/advanced/monitor_signal-aspects.json b/server/doc/api-formats/advanced/monitor_signal-aspects.json similarity index 100% rename from api-formats/advanced/monitor_signal-aspects.json rename to server/doc/api-formats/advanced/monitor_signal-aspects.json diff --git a/api-formats/advanced/monitor_signals.json b/server/doc/api-formats/advanced/monitor_signals.json similarity index 100% rename from api-formats/advanced/monitor_signals.json rename to server/doc/api-formats/advanced/monitor_signals.json diff --git a/api-formats/advanced/monitor_track-outputs.json b/server/doc/api-formats/advanced/monitor_track-outputs.json similarity index 100% rename from api-formats/advanced/monitor_track-outputs.json rename to server/doc/api-formats/advanced/monitor_track-outputs.json diff --git a/api-formats/advanced/monitor_train-peripherals.json b/server/doc/api-formats/advanced/monitor_train-peripherals.json similarity index 100% rename from api-formats/advanced/monitor_train-peripherals.json rename to server/doc/api-formats/advanced/monitor_train-peripherals.json diff --git a/api-formats/advanced/monitor_train-state.json b/server/doc/api-formats/advanced/monitor_train-state.json similarity index 100% rename from api-formats/advanced/monitor_train-state.json rename to server/doc/api-formats/advanced/monitor_train-state.json diff --git a/api-formats/advanced/monitor_train-states.json b/server/doc/api-formats/advanced/monitor_train-states.json similarity index 100% rename from api-formats/advanced/monitor_train-states.json rename to server/doc/api-formats/advanced/monitor_train-states.json diff --git a/api-formats/advanced/monitor_trains.json b/server/doc/api-formats/advanced/monitor_trains.json similarity index 100% rename from api-formats/advanced/monitor_trains.json rename to server/doc/api-formats/advanced/monitor_trains.json diff --git a/api-formats/advanced/monitor_verification-option.json b/server/doc/api-formats/advanced/monitor_verification-option.json similarity index 100% rename from api-formats/advanced/monitor_verification-option.json rename to server/doc/api-formats/advanced/monitor_verification-option.json diff --git a/api-formats/advanced/monitor_verification-url.json b/server/doc/api-formats/advanced/monitor_verification-url.json similarity index 100% rename from api-formats/advanced/monitor_verification-url.json rename to server/doc/api-formats/advanced/monitor_verification-url.json diff --git a/api-formats/basic/monitor_signals.json b/server/doc/api-formats/basic/monitor_signals.json similarity index 100% rename from api-formats/basic/monitor_signals.json rename to server/doc/api-formats/basic/monitor_signals.json From d201741906655a5d3ba3c91cfa1c85f21dde0051 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 5 Jun 2024 09:28:45 +0200 Subject: [PATCH 017/125] adjust to new logging scheme --- server/src/handler_monitor.c | 106 ++++++++++++++++++----------------- 1 file changed, 56 insertions(+), 50 deletions(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 76941d68..5d7f2c49 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -129,10 +129,9 @@ GString *get_trains_json() { onion_connection_status handler_get_trains(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - syslog_server(LOG_INFO, "Request: Get available trains"); GString *g_trains = get_trains_json(); onion_response_printf(res, "%s", g_trains->str); - syslog_server(LOG_INFO, "Request: Get available trains - finished"); + syslog_server(LOG_INFO, "Request: Get available trains - done"); g_string_free(g_trains, true); return OCS_PROCESSED; } else { @@ -202,7 +201,7 @@ GString *get_train_state_json(const char *data_train) { bidib_free_train_position_query(train_position_query); append_end_of_obj(g_train_state, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_train_state_json", 256, g_train_state->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_train_state_json", 256, g_train_state->len); return g_train_state; } @@ -215,7 +214,6 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni return OCS_NOT_IMPLEMENTED; } - syslog_server(LOG_INFO, "Request: Get train state - train: %s", data_train); GString *ret_string = get_train_state_json(data_train); if (ret_string == NULL || ret_string->len == 0) { syslog_server(LOG_ERR, @@ -224,7 +222,7 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni return OCS_NOT_IMPLEMENTED; } else { onion_response_printf(res, "%s", ret_string->str); - syslog_server(LOG_INFO, "Request: Get train state - train: %s - finished", data_train); + syslog_server(LOG_INFO, "Request: Get train state - train: %s - done", data_train); g_string_free(ret_string, true); return OCS_PROCESSED; } @@ -234,10 +232,8 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni } } -///TODO: Discuss, change in behaviour: train with no peripherals now does not lead to an error. GString *get_train_peripherals_json(const char *data_train) { if (data_train == NULL) { - ///TODO: Discuss what to return (NULL or empty string? Or "empty" JSON?) return g_string_new(""); } @@ -266,7 +262,9 @@ GString *get_train_peripherals_json(const char *data_train) { append_end_of_list(g_train_peripherals, false, query.length > 0); append_end_of_obj(g_train_peripherals, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_train_peripherals_json", 40 * (query.length + 1), g_train_peripherals->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_train_peripherals_json", 40 * (query.length + 1), + // g_train_peripherals->len); bidib_free_id_list_query(query); return g_train_peripherals; @@ -282,14 +280,21 @@ onion_connection_status handler_get_train_peripherals(void *_, onion_request *re return OCS_NOT_IMPLEMENTED; } - syslog_server(LOG_INFO, "Request: Get train peripherals - train: %s", data_train); GString *g_train_peripherals = get_train_peripherals_json(data_train); - onion_response_printf(res, "%s", g_train_peripherals->str); - syslog_server(LOG_INFO, - "Request: Get train peripherals - train: %s - finished", - data_train); - g_string_free(g_train_peripherals, true); - return OCS_PROCESSED; + if (g_train_peripherals->len > 0) { + onion_response_printf(res, "%s", g_train_peripherals->str); + syslog_server(LOG_INFO, + "Request: Get train peripherals - train: %s - done", + data_train); + g_string_free(g_train_peripherals, true); + return OCS_PROCESSED; + } else { + syslog_server(LOG_ERR, + "Request: Get train peripherals - train: %s - invalid train", + data_train); + g_string_free(g_train_peripherals, true); + return OCS_NOT_IMPLEMENTED; + } } else { syslog_server(LOG_ERR, @@ -344,10 +349,9 @@ onion_connection_status handler_get_track_outputs(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - syslog_server(LOG_INFO, "Request: Get track outputs"); GString *g_track_outputs = get_track_outputs_json(); onion_response_printf(res, "%s", g_track_outputs->str); - syslog_server(LOG_INFO, "Request: Get track outputs - finished"); + syslog_server(LOG_INFO, "Request: Get track outputs - done"); g_string_free(g_track_outputs, true); return OCS_PROCESSED; } else { @@ -402,10 +406,9 @@ GString *get_accessory_json(bool point_accessories) { onion_connection_status handler_get_points(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - syslog_server(LOG_INFO, "Request: Get points"); GString *g_points = get_accessory_json(true); onion_response_printf(res, "%s", g_points->str); - syslog_server(LOG_INFO, "Request: Get points - finished"); + syslog_server(LOG_INFO, "Request: Get points - done"); g_string_free(g_points, true); return OCS_PROCESSED; } else { @@ -417,10 +420,9 @@ onion_connection_status handler_get_points(void *_, onion_request *req, onion_re onion_connection_status handler_get_signals(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - syslog_server(LOG_INFO, "Request: Get signals"); GString *g_signals = get_accessory_json(false); onion_response_printf(res, "%s", g_signals->str); - syslog_server(LOG_INFO, "Request: Get signals - finished"); + syslog_server(LOG_INFO, "Request: Get signals - done"); g_string_free(g_signals, true); return OCS_PROCESSED; } else { @@ -431,7 +433,6 @@ onion_connection_status handler_get_signals(void *_, onion_request *req, onion_r GString *get_accessory_aspects_json(const char *data_id, bool is_point) { if (data_id == NULL) { - ///TODO: Discuss ret val return g_string_new(""); } t_bidib_id_list_query query; @@ -442,7 +443,6 @@ GString *get_accessory_aspects_json(const char *data_id, bool is_point) { } if (query.length <= 0 || query.ids == NULL) { - ///TODO: Discuss ret val return g_string_new(""); } @@ -456,7 +456,8 @@ GString *get_accessory_aspects_json(const char *data_id, bool is_point) { } append_end_of_list(g_aspects, false, false); append_end_of_obj(g_aspects, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_accessory_aspects_json", 32 * (query.length + 1), g_aspects->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_accessory_aspects_json", 32 * (query.length + 1), g_aspects->len); bidib_free_id_list_query(query); return g_aspects; } @@ -471,18 +472,18 @@ onion_connection_status handler_get_point_aspects(void *_, onion_request *req, return OCS_NOT_IMPLEMENTED; } - syslog_server(LOG_INFO, "Request: Get point aspects - point: %s", data_point); GString *g_aspects = get_accessory_aspects_json(data_point, true); - if (g_aspects == NULL || g_aspects->len <= 0) { + if (g_aspects->len > 0) { + onion_response_printf(res, "%s", g_aspects->str); + syslog_server(LOG_INFO, "Request: Get point aspects - point: %s - done", data_point); + g_string_free(g_aspects, true); + return OCS_PROCESSED; + } else { syslog_server(LOG_ERR, "Request: Get point aspects - point: %s - invalid point", data_point); - return OCS_NOT_IMPLEMENTED; - } else { - onion_response_printf(res, "%s", g_aspects->str); - syslog_server(LOG_INFO, "Request: Get point aspects - point: %s - finished", data_point); g_string_free(g_aspects, true); - return OCS_PROCESSED; + return OCS_NOT_IMPLEMENTED; } } else { syslog_server(LOG_ERR, @@ -503,18 +504,19 @@ onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, syslog_server(LOG_INFO, "Request: Get signal aspects - signal: %s", data_signal); GString *g_aspects = get_accessory_aspects_json(data_signal, false); - if (g_aspects == NULL || g_aspects->len <= 0) { - syslog_server(LOG_ERR, - "Request: Get signal aspects - signal: %s - invalid signal", - data_signal); - return OCS_NOT_IMPLEMENTED; - } else { + if (g_aspects->len > 0) { onion_response_printf(res, "%s", g_aspects->str); syslog_server(LOG_INFO, - "Request: Get signal aspects - signal: %s - finished", + "Request: Get signal aspects - signal: %s - done", data_signal); g_string_free(g_aspects, true); return OCS_PROCESSED; + } else { + syslog_server(LOG_ERR, + "Request: Get signal aspects - signal: %s - invalid signal", + data_signal); + g_string_free(g_aspects, true); + return OCS_NOT_IMPLEMENTED; } } else { syslog_server(LOG_ERR, @@ -525,6 +527,9 @@ onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, GString *get_segments_json() { t_bidib_id_list_query seg_query = bidib_get_connected_segments(); + // no check for empty query, as then the code here constructs a json with an + // empty list, which is good -> better tells the client that no + // segments are known than a totally empty (i.e. empty string) answer. GString *g_segments = g_string_sized_new(42 * (seg_query.length + 1)); g_string_assign(g_segments, ""); @@ -558,7 +563,8 @@ GString *get_segments_json() { } append_end_of_list(g_segments, false, added_segments > 0); append_end_of_obj(g_segments, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_segments_json", 42 * (seg_query.length + 1), g_segments->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_segments_json", 42 * (seg_query.length + 1), g_segments->len); bidib_free_id_list_query(seg_query); return g_segments; } @@ -566,10 +572,9 @@ GString *get_segments_json() { onion_connection_status handler_get_segments(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - syslog_server(LOG_INFO, "Request: Get segments"); GString *g_segments = get_segments_json(); onion_response_printf(res, "%s", g_segments->str); - syslog_server(LOG_INFO, "Request: Get segments - finished"); + syslog_server(LOG_INFO, "Request: Get segments - done"); g_string_free(g_segments, true); return OCS_PROCESSED; } else { @@ -620,7 +625,8 @@ GString *get_reversers_json() { } append_end_of_list(g_reversers, false, added_reversers > 0); append_end_of_obj(g_reversers, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_reversers_json", 48 * (rev_query.length + 1), g_reversers->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_reversers_json", 48 * (rev_query.length + 1), g_reversers->len); bidib_free_id_list_query(rev_query); return g_reversers; } @@ -628,14 +634,13 @@ GString *get_reversers_json() { onion_connection_status handler_get_reversers(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - syslog_server(LOG_INFO, "Request: Get reversers"); if (!reversers_state_update()) { syslog_server(LOG_ERR, "Request: Get reversers - unable to request state update"); return OCS_NOT_IMPLEMENTED; } GString *g_reversers = get_reversers_json(); onion_response_printf(res, "%s", g_reversers->str); - syslog_server(LOG_INFO, "Request: Get reversers - finished"); + syslog_server(LOG_INFO, "Request: Get reversers - done"); g_string_free(g_reversers, true); return OCS_PROCESSED; } else { @@ -677,7 +682,8 @@ GString *get_peripherals_json() { append_end_of_list(g_peripherals, false, added_peripherals > 0); append_end_of_obj(g_peripherals, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_peripherals_json", 64 * (per_query.length + 1), g_peripherals->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_peripherals_json", 64 * (per_query.length + 1), g_peripherals->len); bidib_free_id_list_query(per_query); return g_peripherals; } @@ -685,10 +691,9 @@ GString *get_peripherals_json() { onion_connection_status handler_get_peripherals(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - syslog_server(LOG_INFO, "Request: Get peripherals"); GString *g_peripherals = get_peripherals_json(); onion_response_printf(res, "%s", g_peripherals->str); - syslog_server(LOG_INFO, "Request: Get peripherals - finished"); + syslog_server(LOG_INFO, "Request: Get peripherals - done"); g_string_free(g_peripherals, true); return OCS_PROCESSED; } else { @@ -761,13 +766,15 @@ GString* get_granted_routes_json() { } } } + // free the GArray but not the contained strings, as it was created by shallow copy. g_array_free(route_ids, true); } pthread_mutex_unlock(&interlocker_mutex); append_end_of_list(g_granted_routes, false, routes_added > 0); append_end_of_obj(g_granted_routes, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_granted_routes_json", 64, g_granted_routes->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_granted_routes_json", 64, g_granted_routes->len); return g_granted_routes; } @@ -776,10 +783,9 @@ onion_connection_status handler_get_granted_routes(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - syslog_server(LOG_INFO, "Request: Get granted routes"); GString *g_granted_routes = get_granted_routes_json(); onion_response_printf(res, "%s", g_granted_routes->str); - syslog_server(LOG_INFO, "Request: Get granted routes - finished"); + syslog_server(LOG_INFO, "Request: Get granted routes - done"); g_string_free(g_granted_routes, true); return OCS_PROCESSED; } else { From 48e2e09152425f3025932193bac0adbd1d5582f2 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 5 Jun 2024 09:31:35 +0200 Subject: [PATCH 018/125] moved api-doc around and got rid of old basic/advanced differentiation --- .../doc/api-formats/basic/monitor_signals.json | 12 ------------ .../{advanced => }/monitor_granted-routes.json | 0 .../{advanced => }/monitor_peripherals.json | 0 .../{advanced => }/monitor_point-aspects.json | 0 .../{advanced => }/monitor_points.json | 0 .../{advanced => }/monitor_reversers.json | 0 .../{advanced => }/monitor_route.json | 0 .../{advanced => }/monitor_segments.json | 0 .../{advanced => }/monitor_signal-aspects.json | 0 .../{advanced => }/monitor_signals.json | 0 .../{advanced => }/monitor_track-outputs.json | 0 .../monitor_train-peripherals.json | 0 .../{advanced => }/monitor_train-state.json | 0 .../{advanced => }/monitor_train-states.json | 0 .../{advanced => }/monitor_trains.json | 0 .../monitor_verification-option.json | 0 .../{advanced => }/monitor_verification-url.json | 0 server/src/handler_monitor.c | 16 ++++++++++------ 18 files changed, 10 insertions(+), 18 deletions(-) delete mode 100644 server/doc/api-formats/basic/monitor_signals.json rename server/doc/api-formats/{advanced => }/monitor_granted-routes.json (100%) rename server/doc/api-formats/{advanced => }/monitor_peripherals.json (100%) rename server/doc/api-formats/{advanced => }/monitor_point-aspects.json (100%) rename server/doc/api-formats/{advanced => }/monitor_points.json (100%) rename server/doc/api-formats/{advanced => }/monitor_reversers.json (100%) rename server/doc/api-formats/{advanced => }/monitor_route.json (100%) rename server/doc/api-formats/{advanced => }/monitor_segments.json (100%) rename server/doc/api-formats/{advanced => }/monitor_signal-aspects.json (100%) rename server/doc/api-formats/{advanced => }/monitor_signals.json (100%) rename server/doc/api-formats/{advanced => }/monitor_track-outputs.json (100%) rename server/doc/api-formats/{advanced => }/monitor_train-peripherals.json (100%) rename server/doc/api-formats/{advanced => }/monitor_train-state.json (100%) rename server/doc/api-formats/{advanced => }/monitor_train-states.json (100%) rename server/doc/api-formats/{advanced => }/monitor_trains.json (100%) rename server/doc/api-formats/{advanced => }/monitor_verification-option.json (100%) rename server/doc/api-formats/{advanced => }/monitor_verification-url.json (100%) diff --git a/server/doc/api-formats/basic/monitor_signals.json b/server/doc/api-formats/basic/monitor_signals.json deleted file mode 100644 index e6e78ac5..00000000 --- a/server/doc/api-formats/basic/monitor_signals.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "signals": [ - { - "id": "signal1", - "state": "aspect_go" - }, - { - "id": "signal2", - "state": "unknown" - } - ] -} \ No newline at end of file diff --git a/server/doc/api-formats/advanced/monitor_granted-routes.json b/server/doc/api-formats/monitor_granted-routes.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_granted-routes.json rename to server/doc/api-formats/monitor_granted-routes.json diff --git a/server/doc/api-formats/advanced/monitor_peripherals.json b/server/doc/api-formats/monitor_peripherals.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_peripherals.json rename to server/doc/api-formats/monitor_peripherals.json diff --git a/server/doc/api-formats/advanced/monitor_point-aspects.json b/server/doc/api-formats/monitor_point-aspects.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_point-aspects.json rename to server/doc/api-formats/monitor_point-aspects.json diff --git a/server/doc/api-formats/advanced/monitor_points.json b/server/doc/api-formats/monitor_points.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_points.json rename to server/doc/api-formats/monitor_points.json diff --git a/server/doc/api-formats/advanced/monitor_reversers.json b/server/doc/api-formats/monitor_reversers.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_reversers.json rename to server/doc/api-formats/monitor_reversers.json diff --git a/server/doc/api-formats/advanced/monitor_route.json b/server/doc/api-formats/monitor_route.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_route.json rename to server/doc/api-formats/monitor_route.json diff --git a/server/doc/api-formats/advanced/monitor_segments.json b/server/doc/api-formats/monitor_segments.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_segments.json rename to server/doc/api-formats/monitor_segments.json diff --git a/server/doc/api-formats/advanced/monitor_signal-aspects.json b/server/doc/api-formats/monitor_signal-aspects.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_signal-aspects.json rename to server/doc/api-formats/monitor_signal-aspects.json diff --git a/server/doc/api-formats/advanced/monitor_signals.json b/server/doc/api-formats/monitor_signals.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_signals.json rename to server/doc/api-formats/monitor_signals.json diff --git a/server/doc/api-formats/advanced/monitor_track-outputs.json b/server/doc/api-formats/monitor_track-outputs.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_track-outputs.json rename to server/doc/api-formats/monitor_track-outputs.json diff --git a/server/doc/api-formats/advanced/monitor_train-peripherals.json b/server/doc/api-formats/monitor_train-peripherals.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_train-peripherals.json rename to server/doc/api-formats/monitor_train-peripherals.json diff --git a/server/doc/api-formats/advanced/monitor_train-state.json b/server/doc/api-formats/monitor_train-state.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_train-state.json rename to server/doc/api-formats/monitor_train-state.json diff --git a/server/doc/api-formats/advanced/monitor_train-states.json b/server/doc/api-formats/monitor_train-states.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_train-states.json rename to server/doc/api-formats/monitor_train-states.json diff --git a/server/doc/api-formats/advanced/monitor_trains.json b/server/doc/api-formats/monitor_trains.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_trains.json rename to server/doc/api-formats/monitor_trains.json diff --git a/server/doc/api-formats/advanced/monitor_verification-option.json b/server/doc/api-formats/monitor_verification-option.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_verification-option.json rename to server/doc/api-formats/monitor_verification-option.json diff --git a/server/doc/api-formats/advanced/monitor_verification-url.json b/server/doc/api-formats/monitor_verification-url.json similarity index 100% rename from server/doc/api-formats/advanced/monitor_verification-url.json rename to server/doc/api-formats/monitor_verification-url.json diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 5d7f2c49..0f15f118 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -121,7 +121,8 @@ GString *get_trains_json() { append_end_of_list(g_trains, false, query.length > 0); append_end_of_obj(g_trains, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_trains_json", 60 * (query.length + 1), g_trains->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_trains_json", 60 * (query.length + 1), g_trains->len); bidib_free_id_list_query(query); return g_trains; } @@ -201,7 +202,8 @@ GString *get_train_state_json(const char *data_train) { bidib_free_train_position_query(train_position_query); append_end_of_obj(g_train_state, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_train_state_json", 256, g_train_state->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_train_state_json", 256, g_train_state->len); return g_train_state; } @@ -340,7 +342,8 @@ GString *get_track_outputs_json() { } append_end_of_list(g_track_outputs, false, track_outputs_added > 0); append_end_of_obj(g_track_outputs, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_track_outputs_json", 48 * (query.length + 1), g_track_outputs->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_track_outputs_json", 48 * (query.length + 1), g_track_outputs->len); bidib_free_id_list_query(query); return g_track_outputs; } @@ -398,7 +401,8 @@ GString *get_accessory_json(bool point_accessories) { } append_end_of_list(g_accs, false, query.length > 0); append_end_of_obj(g_accs, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_accessory_json", 70 * (query.length + 1), g_accs->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_accessory_json", 70 * (query.length + 1), g_accs->len); bidib_free_id_list_query(query); return g_accs; } @@ -775,7 +779,6 @@ GString* get_granted_routes_json() { append_end_of_obj(g_granted_routes, false); //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", // "get_granted_routes_json", 64, g_granted_routes->len); - return g_granted_routes; } @@ -830,7 +833,8 @@ GString* get_route_json(const char *route_id) { append_field_str_value(g_route, "granted_to_train", route->train == NULL ? "" : route->train, false); append_end_of_obj(g_route, false); - syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", "get_route_json", 1024, g_route->len); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_route_json", 1024, g_route->len); pthread_mutex_unlock(&interlocker_mutex); return g_route; } From c18bb41ae15be9b328ba51f96c543e29ba8cc160 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 5 Jun 2024 14:54:36 +0200 Subject: [PATCH 019/125] wip api improvement --- .../api-formats/monitor_point-details.json | 8 ++ server/doc/api-formats/monitor_points.json | 2 +- server/doc/api-formats/monitor_reversers.json | 4 + server/doc/api-formats/monitor_route.json | 2 +- .../doc/api-formats/monitor_train-states.json | 8 +- server/src/handler_controller.c | 62 +++------ server/src/handler_controller.h | 8 +- server/src/handler_monitor.c | 121 +++++++++++++++--- server/src/handler_monitor.h | 4 + server/src/json_response_builder.c | 1 - 10 files changed, 144 insertions(+), 76 deletions(-) create mode 100644 server/doc/api-formats/monitor_point-details.json diff --git a/server/doc/api-formats/monitor_point-details.json b/server/doc/api-formats/monitor_point-details.json new file mode 100644 index 00000000..ad24c8ad --- /dev/null +++ b/server/doc/api-formats/monitor_point-details.json @@ -0,0 +1,8 @@ +{ + "id": "point1", + "aspects": ["normal", "reverse"], + "state": "unknown", + "segment": "seg5", + "occupied": false, + "target_state_reached": true /*this field may not be present*/ +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor_points.json b/server/doc/api-formats/monitor_points.json index 5773fd6f..f8b5365c 100644 --- a/server/doc/api-formats/monitor_points.json +++ b/server/doc/api-formats/monitor_points.json @@ -2,7 +2,7 @@ "points": [ { "id": "point1", - "state": "normal", + "state": "unknown", "target_state_reached": false }, { diff --git a/server/doc/api-formats/monitor_reversers.json b/server/doc/api-formats/monitor_reversers.json index 27792f03..dac010da 100644 --- a/server/doc/api-formats/monitor_reversers.json +++ b/server/doc/api-formats/monitor_reversers.json @@ -7,6 +7,10 @@ { "id": "r2", "state": "unknown" + }, + { + "id": "r3", + "state": "off" } ] } \ No newline at end of file diff --git a/server/doc/api-formats/monitor_route.json b/server/doc/api-formats/monitor_route.json index 869ef005..59682f49 100644 --- a/server/doc/api-formats/monitor_route.json +++ b/server/doc/api-formats/monitor_route.json @@ -9,7 +9,7 @@ "signals": ["signal36", "signal49"], "points": ["point13", "point12", "point11", "point27", "point29"], "conflicting_route_ids": [0,1,2], - "granted_conflicting_route_ids": ["41 (cargo_db)", "_comment: current function that computes the granted conflicting route-ids automatically adds the train that the conflict is granted to -> prevents simple numeral list ATM"], + "granted_conflicting_route_ids": [1,2], "clear": false, "granted_to_train": "" } \ No newline at end of file diff --git a/server/doc/api-formats/monitor_train-states.json b/server/doc/api-formats/monitor_train-states.json index 35856421..e91b6d20 100644 --- a/server/doc/api-formats/monitor_train-states.json +++ b/server/doc/api-formats/monitor_train-states.json @@ -6,7 +6,7 @@ "on_track": true, "occupied_segments": ["seg1", "seg2"], "occupied_blocks": ["block1"], - "orientation(?)": "left", + "orientation": "right", "direction": "forwards", "speed_step": 10, "detected_speed_kmh": 2, @@ -18,7 +18,7 @@ "on_track": false, "occupied_segments": [], "occupied_blocks": [], - "orientation(?)": "", + "orientation": "", "direction": "", "speed_step": 0, "detected_speed_kmh": 0, @@ -30,7 +30,7 @@ "on_track": false, "occupied_segments": [], "occupied_blocks": [], - "orientation(?)": "", + "orientation": "", "direction": "", "speed_step": 0, "detected_speed_kmh": 0, @@ -42,7 +42,7 @@ "on_track": true, "occupied_segments": ["seg58"], "occupied_blocks": ["platform4"], - "orientation(?)": "left(?)___not sure if this can be determined without a route", + "orientation": "left", "direction": "forwards", "speed_step": 0, "detected_speed_kmh": 0, diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 89749b7f..423334a4 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -123,43 +123,7 @@ void release_all_interlockers(void) { selected_interlocker_instance = -1; } - -// get_granted_route_conflicts, but using direct implementation of sectional-style checker -GArray *get_granted_route_conflicts_sectional(const char *route_id) { - if (route_id == NULL) { - return NULL; - } - GArray* conflict_route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); - - const unsigned int route_count = MAX(interlocking_table_get_size(), 1024); - char *conflict_routes[route_count]; - const size_t conflict_routes_len = - config_get_array_string_value("route", route_id, "conflicts", conflict_routes); - - for (size_t i = 0; i < conflict_routes_len; i++) { - t_interlocking_route *conflict_route = get_route(conflict_routes[i]); - if (conflict_route->train != NULL) { - if (!is_route_conflict_safe_sectional(conflict_routes[i],route_id)) { - const size_t conflict_route_id_string_len = strlen(conflict_route->id) - + strlen(conflict_route->train) + 3 + 1; - char *conflict_route_id_string = malloc(sizeof(char) * conflict_route_id_string_len); - if (conflict_route_id_string == NULL) { - syslog_server(LOG_ERR, - "get_granted_route_conflicts_sectional - failed to allocate memory" - " for conflict_route_id_string"); - g_array_free(conflict_route_ids, true); - return NULL; - } - snprintf(conflict_route_id_string, conflict_route_id_string_len, "%s (%s)", - conflict_route->id, conflict_route->train); - g_array_append_val(conflict_route_ids, conflict_route_id_string); - } - } - } - return conflict_route_ids; -} - -GArray *get_granted_route_conflicts(const char *route_id) { +GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_train_info) { if (route_id == NULL) { return NULL; } @@ -167,10 +131,7 @@ GArray *get_granted_route_conflicts(const char *route_id) { // When a sectional interlocker is in use, use the sectional checker to // check for route availability. - if (g_strrstr(selected_interlocker_name->str, "sectional") != NULL) { - // Use native implementation of sectional checker - return get_granted_route_conflicts_sectional(route_id); - } + bool sectional_in_use = (g_strrstr(selected_interlocker_name->str, "sectional") != NULL); const unsigned int route_count = MAX(interlocking_table_get_size(), 1024); char *conflict_routes[route_count]; @@ -179,9 +140,18 @@ GArray *get_granted_route_conflicts(const char *route_id) { for (size_t i = 0; i < conflict_routes_len; i++) { t_interlocking_route *conflict_route = get_route(conflict_routes[i]); if (conflict_route->train != NULL) { - const size_t conflict_route_id_string_len = strlen(conflict_route->id) - + strlen(conflict_route->train) + 3 + 1; - char *conflict_route_id_string = malloc(sizeof(char) * conflict_route_id_string_len); + if (sectional_in_use && is_route_conflict_safe_sectional(conflict_routes[i], route_id)) { + // If a sectional checker is in use and it says that this conflict is + // actually "safe" to grant, skip this conflict/dont add it to the list. + continue; + } + size_t conflict_entry_len; + if (include_conflict_train_info) { + conflict_entry_len = strlen(conflict_route->id) + 1; + } else { + conflict_entry_len = strlen(conflict_route->id) + 1 + strlen(conflict_route->train) + 3; + } + char *conflict_route_id_string = malloc(sizeof(char) * conflict_entry_len); if (conflict_route_id_string == NULL) { syslog_server(LOG_ERR, "get_granted_route_conflicts - failed to allocate memory" @@ -189,7 +159,7 @@ GArray *get_granted_route_conflicts(const char *route_id) { g_array_free(conflict_route_ids, true); return NULL; } - snprintf(conflict_route_id_string, conflict_route_id_string_len, "%s (%s)", + snprintf(conflict_route_id_string, conflict_entry_len, "%s (%s)", conflict_route->id, conflict_route->train); g_array_append_val(conflict_route_ids, conflict_route_id_string); } @@ -307,7 +277,7 @@ const char *grant_route_id(const char *train_id, const char *route_id) { pthread_mutex_lock(&interlocker_mutex); // Check whether the route can be granted t_interlocking_route * const route = get_route(route_id); - GArray * const granted_conflicts = get_granted_route_conflicts(route_id); + GArray * const granted_conflicts = get_granted_route_conflicts(route_id, false); if (granted_conflicts == NULL) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_WARNING, diff --git a/server/src/handler_controller.h b/server/src/handler_controller.h index fb7a65d2..7a480fa7 100644 --- a/server/src/handler_controller.h +++ b/server/src/handler_controller.h @@ -55,10 +55,12 @@ const int load_default_interlocker_instance(); /** * Finds conflicting routes that have been granted. * - * @param ID of route for which conflicts should be checked - * @return GArray of granted route conflicts + * @param route_id id of route for which conflicts should be checked + * @param include_conflict_train_info whether the train to which a conflicting route is granted + * shall be added for each element + * @return GArray of granted route conflicts, described by strings */ -GArray *get_granted_route_conflicts(const char *route_id); +GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_train_info); /** * Determines whether a route is physically ready for use: diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 0f15f118..6011b3f0 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -144,14 +144,12 @@ onion_connection_status handler_get_trains(void *_, onion_request *req, onion_re GString *get_train_state_json(const char *data_train) { if (data_train == NULL) { - ///TODO: Discuss what to return (NULL or empty string? Or "empty" JSON?) return g_string_new(""); } t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); if (!train_state_query.known) { bidib_free_train_state_query(train_state_query); - ///TODO: Discuss what to return (NULL or empty str? Or "empty" JSON, or containing err msg?) return g_string_new(""); } @@ -217,16 +215,17 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni } GString *ret_string = get_train_state_json(data_train); - if (ret_string == NULL || ret_string->len == 0) { - syslog_server(LOG_ERR, - "Request: Get train state - train: %s - invalid train", - data_train); - return OCS_NOT_IMPLEMENTED; - } else { + if (ret_string->len > 0) { onion_response_printf(res, "%s", ret_string->str); syslog_server(LOG_INFO, "Request: Get train state - train: %s - done", data_train); g_string_free(ret_string, true); return OCS_PROCESSED; + } else { + syslog_server(LOG_ERR, + "Request: Get train state - train: %s - invalid train", + data_train); + g_string_free(ret_string, true); + return OCS_NOT_IMPLEMENTED; } } else { syslog_server(LOG_ERR, "Request: Get train state - system not running or wrong request type"); @@ -331,9 +330,10 @@ GString *get_track_outputs_json() { case 0xFF: state_string = "query"; break; default: state_string = "off"; break; } - if (track_outputs_added++ > 0) { + if (track_outputs_added > 0) { g_string_append_c(g_track_outputs, ','); } + track_outputs_added++; append_start_of_obj(g_track_outputs, true); append_field_str_value(g_track_outputs, "id", query.ids[i], true); append_field_str_value(g_track_outputs, "state", state_string, false); @@ -364,7 +364,7 @@ onion_connection_status handler_get_track_outputs(void *_, onion_request *req, } } -GString *get_accessory_json(bool point_accessories) { +GString *get_accessories_json(bool point_accessories) { t_bidib_id_list_query query; if (point_accessories) { query = bidib_get_connected_points(); @@ -410,7 +410,7 @@ GString *get_accessory_json(bool point_accessories) { onion_connection_status handler_get_points(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - GString *g_points = get_accessory_json(true); + GString *g_points = get_accessories_json(true); onion_response_printf(res, "%s", g_points->str); syslog_server(LOG_INFO, "Request: Get points - done"); g_string_free(g_points, true); @@ -424,7 +424,7 @@ onion_connection_status handler_get_points(void *_, onion_request *req, onion_re onion_connection_status handler_get_signals(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - GString *g_signals = get_accessory_json(false); + GString *g_signals = get_accessories_json(false); onion_response_printf(res, "%s", g_signals->str); syslog_server(LOG_INFO, "Request: Get signals - done"); g_string_free(g_signals, true); @@ -435,6 +435,84 @@ onion_connection_status handler_get_signals(void *_, onion_request *req, onion_r } } +GString *get_point_details_json(const char *data_id) { + if (data_id == NULL) { + return g_string_new(""); + } + + t_bidib_id_list_query aspects_query = bidib_get_point_aspects(data_id); + if (aspects_query.length <= 0 || aspects_query.ids == NULL) { + return g_string_new(""); + } + t_bidib_unified_accessory_state_query acc_state = bidib_get_point_state(data_id); + if (!acc_state.known) { + return g_string_new(""); + } + + GString *g_details = g_string_sized_new(156); + g_string_assign(g_details, ""); + append_start_of_obj(g_details, false); + append_field_str_value(g_details, "id", data_id, true); + append_field_start_of_list(g_details, "aspects"); + + for (size_t i = 0; i < aspects_query.length; i++) { + g_string_append_printf(g_details, "%s\"%s\"", i != 0 ? ", " : "", aspects_query.ids[i]); + } + append_end_of_list(g_details, true, false); + append_field_str_value(g_details, "state", + acc_state.type == BIDIB_ACCESSORY_BOARD ? + acc_state.board_accessory_state.state_id : + acc_state.dcc_accessory_state.state_id, + true); + const char *point_segment = config_get_scalar_string_value("point", data_id, "segment"); + append_field_str_value(g_details, "segment", point_segment, true); + + append_field_bool_value(g_details, "occupied", + is_segment_occupied(point_segment), + acc_state.type == BIDIB_ACCESSORY_BOARD); + + if (acc_state.type == BIDIB_ACCESSORY_BOARD) { + append_field_bool_value(g_details, "target_state_reached", + acc_state.board_accessory_state.execution_state, false); + } + + append_end_of_obj(g_details, false); + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_point_details_json", 156, g_details->len); + bidib_free_id_list_query(aspects_query); + return g_details; +} + +onion_connection_status handler_get_point_details(void *_, onion_request *req, onion_response *res) { + build_response_header(res); + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + const char *data_point = onion_request_get_post(req, "point"); + if (data_point == NULL) { + syslog_server(LOG_ERR, "Request: Get point details - invalid parameters"); + return OCS_NOT_IMPLEMENTED; + } + + GString *g_details = get_point_details_json(data_point); + if (g_details->len > 0) { + onion_response_printf(res, "%s", g_details->str); + syslog_server(LOG_INFO, "Request: Get point details - point: %s - done", data_point); + g_string_free(g_details, true); + return OCS_PROCESSED; + } else { + syslog_server(LOG_ERR, + "Request: Get point details - point: %s - invalid point", + data_point); + g_string_free(g_details, true); + return OCS_NOT_IMPLEMENTED; + } + } else { + syslog_server(LOG_ERR, + "Request: Get point details - system not running or wrong request type"); + return OCS_NOT_IMPLEMENTED; + } +} + + GString *get_accessory_aspects_json(const char *data_id, bool is_point) { if (data_id == NULL) { return g_string_new(""); @@ -496,6 +574,10 @@ onion_connection_status handler_get_point_aspects(void *_, onion_request *req, } } +// Probably want to have a signal-details endpoint too, once we +// have more information about signals we can return; at the moment it +// is quite limited. One interesting property may be, for example, +// to know what segment->segment travel means the signal has been driven past. onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, onion_response *res) { build_response_header(res); @@ -506,7 +588,6 @@ onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, return OCS_NOT_IMPLEMENTED; } - syslog_server(LOG_INFO, "Request: Get signal aspects - signal: %s", data_signal); GString *g_aspects = get_accessory_aspects_json(data_signal, false); if (g_aspects->len > 0) { onion_response_printf(res, "%s", g_aspects->str); @@ -559,7 +640,9 @@ GString *get_segments_json() { bidib_free_id_query(id_query); } - append_end_of_list(g_segments, false, seg_state_query.data.dcc_address_cnt > 0); + ///TODO: Test difference + //append_end_of_list(g_segments, false, seg_state_query.data.dcc_address_cnt > 0); + append_end_of_list(g_segments, false, false); append_end_of_obj(g_segments, false); bidib_free_segment_state_query(seg_state_query); @@ -739,9 +822,7 @@ onion_connection_status handler_get_verification_url(void *_, onion_request *req } GString* get_granted_routes_json() { - ///TODO: test - sized new could be nice to avoid reallocs, but now how do initialize the string? - // maybe just with g_string_assign? - GString *g_granted_routes = g_string_sized_new(64); + GString *g_granted_routes = g_string_sized_new(128); g_string_assign(g_granted_routes, ""); // Old "normal" way without sized new @@ -778,7 +859,7 @@ GString* get_granted_routes_json() { append_end_of_list(g_granted_routes, false, routes_added > 0); append_end_of_obj(g_granted_routes, false); //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_granted_routes_json", 64, g_granted_routes->len); + // "get_granted_routes_json", 128, g_granted_routes->len); return g_granted_routes; } @@ -826,8 +907,8 @@ GString* get_route_json(const char *route_id) { append_field_barelist_value_from_garray_strs(g_route, "conflicting_route_ids", route->conflicts, true); - append_field_strlist_value_garray_strs(g_route, "granted_conflicting_route_ids", - get_granted_route_conflicts(route_id), true); + append_field_barelist_value_from_garray_strs(g_route, "granted_conflicting_route_ids", + get_granted_route_conflicts(route_id, false), true); append_field_bool_value(g_route, "clear", get_route_is_clear(route_id), true); append_field_str_value(g_route, "granted_to_train", diff --git a/server/src/handler_monitor.h b/server/src/handler_monitor.h index bf562991..4f828173 100644 --- a/server/src/handler_monitor.h +++ b/server/src/handler_monitor.h @@ -43,6 +43,10 @@ onion_connection_status handler_get_trains(void *_, onion_request *req, onion_connection_status handler_get_train_state(void *_, onion_request *req, onion_response *res); +///TODO: Implement +onion_connection_status handler_get_train_states(void *_, onion_request *req, + onion_response *res); + onion_connection_status handler_get_train_peripherals(void *_, onion_request *req, onion_response *res); diff --git a/server/src/json_response_builder.c b/server/src/json_response_builder.c index 9521b8f1..4db28e78 100644 --- a/server/src/json_response_builder.c +++ b/server/src/json_response_builder.c @@ -158,7 +158,6 @@ GString* append_field_start_of_obj(GString *dest, const char *field) { return dest; } -///TODO: Make newline configurable GString* append_start_of_obj(GString *dest, bool with_prepend_newline) { if (dest == NULL) { return NULL; From d099cee507a9b81566e205725bf341636148cb40 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Mon, 10 Jun 2024 10:20:27 +0200 Subject: [PATCH 020/125] train-states monitor endpoint --- .../doc/api-formats/monitor_train-states.json | 2 +- server/src/handler_monitor.c | 41 +++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) diff --git a/server/doc/api-formats/monitor_train-states.json b/server/doc/api-formats/monitor_train-states.json index e91b6d20..e42c02eb 100644 --- a/server/doc/api-formats/monitor_train-states.json +++ b/server/doc/api-formats/monitor_train-states.json @@ -1,5 +1,5 @@ { - "trains": [ + "train-states": [ { "id": "cargo_db", "grabbed": true, diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 6011b3f0..f18d2a1c 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -233,6 +233,47 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni } } +GString *get_train_states_json() { + t_bidib_id_list_query query = bidib_get_trains(); + GString *g_train_states = g_string_sized_new(256 * (query.length + 1)); + g_string_assign(g_train_states, ""); + + append_start_of_obj(g_train_states, false); + append_field_start_of_list(g_train_states, "train-states"); + + for (size_t i = 0; i < query.length; i++) { + GString *g_train_state = get_train_state_json(query.ids[i]); + g_string_append_printf(g_train_states, "%s", g_train_state->str); + g_string_free(g_train_state, false); + if (i + 1 < query.length) { + g_string_append_printf(g_train_states, "%s", ","); + } + } + append_end_of_list(g_train_states, false, query.length > 0); + append_end_of_obj(g_train_states, false); + + //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", + // "get_trains_json", 320 * (query.length + 1), g_trains->len); + bidib_free_id_list_query(query); + return g_train_states; +} + +onion_connection_status handler_get_train_states(void *_, onion_request *req, + onion_response *res) { + build_response_header(res); + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + GString *g_train_states = get_train_states_json(); + onion_response_printf(res, "%s", g_train_states->str); + syslog_server(LOG_INFO, "Request: Get train states - done"); + g_string_free(g_train_states, true); + return OCS_PROCESSED; + } else { + syslog_server(LOG_ERR, + "Request: Get train states - system not running or wrong request type"); + return OCS_NOT_IMPLEMENTED; + } +} + GString *get_train_peripherals_json(const char *data_train) { if (data_train == NULL) { return g_string_new(""); From 7bfdb46af6063942c92d482230fe3af97b451abd Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Mon, 10 Jun 2024 11:58:44 +0200 Subject: [PATCH 021/125] registered monitor endpoint and converted driver to JSON answers --- .../doc/api-formats/common_error_message.json | 3 + .../controller_get-interlocker.json | 1 + .../controller_get-interlockers.json | 1 + .../controller_upload-interlocker.json | 1 + .../api-formats/driver_common_feedback.json | 4 + server/doc/api-formats/driver_direction.json | 3 + .../doc/api-formats/driver_drive-route.json | 1 + .../api-formats/driver_emergency-stop.json | 1 + server/doc/api-formats/driver_grab-train.json | 6 + .../doc/api-formats/driver_release-train.json | 1 + .../api-formats/driver_request-route-id.json | 1 + .../doc/api-formats/driver_request-route.json | 5 + .../driver_set-calibrated-train-speed.json | 1 + .../driver_set-dcc-train-speed.json | 1 + .../driver_set-train-peripheral.json | 1 + server/src/handler_driver.c | 214 ++++++++++++++---- server/src/server.c | 1 + 17 files changed, 208 insertions(+), 38 deletions(-) create mode 100644 server/doc/api-formats/common_error_message.json create mode 100644 server/doc/api-formats/controller_get-interlocker.json create mode 100644 server/doc/api-formats/controller_get-interlockers.json create mode 100644 server/doc/api-formats/controller_upload-interlocker.json create mode 100644 server/doc/api-formats/driver_common_feedback.json create mode 100644 server/doc/api-formats/driver_direction.json create mode 100644 server/doc/api-formats/driver_drive-route.json create mode 100644 server/doc/api-formats/driver_emergency-stop.json create mode 100644 server/doc/api-formats/driver_grab-train.json create mode 100644 server/doc/api-formats/driver_release-train.json create mode 100644 server/doc/api-formats/driver_request-route-id.json create mode 100644 server/doc/api-formats/driver_request-route.json create mode 100644 server/doc/api-formats/driver_set-calibrated-train-speed.json create mode 100644 server/doc/api-formats/driver_set-dcc-train-speed.json create mode 100644 server/doc/api-formats/driver_set-train-peripheral.json diff --git a/server/doc/api-formats/common_error_message.json b/server/doc/api-formats/common_error_message.json new file mode 100644 index 00000000..5de6acc8 --- /dev/null +++ b/server/doc/api-formats/common_error_message.json @@ -0,0 +1,3 @@ +{ + "err_msg": "Something failed for reason XY" +} \ No newline at end of file diff --git a/server/doc/api-formats/controller_get-interlocker.json b/server/doc/api-formats/controller_get-interlocker.json new file mode 100644 index 00000000..30404ce4 --- /dev/null +++ b/server/doc/api-formats/controller_get-interlocker.json @@ -0,0 +1 @@ +TODO \ No newline at end of file diff --git a/server/doc/api-formats/controller_get-interlockers.json b/server/doc/api-formats/controller_get-interlockers.json new file mode 100644 index 00000000..30404ce4 --- /dev/null +++ b/server/doc/api-formats/controller_get-interlockers.json @@ -0,0 +1 @@ +TODO \ No newline at end of file diff --git a/server/doc/api-formats/controller_upload-interlocker.json b/server/doc/api-formats/controller_upload-interlocker.json new file mode 100644 index 00000000..30404ce4 --- /dev/null +++ b/server/doc/api-formats/controller_upload-interlocker.json @@ -0,0 +1 @@ +TODO \ No newline at end of file diff --git a/server/doc/api-formats/driver_common_feedback.json b/server/doc/api-formats/driver_common_feedback.json new file mode 100644 index 00000000..aef7cd36 --- /dev/null +++ b/server/doc/api-formats/driver_common_feedback.json @@ -0,0 +1,4 @@ +{ + "success": true, + "message": "something has been set to something" +} \ No newline at end of file diff --git a/server/doc/api-formats/driver_direction.json b/server/doc/api-formats/driver_direction.json new file mode 100644 index 00000000..e4c9c4cd --- /dev/null +++ b/server/doc/api-formats/driver_direction.json @@ -0,0 +1,3 @@ +{ + "direction": "forwards" +} \ No newline at end of file diff --git a/server/doc/api-formats/driver_drive-route.json b/server/doc/api-formats/driver_drive-route.json new file mode 100644 index 00000000..6bdfd465 --- /dev/null +++ b/server/doc/api-formats/driver_drive-route.json @@ -0,0 +1 @@ +-> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_emergency-stop.json b/server/doc/api-formats/driver_emergency-stop.json new file mode 100644 index 00000000..6bdfd465 --- /dev/null +++ b/server/doc/api-formats/driver_emergency-stop.json @@ -0,0 +1 @@ +-> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_grab-train.json b/server/doc/api-formats/driver_grab-train.json new file mode 100644 index 00000000..d4b693e4 --- /dev/null +++ b/server/doc/api-formats/driver_grab-train.json @@ -0,0 +1,6 @@ +{ + "success": true, + "message": "grabbed train X", + "session-id": 16516512621321, + "grab-id": 1 +} \ No newline at end of file diff --git a/server/doc/api-formats/driver_release-train.json b/server/doc/api-formats/driver_release-train.json new file mode 100644 index 00000000..6bdfd465 --- /dev/null +++ b/server/doc/api-formats/driver_release-train.json @@ -0,0 +1 @@ +-> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_request-route-id.json b/server/doc/api-formats/driver_request-route-id.json new file mode 100644 index 00000000..6bdfd465 --- /dev/null +++ b/server/doc/api-formats/driver_request-route-id.json @@ -0,0 +1 @@ +-> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_request-route.json b/server/doc/api-formats/driver_request-route.json new file mode 100644 index 00000000..f511b03e --- /dev/null +++ b/server/doc/api-formats/driver_request-route.json @@ -0,0 +1,5 @@ +{ + "success": true, + "message": "", + "granted-route-id": "123" +} \ No newline at end of file diff --git a/server/doc/api-formats/driver_set-calibrated-train-speed.json b/server/doc/api-formats/driver_set-calibrated-train-speed.json new file mode 100644 index 00000000..6bdfd465 --- /dev/null +++ b/server/doc/api-formats/driver_set-calibrated-train-speed.json @@ -0,0 +1 @@ +-> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_set-dcc-train-speed.json b/server/doc/api-formats/driver_set-dcc-train-speed.json new file mode 100644 index 00000000..6bdfd465 --- /dev/null +++ b/server/doc/api-formats/driver_set-dcc-train-speed.json @@ -0,0 +1 @@ +-> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_set-train-peripheral.json b/server/doc/api-formats/driver_set-train-peripheral.json new file mode 100644 index 00000000..6bdfd465 --- /dev/null +++ b/server/doc/api-formats/driver_set-train-peripheral.json @@ -0,0 +1 @@ +-> driver_common_feedback.json \ No newline at end of file diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index d8b024b1..1cfdc99b 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -41,6 +41,7 @@ #include "param_verification.h" #include "interlocking.h" #include "bahn_data_util.h" +#include "json_response_builder.h" pthread_mutex_t grabbed_trains_mutex = PTHREAD_MUTEX_INITIALIZER; @@ -134,7 +135,10 @@ static bool train_position_is_at(const char *train_id, const char *segment) { } static const bool is_forward_driving(const t_interlocking_route *route, const char *train_id) { - + if (route == NULL || train_id == NULL) { + syslog_server(LOG_ERR, "Is forward driving - invalid parameters"); + return true; + } t_bidib_train_position_query train_position_query = bidib_get_train_position(train_id); const bool train_is_left = train_position_query.orientation_is_left; const bool route_is_clockwise = (strcmp(route->orientation, "clockwise") == 0); @@ -788,7 +792,7 @@ static bool drive_route(const int grab_id, const char *route_id, const bool is_a static int grab_train(const char *train, const char *engine) { if (train == NULL || engine == NULL) { syslog_server(LOG_ERR, "Grab train - invalid (NULL) parameter(s)"); - return -1; + return -4; } pthread_mutex_lock(&grabbed_trains_mutex); for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { @@ -797,7 +801,7 @@ static int grab_train(const char *train, const char *engine) { syslog_server(LOG_ERR, "Grab train - train: %s engine: %s - train already grabbed", train, engine); - return -1; + return -3; } } int start = next_grab_id; @@ -809,7 +813,7 @@ static int grab_train(const char *train, const char *engine) { syslog_server(LOG_ERR, "Grab train - train: %s engine: %s - all grab ids in use", train, engine); - return -1; + return -2; } increment_next_grab_id(); } @@ -871,6 +875,54 @@ char *train_id_from_grab_id(int grab_id) { return train_id; } +GString *get_driver_common_feedback_json(bool success, const char* message) { + gsize add_len = message != 0 ? MAX(256, strlen(message)) : 0; + GString *g_feedback = g_string_sized_new(32 + add_len); + g_string_assign(g_feedback, ""); + append_start_of_obj(g_feedback, false); + append_field_bool_value(g_feedback, "success", success, true); + append_field_str_value(g_feedback, "message", message, false); + append_end_of_obj(g_feedback, false); + return g_feedback; +} + +GString *get_grab_feedback_json(bool success, const char* message, int l_session_id, int grab_id) { + gsize add_len = message != 0 ? MAX(256, strlen(message)) : 0; + GString *g_feedback = g_string_sized_new(96 + add_len); + g_string_assign(g_feedback, ""); + append_start_of_obj(g_feedback, false); + append_field_bool_value(g_feedback, "success", success, true); + append_field_str_value(g_feedback, "message", message, true); + append_field_int_value(g_feedback, "session-id", l_session_id, true); + append_field_int_value(g_feedback, "grab-id", grab_id, false); + append_end_of_obj(g_feedback, false); + return g_feedback; +} + +GString *get_req_route_feedback_json(bool success, const char* message, const char* granted_route_id) { + gsize add_len = message != 0 ? MAX(256, strlen(message)) : 0; + GString *g_feedback = g_string_sized_new(64 + add_len); + g_string_assign(g_feedback, ""); + append_start_of_obj(g_feedback, false); + append_field_bool_value(g_feedback, "success", success, true); + append_field_str_value(g_feedback, "message", message, true); + append_field_str_value(g_feedback, "granted-route-id", granted_route_id, false); + append_end_of_obj(g_feedback, false); + return g_feedback; +} + +void send_driver_common_feedback(onion_response *res, bool success, const char* message) { + GString *ret_str = get_driver_common_feedback_json(success, message); + onion_response_printf(res, "%s", ret_str->str); + g_string_free(ret_str, true); +} + +void send_req_route_feedback(onion_response *res, bool success, const char* message, + const char* granted_route_id) { + GString *ret_str = get_req_route_feedback_json(success, message, granted_route_id); + onion_response_printf(res, "%s", ret_str->str); + g_string_free(ret_str, true); +} onion_connection_status handler_grab_train(void *_, onion_request *req, onion_response *res) { build_response_header(res); @@ -879,7 +931,10 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re const char *data_engine = onion_request_get_post(req, "engine"); if (data_train == NULL || data_engine == NULL) { + GString *feedback = get_grab_feedback_json(false, "invalid parameters", 0, -1); + onion_response_printf(res, "%s", feedback->str); syslog_server(LOG_ERR, "Request: Grab train - invalid parameters"); + g_string_free(feedback, true); return OCS_NOT_IMPLEMENTED; } syslog_server(LOG_NOTICE, @@ -889,26 +944,66 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); if (!train_state_query.known) { bidib_free_train_state_query(train_state_query); + GString *feedback = get_grab_feedback_json(false, "unknown train or invalid train state", + 0, -1); + onion_response_printf(res, "%s", feedback->str); syslog_server(LOG_ERR, "Request: Grab train - train: %s engine: %s - " "unknown train or train state - abort", data_train, data_engine); + g_string_free(feedback, true); return OCS_NOT_IMPLEMENTED; } bidib_free_train_state_query(train_state_query); + + // -4: invalid params + // -3: train already grabbed + // -2: all grab IDs are in use + // -1: train engine could not be started + int grab_id = grab_train(data_train, data_engine); - if (grab_id == -1) { + GString *ret_str = NULL; + if (grab_id == -4) { + ret_str = get_grab_feedback_json(false, "invalid parameters", 0, -1); + } else if (grab_id == -3) { + ret_str = get_grab_feedback_json(false, "train has already been grabbed", 0, -1); + } else if (grab_id == -2) { + ret_str = get_grab_feedback_json(false, "all grab-IDs are in use " + "(max no. of grabbed trains reached)", 0, -1); + } else if (grab_id == -1) { + ret_str = get_grab_feedback_json(false, "internal err: failed to " + "start train engine container", 0, -1); + } else if (grab_id >= 0) { + ret_str = get_grab_feedback_json(true, "", session_id, grab_id); + } else { syslog_server(LOG_ERR, - "Request: Grab train - train: %s engine: %s - train could not be grabbed - abort", + "Request: Grab train - train: %s engine: %s - " + "unexpected return from grab_train", data_train, data_engine); - return OCS_NOT_IMPLEMENTED; + ret_str = get_grab_feedback_json(false, "internal err: unexpected " + "return from grab_train", 0, -1); + } + if (ret_str != NULL) { + onion_response_printf(res, "%s", ret_str->str); + if (grab_id >= 0) { + syslog_server(LOG_ERR, + "Request: Grab train - train: %s engine: %s - " + "train could not be grabbed - abort", + data_train, data_engine); + } else { + syslog_server(LOG_NOTICE, + "Request: Grab train - train: %s engine: %s - finish", + data_train, data_engine); + } + g_string_free(ret_str, true); + return grab_id > -1 ? OCS_PROCESSED : OCS_NOT_IMPLEMENTED; } else { - syslog_server(LOG_NOTICE, - "Request: Grab train - train: %s engine: %s - finish", + syslog_server(LOG_ERR, + "Request: Grab train - train: %s engine: %s - " + "failed to build reply message - abort", data_train, data_engine); - onion_response_printf(res, "%ld,%d", session_id, grab_id); - return OCS_PROCESSED; + return OCS_NOT_IMPLEMENTED; } } else { syslog_server(LOG_ERR, "Request: Grab train - system not running or wrong request type"); @@ -925,6 +1020,7 @@ onion_connection_status handler_release_train(void *_, onion_request *req, onion const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (client_session_id != session_id) { + send_driver_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Release train - grab id: %d - invalid session id: %s", grab_id, data_session_id); @@ -934,6 +1030,7 @@ onion_connection_status handler_release_train(void *_, onion_request *req, onion // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { + send_driver_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Release train - grab id: %d - invalid grab id", grab_id); return OCS_NOT_IMPLEMENTED; } @@ -959,12 +1056,14 @@ onion_connection_status handler_release_train(void *_, onion_request *req, onion bidib_free_train_state_query(train_state_query); if (!release_train(grab_id)) { + send_driver_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Release train - grab id: %d train: %s - invalid grab id - abort", grab_id, train_id); free(train_id); return OCS_NOT_IMPLEMENTED; } else { + send_driver_common_feedback(res, true, "released train"); syslog_server(LOG_NOTICE, "Request: Release train - grab id: %d train: %s - finish", grab_id, train_id); @@ -988,9 +1087,11 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (data_source_name == NULL || data_destination_name == NULL) { + send_req_route_feedback(res, false, "invalid parameters", ""); syslog_server(LOG_ERR, "Request: Request train route - invalid parameters"); return OCS_NOT_IMPLEMENTED; } else if (client_session_id != session_id) { + send_req_route_feedback(res, false, "invalid session-id", ""); syslog_server(LOG_ERR, "Request: Request train route - from: %s to: %s - invalid session id", data_source_name, data_destination_name); @@ -1000,6 +1101,7 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { + send_req_route_feedback(res, false, "invalid grab-id", ""); syslog_server(LOG_ERR, "Request: Request train route - from: %s to: %s - invalid grab id", data_source_name, data_destination_name); @@ -1014,33 +1116,37 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion GString *route_id = grant_route(train_id, data_source_name, data_destination_name); if (route_id->str != NULL && params_check_is_number(route_id->str)) { syslog_server(LOG_NOTICE, - "Request: Request train route - train: %s from: %s to: %s - route %s granted", + "Request: Request train route - train: %s from: %s to: %s" + " - route %s granted", train_id, data_source_name, data_destination_name, route_id->str); - onion_response_printf(res, "%s", route_id->str); + send_req_route_feedback(res, true, "", route_id->str); } else { onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_WARNING, - "Request: Request train route - train: %s from: %s to: %s - route %s not granted", + "Request: Request train route - train: %s from: %s to: %s" + " - route %s not granted", train_id, data_source_name, data_destination_name, route_id->str); - if (strcmp(route_id->str, "no_interlocker") == 0) { - onion_response_printf(res, "No interlocker has been selected for use"); + send_req_route_feedback(res, false, "No interlocker has been selected for use", ""); } else if (strcmp(route_id->str, "no_routes") == 0) { - onion_response_printf(res, - "No routes possible from %s to %s", - data_source_name, data_destination_name); + send_req_route_feedback(res, false, "No routes possible", ""); } else if (strcmp(route_id->str, "not_grantable") == 0) { - onion_response_printf(res, "Route found conflicts with others"); + send_req_route_feedback(res, false, "Route conflicts with granted route(s)", ""); } else if (strcmp(route_id->str, "not_clear") == 0) { - onion_response_printf(res, - "Route found has occupied tracks or source signal is not stop"); + send_req_route_feedback(res, false, "Route found has occupied tracks or " + "source signal is not stop", ""); } else { - onion_response_printf(res, "Route could not be granted (%s)", route_id->str); + GString *aux = g_string_new("Route could not be granted"); + if (route_id != NULL) { + g_string_append_printf(aux, " (%s)", route_id->str); + } + send_req_route_feedback(res, false, aux->str, ""); + g_string_free(aux, true); } + } syslog_server(LOG_NOTICE, "Request: Request train route - train: %s from: %s to: %s - finish", train_id, data_source_name, data_destination_name); - } g_string_free(route_id, true); free(train_id); return OCS_PROCESSED; @@ -1064,9 +1170,11 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on const char *route_id = params_check_route_id(data_route_id); if (strcmp(route_id, "") == 0) { + send_driver_common_feedback(res, false, "invalid route-id"); syslog_server(LOG_ERR, "Request: Request train route id - invalid route id"); return OCS_NOT_IMPLEMENTED; } else if (client_session_id != session_id) { + send_driver_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Request train route id - route: %s - invalid session id", route_id); @@ -1076,6 +1184,7 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { + send_driver_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Request train route id - route: %s - invalid grab id", route_id); @@ -1090,27 +1199,24 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on const char *result = grant_route_id(train_id, route_id); if (strcmp(result, "granted") == 0) { - onion_response_printf(res, "%s", result); + send_driver_common_feedback(res, true, result); syslog_server(LOG_NOTICE, "Request: Request train route id - train: %s route: %s - route granted", - train_id, route_id, result); + train_id, route_id); } else { onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_WARNING, "Request: Request train route id - train: %s route: %s - route not granted (%s)", train_id, route_id, result); + if (strcmp(result, "not_grantable") == 0) { - onion_response_printf(res, - "Route %s is not available or has conflicts with others", - route_id); + send_driver_common_feedback(res, false, "Route not available or has " + "conflicts with granted route(s)"); } else if (strcmp(result, "not_clear") == 0) { - onion_response_printf(res, - "Route %s has occupied tracks or source signal is not stop", - route_id); + send_driver_common_feedback(res, false, "Route has occupied tracks or " + "source signal is not stop"); } else { - onion_response_printf(res, - "Route %s could not be granted", - route_id); + send_driver_common_feedback(res, false, "Route could not be granted"); } } syslog_server(LOG_NOTICE, @@ -1134,19 +1240,24 @@ onion_connection_status handler_driving_direction(void *_, onion_request *req, const char *route_id = params_check_route_id(data_route_id); if (data_train == NULL) { syslog_server(LOG_ERR, "Request: Driving direction - train id is NULL"); + onion_response_printf(res, "{\n\"err_msg\": \"Invalid train-id parameter\"\n}"); return OCS_NOT_IMPLEMENTED; } else if (strcmp(route_id, "") == 0) { syslog_server(LOG_ERR, "Request: Driving direction - train: %s - invalid route id", data_train); + onion_response_printf(res, "{\n\"err_msg\": \"Invalid route-id parameter\"\n}"); return OCS_NOT_IMPLEMENTED; } syslog_server(LOG_INFO, "Request: Driving direction - train: %s - start", data_train); pthread_mutex_lock(&interlocker_mutex); const t_interlocking_route *route = get_route(route_id); - onion_response_printf(res, "%s", - is_forward_driving(route, data_train) ? "forwards" : "backwards"); + if (is_forward_driving(route, data_train)) { + onion_response_printf(res, "{\n\"direction\": \"forwards\"\n}"); + } else { + onion_response_printf(res, "{\n\"direction\": \"backwards\"\n}"); + } pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_INFO, "Request: Driving direction - train: %s - finish", data_train); return OCS_PROCESSED; @@ -1171,12 +1282,15 @@ onion_connection_status handler_drive_route(void *_, onion_request *req, onion_r const char *mode = params_check_mode(data_mode); if (client_session_id != session_id) { + send_driver_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Drive route - invalid session id"); return OCS_NOT_IMPLEMENTED; } else if (strcmp(mode, "") == 0) { + send_driver_common_feedback(res, false, "invalid driving mode"); syslog_server(LOG_ERR, "Request: Drive route - invalid driving mode"); return OCS_NOT_IMPLEMENTED; } else if (strcmp(route_id, "") == 0) { + send_driver_common_feedback(res, false, "invalid route-id"); syslog_server(LOG_ERR, "Request: Drive route - invalid route id"); return OCS_NOT_IMPLEMENTED; } @@ -1194,13 +1308,14 @@ onion_connection_status handler_drive_route(void *_, onion_request *req, onion_r const bool is_automatic = (strcmp(mode, "automatic") == 0); if (drive_route(grab_id, route_id, is_automatic)) { - onion_response_printf(res, "Route %s driving completed", route_id); + send_driver_common_feedback(res, true, "Route driving completed"); syslog_server(LOG_NOTICE, "Request: Drive route - route: %s train: %s drive mode: %s - finish", route_id, train_id, mode); free(train_id); return OCS_PROCESSED; } else { + send_driver_common_feedback(res, false, "Route driving aborted"); syslog_server(LOG_ERR, "Request: Drive route - route: %s train: %s drive mode: %s - " "driving failed - abort", @@ -1228,6 +1343,7 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, int speed = params_check_speed(data_speed); if (client_session_id != session_id) { + send_driver_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid session id"); return OCS_NOT_IMPLEMENTED; } @@ -1235,15 +1351,18 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); + send_driver_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid grab id"); return OCS_NOT_IMPLEMENTED; } else if (speed == 999) { + send_driver_common_feedback(res, false, "bad speed"); syslog_server(LOG_ERR, "Request: Set dcc train speed - train: %s speed: %d - bad speed", grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_NOT_IMPLEMENTED; } else if (data_track_output == NULL) { + send_driver_common_feedback(res, false, "invalid track output"); syslog_server(LOG_ERR, "Request: Set dcc train speed - train: %s speed: %d - invalid track output", grabbed_trains[grab_id].name->str, speed); @@ -1261,6 +1380,7 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, syslog_server(LOG_NOTICE, "Request: Set dcc train speed - train: %s speed: %d - finish", grabbed_trains[grab_id].name->str, speed); + send_driver_common_feedback(res, true, ""); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; } else { @@ -1284,6 +1404,7 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, int speed = params_check_calibrated_speed(data_speed); if (client_session_id != session_id) { + send_driver_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid session id"); return OCS_NOT_IMPLEMENTED; } @@ -1291,15 +1412,18 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); + send_driver_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid grab id"); return OCS_NOT_IMPLEMENTED; } else if (speed == 999) { + send_driver_common_feedback(res, false, "bad speed"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - train: %s speed: %d - bad speed", grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_NOT_IMPLEMENTED; } else if (data_track_output == NULL) { + send_driver_common_feedback(res, false, "invalid track output"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - train: %s speed: %d - " "invalid track output", @@ -1313,6 +1437,7 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, grabbed_trains[grab_id].name->str, speed); if (bidib_set_calibrated_train_speed(grabbed_trains[grab_id].name->str, speed, data_track_output)) { + send_driver_common_feedback(res, false, "invalid parameters"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - train: %s speed: %d - " "invalid parameters - abort", @@ -1321,6 +1446,7 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); + send_driver_common_feedback(res, true, ""); syslog_server(LOG_NOTICE, "Request: Set calibrated train speed - train: %s speed: %d - finish", grabbed_trains[grab_id].name->str, speed); @@ -1347,6 +1473,7 @@ onion_connection_status handler_set_train_emergency_stop(void *_, int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (client_session_id != session_id) { + send_driver_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid session id"); return OCS_NOT_IMPLEMENTED; } @@ -1354,9 +1481,11 @@ onion_connection_status handler_set_train_emergency_stop(void *_, pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); + send_driver_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid grab id"); return OCS_NOT_IMPLEMENTED; } else if (data_track_output == NULL) { + send_driver_common_feedback(res, false, "invalid track output"); syslog_server(LOG_ERR, "Request: Set train emergency stop - train: %s - invalid track output", grabbed_trains[grab_id].name->str); @@ -1368,6 +1497,7 @@ onion_connection_status handler_set_train_emergency_stop(void *_, grabbed_trains[grab_id].name->str); if (bidib_emergency_stop_train(grabbed_trains[grab_id].name->str, data_track_output)) { + send_driver_common_feedback(res, false, "invalid parameters"); syslog_server(LOG_ERR, "Request: Set train emergency stop - train: %s - invalid parameters - abort", grabbed_trains[grab_id].name->str); @@ -1375,6 +1505,7 @@ onion_connection_status handler_set_train_emergency_stop(void *_, return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); + send_driver_common_feedback(res, true, ""); syslog_server(LOG_NOTICE, "Request: Set train emergency stop - train: %s - finish", grabbed_trains[grab_id].name->str); @@ -1404,6 +1535,7 @@ onion_connection_status handler_set_train_peripheral(void *_, int state = params_check_state(data_state); if (client_session_id != session_id) { + send_driver_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set train peripheral - invalid session id"); return OCS_NOT_IMPLEMENTED; } @@ -1411,21 +1543,25 @@ onion_connection_status handler_set_train_peripheral(void *_, pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); + send_driver_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set train peripheral - invalid grab id"); return OCS_NOT_IMPLEMENTED; } else if (state == -1) { + send_driver_common_feedback(res, false, "invalid peripheral state"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s - invalid state", grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_NOT_IMPLEMENTED; } else if (data_peripheral == NULL) { + send_driver_common_feedback(res, false, "invalid peripheral"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s - invalid peripheral", grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_NOT_IMPLEMENTED; } else if (data_track_output == NULL) { + send_driver_common_feedback(res, false, "invalid track output"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s peripheral: %s - " "invalid track output", @@ -1440,6 +1576,7 @@ onion_connection_status handler_set_train_peripheral(void *_, if (bidib_set_train_peripheral(grabbed_trains[grab_id].name->str, data_peripheral, state, data_track_output)) { + send_driver_common_feedback(res, false, "invalid parameters"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s " "peripheral: %s state: 0x%02x - invalid parameters - abort", @@ -1448,6 +1585,7 @@ onion_connection_status handler_set_train_peripheral(void *_, return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); + send_driver_common_feedback(res, true, ""); syslog_server(LOG_NOTICE, "Request: Set train peripheral - train: %s peripheral: %s state: 0x%02x" " - finish", diff --git a/server/src/server.c b/server/src/server.c index af75327e..c8d787fa 100644 --- a/server/src/server.c +++ b/server/src/server.c @@ -194,6 +194,7 @@ int main(int argc, char **argv) { // --- monitor functions --- onion_url_add(urls, "monitor/trains", handler_get_trains); onion_url_add(urls, "monitor/train-state", handler_get_train_state); + onion_url_add(urls, "monitor/train-states", handler_get_train_states); onion_url_add(urls, "monitor/train-peripherals", handler_get_train_peripherals); onion_url_add(urls, "monitor/track-outputs", handler_get_track_outputs); onion_url_add(urls, "monitor/points", handler_get_points); From 5c4c54b7fa5ccb9bb0b01047876fca10da438546 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Mon, 10 Jun 2024 11:59:28 +0200 Subject: [PATCH 022/125] start with prepared python client based on JSON answer format --- client/swtbahn-json | 1133 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1133 insertions(+) create mode 100644 client/swtbahn-json diff --git a/client/swtbahn-json b/client/swtbahn-json new file mode 100644 index 00000000..6e2a7cbe --- /dev/null +++ b/client/swtbahn-json @@ -0,0 +1,1133 @@ +#!/usr/bin/env python3 + +""" + +Copyright (C) 2024 University of Bamberg, Software Technologies Research Group +, + +This file is part of the SWTbahn command line interface (swtbahn-cli), which is +a client-server application to interactively control a BiDiB model railway. + +swtbahn-cli is licensed under the GNU GENERAL PUBLIC LICENSE (Version 3), see +the LICENSE file at the project's top-level directory for details or consult +. + +swtbahn-cli is free software: you can redistribute it and/or modify it under the +terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or any later version. + +swtbahn-cli is a RESEARCH PROTOTYPE and distributed WITHOUT ANY WARRANTY, without +even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +PURPOSE. See the GNU General Public License for more details. + +The following people contributed to the conception and realization of the +present swtbahn-cli (in alphabetic order by surname): + +- Nicolas Gross +- Bernhard Luedtke + +""" + +import click, yaml, requests + + + +# ------------------------ +# --- global variables --- +# ------------------------ + +config_file = "swtbahn-config.yml" +hostname = "" +default_track_output = "" +port = 0 +session_id = 0 +grab_id = 0 +server = "" + + + +# ----------------------- +# --- config handling --- +# ----------------------- + +def create_config(hostname, port, default_output): + try: + data = {'hostname': hostname, 'port': port, + 'default_track_output': default_output, 'session_id': 0, + 'grab_id': -1} + with open(config_file, 'w') as outfile: + yaml.dump(data, outfile, default_flow_style=False) + click.echo("Config saved") + except Exception as e: + click.echo(e, err=True) + return + global server + server = "http://" + hostname + ":" + str(port) + click.echo("Connection test:") + try: + response = requests.get(server) + if (response.status_code != requests.codes.ok): + click.echo("No SWTbahn server on " + server, err=True) + else: + click.echo("SWTbahn server found on " + server) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +def update_session_and_grab_id(session_id, grab_id): + try: + with open(config_file) as infile: + config = yaml.safe_load(infile) + config['session_id'] = session_id + config['grab_id'] = grab_id + with open(config_file, 'w') as outfile: + yaml.dump(config, outfile, default_flow_style=False) + except Exception as e: + click.echo(e, err=True) + + +def parse_config(): + try: + with open(config_file) as infile: + config = yaml.safe_load(infile) + global hostname, port, default_track_output, session_id, grab_id, server + hostname = config['hostname'] + port = config['port'] + default_track_output = config['default_track_output'] + session_id = config['session_id'] + grab_id = config['grab_id'] + server = "http://" + hostname + ":" + str(port) + return False + except Exception as e: + return True + + + +# ------------------------------ +# --- command line interface --- +# ------------------------------ + + +@click.group(help="Command-line interface for controlling the SWTbahn. " + "Use the config command first to set the hostname and port") +def cli(): + pass + + +@click.command(help="Configure hostname and port") +@click.argument('hostname') +@click.argument('port', type=click.IntRange(0, 65535)) +@click.argument('default_track_output') +def config(hostname, port, default_track_output): + create_config(hostname, port, default_track_output) + + +# --- admin --- + +@click.group(help="Admin functionality") +def admin(): + pass + + +@click.command(help="Start up the SWTbahn") +def startup(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/admin/startup") + if (response.status_code == requests.codes.ok): + click.echo("System has started up\n") + else: + click.echo("System already running or startup failed\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Shut down the SWTbahn") +def shutdown(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/admin/shutdown") + if (response.status_code == requests.codes.ok): + click.echo("System is stopping\n") + update_session_and_grab_id(0, -1) + else: + click.echo("System not running or shutdown failed\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Set the power state of a track output") +@click.argument('state', type=click.Choice(['off', 'stop', 'soft_stop', 'go'])) +def set_track_output(state): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + mapping = { + 'off': 0, + 'stop': 1, + 'soft_stop': 2, + 'go': 3 + } + response = requests.post(server + "/admin/set-track-output", + data = {'state': mapping.get(state)}) + if (response.status_code == requests.codes.ok): + click.echo("Track output state set\n") + else: + click.echo("System not running or setting the track output failed\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + +@click.command(help="Set whether plugins will be verified upon upload") +@click.argument('verification-option', type=click.Choice(['true', 'false'])) +def set_verification_option(verification_option): + if(parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/admin/set-verification-option", + data = {'verification-option': verification_option}) + if (response.status_code == requests.codes.ok): + click.echo("Verification option set to " + verification_option + "\n") + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + +@click.command(help="Set the url of the verification server to use for verification on upload") +@click.argument('verification-url', type=click.STRING) +def set_verification_url(verification_url): + if(parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/admin/set-verification-url", + data = {'verification-url': verification_url}) + if (response.status_code == requests.codes.ok): + click.echo("Verification url set to " + verification_url + "\n") + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + +@click.command(name="release", help="Release a train") +@click.argument('train') +def admin_release(train): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/admin/release-train", + data = {'train': train}) + if (response.status_code == requests.codes.ok): + click.echo("Released grabbed train\n") + else: + click.echo("System not running or train not grabbed!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(name="set-dcc-speed", help="Set the dcc speed step of a train") +@click.option('--backwards', '-b', help="The rear end of the train moves forward", + is_flag=True) +@click.option('--track_output', '-t', help="Use another track output than the " + "default one", default="") +@click.argument('train') +@click.argument('speed', type=click.IntRange(0, 126)) +def admin_set_dcc_speed(train, backwards, speed, track_output): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server, default_track_output + if (backwards and speed > 0): + speed *= -1 + if (track_output == ""): + track_output = default_track_output + try: + response = requests.post(server + "/admin/set-dcc-train-speed", + data = {'train': train, 'speed': speed, 'track-output': track_output}) + if (response.status_code == requests.codes.ok): + click.echo("DCC train speed set to " + str(speed) + "\n") + else: + click.echo("System not running or invalid track output!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +# --- controller --- + +@click.group(help="Controller functionality") +def controller(): + pass + + +@click.command(help="Release a route") +@click.argument('route-id', type=int) +def release_route(route_id): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + try: + response = requests.post(server + "/controller/release-route", + data = {'route-id': route_id}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "Route " + str(route_id) + " released\n") + else: + click.echo("System not running or invalid track output!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Switch a point") +@click.argument('point') +@click.argument('state') +def set_point(point, state): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/controller/set-point", + data = {'point': point, 'state': state}) + if (response.status_code == requests.codes.ok): + click.echo("Point " + point + " set to " + state + " \n") + else: + click.echo("System not running or invalid state!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Set a signal") +@click.argument('signal') +@click.argument('state') +def set_signal(signal, state): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/controller/set-signal", + data = {'signal': signal, 'state': state}) + if (response.status_code == requests.codes.ok): + click.echo("Signal " + signal + " set to " + state + " \n") + else: + click.echo("System not running or invalid state!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Set a peripheral") +@click.argument('peripheral') +@click.argument('state') +def set_peripheral(peripheral, state): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/controller/set-peripheral", + data = {'peripheral': peripheral, 'state': state}) + if (response.status_code == requests.codes.ok): + click.echo("Peripheral " + peripheral + " set to " + state + " \n") + else: + click.echo("System not running or invalid state!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get the interlocker in use") +def get_interlocker(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/controller/get-interlocker") + if (response.status_code == requests.codes.ok): + click.echo(response.text + "\n") + else: + click.echo("System not running or invalid state!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Set an interlocker to use") +@click.argument('interlocker') +def set_interlocker(interlocker): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/controller/set-interlocker", + data = {'interlocker': interlocker}) + if (response.status_code == requests.codes.ok): + click.echo("Interlocker set to " + interlocker + " \n") + else: + click.echo("System not running or invalid state!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Unset an interlocker from use") +@click.argument('interlocker') +def unset_interlocker(interlocker): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/controller/unset-interlocker", + data = {'interlocker': interlocker}) + if (response.status_code == requests.codes.ok): + click.echo("Interlocker " + interlocker + " is unset \n") + else: + click.echo("System not running or invalid state!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Upload an interlocker. Absolute path to an BahnDSL (*.bahn) file") +@click.argument('filepath', type=click.Path(exists=True)) +def upload_interlocker(filepath): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/upload/interlocker", + files = {'file': open(filepath, 'r')}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "Interlocker uploaded\n") + else: + click.echo("System not running or invalid state!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Delete an interlocker") +@click.argument('interlocker-name') +def delete_interlocker(interlocker_name): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/upload/remove-interlocker", + data = {'interlocker-name': interlocker_name}) + if (response.status_code == requests.codes.ok): + click.echo("Interlocker " + interlocker_name + " deleted\n") + else: + click.echo("Interlocker still in use, or system not running or invalid state!\n", + err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a list of interlockers") +def get_interlocker_list(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/upload/refresh-interlockers") + if (response.status_code == requests.codes.ok): + click.echo(response.text.replace(",", "\n")) + else: + click.echo("System not running or invalid state!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +# --- driver --- + +@click.group(help="Driver functionality") +def driver(): + pass + + +@click.command(help="Grab a train") +@click.argument('train') +@click.option('--engine', '-e', help="The train engine behaviour to use", + default="libtrain_engine_default (unremovable)") +def grab(train, engine): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global session_id, grab_id, server + if (session_id == 0 and grab_id == -1): + try: + response = requests.post(server + "/driver/grab-train", + data = {'train': train, 'engine': engine}) + if (response.status_code == requests.codes.ok): + ids = response.text.split(",") + update_session_and_grab_id(int(ids[0]), int(ids[1])) + click.echo("Grabbed train " + train + "\n") + else: + click.echo("System not running or train not available!\n", + err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + else: + click.echo("You can only grab one train!") + return + + +def process_id_feedback(feedback, success_message): + if (feedback == "invalid session id"): + update_session_and_grab_id(0, -1) + click.echo("Session id has become invalid\n", err=True) + elif (feedback == "invalid grab id"): + update_session_and_grab_id(0, -1) + click.echo("Grab id was invalid\n", err=True) + else: + click.echo(success_message) + + +@click.command(help="Release your train") +def release(): + global session_id, grab_id, server + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + elif (session_id == 0 and grab_id == -1): + click.echo("No train grabbed!") + else: + try: + response = requests.post(server + "/driver/release-train", + data = {'session-id': session_id, 'grab-id': grab_id}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "Released grabbed train\n") + update_session_and_grab_id(0, -1) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Request a route for your train from a source to a destination signal") +@click.argument('source') +@click.argument('destination') +def request_route(source, destination): + global session_id, grab_id, server + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + elif (session_id == 0 and grab_id == -1): + click.echo("No train grabbed!") + else: + try: + response = requests.post(server + "/driver/request-route", + data = {'session-id': session_id, 'grab-id': grab_id, + 'source': source, 'destination': destination}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "Route " + response.text + + " from " + source + " to " + destination + " has been granted\n") + else: + click.echo("Route from " + source + " to " + destination + + " has not been granted,\n" + + "or system not running or invalid track output!\n", + err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Request a specific route ID for your train ") +@click.argument('route-id') +def request_route_id(route_id): + global session_id, grab_id, server + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + elif (session_id == 0 and grab_id == -1): + click.echo("No train grabbed!") + else: + try: + response = requests.post(server + "/driver/request-route-id", + data = {'session-id': session_id, 'grab-id': grab_id, + 'route-id': route_id}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "Route " + route_id + " has been granted\n") + else: + click.echo("Route " + route_id + " has not been granted,\n" + + "or system not running or invalid track output!\n", + err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a train's required physical driving direction for a given route") +@click.argument('train') +@click.argument('route-id') +def direction(train, route_id): + global server + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + try: + response = requests.post(server + "/driver/direction", + data = {'session-id': session_id, 'train': train, + 'route-id': route_id}) + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Drive along a granted route in automatic or manual mode") +@click.argument('mode') +@click.argument('route-id') +def drive_route(mode, route_id): + global session_id, grab_id, server + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + elif (session_id == 0 and grab_id == -1): + click.echo("No train grabbed!") + else: + try: + response = requests.post(server + "/driver/drive-route", + data = {'session-id': session_id, 'grab-id': grab_id, + 'mode': mode, 'route-id': route_id}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "Driving along route " + route_id + + " completed\n") + else: + click.echo("Could not drive along route " + route_id + ",\n" + + "or system not running or invalid track output!\n", + err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Set the dcc speed step of your train") +@click.option('--backwards', '-b', help="The rear end of the train moves forward", + is_flag=True) +@click.option('--track_output', '-t', help="Use another track output than the " + "default one", default="") +@click.argument('speed', type=click.IntRange(0, 126)) +def set_dcc_speed(backwards, speed, track_output): + global session_id, grab_id, server, default_track_output + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + elif (session_id == 0 and grab_id == -1): + click.echo("No train grabbed!") + else: + if (backwards and speed > 0): + speed *= -1 + if (track_output == ""): + track_output = default_track_output + try: + response = requests.post(server + "/driver/set-dcc-train-speed", + data = {'session-id': session_id, 'grab-id': grab_id, + 'speed': speed, 'track-output': track_output}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "DCC train speed set to " + + str(speed) + "\n") + else: + click.echo("System not running or invalid track output!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Set the calibrated speed step of your train") +@click.option('--backwards', '-b', help="The rear end of the train moves forward", + is_flag=True) +@click.option('--track_output', '-t', help="Use another track output than the " + "default one", default="") +@click.argument('speed', type=click.IntRange(0, 9)) +def set_calibrated_speed(backwards, speed, track_output): + global session_id, grab_id, server, default_track_output + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + elif (session_id == 0 and grab_id == -1): + click.echo("No train grabbed!") + else: + if (backwards and speed > 0): + speed *= -1 + if (track_output == ""): + track_output = default_track_output + try: + response = requests.post(server + "/driver/set-calibrated-train-speed", + data = {'session-id': session_id, 'grab-id': grab_id, + 'speed': speed, 'track-output': track_output}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "Calibrated train speed set " + "to " + str(speed) + "\n") + else: + click.echo("System not running or invalid track output!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Emergency stop your train") +@click.option('--track_output', '-t', help="Use another track output than the " + "default one", default="") +def emergency_stop(track_output): + global session_id, grab_id, server, default_track_output + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + elif (session_id == 0 and grab_id == -1): + click.echo("No train grabbed!") + else: + if (track_output == ""): + track_output = default_track_output + try: + response = requests.post(server + "/driver/set-train-emergency-stop", + data = {'session-id': session_id, 'grab-id': grab_id, + 'track-output': track_output}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "Train emergency stopped\n") + else: + click.echo("System not running or invalid track output!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Set a peripheral of your train") +@click.option('--track_output', '-t', help="Use another track output than the " + "default one", default="") +@click.argument('peripheral') +@click.argument('state', type=click.Choice(['off', 'on'])) +def set_train_peripheral(peripheral, state, track_output): + global session_id, grab_id, server, default_track_output + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + elif (session_id == 0 and grab_id == -1): + click.echo("No train grabbed!") + else: + if (track_output == ""): + track_output = default_track_output + try: + mapping = { + 'off': 0, + 'on': 1, + } + response = requests.post(server + "/driver/set-train-peripheral", + data = {'session-id': session_id, 'grab-id': grab_id, + 'peripheral': peripheral, 'state': mapping.get(state), + 'track-output': track_output}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "Train peripheral " + + peripheral + " set to " + state + "\n") + else: + click.echo("System not running, invalid peripheral or invalid " + "track output!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Upload a train engine. Absolute path to an SCCharts (*.sctx) file") +@click.argument('filepath', type=click.Path(exists=True)) +def upload_engine(filepath): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/upload/engine", + files = {'file': open(filepath, 'r')}) + if (response.status_code == requests.codes.ok): + process_id_feedback(response.text, "Train engine uploaded\n") + else: + click.echo("System not running or invalid state!\n", + err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Delete a train engine") +@click.argument('engine-name') +def delete_engine(engine_name): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/upload/remove-engine", + data = {'engine-name': engine_name}) + if (response.status_code == requests.codes.ok): + click.echo("Train engine " + engine_name + " deleted\n") + else: + click.echo("Train engine still in use, or system not running or invalid state!\n", + err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a list of train engines") +def get_engine_list(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/upload/refresh-engines") + if (response.status_code == requests.codes.ok): + click.echo(response.text.replace(",", "\n")) + else: + click.echo("System not running or invalid state!\n", + err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +# --- monitor --- + +@click.group(help="Monitor functionality") +def monitor(): + pass + + +@click.command(help="Get a list of trains") +def get_trains(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/trains") + if (response.status_code == requests.codes.ok): + if (response.text == ""): + click.echo("No trains available") + else: + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get the state of a train") +@click.argument('train') +def get_train_state(train): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/train-state", + data = {'train': train}) + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running or train unknown!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a list of peripherals of a train") +@click.argument('train') +def get_train_peripherals(train): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/train-peripherals", + data = {'train': train}) + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running or train unknown!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a list of track outputs") +def get_track_outputs(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/track-outputs") + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a list of points") +def get_points(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/points") + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a list of signals") +def get_signals(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/signals") + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get the aspects of a point") +@click.argument('point') +def get_point_aspects(point): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/point-aspects", + data = {'point': point}) + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running or point unknown!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get the aspects of a signal") +@click.argument('signal') +def get_signal_aspects(signal): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/signal-aspects", + data = {'signal': signal}) + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running or signal unknown!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a list of segments") +def get_segments(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/segments") + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a list of reversers") +def get_reversers(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/reversers") + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a list of peripherals") +def get_peripherals(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/peripherals") + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + +@click.command(help="Get whether plugins will be verified upon upload") +def get_verification_option(): + if(parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.get(server + "/monitor/verification-option") + if (response.status_code == requests.codes.ok): + click.echo(response.text + "\n") + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + +@click.command(help="Get the url to the verification server") +def get_verification_url(): + if(parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.get(server + "/monitor/verification-url") + if (response.status_code == requests.codes.ok): + click.echo(response.text + "\n") + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + +@click.command(help="Get a list of granted routes") +def get_granted_routes(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/granted-routes") + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get the details of a route") +@click.argument('route-id') +def get_route(route_id): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/route", + data = {'route-id': route_id}) + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running or route unknown!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get debug information") +def get_debug_info(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/debug") + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + +@click.command(help="Get extra debug information") +def get_debug_info_extra(): + if (parse_config()): + click.echo("Corrupt config, please run the config command", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/debug_extra") + if (response.status_code == requests.codes.ok): + click.echo(response.text) + else: + click.echo("System not running!\n", err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +# --- assign commands to groups --- + +cli.add_command(config) +cli.add_command(admin) +cli.add_command(controller) +cli.add_command(driver) +cli.add_command(monitor) + +admin.add_command(startup) +admin.add_command(shutdown) +admin.add_command(set_track_output) +admin.add_command(set_verification_option) +admin.add_command(set_verification_url) +admin.add_command(admin_release) +admin.add_command(admin_set_dcc_speed) + +controller.add_command(release_route) +controller.add_command(set_point) +controller.add_command(set_signal) +controller.add_command(set_peripheral) +controller.add_command(get_interlocker) +controller.add_command(set_interlocker) +controller.add_command(unset_interlocker) +controller.add_command(upload_interlocker) +controller.add_command(delete_interlocker) +controller.add_command(get_interlocker_list) + +driver.add_command(grab) +driver.add_command(release) +driver.add_command(request_route) +driver.add_command(request_route_id) +driver.add_command(direction) +driver.add_command(drive_route) +driver.add_command(set_dcc_speed) +driver.add_command(set_calibrated_speed) +driver.add_command(emergency_stop) +driver.add_command(set_train_peripheral) +driver.add_command(upload_engine) +driver.add_command(delete_engine) +driver.add_command(get_engine_list) + +monitor.add_command(get_trains) +monitor.add_command(get_train_state) +monitor.add_command(get_train_peripherals) +monitor.add_command(get_track_outputs) +monitor.add_command(get_points) +monitor.add_command(get_signals) +monitor.add_command(get_point_aspects) +monitor.add_command(get_signal_aspects) +monitor.add_command(get_segments) +monitor.add_command(get_reversers) +monitor.add_command(get_peripherals) +monitor.add_command(get_verification_option) +monitor.add_command(get_verification_url) +monitor.add_command(get_granted_routes) +monitor.add_command(get_route) +monitor.add_command(get_debug_info) +monitor.add_command(get_debug_info_extra) + +if __name__ == '__main__': + cli() + From 3ba70fe2f1a5ae849e501e4eb3dddd755fbd4d54 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 11 Jun 2024 18:43:59 +0200 Subject: [PATCH 023/125] admin json doc and refactor driver json doc --- server/doc/api-formats/admin.md | 10 ++++++++++ ...river_common_feedback.json => common_feedback.json} | 0 server/doc/api-formats/driver.md | 10 ++++++++++ server/doc/api-formats/driver_drive-route.json | 1 - server/doc/api-formats/driver_emergency-stop.json | 1 - server/doc/api-formats/driver_release-train.json | 1 - server/doc/api-formats/driver_request-route-id.json | 1 - .../api-formats/driver_set-calibrated-train-speed.json | 1 - server/doc/api-formats/driver_set-dcc-train-speed.json | 1 - .../doc/api-formats/driver_set-train-peripheral.json | 1 - 10 files changed, 20 insertions(+), 7 deletions(-) create mode 100644 server/doc/api-formats/admin.md rename server/doc/api-formats/{driver_common_feedback.json => common_feedback.json} (100%) create mode 100644 server/doc/api-formats/driver.md delete mode 100644 server/doc/api-formats/driver_drive-route.json delete mode 100644 server/doc/api-formats/driver_emergency-stop.json delete mode 100644 server/doc/api-formats/driver_release-train.json delete mode 100644 server/doc/api-formats/driver_request-route-id.json delete mode 100644 server/doc/api-formats/driver_set-calibrated-train-speed.json delete mode 100644 server/doc/api-formats/driver_set-dcc-train-speed.json delete mode 100644 server/doc/api-formats/driver_set-train-peripheral.json diff --git a/server/doc/api-formats/admin.md b/server/doc/api-formats/admin.md new file mode 100644 index 00000000..c368bcf3 --- /dev/null +++ b/server/doc/api-formats/admin.md @@ -0,0 +1,10 @@ +For the admin endpoints: +- admin/startup +- admin/shutdown +- admin/set-track-output +- admin/set-verification-option +- admin/set-verification-url +- admin/release-train +- admin/set-dcc-train-speed + +See common_feedback.json. \ No newline at end of file diff --git a/server/doc/api-formats/driver_common_feedback.json b/server/doc/api-formats/common_feedback.json similarity index 100% rename from server/doc/api-formats/driver_common_feedback.json rename to server/doc/api-formats/common_feedback.json diff --git a/server/doc/api-formats/driver.md b/server/doc/api-formats/driver.md new file mode 100644 index 00000000..a3146414 --- /dev/null +++ b/server/doc/api-formats/driver.md @@ -0,0 +1,10 @@ +For the driver endpoints: +- driver/drive-route +- driver/emergency-stop +- driver/release-train +- driver/request-route-id +- driver/set-calibrated-train-speed +- driver/set-dcc-train-speed +- driver/set-train-peripheral + +See common_feedback.json. \ No newline at end of file diff --git a/server/doc/api-formats/driver_drive-route.json b/server/doc/api-formats/driver_drive-route.json deleted file mode 100644 index 6bdfd465..00000000 --- a/server/doc/api-formats/driver_drive-route.json +++ /dev/null @@ -1 +0,0 @@ --> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_emergency-stop.json b/server/doc/api-formats/driver_emergency-stop.json deleted file mode 100644 index 6bdfd465..00000000 --- a/server/doc/api-formats/driver_emergency-stop.json +++ /dev/null @@ -1 +0,0 @@ --> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_release-train.json b/server/doc/api-formats/driver_release-train.json deleted file mode 100644 index 6bdfd465..00000000 --- a/server/doc/api-formats/driver_release-train.json +++ /dev/null @@ -1 +0,0 @@ --> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_request-route-id.json b/server/doc/api-formats/driver_request-route-id.json deleted file mode 100644 index 6bdfd465..00000000 --- a/server/doc/api-formats/driver_request-route-id.json +++ /dev/null @@ -1 +0,0 @@ --> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_set-calibrated-train-speed.json b/server/doc/api-formats/driver_set-calibrated-train-speed.json deleted file mode 100644 index 6bdfd465..00000000 --- a/server/doc/api-formats/driver_set-calibrated-train-speed.json +++ /dev/null @@ -1 +0,0 @@ --> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_set-dcc-train-speed.json b/server/doc/api-formats/driver_set-dcc-train-speed.json deleted file mode 100644 index 6bdfd465..00000000 --- a/server/doc/api-formats/driver_set-dcc-train-speed.json +++ /dev/null @@ -1 +0,0 @@ --> driver_common_feedback.json \ No newline at end of file diff --git a/server/doc/api-formats/driver_set-train-peripheral.json b/server/doc/api-formats/driver_set-train-peripheral.json deleted file mode 100644 index 6bdfd465..00000000 --- a/server/doc/api-formats/driver_set-train-peripheral.json +++ /dev/null @@ -1 +0,0 @@ --> driver_common_feedback.json \ No newline at end of file From fe557534b25d32c31bb03a577770d1b57e0956de Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 12 Jun 2024 09:56:07 +0200 Subject: [PATCH 024/125] more json api conversion --- .../doc/api-formats/common_error_message.json | 2 +- server/doc/api-formats/controller.md | 12 ++ .../controller_get-interlocker.json | 4 +- .../controller_get-interlockers.json | 1 - .../controller_upload-interlocker.json | 1 - server/src/handler_controller.c | 31 +++- server/src/handler_driver.c | 168 ++++++++---------- server/src/handler_monitor.c | 2 +- server/src/handler_monitor.h | 1 - server/src/json_communication_utils.c | 92 ++++++++++ server/src/json_communication_utils.h | 96 ++++++++++ server/src/json_response_builder.h | 35 +++- 12 files changed, 338 insertions(+), 107 deletions(-) create mode 100644 server/doc/api-formats/controller.md delete mode 100644 server/doc/api-formats/controller_get-interlockers.json delete mode 100644 server/doc/api-formats/controller_upload-interlocker.json create mode 100644 server/src/json_communication_utils.c create mode 100644 server/src/json_communication_utils.h diff --git a/server/doc/api-formats/common_error_message.json b/server/doc/api-formats/common_error_message.json index 5de6acc8..86f5014f 100644 --- a/server/doc/api-formats/common_error_message.json +++ b/server/doc/api-formats/common_error_message.json @@ -1,3 +1,3 @@ { - "err_msg": "Something failed for reason XY" + "err_message": "Something failed for reason XY" } \ No newline at end of file diff --git a/server/doc/api-formats/controller.md b/server/doc/api-formats/controller.md new file mode 100644 index 00000000..16a97d68 --- /dev/null +++ b/server/doc/api-formats/controller.md @@ -0,0 +1,12 @@ +For the controller endpoints: +- controller/release-route +- controller/set-point +- controller/set-signal +- controller/set-peripheral +- controller/set-interlocker +- controller/unset-interlocker + +See common_feedback.json. + +For the other controller endpoint(s): +- controller/get-interlocker: see controller_get-interlocker.json \ No newline at end of file diff --git a/server/doc/api-formats/controller_get-interlocker.json b/server/doc/api-formats/controller_get-interlocker.json index 30404ce4..3f4475de 100644 --- a/server/doc/api-formats/controller_get-interlocker.json +++ b/server/doc/api-formats/controller_get-interlocker.json @@ -1 +1,3 @@ -TODO \ No newline at end of file +{ + "interlocker": "heregoestheinterlockername" +} \ No newline at end of file diff --git a/server/doc/api-formats/controller_get-interlockers.json b/server/doc/api-formats/controller_get-interlockers.json deleted file mode 100644 index 30404ce4..00000000 --- a/server/doc/api-formats/controller_get-interlockers.json +++ /dev/null @@ -1 +0,0 @@ -TODO \ No newline at end of file diff --git a/server/doc/api-formats/controller_upload-interlocker.json b/server/doc/api-formats/controller_upload-interlocker.json deleted file mode 100644 index 30404ce4..00000000 --- a/server/doc/api-formats/controller_upload-interlocker.json +++ /dev/null @@ -1 +0,0 @@ -TODO \ No newline at end of file diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 423334a4..27cdd1ed 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -40,6 +40,8 @@ #include "interlocking.h" #include "bahn_data_util.h" #include "check_route_sectional/check_route_sectional_direct.h" +#include "json_response_builder.h" +#include "json_communication_utils.h" pthread_mutex_t interlocker_mutex = PTHREAD_MUTEX_INITIALIZER; @@ -425,10 +427,12 @@ onion_connection_status handler_release_route(void *_, onion_request *req, onion const char *route_id = params_check_route_id(data_route_id); if (strcmp(route_id, "") == 0) { syslog_server(LOG_ERR, "Request: Release route - invalid parameters"); + send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); return OCS_NOT_IMPLEMENTED; } else { syslog_server(LOG_NOTICE, "Request: Release route - route: %s - start", route_id); release_route(route_id); + send_common_feedback(res, true, ""); syslog_server(LOG_NOTICE, "Request: Release route - route: %s - finish", route_id); return OCS_PROCESSED; } @@ -445,6 +449,7 @@ onion_connection_status handler_set_point(void *_, onion_request *req, onion_res const char *data_state = onion_request_get_post(req, "state"); if (data_point == NULL || data_state == NULL) { syslog_server(LOG_ERR, "Request: Set point - invalid parameters"); + send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); return OCS_NOT_IMPLEMENTED; } else { syslog_server(LOG_NOTICE, @@ -454,12 +459,14 @@ onion_connection_status handler_set_point(void *_, onion_request *req, onion_res syslog_server(LOG_ERR, "Request: Set point - point: %s state: %s - invalid parameters - abort", data_point, data_state); + send_common_feedback(res, false, "invalid parameters"); return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); syslog_server(LOG_NOTICE, "Request: Set point - point: %s state: %s - finish", data_point, data_state); + send_common_feedback(res, true, ""); return OCS_PROCESSED; } } @@ -476,6 +483,7 @@ onion_connection_status handler_set_signal(void *_, onion_request *req, onion_re const char *data_state = onion_request_get_post(req, "state"); if (data_signal == NULL || data_state == NULL) { syslog_server(LOG_ERR, "Request: Set signal - invalid parameters"); + send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); return OCS_NOT_IMPLEMENTED; } else { syslog_server(LOG_NOTICE, @@ -486,12 +494,14 @@ onion_connection_status handler_set_signal(void *_, onion_request *req, onion_re "Request: Set signal - signal: %s state: %s - " "invalid parameters - abort", data_signal, data_state); + send_common_feedback(res, false, "invalid parameters"); return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); syslog_server(LOG_NOTICE, "Request: Set signal - signal: %s state: %s - finish", data_signal, data_state); + send_common_feedback(res, true, ""); return OCS_PROCESSED; } } @@ -508,6 +518,7 @@ onion_connection_status handler_set_peripheral(void *_, onion_request *req, onio const char *data_state = onion_request_get_post(req, "state"); if (data_peripheral == NULL || data_state == NULL) { syslog_server(LOG_ERR, "Request: Set peripheral - invalid parameters"); + send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); return OCS_NOT_IMPLEMENTED; } else { syslog_server(LOG_NOTICE, @@ -518,12 +529,14 @@ onion_connection_status handler_set_peripheral(void *_, onion_request *req, onio "Request: Set peripheral - peripheral: %s state: %s - " "invalid parameters - abort", data_peripheral, data_state); + send_common_feedback(res, false, "invalid parameters"); return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); syslog_server(LOG_NOTICE, "Request: Set peripheral - peripheral: %s state: %s - finish", data_peripheral, data_state); + send_common_feedback(res, true, ""); return OCS_PROCESSED; } } @@ -537,10 +550,12 @@ onion_connection_status handler_get_interlocker(void *_, onion_request *req, oni build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { if (selected_interlocker_instance != -1 && selected_interlocker_name != NULL) { - onion_response_printf(res, "%s", selected_interlocker_name->str); + onion_response_printf(res, "{\n\"interlocker\":\"%s\"\n}", + selected_interlocker_name->str); syslog_server(LOG_INFO, "Request: Get interlocker - done"); return OCS_PROCESSED; } else { + send_common_error_message(res, "No interlocker is currently selected"); syslog_server(LOG_ERR, "Request: Get interlocker - none selected"); return OCS_NOT_IMPLEMENTED; } @@ -556,6 +571,7 @@ onion_connection_status handler_set_interlocker(void *_, onion_request *req, oni const char *data_interlocker = onion_request_get_post(req, "interlocker"); if (data_interlocker == NULL) { syslog_server(LOG_ERR, "Request: Set interlocker - invalid parameters"); + send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); return OCS_NOT_IMPLEMENTED; } else { syslog_server(LOG_NOTICE, @@ -566,6 +582,7 @@ onion_connection_status handler_set_interlocker(void *_, onion_request *req, oni "Request: Set interlocker - interlocker: %s - another " "interlocker instance is already set - abort", data_interlocker); + send_common_feedback(res, false, "another interlocker instance is already set"); return OCS_NOT_IMPLEMENTED; } @@ -575,9 +592,11 @@ onion_connection_status handler_set_interlocker(void *_, onion_request *req, oni "Request: Set interlocker - interlocker: %s - invalid " "parameters or no more interlocker instances can be loaded - abort", data_interlocker); + send_common_feedback(res, false, "invalid parameters or no more interlocker " + "instances can be loaded"); return OCS_NOT_IMPLEMENTED; } else { - onion_response_printf(res, "%s", selected_interlocker_name->str); + send_common_feedback(res, true, selected_interlocker_name->str); syslog_server(LOG_NOTICE, "Request: Set interlocker - interlocker: %s - finish", data_interlocker); @@ -596,6 +615,7 @@ onion_connection_status handler_unset_interlocker(void *_, onion_request *req, o const char *data_interlocker = onion_request_get_post(req, "interlocker"); if (data_interlocker == NULL) { syslog_server(LOG_ERR, "Request: Unset interlocker - invalid parameters"); + send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); return OCS_NOT_IMPLEMENTED; } else { syslog_server(LOG_NOTICE, "Request: Unset interlocker - interlocker: %s - start", @@ -605,6 +625,7 @@ onion_connection_status handler_unset_interlocker(void *_, onion_request *req, o "Request: Unset interlocker - interlocker: %s - " "no interlocker instance to unset - abort", data_interlocker); + send_common_feedback(res, false, "no interlocker instance is set that can be unset"); return OCS_NOT_IMPLEMENTED; } @@ -614,8 +635,14 @@ onion_connection_status handler_unset_interlocker(void *_, onion_request *req, o "Request: Unset interlocker - interlocker: %s - " "invalid parameters - abort", data_interlocker); + send_common_feedback(res, false, "invalid parameters (set interlocker doesn't " + "match passed interlocker name)"); return OCS_NOT_IMPLEMENTED; } else { + ///TODO: This is not really needed -> a good status should imply + // the common feedback with success = true and message empty. + send_common_feedback(res, true, ""); + syslog_server(LOG_NOTICE, "Request: Unset interlocker - interlocker: %s - finish", data_interlocker); diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 1cfdc99b..4cd847d9 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -42,6 +42,7 @@ #include "interlocking.h" #include "bahn_data_util.h" #include "json_response_builder.h" +#include "json_communication_utils.h" pthread_mutex_t grabbed_trains_mutex = PTHREAD_MUTEX_INITIALIZER; @@ -846,7 +847,7 @@ bool release_train(int grab_id) { syslog_server(LOG_NOTICE, "Release train - grab id: %d train: %s - released", grab_id, grabbed_trains[grab_id].name->str); - g_string_free(grabbed_trains[grab_id].name, TRUE); + g_string_free(grabbed_trains[grab_id].name, true); grabbed_trains[grab_id].name = NULL; success = true; } @@ -875,55 +876,31 @@ char *train_id_from_grab_id(int grab_id) { return train_id; } -GString *get_driver_common_feedback_json(bool success, const char* message) { - gsize add_len = message != 0 ? MAX(256, strlen(message)) : 0; - GString *g_feedback = g_string_sized_new(32 + add_len); - g_string_assign(g_feedback, ""); - append_start_of_obj(g_feedback, false); - append_field_bool_value(g_feedback, "success", success, true); - append_field_str_value(g_feedback, "message", message, false); - append_end_of_obj(g_feedback, false); - return g_feedback; -} - -GString *get_grab_feedback_json(bool success, const char* message, int l_session_id, int grab_id) { - gsize add_len = message != 0 ? MAX(256, strlen(message)) : 0; +GString *get_grab_fdbk_json(bool success, const char* message, int l_session_id, int grab_id) { + gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; GString *g_feedback = g_string_sized_new(96 + add_len); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); append_field_bool_value(g_feedback, "success", success, true); - append_field_str_value(g_feedback, "message", message, true); + append_field_str_value(g_feedback, "message", message != NULL ? message : "", true); append_field_int_value(g_feedback, "session-id", l_session_id, true); append_field_int_value(g_feedback, "grab-id", grab_id, false); append_end_of_obj(g_feedback, false); return g_feedback; } -GString *get_req_route_feedback_json(bool success, const char* message, const char* granted_route_id) { - gsize add_len = message != 0 ? MAX(256, strlen(message)) : 0; +GString *get_reqroute_fdbk_json(bool success, const char* message, const char* granted_route_id) { + gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; GString *g_feedback = g_string_sized_new(64 + add_len); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); append_field_bool_value(g_feedback, "success", success, true); - append_field_str_value(g_feedback, "message", message, true); + append_field_str_value(g_feedback, "message", message != NULL ? message : "", true); append_field_str_value(g_feedback, "granted-route-id", granted_route_id, false); append_end_of_obj(g_feedback, false); return g_feedback; } -void send_driver_common_feedback(onion_response *res, bool success, const char* message) { - GString *ret_str = get_driver_common_feedback_json(success, message); - onion_response_printf(res, "%s", ret_str->str); - g_string_free(ret_str, true); -} - -void send_req_route_feedback(onion_response *res, bool success, const char* message, - const char* granted_route_id) { - GString *ret_str = get_req_route_feedback_json(success, message, granted_route_id); - onion_response_printf(res, "%s", ret_str->str); - g_string_free(ret_str, true); -} - onion_connection_status handler_grab_train(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -931,7 +908,7 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re const char *data_engine = onion_request_get_post(req, "engine"); if (data_train == NULL || data_engine == NULL) { - GString *feedback = get_grab_feedback_json(false, "invalid parameters", 0, -1); + GString *feedback = get_grab_fdbk_json(false, "invalid parameters", 0, -1); onion_response_printf(res, "%s", feedback->str); syslog_server(LOG_ERR, "Request: Grab train - invalid parameters"); g_string_free(feedback, true); @@ -944,14 +921,12 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); if (!train_state_query.known) { bidib_free_train_state_query(train_state_query); - GString *feedback = get_grab_feedback_json(false, "unknown train or invalid train state", - 0, -1); - onion_response_printf(res, "%s", feedback->str); + GString *ret = get_grab_fdbk_json(false, "unknown train or invalid train state", 0, -1); + send_some_gstring(res, ret); syslog_server(LOG_ERR, "Request: Grab train - train: %s engine: %s - " "unknown train or train state - abort", data_train, data_engine); - g_string_free(feedback, true); return OCS_NOT_IMPLEMENTED; } bidib_free_train_state_query(train_state_query); @@ -965,27 +940,27 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re int grab_id = grab_train(data_train, data_engine); GString *ret_str = NULL; if (grab_id == -4) { - ret_str = get_grab_feedback_json(false, "invalid parameters", 0, -1); + ret_str = get_grab_fdbk_json(false, "invalid parameters", 0, -1); } else if (grab_id == -3) { - ret_str = get_grab_feedback_json(false, "train has already been grabbed", 0, -1); + ret_str = get_grab_fdbk_json(false, "train has already been grabbed", 0, -1); } else if (grab_id == -2) { - ret_str = get_grab_feedback_json(false, "all grab-IDs are in use " - "(max no. of grabbed trains reached)", 0, -1); + ret_str = get_grab_fdbk_json(false, "all grab-IDs are in use " + "(max no. of grabbed trains reached)", 0, -1); } else if (grab_id == -1) { - ret_str = get_grab_feedback_json(false, "internal err: failed to " - "start train engine container", 0, -1); + ret_str = get_grab_fdbk_json(false, "internal err: failed to " + "start train engine container", 0, -1); } else if (grab_id >= 0) { - ret_str = get_grab_feedback_json(true, "", session_id, grab_id); + ret_str = get_grab_fdbk_json(true, "", session_id, grab_id); } else { syslog_server(LOG_ERR, "Request: Grab train - train: %s engine: %s - " "unexpected return from grab_train", data_train, data_engine); - ret_str = get_grab_feedback_json(false, "internal err: unexpected " - "return from grab_train", 0, -1); + ret_str = get_grab_fdbk_json(false, "internal err: unexpected " + "return from grab_train", 0, -1); } if (ret_str != NULL) { - onion_response_printf(res, "%s", ret_str->str); + send_some_gstring(res, ret_str); if (grab_id >= 0) { syslog_server(LOG_ERR, "Request: Grab train - train: %s engine: %s - " @@ -996,7 +971,6 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re "Request: Grab train - train: %s engine: %s - finish", data_train, data_engine); } - g_string_free(ret_str, true); return grab_id > -1 ? OCS_PROCESSED : OCS_NOT_IMPLEMENTED; } else { syslog_server(LOG_ERR, @@ -1020,7 +994,7 @@ onion_connection_status handler_release_train(void *_, onion_request *req, onion const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (client_session_id != session_id) { - send_driver_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Release train - grab id: %d - invalid session id: %s", grab_id, data_session_id); @@ -1030,7 +1004,7 @@ onion_connection_status handler_release_train(void *_, onion_request *req, onion // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { - send_driver_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Release train - grab id: %d - invalid grab id", grab_id); return OCS_NOT_IMPLEMENTED; } @@ -1056,14 +1030,14 @@ onion_connection_status handler_release_train(void *_, onion_request *req, onion bidib_free_train_state_query(train_state_query); if (!release_train(grab_id)) { - send_driver_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Release train - grab id: %d train: %s - invalid grab id - abort", grab_id, train_id); free(train_id); return OCS_NOT_IMPLEMENTED; } else { - send_driver_common_feedback(res, true, "released train"); + send_common_feedback(res, true, "released train"); syslog_server(LOG_NOTICE, "Request: Release train - grab id: %d train: %s - finish", grab_id, train_id); @@ -1087,11 +1061,11 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (data_source_name == NULL || data_destination_name == NULL) { - send_req_route_feedback(res, false, "invalid parameters", ""); + send_some_gstring(res, get_reqroute_fdbk_json(false, "invalid parameters", "")); syslog_server(LOG_ERR, "Request: Request train route - invalid parameters"); return OCS_NOT_IMPLEMENTED; } else if (client_session_id != session_id) { - send_req_route_feedback(res, false, "invalid session-id", ""); + send_some_gstring(res, get_reqroute_fdbk_json(false, "invalid session-id", "")); syslog_server(LOG_ERR, "Request: Request train route - from: %s to: %s - invalid session id", data_source_name, data_destination_name); @@ -1101,7 +1075,7 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { - send_req_route_feedback(res, false, "invalid grab-id", ""); + send_some_gstring(res, get_reqroute_fdbk_json(false, "invalid grab-id", "")); syslog_server(LOG_ERR, "Request: Request train route - from: %s to: %s - invalid grab id", data_source_name, data_destination_name); @@ -1119,30 +1093,32 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion "Request: Request train route - train: %s from: %s to: %s" " - route %s granted", train_id, data_source_name, data_destination_name, route_id->str); - send_req_route_feedback(res, true, "", route_id->str); + send_some_gstring(res, get_reqroute_fdbk_json(true, "", route_id->str)); } else { onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_WARNING, "Request: Request train route - train: %s from: %s to: %s" " - route %s not granted", train_id, data_source_name, data_destination_name, route_id->str); + GString *ret_str; if (strcmp(route_id->str, "no_interlocker") == 0) { - send_req_route_feedback(res, false, "No interlocker has been selected for use", ""); + ret_str = get_reqroute_fdbk_json(false, "No interlocker selected for use", ""); } else if (strcmp(route_id->str, "no_routes") == 0) { - send_req_route_feedback(res, false, "No routes possible", ""); + ret_str = get_reqroute_fdbk_json(false, "No routes possible", ""); } else if (strcmp(route_id->str, "not_grantable") == 0) { - send_req_route_feedback(res, false, "Route conflicts with granted route(s)", ""); + ret_str = get_reqroute_fdbk_json(false, "Route conflicts with granted route(s)", ""); } else if (strcmp(route_id->str, "not_clear") == 0) { - send_req_route_feedback(res, false, "Route found has occupied tracks or " - "source signal is not stop", ""); + ret_str = get_reqroute_fdbk_json(false, "Route found has occupied tracks or source " + "signal is not stop", ""); } else { GString *aux = g_string_new("Route could not be granted"); if (route_id != NULL) { g_string_append_printf(aux, " (%s)", route_id->str); } - send_req_route_feedback(res, false, aux->str, ""); + ret_str = get_reqroute_fdbk_json(false, aux->str, ""); g_string_free(aux, true); } + send_some_gstring(res, ret_str); } syslog_server(LOG_NOTICE, "Request: Request train route - train: %s from: %s to: %s - finish", @@ -1170,11 +1146,11 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on const char *route_id = params_check_route_id(data_route_id); if (strcmp(route_id, "") == 0) { - send_driver_common_feedback(res, false, "invalid route-id"); + send_common_feedback(res, false, "invalid route-id"); syslog_server(LOG_ERR, "Request: Request train route id - invalid route id"); return OCS_NOT_IMPLEMENTED; } else if (client_session_id != session_id) { - send_driver_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Request train route id - route: %s - invalid session id", route_id); @@ -1184,7 +1160,7 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { - send_driver_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Request train route id - route: %s - invalid grab id", route_id); @@ -1199,7 +1175,7 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on const char *result = grant_route_id(train_id, route_id); if (strcmp(result, "granted") == 0) { - send_driver_common_feedback(res, true, result); + send_common_feedback(res, true, result); syslog_server(LOG_NOTICE, "Request: Request train route id - train: %s route: %s - route granted", train_id, route_id); @@ -1210,13 +1186,13 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on train_id, route_id, result); if (strcmp(result, "not_grantable") == 0) { - send_driver_common_feedback(res, false, "Route not available or has " + send_common_feedback(res, false, "Route not available or has " "conflicts with granted route(s)"); } else if (strcmp(result, "not_clear") == 0) { - send_driver_common_feedback(res, false, "Route has occupied tracks or " + send_common_feedback(res, false, "Route has occupied tracks or " "source signal is not stop"); } else { - send_driver_common_feedback(res, false, "Route could not be granted"); + send_common_feedback(res, false, "Route could not be granted"); } } syslog_server(LOG_NOTICE, @@ -1282,15 +1258,15 @@ onion_connection_status handler_drive_route(void *_, onion_request *req, onion_r const char *mode = params_check_mode(data_mode); if (client_session_id != session_id) { - send_driver_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Drive route - invalid session id"); return OCS_NOT_IMPLEMENTED; } else if (strcmp(mode, "") == 0) { - send_driver_common_feedback(res, false, "invalid driving mode"); + send_common_feedback(res, false, "invalid driving mode"); syslog_server(LOG_ERR, "Request: Drive route - invalid driving mode"); return OCS_NOT_IMPLEMENTED; } else if (strcmp(route_id, "") == 0) { - send_driver_common_feedback(res, false, "invalid route-id"); + send_common_feedback(res, false, "invalid route-id"); syslog_server(LOG_ERR, "Request: Drive route - invalid route id"); return OCS_NOT_IMPLEMENTED; } @@ -1308,14 +1284,14 @@ onion_connection_status handler_drive_route(void *_, onion_request *req, onion_r const bool is_automatic = (strcmp(mode, "automatic") == 0); if (drive_route(grab_id, route_id, is_automatic)) { - send_driver_common_feedback(res, true, "Route driving completed"); + send_common_feedback(res, true, "Route driving completed"); syslog_server(LOG_NOTICE, "Request: Drive route - route: %s train: %s drive mode: %s - finish", route_id, train_id, mode); free(train_id); return OCS_PROCESSED; } else { - send_driver_common_feedback(res, false, "Route driving aborted"); + send_common_feedback(res, false, "Route driving aborted"); syslog_server(LOG_ERR, "Request: Drive route - route: %s train: %s drive mode: %s - " "driving failed - abort", @@ -1343,7 +1319,7 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, int speed = params_check_speed(data_speed); if (client_session_id != session_id) { - send_driver_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid session id"); return OCS_NOT_IMPLEMENTED; } @@ -1351,18 +1327,18 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); - send_driver_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid grab id"); return OCS_NOT_IMPLEMENTED; } else if (speed == 999) { - send_driver_common_feedback(res, false, "bad speed"); + send_common_feedback(res, false, "bad speed"); syslog_server(LOG_ERR, "Request: Set dcc train speed - train: %s speed: %d - bad speed", grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_NOT_IMPLEMENTED; } else if (data_track_output == NULL) { - send_driver_common_feedback(res, false, "invalid track output"); + send_common_feedback(res, false, "invalid track output"); syslog_server(LOG_ERR, "Request: Set dcc train speed - train: %s speed: %d - invalid track output", grabbed_trains[grab_id].name->str, speed); @@ -1380,7 +1356,7 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, syslog_server(LOG_NOTICE, "Request: Set dcc train speed - train: %s speed: %d - finish", grabbed_trains[grab_id].name->str, speed); - send_driver_common_feedback(res, true, ""); + send_common_feedback(res, true, ""); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; } else { @@ -1404,7 +1380,7 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, int speed = params_check_calibrated_speed(data_speed); if (client_session_id != session_id) { - send_driver_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid session id"); return OCS_NOT_IMPLEMENTED; } @@ -1412,18 +1388,18 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); - send_driver_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid grab id"); return OCS_NOT_IMPLEMENTED; } else if (speed == 999) { - send_driver_common_feedback(res, false, "bad speed"); + send_common_feedback(res, false, "bad speed"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - train: %s speed: %d - bad speed", grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_NOT_IMPLEMENTED; } else if (data_track_output == NULL) { - send_driver_common_feedback(res, false, "invalid track output"); + send_common_feedback(res, false, "invalid track output"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - train: %s speed: %d - " "invalid track output", @@ -1437,7 +1413,7 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, grabbed_trains[grab_id].name->str, speed); if (bidib_set_calibrated_train_speed(grabbed_trains[grab_id].name->str, speed, data_track_output)) { - send_driver_common_feedback(res, false, "invalid parameters"); + send_common_feedback(res, false, "invalid parameters"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - train: %s speed: %d - " "invalid parameters - abort", @@ -1446,7 +1422,7 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); - send_driver_common_feedback(res, true, ""); + send_common_feedback(res, true, ""); syslog_server(LOG_NOTICE, "Request: Set calibrated train speed - train: %s speed: %d - finish", grabbed_trains[grab_id].name->str, speed); @@ -1473,7 +1449,7 @@ onion_connection_status handler_set_train_emergency_stop(void *_, int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (client_session_id != session_id) { - send_driver_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid session id"); return OCS_NOT_IMPLEMENTED; } @@ -1481,11 +1457,11 @@ onion_connection_status handler_set_train_emergency_stop(void *_, pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); - send_driver_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid grab id"); return OCS_NOT_IMPLEMENTED; } else if (data_track_output == NULL) { - send_driver_common_feedback(res, false, "invalid track output"); + send_common_feedback(res, false, "invalid track output"); syslog_server(LOG_ERR, "Request: Set train emergency stop - train: %s - invalid track output", grabbed_trains[grab_id].name->str); @@ -1497,7 +1473,7 @@ onion_connection_status handler_set_train_emergency_stop(void *_, grabbed_trains[grab_id].name->str); if (bidib_emergency_stop_train(grabbed_trains[grab_id].name->str, data_track_output)) { - send_driver_common_feedback(res, false, "invalid parameters"); + send_common_feedback(res, false, "invalid parameters"); syslog_server(LOG_ERR, "Request: Set train emergency stop - train: %s - invalid parameters - abort", grabbed_trains[grab_id].name->str); @@ -1505,7 +1481,7 @@ onion_connection_status handler_set_train_emergency_stop(void *_, return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); - send_driver_common_feedback(res, true, ""); + send_common_feedback(res, true, ""); syslog_server(LOG_NOTICE, "Request: Set train emergency stop - train: %s - finish", grabbed_trains[grab_id].name->str); @@ -1535,7 +1511,7 @@ onion_connection_status handler_set_train_peripheral(void *_, int state = params_check_state(data_state); if (client_session_id != session_id) { - send_driver_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, false, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set train peripheral - invalid session id"); return OCS_NOT_IMPLEMENTED; } @@ -1543,25 +1519,25 @@ onion_connection_status handler_set_train_peripheral(void *_, pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); - send_driver_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, false, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set train peripheral - invalid grab id"); return OCS_NOT_IMPLEMENTED; } else if (state == -1) { - send_driver_common_feedback(res, false, "invalid peripheral state"); + send_common_feedback(res, false, "invalid peripheral state"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s - invalid state", grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_NOT_IMPLEMENTED; } else if (data_peripheral == NULL) { - send_driver_common_feedback(res, false, "invalid peripheral"); + send_common_feedback(res, false, "invalid peripheral"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s - invalid peripheral", grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_NOT_IMPLEMENTED; } else if (data_track_output == NULL) { - send_driver_common_feedback(res, false, "invalid track output"); + send_common_feedback(res, false, "invalid track output"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s peripheral: %s - " "invalid track output", @@ -1576,7 +1552,7 @@ onion_connection_status handler_set_train_peripheral(void *_, if (bidib_set_train_peripheral(grabbed_trains[grab_id].name->str, data_peripheral, state, data_track_output)) { - send_driver_common_feedback(res, false, "invalid parameters"); + send_common_feedback(res, false, "invalid parameters"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s " "peripheral: %s state: 0x%02x - invalid parameters - abort", @@ -1585,7 +1561,7 @@ onion_connection_status handler_set_train_peripheral(void *_, return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); - send_driver_common_feedback(res, true, ""); + send_common_feedback(res, true, ""); syslog_server(LOG_NOTICE, "Request: Set train peripheral - train: %s peripheral: %s state: 0x%02x" " - finish", diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index f18d2a1c..86ff06d8 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -244,7 +244,7 @@ GString *get_train_states_json() { for (size_t i = 0; i < query.length; i++) { GString *g_train_state = get_train_state_json(query.ids[i]); g_string_append_printf(g_train_states, "%s", g_train_state->str); - g_string_free(g_train_state, false); + g_string_free(g_train_state, true); if (i + 1 < query.length) { g_string_append_printf(g_train_states, "%s", ","); } diff --git a/server/src/handler_monitor.h b/server/src/handler_monitor.h index 4f828173..a6f919f8 100644 --- a/server/src/handler_monitor.h +++ b/server/src/handler_monitor.h @@ -43,7 +43,6 @@ onion_connection_status handler_get_trains(void *_, onion_request *req, onion_connection_status handler_get_train_state(void *_, onion_request *req, onion_response *res); -///TODO: Implement onion_connection_status handler_get_train_states(void *_, onion_request *req, onion_response *res); diff --git a/server/src/json_communication_utils.c b/server/src/json_communication_utils.c new file mode 100644 index 00000000..2bcffd11 --- /dev/null +++ b/server/src/json_communication_utils.c @@ -0,0 +1,92 @@ +/* + * + * Copyright (C) 2024 University of Bamberg, Software Technologies Research Group + * , + * + * This file is part of the SWTbahn command line interface (swtbahn-cli), which is + * a client-server application to interactively control a BiDiB model railway. + * + * swtbahn-cli is licensed under the GNU GENERAL PUBLIC LICENSE (Version 3), see + * the LICENSE file at the project's top-level directory for details or consult + * . + * + * swtbahn-cli is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or any later version. + * + * swtbahn-cli is a RESEARCH PROTOTYPE and distributed WITHOUT ANY WARRANTY, without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * The following people contributed to the conception and realization of the + * present swtbahn-cli (in alphabetic order by surname): + * + * - Bernhard Luedtke + * + */ + +#include "json_communication_utils.h" +#include "json_response_builder.h" +#include + +GString *get_common_feedback_json(bool success, const char* message) { + const gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; + GString *g_feedback = g_string_sized_new(32 + add_len); + g_string_assign(g_feedback, ""); + append_start_of_obj(g_feedback, false); + append_field_bool_value(g_feedback, "success", success, true); + append_field_str_value(g_feedback, "message", message != NULL ? message : "", false); + append_end_of_obj(g_feedback, false); + return g_feedback; +} + +GString *get_common_error_message_json(const char *err_message) { + const gsize add_len = err_message != NULL ? MAX(256, strlen(err_message)) : 0; + GString *g_err_msg = g_string_sized_new(24 + add_len); + g_string_assign(g_err_msg, ""); + append_start_of_obj(g_err_msg, false); + append_field_str_value(g_err_msg, "err_message", err_message != NULL ? err_message : "", false); + append_end_of_obj(g_err_msg, false); + return g_err_msg; +} + +bool send_common_feedback(onion_response *res, bool success, const char* message) { + if (res == NULL) { + return false; + } + GString *ret_str = get_common_feedback_json(success, message); + if (ret_str == NULL) { + return false; + } + bool ret = onion_response_printf(res, "%s", ret_str->str) >= 0; + g_string_free(ret_str, true); + return ret; +} + +bool send_common_error_message(onion_response *res, const char* err_message) { + if (res == NULL) { + return false; + } + GString *ret_str = get_common_error_message_json(err_message); + if (ret_str == NULL) { + return false; + } + bool ret = onion_response_printf(res, "%s", ret_str->str) >= 0; + g_string_free(ret_str, true); + return ret; +} + +bool send_some_gstring(onion_response *res, GString *gstr) { + if (res == NULL) { + if (gstr != NULL) { + g_string_free(gstr, true); + } + return false; + } else if (gstr == NULL) { + return false; + } + bool ret = onion_response_printf(res, "%s", gstr->str) >= 0; + g_string_free(gstr, true); + gstr = NULL; + return ret; +} diff --git a/server/src/json_communication_utils.h b/server/src/json_communication_utils.h new file mode 100644 index 00000000..d7cd4263 --- /dev/null +++ b/server/src/json_communication_utils.h @@ -0,0 +1,96 @@ +/* + * + * Copyright (C) 2024 University of Bamberg, Software Technologies Research Group + * , + * + * This file is part of the SWTbahn command line interface (swtbahn-cli), which is + * a client-server application to interactively control a BiDiB model railway. + * + * swtbahn-cli is licensed under the GNU GENERAL PUBLIC LICENSE (Version 3), see + * the LICENSE file at the project's top-level directory for details or consult + * . + * + * swtbahn-cli is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or any later version. + * + * swtbahn-cli is a RESEARCH PROTOTYPE and distributed WITHOUT ANY WARRANTY, without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * The following people contributed to the conception and realization of the + * present swtbahn-cli (in alphabetic order by surname): + * + * - Bernhard Luedtke + * + */ + +#ifndef JSON_COMMUNICATION_UTILS_H +#define JSON_COMMUNICATION_UTILS_H + +#include +#include +#include + +//########################## COMMON UTIL ########################## + +/** + * @brief Build a json object (in form of a string) containing + * the fields "success" with a boolean value and "message" with a string + * value. + * @attention the returned GString * has to be freed/managed by the caller. + * + * @param success value of the boolean "success" field in the json object. + * @param message value of the string "message" field in the json object. + * If NULL is passed, the field will be empty. + * @return GString* json object string with success and message field. + */ +GString *get_common_feedback_json(bool success, const char *message); + +/** + * @brief Build a json object (in form of a string) containing + * the field "err_message" with a string value, value is content of err_message parameter. + * @attention the returned GString * has to be freed/managed by the caller. + * + * @param err_message the error message value for the "err_message" field in the json object. + * If NULL is passed, the field will be empty. + * @return GString* json object string with the err_message field. + */ +GString *get_common_error_message_json(const char *err_message); + +/** + * @brief Constructs the common-feedback json and sends it via the response res. + * + * @param res the response over which to send. Shall not be NULL, otherwise no sending takes place. + * @param success intended value of the boolean "success" field in the json to be sent + * @param message intended value of the string "message" field in the json to be sent. + * If message is NULL, the message field will be empty. + * @return true if parameters were valid + * @return false if parameters were invalid or an internal error occurred (nothing will be sent) + */ +bool send_common_feedback(onion_response *res, bool success, const char* message); + +/** + * @brief Constructs the common error message json and sends it via the response res. + * + * @param res the response over which to send. Shall not be NULL, otherwise no sending takes place. + * @param err_message intended value of the string "err_message" field in the json to be sent. + * If err_message is NULL, the err_message field will be empty. + * @return true if parameters were valid + * @return false if parameters were invalid or an internal error occurred (nothing will be sent) + */ +bool send_common_error_message(onion_response *res, const char* err_message); + +/** + * @brief Sends the content of gstr via the response res. Then free's the GString, + * i.e., this is a transfer of ownership. + * + * @param res the response over which to send. Shall not be NULL. + * @param gstr the gstring whose contents to send. Shall not be NULL. + * Will be free'd if it is not null, regardless of whether true or false is returned. + * @return true if parameters were valid and sending succeeded, + * @return false otherwise. + */ +bool send_some_gstring(onion_response *res, GString *gstr); + +#endif // JSON_COMMUNICATION_UTILS_H \ No newline at end of file diff --git a/server/src/json_response_builder.h b/server/src/json_response_builder.h index 883a0262..d5ed3aba 100644 --- a/server/src/json_response_builder.h +++ b/server/src/json_response_builder.h @@ -1,5 +1,32 @@ -///AUTHOR: Bernhard Luedtke -#pragma once +/* + * + * Copyright (C) 2024 University of Bamberg, Software Technologies Research Group + * , + * + * This file is part of the SWTbahn command line interface (swtbahn-cli), which is + * a client-server application to interactively control a BiDiB model railway. + * + * swtbahn-cli is licensed under the GNU GENERAL PUBLIC LICENSE (Version 3), see + * the LICENSE file at the project's top-level directory for details or consult + * . + * + * swtbahn-cli is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or any later version. + * + * swtbahn-cli is a RESEARCH PROTOTYPE and distributed WITHOUT ANY WARRANTY, without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * The following people contributed to the conception and realization of the + * present swtbahn-cli (in alphabetic order by surname): + * + * - Bernhard Luedtke + * + */ + +#ifndef JSON_RESPONSE_BUILDER_H +#define JSON_RESPONSE_BUILDER_H #include #include @@ -20,4 +47,6 @@ GString* append_end_of_list(GString *dest, bool add_trailing_comma, bool with_pr GString* append_field_start_of_obj(GString *dest, const char *field); GString* append_start_of_obj(GString *dest, bool with_prepend_newline); -GString* append_end_of_obj(GString *dest, bool add_trailing_comma); \ No newline at end of file +GString* append_end_of_obj(GString *dest, bool add_trailing_comma); + +#endif // JSON_RESPONSE_BUILDER_H \ No newline at end of file From 93755e9c37adef7dc3e3f92409942458d890d4f8 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 25 Jun 2024 16:00:09 +0200 Subject: [PATCH 025/125] remove unused code, add some comments, optimize some details --- server/src/handler_controller.c | 5 +- server/src/handler_driver.c | 195 +++++++------------------------- server/src/handler_monitor.c | 26 +++-- 3 files changed, 60 insertions(+), 166 deletions(-) diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 89749b7f..daeb78de 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -125,7 +125,7 @@ void release_all_interlockers(void) { // get_granted_route_conflicts, but using direct implementation of sectional-style checker -GArray *get_granted_route_conflicts_sectional(const char *route_id) { +static GArray *get_granted_route_conflicts_sectional(const char *route_id) { if (route_id == NULL) { return NULL; } @@ -399,8 +399,9 @@ void release_route(const char *route_id) { syslog_server(LOG_ERR, "Release route - route: %s - unable to set signal to aspect %s", route_id, signal_aspect); + } else { + bidib_flush(); } - bidib_flush(); } free(route->train); diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index d8b024b1..60ef0750 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -92,6 +92,10 @@ static void increment_next_grab_id(void) { } const int train_get_grab_id(const char *train) { + if (train == NULL) { + syslog_server(LOG_ERR, "train_get_grab_id - train parameter is NULL - returning -1"); + return -1; + } pthread_mutex_lock(&grabbed_trains_mutex); int grab_id = -1; for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { @@ -105,6 +109,10 @@ const int train_get_grab_id(const char *train) { } bool train_grabbed(const char *train) { + if (train == NULL) { + syslog_server(LOG_ERR, "train_grabbed - train parameter is NULL - returning false"); + return false; + } bool grabbed = false; pthread_mutex_lock(&grabbed_trains_mutex); for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { @@ -120,6 +128,10 @@ bool train_grabbed(const char *train) { } static bool train_position_is_at(const char *train_id, const char *segment) { + if (train_id == NULL || segment == NULL) { + syslog_server(LOG_ERR, "train_position_is_at - invalid parameters - returning false"); + return false; + } t_bidib_train_position_query train_position_query = bidib_get_train_position(train_id); for (size_t i = 0; i < train_position_query.length; i++) { @@ -134,7 +146,10 @@ static bool train_position_is_at(const char *train_id, const char *segment) { } static const bool is_forward_driving(const t_interlocking_route *route, const char *train_id) { - + if (train_id == NULL || route == NULL) { + syslog_server(LOG_ERR, "is_forward_driving - invalid (NULL) parameter(s) - returning false"); + return false; + } t_bidib_train_position_query train_position_query = bidib_get_train_position(train_id); const bool train_is_left = train_position_query.orientation_is_left; const bool route_is_clockwise = (strcmp(route->orientation, "clockwise") == 0); @@ -174,6 +189,7 @@ static const bool is_forward_driving(const t_interlocking_route *route, const ch if (succ && rev_state_query.available) { electrically_reversed = (rev_state_query.data.state_value == BIDIB_REV_EXEC_STATE_ON); } + bidib_free_reverser_state_query(rev_state_query); break; } } @@ -212,28 +228,6 @@ static bool validate_interlocking_route_members_not_null(const t_interlocking_ro && route->train != NULL); } -static void log_signal_info(int priority, const t_route_signal_info *sig_info) { - if (sig_info != NULL) { - syslog_server(priority, - "Drive route signal info - id: %s, source: %s, destination: %s, path index: %d", - sig_info->id != NULL ? sig_info->id : "NULL", - sig_info->is_source_signal ? "is" : "not", - sig_info->is_destination_signal ? "is" : "not", - sig_info->index_in_route_path); - } -} - -__attribute__ ((unused)) -static void log_signal_info_array(int priority, const t_route_signal_info_array *sig_info_array) { - syslog_server(priority, "log route signal info array - start"); - if (sig_info_array != NULL) { - for (size_t i = 0; i < sig_info_array->len; ++i) { - log_signal_info(priority, sig_info_array->data_ptr[i]); - } - } - syslog_server(priority, "log route signal info array - end"); -} - static void free_route_signal_info_array(t_route_signal_info_array *route_signal_info_array) { if (route_signal_info_array == NULL) { return; @@ -316,9 +310,6 @@ static t_route_signal_info_array get_route_signal_info_array(const t_interlockin "Get route signal info array - route is NULL or some route details are NULL"); return info_arr; } - syslog_server(LOG_DEBUG, - "Get route signal info array - route: %s - start building", - route->id); // 1. Allocate memory for array of pointers to t_route_signal_info type entities const size_t number_of_signal_infos = route->signals->len; @@ -333,7 +324,7 @@ static t_route_signal_info_array get_route_signal_info_array(const t_interlockin // 2. For every signal in route->signals... for (size_t i = 0; i < number_of_signal_infos; ++i) { const char *signal_id_item = g_array_index(route->signals, char *, i); - // 3. Call function to add a signal-info to info_arr for signal_id_item + // ... Call function to add a signal-info to info_arr for signal_id_item if (!add_signal_info_for_signal(&info_arr, signal_id_item, i, number_of_signal_infos)) { free_route_signal_info_array(&info_arr); return info_arr; @@ -366,9 +357,6 @@ static t_route_signal_info_array get_route_signal_info_array(const t_interlockin } } } - syslog_server(LOG_DEBUG, - "Get route signal info array - route: %s - finished building", - route->id); return info_arr; } @@ -466,43 +454,6 @@ static t_train_index_on_route_query get_train_pos_index_in_route_ignore_repeated return ret_query; } -// Queries the position of the train. Checks which segments that the train occupies exist in the route path. -// If train occupies at least one segment in route path, returned t_train_index_on_route_query -// member .pos_index holds the index of the occupied segment that is the furthest along the route, -// and .err_code holds OKAY_TRAIN_ON_ROUTE -// If parameters are invalid, t_train_index_on_route_query .err_code holds ERR_INVALID_PARAM. -// If train is not on tracks, t_train_index_on_route_query .err_code holds ERR_TRAIN_NOT_ON_TRACKS. -// If train is not on route, t_train_index_on_route_query .err_code holds ERR_TRAIN_NOT_ON_ROUTE. -__attribute__ ((unused)) -static t_train_index_on_route_query get_train_pos_index_in_route_path(const char *train_id, - const t_interlocking_route *route) { - t_train_index_on_route_query ret_query = {.pos_index = 0, .err_code = ERR_INVALID_PARAM}; - if (train_id == NULL || route == NULL || route->path == NULL) { - return ret_query; - } - t_bidib_train_position_query train_position_query = bidib_get_train_position(train_id); - if (train_position_query.segments == NULL || train_position_query.length == 0) { - bidib_free_train_position_query(train_position_query); - ret_query.err_code = ERR_TRAIN_NOT_ON_TRACKS; - return ret_query; - } - ret_query.err_code = ERR_TRAIN_NOT_ON_ROUTE; - const size_t path_count = route->path->len; - for (size_t i = 0; i < train_position_query.length; ++i) { - // Search starting at most recent pos_index to skip unnecessary comparisons - for (size_t n = ret_query.pos_index; n < path_count; ++n) { - const char *path_item = g_array_index(route->path, char *, n); - if (n > ret_query.pos_index && strcmp(path_item, train_position_query.segments[i]) == 0) { - ret_query.pos_index = n; - ret_query.err_code = OKAY_TRAIN_ON_ROUTE; - break; - } - } - } - bidib_free_train_position_query(train_position_query); - return ret_query; -} - // For a train at position train_pos_index in route->path, set all signals to stop that // the train has passed and have not yet been set to stop. // Returns the count of how many signals have been set to stop in this function @@ -598,10 +549,6 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, return false; } - syslog_server(LOG_DEBUG, - "Drive route decoupled - route: %s train: %s - signal_info_array has %d elements", - route->id, train_id, signal_info_array.len); - // Signals in a route shall be set to stop once the train has driven passed them. // Destination signal is already in STOP aspect, thus signal_info_array.len - 1 signals. const size_t signals_to_set_to_stop_count = signal_info_array.len - 1; @@ -616,9 +563,6 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, get_train_pos_index_in_route_ignore_repeated_segments(train_id, route, &repeated_segment_flags); if (train_pos_query.err_code != OKAY_TRAIN_ON_ROUTE) { - syslog_server(LOG_DEBUG, - "Drive route decoupled - route: %s train: %s - train position unknown", - route->id, train_id); // Train position unknown, perhaps temporarily lost -> skip this iteration. usleep(TRAIN_DRIVE_TIME_STEP); continue; @@ -632,23 +576,15 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, "Drive route decoupled - route: %s train: %s - train is at index %d (%s)", route->id, train_id, train_pos_query.pos_index, path_item != NULL ? path_item : "NULL"); - - if (train_pos_index_previous > train_pos_query.pos_index) { - syslog_server(LOG_DEBUG, - "Drive route decoupled - route: %s train: %s - " - "new train path index %d is lower than previous path index %d", - route->id, train_id, - train_pos_query.pos_index, train_pos_index_previous); - } - - signals_set_to_stop += update_route_signals_for_train_pos(&signal_info_array, route, train_pos_query.pos_index); + signals_set_to_stop += + update_route_signals_for_train_pos(&signal_info_array, route, train_pos_query.pos_index); first_okay_position = false; } train_pos_index_previous = train_pos_query.pos_index; usleep(TRAIN_DRIVE_TIME_STEP); } - syslog_server(LOG_NOTICE, + syslog_server(LOG_INFO, "Drive route decoupled - Finished setting %d signals to stop for route id %s", signals_set_to_stop, route->id); free_route_signal_info_array(&signal_info_array); @@ -656,71 +592,15 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, return true; } -__attribute__ ((unused)) -static bool drive_route_progressive_stop_signals(const char *train_id, t_interlocking_route *route) { - if (train_id == NULL || route == NULL || route->id == NULL) { - return false; - } - const char *signal_stop_aspect = "aspect_stop"; - const char *next_signal = route->source; - bool set_signal_stop = true; - const int path_count = route->path->len; - for (size_t path_item_index = 0; path_item_index < path_count; path_item_index++) { - // Get path item (segment or signal) - const char *path_item = g_array_index(route->path, char *, path_item_index); - - if (is_type_signal(path_item)) { - // Train will encounter a signal when it exits the current segment - next_signal = path_item; - set_signal_stop = true; - } - - if (set_signal_stop && is_type_segment(path_item)) { - // Signal that the train has just passed will be set to the Stop aspect - // when it enters the next segment - - // Wait until the next segment is entered - while (running && !train_position_is_at(train_id, path_item)) { - usleep(TRAIN_DRIVE_TIME_STEP); - route = get_route(route->id); - if (!drive_route_params_valid(train_id, route)) { - return false; - } - } - - // Set signal to the Stop aspect - set_signal_stop = false; - if (bidib_set_signal(next_signal, signal_stop_aspect)) { - syslog_server(LOG_ERR, - "Drive route progressive stop signals - " - "unable to set route signal %s to aspect %s", - next_signal, signal_stop_aspect); - } else { - bidib_flush(); - syslog_server(LOG_NOTICE, - "Drive route progressive stop signals - set signal: %s to aspect: %s", - next_signal, signal_stop_aspect); - } - } - } - - return true; -} - -static bool drive_route(const int grab_id, const char *route_id, const bool is_automatic) { - pthread_mutex_lock(&grabbed_trains_mutex); - char *train_id = strdup(grabbed_trains[grab_id].name->str); - pthread_mutex_unlock(&grabbed_trains_mutex); - - if (train_id == NULL) { - syslog_server(LOG_ERR, "Drive route - unable to allocate memory for train_id"); +static bool drive_route(const int grab_id, const char* train_id, const char *route_id, const bool is_automatic) { + if (train_id == NULL || route_id == NULL) { + syslog_server(LOG_ERR, "Drive route - train_id and/or route_id is NULL"); return false; } t_interlocking_route *route = get_route(route_id); if (route == NULL || !drive_route_params_valid(train_id, route)) { syslog_server(LOG_ERR, "Drive route - unable to start driving because route is invalid"); - free(train_id); return false; } @@ -769,19 +649,18 @@ static bool drive_route(const int grab_id, const char *route_id, const bool is_a } // Driving stops - syslog_server(LOG_NOTICE, - "Drive route - route: %s train: %s - driving stops", - route->id, train_id); pthread_mutex_lock(&grabbed_trains_mutex); dyn_containers_set_train_engine_instance_inputs(engine_instance, 0, requested_forwards); pthread_mutex_unlock(&grabbed_trains_mutex); + syslog_server(LOG_NOTICE, + "Drive route - route: %s train: %s - driving stops", + route->id, train_id); // Release the route if (drive_route_params_valid(train_id, route)) { release_route(route_id); } - free(train_id); return true; } @@ -791,6 +670,7 @@ static int grab_train(const char *train, const char *engine) { return -1; } pthread_mutex_lock(&grabbed_trains_mutex); + // Check if train is already grabbed for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { if (grabbed_trains[i].is_valid && strcmp(grabbed_trains[i].name->str, train) == 0) { pthread_mutex_unlock(&grabbed_trains_mutex); @@ -800,6 +680,7 @@ static int grab_train(const char *train, const char *engine) { return -1; } } + // Check if there is an unused grab-id int start = next_grab_id; if (grabbed_trains[next_grab_id].is_valid) { increment_next_grab_id(); @@ -814,8 +695,9 @@ static int grab_train(const char *train, const char *engine) { increment_next_grab_id(); } } + // Assign grab id, set track output to master, set engine instance int grab_id = next_grab_id; - increment_next_grab_id(); + increment_next_grab_id(); // increment for next "grab" action grabbed_trains[grab_id].name = g_string_new(train); strcpy(grabbed_trains[grab_id].track_output, "master"); if (dyn_containers_set_train_engine_instance(&grabbed_trains[grab_id], train, engine)) { @@ -862,6 +744,13 @@ char *train_id_from_grab_id(int grab_id) { pthread_mutex_unlock(&grabbed_trains_mutex); return NULL; } + if (grabbed_trains[grab_id].name == NULL) { + syslog_server(LOG_ERR, + "Train id from grab id - train with id %d marked valid but name is NULL", + grab_id); + pthread_mutex_unlock(&grabbed_trains_mutex); + return NULL; + } char *train_id = strdup(grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); if (train_id == NULL) { @@ -1037,10 +926,10 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion } else { onion_response_printf(res, "Route could not be granted (%s)", route_id->str); } + } syslog_server(LOG_NOTICE, "Request: Request train route - train: %s from: %s to: %s - finish", train_id, data_source_name, data_destination_name); - } g_string_free(route_id, true); free(train_id); return OCS_PROCESSED; @@ -1193,7 +1082,7 @@ onion_connection_status handler_drive_route(void *_, onion_request *req, onion_r route_id, train_id, mode); const bool is_automatic = (strcmp(mode, "automatic") == 0); - if (drive_route(grab_id, route_id, is_automatic)) { + if (drive_route(grab_id, train_id, route_id, is_automatic)) { onion_response_printf(res, "Route %s driving completed", route_id); syslog_server(LOG_NOTICE, "Request: Drive route - route: %s train: %s drive mode: %s - finish", @@ -1243,7 +1132,9 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_NOT_IMPLEMENTED; - } else if (data_track_output == NULL) { + } else if (data_track_output == NULL || strlen(data_track_output) > 32) { + // strlen check here as the value is copied to grabbed_trains[grab_id].track_output, + // which has a length of 32. syslog_server(LOG_ERR, "Request: Set dcc train speed - train: %s speed: %d - invalid track output", grabbed_trains[grab_id].name->str, speed); diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 18bcf9ec..be9ccb53 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -767,12 +767,13 @@ onion_connection_status handler_get_debug_info(void *_, onion_request *req, onio build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { GString *debug_info_str = debug_info(); - char response[strlen(debug_info_str->str) + 1]; - strcpy(response, debug_info_str->str); - g_string_free(debug_info_str, true); - - onion_response_printf(res, "%s", response); - syslog_server(LOG_NOTICE, "Request: Get debug info"); + if (debug_info_str != NULL && debug_info_str->str != NULL) { + onion_response_printf(res, "%s", debug_info_str->str); + g_string_free(debug_info_str, true); + syslog_server(LOG_NOTICE, "Request: Get debug info - done"); + } else { + syslog_server(LOG_ERR, "Request: Get debug info - internal error"); + } return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get debug info - system not running or wrong request type"); @@ -807,12 +808,13 @@ onion_connection_status handler_get_debug_info_extra(void *_, onion_request *req build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { GString *debug_info_extra_str = debug_info_extra(); - char response[strlen(debug_info_extra_str->str) + 1]; - strcpy(response, debug_info_extra_str->str); - g_string_free(debug_info_extra_str, true); - - onion_response_printf(res, "%s", response); - syslog_server(LOG_NOTICE, "Request: Get debug info extra"); + if (debug_info_extra_str != NULL && debug_info_extra_str->str != NULL) { + onion_response_printf(res, "%s", debug_info_extra_str->str); + g_string_free(debug_info_extra_str, true); + syslog_server(LOG_NOTICE, "Request: Get debug info extra"); + } else { + syslog_server(LOG_ERR, "Request: Get debug info extra - internal error"); + } return OCS_PROCESSED; } else { syslog_server(LOG_ERR, From bd762c4335d56c085a9076d4f0398f39ef226ac8 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 18 Jul 2024 15:28:40 +0200 Subject: [PATCH 026/125] major admin, controller, driver handler overhaul regarding handler functions and communication --- server/doc/api-formats/admin.md | 4 +- .../doc/api-formats/common_error_message.json | 3 - server/doc/api-formats/common_feedback.json | 3 +- server/doc/api-formats/controller.md | 2 +- server/doc/api-formats/driver.md | 7 +- server/doc/api-formats/driver_grab-train.json | 3 +- .../doc/api-formats/driver_request-route.json | 3 +- ...nication_utils.c => communication_utils.c} | 82 ++-- ...nication_utils.h => communication_utils.h} | 53 +-- server/src/handler_admin.c | 118 +++-- server/src/handler_controller.c | 182 ++++---- server/src/handler_controller.h | 8 +- server/src/handler_driver.c | 414 ++++++++---------- server/src/server.c | 2 +- 14 files changed, 424 insertions(+), 460 deletions(-) delete mode 100644 server/doc/api-formats/common_error_message.json rename server/src/{json_communication_utils.c => communication_utils.c} (56%) rename server/src/{json_communication_utils.h => communication_utils.h} (52%) diff --git a/server/doc/api-formats/admin.md b/server/doc/api-formats/admin.md index c368bcf3..dd655959 100644 --- a/server/doc/api-formats/admin.md +++ b/server/doc/api-formats/admin.md @@ -7,4 +7,6 @@ For the admin endpoints: - admin/release-train - admin/set-dcc-train-speed -See common_feedback.json. \ No newline at end of file +See common_feedback.json. + +There are no other endpoints. \ No newline at end of file diff --git a/server/doc/api-formats/common_error_message.json b/server/doc/api-formats/common_error_message.json deleted file mode 100644 index 86f5014f..00000000 --- a/server/doc/api-formats/common_error_message.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "err_message": "Something failed for reason XY" -} \ No newline at end of file diff --git a/server/doc/api-formats/common_feedback.json b/server/doc/api-formats/common_feedback.json index aef7cd36..f8d9baa7 100644 --- a/server/doc/api-formats/common_feedback.json +++ b/server/doc/api-formats/common_feedback.json @@ -1,4 +1,3 @@ { - "success": true, - "message": "something has been set to something" + "msg": "something has been set to something" } \ No newline at end of file diff --git a/server/doc/api-formats/controller.md b/server/doc/api-formats/controller.md index 16a97d68..9099f7bc 100644 --- a/server/doc/api-formats/controller.md +++ b/server/doc/api-formats/controller.md @@ -9,4 +9,4 @@ For the controller endpoints: See common_feedback.json. For the other controller endpoint(s): -- controller/get-interlocker: see controller_get-interlocker.json \ No newline at end of file +- controller/get-interlocker: see controller_get-interlocker.json and in an error case: common_feedback.json. \ No newline at end of file diff --git a/server/doc/api-formats/driver.md b/server/doc/api-formats/driver.md index a3146414..b86fca29 100644 --- a/server/doc/api-formats/driver.md +++ b/server/doc/api-formats/driver.md @@ -7,4 +7,9 @@ For the driver endpoints: - driver/set-dcc-train-speed - driver/set-train-peripheral -See common_feedback.json. \ No newline at end of file +See common_feedback.json. + +For the other driver endpoint(s): +- driver/grab-train: see driver_grab-train.json +- driver/direction: see driver_direction.json in success case, and common_feedback.json in error case. +- driver/request-route: see driver_request-route.json diff --git a/server/doc/api-formats/driver_grab-train.json b/server/doc/api-formats/driver_grab-train.json index d4b693e4..f32b3715 100644 --- a/server/doc/api-formats/driver_grab-train.json +++ b/server/doc/api-formats/driver_grab-train.json @@ -1,6 +1,5 @@ { - "success": true, - "message": "grabbed train X", + "msg": "grabbed train X", "session-id": 16516512621321, "grab-id": 1 } \ No newline at end of file diff --git a/server/doc/api-formats/driver_request-route.json b/server/doc/api-formats/driver_request-route.json index f511b03e..67160576 100644 --- a/server/doc/api-formats/driver_request-route.json +++ b/server/doc/api-formats/driver_request-route.json @@ -1,5 +1,4 @@ { - "success": true, - "message": "", + "msg": "", "granted-route-id": "123" } \ No newline at end of file diff --git a/server/src/json_communication_utils.c b/server/src/communication_utils.c similarity index 56% rename from server/src/json_communication_utils.c rename to server/src/communication_utils.c index 2bcffd11..d4dfafdf 100644 --- a/server/src/json_communication_utils.c +++ b/server/src/communication_utils.c @@ -25,68 +25,74 @@ * */ -#include "json_communication_utils.h" +#include "communication_utils.h" #include "json_response_builder.h" + +#include "server.h" // for logging + #include -GString *get_common_feedback_json(bool success, const char* message) { +/* +GString *get_common_feedback_json(const char* message) { const gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; GString *g_feedback = g_string_sized_new(32 + add_len); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); - append_field_bool_value(g_feedback, "success", success, true); - append_field_str_value(g_feedback, "message", message != NULL ? message : "", false); + append_field_str_value(g_feedback, "msg", message != NULL ? message : "", false); append_end_of_obj(g_feedback, false); return g_feedback; -} +}*/ -GString *get_common_error_message_json(const char *err_message) { - const gsize add_len = err_message != NULL ? MAX(256, strlen(err_message)) : 0; - GString *g_err_msg = g_string_sized_new(24 + add_len); - g_string_assign(g_err_msg, ""); - append_start_of_obj(g_err_msg, false); - append_field_str_value(g_err_msg, "err_message", err_message != NULL ? err_message : "", false); - append_end_of_obj(g_err_msg, false); - return g_err_msg; -} - -bool send_common_feedback(onion_response *res, bool success, const char* message) { +bool send_common_feedback(onion_response *res, int status_code, const char* message) { if (res == NULL) { return false; } - GString *ret_str = get_common_feedback_json(success, message); - if (ret_str == NULL) { - return false; + onion_response_set_code(res, status_code); + if (message != NULL && strlen(message) > 0) { + return onion_response_printf(res, "{\n\"msg\":\"%s\"\n}", message) >= 0; + } else { + return true; } - bool ret = onion_response_printf(res, "%s", ret_str->str) >= 0; - g_string_free(ret_str, true); - return ret; } -bool send_common_error_message(onion_response *res, const char* err_message) { - if (res == NULL) { - return false; - } - GString *ret_str = get_common_error_message_json(err_message); - if (ret_str == NULL) { - return false; - } - bool ret = onion_response_printf(res, "%s", ret_str->str) >= 0; - g_string_free(ret_str, true); - return ret; -} - -bool send_some_gstring(onion_response *res, GString *gstr) { +bool send_some_gstring(onion_response *res, int status_code, GString *gstr) { if (res == NULL) { if (gstr != NULL) { g_string_free(gstr, true); } return false; - } else if (gstr == NULL) { - return false; + } + onion_response_set_code(res, status_code); + if (gstr == NULL) { + return true; } bool ret = onion_response_printf(res, "%s", gstr->str) >= 0; g_string_free(gstr, true); gstr = NULL; return ret; } + +bool send_some_cstring(onion_response *res, int status_code, const char *cstr) { + if (res == NULL) { + return false; + } + onion_response_set_code(res, status_code); + if (cstr == NULL) { + return true; + } else { + return onion_response_printf(res, "%s", cstr) >= 0; + } +} + +onion_connection_status +handle_req_run_or_method_fail(onion_response *res, bool is_running, const char *caller_logname) { + if (is_running) { + syslog_server(LOG_WARNING, "Request: %s - wrong request type", caller_logname); + onion_response_set_code(res, HTTP_METHOD_NOT_ALLOWED); + return OCS_NOT_IMPLEMENTED; + } else { + syslog_server(LOG_ERR, "Request: %s - system not running", caller_logname); + onion_response_set_code(res, HTTP_SERVICE_UNAVAILABLE); + return OCS_PROCESSED; + } +} diff --git a/server/src/json_communication_utils.h b/server/src/communication_utils.h similarity index 52% rename from server/src/json_communication_utils.h rename to server/src/communication_utils.h index d7cd4263..8c248548 100644 --- a/server/src/json_communication_utils.h +++ b/server/src/communication_utils.h @@ -34,63 +34,48 @@ //########################## COMMON UTIL ########################## -/** - * @brief Build a json object (in form of a string) containing - * the fields "success" with a boolean value and "message" with a string - * value. - * @attention the returned GString * has to be freed/managed by the caller. - * - * @param success value of the boolean "success" field in the json object. - * @param message value of the string "message" field in the json object. - * If NULL is passed, the field will be empty. - * @return GString* json object string with success and message field. - */ -GString *get_common_feedback_json(bool success, const char *message); +#define CUSTOM_HTTP_CODE_CONFLICT 409 /** * @brief Build a json object (in form of a string) containing - * the field "err_message" with a string value, value is content of err_message parameter. + * the field "msg" with a string value. * @attention the returned GString * has to be freed/managed by the caller. * - * @param err_message the error message value for the "err_message" field in the json object. + * @param message value of the string "msg" field in the json object. * If NULL is passed, the field will be empty. - * @return GString* json object string with the err_message field. + * @return GString* json object string with msg field. */ -GString *get_common_error_message_json(const char *err_message); +//GString *get_common_feedback_json(const char *message); /** * @brief Constructs the common-feedback json and sends it via the response res. * * @param res the response over which to send. Shall not be NULL, otherwise no sending takes place. - * @param success intended value of the boolean "success" field in the json to be sent - * @param message intended value of the string "message" field in the json to be sent. - * If message is NULL, the message field will be empty. + * @param status_code http status code to set for the response to be sent + * @param message intended value of the string "msg" field in the json to be sent. + * If message is NULL or empty, no response will be sent at all, just the code will be set. * @return true if parameters were valid * @return false if parameters were invalid or an internal error occurred (nothing will be sent) */ -bool send_common_feedback(onion_response *res, bool success, const char* message); - -/** - * @brief Constructs the common error message json and sends it via the response res. - * - * @param res the response over which to send. Shall not be NULL, otherwise no sending takes place. - * @param err_message intended value of the string "err_message" field in the json to be sent. - * If err_message is NULL, the err_message field will be empty. - * @return true if parameters were valid - * @return false if parameters were invalid or an internal error occurred (nothing will be sent) - */ -bool send_common_error_message(onion_response *res, const char* err_message); +bool send_common_feedback(onion_response *res, int status_code, const char* message); /** * @brief Sends the content of gstr via the response res. Then free's the GString, * i.e., this is a transfer of ownership. * * @param res the response over which to send. Shall not be NULL. - * @param gstr the gstring whose contents to send. Shall not be NULL. - * Will be free'd if it is not null, regardless of whether true or false is returned. + * @param status_code http status code to set for the response to be sent + * @param gstr the gstring whose contents to send. If it is NULL, only the code will be set, nothing + * will be send. The gstr gstring will be free'd if it is not null, regardless of the return value. * @return true if parameters were valid and sending succeeded, * @return false otherwise. */ -bool send_some_gstring(onion_response *res, GString *gstr); +bool send_some_gstring(onion_response *res, int status_code, GString *gstr); + +// This does not free the passed string to be sent (in contrast to the gstring version). +bool send_some_cstring(onion_response *res, int status_code, const char *cstr); + +onion_connection_status +handle_req_run_or_method_fail(onion_response *res, bool is_running, const char *caller_logname); #endif // JSON_COMMUNICATION_UTILS_H \ No newline at end of file diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index 2d73e078..9de41ca5 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -39,6 +39,7 @@ #include "param_verification.h" #include "bahn_data_util.h" #include "websocket_uploader/engine_uploader.h" +#include "communication_utils.h" static pthread_mutex_t start_stop_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_t poll_bidib_messages_thread; @@ -101,7 +102,7 @@ static bool startup_server(void) { return false; } - const int err_interlocker = load_default_interlocker_instance(); + const bool err_interlocker = load_default_interlocker_instance(); if (err_interlocker) { syslog_server(LOG_ERR, "Startup server - Could not load default interlocker instance"); return false; @@ -132,53 +133,47 @@ void shutdown_server(void) { onion_connection_status handler_startup(void *_, onion_request *req, onion_response *res) { build_response_header(res); - int retval = OCS_NOT_IMPLEMENTED; - pthread_mutex_lock(&start_stop_mutex); if (!running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { // Necessary when restarting the server because libbidib closes syslog on exit openlog("swtbahn", 0, LOG_LOCAL0); - session_id = time(NULL); syslog_server(LOG_NOTICE, "Request: Startup server - session id: %ld - start", session_id); - if (startup_server()) { - retval = OCS_PROCESSED; + if (startup_server()) { + pthread_mutex_unlock(&start_stop_mutex); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Startup server - session id: %ld - finish", session_id); - } else { + } else { + pthread_mutex_unlock(&start_stop_mutex); + send_common_feedback(res, HTTP_INTERNAL_ERROR, "unable to start BiDiB"); syslog_server(LOG_ERR, "Request: Startup server - session id: %ld - unable to start BiDiB - abort", session_id); } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Startup server - BiDiB system is already running or wrong request type"); + pthread_mutex_unlock(&start_stop_mutex); + return handle_req_run_or_method_fail(res, running, "Startup server"); } - pthread_mutex_unlock(&start_stop_mutex); - - return retval; } onion_connection_status handler_shutdown(void *_, onion_request *req, onion_response *res) { build_response_header(res); - int retval = OCS_NOT_IMPLEMENTED; - pthread_mutex_lock(&start_stop_mutex); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_NOTICE, "Request: Shutdown server - start"); shutdown_server(); // Can't log "finished" here since bidib closes the syslog when stopping - retval = OCS_PROCESSED; + pthread_mutex_unlock(&start_stop_mutex); + send_common_feedback(res, HTTP_OK, ""); + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Shutdown server - BiDiB system is not running or wrong request type"); - retval = OCS_NOT_IMPLEMENTED; + pthread_mutex_unlock(&start_stop_mutex); + return handle_req_run_or_method_fail(res, running, "Shutdown server"); } - pthread_mutex_unlock(&start_stop_mutex); - - return retval; } onion_connection_status handler_set_track_output(void *_, onion_request *req, onion_response *res) { @@ -188,19 +183,18 @@ onion_connection_status handler_set_track_output(void *_, onion_request *req, on const char *data_state = onion_request_get_post(req, "state"); long int state = strtol(data_state, &end, 10); if (data_state == NULL || (state == LONG_MAX || state == LONG_MIN) || *end != '\0') { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter(s)"); syslog_server(LOG_ERR, "Request: Set track output - invalid parameters"); - return OCS_NOT_IMPLEMENTED; } else { syslog_server(LOG_NOTICE, "Request: Set track output - state: 0x%02x - start", state); bidib_set_track_output_state_all(state); bidib_flush(); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Set track output - state: 0x%02x - finish", state); - return OCS_PROCESSED; } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Set track output - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set track output"); } } @@ -210,8 +204,9 @@ onion_connection_status handler_set_verification_option(void *_, onion_request * if ((onion_request_get_flags(req) & OR_METHODS) == OR_POST) { const char *data_verification_option = onion_request_get_post(req, "verification-option"); if (!params_check_is_bool_string(data_verification_option)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid verification option parameter"); syslog_server(LOG_ERR, "Request: Set verification option - invalid parameters"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } if (strcmp("true", data_verification_option) == 0 || strcmp("True", data_verification_option) == 0 @@ -220,13 +215,13 @@ onion_connection_status handler_set_verification_option(void *_, onion_request * } else { verification_enabled = false; } + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Set verification option - new state: %s - done", verification_enabled ? "enabled" : "disabled"); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Set verification option - wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set verification option"); } } @@ -236,17 +231,18 @@ onion_connection_status handler_set_verification_url(void *_, onion_request *req if ((onion_request_get_flags(req) & OR_METHODS) == OR_POST) { const char *data_verification_url = onion_request_get_post(req, "verification-url"); if (data_verification_url == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid verification URL parameter"); syslog_server(LOG_ERR, "Request: Set verification URL - invalid parameters"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } set_verifier_url(data_verification_url); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Set verification URL - new URL: %s - done", data_verification_url); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Set verification URL - wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set verification URL"); } } @@ -260,10 +256,11 @@ onion_connection_status handler_admin_release_train(void *_, onion_request *req, pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid train id or train not grabbed"); syslog_server(LOG_ERR, "Request: Admin release train - invalid train id or train %s not grabbed", data_train); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, "Request: Admin release train - train: %s - start", data_train); @@ -283,20 +280,19 @@ onion_connection_status handler_admin_release_train(void *_, onion_request *req, if (!release_train(grab_id)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab id parameter"); syslog_server(LOG_ERR, "Request: Admin release train - train: %s - invalid grab id - abort", data_train); - return OCS_NOT_IMPLEMENTED; } else { + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Admin release train - train: %s - finish", data_train); - return OCS_PROCESSED; } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Admin release train - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Admin release train"); } } @@ -307,40 +303,42 @@ onion_connection_status handler_admin_set_dcc_train_speed(void *_, onion_request const char *data_train = onion_request_get_post(req, "train"); const char *data_speed = onion_request_get_post(req, "speed"); const char *data_track_output = onion_request_get_post(req, "track-output"); - int speed = params_check_speed(data_speed); + const int speed = params_check_speed(data_speed); if (speed == 999) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid speed parameter"); syslog_server(LOG_ERR, "Request: Admin set dcc train speed - train: %s speed: %d - invalid speed", data_train, speed); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (data_track_output == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output parameter"); syslog_server(LOG_ERR, - "Request: Admin set dcc train speed - train: %s speed: %d - invalid track output", + "Request: Admin set dcc train speed - " + "train: %s speed: %d - invalid track output", + data_train, speed); + return OCS_PROCESSED; + } + + syslog_server(LOG_NOTICE, + "Request: Admin set dcc train speed - train: %s speed: %d - start", + data_train, speed); + // Does not require lock on grabbed trains mutex as this bidib function is threadsafe. + if (bidib_set_train_speed(data_train, speed, data_track_output)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); + syslog_server(LOG_ERR, + "Request: Admin set dcc train speed - train: %s speed: %d - " + "invalid parameters - abort", data_train, speed); - return OCS_NOT_IMPLEMENTED; } else { + bidib_flush(); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, - "Request: Admin set dcc train speed - train: %s speed: %d - start", + "Request: Admin set dcc train speed - train: %s speed: %d - finish", data_train, speed); - pthread_mutex_lock(&grabbed_trains_mutex); - if (bidib_set_train_speed(data_train, speed, data_track_output)) { - syslog_server(LOG_ERR, - "Request: Admin set dcc train speed - train: %s speed: %d - " - "invalid parameters - abort", - data_train, speed); - } else { - bidib_flush(); - syslog_server(LOG_NOTICE, - "Request: Admin set dcc train speed - train: %s speed: %d - finish", - data_train, speed); - } - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_PROCESSED; } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Admin set dcc train speed - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Admin set dcc train speed"); } } diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 27cdd1ed..7fe683be 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -41,7 +41,7 @@ #include "bahn_data_util.h" #include "check_route_sectional/check_route_sectional_direct.h" #include "json_response_builder.h" -#include "json_communication_utils.h" +#include "communication_utils.h" pthread_mutex_t interlocker_mutex = PTHREAD_MUTEX_INITIALIZER; @@ -55,12 +55,15 @@ static t_interlocker_data interlocker_instances[INTERLOCKER_INSTANCE_COUNT_MAX] static GString *selected_interlocker_name; static int selected_interlocker_instance = -1; -const int set_interlocker(const char *interlocker_name) { +// Returns a value >= 0 if the interlocker with the specified name was set. Otherwise returns -1. +static int set_interlocker(const char *interlocker_name) { + pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance != -1) { - return selected_interlocker_instance; + pthread_mutex_unlock(&interlocker_mutex); + // Another interlocker is already set, return -1 + return -1; } - pthread_mutex_lock(&interlocker_mutex); for (size_t i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { if (!interlocker_instances[i].is_valid) { if (dyn_containers_set_interlocker_instance(&interlocker_instances[i], interlocker_name)) { @@ -75,16 +78,20 @@ const int set_interlocker(const char *interlocker_name) { break; } } + int ret = selected_interlocker_instance; pthread_mutex_unlock(&interlocker_mutex); - return selected_interlocker_instance; + return ret; } -const int unset_interlocker(const char *interlocker_name) { +// Returns the value -1 if the interlocker with the specified name was unset. Otherwise returns -1. +static int unset_interlocker(const char *interlocker_name) { + pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance == -1) { - return selected_interlocker_instance; + pthread_mutex_unlock(&interlocker_mutex); + // Selected interlocker instance is -1 -> no interlocker to unset. + return -1; } - pthread_mutex_lock(&interlocker_mutex); if (strcmp(selected_interlocker_name->str, interlocker_name) == 0 && interlocker_instances[selected_interlocker_instance].is_valid) { dyn_containers_free_interlocker_instance(&interlocker_instances[selected_interlocker_instance]); @@ -93,25 +100,28 @@ const int unset_interlocker(const char *interlocker_name) { selected_interlocker_name = NULL; selected_interlocker_instance = -1; } + int ret = selected_interlocker_instance; pthread_mutex_unlock(&interlocker_mutex); - return selected_interlocker_instance; + // return -1 if unsetting succeeded, otherwise a value >= 0 + return ret; } -const int load_default_interlocker_instance() { +bool load_default_interlocker_instance() { while (!dyn_containers_is_running()) { // Empty } - - selected_interlocker_name = g_string_new("libinterlocker_default (unremovable)"); - const int result = set_interlocker(selected_interlocker_name->str); + const int result = set_interlocker("libinterlocker_default (unremovable)"); + // return true if loading failed, otherwise false return (result == -1); } void release_all_interlockers(void) { + pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_name != NULL) { g_string_free(selected_interlocker_name, true); selected_interlocker_name = NULL; } + pthread_mutex_unlock(&interlocker_mutex); for (size_t i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { pthread_mutex_lock(&interlocker_mutex); @@ -121,8 +131,9 @@ void release_all_interlockers(void) { } pthread_mutex_unlock(&interlocker_mutex); } - + pthread_mutex_lock(&interlocker_mutex); selected_interlocker_instance = -1; + pthread_mutex_unlock(&interlocker_mutex); } GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_train_info) { @@ -349,14 +360,15 @@ const char *grant_route_id(const char *train_id, const char *route_id) { } ///TODO: This should not unconditionally set all route signals to stop, because that would -// prevent sectional route release from working correctly! -void release_route(const char *route_id) { +// prevent sectional route release from working correctly +bool release_route(const char *route_id) { if (route_id == NULL) { syslog_server(LOG_ERR, "Release route - invalid parameter, route_id is null"); - return; + return false; } pthread_mutex_lock(&interlocker_mutex); t_interlocking_route *route = get_route(route_id); + bool ret = false; if (route != NULL && route->train != NULL) { syslog_server(LOG_INFO, "Release route - route: %s - currently granted to train %s, " @@ -378,13 +390,14 @@ void release_route(const char *route_id) { free(route->train); route->train = NULL; syslog_server(LOG_NOTICE, "Release route - route: %s - released", route_id); + ret = true; } else if (route == NULL) { syslog_server(LOG_ERR, "Release route - route: %s - does not exist", route_id); } else { syslog_server(LOG_ERR, "Release route - route: %s - is not granted to any train", route_id); } - pthread_mutex_unlock(&interlocker_mutex); + return ret; } const bool reversers_state_update(void) { @@ -427,18 +440,21 @@ onion_connection_status handler_release_route(void *_, onion_request *req, onion const char *route_id = params_check_route_id(data_route_id); if (strcmp(route_id, "") == 0) { syslog_server(LOG_ERR, "Request: Release route - invalid parameters"); - send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); } else { syslog_server(LOG_NOTICE, "Request: Release route - route: %s - start", route_id); - release_route(route_id); - send_common_feedback(res, true, ""); + bool release_success = release_route(route_id); + if (release_success) { + send_common_feedback(res, HTTP_OK, ""); + } else { + send_common_feedback(res, HTTP_BAD_REQUEST, + "invalid parameters, route does not exist or is not granted"); + } syslog_server(LOG_NOTICE, "Request: Release route - route: %s - finish", route_id); - return OCS_PROCESSED; } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Release route - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Release route"); } } @@ -449,8 +465,7 @@ onion_connection_status handler_set_point(void *_, onion_request *req, onion_res const char *data_state = onion_request_get_post(req, "state"); if (data_point == NULL || data_state == NULL) { syslog_server(LOG_ERR, "Request: Set point - invalid parameters"); - send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); } else { syslog_server(LOG_NOTICE, "Request: Set point - point: %s state: %s - start", @@ -459,20 +474,18 @@ onion_connection_status handler_set_point(void *_, onion_request *req, onion_res syslog_server(LOG_ERR, "Request: Set point - point: %s state: %s - invalid parameters - abort", data_point, data_state); - send_common_feedback(res, false, "invalid parameters"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); } else { bidib_flush(); syslog_server(LOG_NOTICE, "Request: Set point - point: %s state: %s - finish", data_point, data_state); - send_common_feedback(res, true, ""); - return OCS_PROCESSED; + send_common_feedback(res, HTTP_OK, ""); } } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Set point - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set point"); } } @@ -483,8 +496,7 @@ onion_connection_status handler_set_signal(void *_, onion_request *req, onion_re const char *data_state = onion_request_get_post(req, "state"); if (data_signal == NULL || data_state == NULL) { syslog_server(LOG_ERR, "Request: Set signal - invalid parameters"); - send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); } else { syslog_server(LOG_NOTICE, "Request: Set signal - signal: %s state: %s - start", @@ -494,20 +506,18 @@ onion_connection_status handler_set_signal(void *_, onion_request *req, onion_re "Request: Set signal - signal: %s state: %s - " "invalid parameters - abort", data_signal, data_state); - send_common_feedback(res, false, "invalid parameters"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); } else { bidib_flush(); syslog_server(LOG_NOTICE, "Request: Set signal - signal: %s state: %s - finish", data_signal, data_state); - send_common_feedback(res, true, ""); - return OCS_PROCESSED; + send_common_feedback(res, HTTP_OK, ""); } } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Set signal - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set signal"); } } @@ -518,8 +528,7 @@ onion_connection_status handler_set_peripheral(void *_, onion_request *req, onio const char *data_state = onion_request_get_post(req, "state"); if (data_peripheral == NULL || data_state == NULL) { syslog_server(LOG_ERR, "Request: Set peripheral - invalid parameters"); - send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); } else { syslog_server(LOG_NOTICE, "Request: Set peripheral - peripheral: %s state: %s - start", @@ -529,39 +538,41 @@ onion_connection_status handler_set_peripheral(void *_, onion_request *req, onio "Request: Set peripheral - peripheral: %s state: %s - " "invalid parameters - abort", data_peripheral, data_state); - send_common_feedback(res, false, "invalid parameters"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); } else { bidib_flush(); syslog_server(LOG_NOTICE, "Request: Set peripheral - peripheral: %s state: %s - finish", data_peripheral, data_state); - send_common_feedback(res, true, ""); - return OCS_PROCESSED; + send_common_feedback(res, HTTP_OK, ""); } } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Set peripheral - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set peripheral"); } } onion_connection_status handler_get_interlocker(void *_, onion_request *req, onion_response *res) { + ///TODO: Changed to GET, adjust clients! build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { + pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance != -1 && selected_interlocker_name != NULL) { - onion_response_printf(res, "{\n\"interlocker\":\"%s\"\n}", - selected_interlocker_name->str); + GString *g_resstr = g_string_new("{\n\"interlocker\":\""); + g_string_append_printf(g_resstr, "%s\"\n}", + selected_interlocker_name->str); + pthread_mutex_unlock(&interlocker_mutex); + send_some_gstring(res, HTTP_OK, g_resstr); syslog_server(LOG_INFO, "Request: Get interlocker - done"); - return OCS_PROCESSED; } else { - send_common_error_message(res, "No interlocker is currently selected"); + pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_ERR, "Request: Get interlocker - none selected"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "No interlocker is currently selected"); } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get interlocker - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get interlocker"); } } @@ -571,41 +582,46 @@ onion_connection_status handler_set_interlocker(void *_, onion_request *req, oni const char *data_interlocker = onion_request_get_post(req, "interlocker"); if (data_interlocker == NULL) { syslog_server(LOG_ERR, "Request: Set interlocker - invalid parameters"); - send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); } else { syslog_server(LOG_NOTICE, "Request: Set interlocker - interlocker: %s - start", data_interlocker); + pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance != -1) { + pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_ERR, "Request: Set interlocker - interlocker: %s - another " "interlocker instance is already set - abort", data_interlocker); - send_common_feedback(res, false, "another interlocker instance is already set"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, + "another interlocker instance is already set"); + return OCS_PROCESSED; } - - set_interlocker(data_interlocker); - if (selected_interlocker_instance == -1) { + pthread_mutex_unlock(&interlocker_mutex); + // Race condition here: someone else could set an interlocker inbetween + // the unlock and the lock in set_interlocker that is called from here. + // Won't fix for now as we have little contention between controllers that + // want to set different interlockers + int set_i = set_interlocker(data_interlocker); + if (set_i == -1) { syslog_server(LOG_ERR, "Request: Set interlocker - interlocker: %s - invalid " "parameters or no more interlocker instances can be loaded - abort", data_interlocker); - send_common_feedback(res, false, "invalid parameters or no more interlocker " - "instances can be loaded"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters or no more " + "interlocker instances can be loaded"); } else { - send_common_feedback(res, true, selected_interlocker_name->str); + syslog_server(LOG_NOTICE, "Request: Set interlocker - interlocker: %s - finish", data_interlocker); - return OCS_PROCESSED; + send_common_feedback(res, HTTP_OK, selected_interlocker_name->str); } } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Set interlocker - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set interlocker"); } } @@ -615,18 +631,19 @@ onion_connection_status handler_unset_interlocker(void *_, onion_request *req, o const char *data_interlocker = onion_request_get_post(req, "interlocker"); if (data_interlocker == NULL) { syslog_server(LOG_ERR, "Request: Unset interlocker - invalid parameters"); - send_common_feedback(res, false, "invalid parameters (> 0 parameters are NULL)"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); } else { syslog_server(LOG_NOTICE, "Request: Unset interlocker - interlocker: %s - start", data_interlocker); + ///TODO: Should this acquire the interlocker_mutex when checking that global var? if (selected_interlocker_instance == -1) { syslog_server(LOG_ERR, "Request: Unset interlocker - interlocker: %s - " "no interlocker instance to unset - abort", data_interlocker); - send_common_feedback(res, false, "no interlocker instance is set that can be unset"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, + "no interlocker instance is set that can be unset"); + return OCS_PROCESSED; } unset_interlocker(data_interlocker); @@ -635,22 +652,17 @@ onion_connection_status handler_unset_interlocker(void *_, onion_request *req, o "Request: Unset interlocker - interlocker: %s - " "invalid parameters - abort", data_interlocker); - send_common_feedback(res, false, "invalid parameters (set interlocker doesn't " - "match passed interlocker name)"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (set " + "interlocker doesn't match passed interlocker name)"); } else { - ///TODO: This is not really needed -> a good status should imply - // the common feedback with success = true and message empty. - send_common_feedback(res, true, ""); - syslog_server(LOG_NOTICE, "Request: Unset interlocker - interlocker: %s - finish", data_interlocker); - return OCS_PROCESSED; + send_common_feedback(res, HTTP_OK, ""); } } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Unset interlocker - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Unset interlocker"); } } diff --git a/server/src/handler_controller.h b/server/src/handler_controller.h index 7a480fa7..038511ee 100644 --- a/server/src/handler_controller.h +++ b/server/src/handler_controller.h @@ -48,9 +48,9 @@ void release_all_interlockers(void); /** * Loads the default interlocker - * @return 0 if successful, otherwise 1 + * @return false if successful, otherwise true */ -const int load_default_interlocker_instance(); +bool load_default_interlocker_instance(); /** * Finds conflicting routes that have been granted. @@ -110,8 +110,10 @@ const char *grant_route_id(const char *train_id, * Releases the requested route id. * * @param ID of the requested route + * @return true if the release succeeded + * @return false if the release failed */ -void release_route(const char *route_id); +bool release_route(const char *route_id); /** * Requests the reverser state to be updated and waits diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 4cd847d9..cfa865c5 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -42,7 +42,7 @@ #include "interlocking.h" #include "bahn_data_util.h" #include "json_response_builder.h" -#include "json_communication_utils.h" +#include "communication_utils.h" pthread_mutex_t grabbed_trains_mutex = PTHREAD_MUTEX_INITIALIZER; @@ -876,31 +876,53 @@ char *train_id_from_grab_id(int grab_id) { return train_id; } -GString *get_grab_fdbk_json(bool success, const char* message, int l_session_id, int grab_id) { +GString *get_grab_fdbk_json(const char* message, int l_session_id, int grab_id) { gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; GString *g_feedback = g_string_sized_new(96 + add_len); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); - append_field_bool_value(g_feedback, "success", success, true); - append_field_str_value(g_feedback, "message", message != NULL ? message : "", true); + append_field_str_value(g_feedback, "msg", message != NULL ? message : "", true); append_field_int_value(g_feedback, "session-id", l_session_id, true); append_field_int_value(g_feedback, "grab-id", grab_id, false); append_end_of_obj(g_feedback, false); return g_feedback; } -GString *get_reqroute_fdbk_json(bool success, const char* message, const char* granted_route_id) { +GString *get_reqroute_fdbk_json(const char* message, const char* granted_route_id) { gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; GString *g_feedback = g_string_sized_new(64 + add_len); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); - append_field_bool_value(g_feedback, "success", success, true); - append_field_str_value(g_feedback, "message", message != NULL ? message : "", true); + append_field_str_value(g_feedback, "msg", message != NULL ? message : "", true); append_field_str_value(g_feedback, "granted-route-id", granted_route_id, false); append_end_of_obj(g_feedback, false); return g_feedback; } +void fill_grab_feedback(int grab_id, GString *ret_str, int *http_code) { + ret_str = NULL; + if (grab_id == -4) { + ret_str = get_grab_fdbk_json("invalid parameters", 0, -1); + *http_code = HTTP_BAD_REQUEST; + } else if (grab_id == -3) { + ret_str = get_grab_fdbk_json("train has already been grabbed", 0, -1); + *http_code = CUSTOM_HTTP_CODE_CONFLICT; + } else if (grab_id == -2) { + ret_str = get_grab_fdbk_json("all grab-IDs are in use " + "(max no. of grabbed trains reached)", 0, -1); + *http_code = CUSTOM_HTTP_CODE_CONFLICT; + } else if (grab_id == -1) { + ret_str = get_grab_fdbk_json("internal err: failed to start train engine container", 0, -1); + *http_code = HTTP_INTERNAL_ERROR; + } else if (grab_id >= 0) { + ret_str = get_grab_fdbk_json("", session_id, grab_id); + *http_code = HTTP_OK; + } else { + ret_str = get_grab_fdbk_json("internal err: unexpected return from grab_train", 0, -1); + *http_code = HTTP_INTERNAL_ERROR; + } +} + onion_connection_status handler_grab_train(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -908,80 +930,53 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re const char *data_engine = onion_request_get_post(req, "engine"); if (data_train == NULL || data_engine == NULL) { - GString *feedback = get_grab_fdbk_json(false, "invalid parameters", 0, -1); - onion_response_printf(res, "%s", feedback->str); syslog_server(LOG_ERR, "Request: Grab train - invalid parameters"); - g_string_free(feedback, true); - return OCS_NOT_IMPLEMENTED; + GString *feedback = get_grab_fdbk_json("invalid parameters", 0, -1); + send_some_gstring(res, HTTP_BAD_REQUEST, feedback); + return OCS_PROCESSED; } + syslog_server(LOG_NOTICE, "Request: Grab train - train: %s engine: %s - start", data_train, data_engine); t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); - if (!train_state_query.known) { - bidib_free_train_state_query(train_state_query); - GString *ret = get_grab_fdbk_json(false, "unknown train or invalid train state", 0, -1); - send_some_gstring(res, ret); + bool trainstate_known = train_state_query.known; + bidib_free_train_state_query(train_state_query); + if (!trainstate_known) { + GString *ret = get_grab_fdbk_json("unknown train or invalid train state", 0, -1); + send_some_gstring(res, HTTP_NOT_FOUND, ret); syslog_server(LOG_ERR, "Request: Grab train - train: %s engine: %s - " "unknown train or train state - abort", data_train, data_engine); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } - bidib_free_train_state_query(train_state_query); - // -4: invalid params // -3: train already grabbed // -2: all grab IDs are in use // -1: train engine could not be started - int grab_id = grab_train(data_train, data_engine); GString *ret_str = NULL; - if (grab_id == -4) { - ret_str = get_grab_fdbk_json(false, "invalid parameters", 0, -1); - } else if (grab_id == -3) { - ret_str = get_grab_fdbk_json(false, "train has already been grabbed", 0, -1); - } else if (grab_id == -2) { - ret_str = get_grab_fdbk_json(false, "all grab-IDs are in use " - "(max no. of grabbed trains reached)", 0, -1); - } else if (grab_id == -1) { - ret_str = get_grab_fdbk_json(false, "internal err: failed to " - "start train engine container", 0, -1); - } else if (grab_id >= 0) { - ret_str = get_grab_fdbk_json(true, "", session_id, grab_id); - } else { - syslog_server(LOG_ERR, - "Request: Grab train - train: %s engine: %s - " - "unexpected return from grab_train", - data_train, data_engine); - ret_str = get_grab_fdbk_json(false, "internal err: unexpected " - "return from grab_train", 0, -1); - } + int http_code = 0; + fill_grab_feedback(grab_id, ret_str, &http_code); + if (ret_str != NULL) { - send_some_gstring(res, ret_str); - if (grab_id >= 0) { - syslog_server(LOG_ERR, - "Request: Grab train - train: %s engine: %s - " - "train could not be grabbed - abort", - data_train, data_engine); - } else { - syslog_server(LOG_NOTICE, - "Request: Grab train - train: %s engine: %s - finish", - data_train, data_engine); - } - return grab_id > -1 ? OCS_PROCESSED : OCS_NOT_IMPLEMENTED; + send_some_gstring(res, http_code, ret_str); + syslog_server(LOG_NOTICE, + "Request: Grab train - train: %s engine: %s - finish", + data_train, data_engine); } else { syslog_server(LOG_ERR, "Request: Grab train - train: %s engine: %s - " "failed to build reply message - abort", data_train, data_engine); - return OCS_NOT_IMPLEMENTED; + onion_response_set_code(res, HTTP_INTERNAL_ERROR); } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Grab train - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Grab train"); } } @@ -994,19 +989,19 @@ onion_connection_status handler_release_train(void *_, onion_request *req, onion const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (client_session_id != session_id) { - send_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Release train - grab id: %d - invalid session id: %s", grab_id, data_session_id); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { - send_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Release train - grab id: %d - invalid grab id", grab_id); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -1030,23 +1025,53 @@ onion_connection_status handler_release_train(void *_, onion_request *req, onion bidib_free_train_state_query(train_state_query); if (!release_train(grab_id)) { - send_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, - "Request: Release train - grab id: %d train: %s - invalid grab id - abort", + "Request: Release train - grab id: %d train: %s - " + "invalid grab id - abort", grab_id, train_id); - free(train_id); - return OCS_NOT_IMPLEMENTED; } else { - send_common_feedback(res, true, "released train"); + send_common_feedback(res, HTTP_OK, "released train"); syslog_server(LOG_NOTICE, "Request: Release train - grab id: %d train: %s - finish", grab_id, train_id); - free(train_id); - return OCS_PROCESSED; } + free(train_id); + return OCS_PROCESSED; + } else { + return handle_req_run_or_method_fail(res, running, "Release train"); + } +} + +void fill_request_route_feedback(GString *route_id, GString *ret_str, int *http_code) { + ret_str = NULL; + *http_code = HTTP_BAD_REQUEST; + if (route_id != NULL && route_id->str != NULL && params_check_is_number(route_id->str)) { + ret_str = get_reqroute_fdbk_json("", route_id->str); + *http_code = HTTP_OK; } else { - syslog_server(LOG_ERR, "Request: Release train - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + *http_code = HTTP_BAD_REQUEST; + if (route_id == NULL || route_id->str == NULL) { + ret_str = get_reqroute_fdbk_json("Route could not be granted", ""); + } else if (strcmp(route_id->str, "no_interlocker") == 0) { + ret_str = get_reqroute_fdbk_json("No interlocker selected for use", ""); + } else if (strcmp(route_id->str, "no_routes") == 0) { + ret_str = get_reqroute_fdbk_json("No routes possible", ""); + } else if (strcmp(route_id->str, "not_grantable") == 0) { + ret_str = get_reqroute_fdbk_json("Route conflicts with granted route(s)", ""); + *http_code = CUSTOM_HTTP_CODE_CONFLICT; + } else if (strcmp(route_id->str, "not_clear") == 0) { + ret_str = get_reqroute_fdbk_json("Route found has occupied tracks or source " + "signal is not stop", ""); + *http_code = CUSTOM_HTTP_CODE_CONFLICT; + } else { + GString *aux = g_string_new("Route could not be granted"); + if (route_id != NULL) { + g_string_append_printf(aux, " (%s)", route_id->str); + } + ret_str = get_reqroute_fdbk_json(aux->str, ""); + g_string_free(aux, true); + } } } @@ -1061,25 +1086,25 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (data_source_name == NULL || data_destination_name == NULL) { - send_some_gstring(res, get_reqroute_fdbk_json(false, "invalid parameters", "")); + send_some_gstring(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid parameters", "")); syslog_server(LOG_ERR, "Request: Request train route - invalid parameters"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (client_session_id != session_id) { - send_some_gstring(res, get_reqroute_fdbk_json(false, "invalid session-id", "")); + send_some_gstring(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid session-id", "")); syslog_server(LOG_ERR, "Request: Request train route - from: %s to: %s - invalid session id", data_source_name, data_destination_name); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { - send_some_gstring(res, get_reqroute_fdbk_json(false, "invalid grab-id", "")); + send_some_gstring(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid grab-id", "")); syslog_server(LOG_ERR, "Request: Request train route - from: %s to: %s - invalid grab id", data_source_name, data_destination_name); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -1088,38 +1113,10 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion // Use interlocker to find and grant a route GString *route_id = grant_route(train_id, data_source_name, data_destination_name); - if (route_id->str != NULL && params_check_is_number(route_id->str)) { - syslog_server(LOG_NOTICE, - "Request: Request train route - train: %s from: %s to: %s" - " - route %s granted", - train_id, data_source_name, data_destination_name, route_id->str); - send_some_gstring(res, get_reqroute_fdbk_json(true, "", route_id->str)); - } else { - onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_WARNING, - "Request: Request train route - train: %s from: %s to: %s" - " - route %s not granted", - train_id, data_source_name, data_destination_name, route_id->str); - GString *ret_str; - if (strcmp(route_id->str, "no_interlocker") == 0) { - ret_str = get_reqroute_fdbk_json(false, "No interlocker selected for use", ""); - } else if (strcmp(route_id->str, "no_routes") == 0) { - ret_str = get_reqroute_fdbk_json(false, "No routes possible", ""); - } else if (strcmp(route_id->str, "not_grantable") == 0) { - ret_str = get_reqroute_fdbk_json(false, "Route conflicts with granted route(s)", ""); - } else if (strcmp(route_id->str, "not_clear") == 0) { - ret_str = get_reqroute_fdbk_json(false, "Route found has occupied tracks or source " - "signal is not stop", ""); - } else { - GString *aux = g_string_new("Route could not be granted"); - if (route_id != NULL) { - g_string_append_printf(aux, " (%s)", route_id->str); - } - ret_str = get_reqroute_fdbk_json(false, aux->str, ""); - g_string_free(aux, true); - } - send_some_gstring(res, ret_str); - } + int http_code = 0; + GString *ret_str = NULL; + fill_request_route_feedback(route_id, ret_str, &http_code); + send_some_gstring(res, http_code, ret_str); syslog_server(LOG_NOTICE, "Request: Request train route - train: %s from: %s to: %s - finish", train_id, data_source_name, data_destination_name); @@ -1127,9 +1124,7 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion free(train_id); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Request train route - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Request train route"); } } @@ -1146,25 +1141,25 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on const char *route_id = params_check_route_id(data_route_id); if (strcmp(route_id, "") == 0) { - send_common_feedback(res, false, "invalid route-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); syslog_server(LOG_ERR, "Request: Request train route id - invalid route id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (client_session_id != session_id) { - send_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Request train route id - route: %s - invalid session id", route_id); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { - send_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Request train route id - route: %s - invalid grab id", route_id); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -1173,37 +1168,25 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on // Grant the route ID using an internal algorithm const char *result = grant_route_id(train_id, route_id); - if (strcmp(result, "granted") == 0) { - send_common_feedback(res, true, result); - syslog_server(LOG_NOTICE, - "Request: Request train route id - train: %s route: %s - route granted", - train_id, route_id); + send_common_feedback(res, HTTP_OK, result); + } else if (strcmp(result, "not_grantable") == 0) { + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, + "Route not available or has conflicts with granted route(s)"); + } else if (strcmp(result, "not_clear") == 0) { + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, + "Route has occupied tracks or source signal is not stop"); } else { - onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_WARNING, - "Request: Request train route id - train: %s route: %s - route not granted (%s)", - train_id, route_id, result); - - if (strcmp(result, "not_grantable") == 0) { - send_common_feedback(res, false, "Route not available or has " - "conflicts with granted route(s)"); - } else if (strcmp(result, "not_clear") == 0) { - send_common_feedback(res, false, "Route has occupied tracks or " - "source signal is not stop"); - } else { - send_common_feedback(res, false, "Route could not be granted"); - } + send_common_feedback(res, HTTP_BAD_REQUEST, "Route could not be granted"); } + syslog_server(LOG_NOTICE, "Request: Request train route id - train: %s route: %s - finish", train_id, route_id); free(train_id); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Request train route id - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Request train route id"); } } @@ -1216,32 +1199,29 @@ onion_connection_status handler_driving_direction(void *_, onion_request *req, const char *route_id = params_check_route_id(data_route_id); if (data_train == NULL) { syslog_server(LOG_ERR, "Request: Driving direction - train id is NULL"); - onion_response_printf(res, "{\n\"err_msg\": \"Invalid train-id parameter\"\n}"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "Invalid train-id parameter"); + return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { syslog_server(LOG_ERR, "Request: Driving direction - train: %s - invalid route id", data_train); - onion_response_printf(res, "{\n\"err_msg\": \"Invalid route-id parameter\"\n}"); - return OCS_NOT_IMPLEMENTED; + send_common_feedback(res, HTTP_BAD_REQUEST, "Invalid route-id parameter"); + return OCS_PROCESSED; } syslog_server(LOG_INFO, "Request: Driving direction - train: %s - start", data_train); pthread_mutex_lock(&interlocker_mutex); const t_interlocking_route *route = get_route(route_id); if (is_forward_driving(route, data_train)) { - onion_response_printf(res, "{\n\"direction\": \"forwards\"\n}"); + send_some_cstring(res, HTTP_OK, "{\n\"direction\": \"forwards\"\n}"); } else { - onion_response_printf(res, "{\n\"direction\": \"backwards\"\n}"); + send_some_cstring(res, HTTP_OK, "{\n\"direction\": \"backwards\"\n}"); } pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_INFO, "Request: Driving direction - train: %s - finish", data_train); return OCS_PROCESSED; - } else { - syslog_server(LOG_ERR, - "Request: Driving direction - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Driving direction"); } } @@ -1258,24 +1238,24 @@ onion_connection_status handler_drive_route(void *_, onion_request *req, onion_r const char *mode = params_check_mode(data_mode); if (client_session_id != session_id) { - send_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Drive route - invalid session id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (strcmp(mode, "") == 0) { - send_common_feedback(res, false, "invalid driving mode"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid driving mode"); syslog_server(LOG_ERR, "Request: Drive route - invalid driving mode"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { - send_common_feedback(res, false, "invalid route-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); syslog_server(LOG_ERR, "Request: Drive route - invalid route id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { syslog_server(LOG_ERR, "Request: Drive route - route: %s - invalid grab id", route_id); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -1284,25 +1264,22 @@ onion_connection_status handler_drive_route(void *_, onion_request *req, onion_r const bool is_automatic = (strcmp(mode, "automatic") == 0); if (drive_route(grab_id, route_id, is_automatic)) { - send_common_feedback(res, true, "Route driving completed"); + send_common_feedback(res, HTTP_OK, "Route driving completed"); syslog_server(LOG_NOTICE, "Request: Drive route - route: %s train: %s drive mode: %s - finish", route_id, train_id, mode); - free(train_id); - return OCS_PROCESSED; } else { - send_common_feedback(res, false, "Route driving aborted"); + send_common_feedback(res, HTTP_INTERNAL_ERROR, "Route driving aborted"); syslog_server(LOG_ERR, "Request: Drive route - route: %s train: %s drive mode: %s - " "driving failed - abort", route_id, train_id, mode); ///TODO: Automatic countermeasures? e.g. set train speed to 0 - free(train_id); - return OCS_NOT_IMPLEMENTED; } + free(train_id); + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Drive route - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Drive route"); } } @@ -1319,31 +1296,31 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, int speed = params_check_speed(data_speed); if (client_session_id != session_id) { - send_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid session id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); - send_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid grab id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (speed == 999) { - send_common_feedback(res, false, "bad speed"); + send_common_feedback(res, HTTP_BAD_REQUEST, "bad speed"); syslog_server(LOG_ERR, "Request: Set dcc train speed - train: %s speed: %d - bad speed", grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (data_track_output == NULL) { - send_common_feedback(res, false, "invalid track output"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output"); syslog_server(LOG_ERR, "Request: Set dcc train speed - train: %s speed: %d - invalid track output", grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -1356,13 +1333,11 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, syslog_server(LOG_NOTICE, "Request: Set dcc train speed - train: %s speed: %d - finish", grabbed_trains[grab_id].name->str, speed); - send_common_feedback(res, true, ""); pthread_mutex_unlock(&grabbed_trains_mutex); + send_common_feedback(res, HTTP_OK, ""); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Set dcc train speed - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set dcc train speed"); } } @@ -1380,32 +1355,32 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, int speed = params_check_calibrated_speed(data_speed); if (client_session_id != session_id) { - send_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid session id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); - send_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid grab id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (speed == 999) { - send_common_feedback(res, false, "bad speed"); + send_common_feedback(res, HTTP_BAD_REQUEST, "bad speed"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - train: %s speed: %d - bad speed", grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (data_track_output == NULL) { - send_common_feedback(res, false, "invalid track output"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - train: %s speed: %d - " "invalid track output", grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -1413,27 +1388,22 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, grabbed_trains[grab_id].name->str, speed); if (bidib_set_calibrated_train_speed(grabbed_trains[grab_id].name->str, speed, data_track_output)) { - send_common_feedback(res, false, "invalid parameters"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - train: %s speed: %d - " "invalid parameters - abort", grabbed_trains[grab_id].name->str, speed); - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); - send_common_feedback(res, true, ""); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Set calibrated train speed - train: %s speed: %d - finish", grabbed_trains[grab_id].name->str, speed); - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_PROCESSED; } - + pthread_mutex_unlock(&grabbed_trains_mutex); + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Set calibrated train speed - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set calibrated train speed"); } } @@ -1449,50 +1419,45 @@ onion_connection_status handler_set_train_emergency_stop(void *_, int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (client_session_id != session_id) { - send_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid session id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); - send_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid grab id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (data_track_output == NULL) { - send_common_feedback(res, false, "invalid track output"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output"); syslog_server(LOG_ERR, "Request: Set train emergency stop - train: %s - invalid track output", grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, "Request: Set train emergency stop - train: %s - start", grabbed_trains[grab_id].name->str); if (bidib_emergency_stop_train(grabbed_trains[grab_id].name->str, data_track_output)) { - send_common_feedback(res, false, "invalid parameters"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); syslog_server(LOG_ERR, "Request: Set train emergency stop - train: %s - invalid parameters - abort", grabbed_trains[grab_id].name->str); - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); - send_common_feedback(res, true, ""); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Set train emergency stop - train: %s - finish", grabbed_trains[grab_id].name->str); - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_PROCESSED; } - + pthread_mutex_unlock(&grabbed_trains_mutex); + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Set train emergency stop - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set train emergency stop"); } } @@ -1511,39 +1476,39 @@ onion_connection_status handler_set_train_peripheral(void *_, int state = params_check_state(data_state); if (client_session_id != session_id) { - send_common_feedback(res, false, "invalid session-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set train peripheral - invalid session id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } pthread_mutex_lock(&grabbed_trains_mutex); if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); - send_common_feedback(res, false, "invalid grab-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set train peripheral - invalid grab id"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (state == -1) { - send_common_feedback(res, false, "invalid peripheral state"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid peripheral state"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s - invalid state", grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (data_peripheral == NULL) { - send_common_feedback(res, false, "invalid peripheral"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid peripheral"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s - invalid peripheral", grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } else if (data_track_output == NULL) { - send_common_feedback(res, false, "invalid track output"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s peripheral: %s - " "invalid track output", grabbed_trains[grab_id].name->str, data_peripheral); pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -1552,28 +1517,23 @@ onion_connection_status handler_set_train_peripheral(void *_, if (bidib_set_train_peripheral(grabbed_trains[grab_id].name->str, data_peripheral, state, data_track_output)) { - send_common_feedback(res, false, "invalid parameters"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s " "peripheral: %s state: 0x%02x - invalid parameters - abort", grabbed_trains[grab_id].name->str, data_peripheral, state); - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_NOT_IMPLEMENTED; } else { bidib_flush(); - send_common_feedback(res, true, ""); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Set train peripheral - train: %s peripheral: %s state: 0x%02x" " - finish", grabbed_trains[grab_id].name->str, data_peripheral, state); - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_PROCESSED; } - + pthread_mutex_unlock(&grabbed_trains_mutex); + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Set train peripheral - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Set train peripheral"); } } diff --git a/server/src/server.c b/server/src/server.c index c8d787fa..4707da91 100644 --- a/server/src/server.c +++ b/server/src/server.c @@ -104,7 +104,7 @@ static onion_connection_status handler_assets(void *_, onion_request *req, onion onion_connection_status status = onion_shortcut_response_file(full_filename->str, req, res); - g_string_free(full_filename, TRUE); + g_string_free(full_filename, true); return status; } From 1b2ca2bf6e9e256720aab837d984150ef1e16b8d Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 18 Jul 2024 15:38:49 +0200 Subject: [PATCH 027/125] Added readme to json schema doc --- server/doc/api-formats/Readme.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 server/doc/api-formats/Readme.md diff --git a/server/doc/api-formats/Readme.md b/server/doc/api-formats/Readme.md new file mode 100644 index 00000000..3b9ad0aa --- /dev/null +++ b/server/doc/api-formats/Readme.md @@ -0,0 +1,5 @@ +# Notes on the documentation of reply schemata per endpoint +- Always analyze the returned HTTP status code first. Information about success or failure of a request to an endpoint is encoded in the HTTP status code of the reply. +- An endpoint may reply with a message *up to* the specified schema, i.e., the returned message will not contain more fields than indicated here. However, some fields may be left out, or the reply might be empty. Therefore, a client must always check what fields are actually contained, it cannot rely on the message containing all fields in the schema. + - For example, in a simple success scenario, the reply often will have status code 200 (HTTP OK), and no content. +- There are endpoints for which two different possible schemata are referenced (e.g., the "driver/direction" endpoint can reply with either a message like common_feedback.json or driver_direction.json). In this case, one has to always check which fields are present. \ No newline at end of file From 8faef0afec53df9da2b0773113530c20462a63fe Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 18 Jul 2024 16:01:25 +0200 Subject: [PATCH 028/125] fix route conflict array element setting --- server/src/handler_controller.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 7fe683be..245590bf 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -172,8 +172,12 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ g_array_free(conflict_route_ids, true); return NULL; } - snprintf(conflict_route_id_string, conflict_entry_len, "%s (%s)", - conflict_route->id, conflict_route->train); + if (include_conflict_train_info) { + snprintf(conflict_route_id_string, conflict_entry_len, "%s (%s)", + conflict_route->id, conflict_route->train); + } else { + snprintf(conflict_route_id_string, conflict_entry_len, "%s", conflict_route->id); + } g_array_append_val(conflict_route_ids, conflict_route_id_string); } } From 0f861311602c2b3e99dd8f6a1e632f0c55b86233 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 18 Jul 2024 17:21:51 +0200 Subject: [PATCH 029/125] const adjustments; handler_monitor adapted to new utils --- server/src/communication_utils.c | 11 - server/src/communication_utils.h | 11 - server/src/handler_admin.c | 2 +- server/src/handler_controller.c | 69 +++--- server/src/handler_controller.h | 4 +- server/src/handler_driver.c | 34 +-- server/src/handler_driver.h | 2 +- server/src/handler_monitor.c | 230 +++++++----------- .../src/websocket_uploader/engine_uploader.c | 2 +- 9 files changed, 139 insertions(+), 226 deletions(-) diff --git a/server/src/communication_utils.c b/server/src/communication_utils.c index d4dfafdf..4c66c8b7 100644 --- a/server/src/communication_utils.c +++ b/server/src/communication_utils.c @@ -32,17 +32,6 @@ #include -/* -GString *get_common_feedback_json(const char* message) { - const gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; - GString *g_feedback = g_string_sized_new(32 + add_len); - g_string_assign(g_feedback, ""); - append_start_of_obj(g_feedback, false); - append_field_str_value(g_feedback, "msg", message != NULL ? message : "", false); - append_end_of_obj(g_feedback, false); - return g_feedback; -}*/ - bool send_common_feedback(onion_response *res, int status_code, const char* message) { if (res == NULL) { return false; diff --git a/server/src/communication_utils.h b/server/src/communication_utils.h index 8c248548..69928a49 100644 --- a/server/src/communication_utils.h +++ b/server/src/communication_utils.h @@ -36,17 +36,6 @@ #define CUSTOM_HTTP_CODE_CONFLICT 409 -/** - * @brief Build a json object (in form of a string) containing - * the field "msg" with a string value. - * @attention the returned GString * has to be freed/managed by the caller. - * - * @param message value of the string "msg" field in the json object. - * If NULL is passed, the field will be empty. - * @return GString* json object string with msg field. - */ -//GString *get_common_feedback_json(const char *message); - /** * @brief Constructs the common-feedback json and sends it via the response res. * diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index 9de41ca5..48accbe9 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -181,7 +181,7 @@ onion_connection_status handler_set_track_output(void *_, onion_request *req, on if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { char *end; const char *data_state = onion_request_get_post(req, "state"); - long int state = strtol(data_state, &end, 10); + const long int state = strtol(data_state, &end, 10); if (data_state == NULL || (state == LONG_MAX || state == LONG_MIN) || *end != '\0') { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter(s)"); syslog_server(LOG_ERR, "Request: Set track output - invalid parameters"); diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 5451b0b9..6bface4b 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -56,10 +56,9 @@ static GString *selected_interlocker_name; static int selected_interlocker_instance = -1; // Returns a value >= 0 if the interlocker with the specified name was set. Otherwise returns -1. +// Only call with interlocker_mutex locked. static int set_interlocker(const char *interlocker_name) { - pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance != -1) { - pthread_mutex_unlock(&interlocker_mutex); // Another interlocker is already set, return -1 return -1; } @@ -78,16 +77,13 @@ static int set_interlocker(const char *interlocker_name) { break; } } - int ret = selected_interlocker_instance; - pthread_mutex_unlock(&interlocker_mutex); - return ret; + return selected_interlocker_instance; } // Returns the value -1 if the interlocker with the specified name was unset. Otherwise returns -1. +// Only call with interlocker_mutex locked. static int unset_interlocker(const char *interlocker_name) { - pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance == -1) { - pthread_mutex_unlock(&interlocker_mutex); // Selected interlocker instance is -1 -> no interlocker to unset. return -1; } @@ -101,7 +97,6 @@ static int unset_interlocker(const char *interlocker_name) { selected_interlocker_instance = -1; } int ret = selected_interlocker_instance; - pthread_mutex_unlock(&interlocker_mutex); // return -1 if unsetting succeeded, otherwise a value >= 0 return ret; } @@ -110,7 +105,9 @@ bool load_default_interlocker_instance() { while (!dyn_containers_is_running()) { // Empty } + pthread_mutex_lock(&interlocker_mutex); const int result = set_interlocker("libinterlocker_default (unremovable)"); + pthread_mutex_unlock(&interlocker_mutex); // return true if loading failed, otherwise false return (result == -1); } @@ -121,17 +118,12 @@ void release_all_interlockers(void) { g_string_free(selected_interlocker_name, true); selected_interlocker_name = NULL; } - pthread_mutex_unlock(&interlocker_mutex); - for (size_t i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { - pthread_mutex_lock(&interlocker_mutex); if (interlocker_instances[i].is_valid) { dyn_containers_free_interlocker_instance(&interlocker_instances[i]); interlocker_instances[i].is_valid = false; } - pthread_mutex_unlock(&interlocker_mutex); } - pthread_mutex_lock(&interlocker_mutex); selected_interlocker_instance = -1; pthread_mutex_unlock(&interlocker_mutex); } @@ -158,17 +150,20 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ // actually "safe" to grant, skip this conflict/dont add it to the list. continue; } - size_t conflict_entry_len; - if (include_conflict_train_info) { - conflict_entry_len = strlen(conflict_route->id) + 1; - } else { - conflict_entry_len = strlen(conflict_route->id) + 1 + strlen(conflict_route->train) + 3; + size_t conflict_entry_len = strlen(conflict_route->id) + 1; + if (!include_conflict_train_info) { + conflict_entry_len += strlen(conflict_route->train) + 3; } char *conflict_route_id_string = malloc(sizeof(char) * conflict_entry_len); if (conflict_route_id_string == NULL) { syslog_server(LOG_ERR, "get_granted_route_conflicts - failed to allocate memory" " for conflict_route_id_string"); + ///TODO: Test if this freeing works. + for (size_t n = 0; n < conflict_route_ids->len; ++n) { + char *elem = g_array_index(conflict_route_ids, char *, n); + free(elem); + } g_array_free(conflict_route_ids, true); return NULL; } @@ -185,7 +180,7 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ return conflict_route_ids; } -const bool get_route_is_clear(const char *route_id) { +bool get_route_is_clear(const char *route_id) { if (route_id == NULL) { return false; } @@ -196,7 +191,7 @@ const bool get_route_is_clear(const char *route_id) { const size_t signal_ids_len = config_get_array_string_value("route", route_id, "route_signals", signal_ids); for (size_t i = 0; i < signal_ids_len; i++) { - char *signal_state = track_state_get_value(signal_ids[i]); + const char *signal_state = track_state_get_value(signal_ids[i]); if (strcmp(signal_state, "stop")) { bahn_data_util_free_cached_track_state(); return false; @@ -293,8 +288,8 @@ const char *grant_route_id(const char *train_id, const char *route_id) { } pthread_mutex_lock(&interlocker_mutex); // Check whether the route can be granted - t_interlocking_route * const route = get_route(route_id); - GArray * const granted_conflicts = get_granted_route_conflicts(route_id, false); + t_interlocking_route *route = get_route(route_id); + GArray *granted_conflicts = get_granted_route_conflicts(route_id, false); if (granted_conflicts == NULL) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_WARNING, @@ -303,6 +298,11 @@ const char *grant_route_id(const char *train_id, const char *route_id) { return "not_grantable"; } const bool hasGrantedConflicts = (granted_conflicts->len > 0); + for (int i = 0; i < granted_conflicts->len; ++i) { + if (g_array_index(granted_conflicts, char *, i) != NULL) { + free(g_array_index(granted_conflicts, char *, i)); + } + } g_array_free(granted_conflicts, true); if (route->train != NULL || hasGrantedConflicts) { pthread_mutex_unlock(&interlocker_mutex); @@ -405,7 +405,7 @@ bool release_route(const char *route_id) { return ret; } -const bool reversers_state_update(void) { +bool reversers_state_update(void) { const int max_retries = 5; bool error = false; @@ -572,8 +572,8 @@ onion_connection_status handler_get_interlocker(void *_, onion_request *req, oni syslog_server(LOG_INFO, "Request: Get interlocker - done"); } else { pthread_mutex_unlock(&interlocker_mutex); - syslog_server(LOG_ERR, "Request: Get interlocker - none selected"); send_common_feedback(res, HTTP_BAD_REQUEST, "No interlocker is currently selected"); + syslog_server(LOG_ERR, "Request: Get interlocker - none selected"); } return OCS_PROCESSED; } else { @@ -603,25 +603,21 @@ onion_connection_status handler_set_interlocker(void *_, onion_request *req, oni "another interlocker instance is already set"); return OCS_PROCESSED; } - pthread_mutex_unlock(&interlocker_mutex); - // Race condition here: someone else could set an interlocker inbetween - // the unlock and the lock in set_interlocker that is called from here. - // Won't fix for now as we have little contention between controllers that - // want to set different interlockers int set_i = set_interlocker(data_interlocker); if (set_i == -1) { + pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters or no more " + "interlocker instances can be loaded"); syslog_server(LOG_ERR, "Request: Set interlocker - interlocker: %s - invalid " "parameters or no more interlocker instances can be loaded - abort", data_interlocker); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters or no more " - "interlocker instances can be loaded"); } else { - + send_common_feedback(res, HTTP_OK, selected_interlocker_name->str); + pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_NOTICE, "Request: Set interlocker - interlocker: %s - finish", data_interlocker); - send_common_feedback(res, HTTP_OK, selected_interlocker_name->str); } } return OCS_PROCESSED; @@ -640,8 +636,9 @@ onion_connection_status handler_unset_interlocker(void *_, onion_request *req, o } else { syslog_server(LOG_NOTICE, "Request: Unset interlocker - interlocker: %s - start", data_interlocker); - ///TODO: Should this acquire the interlocker_mutex when checking that global var? + pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance == -1) { + pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_ERR, "Request: Unset interlocker - interlocker: %s - " "no interlocker instance to unset - abort", @@ -650,9 +647,10 @@ onion_connection_status handler_unset_interlocker(void *_, onion_request *req, o "no interlocker instance is set that can be unset"); return OCS_PROCESSED; } - + unset_interlocker(data_interlocker); if (selected_interlocker_instance != -1) { + pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_ERR, "Request: Unset interlocker - interlocker: %s - " "invalid parameters - abort", @@ -660,6 +658,7 @@ onion_connection_status handler_unset_interlocker(void *_, onion_request *req, o send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (set " "interlocker doesn't match passed interlocker name)"); } else { + pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_NOTICE, "Request: Unset interlocker - interlocker: %s - finish", data_interlocker); diff --git a/server/src/handler_controller.h b/server/src/handler_controller.h index 038511ee..0a9f6d97 100644 --- a/server/src/handler_controller.h +++ b/server/src/handler_controller.h @@ -70,7 +70,7 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ * @param ID of route for which clearance should be checked * @return true if clear, otherwise false */ -const bool get_route_is_clear(const char *route_id); +bool get_route_is_clear(const char *route_id); /** * Determines whether conflicting routes that have @@ -122,7 +122,7 @@ bool release_route(const char *route_id); * * @return true if the update was successful, otherwise false */ -const bool reversers_state_update(void); +bool reversers_state_update(void); onion_connection_status handler_release_route(void *_, onion_request *req, onion_response *res); diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 2859b839..11d9e7fb 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -93,13 +93,13 @@ static void increment_next_grab_id(void) { } } -const int train_get_grab_id(const char *train) { +int train_get_grab_id(const char *train) { if (train == NULL) { syslog_server(LOG_ERR, "train_get_grab_id - train parameter is NULL - returning -1"); return -1; } - pthread_mutex_lock(&grabbed_trains_mutex); int grab_id = -1; + pthread_mutex_lock(&grabbed_trains_mutex); for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { if (grabbed_trains[i].is_valid && strcmp(grabbed_trains[i].name->str, train) == 0) { grab_id = i; @@ -147,7 +147,7 @@ static bool train_position_is_at(const char *train_id, const char *segment) { return false; } -static const bool is_forward_driving(const t_interlocking_route *route, const char *train_id) { +static bool is_forward_driving(const t_interlocking_route *route, const char *train_id) { if (route == NULL || train_id == NULL) { syslog_server(LOG_ERR, "Is forward driving - invalid parameters"); return true; @@ -594,7 +594,7 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, return true; } -static bool drive_route(const int grab_id, const char* train_id, const char *route_id, const bool is_automatic) { +static bool drive_route(const int grab_id, const char* train_id, const char *route_id, bool is_automatic) { if (train_id == NULL || route_id == NULL) { syslog_server(LOG_ERR, "Drive route - train_id and/or route_id is NULL"); return false; @@ -683,7 +683,7 @@ static int grab_train(const char *train, const char *engine) { } } // Check if there is an unused grab-id - int start = next_grab_id; + const int start = next_grab_id; if (grabbed_trains[next_grab_id].is_valid) { increment_next_grab_id(); while (grabbed_trains[next_grab_id].is_valid) { @@ -698,7 +698,7 @@ static int grab_train(const char *train, const char *engine) { } } // Assign grab id, set track output to master, set engine instance - int grab_id = next_grab_id; + const int grab_id = next_grab_id; increment_next_grab_id(); // increment for next "grab" action grabbed_trains[grab_id].name = g_string_new(train); strcpy(grabbed_trains[grab_id].track_output, "master"); @@ -747,10 +747,10 @@ char *train_id_from_grab_id(int grab_id) { return NULL; } if (grabbed_trains[grab_id].name == NULL) { + pthread_mutex_unlock(&grabbed_trains_mutex); syslog_server(LOG_ERR, "Train id from grab id - train with id %d marked valid but name is NULL", grab_id); - pthread_mutex_unlock(&grabbed_trains_mutex); return NULL; } char *train_id = strdup(grabbed_trains[grab_id].name->str); @@ -763,7 +763,7 @@ char *train_id_from_grab_id(int grab_id) { } GString *get_grab_fdbk_json(const char* message, int l_session_id, int grab_id) { - gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; + const gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; GString *g_feedback = g_string_sized_new(96 + add_len); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); @@ -775,7 +775,7 @@ GString *get_grab_fdbk_json(const char* message, int l_session_id, int grab_id) } GString *get_reqroute_fdbk_json(const char* message, const char* granted_route_id) { - gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; + const gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; GString *g_feedback = g_string_sized_new(64 + add_len); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); @@ -1238,9 +1238,9 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, const char *data_grab_id = onion_request_get_post(req, "grab-id"); const char *data_speed = onion_request_get_post(req, "speed"); const char *data_track_output = onion_request_get_post(req, "track-output"); - int client_session_id = params_check_session_id(data_session_id); - int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); - int speed = params_check_calibrated_speed(data_speed); + const int client_session_id = params_check_session_id(data_session_id); + const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); + const int speed = params_check_calibrated_speed(data_speed); if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); @@ -1303,8 +1303,8 @@ onion_connection_status handler_set_train_emergency_stop(void *_, const char *data_session_id = onion_request_get_post(req, "session-id"); const char *data_grab_id = onion_request_get_post(req, "grab-id"); const char *data_track_output = onion_request_get_post(req, "track-output"); - int client_session_id = params_check_session_id(data_session_id); - int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); + const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); + const int client_session_id = params_check_session_id(data_session_id); if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); @@ -1359,9 +1359,9 @@ onion_connection_status handler_set_train_peripheral(void *_, const char *data_peripheral = onion_request_get_post(req, "peripheral"); const char *data_state = onion_request_get_post(req, "state"); const char *data_track_output = onion_request_get_post(req, "track-output"); - int client_session_id = params_check_session_id(data_session_id); - int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); - int state = params_check_state(data_state); + const int client_session_id = params_check_session_id(data_session_id); + const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); + const int state = params_check_state(data_state); if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); diff --git a/server/src/handler_driver.h b/server/src/handler_driver.h index 0ca471b3..d5b3527d 100644 --- a/server/src/handler_driver.h +++ b/server/src/handler_driver.h @@ -49,7 +49,7 @@ typedef struct { extern t_train_data grabbed_trains[TRAIN_ENGINE_INSTANCE_COUNT_MAX]; -const int train_get_grab_id(const char *train); +int train_get_grab_id(const char *train); bool train_grabbed(const char *train); diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 6da37117..50fb5a74 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -41,6 +41,9 @@ #include "bahn_data_util.h" #include "websocket_uploader/engine_uploader.h" #include "json_response_builder.h" +#include "communication_utils.h" + +///TODO: All handlers/endpoints now only accept GET, not POST. Need to adjust clients accordingly. GArray* garray_points_to_garray_str_ids(GArray *points) { @@ -120,25 +123,19 @@ GString *get_trains_json() { } append_end_of_list(g_trains, false, query.length > 0); append_end_of_obj(g_trains, false); - - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_trains_json", 60 * (query.length + 1), g_trains->len); bidib_free_id_list_query(query); return g_trains; } onion_connection_status handler_get_trains(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_trains = get_trains_json(); - onion_response_printf(res, "%s", g_trains->str); + send_some_gstring(res, HTTP_OK, g_trains); syslog_server(LOG_INFO, "Request: Get available trains - done"); - g_string_free(g_trains, true); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get available trains - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, ""); } } @@ -200,36 +197,33 @@ GString *get_train_state_json(const char *data_train) { bidib_free_train_position_query(train_position_query); append_end_of_obj(g_train_state, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_train_state_json", 256, g_train_state->len); return g_train_state; } onion_connection_status handler_get_train_state(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_train = onion_request_get_post(req, "train"); if (data_train == NULL) { syslog_server(LOG_ERR, "Request: Get train state - invalid parameters"); - return OCS_NOT_IMPLEMENTED; + onion_response_set_code(res, HTTP_BAD_REQUEST); + return OCS_PROCESSED; } GString *ret_string = get_train_state_json(data_train); if (ret_string->len > 0) { - onion_response_printf(res, "%s", ret_string->str); + send_some_gstring(res, HTTP_OK, ret_string); syslog_server(LOG_INFO, "Request: Get train state - train: %s - done", data_train); - g_string_free(ret_string, true); - return OCS_PROCESSED; } else { + onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, "Request: Get train state - train: %s - invalid train", data_train); g_string_free(ret_string, true); - return OCS_NOT_IMPLEMENTED; } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get train state - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get train state"); } } @@ -252,8 +246,6 @@ GString *get_train_states_json() { append_end_of_list(g_train_states, false, query.length > 0); append_end_of_obj(g_train_states, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_trains_json", 320 * (query.length + 1), g_trains->len); bidib_free_id_list_query(query); return g_train_states; } @@ -261,16 +253,13 @@ GString *get_train_states_json() { onion_connection_status handler_get_train_states(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_train_states = get_train_states_json(); - onion_response_printf(res, "%s", g_train_states->str); + send_some_gstring(res, HTTP_OK, g_train_states); syslog_server(LOG_INFO, "Request: Get train states - done"); - g_string_free(g_train_states, true); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get train states - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get train states"); } } @@ -304,9 +293,6 @@ GString *get_train_peripherals_json(const char *data_train) { append_end_of_list(g_train_peripherals, false, query.length > 0); append_end_of_obj(g_train_peripherals, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_train_peripherals_json", 40 * (query.length + 1), - // g_train_peripherals->len); bidib_free_id_list_query(query); return g_train_peripherals; @@ -315,33 +301,29 @@ GString *get_train_peripherals_json(const char *data_train) { onion_connection_status handler_get_train_peripherals(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_train = onion_request_get_post(req, "train"); if (data_train == NULL) { syslog_server(LOG_ERR, "Request: Get train peripherals - invalid parameters"); - return OCS_NOT_IMPLEMENTED; + onion_response_set_code(res, HTTP_BAD_REQUEST); + return OCS_PROCESSED; } GString *g_train_peripherals = get_train_peripherals_json(data_train); if (g_train_peripherals->len > 0) { - onion_response_printf(res, "%s", g_train_peripherals->str); + send_some_gstring(res, HTTP_OK, g_train_peripherals); syslog_server(LOG_INFO, "Request: Get train peripherals - train: %s - done", data_train); - g_string_free(g_train_peripherals, true); - return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get train peripherals - train: %s - invalid train", data_train); g_string_free(g_train_peripherals, true); - return OCS_NOT_IMPLEMENTED; } - + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get train peripherals - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get train peripherals"); } } @@ -383,8 +365,6 @@ GString *get_track_outputs_json() { } append_end_of_list(g_track_outputs, false, track_outputs_added > 0); append_end_of_obj(g_track_outputs, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_track_outputs_json", 48 * (query.length + 1), g_track_outputs->len); bidib_free_id_list_query(query); return g_track_outputs; } @@ -392,16 +372,13 @@ GString *get_track_outputs_json() { onion_connection_status handler_get_track_outputs(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_track_outputs = get_track_outputs_json(); - onion_response_printf(res, "%s", g_track_outputs->str); + send_some_gstring(res, HTTP_OK, g_track_outputs); syslog_server(LOG_INFO, "Request: Get track outputs - done"); - g_string_free(g_track_outputs, true); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get track outputs - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get track outputs"); } } @@ -442,37 +419,31 @@ GString *get_accessories_json(bool point_accessories) { } append_end_of_list(g_accs, false, query.length > 0); append_end_of_obj(g_accs, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_accessory_json", 70 * (query.length + 1), g_accs->len); bidib_free_id_list_query(query); return g_accs; } onion_connection_status handler_get_points(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_points = get_accessories_json(true); - onion_response_printf(res, "%s", g_points->str); + send_some_gstring(res, HTTP_OK, g_points); syslog_server(LOG_INFO, "Request: Get points - done"); - g_string_free(g_points, true); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get points - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get points"); } } onion_connection_status handler_get_signals(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_signals = get_accessories_json(false); - onion_response_printf(res, "%s", g_signals->str); + send_some_gstring(res, HTTP_OK, g_signals); syslog_server(LOG_INFO, "Request: Get signals - done"); - g_string_free(g_signals, true); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get signals - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get signals"); } } @@ -518,38 +489,33 @@ GString *get_point_details_json(const char *data_id) { } append_end_of_obj(g_details, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_point_details_json", 156, g_details->len); bidib_free_id_list_query(aspects_query); return g_details; } onion_connection_status handler_get_point_details(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_point = onion_request_get_post(req, "point"); if (data_point == NULL) { + onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, "Request: Get point details - invalid parameters"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } GString *g_details = get_point_details_json(data_point); if (g_details->len > 0) { - onion_response_printf(res, "%s", g_details->str); + send_some_gstring(res, HTTP_OK, g_details); syslog_server(LOG_INFO, "Request: Get point details - point: %s - done", data_point); - g_string_free(g_details, true); - return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get point details - point: %s - invalid point", data_point); g_string_free(g_details, true); - return OCS_NOT_IMPLEMENTED; } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get point details - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get point details"); } } @@ -579,8 +545,6 @@ GString *get_accessory_aspects_json(const char *data_id, bool is_point) { } append_end_of_list(g_aspects, false, false); append_end_of_obj(g_aspects, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_accessory_aspects_json", 32 * (query.length + 1), g_aspects->len); bidib_free_id_list_query(query); return g_aspects; } @@ -588,30 +552,27 @@ GString *get_accessory_aspects_json(const char *data_id, bool is_point) { onion_connection_status handler_get_point_aspects(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_point = onion_request_get_post(req, "point"); if (data_point == NULL) { + onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, "Request: Get point aspects - invalid parameters"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } GString *g_aspects = get_accessory_aspects_json(data_point, true); if (g_aspects->len > 0) { - onion_response_printf(res, "%s", g_aspects->str); + send_some_gstring(res, HTTP_OK, g_aspects); syslog_server(LOG_INFO, "Request: Get point aspects - point: %s - done", data_point); - g_string_free(g_aspects, true); - return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get point aspects - point: %s - invalid point", data_point); g_string_free(g_aspects, true); - return OCS_NOT_IMPLEMENTED; } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get point aspects - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get point aspects"); } } @@ -622,32 +583,29 @@ onion_connection_status handler_get_point_aspects(void *_, onion_request *req, onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_signal = onion_request_get_post(req, "signal"); if (data_signal == NULL) { + onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, "Request: Get signal aspects - invalid parameters"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } GString *g_aspects = get_accessory_aspects_json(data_signal, false); if (g_aspects->len > 0) { - onion_response_printf(res, "%s", g_aspects->str); + send_some_gstring(res, HTTP_OK, g_aspects); syslog_server(LOG_INFO, "Request: Get signal aspects - signal: %s - done", data_signal); - g_string_free(g_aspects, true); - return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Get signal aspects - signal: %s - invalid signal", data_signal); g_string_free(g_aspects, true); - return OCS_NOT_IMPLEMENTED; } + return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get signal aspects - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get signal aspects"); } } @@ -691,23 +649,19 @@ GString *get_segments_json() { } append_end_of_list(g_segments, false, added_segments > 0); append_end_of_obj(g_segments, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_segments_json", 42 * (seg_query.length + 1), g_segments->len); bidib_free_id_list_query(seg_query); return g_segments; } onion_connection_status handler_get_segments(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_segments = get_segments_json(); - onion_response_printf(res, "%s", g_segments->str); + send_some_gstring(res, HTTP_OK, g_segments); syslog_server(LOG_INFO, "Request: Get segments - done"); - g_string_free(g_segments, true); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get segments - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get segments"); } } @@ -753,27 +707,24 @@ GString *get_reversers_json() { } append_end_of_list(g_reversers, false, added_reversers > 0); append_end_of_obj(g_reversers, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_reversers_json", 48 * (rev_query.length + 1), g_reversers->len); bidib_free_id_list_query(rev_query); return g_reversers; } onion_connection_status handler_get_reversers(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { if (!reversers_state_update()) { + onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, "Request: Get reversers - unable to request state update"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } GString *g_reversers = get_reversers_json(); - onion_response_printf(res, "%s", g_reversers->str); + send_some_gstring(res, HTTP_OK, g_reversers); syslog_server(LOG_INFO, "Request: Get reversers - done"); - g_string_free(g_reversers, true); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get reversers - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get reversers"); } } @@ -810,24 +761,19 @@ GString *get_peripherals_json() { append_end_of_list(g_peripherals, false, added_peripherals > 0); append_end_of_obj(g_peripherals, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_peripherals_json", 64 * (per_query.length + 1), g_peripherals->len); bidib_free_id_list_query(per_query); return g_peripherals; } onion_connection_status handler_get_peripherals(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_peripherals = get_peripherals_json(); - onion_response_printf(res, "%s", g_peripherals->str); + send_some_gstring(res, HTTP_OK, g_peripherals); syslog_server(LOG_INFO, "Request: Get peripherals - done"); - g_string_free(g_peripherals, true); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get peripherals - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get peripherals"); } } @@ -835,13 +781,13 @@ onion_connection_status handler_get_verification_option(void *_, onion_request * onion_response *res) { build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_GET) { + onion_response_set_code(res, HTTP_OK); onion_response_printf(res, "{\n\"verification-enabled\": %s\n}", verification_enabled ? "true" : "false"); syslog_server(LOG_INFO, "Request: Get verification option - done"); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get verification option - wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get verification option"); } } @@ -850,15 +796,14 @@ onion_connection_status handler_get_verification_url(void *_, onion_request *req build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_GET) { const char *verif_url = get_verifier_url(); + onion_response_set_code(res, HTTP_OK); onion_response_printf(res, "{\n\"verification-url\": \"%s\"\n}", verif_url == NULL ? "null" : verif_url); - syslog_server(LOG_INFO, "Request: Get verification url - done"); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get verification url - wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get verification url"); } } @@ -899,24 +844,19 @@ GString* get_granted_routes_json() { append_end_of_list(g_granted_routes, false, routes_added > 0); append_end_of_obj(g_granted_routes, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_granted_routes_json", 128, g_granted_routes->len); return g_granted_routes; } onion_connection_status handler_get_granted_routes(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_granted_routes = get_granted_routes_json(); - onion_response_printf(res, "%s", g_granted_routes->str); + send_some_gstring(res, HTTP_OK, g_granted_routes); syslog_server(LOG_INFO, "Request: Get granted routes - done"); - g_string_free(g_granted_routes, true); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get granted routes - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get granted routes"); } } @@ -948,38 +888,37 @@ GString* get_route_json(const char *route_id) { append_field_barelist_value_from_garray_strs(g_route, "conflicting_route_ids", route->conflicts, true); + GArray *g_conflicts = get_granted_route_conflicts(route_id, false); append_field_barelist_value_from_garray_strs(g_route, "granted_conflicting_route_ids", - get_granted_route_conflicts(route_id, false), true); + g_conflicts, true); + free_g_strarray(g_conflicts); append_field_bool_value(g_route, "clear", get_route_is_clear(route_id), true); append_field_str_value(g_route, "granted_to_train", route->train == NULL ? "" : route->train, false); append_end_of_obj(g_route, false); - //syslog_server(LOG_NOTICE, "%s - size estimate: %zu, size actual: %zu", - // "get_route_json", 1024, g_route->len); pthread_mutex_unlock(&interlocker_mutex); return g_route; } onion_connection_status handler_get_route(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); if (route_id == NULL || strcmp(route_id, "") == 0 || get_route(route_id) == NULL) { + onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, "Request: Get route - invalid parameters"); - return OCS_NOT_IMPLEMENTED; + return OCS_PROCESSED; } syslog_server(LOG_INFO, "Request: Get route - route: %s - start", route_id); GString* g_route = get_route_json(route_id); - onion_response_printf(res, "%s", g_route->str); + send_some_gstring(res, HTTP_OK, g_route); syslog_server(LOG_INFO, "Request: Get route - route: %s - finished", route_id); - g_string_free(g_route, true); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get route - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get route"); } } @@ -1128,19 +1067,18 @@ GString *debug_info(void) { onion_connection_status handler_get_debug_info(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *debug_info_str = debug_info(); if (debug_info_str != NULL && debug_info_str->str != NULL) { - onion_response_printf(res, "%s", debug_info_str->str); - g_string_free(debug_info_str, true); + send_some_gstring(res, HTTP_OK, debug_info_str); syslog_server(LOG_NOTICE, "Request: Get debug info - done"); } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, "Request: Get debug info - internal error"); } return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get debug info - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get debug info"); } } @@ -1169,19 +1107,17 @@ GString *debug_info_extra(void) { onion_connection_status handler_get_debug_info_extra(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *debug_info_extra_str = debug_info_extra(); if (debug_info_extra_str != NULL && debug_info_extra_str->str != NULL) { - onion_response_printf(res, "%s", debug_info_extra_str->str); - g_string_free(debug_info_extra_str, true); + send_some_gstring(res, HTTP_OK, debug_info_extra_str); syslog_server(LOG_NOTICE, "Request: Get debug info extra"); } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, "Request: Get debug info extra - internal error"); } return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get debug info extra - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get debug info extra"); } } diff --git a/server/src/websocket_uploader/engine_uploader.c b/server/src/websocket_uploader/engine_uploader.c index d9a4708b..371938bf 100644 --- a/server/src/websocket_uploader/engine_uploader.c +++ b/server/src/websocket_uploader/engine_uploader.c @@ -39,7 +39,7 @@ typedef struct { GString* message; } ws_verif_data; - +///TODO: Protect against concur access with a mutex char *verifier_url = NULL; static const char cache_file_verifier_url[] = "verifier_url_cache.txt"; From d3d8ac40c04e57d9894a4122051945e1a0af4feb Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 19 Jul 2024 09:53:41 +0200 Subject: [PATCH 030/125] adjust naming and static-ness --- server/src/communication_utils.c | 2 +- server/src/communication_utils.h | 2 +- server/src/handler_controller.c | 2 +- server/src/handler_driver.c | 14 ++--- server/src/handler_monitor.c | 94 ++++++++++++-------------------- 5 files changed, 45 insertions(+), 69 deletions(-) diff --git a/server/src/communication_utils.c b/server/src/communication_utils.c index 4c66c8b7..797e43d2 100644 --- a/server/src/communication_utils.c +++ b/server/src/communication_utils.c @@ -44,7 +44,7 @@ bool send_common_feedback(onion_response *res, int status_code, const char* mess } } -bool send_some_gstring(onion_response *res, int status_code, GString *gstr) { +bool send_some_gstring_and_free(onion_response *res, int status_code, GString *gstr) { if (res == NULL) { if (gstr != NULL) { g_string_free(gstr, true); diff --git a/server/src/communication_utils.h b/server/src/communication_utils.h index 69928a49..6fa9b4f7 100644 --- a/server/src/communication_utils.h +++ b/server/src/communication_utils.h @@ -59,7 +59,7 @@ bool send_common_feedback(onion_response *res, int status_code, const char* mess * @return true if parameters were valid and sending succeeded, * @return false otherwise. */ -bool send_some_gstring(onion_response *res, int status_code, GString *gstr); +bool send_some_gstring_and_free(onion_response *res, int status_code, GString *gstr); // This does not free the passed string to be sent (in contrast to the gstring version). bool send_some_cstring(onion_response *res, int status_code, const char *cstr); diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 6bface4b..e226697c 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -568,7 +568,7 @@ onion_connection_status handler_get_interlocker(void *_, onion_request *req, oni g_string_append_printf(g_resstr, "%s\"\n}", selected_interlocker_name->str); pthread_mutex_unlock(&interlocker_mutex); - send_some_gstring(res, HTTP_OK, g_resstr); + send_some_gstring_and_free(res, HTTP_OK, g_resstr); syslog_server(LOG_INFO, "Request: Get interlocker - done"); } else { pthread_mutex_unlock(&interlocker_mutex); diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 11d9e7fb..a990cb5d 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -818,7 +818,7 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re if (data_train == NULL || data_engine == NULL) { syslog_server(LOG_ERR, "Request: Grab train - invalid parameters"); GString *feedback = get_grab_fdbk_json("invalid parameters", 0, -1); - send_some_gstring(res, HTTP_BAD_REQUEST, feedback); + send_some_gstring_and_free(res, HTTP_BAD_REQUEST, feedback); return OCS_PROCESSED; } @@ -831,7 +831,7 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re bidib_free_train_state_query(train_state_query); if (!trainstate_known) { GString *ret = get_grab_fdbk_json("unknown train or invalid train state", 0, -1); - send_some_gstring(res, HTTP_NOT_FOUND, ret); + send_some_gstring_and_free(res, HTTP_NOT_FOUND, ret); syslog_server(LOG_ERR, "Request: Grab train - train: %s engine: %s - " "unknown train or train state - abort", @@ -849,7 +849,7 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re fill_grab_feedback(grab_id, ret_str, &http_code); if (ret_str != NULL) { - send_some_gstring(res, http_code, ret_str); + send_some_gstring_and_free(res, http_code, ret_str); syslog_server(LOG_NOTICE, "Request: Grab train - train: %s engine: %s - finish", data_train, data_engine); @@ -972,11 +972,11 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (data_source_name == NULL || data_destination_name == NULL) { - send_some_gstring(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid parameters", "")); + send_some_gstring_and_free(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid parameters", "")); syslog_server(LOG_ERR, "Request: Request train route - invalid parameters"); return OCS_PROCESSED; } else if (client_session_id != session_id) { - send_some_gstring(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid session-id", "")); + send_some_gstring_and_free(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid session-id", "")); syslog_server(LOG_ERR, "Request: Request train route - from: %s to: %s - invalid session id", data_source_name, data_destination_name); @@ -986,7 +986,7 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { - send_some_gstring(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid grab-id", "")); + send_some_gstring_and_free(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid grab-id", "")); syslog_server(LOG_ERR, "Request: Request train route - from: %s to: %s - invalid grab id", data_source_name, data_destination_name); @@ -1002,7 +1002,7 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion int http_code = 0; GString *ret_str = NULL; fill_request_route_feedback(route_id, ret_str, &http_code); - send_some_gstring(res, http_code, ret_str); + send_some_gstring_and_free(res, http_code, ret_str); syslog_server(LOG_NOTICE, "Request: Request train route - train: %s from: %s to: %s - finish", train_id, data_source_name, data_destination_name); diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 50fb5a74..7a02500f 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -43,10 +43,10 @@ #include "json_response_builder.h" #include "communication_utils.h" -///TODO: All handlers/endpoints now only accept GET, not POST. Need to adjust clients accordingly. +///NOTE: All handlers/endpoints now only accept GET, not POST. Need to adjust clients accordingly. -GArray* garray_points_to_garray_str_ids(GArray *points) { +static GArray* garray_points_to_garray_str_ids(GArray *points) { if (points == NULL) { return NULL; } @@ -64,7 +64,7 @@ GArray* garray_points_to_garray_str_ids(GArray *points) { return g_point_ids; } -void free_g_strarray(GArray *g_strarray) { +static void free_g_strarray(GArray *g_strarray) { if (g_strarray == NULL) { return; } @@ -77,31 +77,7 @@ void free_g_strarray(GArray *g_strarray) { g_strarray = NULL; } -void sprintf_garray_char(GString *output, GArray *garray) { - if (garray->len == 0) { - g_string_append_printf(output, "none"); - return; - } - for (size_t i = 0; i < garray->len; i++) { - g_string_append_printf(output, "%s%s", - g_array_index(garray, char *, i), - i != (garray->len - 1) ? ", " : ""); - } -} - -void sprintf_garray_interlocking_point(GString *output, GArray *garray) { - if (garray->len == 0) { - g_string_append_printf(output, "none"); - return; - } - for (size_t i = 0; i < garray->len; i++) { - g_string_append_printf(output, "%s%s", - g_array_index(garray, t_interlocking_point, i).id, - i != (garray->len - 1) ? ", " : ""); - } -} - -GString *get_trains_json() { +static GString *get_trains_json() { t_bidib_id_list_query query = bidib_get_trains(); GString *g_trains = g_string_sized_new(60 * (query.length + 1)); g_string_assign(g_trains, ""); @@ -131,7 +107,7 @@ onion_connection_status handler_get_trains(void *_, onion_request *req, onion_re build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_trains = get_trains_json(); - send_some_gstring(res, HTTP_OK, g_trains); + send_some_gstring_and_free(res, HTTP_OK, g_trains); syslog_server(LOG_INFO, "Request: Get available trains - done"); return OCS_PROCESSED; } else { @@ -139,7 +115,7 @@ onion_connection_status handler_get_trains(void *_, onion_request *req, onion_re } } -GString *get_train_state_json(const char *data_train) { +static GString *get_train_state_json(const char *data_train) { if (data_train == NULL) { return g_string_new(""); } @@ -212,7 +188,7 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni GString *ret_string = get_train_state_json(data_train); if (ret_string->len > 0) { - send_some_gstring(res, HTTP_OK, ret_string); + send_some_gstring_and_free(res, HTTP_OK, ret_string); syslog_server(LOG_INFO, "Request: Get train state - train: %s - done", data_train); } else { onion_response_set_code(res, HTTP_BAD_REQUEST); @@ -227,7 +203,7 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni } } -GString *get_train_states_json() { +static GString *get_train_states_json() { t_bidib_id_list_query query = bidib_get_trains(); GString *g_train_states = g_string_sized_new(256 * (query.length + 1)); g_string_assign(g_train_states, ""); @@ -255,7 +231,7 @@ onion_connection_status handler_get_train_states(void *_, onion_request *req, build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_train_states = get_train_states_json(); - send_some_gstring(res, HTTP_OK, g_train_states); + send_some_gstring_and_free(res, HTTP_OK, g_train_states); syslog_server(LOG_INFO, "Request: Get train states - done"); return OCS_PROCESSED; } else { @@ -263,7 +239,7 @@ onion_connection_status handler_get_train_states(void *_, onion_request *req, } } -GString *get_train_peripherals_json(const char *data_train) { +static GString *get_train_peripherals_json(const char *data_train) { if (data_train == NULL) { return g_string_new(""); } @@ -311,7 +287,7 @@ onion_connection_status handler_get_train_peripherals(void *_, onion_request *re GString *g_train_peripherals = get_train_peripherals_json(data_train); if (g_train_peripherals->len > 0) { - send_some_gstring(res, HTTP_OK, g_train_peripherals); + send_some_gstring_and_free(res, HTTP_OK, g_train_peripherals); syslog_server(LOG_INFO, "Request: Get train peripherals - train: %s - done", data_train); @@ -327,7 +303,7 @@ onion_connection_status handler_get_train_peripherals(void *_, onion_request *re } } -GString *get_track_outputs_json() { +static GString *get_track_outputs_json() { t_bidib_id_list_query query = bidib_get_track_outputs(); GString *g_track_outputs = g_string_sized_new(48 * (query.length + 1)); @@ -374,7 +350,7 @@ onion_connection_status handler_get_track_outputs(void *_, onion_request *req, build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_track_outputs = get_track_outputs_json(); - send_some_gstring(res, HTTP_OK, g_track_outputs); + send_some_gstring_and_free(res, HTTP_OK, g_track_outputs); syslog_server(LOG_INFO, "Request: Get track outputs - done"); return OCS_PROCESSED; } else { @@ -382,7 +358,7 @@ onion_connection_status handler_get_track_outputs(void *_, onion_request *req, } } -GString *get_accessories_json(bool point_accessories) { +static GString *get_accessories_json(bool point_accessories) { t_bidib_id_list_query query; if (point_accessories) { query = bidib_get_connected_points(); @@ -427,7 +403,7 @@ onion_connection_status handler_get_points(void *_, onion_request *req, onion_re build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_points = get_accessories_json(true); - send_some_gstring(res, HTTP_OK, g_points); + send_some_gstring_and_free(res, HTTP_OK, g_points); syslog_server(LOG_INFO, "Request: Get points - done"); return OCS_PROCESSED; } else { @@ -439,7 +415,7 @@ onion_connection_status handler_get_signals(void *_, onion_request *req, onion_r build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_signals = get_accessories_json(false); - send_some_gstring(res, HTTP_OK, g_signals); + send_some_gstring_and_free(res, HTTP_OK, g_signals); syslog_server(LOG_INFO, "Request: Get signals - done"); return OCS_PROCESSED; } else { @@ -447,7 +423,7 @@ onion_connection_status handler_get_signals(void *_, onion_request *req, onion_r } } -GString *get_point_details_json(const char *data_id) { +static GString *get_point_details_json(const char *data_id) { if (data_id == NULL) { return g_string_new(""); } @@ -505,7 +481,7 @@ onion_connection_status handler_get_point_details(void *_, onion_request *req, o GString *g_details = get_point_details_json(data_point); if (g_details->len > 0) { - send_some_gstring(res, HTTP_OK, g_details); + send_some_gstring_and_free(res, HTTP_OK, g_details); syslog_server(LOG_INFO, "Request: Get point details - point: %s - done", data_point); } else { syslog_server(LOG_ERR, @@ -520,7 +496,7 @@ onion_connection_status handler_get_point_details(void *_, onion_request *req, o } -GString *get_accessory_aspects_json(const char *data_id, bool is_point) { +static GString *get_accessory_aspects_json(const char *data_id, bool is_point) { if (data_id == NULL) { return g_string_new(""); } @@ -562,7 +538,7 @@ onion_connection_status handler_get_point_aspects(void *_, onion_request *req, GString *g_aspects = get_accessory_aspects_json(data_point, true); if (g_aspects->len > 0) { - send_some_gstring(res, HTTP_OK, g_aspects); + send_some_gstring_and_free(res, HTTP_OK, g_aspects); syslog_server(LOG_INFO, "Request: Get point aspects - point: %s - done", data_point); } else { syslog_server(LOG_ERR, @@ -593,7 +569,7 @@ onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, GString *g_aspects = get_accessory_aspects_json(data_signal, false); if (g_aspects->len > 0) { - send_some_gstring(res, HTTP_OK, g_aspects); + send_some_gstring_and_free(res, HTTP_OK, g_aspects); syslog_server(LOG_INFO, "Request: Get signal aspects - signal: %s - done", data_signal); @@ -609,7 +585,7 @@ onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, } } -GString *get_segments_json() { +static GString *get_segments_json() { t_bidib_id_list_query seg_query = bidib_get_connected_segments(); // no check for empty query, as then the code here constructs a json with an // empty list, which is good -> better tells the client that no @@ -657,7 +633,7 @@ onion_connection_status handler_get_segments(void *_, onion_request *req, onion_ build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_segments = get_segments_json(); - send_some_gstring(res, HTTP_OK, g_segments); + send_some_gstring_and_free(res, HTTP_OK, g_segments); syslog_server(LOG_INFO, "Request: Get segments - done"); return OCS_PROCESSED; } else { @@ -665,7 +641,7 @@ onion_connection_status handler_get_segments(void *_, onion_request *req, onion_ } } -GString *get_reversers_json() { +static GString *get_reversers_json() { t_bidib_id_list_query rev_query = bidib_get_connected_reversers(); GString *g_reversers = g_string_sized_new(48 * (rev_query.length + 1)); g_string_assign(g_reversers, ""); @@ -720,7 +696,7 @@ onion_connection_status handler_get_reversers(void *_, onion_request *req, onion return OCS_PROCESSED; } GString *g_reversers = get_reversers_json(); - send_some_gstring(res, HTTP_OK, g_reversers); + send_some_gstring_and_free(res, HTTP_OK, g_reversers); syslog_server(LOG_INFO, "Request: Get reversers - done"); return OCS_PROCESSED; } else { @@ -728,7 +704,7 @@ onion_connection_status handler_get_reversers(void *_, onion_request *req, onion } } -GString *get_peripherals_json() { +static GString *get_peripherals_json() { // Trying out ways of estimating size. The +1 is there to avoid size 0 if query length is 0. t_bidib_id_list_query per_query = bidib_get_connected_peripherals(); GString *g_peripherals = g_string_sized_new(64 * (per_query.length + 1)); @@ -769,7 +745,7 @@ onion_connection_status handler_get_peripherals(void *_, onion_request *req, oni build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_peripherals = get_peripherals_json(); - send_some_gstring(res, HTTP_OK, g_peripherals); + send_some_gstring_and_free(res, HTTP_OK, g_peripherals); syslog_server(LOG_INFO, "Request: Get peripherals - done"); return OCS_PROCESSED; } else { @@ -807,7 +783,7 @@ onion_connection_status handler_get_verification_url(void *_, onion_request *req } } -GString* get_granted_routes_json() { +static GString* get_granted_routes_json() { GString *g_granted_routes = g_string_sized_new(128); g_string_assign(g_granted_routes, ""); @@ -852,7 +828,7 @@ onion_connection_status handler_get_granted_routes(void *_, onion_request *req, build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_granted_routes = get_granted_routes_json(); - send_some_gstring(res, HTTP_OK, g_granted_routes); + send_some_gstring_and_free(res, HTTP_OK, g_granted_routes); syslog_server(LOG_INFO, "Request: Get granted routes - done"); return OCS_PROCESSED; } else { @@ -860,7 +836,7 @@ onion_connection_status handler_get_granted_routes(void *_, onion_request *req, } } -GString* get_route_json(const char *route_id) { +static GString* get_route_json(const char *route_id) { pthread_mutex_lock(&interlocker_mutex); const t_interlocking_route *route = get_route(route_id); if (route == NULL) { @@ -914,7 +890,7 @@ onion_connection_status handler_get_route(void *_, onion_request *req, onion_res syslog_server(LOG_INFO, "Request: Get route - route: %s - start", route_id); GString* g_route = get_route_json(route_id); - send_some_gstring(res, HTTP_OK, g_route); + send_some_gstring_and_free(res, HTTP_OK, g_route); syslog_server(LOG_INFO, "Request: Get route - route: %s - finished", route_id); return OCS_PROCESSED; } else { @@ -925,7 +901,7 @@ onion_connection_status handler_get_route(void *_, onion_request *req, onion_res // Returns debugging information related to the ForeC dynamic containers. // Provides data values seen by the environment (dyn_containers_interface.c) // and those set by the containers (dyn_containers.forec). -GString *debug_info(void) { +static GString *debug_info(void) { GString *info_str = g_string_new(""); const char info_template0[] = @@ -1070,7 +1046,7 @@ onion_connection_status handler_get_debug_info(void *_, onion_request *req, onio if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *debug_info_str = debug_info(); if (debug_info_str != NULL && debug_info_str->str != NULL) { - send_some_gstring(res, HTTP_OK, debug_info_str); + send_some_gstring_and_free(res, HTTP_OK, debug_info_str); syslog_server(LOG_NOTICE, "Request: Get debug info - done"); } else { onion_response_set_code(res, HTTP_INTERNAL_ERROR); @@ -1084,7 +1060,7 @@ onion_connection_status handler_get_debug_info(void *_, onion_request *req, onio // Returns extra debugging information related to the ForeC thread scheduler // in dyn_containers.forec. -GString *debug_info_extra(void) { +static GString *debug_info_extra(void) { GString *info_str = g_string_new(""); const char info_template[] = @@ -1110,7 +1086,7 @@ onion_connection_status handler_get_debug_info_extra(void *_, onion_request *req if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *debug_info_extra_str = debug_info_extra(); if (debug_info_extra_str != NULL && debug_info_extra_str->str != NULL) { - send_some_gstring(res, HTTP_OK, debug_info_extra_str); + send_some_gstring_and_free(res, HTTP_OK, debug_info_extra_str); syslog_server(LOG_NOTICE, "Request: Get debug info extra"); } else { onion_response_set_code(res, HTTP_INTERNAL_ERROR); From 7b670252286c491a4d38ef8d2deea8a0698d3d00 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 19 Jul 2024 10:17:54 +0200 Subject: [PATCH 031/125] more init, static, const; prep upload for improvement --- server/doc/api-formats/upload.md | 11 +++++++++++ server/src/handler_controller.c | 10 ++++++---- server/src/handler_driver.c | 15 +++++++++------ server/src/handler_upload.c | 22 +++++++++++----------- server/src/server.c | 6 ++++-- 5 files changed, 41 insertions(+), 23 deletions(-) create mode 100644 server/doc/api-formats/upload.md diff --git a/server/doc/api-formats/upload.md b/server/doc/api-formats/upload.md new file mode 100644 index 00000000..77dc0db8 --- /dev/null +++ b/server/doc/api-formats/upload.md @@ -0,0 +1,11 @@ +For the upload endpoints: +- upload/engine +- upload/remove-engine +- upload/interlocker +- upload/remove-interlocker + +See common_feedback.json. + +For the other upload endpoint(s): +- upload/refresh-engines: Will be moved to monitor endpoint eventually. For now undefined. +- upload/refresh-interlockers: Will be moved to monitor endpoint eventually. For now undefined. \ No newline at end of file diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index e226697c..0076fd32 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -52,8 +52,10 @@ static t_interlocker_data interlocker_instances[INTERLOCKER_INSTANCE_COUNT_MAX] { .is_valid = false, .dyn_containers_interlocker_instance = -1 } }; -static GString *selected_interlocker_name; +static GString *selected_interlocker_name = NULL; static int selected_interlocker_instance = -1; +static const size_t max_signals_in_route_assmptn = 1024; +static const size_t max_items_in_route_assmptn = 1024; // Returns a value >= 0 if the interlocker with the specified name was set. Otherwise returns -1. // Only call with interlocker_mutex locked. @@ -138,7 +140,7 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ // check for route availability. bool sectional_in_use = (g_strrstr(selected_interlocker_name->str, "sectional") != NULL); - const unsigned int route_count = MAX(interlocking_table_get_size(), 1024); + const unsigned int route_count = MAX(interlocking_table_get_size(), max_signals_in_route_assmptn); char *conflict_routes[route_count]; const size_t conflict_routes_len = config_get_array_string_value("route", route_id, "conflicts", conflict_routes); @@ -187,7 +189,7 @@ bool get_route_is_clear(const char *route_id) { bahn_data_util_init_cached_track_state(); // Check that all route signals are in the Stop aspect - char *signal_ids[1024]; + char *signal_ids[max_signals_in_route_assmptn]; const size_t signal_ids_len = config_get_array_string_value("route", route_id, "route_signals", signal_ids); for (size_t i = 0; i < signal_ids_len; i++) { @@ -199,7 +201,7 @@ bool get_route_is_clear(const char *route_id) { } // Check that all blocks are unoccupied - char *item_ids[1024]; + char *item_ids[max_items_in_route_assmptn]; const size_t item_ids_len = config_get_array_string_value("route", route_id, "path", item_ids); for (size_t i = 0; i < item_ids_len; i++) { if (is_type_segment(item_ids[i]) && is_segment_occupied(item_ids[i])) { diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index a990cb5d..f59e00f8 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -963,7 +963,8 @@ void fill_request_route_feedback(GString *route_id, GString *ret_str, int *http_ onion_connection_status handler_request_route(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + ///TODO: Changed to GET (from POST), adjust clients. + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_session_id = onion_request_get_post(req, "session-id"); const char *data_grab_id = onion_request_get_post(req, "grab-id"); const char *data_source_name = onion_request_get_post(req, "source"); @@ -1018,7 +1019,8 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion // just getting a route id of/for something (similar to a monitor endpoint). onion_connection_status handler_request_route_id(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + ///TODO: Changed to GET (from POST), adjust clients. + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_session_id = onion_request_get_post(req, "session-id"); const char *data_grab_id = onion_request_get_post(req, "grab-id"); const char *data_route_id = onion_request_get_post(req, "route-id"); @@ -1079,7 +1081,8 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on onion_connection_status handler_driving_direction(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + ///TODO: Changed to GET (from POST), adjust clients. + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_train = onion_request_get_post(req, "train"); const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); @@ -1177,9 +1180,9 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, const char *data_grab_id = onion_request_get_post(req, "grab-id"); const char *data_speed = onion_request_get_post(req, "speed"); const char *data_track_output = onion_request_get_post(req, "track-output"); - int client_session_id = params_check_session_id(data_session_id); - int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); - int speed = params_check_speed(data_speed); + const int client_session_id = params_check_session_id(data_session_id); + const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); + const int speed = params_check_speed(data_speed); if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index a9041746..909e6dca 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -40,6 +40,7 @@ #include "dynlib.h" #include "dyn_containers_interface.h" #include "websocket_uploader/engine_uploader.h" +#include "communication_utils.h" static const char engine_dir[] = "engines"; static const char engine_extensions[][5] = { "c", "h", "sctx" }; @@ -51,8 +52,7 @@ static const int interlocker_extensions_count = 1; extern pthread_mutex_t dyn_containers_mutex; - -bool clear_dir(const char dir[]) { +static bool clear_dir(const char dir[]) { int result = 0; DIR *dir_handle = opendir(dir); @@ -85,7 +85,7 @@ bool clear_interlocker_dir(void) { return clear_dir(interlocker_dir); } -void remove_file_extension(char filepath_destination[], +static void remove_file_extension(char filepath_destination[], const char filepath_source[], const char extension[]) { strcpy(filepath_destination, filepath_source); size_t filepath_len = strlen(filepath_source); @@ -93,7 +93,7 @@ void remove_file_extension(char filepath_destination[], filepath_destination[filepath_len - extension_len] = '\0'; } -bool engine_file_exists(const char filename[]) { +static bool engine_file_exists(const char filename[]) { DIR *dir_handle = opendir(engine_dir); if (dir_handle == NULL) { closedir(dir_handle); @@ -116,7 +116,7 @@ bool engine_file_exists(const char filename[]) { return false; } -bool remove_engine_files(const char library_name[]) { +static bool remove_engine_files(const char library_name[]) { // Remove the prefix "lib" char name[PATH_MAX + NAME_MAX]; strcpy(name, library_name + 3); @@ -133,7 +133,7 @@ bool remove_engine_files(const char library_name[]) { return (result == 0); } -bool plugin_is_unremovable(const char name[]) { +static bool plugin_is_unremovable(const char name[]) { return (strstr(name, "(unremovable)") != NULL); } @@ -237,13 +237,13 @@ onion_connection_status handler_upload_engine(void *_, onion_request *req, onion return OCS_PROCESSED; } else { syslog_server(LOG_ERR, "Request: Upload engine - system not running or wrong request type"); - ///TODO: Discuss which code to return onion_response_set_code(res, HTTP_BAD_REQUEST); onion_response_printf(res, "System not running or wrong request type"); return OCS_PROCESSED; } } +///TODO: Move to monitor onion_connection_status handler_get_engines(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -302,8 +302,7 @@ onion_connection_status handler_remove_engine(void *_, onion_request *req, onion syslog_server(LOG_ERR, "Request: Remove engine - engine: %s - files could not be removed - abort", name); - ///TODO: This is an internal error, should return different response code IMO - onion_response_set_code(res, HTTP_BAD_REQUEST); + onion_response_set_code(res, HTTP_INTERNAL_ERROR); onion_response_printf(res, "Engine %s files could not be removed", name); return OCS_PROCESSED; } @@ -318,7 +317,7 @@ onion_connection_status handler_remove_engine(void *_, onion_request *req, onion } } -bool interlocker_file_exists(const char filename[]) { +static bool interlocker_file_exists(const char filename[]) { DIR *dir_handle = opendir(interlocker_dir); if (dir_handle == NULL) { closedir(dir_handle); @@ -338,7 +337,7 @@ bool interlocker_file_exists(const char filename[]) { return false; } -bool remove_interlocker_files(const char library_name[]) { +static bool remove_interlocker_files(const char library_name[]) { // Remove the prefix "libinterlocker_" char name[PATH_MAX + NAME_MAX]; strcpy(name, library_name + 15); @@ -447,6 +446,7 @@ onion_connection_status handler_upload_interlocker(void *_, onion_request *req, } } +///TODO: Move to monitor onion_connection_status handler_get_interlockers(void *_, onion_request *req, onion_response *res) { build_response_header(res); diff --git a/server/src/server.c b/server/src/server.c index 4707da91..4d0ee8ff 100644 --- a/server/src/server.c +++ b/server/src/server.c @@ -185,11 +185,13 @@ int main(int argc, char **argv) { // --- upload functions --- onion_url_add(urls, "upload/engine", handler_upload_engine); - onion_url_add(urls, "upload/refresh-engines", handler_get_engines); onion_url_add(urls, "upload/remove-engine", handler_remove_engine); onion_url_add(urls, "upload/interlocker", handler_upload_interlocker); - onion_url_add(urls, "upload/refresh-interlockers", handler_get_interlockers); onion_url_add(urls, "upload/remove-interlocker", handler_remove_interlocker); + ///TODO: Move to monitor + onion_url_add(urls, "upload/refresh-engines", handler_get_engines); + ///TODO: Move to monitor + onion_url_add(urls, "upload/refresh-interlockers", handler_get_interlockers); // --- monitor functions --- onion_url_add(urls, "monitor/trains", handler_get_trains); From cb274c069b0fc7d06f069db663aec16b0307c2c7 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 19 Jul 2024 10:35:43 +0200 Subject: [PATCH 032/125] handler upload reply overhaul --- server/src/handler_upload.c | 108 ++++++++++-------------------------- 1 file changed, 29 insertions(+), 79 deletions(-) diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index 909e6dca..467cbb86 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -146,8 +146,7 @@ onion_connection_status handler_upload_engine(void *_, onion_request *req, onion if (filename == NULL || temp_filepath == NULL) { syslog_server(LOG_ERR, "Request: Upload engine - engine file is invalid"); - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Engine file is invalid"); + send_common_feedback(res, HTTP_BAD_REQUEST, "engine file is invalid"); return OCS_PROCESSED; } @@ -158,8 +157,7 @@ onion_connection_status handler_upload_engine(void *_, onion_request *req, onion "Request: Upload engine - engine file: %s - " "engine file already exists - abort", filename); - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Engine file already exists"); + send_common_feedback(res, HTTP_BAD_REQUEST, "engine file already exists"); return OCS_PROCESSED; } @@ -181,12 +179,12 @@ onion_connection_status handler_upload_engine(void *_, onion_request *req, onion // Stop upload if verification did not succeed syslog_server(LOG_NOTICE, "Request: Upload Engine - engine verification failed - abort"); remove_engine_files(libname); - onion_response_set_code(res, HTTP_BAD_REQUEST); if (engine_verif_result.message != NULL) { - onion_response_printf(res, "%s", engine_verif_result.message->str); + send_common_feedback(res, HTTP_BAD_REQUEST, engine_verif_result.message->str); g_string_free(engine_verif_result.message, true); } else { - onion_response_printf(res, "Engine Verification failed due to unknown reason."); + send_common_feedback(res, HTTP_BAD_REQUEST, + "verification failed due to unknown reason"); } return OCS_PROCESSED; } @@ -202,12 +200,7 @@ onion_connection_status handler_upload_engine(void *_, onion_request *req, onion "Request: Upload engine - engine file: %s - could not be " "compiled into a C file and then to a shared library - abort", filepath); - ///TODO: Discuss which code to return - onion_response_set_code(res, HTTP_INTERNAL_ERROR); - onion_response_printf(res, - "Engine file %s could not be compiled into a C file " - "and then a shared library", - filepath); + send_common_feedback(res, HTTP_INTERNAL_ERROR, "engine file could not be compiled"); return OCS_PROCESSED; } syslog_server(LOG_DEBUG, @@ -224,22 +217,18 @@ onion_connection_status handler_upload_engine(void *_, onion_request *req, onion "Request: Upload engine - engine file: %s - " "no available engine slot - abort", filename); - ///TODO: Discuss which code to return - onion_response_set_code(res, HTTP_INTERNAL_ERROR); - onion_response_printf(res, "No available engine slot"); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "No available engine slot"); return OCS_PROCESSED; } snprintf(filepath, sizeof(filepath), "%s/%s", engine_dir, libname); dyn_containers_set_engine(engine_slot, filepath); pthread_mutex_unlock(&dyn_containers_mutex); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Upload engine - engine file: %s - finish", filename); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Upload engine - system not running or wrong request type"); - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "System not running or wrong request type"); - return OCS_PROCESSED; + return handle_req_run_or_method_fail(res, running, "Upload engine"); } } @@ -253,8 +242,7 @@ onion_connection_status handler_get_engines(void *_, onion_request *req, onion_r syslog_server(LOG_INFO, "Request: Get engines - done"); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Get engines - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get engines"); } } @@ -267,8 +255,7 @@ onion_connection_status handler_remove_engine(void *_, onion_request *req, onion "Request: Remove engine - engine name \"%s\" is " "invalid or engine is unremovable", (name == NULL) ? "null" : name); - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Engine name is invalid or engine is unremovable"); + send_common_feedback(res, HTTP_BAD_REQUEST, "Engine name invalid or engine unremovable"); return OCS_PROCESSED; } @@ -281,8 +268,7 @@ onion_connection_status handler_remove_engine(void *_, onion_request *req, onion syslog_server(LOG_WARNING, "Request: Remove engine - engine: %s - engine could not be found - abort", name); - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Engine %s could not be found", name); + send_common_feedback(res, HTTP_NOT_FOUND, "Engine could not be found"); return OCS_PROCESSED; } @@ -292,28 +278,19 @@ onion_connection_status handler_remove_engine(void *_, onion_request *req, onion syslog_server(LOG_WARNING, "Request: Remove engine - engine: %s - engine is still in use - abort", name); - - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Engine %s is still in use", name); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Engine still in use"); return OCS_PROCESSED; } if (!remove_engine_files(name)) { syslog_server(LOG_ERR, - "Request: Remove engine - engine: %s - files could not be removed - abort", + "Request: Remove engine - engine: %s - files could not be removed", name); - onion_response_set_code(res, HTTP_INTERNAL_ERROR); - onion_response_printf(res, "Engine %s files could not be removed", name); - return OCS_PROCESSED; } syslog_server(LOG_NOTICE, "Request: Remove engine - engine: %s - finish", name); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, "Request: Remove engine - system not running or wrong request type"); - - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "System not running or wrong request type"); - return OCS_PROCESSED; + return handle_req_run_or_method_fail(res, running, "Remove engine"); } } @@ -362,9 +339,7 @@ onion_connection_status handler_upload_interlocker(void *_, onion_request *req, const char *temp_filepath = onion_request_get_file(req, "file"); if (filename == NULL || temp_filepath == NULL) { syslog_server(LOG_ERR, "Request: Upload - interlocker file is invalid"); - - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Interlocker file is invalid"); + send_common_feedback(res, HTTP_BAD_REQUEST, "Interlocker file is invalid"); return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -376,9 +351,7 @@ onion_connection_status handler_upload_interlocker(void *_, onion_request *req, "Request: Upload interlocker - interlocker file: %s - " "file already exists - abort", filename); - - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Interlocker file already exists"); + send_common_feedback(res, HTTP_BAD_REQUEST, "Interlocker file already exists"); return OCS_PROCESSED; } @@ -404,9 +377,7 @@ onion_connection_status handler_upload_interlocker(void *_, onion_request *req, "interlocker could not be compiled - abort", filename); remove_interlocker_files(libname); - - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Interlocker file %s could not be compiled", filepath); + send_common_feedback(res, HTTP_INTERNAL_ERROR, "Interlocker file could not be compiled"); return OCS_PROCESSED; } syslog_server(LOG_DEBUG, @@ -423,26 +394,20 @@ onion_connection_status handler_upload_interlocker(void *_, onion_request *req, "Request: Upload interlocker - interlocker file: %s - " "no available interlocker slot - abort", filename); - - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "No available interlocker slot"); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "No available interlocker slot"); return OCS_PROCESSED; } snprintf(filepath, sizeof(filepath), "%s/%s", interlocker_dir, libname); dyn_containers_set_interlocker(interlocker_slot, filepath); pthread_mutex_unlock(&dyn_containers_mutex); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Upload interlocker - interlocker file: %s - finish", filename); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Upload interlocker - system not running or wrong request type"); - - onion_response_printf(res, "System not running or wrong request type"); - onion_response_set_code(res, HTTP_BAD_REQUEST); - return OCS_PROCESSED; + return handle_req_run_or_method_fail(res, running, "Upload interlocker"); } } @@ -457,9 +422,7 @@ onion_connection_status handler_get_interlockers(void *_, onion_request *req, syslog_server(LOG_INFO, "Request: Get interlockers - done"); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Get interlockers - system not running or wrong request type"); - return OCS_NOT_IMPLEMENTED; + return handle_req_run_or_method_fail(res, running, "Get interlockers"); } } @@ -472,9 +435,8 @@ onion_connection_status handler_remove_interlocker(void *_, onion_request *req, syslog_server(LOG_ERR, "Request: Remove interlocker - interlocker name is invalid " "or interlocker is unremovable"); - - onion_response_printf(res, "Interlocker name is invalid or interlocker is unremovable"); - onion_response_set_code(res, HTTP_BAD_REQUEST); + send_common_feedback(res, HTTP_BAD_REQUEST, + "Interlocker name invalid or interlocker unremovable"); return OCS_PROCESSED; } syslog_server(LOG_NOTICE, "Request: Remove interlocker - interlocker: %s - start", name); @@ -487,9 +449,7 @@ onion_connection_status handler_remove_interlocker(void *_, onion_request *req, "Request: Remove interlocker - interlocker: %s - " "interlocker could not be found - abort", name); - - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Interlocker %s could not be found", name); + send_common_feedback(res, HTTP_NOT_FOUND, "Interlocker to remove could not be found"); return OCS_PROCESSED; } @@ -500,32 +460,22 @@ onion_connection_status handler_remove_interlocker(void *_, onion_request *req, "Request: Remove interlocker - interlocker: %s - " "interlocker is still in use - abort", name); - - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Interlocker %s is still in use", name); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Interlocker is still in use"); return OCS_PROCESSED; } if (!remove_interlocker_files(name)) { syslog_server(LOG_ERR, "Request: Remove interlocker - interlocker: %s - " - "files could not be removed - abort", + "files could not be removed", name); - - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "Interlocker %s files could not be removed", name); - return OCS_PROCESSED; } syslog_server(LOG_NOTICE, "Request: Remove interlocker - interlocker: %s - finish", name); + send_common_feedback(res, HTTP_OK, ""); return OCS_PROCESSED; } else { - syslog_server(LOG_ERR, - "Request: Remove interlocker - system not running or wrong request type"); - - onion_response_set_code(res, HTTP_BAD_REQUEST); - onion_response_printf(res, "System not running or wrong request type"); - return OCS_PROCESSED; + return handle_req_run_or_method_fail(res, running, "Remove interlocker"); } } From a161f0cf1e42cd92c4cc6de51c683d743b84a653 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 19 Jul 2024 10:51:51 +0200 Subject: [PATCH 033/125] small check added in upload --- server/src/handler_upload.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index 467cbb86..cdc34ee6 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -85,12 +85,14 @@ bool clear_interlocker_dir(void) { return clear_dir(interlocker_dir); } -static void remove_file_extension(char filepath_destination[], - const char filepath_source[], const char extension[]) { +static void remove_file_extension(char filepath_destination[], const char filepath_source[], + const char extension[]) { strcpy(filepath_destination, filepath_source); size_t filepath_len = strlen(filepath_source); size_t extension_len = strlen(extension); - filepath_destination[filepath_len - extension_len] = '\0'; + if (filepath_len > extension_len) { + filepath_destination[filepath_len - extension_len] = '\0'; + } } static bool engine_file_exists(const char filename[]) { From 88268742d30aa9b7e820cc49aec5930a5a989520 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 19 Jul 2024 11:38:03 +0200 Subject: [PATCH 034/125] moved doc --- .../{ => controller}/controller_get-interlocker.json | 0 server/doc/api-formats/{ => driver}/driver_direction.json | 0 server/doc/api-formats/{ => driver}/driver_grab-train.json | 0 server/doc/api-formats/{ => driver}/driver_request-route.json | 0 server/doc/api-formats/monitor/monitor_engines.json | 3 +++ .../doc/api-formats/{ => monitor}/monitor_granted-routes.json | 0 server/doc/api-formats/{ => monitor}/monitor_peripherals.json | 0 .../doc/api-formats/{ => monitor}/monitor_point-aspects.json | 0 .../doc/api-formats/{ => monitor}/monitor_point-details.json | 0 server/doc/api-formats/{ => monitor}/monitor_points.json | 0 server/doc/api-formats/{ => monitor}/monitor_reversers.json | 0 server/doc/api-formats/{ => monitor}/monitor_route.json | 0 server/doc/api-formats/{ => monitor}/monitor_segments.json | 0 .../doc/api-formats/{ => monitor}/monitor_signal-aspects.json | 0 server/doc/api-formats/{ => monitor}/monitor_signals.json | 0 .../doc/api-formats/{ => monitor}/monitor_track-outputs.json | 0 .../api-formats/{ => monitor}/monitor_train-peripherals.json | 0 server/doc/api-formats/{ => monitor}/monitor_train-state.json | 0 .../doc/api-formats/{ => monitor}/monitor_train-states.json | 0 server/doc/api-formats/{ => monitor}/monitor_trains.json | 0 .../{ => monitor}/monitor_verification-option.json | 0 .../api-formats/{ => monitor}/monitor_verification-url.json | 0 server/doc/api-formats/upload.md | 4 +--- 23 files changed, 4 insertions(+), 3 deletions(-) rename server/doc/api-formats/{ => controller}/controller_get-interlocker.json (100%) rename server/doc/api-formats/{ => driver}/driver_direction.json (100%) rename server/doc/api-formats/{ => driver}/driver_grab-train.json (100%) rename server/doc/api-formats/{ => driver}/driver_request-route.json (100%) create mode 100644 server/doc/api-formats/monitor/monitor_engines.json rename server/doc/api-formats/{ => monitor}/monitor_granted-routes.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_peripherals.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_point-aspects.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_point-details.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_points.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_reversers.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_route.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_segments.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_signal-aspects.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_signals.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_track-outputs.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_train-peripherals.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_train-state.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_train-states.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_trains.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_verification-option.json (100%) rename server/doc/api-formats/{ => monitor}/monitor_verification-url.json (100%) diff --git a/server/doc/api-formats/controller_get-interlocker.json b/server/doc/api-formats/controller/controller_get-interlocker.json similarity index 100% rename from server/doc/api-formats/controller_get-interlocker.json rename to server/doc/api-formats/controller/controller_get-interlocker.json diff --git a/server/doc/api-formats/driver_direction.json b/server/doc/api-formats/driver/driver_direction.json similarity index 100% rename from server/doc/api-formats/driver_direction.json rename to server/doc/api-formats/driver/driver_direction.json diff --git a/server/doc/api-formats/driver_grab-train.json b/server/doc/api-formats/driver/driver_grab-train.json similarity index 100% rename from server/doc/api-formats/driver_grab-train.json rename to server/doc/api-formats/driver/driver_grab-train.json diff --git a/server/doc/api-formats/driver_request-route.json b/server/doc/api-formats/driver/driver_request-route.json similarity index 100% rename from server/doc/api-formats/driver_request-route.json rename to server/doc/api-formats/driver/driver_request-route.json diff --git a/server/doc/api-formats/monitor/monitor_engines.json b/server/doc/api-formats/monitor/monitor_engines.json new file mode 100644 index 00000000..06672497 --- /dev/null +++ b/server/doc/api-formats/monitor/monitor_engines.json @@ -0,0 +1,3 @@ +{ + "engines": ["enginename1", "enginename2"] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor_granted-routes.json b/server/doc/api-formats/monitor/monitor_granted-routes.json similarity index 100% rename from server/doc/api-formats/monitor_granted-routes.json rename to server/doc/api-formats/monitor/monitor_granted-routes.json diff --git a/server/doc/api-formats/monitor_peripherals.json b/server/doc/api-formats/monitor/monitor_peripherals.json similarity index 100% rename from server/doc/api-formats/monitor_peripherals.json rename to server/doc/api-formats/monitor/monitor_peripherals.json diff --git a/server/doc/api-formats/monitor_point-aspects.json b/server/doc/api-formats/monitor/monitor_point-aspects.json similarity index 100% rename from server/doc/api-formats/monitor_point-aspects.json rename to server/doc/api-formats/monitor/monitor_point-aspects.json diff --git a/server/doc/api-formats/monitor_point-details.json b/server/doc/api-formats/monitor/monitor_point-details.json similarity index 100% rename from server/doc/api-formats/monitor_point-details.json rename to server/doc/api-formats/monitor/monitor_point-details.json diff --git a/server/doc/api-formats/monitor_points.json b/server/doc/api-formats/monitor/monitor_points.json similarity index 100% rename from server/doc/api-formats/monitor_points.json rename to server/doc/api-formats/monitor/monitor_points.json diff --git a/server/doc/api-formats/monitor_reversers.json b/server/doc/api-formats/monitor/monitor_reversers.json similarity index 100% rename from server/doc/api-formats/monitor_reversers.json rename to server/doc/api-formats/monitor/monitor_reversers.json diff --git a/server/doc/api-formats/monitor_route.json b/server/doc/api-formats/monitor/monitor_route.json similarity index 100% rename from server/doc/api-formats/monitor_route.json rename to server/doc/api-formats/monitor/monitor_route.json diff --git a/server/doc/api-formats/monitor_segments.json b/server/doc/api-formats/monitor/monitor_segments.json similarity index 100% rename from server/doc/api-formats/monitor_segments.json rename to server/doc/api-formats/monitor/monitor_segments.json diff --git a/server/doc/api-formats/monitor_signal-aspects.json b/server/doc/api-formats/monitor/monitor_signal-aspects.json similarity index 100% rename from server/doc/api-formats/monitor_signal-aspects.json rename to server/doc/api-formats/monitor/monitor_signal-aspects.json diff --git a/server/doc/api-formats/monitor_signals.json b/server/doc/api-formats/monitor/monitor_signals.json similarity index 100% rename from server/doc/api-formats/monitor_signals.json rename to server/doc/api-formats/monitor/monitor_signals.json diff --git a/server/doc/api-formats/monitor_track-outputs.json b/server/doc/api-formats/monitor/monitor_track-outputs.json similarity index 100% rename from server/doc/api-formats/monitor_track-outputs.json rename to server/doc/api-formats/monitor/monitor_track-outputs.json diff --git a/server/doc/api-formats/monitor_train-peripherals.json b/server/doc/api-formats/monitor/monitor_train-peripherals.json similarity index 100% rename from server/doc/api-formats/monitor_train-peripherals.json rename to server/doc/api-formats/monitor/monitor_train-peripherals.json diff --git a/server/doc/api-formats/monitor_train-state.json b/server/doc/api-formats/monitor/monitor_train-state.json similarity index 100% rename from server/doc/api-formats/monitor_train-state.json rename to server/doc/api-formats/monitor/monitor_train-state.json diff --git a/server/doc/api-formats/monitor_train-states.json b/server/doc/api-formats/monitor/monitor_train-states.json similarity index 100% rename from server/doc/api-formats/monitor_train-states.json rename to server/doc/api-formats/monitor/monitor_train-states.json diff --git a/server/doc/api-formats/monitor_trains.json b/server/doc/api-formats/monitor/monitor_trains.json similarity index 100% rename from server/doc/api-formats/monitor_trains.json rename to server/doc/api-formats/monitor/monitor_trains.json diff --git a/server/doc/api-formats/monitor_verification-option.json b/server/doc/api-formats/monitor/monitor_verification-option.json similarity index 100% rename from server/doc/api-formats/monitor_verification-option.json rename to server/doc/api-formats/monitor/monitor_verification-option.json diff --git a/server/doc/api-formats/monitor_verification-url.json b/server/doc/api-formats/monitor/monitor_verification-url.json similarity index 100% rename from server/doc/api-formats/monitor_verification-url.json rename to server/doc/api-formats/monitor/monitor_verification-url.json diff --git a/server/doc/api-formats/upload.md b/server/doc/api-formats/upload.md index 77dc0db8..a45d20c7 100644 --- a/server/doc/api-formats/upload.md +++ b/server/doc/api-formats/upload.md @@ -6,6 +6,4 @@ For the upload endpoints: See common_feedback.json. -For the other upload endpoint(s): -- upload/refresh-engines: Will be moved to monitor endpoint eventually. For now undefined. -- upload/refresh-interlockers: Will be moved to monitor endpoint eventually. For now undefined. \ No newline at end of file +There are no other endpoints. \ No newline at end of file From f38f06bda65e3670f17f356852ecc757ee0d038a Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 19 Jul 2024 11:38:22 +0200 Subject: [PATCH 035/125] moved get engines and interlockers endpoints and refactored duplicate code --- server/src/dyn_containers_interface.c | 43 +++++++++++---- server/src/dyn_containers_interface.h | 7 ++- server/src/handler_monitor.c | 78 ++++++++++++++++++++++----- server/src/handler_monitor.h | 6 +++ server/src/handler_upload.c | 29 ---------- server/src/handler_upload.h | 6 --- server/src/server.c | 6 +-- 7 files changed, 109 insertions(+), 66 deletions(-) diff --git a/server/src/dyn_containers_interface.c b/server/src/dyn_containers_interface.c index cc07351a..18402889 100644 --- a/server/src/dyn_containers_interface.c +++ b/server/src/dyn_containers_interface.c @@ -340,21 +340,22 @@ bool dyn_containers_free_engine(const int engine_slot) { return true; } -GString *dyn_containers_get_train_engines(void) { - GString *train_engine_names = g_string_new(NULL); - int i = 0; - for (i = 0; i < TRAIN_ENGINE_COUNT_MAX; i++) { - struct t_train_engine_io * const train_engine_io = - &dyn_containers_interface->train_engines_io[i]; - if (!train_engine_io->output_in_use) { +GArray *dyn_containers_get_train_engines_arr(void) { + GArray *train_engine_names = g_array_new(FALSE, FALSE, sizeof(char *)); + pthread_mutex_lock(&dyn_containers_mutex); + for (size_t i = 0; i < TRAIN_ENGINE_COUNT_MAX; ++i) { + const struct t_train_engine_io *engine_io = &dyn_containers_interface->train_engines_io[i]; + if (!engine_io->output_in_use) { continue; } - // Copy string - if (i != 0) { - g_string_append(train_engine_names, ","); + char *name = strdup(engine_io->output_name); + if (name != NULL) { + g_array_append_val(train_engine_names, name); + } else { + syslog_server(LOG_ERR, "dyn_containers_get_train_engines_arr unable to allocate memory"); } - g_string_append(train_engine_names, train_engine_io->output_name); } + pthread_mutex_unlock(&dyn_containers_mutex); return train_engine_names; } @@ -529,6 +530,26 @@ bool dyn_containers_free_interlocker(const int interlocker_slot) { return true; } +GArray *dyn_containers_get_interlockers_arr(void) { + GArray *interlocker_names = g_array_new(FALSE, FALSE, sizeof(char *)); + pthread_mutex_lock(&dyn_containers_mutex); + for (size_t i = 0; i < INTERLOCKER_COUNT_MAX; ++i) { + const struct t_interlocker_io * interlocker_io = + &dyn_containers_interface->interlockers_io[i]; + if (!interlocker_io->output_in_use) { + continue; + } + char *name = strdup(interlocker_io->output_name); + if (name != NULL) { + g_array_append_val(interlocker_names, name); + } else { + syslog_server(LOG_ERR, "dyn_containers_get_interlockers_arr unable to allocate memory"); + } + } + pthread_mutex_unlock(&dyn_containers_mutex); + return interlocker_names; +} + GString *dyn_containers_get_interlockers(void) { GString *interlocker_names = g_string_new(NULL); int i = 0; diff --git a/server/src/dyn_containers_interface.h b/server/src/dyn_containers_interface.h index 064eb0f6..0e0781d5 100644 --- a/server/src/dyn_containers_interface.h +++ b/server/src/dyn_containers_interface.h @@ -146,8 +146,8 @@ void dyn_containers_set_engine(const int engine_slot, const char filepath[]); // Can only be called while the dyn_containers_mutex is locked bool dyn_containers_free_engine(const int engine_slot); -// Gets a comma-separated string of train engines that have been loaded -GString *dyn_containers_get_train_engines(void); +// Gets a char*-GArray with the names of train engines that have been loaded. +GArray *dyn_containers_get_train_engines_arr(void); // Finds the requested train engine, and finds an available train engine instance to use int dyn_containers_set_train_engine_instance(t_train_data * const grabbed_train, @@ -176,6 +176,9 @@ void dyn_containers_set_interlocker(const int interlocker_slot, const char filep // Can only be called while the dyn_containers_mutex is locked bool dyn_containers_free_interlocker(const int interlocker_slot); +// Gets a char*-GArray with the names of interlockers that have been loaded +GArray *dyn_containers_get_interlockers_arr(void); + // Gets a comma-separated string of interlockers that have been loaded GString *dyn_containers_get_interlockers(void); diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 7a02500f..70a81d7d 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -303,6 +303,57 @@ onion_connection_status handler_get_train_peripherals(void *_, onion_request *re } } +static GString *get_engines_or_interlockers_json(bool engines) { + GString *g_json_ret = g_string_new(""); + if (g_json_ret == NULL) { + syslog_server(LOG_ERR, "Get engines or interlockers json - can't allocate g_engines"); + return NULL; + } + append_start_of_obj(g_json_ret, false); + GArray *names_list = NULL; + if (engines) { + names_list = dyn_containers_get_train_engines_arr(); + } else { + names_list = dyn_containers_get_interlockers_arr(); + } + if (names_list == NULL) { + syslog_server(LOG_ERR, "Get engines or interlockers json - list from dyncontainers is NULL"); + return NULL; + } + const char *fieldname = engines ? "engines" : "interlockers"; + append_field_strlist_value_garray_strs(g_json_ret, fieldname, names_list, false); + append_end_of_obj(g_json_ret, false); + free_g_strarray(names_list); + return g_json_ret; +} + +static onion_connection_status get_engines_interlockers_common(onion_request *req, + onion_response *res, + bool engines) { + build_response_header(res); + const char *l_name = engines ? "Get engines" : "Get interlockers"; + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + GString *g_ret = get_engines_or_interlockers_json(engines); + if (g_ret != NULL) { + send_some_gstring_and_free(res, HTTP_OK, g_ret); + } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + } + syslog_server(LOG_INFO, "Request: %s - done", l_name); + return OCS_PROCESSED; + } else { + return handle_req_run_or_method_fail(res, running, l_name); + } +} + +onion_connection_status handler_get_engines(void *_, onion_request *req, onion_response *res) { + return get_engines_interlockers_common(req, res, true); +} + +onion_connection_status handler_get_interlockers(void *_, onion_request *req, onion_response *res) { + return get_engines_interlockers_common(req, res, false); +} + static GString *get_track_outputs_json() { t_bidib_id_list_query query = bidib_get_track_outputs(); GString *g_track_outputs = g_string_sized_new(48 * (query.length + 1)); @@ -399,28 +450,27 @@ static GString *get_accessories_json(bool point_accessories) { return g_accs; } -onion_connection_status handler_get_points(void *_, onion_request *req, onion_response *res) { +static onion_connection_status get_points_signals_common(onion_request *req, + onion_response *res, + bool points) { build_response_header(res); + const char *l_name = points ? "Get points" : "Get signals"; if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { - GString *g_points = get_accessories_json(true); - send_some_gstring_and_free(res, HTTP_OK, g_points); - syslog_server(LOG_INFO, "Request: Get points - done"); + GString *g_ret = get_accessories_json(points); + send_some_gstring_and_free(res, HTTP_OK, g_ret); + syslog_server(LOG_INFO, "Request: %s - done", l_name); return OCS_PROCESSED; } else { - return handle_req_run_or_method_fail(res, running, "Get points"); + return handle_req_run_or_method_fail(res, running, l_name); } } +onion_connection_status handler_get_points(void *_, onion_request *req, onion_response *res) { + return get_points_signals_common(req, res, true); +} + onion_connection_status handler_get_signals(void *_, onion_request *req, onion_response *res) { - build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { - GString *g_signals = get_accessories_json(false); - send_some_gstring_and_free(res, HTTP_OK, g_signals); - syslog_server(LOG_INFO, "Request: Get signals - done"); - return OCS_PROCESSED; - } else { - return handle_req_run_or_method_fail(res, running, "Get signals"); - } + return get_points_signals_common(req, res, false); } static GString *get_point_details_json(const char *data_id) { diff --git a/server/src/handler_monitor.h b/server/src/handler_monitor.h index a6f919f8..127b03ca 100644 --- a/server/src/handler_monitor.h +++ b/server/src/handler_monitor.h @@ -49,6 +49,12 @@ onion_connection_status handler_get_train_states(void *_, onion_request *req, onion_connection_status handler_get_train_peripherals(void *_, onion_request *req, onion_response *res); +onion_connection_status handler_get_engines(void *_, onion_request *req, + onion_response *res); + +onion_connection_status handler_get_interlockers(void *_, onion_request *req, + onion_response *res); + onion_connection_status handler_get_track_outputs(void *_, onion_request *req, onion_response *res); diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index cdc34ee6..e8e3f91c 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -234,20 +234,6 @@ onion_connection_status handler_upload_engine(void *_, onion_request *req, onion } } -///TODO: Move to monitor -onion_connection_status handler_get_engines(void *_, onion_request *req, onion_response *res) { - build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - GString *train_engines = dyn_containers_get_train_engines(); - onion_response_printf(res, "%s", train_engines->str); - g_string_free(train_engines, true); - syslog_server(LOG_INFO, "Request: Get engines - done"); - return OCS_PROCESSED; - } else { - return handle_req_run_or_method_fail(res, running, "Get engines"); - } -} - onion_connection_status handler_remove_engine(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -413,21 +399,6 @@ onion_connection_status handler_upload_interlocker(void *_, onion_request *req, } } -///TODO: Move to monitor -onion_connection_status handler_get_interlockers(void *_, onion_request *req, - onion_response *res) { - build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - GString *interlockers = dyn_containers_get_interlockers(); - onion_response_printf(res, "%s", interlockers->str); - g_string_free(interlockers, true); - syslog_server(LOG_INFO, "Request: Get interlockers - done"); - return OCS_PROCESSED; - } else { - return handle_req_run_or_method_fail(res, running, "Get interlockers"); - } -} - onion_connection_status handler_remove_interlocker(void *_, onion_request *req, onion_response *res) { build_response_header(res); diff --git a/server/src/handler_upload.h b/server/src/handler_upload.h index a3bcc28e..f1b90eb5 100644 --- a/server/src/handler_upload.h +++ b/server/src/handler_upload.h @@ -40,18 +40,12 @@ bool clear_interlocker_dir(void); onion_connection_status handler_upload_engine(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_engines(void *_, onion_request *req, - onion_response *res); - onion_connection_status handler_remove_engine(void *_, onion_request *req, onion_response *res); onion_connection_status handler_upload_interlocker(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_interlockers(void *_, onion_request *req, - onion_response *res); - onion_connection_status handler_remove_interlocker(void *_, onion_request *req, onion_response *res); diff --git a/server/src/server.c b/server/src/server.c index 4d0ee8ff..6bf763ce 100644 --- a/server/src/server.c +++ b/server/src/server.c @@ -188,16 +188,14 @@ int main(int argc, char **argv) { onion_url_add(urls, "upload/remove-engine", handler_remove_engine); onion_url_add(urls, "upload/interlocker", handler_upload_interlocker); onion_url_add(urls, "upload/remove-interlocker", handler_remove_interlocker); - ///TODO: Move to monitor - onion_url_add(urls, "upload/refresh-engines", handler_get_engines); - ///TODO: Move to monitor - onion_url_add(urls, "upload/refresh-interlockers", handler_get_interlockers); // --- monitor functions --- onion_url_add(urls, "monitor/trains", handler_get_trains); onion_url_add(urls, "monitor/train-state", handler_get_train_state); onion_url_add(urls, "monitor/train-states", handler_get_train_states); onion_url_add(urls, "monitor/train-peripherals", handler_get_train_peripherals); + onion_url_add(urls, "monitor/engines", handler_get_engines); + onion_url_add(urls, "monitor/interlockers", handler_get_interlockers); onion_url_add(urls, "monitor/track-outputs", handler_get_track_outputs); onion_url_add(urls, "monitor/points", handler_get_points); onion_url_add(urls, "monitor/signals", handler_get_signals); From f9d4b3916c3f271856a2011dc8fdc6b43d56b422 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 19 Jul 2024 12:02:06 +0200 Subject: [PATCH 036/125] handler monitor small improvements --- server/src/handler_monitor.c | 108 ++++++++++++++++------------------- 1 file changed, 50 insertions(+), 58 deletions(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 70a81d7d..937a2acd 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -117,13 +117,13 @@ onion_connection_status handler_get_trains(void *_, onion_request *req, onion_re static GString *get_train_state_json(const char *data_train) { if (data_train == NULL) { - return g_string_new(""); + return NULL; } t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); if (!train_state_query.known) { bidib_free_train_state_query(train_state_query); - return g_string_new(""); + return NULL; } GString *g_train_state = g_string_sized_new(256); @@ -187,7 +187,7 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni } GString *ret_string = get_train_state_json(data_train); - if (ret_string->len > 0) { + if (ret_string != NULL) { send_some_gstring_and_free(res, HTTP_OK, ret_string); syslog_server(LOG_INFO, "Request: Get train state - train: %s - done", data_train); } else { @@ -195,7 +195,6 @@ onion_connection_status handler_get_train_state(void *_, onion_request *req, oni syslog_server(LOG_ERR, "Request: Get train state - train: %s - invalid train", data_train); - g_string_free(ret_string, true); } return OCS_PROCESSED; } else { @@ -213,10 +212,12 @@ static GString *get_train_states_json() { for (size_t i = 0; i < query.length; i++) { GString *g_train_state = get_train_state_json(query.ids[i]); - g_string_append_printf(g_train_states, "%s", g_train_state->str); - g_string_free(g_train_state, true); - if (i + 1 < query.length) { - g_string_append_printf(g_train_states, "%s", ","); + if (g_train_state != NULL) { + g_string_append_printf(g_train_states, "%s", g_train_state->str); + g_string_free(g_train_state, true); + if (i + 1 < query.length) { + g_string_append_printf(g_train_states, "%s", ","); + } } } append_end_of_list(g_train_states, false, query.length > 0); @@ -241,7 +242,7 @@ onion_connection_status handler_get_train_states(void *_, onion_request *req, static GString *get_train_peripherals_json(const char *data_train) { if (data_train == NULL) { - return g_string_new(""); + return NULL; } t_bidib_id_list_query query = bidib_get_train_peripherals(data_train); @@ -286,16 +287,16 @@ onion_connection_status handler_get_train_peripherals(void *_, onion_request *re } GString *g_train_peripherals = get_train_peripherals_json(data_train); - if (g_train_peripherals->len > 0) { + if (g_train_peripherals != NULL) { send_some_gstring_and_free(res, HTTP_OK, g_train_peripherals); syslog_server(LOG_INFO, "Request: Get train peripherals - train: %s - done", data_train); } else { + onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, "Request: Get train peripherals - train: %s - invalid train", data_train); - g_string_free(g_train_peripherals, true); } return OCS_PROCESSED; } else { @@ -475,16 +476,17 @@ onion_connection_status handler_get_signals(void *_, onion_request *req, onion_r static GString *get_point_details_json(const char *data_id) { if (data_id == NULL) { - return g_string_new(""); + return NULL; } t_bidib_id_list_query aspects_query = bidib_get_point_aspects(data_id); if (aspects_query.length <= 0 || aspects_query.ids == NULL) { - return g_string_new(""); + return NULL; } t_bidib_unified_accessory_state_query acc_state = bidib_get_point_state(data_id); if (!acc_state.known) { - return g_string_new(""); + bidib_free_id_list_query(aspects_query); + return NULL; } GString *g_details = g_string_sized_new(156); @@ -496,6 +498,8 @@ static GString *get_point_details_json(const char *data_id) { for (size_t i = 0; i < aspects_query.length; i++) { g_string_append_printf(g_details, "%s\"%s\"", i != 0 ? ", " : "", aspects_query.ids[i]); } + bidib_free_id_list_query(aspects_query); + append_end_of_list(g_details, true, false); append_field_str_value(g_details, "state", acc_state.type == BIDIB_ACCESSORY_BOARD ? @@ -515,7 +519,6 @@ static GString *get_point_details_json(const char *data_id) { } append_end_of_obj(g_details, false); - bidib_free_id_list_query(aspects_query); return g_details; } @@ -530,14 +533,14 @@ onion_connection_status handler_get_point_details(void *_, onion_request *req, o } GString *g_details = get_point_details_json(data_point); - if (g_details->len > 0) { + if (g_details != NULL) { send_some_gstring_and_free(res, HTTP_OK, g_details); syslog_server(LOG_INFO, "Request: Get point details - point: %s - done", data_point); } else { + onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, "Request: Get point details - point: %s - invalid point", data_point); - g_string_free(g_details, true); } return OCS_PROCESSED; } else { @@ -548,7 +551,7 @@ onion_connection_status handler_get_point_details(void *_, onion_request *req, o static GString *get_accessory_aspects_json(const char *data_id, bool is_point) { if (data_id == NULL) { - return g_string_new(""); + return NULL; } t_bidib_id_list_query query; if (is_point) { @@ -558,7 +561,7 @@ static GString *get_accessory_aspects_json(const char *data_id, bool is_point) { } if (query.length <= 0 || query.ids == NULL) { - return g_string_new(""); + return NULL; } GString *g_aspects = g_string_sized_new(32 * (query.length + 1)); @@ -575,64 +578,48 @@ static GString *get_accessory_aspects_json(const char *data_id, bool is_point) { return g_aspects; } -onion_connection_status handler_get_point_aspects(void *_, onion_request *req, - onion_response *res) { +static onion_connection_status get_point_signal_aspects_common(onion_request *req, + onion_response *res, + bool point) { build_response_header(res); + const char *l_name = point ? "Get point aspects" : "Get signal aspects"; if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { - const char *data_point = onion_request_get_post(req, "point"); - if (data_point == NULL) { + const char *acc_type_name = point ? "point" : "signal"; + const char *data_acc = onion_request_get_post(req, acc_type_name); + if (data_acc == NULL) { onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: Get point aspects - invalid parameters"); + syslog_server(LOG_ERR, "Request: %s - invalid parameters", l_name); return OCS_PROCESSED; } - GString *g_aspects = get_accessory_aspects_json(data_point, true); - if (g_aspects->len > 0) { + GString *g_aspects = get_accessory_aspects_json(data_acc, point); + if (g_aspects != NULL) { send_some_gstring_and_free(res, HTTP_OK, g_aspects); - syslog_server(LOG_INFO, "Request: Get point aspects - point: %s - done", data_point); + syslog_server(LOG_INFO, "Request: %s - %s: %s - done", l_name, acc_type_name, data_acc); } else { + onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, - "Request: Get point aspects - point: %s - invalid point", - data_point); - g_string_free(g_aspects, true); + "Request: %s - %s: %s - invalid %s", + l_name, acc_type_name, data_acc, acc_type_name); } return OCS_PROCESSED; } else { - return handle_req_run_or_method_fail(res, running, "Get point aspects"); + return handle_req_run_or_method_fail(res, running, l_name); } } +onion_connection_status handler_get_point_aspects(void *_, onion_request *req, + onion_response *res) { + return get_point_signal_aspects_common(req, res, true); +} + // Probably want to have a signal-details endpoint too, once we // have more information about signals we can return; at the moment it // is quite limited. One interesting property may be, for example, // to know what segment->segment travel means the signal has been driven past. onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, onion_response *res) { - build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { - const char *data_signal = onion_request_get_post(req, "signal"); - if (data_signal == NULL) { - onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: Get signal aspects - invalid parameters"); - return OCS_PROCESSED; - } - - GString *g_aspects = get_accessory_aspects_json(data_signal, false); - if (g_aspects->len > 0) { - send_some_gstring_and_free(res, HTTP_OK, g_aspects); - syslog_server(LOG_INFO, - "Request: Get signal aspects - signal: %s - done", - data_signal); - } else { - syslog_server(LOG_ERR, - "Request: Get signal aspects - signal: %s - invalid signal", - data_signal); - g_string_free(g_aspects, true); - } - return OCS_PROCESSED; - } else { - return handle_req_run_or_method_fail(res, running, "Get signal aspects"); - } + return get_point_signal_aspects_common(req, res, false); } static GString *get_segments_json() { @@ -940,8 +927,13 @@ onion_connection_status handler_get_route(void *_, onion_request *req, onion_res syslog_server(LOG_INFO, "Request: Get route - route: %s - start", route_id); GString* g_route = get_route_json(route_id); - send_some_gstring_and_free(res, HTTP_OK, g_route); - syslog_server(LOG_INFO, "Request: Get route - route: %s - finished", route_id); + if (g_route != NULL) { + send_some_gstring_and_free(res, HTTP_OK, g_route); + syslog_server(LOG_INFO, "Request: Get route - route: %s - finished", route_id); + } else { + onion_response_set_code(res, HTTP_BAD_REQUEST); + syslog_server(LOG_ERR, "Request: Get route - route: %s - invalid route", route_id); + } return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Get route"); From 92b547daeefc861b8c81fa939f30f8703c5c4556 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 19 Jul 2024 12:28:03 +0200 Subject: [PATCH 037/125] onion type alias for shorter signatures --- server/src/handler_admin.c | 16 ++++---- server/src/handler_admin.h | 23 +++++------ server/src/handler_controller.c | 14 +++---- server/src/handler_controller.h | 23 +++++------ server/src/handler_driver.c | 28 +++++-------- server/src/handler_driver.h | 33 ++++++---------- server/src/handler_monitor.c | 69 +++++++++++++-------------------- server/src/handler_monitor.h | 61 ++++++++++------------------- server/src/handler_upload.c | 16 ++++---- server/src/handler_upload.h | 14 +++---- 10 files changed, 117 insertions(+), 180 deletions(-) diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index 48accbe9..12e81bf7 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -43,7 +43,7 @@ static pthread_mutex_t start_stop_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_t poll_bidib_messages_thread; - +typedef onion_connection_status o_con_status; void build_message_hex_string(unsigned char *message, char *dest) { for (size_t i = 0; i <= message[0]; i++) { @@ -131,7 +131,7 @@ void shutdown_server(void) { bidib_stop(); } -onion_connection_status handler_startup(void *_, onion_request *req, onion_response *res) { +o_con_status handler_startup(void *_, onion_request *req, onion_response *res) { build_response_header(res); pthread_mutex_lock(&start_stop_mutex); if (!running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -160,7 +160,7 @@ onion_connection_status handler_startup(void *_, onion_request *req, onion_respo } } -onion_connection_status handler_shutdown(void *_, onion_request *req, onion_response *res) { +o_con_status handler_shutdown(void *_, onion_request *req, onion_response *res) { build_response_header(res); pthread_mutex_lock(&start_stop_mutex); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -176,7 +176,7 @@ onion_connection_status handler_shutdown(void *_, onion_request *req, onion_resp } } -onion_connection_status handler_set_track_output(void *_, onion_request *req, onion_response *res) { +o_con_status handler_set_track_output(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { char *end; @@ -198,7 +198,7 @@ onion_connection_status handler_set_track_output(void *_, onion_request *req, on } } -onion_connection_status handler_set_verification_option(void *_, onion_request *req, +o_con_status handler_set_verification_option(void *_, onion_request *req, onion_response *res) { build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_POST) { @@ -225,7 +225,7 @@ onion_connection_status handler_set_verification_option(void *_, onion_request * } } -onion_connection_status handler_set_verification_url(void *_, onion_request *req, +o_con_status handler_set_verification_url(void *_, onion_request *req, onion_response *res) { build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_POST) { @@ -246,7 +246,7 @@ onion_connection_status handler_set_verification_url(void *_, onion_request *req } } -onion_connection_status handler_admin_release_train(void *_, onion_request *req, +o_con_status handler_admin_release_train(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -296,7 +296,7 @@ onion_connection_status handler_admin_release_train(void *_, onion_request *req, } } -onion_connection_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, +o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { diff --git a/server/src/handler_admin.h b/server/src/handler_admin.h index 8209df52..4476e316 100644 --- a/server/src/handler_admin.h +++ b/server/src/handler_admin.h @@ -30,28 +30,23 @@ #include +typedef onion_connection_status o_con_status; + void shutdown_server(void); -onion_connection_status handler_startup(void *_, onion_request *req, - onion_response *res); +o_con_status handler_startup(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_shutdown(void *_, onion_request *req, - onion_response *res); +o_con_status handler_shutdown(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_track_output(void *_, onion_request *req, - onion_response *res); +o_con_status handler_set_track_output(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_verification_option(void *_, onion_request *req, - onion_response *res); +o_con_status handler_set_verification_option(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_verification_url(void *_, onion_request *req, - onion_response *res); +o_con_status handler_set_verification_url(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_admin_release_train(void *_, onion_request *req, - onion_response *res); +o_con_status handler_admin_release_train(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, - onion_response *res); +o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, onion_response *res); #endif // HANDLER_ADMIN_H \ No newline at end of file diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 0076fd32..da415a14 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -440,7 +440,7 @@ bool reversers_state_update(void) { return !error; } -onion_connection_status handler_release_route(void *_, onion_request *req, onion_response *res) { +o_con_status handler_release_route(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_route_id = onion_request_get_post(req, "route-id"); @@ -465,7 +465,7 @@ onion_connection_status handler_release_route(void *_, onion_request *req, onion } } -onion_connection_status handler_set_point(void *_, onion_request *req, onion_response *res) { +o_con_status handler_set_point(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_point = onion_request_get_post(req, "point"); @@ -496,7 +496,7 @@ onion_connection_status handler_set_point(void *_, onion_request *req, onion_res } } -onion_connection_status handler_set_signal(void *_, onion_request *req, onion_response *res) { +o_con_status handler_set_signal(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_signal = onion_request_get_post(req, "signal"); @@ -528,7 +528,7 @@ onion_connection_status handler_set_signal(void *_, onion_request *req, onion_re } } -onion_connection_status handler_set_peripheral(void *_, onion_request *req, onion_response *res) { +o_con_status handler_set_peripheral(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_peripheral = onion_request_get_post(req, "peripheral"); @@ -560,7 +560,7 @@ onion_connection_status handler_set_peripheral(void *_, onion_request *req, onio } } -onion_connection_status handler_get_interlocker(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_interlocker(void *_, onion_request *req, onion_response *res) { ///TODO: Changed to GET, adjust clients! build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { @@ -583,7 +583,7 @@ onion_connection_status handler_get_interlocker(void *_, onion_request *req, oni } } -onion_connection_status handler_set_interlocker(void *_, onion_request *req, onion_response *res) { +o_con_status handler_set_interlocker(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_interlocker = onion_request_get_post(req, "interlocker"); @@ -628,7 +628,7 @@ onion_connection_status handler_set_interlocker(void *_, onion_request *req, oni } } -onion_connection_status handler_unset_interlocker(void *_, onion_request *req, onion_response *res) { +o_con_status handler_unset_interlocker(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_interlocker = onion_request_get_post(req, "interlocker"); diff --git a/server/src/handler_controller.h b/server/src/handler_controller.h index 0a9f6d97..a359a322 100644 --- a/server/src/handler_controller.h +++ b/server/src/handler_controller.h @@ -32,6 +32,8 @@ #include #include +typedef onion_connection_status o_con_status; + #define INTERLOCKER_COUNT_MAX 4 #define INTERLOCKER_INSTANCE_COUNT_MAX 4 @@ -124,26 +126,19 @@ bool release_route(const char *route_id); */ bool reversers_state_update(void); -onion_connection_status handler_release_route(void *_, onion_request *req, - onion_response *res); +o_con_status handler_release_route(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_point(void *_, onion_request *req, - onion_response *res); +o_con_status handler_set_point(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_signal(void *_, onion_request *req, - onion_response *res); +o_con_status handler_set_signal(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_peripheral(void *_, onion_request *req, - onion_response *res); +o_con_status handler_set_peripheral(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_interlocker(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_interlocker(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_interlocker(void *_, onion_request *req, - onion_response *res); +o_con_status handler_set_interlocker(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_unset_interlocker(void *_, onion_request *req, - onion_response *res); +o_con_status handler_unset_interlocker(void *_, onion_request *req, onion_response *res); #endif // HANDLER_CONTROLLER_H diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index f59e00f8..c03c6c72 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -809,7 +809,7 @@ void fill_grab_feedback(int grab_id, GString *ret_str, int *http_code) { } } -onion_connection_status handler_grab_train(void *_, onion_request *req, onion_response *res) { +o_con_status handler_grab_train(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); @@ -866,7 +866,7 @@ onion_connection_status handler_grab_train(void *_, onion_request *req, onion_re } } -onion_connection_status handler_release_train(void *_, onion_request *req, onion_response *res) { +o_con_status handler_release_train(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_session_id = onion_request_get_post(req, "session-id"); @@ -961,7 +961,7 @@ void fill_request_route_feedback(GString *route_id, GString *ret_str, int *http_ } } -onion_connection_status handler_request_route(void *_, onion_request *req, onion_response *res) { +o_con_status handler_request_route(void *_, onion_request *req, onion_response *res) { build_response_header(res); ///TODO: Changed to GET (from POST), adjust clients. if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { @@ -1017,7 +1017,7 @@ onion_connection_status handler_request_route(void *_, onion_request *req, onion ///TODO: Discuss - maybe this should be called "request_route_by_id", to distinguish it from // just getting a route id of/for something (similar to a monitor endpoint). -onion_connection_status handler_request_route_id(void *_, onion_request *req, onion_response *res) { +o_con_status handler_request_route_id(void *_, onion_request *req, onion_response *res) { build_response_header(res); ///TODO: Changed to GET (from POST), adjust clients. if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { @@ -1078,8 +1078,7 @@ onion_connection_status handler_request_route_id(void *_, onion_request *req, on } } -onion_connection_status handler_driving_direction(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_driving_direction(void *_, onion_request *req, onion_response *res) { build_response_header(res); ///TODO: Changed to GET (from POST), adjust clients. if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { @@ -1114,7 +1113,7 @@ onion_connection_status handler_driving_direction(void *_, onion_request *req, } } -onion_connection_status handler_drive_route(void *_, onion_request *req, onion_response *res) { +o_con_status handler_drive_route(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_session_id = onion_request_get_post(req, "session-id"); @@ -1172,8 +1171,7 @@ onion_connection_status handler_drive_route(void *_, onion_request *req, onion_r } } -onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_session_id = onion_request_get_post(req, "session-id"); @@ -1232,9 +1230,7 @@ onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, } } -onion_connection_status handler_set_calibrated_train_speed(void *_, - onion_request *req, - onion_response *res) { +o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_session_id = onion_request_get_post(req, "session-id"); @@ -1298,9 +1294,7 @@ onion_connection_status handler_set_calibrated_train_speed(void *_, } } -onion_connection_status handler_set_train_emergency_stop(void *_, - onion_request *req, - onion_response *res) { +o_con_status handler_set_train_emergency_stop(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_session_id = onion_request_get_post(req, "session-id"); @@ -1352,9 +1346,7 @@ onion_connection_status handler_set_train_emergency_stop(void *_, } } -onion_connection_status handler_set_train_peripheral(void *_, - onion_request *req, - onion_response *res) { +o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_session_id = onion_request_get_post(req, "session-id"); diff --git a/server/src/handler_driver.h b/server/src/handler_driver.h index d5b3527d..2d1775f5 100644 --- a/server/src/handler_driver.h +++ b/server/src/handler_driver.h @@ -37,6 +37,8 @@ #define MICROSECOND 1 #define TRAIN_DRIVE_TIME_STEP 10000 * MICROSECOND // 0.01 seconds +typedef onion_connection_status o_con_status; + extern pthread_mutex_t grabbed_trains_mutex; typedef struct { @@ -65,36 +67,25 @@ void release_all_grabbed_trains(void); */ char *train_id_from_grab_id(int grab_id); -onion_connection_status handler_grab_train(void *_, onion_request *req, - onion_response *res); +o_con_status handler_grab_train(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_release_train(void *_, onion_request *req, - onion_response *res); +o_con_status handler_release_train(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_request_route(void *_, onion_request *req, - onion_response *res); +o_con_status handler_request_route(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_request_route_id(void *_, onion_request *req, - onion_response *res); +o_con_status handler_request_route_id(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_driving_direction(void *_, onion_request *req, - onion_response *res); +o_con_status handler_driving_direction(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_drive_route(void *_, onion_request *req, - onion_response *res); +o_con_status handler_drive_route(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_dcc_train_speed(void *_, onion_request *req, - onion_response *res); +o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_calibrated_train_speed(void *_, - onion_request *req, - onion_response *res); +o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_train_peripheral(void *_, onion_request *req, - onion_response *res); +o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_set_train_emergency_stop(void *_, onion_request *req, - onion_response *res); +o_con_status handler_set_train_emergency_stop(void *_, onion_request *req, onion_response *res); #endif // HANDLER_DRIVER_H \ No newline at end of file diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 937a2acd..01a676b1 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -45,7 +45,6 @@ ///NOTE: All handlers/endpoints now only accept GET, not POST. Need to adjust clients accordingly. - static GArray* garray_points_to_garray_str_ids(GArray *points) { if (points == NULL) { return NULL; @@ -103,7 +102,7 @@ static GString *get_trains_json() { return g_trains; } -onion_connection_status handler_get_trains(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_trains(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_trains = get_trains_json(); @@ -176,7 +175,7 @@ static GString *get_train_state_json(const char *data_train) { return g_train_state; } -onion_connection_status handler_get_train_state(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_train_state(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_train = onion_request_get_post(req, "train"); @@ -227,8 +226,7 @@ static GString *get_train_states_json() { return g_train_states; } -onion_connection_status handler_get_train_states(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_get_train_states(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_train_states = get_train_states_json(); @@ -275,8 +273,7 @@ static GString *get_train_peripherals_json(const char *data_train) { return g_train_peripherals; } -onion_connection_status handler_get_train_peripherals(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_get_train_peripherals(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_train = onion_request_get_post(req, "train"); @@ -328,9 +325,8 @@ static GString *get_engines_or_interlockers_json(bool engines) { return g_json_ret; } -static onion_connection_status get_engines_interlockers_common(onion_request *req, - onion_response *res, - bool engines) { +static o_con_status get_engines_interlockers_common(onion_request *req, onion_response *res, + bool engines) { build_response_header(res); const char *l_name = engines ? "Get engines" : "Get interlockers"; if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { @@ -347,11 +343,11 @@ static onion_connection_status get_engines_interlockers_common(onion_request *re } } -onion_connection_status handler_get_engines(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_engines(void *_, onion_request *req, onion_response *res) { return get_engines_interlockers_common(req, res, true); } -onion_connection_status handler_get_interlockers(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_interlockers(void *_, onion_request *req, onion_response *res) { return get_engines_interlockers_common(req, res, false); } @@ -397,8 +393,7 @@ static GString *get_track_outputs_json() { return g_track_outputs; } -onion_connection_status handler_get_track_outputs(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_get_track_outputs(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_track_outputs = get_track_outputs_json(); @@ -451,9 +446,7 @@ static GString *get_accessories_json(bool point_accessories) { return g_accs; } -static onion_connection_status get_points_signals_common(onion_request *req, - onion_response *res, - bool points) { +static o_con_status get_points_signals_common(onion_request *req, onion_response *res, bool points) { build_response_header(res); const char *l_name = points ? "Get points" : "Get signals"; if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { @@ -466,11 +459,11 @@ static onion_connection_status get_points_signals_common(onion_request *req, } } -onion_connection_status handler_get_points(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_points(void *_, onion_request *req, onion_response *res) { return get_points_signals_common(req, res, true); } -onion_connection_status handler_get_signals(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_signals(void *_, onion_request *req, onion_response *res) { return get_points_signals_common(req, res, false); } @@ -522,7 +515,7 @@ static GString *get_point_details_json(const char *data_id) { return g_details; } -onion_connection_status handler_get_point_details(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_point_details(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_point = onion_request_get_post(req, "point"); @@ -578,9 +571,7 @@ static GString *get_accessory_aspects_json(const char *data_id, bool is_point) { return g_aspects; } -static onion_connection_status get_point_signal_aspects_common(onion_request *req, - onion_response *res, - bool point) { +static o_con_status get_acc_aspects_common(onion_request *req, onion_response *res, bool point) { build_response_header(res); const char *l_name = point ? "Get point aspects" : "Get signal aspects"; if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { @@ -608,18 +599,16 @@ static onion_connection_status get_point_signal_aspects_common(onion_request *re } } -onion_connection_status handler_get_point_aspects(void *_, onion_request *req, - onion_response *res) { - return get_point_signal_aspects_common(req, res, true); +o_con_status handler_get_point_aspects(void *_, onion_request *req, onion_response *res) { + return get_acc_aspects_common(req, res, true); } // Probably want to have a signal-details endpoint too, once we // have more information about signals we can return; at the moment it // is quite limited. One interesting property may be, for example, // to know what segment->segment travel means the signal has been driven past. -onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, - onion_response *res) { - return get_point_signal_aspects_common(req, res, false); +o_con_status handler_get_signal_aspects(void *_, onion_request *req, onion_response *res) { + return get_acc_aspects_common(req, res, false); } static GString *get_segments_json() { @@ -666,7 +655,7 @@ static GString *get_segments_json() { return g_segments; } -onion_connection_status handler_get_segments(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_segments(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_segments = get_segments_json(); @@ -724,7 +713,7 @@ static GString *get_reversers_json() { return g_reversers; } -onion_connection_status handler_get_reversers(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_reversers(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { if (!reversers_state_update()) { @@ -778,7 +767,7 @@ static GString *get_peripherals_json() { return g_peripherals; } -onion_connection_status handler_get_peripherals(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_peripherals(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_peripherals = get_peripherals_json(); @@ -790,8 +779,7 @@ onion_connection_status handler_get_peripherals(void *_, onion_request *req, oni } } -onion_connection_status handler_get_verification_option(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_get_verification_option(void *_, onion_request *req, onion_response *res) { build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_GET) { onion_response_set_code(res, HTTP_OK); @@ -804,8 +792,7 @@ onion_connection_status handler_get_verification_option(void *_, onion_request * } } -onion_connection_status handler_get_verification_url(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_get_verification_url(void *_, onion_request *req, onion_response *res) { build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_GET) { const char *verif_url = get_verifier_url(); @@ -860,8 +847,7 @@ static GString* get_granted_routes_json() { return g_granted_routes; } -onion_connection_status handler_get_granted_routes(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_get_granted_routes(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_granted_routes = get_granted_routes_json(); @@ -914,7 +900,7 @@ static GString* get_route_json(const char *route_id) { return g_route; } -onion_connection_status handler_get_route(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_route(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { const char *data_route_id = onion_request_get_post(req, "route-id"); @@ -1083,7 +1069,7 @@ static GString *debug_info(void) { return info_str; } -onion_connection_status handler_get_debug_info(void *_, onion_request *req, onion_response *res) { +o_con_status handler_get_debug_info(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *debug_info_str = debug_info(); @@ -1122,8 +1108,7 @@ static GString *debug_info_extra(void) { return info_str; } -onion_connection_status handler_get_debug_info_extra(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_get_debug_info_extra(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *debug_info_extra_str = debug_info_extra(); diff --git a/server/src/handler_monitor.h b/server/src/handler_monitor.h index 127b03ca..2cf11cc4 100644 --- a/server/src/handler_monitor.h +++ b/server/src/handler_monitor.h @@ -32,70 +32,51 @@ #include "dyn_containers_interface.h" #include "dyn_containers.h" +typedef onion_connection_status o_con_status; extern t_dyn_containers_interface *dyn_containers_interface; extern long long dyn_containers_reaction_counter__global_0_0; extern long long dyn_containers_actuate_reaction_counter; -onion_connection_status handler_get_trains(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_trains(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_train_state(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_train_state(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_train_states(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_train_states(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_train_peripherals(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_train_peripherals(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_engines(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_engines(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_interlockers(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_interlockers(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_track_outputs(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_track_outputs(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_points(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_points(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_signals(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_signals(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_point_aspects(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_point_aspects(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_signal_aspects(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_signal_aspects(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_segments(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_segments(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_reversers(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_reversers(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_peripherals(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_peripherals(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_verification_option(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_verification_option(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_verification_url(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_verification_url(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_granted_routes(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_granted_routes(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_route(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_route(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_debug_info(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_debug_info(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_get_debug_info_extra(void *_, onion_request *req, - onion_response *res); +o_con_status handler_get_debug_info_extra(void *_, onion_request *req, onion_response *res); #endif // HANDLER_MONITOR_H diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index e8e3f91c..4b5943f8 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -42,6 +42,8 @@ #include "websocket_uploader/engine_uploader.h" #include "communication_utils.h" +typedef onion_connection_status o_con_status; + static const char engine_dir[] = "engines"; static const char engine_extensions[][5] = { "c", "h", "sctx" }; static const int engine_extensions_count = 3; @@ -140,7 +142,7 @@ static bool plugin_is_unremovable(const char name[]) { } -onion_connection_status handler_upload_engine(void *_, onion_request *req, onion_response *res) { +o_con_status handler_upload_engine(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *filename = onion_request_get_post(req, "file"); @@ -234,7 +236,7 @@ onion_connection_status handler_upload_engine(void *_, onion_request *req, onion } } -onion_connection_status handler_remove_engine(void *_, onion_request *req, onion_response *res) { +o_con_status handler_remove_engine(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *name = onion_request_get_post(req, "engine-name"); @@ -319,8 +321,7 @@ static bool remove_interlocker_files(const char library_name[]) { return (result == 0); } -onion_connection_status handler_upload_interlocker(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *filename = onion_request_get_post(req, "file"); @@ -399,8 +400,7 @@ onion_connection_status handler_upload_interlocker(void *_, onion_request *req, } } -onion_connection_status handler_remove_interlocker(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_remove_interlocker(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *name = onion_request_get_post(req, "interlocker-name"); @@ -426,9 +426,9 @@ onion_connection_status handler_remove_interlocker(void *_, onion_request *req, return OCS_PROCESSED; } - const bool interlocker_freed_successfully = dyn_containers_free_interlocker(interlocker_slot); + const bool free_success = dyn_containers_free_interlocker(interlocker_slot); pthread_mutex_unlock(&dyn_containers_mutex); - if (!interlocker_freed_successfully) { + if (!free_success) { syslog_server(LOG_WARNING, "Request: Remove interlocker - interlocker: %s - " "interlocker is still in use - abort", diff --git a/server/src/handler_upload.h b/server/src/handler_upload.h index f1b90eb5..3df5d5c8 100644 --- a/server/src/handler_upload.h +++ b/server/src/handler_upload.h @@ -32,22 +32,20 @@ #include +typedef onion_connection_status o_con_status; + bool clear_engine_dir(void); bool clear_interlocker_dir(void); -onion_connection_status handler_upload_engine(void *_, onion_request *req, - onion_response *res); +o_con_status handler_upload_engine(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_remove_engine(void *_, onion_request *req, - onion_response *res); +o_con_status handler_remove_engine(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_upload_interlocker(void *_, onion_request *req, - onion_response *res); +o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_response *res); -onion_connection_status handler_remove_interlocker(void *_, onion_request *req, - onion_response *res); +o_con_status handler_remove_interlocker(void *_, onion_request *req, onion_response *res); #endif // HANDLER_UPLOAD_H From 0d6724f04f42c4b7b52a93451366d412e76e7815 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 13 Nov 2024 10:58:12 +0100 Subject: [PATCH 038/125] json schema definition for api WIP --- server/doc/api-formats/Readme.md | 7 +- server/doc/api-formats/controller.md | 2 +- .../controller_get-interlocker.json | 0 ...son-schema-controller_get-interlocker.json | 23 ++ .../{ => examples}/driver_direction.json | 0 .../{ => examples}/driver_grab-train.json | 1 - .../{ => examples}/driver_request-route.json | 1 - .../driver/json-schema-driver_direction.json | 22 ++ .../driver/json-schema-driver_grab-train.json | 28 ++ .../json-schema-driver_request-route.json | 22 ++ .../json-schema-common_feedback.json | 16 + .../{ => examples}/monitor_engines.json | 0 .../examples/monitor_granted-routes.json | 12 + .../{ => examples}/monitor_peripherals.json | 0 .../{ => examples}/monitor_point-aspects.json | 0 .../{ => examples}/monitor_point-details.json | 2 +- .../{ => examples}/monitor_points.json | 0 .../{ => examples}/monitor_reversers.json | 6 +- .../monitor/{ => examples}/monitor_route.json | 6 +- .../{ => examples}/monitor_segments.json | 0 .../monitor_signal-aspects.json | 0 .../monitor/json-schema-monitor_engines.json | 19 + .../json-schema-monitor_granted-routes.json | 33 ++ .../json-schema-monitor_peripherals.json | 39 ++ .../json-schema-monitor_point-aspects.json | 22 ++ .../json-schema-monitor_point-details.json | 44 +++ .../monitor/json-schema-monitor_points.json | 37 ++ .../json-schema-monitor_reversers.json | 33 ++ .../monitor/json-schema-monitor_route.json | 105 +++++ .../monitor/json-schema-monitor_segments.json | 37 ++ .../json-schema-monitor_signal-aspects.json | 22 ++ .../monitor/monitor_granted-routes.json | 12 - server/src/assets/game/script-game.js | 9 +- server/src/handler_driver.c | 178 +++++---- server/src/handler_monitor.c | 363 +++++++++++++----- server/src/handler_monitor.h | 3 + server/src/json_response_builder.c | 7 +- server/src/json_response_builder.h | 2 +- 38 files changed, 905 insertions(+), 208 deletions(-) rename server/doc/api-formats/controller/{ => examples}/controller_get-interlocker.json (100%) create mode 100644 server/doc/api-formats/controller/json-schema-controller_get-interlocker.json rename server/doc/api-formats/driver/{ => examples}/driver_direction.json (100%) rename server/doc/api-formats/driver/{ => examples}/driver_grab-train.json (64%) rename server/doc/api-formats/driver/{ => examples}/driver_request-route.json (71%) create mode 100644 server/doc/api-formats/driver/json-schema-driver_direction.json create mode 100644 server/doc/api-formats/driver/json-schema-driver_grab-train.json create mode 100644 server/doc/api-formats/driver/json-schema-driver_request-route.json create mode 100644 server/doc/api-formats/json-schema-common_feedback.json rename server/doc/api-formats/monitor/{ => examples}/monitor_engines.json (100%) create mode 100644 server/doc/api-formats/monitor/examples/monitor_granted-routes.json rename server/doc/api-formats/monitor/{ => examples}/monitor_peripherals.json (100%) rename server/doc/api-formats/monitor/{ => examples}/monitor_point-aspects.json (100%) rename server/doc/api-formats/monitor/{ => examples}/monitor_point-details.json (64%) rename server/doc/api-formats/monitor/{ => examples}/monitor_points.json (100%) rename server/doc/api-formats/monitor/{ => examples}/monitor_reversers.json (75%) rename server/doc/api-formats/monitor/{ => examples}/monitor_route.json (76%) rename server/doc/api-formats/monitor/{ => examples}/monitor_segments.json (100%) rename server/doc/api-formats/monitor/{ => examples}/monitor_signal-aspects.json (100%) create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_engines.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_granted-routes.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_peripherals.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_point-details.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_points.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_reversers.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_route.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_segments.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json delete mode 100644 server/doc/api-formats/monitor/monitor_granted-routes.json diff --git a/server/doc/api-formats/Readme.md b/server/doc/api-formats/Readme.md index 3b9ad0aa..5751ca22 100644 --- a/server/doc/api-formats/Readme.md +++ b/server/doc/api-formats/Readme.md @@ -2,4 +2,9 @@ - Always analyze the returned HTTP status code first. Information about success or failure of a request to an endpoint is encoded in the HTTP status code of the reply. - An endpoint may reply with a message *up to* the specified schema, i.e., the returned message will not contain more fields than indicated here. However, some fields may be left out, or the reply might be empty. Therefore, a client must always check what fields are actually contained, it cannot rely on the message containing all fields in the schema. - For example, in a simple success scenario, the reply often will have status code 200 (HTTP OK), and no content. -- There are endpoints for which two different possible schemata are referenced (e.g., the "driver/direction" endpoint can reply with either a message like common_feedback.json or driver_direction.json). In this case, one has to always check which fields are present. \ No newline at end of file +- There are endpoints for which two different possible schemata are referenced (e.g., the "driver/direction" endpoint can reply with either a message like common_feedback.json or driver_direction.json). In this case, one has to always check which fields are present. + + + +- The above has to be updated after the switch to json-schema (as of 2024-11-04) +- difficulty: Especially for Admin endpoints, often they don't have any meaningful return instead of "OK" or "Success", which can sufficiently be expressed with the HTTP status code. If on the json-schema of "common feedback" we specify `required: [msg]`, is that a problem? I.e., does an empty reply violate the schema? Probably yes? \ No newline at end of file diff --git a/server/doc/api-formats/controller.md b/server/doc/api-formats/controller.md index 9099f7bc..d6706133 100644 --- a/server/doc/api-formats/controller.md +++ b/server/doc/api-formats/controller.md @@ -9,4 +9,4 @@ For the controller endpoints: See common_feedback.json. For the other controller endpoint(s): -- controller/get-interlocker: see controller_get-interlocker.json and in an error case: common_feedback.json. \ No newline at end of file +- controller/get-interlocker: see controller_get-interlocker.json (and in an error case: common_feedback.json). \ No newline at end of file diff --git a/server/doc/api-formats/controller/controller_get-interlocker.json b/server/doc/api-formats/controller/examples/controller_get-interlocker.json similarity index 100% rename from server/doc/api-formats/controller/controller_get-interlocker.json rename to server/doc/api-formats/controller/examples/controller_get-interlocker.json diff --git a/server/doc/api-formats/controller/json-schema-controller_get-interlocker.json b/server/doc/api-formats/controller/json-schema-controller_get-interlocker.json new file mode 100644 index 00000000..86e62e3f --- /dev/null +++ b/server/doc/api-formats/controller/json-schema-controller_get-interlocker.json @@ -0,0 +1,23 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "controller_get-interlocker.schema.json", + "title": "get-interlocker", + "description": "get interlocker result. Interlocker if request successfull, otherwise error message", + "type": "object", + "properties": { + "interlocker": { + "description": "the name of the interlocker that is currently set", + "type": "string", + "minLength": 1 + }, + "msg": { + "type": "string", + "description": "error message", + "minLength": 1 + } + }, + "oneOf": [ + {"required": ["interlocker"]}, + {"required": ["msg"]} + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/driver/driver_direction.json b/server/doc/api-formats/driver/examples/driver_direction.json similarity index 100% rename from server/doc/api-formats/driver/driver_direction.json rename to server/doc/api-formats/driver/examples/driver_direction.json diff --git a/server/doc/api-formats/driver/driver_grab-train.json b/server/doc/api-formats/driver/examples/driver_grab-train.json similarity index 64% rename from server/doc/api-formats/driver/driver_grab-train.json rename to server/doc/api-formats/driver/examples/driver_grab-train.json index f32b3715..50dd3daa 100644 --- a/server/doc/api-formats/driver/driver_grab-train.json +++ b/server/doc/api-formats/driver/examples/driver_grab-train.json @@ -1,5 +1,4 @@ { - "msg": "grabbed train X", "session-id": 16516512621321, "grab-id": 1 } \ No newline at end of file diff --git a/server/doc/api-formats/driver/driver_request-route.json b/server/doc/api-formats/driver/examples/driver_request-route.json similarity index 71% rename from server/doc/api-formats/driver/driver_request-route.json rename to server/doc/api-formats/driver/examples/driver_request-route.json index 67160576..303b66db 100644 --- a/server/doc/api-formats/driver/driver_request-route.json +++ b/server/doc/api-formats/driver/examples/driver_request-route.json @@ -1,4 +1,3 @@ { - "msg": "", "granted-route-id": "123" } \ No newline at end of file diff --git a/server/doc/api-formats/driver/json-schema-driver_direction.json b/server/doc/api-formats/driver/json-schema-driver_direction.json new file mode 100644 index 00000000..e1e4a21a --- /dev/null +++ b/server/doc/api-formats/driver/json-schema-driver_direction.json @@ -0,0 +1,22 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "driver_direction.schema.json", + "title": "direction", + "description": "get direction of train for a specific route result. Direction if request successfull, otherwise rejection/error message", + "type": "object", + "properties": { + "direction": { + "type": "string", + "pattern": "^(forwards|backwards)$" + }, + "msg": { + "type": "string", + "description": "rejection/error message", + "minLength": 1 + } + }, + "oneOf": [ + {"required": ["direction"]}, + {"required": ["msg"]} + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/driver/json-schema-driver_grab-train.json b/server/doc/api-formats/driver/json-schema-driver_grab-train.json new file mode 100644 index 00000000..acf74563 --- /dev/null +++ b/server/doc/api-formats/driver/json-schema-driver_grab-train.json @@ -0,0 +1,28 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "driver_grab-train.schema.json", + "title": "grab-train", + "description": "train grabbing result. Relevant IDs if successfull, otherwise rejection/error message", + "type": "object", + "properties": { + "msg": { + "type": "string", + "description": "rejection/error message", + "minLength": 1 + }, + "session-id": { + "type": "integer", + "description": "identifier for the current server session", + "minimum": 1 + }, + "grab-id": { + "type": "integer", + "description": "identifier for this grabbing of a train", + "minimum": 0 + } + }, + "oneOf": [ + {"required": ["session-id", "grab-id"]}, + {"required": ["msg"]} + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/driver/json-schema-driver_request-route.json b/server/doc/api-formats/driver/json-schema-driver_request-route.json new file mode 100644 index 00000000..9885b32d --- /dev/null +++ b/server/doc/api-formats/driver/json-schema-driver_request-route.json @@ -0,0 +1,22 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "driver_request-route.schema.json", + "title": "request-route", + "description": "route request result. Granted route id if successfull, otherwise rejection/error message", + "type": "object", + "properties": { + "granted-route-id": { + "type": "string", + "minLength": 1, + "description": "id of the granted route" + }, + "msg": { + "type": "string", + "description": "rejection/error message explaining why route was not granted" + } + }, + "oneOf": [ + {"required": ["granted-route-id"]}, + {"required": ["msg"]} + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/json-schema-common_feedback.json b/server/doc/api-formats/json-schema-common_feedback.json new file mode 100644 index 00000000..72e7c1be --- /dev/null +++ b/server/doc/api-formats/json-schema-common_feedback.json @@ -0,0 +1,16 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "common_feedback.schema.json", + "title": "common_feedback", + "description": "simple object with feedback message", + "type": "object", + "properties": { + "msg": { + "type": "string", + "minLength": 0 + } + }, + "required": [ + "msg" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/monitor_engines.json b/server/doc/api-formats/monitor/examples/monitor_engines.json similarity index 100% rename from server/doc/api-formats/monitor/monitor_engines.json rename to server/doc/api-formats/monitor/examples/monitor_engines.json diff --git a/server/doc/api-formats/monitor/examples/monitor_granted-routes.json b/server/doc/api-formats/monitor/examples/monitor_granted-routes.json new file mode 100644 index 00000000..9916747a --- /dev/null +++ b/server/doc/api-formats/monitor/examples/monitor_granted-routes.json @@ -0,0 +1,12 @@ +{ + "granted-routes": [ + { + "id": "0", + "train": "cargo_db" + }, + { + "id": "99", + "train": "cargo_green" + } + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/monitor_peripherals.json b/server/doc/api-formats/monitor/examples/monitor_peripherals.json similarity index 100% rename from server/doc/api-formats/monitor/monitor_peripherals.json rename to server/doc/api-formats/monitor/examples/monitor_peripherals.json diff --git a/server/doc/api-formats/monitor/monitor_point-aspects.json b/server/doc/api-formats/monitor/examples/monitor_point-aspects.json similarity index 100% rename from server/doc/api-formats/monitor/monitor_point-aspects.json rename to server/doc/api-formats/monitor/examples/monitor_point-aspects.json diff --git a/server/doc/api-formats/monitor/monitor_point-details.json b/server/doc/api-formats/monitor/examples/monitor_point-details.json similarity index 64% rename from server/doc/api-formats/monitor/monitor_point-details.json rename to server/doc/api-formats/monitor/examples/monitor_point-details.json index ad24c8ad..3c369087 100644 --- a/server/doc/api-formats/monitor/monitor_point-details.json +++ b/server/doc/api-formats/monitor/examples/monitor_point-details.json @@ -4,5 +4,5 @@ "state": "unknown", "segment": "seg5", "occupied": false, - "target_state_reached": true /*this field may not be present*/ + "target_state_reached": true } \ No newline at end of file diff --git a/server/doc/api-formats/monitor/monitor_points.json b/server/doc/api-formats/monitor/examples/monitor_points.json similarity index 100% rename from server/doc/api-formats/monitor/monitor_points.json rename to server/doc/api-formats/monitor/examples/monitor_points.json diff --git a/server/doc/api-formats/monitor/monitor_reversers.json b/server/doc/api-formats/monitor/examples/monitor_reversers.json similarity index 75% rename from server/doc/api-formats/monitor/monitor_reversers.json rename to server/doc/api-formats/monitor/examples/monitor_reversers.json index dac010da..570ae83f 100644 --- a/server/doc/api-formats/monitor/monitor_reversers.json +++ b/server/doc/api-formats/monitor/examples/monitor_reversers.json @@ -5,12 +5,12 @@ "state": "on" }, { - "id": "r2", - "state": "unknown" + "id": "reverser1", + "state": "on" }, { "id": "r3", - "state": "off" + "state": "unknown" } ] } \ No newline at end of file diff --git a/server/doc/api-formats/monitor/monitor_route.json b/server/doc/api-formats/monitor/examples/monitor_route.json similarity index 76% rename from server/doc/api-formats/monitor/monitor_route.json rename to server/doc/api-formats/monitor/examples/monitor_route.json index 59682f49..97505253 100644 --- a/server/doc/api-formats/monitor/monitor_route.json +++ b/server/doc/api-formats/monitor/examples/monitor_route.json @@ -3,13 +3,13 @@ "source_signal": "signal36", "destination_signal": "signal49", "orientation": "clockwise", - "length": "268.100006", + "length": 268.100006, "path": ["seg35", "seg34", "seg33", "seg84", "seg89", "seg92", "seg91b", "seg91a", "seg90"], "sections": ["block21"], "signals": ["signal36", "signal49"], "points": ["point13", "point12", "point11", "point27", "point29"], - "conflicting_route_ids": [0,1,2], - "granted_conflicting_route_ids": [1,2], + "conflicting_route_ids": ["1","2","3","4"], + "granted_conflicting_route_ids": ["1","2"], "clear": false, "granted_to_train": "" } \ No newline at end of file diff --git a/server/doc/api-formats/monitor/monitor_segments.json b/server/doc/api-formats/monitor/examples/monitor_segments.json similarity index 100% rename from server/doc/api-formats/monitor/monitor_segments.json rename to server/doc/api-formats/monitor/examples/monitor_segments.json diff --git a/server/doc/api-formats/monitor/monitor_signal-aspects.json b/server/doc/api-formats/monitor/examples/monitor_signal-aspects.json similarity index 100% rename from server/doc/api-formats/monitor/monitor_signal-aspects.json rename to server/doc/api-formats/monitor/examples/monitor_signal-aspects.json diff --git a/server/doc/api-formats/monitor/json-schema-monitor_engines.json b/server/doc/api-formats/monitor/json-schema-monitor_engines.json new file mode 100644 index 00000000..7b5fc5b2 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_engines.json @@ -0,0 +1,19 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_engines.schema.json", + "title": "engines", + "description": "List of train engine (i.e., behaviour models, not physical trains/locomotives) identifiers", + "type": "object", + "properties": { + "engines": { + "type": "array", + "uniqueItems": true, + "items": { + "type": "string" + } + } + }, + "required": [ + "engines" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_granted-routes.json b/server/doc/api-formats/monitor/json-schema-monitor_granted-routes.json new file mode 100644 index 00000000..510c0329 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_granted-routes.json @@ -0,0 +1,33 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_granted-routes.schema.json", + "title": "granted-routes", + "description": "List of granted routes, each entry has the route identifier and name of train which the route is granted to", + "type": "object", + "properties": { + "granted-routes": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id", + "train" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "train": { + "type": "string", + "minLength": 1 + } + } + } + } + }, + "required": [ + "granted-routes" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_peripherals.json b/server/doc/api-formats/monitor/json-schema-monitor_peripherals.json new file mode 100644 index 00000000..8d240208 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_peripherals.json @@ -0,0 +1,39 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_peripherals.schema.json", + "title": "peripherals", + "description": "List of peripherals, with their identifier and info on their state id and state value", + "type": "object", + "properties": { + "peripherals": { + "type": "array", + "uniqueItems": true, + "$comment": "peripherals should be unique thanks to their identifier, if that changes, prop above has to be adjusted", + "minItems": 0, + "items": { + "required": [ + "id", + "state-id", + "state-value" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state-id": { + "type": "string", + "minLength": 0, + "$comment": "not sure if we may have an empty state-id for some peripherals" + }, + "state-value": { + "type": "integer" + } + } + } + } + }, + "required": [ + "peripherals" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json b/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json new file mode 100644 index 00000000..5c266543 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json @@ -0,0 +1,22 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_point-aspects.schema.json", + "title": "point-aspects", + "description": "list of aspects that a specific point (specified by the client request) supports", + "type": "object", + "properties": { + "aspects": { + "type": "array", + "minItems": 0, + "$comment": "currently allows answers with no aspects in the list, can occur if specified point is unknown", + "items": { + "type": "string", + "minLength": 1, + "uniqueItems": true + } + } + }, + "required": [ + "aspects" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_point-details.json b/server/doc/api-formats/monitor/json-schema-monitor_point-details.json new file mode 100644 index 00000000..8a08f8de --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_point-details.json @@ -0,0 +1,44 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_point-details.schema.json", + "title": "point-details", + "description": "Detailed information on a point", + "type": "object", + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "aspects": { + "type": "array", + "minItems": 0, + "$comment": "currently allows answers with no aspects in the list, can occur if low-level querying of aspects fails", + "items": { + "type": "string" + } + }, + "state": { + "type": "string", + "minLength": 0, + "$comment": "not sure if we may have an empty state in some non-erronous circumstance" + }, + "segment": { + "type": "string", + "minLength": 1 + }, + "occupied": { + "type": "boolean" + }, + "target_state_reached": { + "type": "boolean", + "$comment": "This is optional, as DCC-accessories (so possibly points) don't provide this info. True if execution state is reached or reached_verified, otherwise false." + } + }, + "required": [ + "id", + "aspects", + "state", + "segment", + "occupied" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_points.json b/server/doc/api-formats/monitor/json-schema-monitor_points.json new file mode 100644 index 00000000..4733b731 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_points.json @@ -0,0 +1,37 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_points.schema.json", + "title": "points", + "description": "list of points, consisting of the point identifier, its state, and the target_state_reached status if available.", + "type": "object", + "properties": { + "points": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id", + "state" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state": { + "type": "string", + "minLength": 0 + }, + "target_state_reached": { + "type": "boolean", + "$comment": "This is optional, as DCC-accessories (so possibly points) don't provide this info. True if execution state is reached or reached_verified, otherwise false." + } + } + } + } + }, + "required": [ + "points" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_reversers.json b/server/doc/api-formats/monitor/json-schema-monitor_reversers.json new file mode 100644 index 00000000..836d4a28 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_reversers.json @@ -0,0 +1,33 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_reversers.schema.json", + "title": "reversers", + "description": "list of known reversers on the platform with their state", + "type": "object", + "properties": { + "reversers": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id", + "state" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state": { + "type": "string", + "pattern": "^(on|off|unknown)$" + } + } + } + } + }, + "required": [ + "reversers" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_route.json b/server/doc/api-formats/monitor/json-schema-monitor_route.json new file mode 100644 index 00000000..ca8794a5 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_route.json @@ -0,0 +1,105 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_route.schema.json", + "title": "route", + "description": "describes a route. If points and/or conflicting_route_ids fields are missing, likely server-internal err", + "type": "object", + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "source_signal": { + "type": "string", + "minLength": 1 + }, + "destination_signal": { + "type": "string", + "minLength": 1 + }, + "orientation": { + "type": "string", + "pattern": "^(anticlockwise|clockwise)$" + }, + "length": { + "type": "number", + "$comment": "at least at uni bamberg (swtbahn), these lengths are always in centimeters" + }, + "path": { + "type": "array", + "minItems": 1, + "uniqueItems": false, + "items": { + "type": "string", + "minLength": 1 + } + }, + "sections": { + "type": "array", + "minItems": 0, + "items": { + "type": "string", + "minLength": 1 + } + }, + "signals": { + "type": "array", + "minItems": 2, + "$comment": "minItems is 2 because at least source and destination signals shall be contained in this array", + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + }, + "points": { + "type": "array", + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + }, + "conflicting_route_ids": { + "type": "array", + "minItems": 0, + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + }, + "granted_conflicting_route_ids": { + "type": "array", + "minItems": 0, + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + }, + "clear": { + "type": "boolean" + }, + "granted_to_train": { + "type": "string", + "minLength": 0, + "$comment": "Contains name of the train if the route is currently granted, otherwise empty." + } + }, + "required": [ + "id", + "source_signal", + "destination_signal", + "orientation", + "length", + "path", + "sections", + "signals", + "points", + "conflicting_route_ids", + "granted_conflicting_route_ids", + "clear", + "granted_to_train" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_segments.json b/server/doc/api-formats/monitor/json-schema-monitor_segments.json new file mode 100644 index 00000000..3acda6b3 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_segments.json @@ -0,0 +1,37 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_segments.schema.json", + "title": "segments", + "description": "list of segments connected/known, each with info on occupancy.", + "type": "object", + "properties": { + "segments": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id", + "occupied-by" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "occupied-by": { + "$comment": "if a segment is not occupied, its occupied-by entry is an empty list. No separate bool for that to save bandwidth, but this might be reconsidered in the future.", + "type": "array", + "minItems": 0, + "items": { + "type": "string" + } + } + } + } + } + }, + "required": [ + "segments" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json b/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json new file mode 100644 index 00000000..4b0bc512 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json @@ -0,0 +1,22 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_signal-aspects.schema.json", + "title": "signal-aspects", + "description": "list of aspects that a specific signal (specified by the client request) supports", + "type": "object", + "properties": { + "aspects": { + "type": "array", + "minItems": 0, + "$comment": "currently allows answers with no aspects in the list, can occur if specified signal is unknown", + "items": { + "type": "string", + "minLength": 1, + "uniqueItems": true + } + } + }, + "required": [ + "aspects" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/monitor_granted-routes.json b/server/doc/api-formats/monitor/monitor_granted-routes.json deleted file mode 100644 index 6f62782a..00000000 --- a/server/doc/api-formats/monitor/monitor_granted-routes.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "granted-routes": [ - { - "id": 0, - "train": "cargo_db" - }, - { - "id": 99, - "train": "cargo_green" - } -] -} \ No newline at end of file diff --git a/server/src/assets/game/script-game.js b/server/src/assets/game/script-game.js index 0dfee03e..e43ea7d3 100644 --- a/server/src/assets/game/script-game.js +++ b/server/src/assets/game/script-game.js @@ -560,11 +560,18 @@ class Driver { // Take into account that a main segment could be split into a/b segments for (let index in segments) { segments[index] = segments[index].replace(/(a|b)$/, ''); + ///TODO: Investigate the point of this check. + // reads as if we return if the train occupies a segment + // that is not part of the route. if (segments[index] != this.routeDetails['segment']) { return; } } - + ///NOTE: Only checks the first segment that the train occupies -> + // older segments the train has physically already left will still be + // contained and perhaps lead to the "is destination reached" staying + // false until they are officially left (delay of ~1 - 1.5s). + // This could be a problem for short main segments! if(segments[0] == this.routeDetails['segment']) { this.clearDestinationReachedInterval(); this.isDestinationReached = true; diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index c03c6c72..e26f1bf3 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -762,49 +762,41 @@ char *train_id_from_grab_id(int grab_id) { return train_id; } -GString *get_grab_fdbk_json(const char* message, int l_session_id, int grab_id) { - const gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; - GString *g_feedback = g_string_sized_new(96 + add_len); - g_string_assign(g_feedback, ""); - append_start_of_obj(g_feedback, false); - append_field_str_value(g_feedback, "msg", message != NULL ? message : "", true); - append_field_int_value(g_feedback, "session-id", l_session_id, true); - append_field_int_value(g_feedback, "grab-id", grab_id, false); - append_end_of_obj(g_feedback, false); - return g_feedback; +GString *get_simple_msg_json(const char *msg) { + GString *g_smplemsg = g_string_sized_new(128); + g_string_assign(g_smplemsg, ""); + append_start_of_obj(g_smplemsg, false); + append_field_str_value(g_smplemsg, "msg", msg, false); + append_end_of_obj(g_smplemsg, false); + return g_smplemsg; } -GString *get_reqroute_fdbk_json(const char* message, const char* granted_route_id) { - const gsize add_len = message != NULL ? MAX(256, strlen(message)) : 0; - GString *g_feedback = g_string_sized_new(64 + add_len); +GString *get_grab_fdbk_json(int l_session_id, int grab_id) { + GString *g_feedback = g_string_sized_new(96); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); - append_field_str_value(g_feedback, "msg", message != NULL ? message : "", true); - append_field_str_value(g_feedback, "granted-route-id", granted_route_id, false); + append_field_int_value(g_feedback, "session-id", l_session_id, true); + append_field_int_value(g_feedback, "grab-id", grab_id, false); append_end_of_obj(g_feedback, false); return g_feedback; } -void fill_grab_feedback(int grab_id, GString *ret_str, int *http_code) { +void fill_grab_err_feedback(int grab_id, GString *ret_str, int *http_code) { ret_str = NULL; if (grab_id == -4) { - ret_str = get_grab_fdbk_json("invalid parameters", 0, -1); + ret_str = get_simple_msg_json("invalid parameters"); *http_code = HTTP_BAD_REQUEST; } else if (grab_id == -3) { - ret_str = get_grab_fdbk_json("train has already been grabbed", 0, -1); + ret_str = get_simple_msg_json("train has already been grabbed"); *http_code = CUSTOM_HTTP_CODE_CONFLICT; } else if (grab_id == -2) { - ret_str = get_grab_fdbk_json("all grab-IDs are in use " - "(max no. of grabbed trains reached)", 0, -1); + ret_str = get_simple_msg_json("all grab-IDs are in use (max no. of grabbed trains reached)"); *http_code = CUSTOM_HTTP_CODE_CONFLICT; } else if (grab_id == -1) { - ret_str = get_grab_fdbk_json("internal err: failed to start train engine container", 0, -1); + ret_str = get_simple_msg_json("internal err: failed to start train engine container"); *http_code = HTTP_INTERNAL_ERROR; - } else if (grab_id >= 0) { - ret_str = get_grab_fdbk_json("", session_id, grab_id); - *http_code = HTTP_OK; } else { - ret_str = get_grab_fdbk_json("internal err: unexpected return from grab_train", 0, -1); + ret_str = get_simple_msg_json("internal err: unexpected error case in grab_train"); *http_code = HTTP_INTERNAL_ERROR; } } @@ -817,8 +809,7 @@ o_con_status handler_grab_train(void *_, onion_request *req, onion_response *res if (data_train == NULL || data_engine == NULL) { syslog_server(LOG_ERR, "Request: Grab train - invalid parameters"); - GString *feedback = get_grab_fdbk_json("invalid parameters", 0, -1); - send_some_gstring_and_free(res, HTTP_BAD_REQUEST, feedback); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); return OCS_PROCESSED; } @@ -830,8 +821,7 @@ o_con_status handler_grab_train(void *_, onion_request *req, onion_response *res bool trainstate_known = train_state_query.known; bidib_free_train_state_query(train_state_query); if (!trainstate_known) { - GString *ret = get_grab_fdbk_json("unknown train or invalid train state", 0, -1); - send_some_gstring_and_free(res, HTTP_NOT_FOUND, ret); + send_common_feedback(res, HTTP_NOT_FOUND, "unknown train or invalid train state"); syslog_server(LOG_ERR, "Request: Grab train - train: %s engine: %s - " "unknown train or train state - abort", @@ -844,22 +834,25 @@ o_con_status handler_grab_train(void *_, onion_request *req, onion_response *res // -2: all grab IDs are in use // -1: train engine could not be started int grab_id = grab_train(data_train, data_engine); - GString *ret_str = NULL; - int http_code = 0; - fill_grab_feedback(grab_id, ret_str, &http_code); - - if (ret_str != NULL) { - send_some_gstring_and_free(res, http_code, ret_str); - syslog_server(LOG_NOTICE, - "Request: Grab train - train: %s engine: %s - finish", - data_train, data_engine); + if (grab_id >= 0) { + send_some_gstring_and_free(res, HTTP_OK, get_grab_fdbk_json(session_id, grab_id)); } else { - syslog_server(LOG_ERR, - "Request: Grab train - train: %s engine: %s - " - "failed to build reply message - abort", - data_train, data_engine); - onion_response_set_code(res, HTTP_INTERNAL_ERROR); + GString *ret_str = NULL; + int http_code = 0; + fill_grab_err_feedback(grab_id, ret_str, &http_code); + if (ret_str != NULL) { + send_some_gstring_and_free(res, http_code, ret_str); + } else { + syslog_server(LOG_ERR, + "Request: Grab train - train: %s engine: %s - " + "failed to build reply message", + data_train, data_engine); + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + } } + syslog_server(LOG_NOTICE, + "Request: Grab train - train: %s engine: %s - finish", + data_train, data_engine); return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Grab train"); @@ -929,42 +922,44 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * } } -void fill_request_route_feedback(GString *route_id, GString *ret_str, int *http_code) { +GString *get_reqroute_fdbk_json(const char* granted_route_id) { + GString *g_feedback = g_string_sized_new(48); + g_string_assign(g_feedback, ""); + append_start_of_obj(g_feedback, false); + append_field_str_value(g_feedback, "granted-route-id", granted_route_id, false); + append_end_of_obj(g_feedback, false); + return g_feedback; +} + +void fill_request_route_err_feedback(GString *route_id, GString *ret_str, int *http_code) { ret_str = NULL; *http_code = HTTP_BAD_REQUEST; - if (route_id != NULL && route_id->str != NULL && params_check_is_number(route_id->str)) { - ret_str = get_reqroute_fdbk_json("", route_id->str); - *http_code = HTTP_OK; + if (route_id == NULL || route_id->str == NULL) { + ret_str = get_simple_msg_json("Route could not be granted"); + } else if (strcmp(route_id->str, "no_interlocker") == 0) { + ret_str = get_simple_msg_json("No interlocker selected for use"); + } else if (strcmp(route_id->str, "no_routes") == 0) { + ret_str = get_simple_msg_json("No routes possible"); + } else if (strcmp(route_id->str, "not_grantable") == 0) { + ret_str = get_simple_msg_json("Route conflicts with granted route(s)"); + *http_code = CUSTOM_HTTP_CODE_CONFLICT; + } else if (strcmp(route_id->str, "not_clear") == 0) { + ret_str = get_simple_msg_json("Route found has occupied tracks or source " + "signal is not stop"); + *http_code = CUSTOM_HTTP_CODE_CONFLICT; } else { - *http_code = HTTP_BAD_REQUEST; - if (route_id == NULL || route_id->str == NULL) { - ret_str = get_reqroute_fdbk_json("Route could not be granted", ""); - } else if (strcmp(route_id->str, "no_interlocker") == 0) { - ret_str = get_reqroute_fdbk_json("No interlocker selected for use", ""); - } else if (strcmp(route_id->str, "no_routes") == 0) { - ret_str = get_reqroute_fdbk_json("No routes possible", ""); - } else if (strcmp(route_id->str, "not_grantable") == 0) { - ret_str = get_reqroute_fdbk_json("Route conflicts with granted route(s)", ""); - *http_code = CUSTOM_HTTP_CODE_CONFLICT; - } else if (strcmp(route_id->str, "not_clear") == 0) { - ret_str = get_reqroute_fdbk_json("Route found has occupied tracks or source " - "signal is not stop", ""); - *http_code = CUSTOM_HTTP_CODE_CONFLICT; - } else { - GString *aux = g_string_new("Route could not be granted"); - if (route_id != NULL) { - g_string_append_printf(aux, " (%s)", route_id->str); - } - ret_str = get_reqroute_fdbk_json(aux->str, ""); - g_string_free(aux, true); + GString *aux = g_string_new("Route could not be granted"); + if (route_id != NULL) { + g_string_append_printf(aux, " (%s)", route_id->str); } + ret_str = get_simple_msg_json(aux->str); + g_string_free(aux, true); } } o_con_status handler_request_route(void *_, onion_request *req, onion_response *res) { build_response_header(res); - ///TODO: Changed to GET (from POST), adjust clients. - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_session_id = onion_request_get_post(req, "session-id"); const char *data_grab_id = onion_request_get_post(req, "grab-id"); const char *data_source_name = onion_request_get_post(req, "source"); @@ -973,11 +968,11 @@ o_con_status handler_request_route(void *_, onion_request *req, onion_response * const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); if (data_source_name == NULL || data_destination_name == NULL) { - send_some_gstring_and_free(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid parameters", "")); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); syslog_server(LOG_ERR, "Request: Request train route - invalid parameters"); return OCS_PROCESSED; } else if (client_session_id != session_id) { - send_some_gstring_and_free(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid session-id", "")); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Request train route - from: %s to: %s - invalid session id", data_source_name, data_destination_name); @@ -987,7 +982,7 @@ o_con_status handler_request_route(void *_, onion_request *req, onion_response * // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { - send_some_gstring_and_free(res, HTTP_BAD_REQUEST, get_reqroute_fdbk_json("invalid grab-id", "")); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Request train route - from: %s to: %s - invalid grab id", data_source_name, data_destination_name); @@ -1000,10 +995,23 @@ o_con_status handler_request_route(void *_, onion_request *req, onion_response * // Use interlocker to find and grant a route GString *route_id = grant_route(train_id, data_source_name, data_destination_name); - int http_code = 0; - GString *ret_str = NULL; - fill_request_route_feedback(route_id, ret_str, &http_code); - send_some_gstring_and_free(res, http_code, ret_str); + + if (route_id != NULL && route_id->str != NULL && params_check_is_number(route_id->str)) { + send_some_gstring_and_free(res, HTTP_OK, get_reqroute_fdbk_json(route_id->str)); + } else { + GString *ret_str = NULL; + int http_code = 0; + fill_request_route_err_feedback(route_id, ret_str, &http_code); + if (ret_str != NULL) { + send_some_gstring_and_free(res, http_code, ret_str); + } else { + syslog_server(LOG_ERR, + "Request: Request train route - train: %s from: %s to: %s - " + "failed to build reply message", + train_id, data_source_name, data_destination_name); + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + } + } syslog_server(LOG_NOTICE, "Request: Request train route - train: %s from: %s to: %s - finish", train_id, data_source_name, data_destination_name); @@ -1019,8 +1027,7 @@ o_con_status handler_request_route(void *_, onion_request *req, onion_response * // just getting a route id of/for something (similar to a monitor endpoint). o_con_status handler_request_route_id(void *_, onion_request *req, onion_response *res) { build_response_header(res); - ///TODO: Changed to GET (from POST), adjust clients. - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_session_id = onion_request_get_post(req, "session-id"); const char *data_grab_id = onion_request_get_post(req, "grab-id"); const char *data_route_id = onion_request_get_post(req, "route-id"); @@ -1079,9 +1086,18 @@ o_con_status handler_request_route_id(void *_, onion_request *req, onion_respons } o_con_status handler_driving_direction(void *_, onion_request *req, onion_response *res) { + ///TODO: Full documentation + // Notes regarding documentation: + // The driving direction is determined based on the route specified *and* the trains position + // and the trains orientation. The position of the train is relevant as a Kehrschleife/ + // reverser can influence the expected/correct result. + // I.e., given where the train currently is located, and which route is to be driven, + // what direction would the train have to drive (forwards/backwards) to reach the destination? + build_response_header(res); - ///TODO: Changed to GET (from POST), adjust clients. - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { + ///TODO: this uses onion_request_get_post to get params -> is that possible if method is GET? + ///TODO: Determine if we can change this to get wrt passing parameters + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 01a676b1..03261ac3 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -43,7 +43,8 @@ #include "json_response_builder.h" #include "communication_utils.h" -///NOTE: All handlers/endpoints now only accept GET, not POST. Need to adjust clients accordingly. +///NOTE: Handlers/endpoints that do NOT require parameters/args passed from clients +// now use HTTP method GET. All other stick with POST. Need to adjust clients accordingly. static GArray* garray_points_to_garray_str_ids(GArray *points) { if (points == NULL) { @@ -63,7 +64,7 @@ static GArray* garray_points_to_garray_str_ids(GArray *points) { return g_point_ids; } -static void free_g_strarray(GArray *g_strarray) { +static void free_g_strarray_and_contents(GArray *g_strarray) { if (g_strarray == NULL) { return; } @@ -177,7 +178,8 @@ static GString *get_train_state_json(const char *data_train) { o_con_status handler_get_train_state(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { + ///NOTE: uses POST instead of GET to allow parameter passing via POST dict/data + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); if (data_train == NULL) { syslog_server(LOG_ERR, "Request: Get train state - invalid parameters"); @@ -275,7 +277,8 @@ static GString *get_train_peripherals_json(const char *data_train) { o_con_status handler_get_train_peripherals(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { + ///NOTE: uses POST instead of GET to allow parameter passing via POST dict/data + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); if (data_train == NULL) { syslog_server(LOG_ERR, "Request: Get train peripherals - invalid parameters"); @@ -316,12 +319,13 @@ static GString *get_engines_or_interlockers_json(bool engines) { } if (names_list == NULL) { syslog_server(LOG_ERR, "Get engines or interlockers json - list from dyncontainers is NULL"); + g_string_free(g_json_ret, true); return NULL; } const char *fieldname = engines ? "engines" : "interlockers"; - append_field_strlist_value_garray_strs(g_json_ret, fieldname, names_list, false); + append_field_strlist_value_from_garray_strs(g_json_ret, fieldname, names_list, false); append_end_of_obj(g_json_ret, false); - free_g_strarray(names_list); + free_g_strarray_and_contents(names_list); return g_json_ret; } @@ -329,7 +333,7 @@ static o_con_status get_engines_interlockers_common(onion_request *req, onion_re bool engines) { build_response_header(res); const char *l_name = engines ? "Get engines" : "Get interlockers"; - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_ret = get_engines_or_interlockers_json(engines); if (g_ret != NULL) { send_some_gstring_and_free(res, HTTP_OK, g_ret); @@ -405,6 +409,48 @@ o_con_status handler_get_track_outputs(void *_, onion_request *req, onion_respon } } +// returns string with list of aspects of accessory in json format, with field identifier "aspects", +// e.g., \"aspects": ["normal", "reverse"]\". If inputs invalid or internal error, returns NULL. +static GString *get_accessory_aspects_json_listonly(const char *data_id, bool is_point) { + if (data_id == NULL) { + syslog_server(LOG_ERR, "Get accessory aspects json listonly - invalid accessory identifier"); + return NULL; + } + t_bidib_id_list_query query; + if (is_point) { + query = bidib_get_point_aspects(data_id); + } else { + query = bidib_get_signal_aspects(data_id); + } + if (query.ids == NULL) { + syslog_server(LOG_ERR, + "Get accessory aspects json listonly - accessory: %s - " + "bidib query id list is NULL", + data_id); + return NULL; + } + // size 16 general plus 16 per aspect (heuristic/estimate) + GString *g_aspects_list = g_string_sized_new(16 + 16 * query.length); + if (g_aspects_list == NULL) { + bidib_free_id_list_query(query); + syslog_server(LOG_ERR, + "Get accessory aspects json listonly - accessory: %s - " + "can't allocate g_aspects_list", + data_id); + return NULL; + } + + g_string_assign(g_aspects_list, ""); + append_field_start_of_list(g_aspects_list, "aspects"); + + for (size_t i = 0; i < query.length; i++) { + g_string_append_printf(g_aspects_list, "%s\"%s\"", i != 0 ? ", " : "", query.ids[i]); + } + append_end_of_list(g_aspects_list, false, false); + bidib_free_id_list_query(query); + return g_aspects_list; +} + static GString *get_accessories_json(bool point_accessories) { t_bidib_id_list_query query; if (point_accessories) { @@ -412,27 +458,47 @@ static GString *get_accessories_json(bool point_accessories) { } else { query = bidib_get_connected_signals(); } - GString *g_accs = g_string_sized_new(70 * (query.length + 1)); + if (query.ids == NULL) { + syslog_server(LOG_ERR, "Get accessories json - bidib returned NULL id list"); + } + + GString *g_accs = g_string_sized_new(24 + 72 * query.length); + if (g_accs == NULL) { + bidib_free_id_list_query(query); + syslog_server(LOG_ERR, "Get accessories json - can't allocate g_accs"); + return NULL; + } g_string_assign(g_accs, ""); append_start_of_obj(g_accs, false); append_field_start_of_list(g_accs, point_accessories ? "points" : "signals"); for (size_t i = 0; i < query.length; i++) { t_bidib_unified_accessory_state_query acc_state = - point_accessories ? bidib_get_point_state(query.ids[i]) : bidib_get_signal_state(query.ids[i]); + point_accessories ? bidib_get_point_state(query.ids[i]) + : bidib_get_signal_state(query.ids[i]); append_start_of_obj(g_accs, true); append_field_str_value(g_accs, "id", query.ids[i], true); - append_field_str_value(g_accs, "state", - acc_state.type == BIDIB_ACCESSORY_BOARD ? - acc_state.board_accessory_state.state_id : - acc_state.dcc_accessory_state.state_id, - (!point_accessories - || (point_accessories && acc_state.type == BIDIB_ACCESSORY_BOARD))); - if (point_accessories && acc_state.type == BIDIB_ACCESSORY_BOARD) { + // target_state_reached field is only present if its a point, its state is known, and + // its accessory state type is BIDIB_ACCESSORY_BOARD. + bool field_target_reached_present = + point_accessories && acc_state.known && acc_state.type == BIDIB_ACCESSORY_BOARD; + if (acc_state.known) { + append_field_str_value(g_accs, "state", + acc_state.type == BIDIB_ACCESSORY_BOARD ? + acc_state.board_accessory_state.state_id : + acc_state.dcc_accessory_state.state_id, + !point_accessories || field_target_reached_present); + } else { + append_field_str_value(g_accs, "state", "unknown", + !point_accessories || field_target_reached_present); + } + + if (field_target_reached_present) { append_field_bool_value(g_accs, "target_state_reached", acc_state.board_accessory_state.execution_state, false); } else if (!point_accessories) { + // if the accessory is not a point, include the field "type" (signal type, e.g. "block") append_field_str_value(g_accs, "type", config_get_scalar_string_value("signal", query.ids[i], "type"), false); @@ -451,8 +517,15 @@ static o_con_status get_points_signals_common(onion_request *req, onion_response const char *l_name = points ? "Get points" : "Get signals"; if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_ret = get_accessories_json(points); - send_some_gstring_and_free(res, HTTP_OK, g_ret); - syslog_server(LOG_INFO, "Request: %s - done", l_name); + if (g_ret != NULL) { + send_some_gstring_and_free(res, HTTP_OK, g_ret); + syslog_server(LOG_INFO, "Request: %s - done", l_name); + } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + syslog_server(LOG_ERR, + "Request: %s - unable to build reply message", + l_name); + } return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, l_name); @@ -469,55 +542,83 @@ o_con_status handler_get_signals(void *_, onion_request *req, onion_response *re static GString *get_point_details_json(const char *data_id) { if (data_id == NULL) { + syslog_server(LOG_WARNING, "Get point details json - input data_id is NULL"); return NULL; } - t_bidib_id_list_query aspects_query = bidib_get_point_aspects(data_id); - if (aspects_query.length <= 0 || aspects_query.ids == NULL) { - return NULL; - } - t_bidib_unified_accessory_state_query acc_state = bidib_get_point_state(data_id); - if (!acc_state.known) { - bidib_free_id_list_query(aspects_query); + GString *g_details = g_string_sized_new(156); + if (g_details == NULL) { + syslog_server(LOG_ERR, "Get point details json - point: %s - can't allocate g_details", data_id); return NULL; } - - GString *g_details = g_string_sized_new(156); g_string_assign(g_details, ""); append_start_of_obj(g_details, false); + // field: id append_field_str_value(g_details, "id", data_id, true); - append_field_start_of_list(g_details, "aspects"); - for (size_t i = 0; i < aspects_query.length; i++) { - g_string_append_printf(g_details, "%s\"%s\"", i != 0 ? ", " : "", aspects_query.ids[i]); + // field: aspects + GString *g_aspects_list = get_accessory_aspects_json_listonly(data_id, true); + if (g_aspects_list == NULL) { + syslog_server(LOG_ERR, "Get point details json - point: %s - failed to get aspects list", data_id); + g_string_free(g_details, true); + return NULL; + } + + g_string_append_printf(g_details, "\n%s,\n", g_aspects_list->str); + g_string_free(g_aspects_list, true); + + // field: state + t_bidib_unified_accessory_state_query acc_state = bidib_get_point_state(data_id); + // Accessories with type "BIDIB_ACCESSORY_BOARD" have the field "target_state_reached" + bool has_target_reached_field = acc_state.type == BIDIB_ACCESSORY_BOARD; + if (!acc_state.known) { + // If point state is unknown, no additional field, and "unknown" state + has_target_reached_field = false; + syslog_server(LOG_WARNING, + "Get point details json - point: %s - bidib get point state query is empty" + "/point (state) is not known", data_id); + append_field_str_value(g_details, "state", "unknown", true); + } else { + append_field_str_value(g_details, "state", + acc_state.type == BIDIB_ACCESSORY_BOARD ? + acc_state.board_accessory_state.state_id : + acc_state.dcc_accessory_state.state_id, + true); } - bidib_free_id_list_query(aspects_query); - append_end_of_list(g_details, true, false); - append_field_str_value(g_details, "state", - acc_state.type == BIDIB_ACCESSORY_BOARD ? - acc_state.board_accessory_state.state_id : - acc_state.dcc_accessory_state.state_id, - true); + // field: segment const char *point_segment = config_get_scalar_string_value("point", data_id, "segment"); append_field_str_value(g_details, "segment", point_segment, true); append_field_bool_value(g_details, "occupied", is_segment_occupied(point_segment), - acc_state.type == BIDIB_ACCESSORY_BOARD); + has_target_reached_field); - if (acc_state.type == BIDIB_ACCESSORY_BOARD) { - append_field_bool_value(g_details, "target_state_reached", - acc_state.board_accessory_state.execution_state, false); + // field: target_state_reached + if (has_target_reached_field) { + t_bidib_accessory_execution_state ex_state = acc_state.board_accessory_state.execution_state; + /// NOTE: this means also "BIDIB_EXEC_STATE_ERROR" is regarded as "false". -> but extra log. + bool target_state_reached_val = + ex_state == BIDIB_EXEC_STATE_REACHED || ex_state == BIDIB_EXEC_STATE_REACHED_VERIFIED; + if (ex_state == BIDIB_EXEC_STATE_ERROR) { + syslog_server(LOG_NOTICE, + "Get point details json - point: %s - target_state_reached reported as false, " + "execution state is BIDIB_EXEC_STATE_ERROR", data_id); + } + + append_field_bool_value(g_details, "target_state_reached", target_state_reached_val, false); + } - append_end_of_obj(g_details, false); + bidib_free_unified_accessory_state_query(acc_state); return g_details; } o_con_status handler_get_point_details(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { + ///TODO: register URL this handler should handle in server setup + ///NOTE: uses POST instead of GET to allow parameter passing via POST dict/data + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_point = onion_request_get_post(req, "point"); if (data_point == NULL) { onion_response_set_code(res, HTTP_BAD_REQUEST); @@ -530,9 +631,9 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon send_some_gstring_and_free(res, HTTP_OK, g_details); syslog_server(LOG_INFO, "Request: Get point details - point: %s - done", data_point); } else { - onion_response_set_code(res, HTTP_BAD_REQUEST); + onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, - "Request: Get point details - point: %s - invalid point", + "Request: Get point details - point: %s - unable to build reply message", data_point); } return OCS_PROCESSED; @@ -544,37 +645,27 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon static GString *get_accessory_aspects_json(const char *data_id, bool is_point) { if (data_id == NULL) { + syslog_server(LOG_ERR, "Get accessory aspects json - invalid accessory identifier"); return NULL; } - t_bidib_id_list_query query; - if (is_point) { - query = bidib_get_point_aspects(data_id); - } else { - query = bidib_get_signal_aspects(data_id); - } - - if (query.length <= 0 || query.ids == NULL) { + GString *g_aspects = get_accessory_aspects_json_listonly(data_id, is_point); + if (g_aspects == NULL) { + syslog_server(LOG_ERR, + "Get accessory aspects json - accessory: %s - getting aspects json list failed", + data_id); return NULL; } - - GString *g_aspects = g_string_sized_new(32 * (query.length + 1)); - g_string_assign(g_aspects, ""); - append_start_of_obj(g_aspects, false); - append_field_start_of_list(g_aspects, "aspects"); - - for (size_t i = 0; i < query.length; i++) { - g_string_append_printf(g_aspects, "%s\"%s\"", i != 0 ? ", " : "", query.ids[i]); - } - append_end_of_list(g_aspects, false, false); - append_end_of_obj(g_aspects, false); - bidib_free_id_list_query(query); + // g_aspects now has the list field, need to enclose it in json obj. + g_string_prepend(g_aspects, "{\n"); + g_string_append(g_aspects, "\n}"); return g_aspects; } static o_con_status get_acc_aspects_common(onion_request *req, onion_response *res, bool point) { build_response_header(res); const char *l_name = point ? "Get point aspects" : "Get signal aspects"; - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { + ///NOTE: uses POST instead of GET to allow parameter passing via POST dict/data + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *acc_type_name = point ? "point" : "signal"; const char *data_acc = onion_request_get_post(req, acc_type_name); if (data_acc == NULL) { @@ -588,10 +679,14 @@ static o_con_status get_acc_aspects_common(onion_request *req, onion_response *r send_some_gstring_and_free(res, HTTP_OK, g_aspects); syslog_server(LOG_INFO, "Request: %s - %s: %s - done", l_name, acc_type_name, data_acc); } else { - onion_response_set_code(res, HTTP_BAD_REQUEST); + ///NOTE: get_accessory_aspects_json also returns NULL if the input data_acc is NULL, + // and then HTTP_BAD_REQUEST would be the appropriate code. But this case is + // checked already in the 'if' before the mentioned function is called, + // and for all other cases where it returns NULL, INTERNAL_ERROR is appropriate. + onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, - "Request: %s - %s: %s - invalid %s", - l_name, acc_type_name, data_acc, acc_type_name); + "Request: %s - %s: %s - unable to build reply message", + l_name, acc_type_name, data_acc); } return OCS_PROCESSED; } else { @@ -613,11 +708,15 @@ o_con_status handler_get_signal_aspects(void *_, onion_request *req, onion_respo static GString *get_segments_json() { t_bidib_id_list_query seg_query = bidib_get_connected_segments(); - // no check for empty query, as then the code here constructs a json with an - // empty list, which is good -> better tells the client that no - // segments are known than a totally empty (i.e. empty string) answer. + // empty query result will lead to reply with empty list, this is intended. - GString *g_segments = g_string_sized_new(42 * (seg_query.length + 1)); + // Size estimate based on examples. non-occupied segment adds ca. 36 chars, occupied one ca. 50 + GString *g_segments = g_string_sized_new(20 + 44 * seg_query.length); + if (g_segments == NULL) { + bidib_free_id_list_query(seg_query); + syslog_server(LOG_ERR, "Get segments json - can't allocate g_segments"); + return NULL; + } g_string_assign(g_segments, ""); append_start_of_obj(g_segments, false); append_field_start_of_list(g_segments, "segments"); @@ -625,9 +724,10 @@ static GString *get_segments_json() { int added_segments = 0; for (size_t i = 0; i < seg_query.length; i++) { t_bidib_segment_state_query seg_state_query = bidib_get_segment_state(seg_query.ids[i]); - if (added_segments++ > 0) { + if (added_segments > 0) { g_string_append_c(g_segments, ','); } + added_segments++; append_start_of_obj(g_segments, true); append_field_str_value(g_segments, "id", seg_query.ids[i], true); @@ -640,14 +740,16 @@ static GString *get_segments_json() { id_query.known ? id_query.id : "unknown"); bidib_free_id_query(id_query); } + // In case we know the segment is occupied, but no addresses are known, the + // loop above won't add "unknown", so deal with this case separately + if (seg_state_query.known && seg_state_query.data.occupied && seg_state_query.data.dcc_addresses == 0) { + + } - ///TODO: Test difference - //append_end_of_list(g_segments, false, seg_state_query.data.dcc_address_cnt > 0); append_end_of_list(g_segments, false, false); append_end_of_obj(g_segments, false); bidib_free_segment_state_query(seg_state_query); - } append_end_of_list(g_segments, false, added_segments > 0); append_end_of_obj(g_segments, false); @@ -669,7 +771,12 @@ o_con_status handler_get_segments(void *_, onion_request *req, onion_response *r static GString *get_reversers_json() { t_bidib_id_list_query rev_query = bidib_get_connected_reversers(); - GString *g_reversers = g_string_sized_new(48 * (rev_query.length + 1)); + // Size heuristic/guess from examples. Will be auto-resized if too small. + GString *g_reversers = g_string_sized_new(24 + 36 * rev_query.length); + if (g_reversers == NULL) { + syslog_server(LOG_ERR, "Get reversers json - can't allocate g_reversers"); + return NULL; + } g_string_assign(g_reversers, ""); append_start_of_obj(g_reversers, false); @@ -680,6 +787,7 @@ static GString *get_reversers_json() { const char *reverser_id = rev_query.ids[i]; t_bidib_reverser_state_query rev_state_query = bidib_get_reverser_state(reverser_id); if (!rev_state_query.available) { + // "unavailable" reversers are not included in the response. bidib_free_reverser_state_query(rev_state_query); continue; } @@ -697,10 +805,10 @@ static GString *get_reversers_json() { break; } bidib_free_reverser_state_query(rev_state_query); - - if (added_reversers++ > 0) { + if (added_reversers > 0) { g_string_append_c(g_reversers, ','); } + added_reversers++; append_start_of_obj(g_reversers, true); append_field_str_value(g_reversers, "id", reverser_id, true); append_field_str_value(g_reversers, "state", state_value_str, false); @@ -722,8 +830,13 @@ o_con_status handler_get_reversers(void *_, onion_request *req, onion_response * return OCS_PROCESSED; } GString *g_reversers = get_reversers_json(); - send_some_gstring_and_free(res, HTTP_OK, g_reversers); - syslog_server(LOG_INFO, "Request: Get reversers - done"); + if (g_reversers != NULL) { + send_some_gstring_and_free(res, HTTP_OK, g_reversers); + syslog_server(LOG_INFO, "Request: Get reversers - done"); + } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + syslog_server(LOG_ERR, "Request: Get reversers - unable to build reply message"); + } return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Get reversers"); @@ -734,6 +847,12 @@ static GString *get_peripherals_json() { // Trying out ways of estimating size. The +1 is there to avoid size 0 if query length is 0. t_bidib_id_list_query per_query = bidib_get_connected_peripherals(); GString *g_peripherals = g_string_sized_new(64 * (per_query.length + 1)); + if (g_peripherals == NULL) { + bidib_free_id_list_query(per_query); + syslog_server(LOG_ERR, "Get peripherals json - can't allocate g_granted_routes"); + return NULL; + } + g_string_assign(g_peripherals, ""); append_start_of_obj(g_peripherals, false); append_field_start_of_list(g_peripherals, "peripherals"); @@ -748,6 +867,7 @@ static GString *get_peripherals_json() { per_query.ids[i]); continue; } + // intentional post-increment, so only add comma before obj from second loop iter onwards. if (added_peripherals++ > 0) { g_string_append_c(g_peripherals, ','); } @@ -771,8 +891,13 @@ o_con_status handler_get_peripherals(void *_, onion_request *req, onion_response build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_peripherals = get_peripherals_json(); - send_some_gstring_and_free(res, HTTP_OK, g_peripherals); - syslog_server(LOG_INFO, "Request: Get peripherals - done"); + if (g_peripherals != NULL) { + send_some_gstring_and_free(res, HTTP_OK, g_peripherals); + syslog_server(LOG_INFO, "Request: Get peripherals - done"); + } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + syslog_server(LOG_ERR, "Request: Get peripherals - unable to build reply message"); + } return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Get peripherals"); @@ -808,7 +933,12 @@ o_con_status handler_get_verification_url(void *_, onion_request *req, onion_res } static GString* get_granted_routes_json() { + // Size is a guess/heuristic - will be auto-resized if not sufficient. GString *g_granted_routes = g_string_sized_new(128); + if (g_granted_routes == NULL) { + syslog_server(LOG_ERR, "Get granted routes json - can't allocate g_granted_routes"); + return NULL; + } g_string_assign(g_granted_routes, ""); // Old "normal" way without sized new @@ -831,7 +961,7 @@ static GString* get_granted_routes_json() { g_string_append_c(g_granted_routes, ','); } append_start_of_obj(g_granted_routes, true); - append_field_bare_value_from_str(g_granted_routes, "id", route->id, true); + append_field_str_value(g_granted_routes, "id", route->id, true); append_field_str_value(g_granted_routes, "train", route->train, false); append_end_of_obj(g_granted_routes, false); } @@ -851,15 +981,29 @@ o_con_status handler_get_granted_routes(void *_, onion_request *req, onion_respo build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_granted_routes = get_granted_routes_json(); - send_some_gstring_and_free(res, HTTP_OK, g_granted_routes); - syslog_server(LOG_INFO, "Request: Get granted routes - done"); + if (g_granted_routes != NULL) { + send_some_gstring_and_free(res, HTTP_OK, g_granted_routes); + syslog_server(LOG_INFO, "Request: Get granted routes - done"); + } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + syslog_server(LOG_ERR, "Request: Get granted routes - unable to build reply message"); + } return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Get granted routes"); } } +///TODO: Think about a possible endpoint with less details; e.g., no length, +/// no conflicting-route-ids, no sections; to reduce bandwidth load where those fields +/// are not needed by the client anyway. +/// Also, this does not return info on the required position of points, is that not needed +/// by any client? static GString* get_route_json(const char *route_id) { + if (route_id == NULL) { + syslog_server(LOG_ERR, "Get route json - route_id parameter is NULL"); + return NULL; + } pthread_mutex_lock(&interlocker_mutex); const t_interlocking_route *route = get_route(route_id); if (route == NULL) { @@ -867,7 +1011,13 @@ static GString* get_route_json(const char *route_id) { syslog_server(LOG_ERR, "Get route json - invalid route id (route not found)"); return NULL; } + // Size estimated from examples with some extra margins. GString *g_route = g_string_sized_new(1024); + if (g_route == NULL) { + pthread_mutex_lock(&interlocker_mutex); + syslog_server(LOG_ERR, "Get route json - route: %s - can't allocate g_route", route_id); + return NULL; + } g_string_assign(g_route, ""); append_start_of_obj(g_route, false); @@ -876,21 +1026,38 @@ static GString* get_route_json(const char *route_id) { append_field_str_value(g_route, "destination_signal", route->destination, true); append_field_str_value(g_route, "orientation", route->orientation, true); append_field_float_value(g_route, "length", route->length, true); - append_field_strlist_value_garray_strs(g_route, "path", route->path, true); - append_field_strlist_value_garray_strs(g_route, "sections", route->sections, true); - append_field_strlist_value_garray_strs(g_route, "signals", route->signals, true); + append_field_strlist_value_from_garray_strs(g_route, "path", route->path, true); + append_field_strlist_value_from_garray_strs(g_route, "sections", route->sections, true); + append_field_strlist_value_from_garray_strs(g_route, "signals", route->signals, true); + // if g_point_ids is null, nothing will be appended -> document that in the json-schema and log. + // (same for g_conflicts down below). GArray *g_point_ids = garray_points_to_garray_str_ids(route->points); - append_field_strlist_value_garray_strs(g_route, "points", g_point_ids, true); - free_g_strarray(g_point_ids); + append_field_strlist_value_from_garray_strs(g_route, "points", g_point_ids, true); + if (g_point_ids == NULL) { + syslog_server(LOG_WARNING, + "Get route json - route: %s - g_point_ids null, no points will be included", + route_id); + } else { + free_g_strarray_and_contents(g_point_ids); + } - append_field_barelist_value_from_garray_strs(g_route, "conflicting_route_ids", + // string array in json, because everywhere else route_ids are given as strings. + // integer representation would be more memory/bandwidth efficient though, + // as the list of conflicts is often very long for larger platforms. + append_field_strlist_value_from_garray_strs(g_route, "conflicting_route_ids", route->conflicts, true); GArray *g_conflicts = get_granted_route_conflicts(route_id, false); append_field_barelist_value_from_garray_strs(g_route, "granted_conflicting_route_ids", g_conflicts, true); - free_g_strarray(g_conflicts); + if (g_conflicts == NULL) { + syslog_server(LOG_WARNING, + "Get route json - route: %s - g_conflicts null, no conflicts will be included", + route_id); + } else { + free_g_strarray_and_contents(g_conflicts); + } append_field_bool_value(g_route, "clear", get_route_is_clear(route_id), true); append_field_str_value(g_route, "granted_to_train", @@ -902,9 +1069,11 @@ static GString* get_route_json(const char *route_id) { o_con_status handler_get_route(void *_, onion_request *req, onion_response *res) { build_response_header(res); - if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { + ///NOTE: uses POST instead of GET to allow parameter passing via POST dict/data + if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); + if (route_id == NULL || strcmp(route_id, "") == 0 || get_route(route_id) == NULL) { onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, "Request: Get route - invalid parameters"); @@ -918,7 +1087,9 @@ o_con_status handler_get_route(void *_, onion_request *req, onion_response *res) syslog_server(LOG_INFO, "Request: Get route - route: %s - finished", route_id); } else { onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: Get route - route: %s - invalid route", route_id); + syslog_server(LOG_ERR, + "Request: Get route - route: %s - invalid route or internal error", + route_id); } return OCS_PROCESSED; } else { diff --git a/server/src/handler_monitor.h b/server/src/handler_monitor.h index 2cf11cc4..0a30f46c 100644 --- a/server/src/handler_monitor.h +++ b/server/src/handler_monitor.h @@ -56,6 +56,9 @@ o_con_status handler_get_points(void *_, onion_request *req, onion_response *res o_con_status handler_get_signals(void *_, onion_request *req, onion_response *res); +///TODO: Add an equivalent "signal-details" endpoint +o_con_status handler_get_point_details(void *_, onion_request *req, onion_response *res); + o_con_status handler_get_point_aspects(void *_, onion_request *req, onion_response *res); o_con_status handler_get_signal_aspects(void *_, onion_request *req, onion_response *res); diff --git a/server/src/json_response_builder.c b/server/src/json_response_builder.c index 4db28e78..715c03f6 100644 --- a/server/src/json_response_builder.c +++ b/server/src/json_response_builder.c @@ -2,11 +2,6 @@ #include "json_response_builder.h" -//const char *end_of_obj_noc = "}"; -//const char *end_of_obj_withc = "},"; -//const char *end_of_list_noc = "]"; -//const char *end_of_list_withc = "],"; - GString* append_field_str_value(GString *dest, const char *field, const char *value_str, bool add_trailing_comma) { @@ -72,7 +67,7 @@ GString* append_field_value_garray_strs_base(GString *dest, const char *field, return dest; } -GString* append_field_strlist_value_garray_strs(GString *dest, const char *field, +GString* append_field_strlist_value_from_garray_strs(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma) { return append_field_value_garray_strs_base(dest, field, g_strarray, true, add_trailing_comma); } diff --git a/server/src/json_response_builder.h b/server/src/json_response_builder.h index d5ed3aba..2a2b16d3 100644 --- a/server/src/json_response_builder.h +++ b/server/src/json_response_builder.h @@ -34,7 +34,7 @@ GString* append_field_str_value(GString *dest, const char *field, const char *value_str, bool add_trailing_comma); GString* append_field_bare_value_from_str(GString *dest, const char *field, const char *value_str, bool add_trailing_comma); GString* append_field_strlist_value(GString *dest, const char *field, const char **value_liststr, unsigned int list_len, bool add_trailing_comma); -GString* append_field_strlist_value_garray_strs(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma); +GString* append_field_strlist_value_from_garray_strs(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma); GString* append_field_barelist_value_from_garray_strs(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma); GString* append_field_emptylist_value(GString *dest, const char *field, bool add_trailing_comma); GString* append_field_bool_value(GString *dest, const char *field, bool value_bool, bool add_trailing_comma); From 2d6b134ca2fcd7cb2eafaa6f05b301023b70771e Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 14 Nov 2024 11:55:27 +0100 Subject: [PATCH 039/125] more work on api json schema definitions --- .../monitor/examples/monitor_signals.json | 12 +++++ .../{ => examples}/monitor_track-outputs.json | 0 .../monitor_train-peripherals.json | 2 +- .../monitor/json-schema-monitor_signals.json | 33 ++++++++++++++ .../json-schema-monitor_track-outputs.json | 33 ++++++++++++++ ...json-schema-monitor_train-peripherals.json | 33 ++++++++++++++ .../api-formats/monitor/monitor_signals.json | 14 ------ server/src/handler_monitor.c | 45 ++++++++++++++----- 8 files changed, 145 insertions(+), 27 deletions(-) create mode 100644 server/doc/api-formats/monitor/examples/monitor_signals.json rename server/doc/api-formats/monitor/{ => examples}/monitor_track-outputs.json (100%) rename server/doc/api-formats/monitor/{ => examples}/monitor_train-peripherals.json (90%) create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_signals.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_track-outputs.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_train-peripherals.json delete mode 100644 server/doc/api-formats/monitor/monitor_signals.json diff --git a/server/doc/api-formats/monitor/examples/monitor_signals.json b/server/doc/api-formats/monitor/examples/monitor_signals.json new file mode 100644 index 00000000..e6e78ac5 --- /dev/null +++ b/server/doc/api-formats/monitor/examples/monitor_signals.json @@ -0,0 +1,12 @@ +{ + "signals": [ + { + "id": "signal1", + "state": "aspect_go" + }, + { + "id": "signal2", + "state": "unknown" + } + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/monitor_track-outputs.json b/server/doc/api-formats/monitor/examples/monitor_track-outputs.json similarity index 100% rename from server/doc/api-formats/monitor/monitor_track-outputs.json rename to server/doc/api-formats/monitor/examples/monitor_track-outputs.json diff --git a/server/doc/api-formats/monitor/monitor_train-peripherals.json b/server/doc/api-formats/monitor/examples/monitor_train-peripherals.json similarity index 90% rename from server/doc/api-formats/monitor/monitor_train-peripherals.json rename to server/doc/api-formats/monitor/examples/monitor_train-peripherals.json index 3d971961..0806d2b2 100644 --- a/server/doc/api-formats/monitor/monitor_train-peripherals.json +++ b/server/doc/api-formats/monitor/examples/monitor_train-peripherals.json @@ -1,5 +1,5 @@ { - "peripherals": [ + "train-peripherals": [ { "id": "peripheralID1", "state": "on" diff --git a/server/doc/api-formats/monitor/json-schema-monitor_signals.json b/server/doc/api-formats/monitor/json-schema-monitor_signals.json new file mode 100644 index 00000000..8eb83a77 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_signals.json @@ -0,0 +1,33 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_signals.schema.json", + "title": "signals", + "description": "list of signals, consisting of the signal identifier and the signals state (aspect)", + "type": "object", + "properties": { + "signals": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id", + "state" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state": { + "type": "string", + "minLength": 0 + } + } + } + } + }, + "required": [ + "signals" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_track-outputs.json b/server/doc/api-formats/monitor/json-schema-monitor_track-outputs.json new file mode 100644 index 00000000..0225fd83 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_track-outputs.json @@ -0,0 +1,33 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_track-outputs.schema.json", + "title": "track-outputs", + "description": "list of track outputs with their identifier and their state.", + "type": "object", + "properties": { + "track-outputs": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id", + "state" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state": { + "type": "string", + "minLength": 0 + } + } + } + } + }, + "required": [ + "track-outputs" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_train-peripherals.json b/server/doc/api-formats/monitor/json-schema-monitor_train-peripherals.json new file mode 100644 index 00000000..9dbfc434 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_train-peripherals.json @@ -0,0 +1,33 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_train-peripherals.schema.json", + "title": "train-peripherals", + "description": "List of peripherals of a train (train specified by client in request) with their state", + "type": "object", + "properties": { + "train-peripherals": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id", + "state" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state": { + "type": "string", + "minLength": 0 + } + } + } + } + }, + "required": [ + "train-peripherals" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/monitor_signals.json b/server/doc/api-formats/monitor/monitor_signals.json deleted file mode 100644 index 42fadc55..00000000 --- a/server/doc/api-formats/monitor/monitor_signals.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "signals": [ - { - "id": "signal1", - "state": "aspect_go", - "type": "entry" - }, - { - "id": "signal2", - "state": "unknown", - "type": "unknown" - } - ] -} \ No newline at end of file diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 03261ac3..6fcc3a01 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -246,11 +246,16 @@ static GString *get_train_peripherals_json(const char *data_train) { } t_bidib_id_list_query query = bidib_get_train_peripherals(data_train); - GString *g_train_peripherals = g_string_sized_new(40 * (query.length + 1)); + GString *g_train_peripherals = g_string_sized_new(24 + 42 * query.length); + if (g_train_peripherals == NULL) { + bidib_free_id_list_query(query); + syslog_server(LOG_ERR, "Get train peripherals json - can't allocate g_train_peripherals"); + return NULL; + } g_string_assign(g_train_peripherals, ""); append_start_of_obj(g_train_peripherals, false); - append_field_start_of_list(g_train_peripherals, "peripherals"); + append_field_start_of_list(g_train_peripherals, "train-peripherals"); for (size_t i = 0; i < query.length; i++) { t_bidib_train_peripheral_state_query train_peripheral_state = @@ -293,9 +298,9 @@ o_con_status handler_get_train_peripherals(void *_, onion_request *req, onion_re "Request: Get train peripherals - train: %s - done", data_train); } else { - onion_response_set_code(res, HTTP_BAD_REQUEST); + onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, - "Request: Get train peripherals - train: %s - invalid train", + "Request: Get train peripherals - train: %s - unable to build reply message", data_train); } return OCS_PROCESSED; @@ -357,7 +362,12 @@ o_con_status handler_get_interlockers(void *_, onion_request *req, onion_respons static GString *get_track_outputs_json() { t_bidib_id_list_query query = bidib_get_track_outputs(); - GString *g_track_outputs = g_string_sized_new(48 * (query.length + 1)); + GString *g_track_outputs = g_string_sized_new(24 + 48 * query.length); + if (g_track_outputs == NULL) { + bidib_free_id_list_query(query); + syslog_server(LOG_ERR, "Get track outputs json - can't allocate g_track_outputs"); + return NULL; + } g_string_assign(g_track_outputs, ""); append_start_of_obj(g_track_outputs, false); @@ -401,8 +411,13 @@ o_con_status handler_get_track_outputs(void *_, onion_request *req, onion_respon build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_track_outputs = get_track_outputs_json(); - send_some_gstring_and_free(res, HTTP_OK, g_track_outputs); - syslog_server(LOG_INFO, "Request: Get track outputs - done"); + if (g_track_outputs != NULL) { + send_some_gstring_and_free(res, HTTP_OK, g_track_outputs); + syslog_server(LOG_INFO, "Request: Get track outputs - done"); + } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + syslog_server(LOG_ERR, "Request: Get track outputs - unable to build reply message"); + } return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Get track outputs"); @@ -488,21 +503,27 @@ static GString *get_accessories_json(bool point_accessories) { acc_state.type == BIDIB_ACCESSORY_BOARD ? acc_state.board_accessory_state.state_id : acc_state.dcc_accessory_state.state_id, - !point_accessories || field_target_reached_present); + field_target_reached_present); } else { append_field_str_value(g_accs, "state", "unknown", - !point_accessories || field_target_reached_present); + field_target_reached_present); } + ///TODO: Remove the commented out part for actual pull request. + // Decided not to have the signal type in this "get all signals" monitor endpoint. + // But will have it in a "get signal details" kind of monitor endpoint. if (field_target_reached_present) { + bool target_state_reached_val = + acc_state.board_accessory_state.execution_state == BIDIB_EXEC_STATE_REACHED + || acc_state.board_accessory_state.execution_state == BIDIB_EXEC_STATE_REACHED_VERIFIED; append_field_bool_value(g_accs, "target_state_reached", - acc_state.board_accessory_state.execution_state, false); - } else if (!point_accessories) { + target_state_reached_val, false); + } /*else if (!point_accessories) { // if the accessory is not a point, include the field "type" (signal type, e.g. "block") append_field_str_value(g_accs, "type", config_get_scalar_string_value("signal", query.ids[i], "type"), false); - } + }*/ append_end_of_obj(g_accs, i+1 < query.length); bidib_free_unified_accessory_state_query(acc_state); } From 04fc23c297c5291ef3ae90294f995f3852d561fa Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 15 Nov 2024 11:22:06 +0100 Subject: [PATCH 040/125] More json schema adjustments for monitor --- .../{ => examples}/monitor_train-state.json | 6 +- .../monitor_train-state_extra-example-1.json | 10 + .../{ => examples}/monitor_train-states.json | 36 ++-- .../{ => examples}/monitor_trains.json | 0 .../monitor_verification-option.json | 0 .../monitor_verification-url.json | 0 .../json-schema-monitor_train-state.json | 63 +++++++ .../json-schema-monitor_train-states.json | 71 +++++++ .../monitor/json-schema-monitor_trains.json | 36 ++++ ...on-schema-monitor_verification-option.json | 15 ++ .../json-schema-monitor_verification-url.json | 16 ++ server/src/handler_monitor.c | 173 +++++++++++------- server/src/json_response_builder.c | 9 + server/src/json_response_builder.h | 1 + 14 files changed, 351 insertions(+), 85 deletions(-) rename server/doc/api-formats/monitor/{ => examples}/monitor_train-state.json (73%) create mode 100644 server/doc/api-formats/monitor/examples/monitor_train-state_extra-example-1.json rename server/doc/api-formats/monitor/{ => examples}/monitor_train-states.json (62%) rename server/doc/api-formats/monitor/{ => examples}/monitor_trains.json (100%) rename server/doc/api-formats/monitor/{ => examples}/monitor_verification-option.json (100%) rename server/doc/api-formats/monitor/{ => examples}/monitor_verification-url.json (100%) create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_train-state.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_train-states.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_trains.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_verification-option.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_verification-url.json diff --git a/server/doc/api-formats/monitor/monitor_train-state.json b/server/doc/api-formats/monitor/examples/monitor_train-state.json similarity index 73% rename from server/doc/api-formats/monitor/monitor_train-state.json rename to server/doc/api-formats/monitor/examples/monitor_train-state.json index 12c90709..7566a206 100644 --- a/server/doc/api-formats/monitor/monitor_train-state.json +++ b/server/doc/api-formats/monitor/examples/monitor_train-state.json @@ -3,9 +3,9 @@ "grabbed": true, "orientation": "left", "direction": "forwards", - "speed_step": 10, - "detected_kmh_speed": 2, - "route_id": -1, + "speed_step": 50, + "detected_kmh_speed": 120, + "route_id": "25", "on_track": true, "occupied_segments": ["seg1", "seg2"], "occupied_blocks": ["block1"] diff --git a/server/doc/api-formats/monitor/examples/monitor_train-state_extra-example-1.json b/server/doc/api-formats/monitor/examples/monitor_train-state_extra-example-1.json new file mode 100644 index 00000000..da59d2d7 --- /dev/null +++ b/server/doc/api-formats/monitor/examples/monitor_train-state_extra-example-1.json @@ -0,0 +1,10 @@ +{ + "id": "cargo_db", + "grabbed": false, + "orientation": "right", + "direction": "backwards", + "speed_step": 0, + "detected_kmh_speed": 0, + "route_id": "", + "on_track": false +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/monitor_train-states.json b/server/doc/api-formats/monitor/examples/monitor_train-states.json similarity index 62% rename from server/doc/api-formats/monitor/monitor_train-states.json rename to server/doc/api-formats/monitor/examples/monitor_train-states.json index e42c02eb..3f73900e 100644 --- a/server/doc/api-formats/monitor/monitor_train-states.json +++ b/server/doc/api-formats/monitor/examples/monitor_train-states.json @@ -3,50 +3,46 @@ { "id": "cargo_db", "grabbed": true, + "orientation": "left", + "direction": "forwards", + "speed_step": 50, + "detected_kmh_speed": 120, + "route_id": "25", "on_track": true, "occupied_segments": ["seg1", "seg2"], - "occupied_blocks": ["block1"], - "orientation": "right", - "direction": "forwards", - "speed_step": 10, - "detected_speed_kmh": 2, - "route_id": 54 + "occupied_blocks": ["block1"] }, { "id": "cargo_green", "grabbed": true, - "on_track": false, - "occupied_segments": [], - "occupied_blocks": [], - "orientation": "", - "direction": "", + "orientation": "right", + "direction": "forwards", "speed_step": 0, "detected_speed_kmh": 0, - "route_id": -1 + "route_id": "", + "on_track": false }, { "id": "cargo_bayern", "grabbed": false, - "on_track": false, - "occupied_segments": [], - "occupied_blocks": [], "orientation": "", "direction": "", "speed_step": 0, "detected_speed_kmh": 0, - "route_id": -1 + "route_id": "", + "on_track": false }, { "id": "regional_odeg", "grabbed": false, - "on_track": true, - "occupied_segments": ["seg58"], - "occupied_blocks": ["platform4"], "orientation": "left", "direction": "forwards", "speed_step": 0, "detected_speed_kmh": 0, - "route_id": -1 + "route_id": "", + "on_track": true, + "occupied_segments": ["seg58"], + "occupied_blocks": ["platform4"] } ] } \ No newline at end of file diff --git a/server/doc/api-formats/monitor/monitor_trains.json b/server/doc/api-formats/monitor/examples/monitor_trains.json similarity index 100% rename from server/doc/api-formats/monitor/monitor_trains.json rename to server/doc/api-formats/monitor/examples/monitor_trains.json diff --git a/server/doc/api-formats/monitor/monitor_verification-option.json b/server/doc/api-formats/monitor/examples/monitor_verification-option.json similarity index 100% rename from server/doc/api-formats/monitor/monitor_verification-option.json rename to server/doc/api-formats/monitor/examples/monitor_verification-option.json diff --git a/server/doc/api-formats/monitor/monitor_verification-url.json b/server/doc/api-formats/monitor/examples/monitor_verification-url.json similarity index 100% rename from server/doc/api-formats/monitor/monitor_verification-url.json rename to server/doc/api-formats/monitor/examples/monitor_verification-url.json diff --git a/server/doc/api-formats/monitor/json-schema-monitor_train-state.json b/server/doc/api-formats/monitor/json-schema-monitor_train-state.json new file mode 100644 index 00000000..746a2c27 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_train-state.json @@ -0,0 +1,63 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_train-state.schema.json", + "title": "train-state", + "description": "state of a train", + "type": "object", + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "grabbed": { + "type": "boolean" + }, + "orientation": { + "type": "string", + "minLength": 0 + }, + "direction": { + "type": "string", + "minLength": 0 + }, + "speed_step": { + "type": "number" + }, + "detected_kmh_speed": { + "type": "number", + "$comment": "Some trains don't report their km/h speed; in that case the value is 0" + }, + "route_id": { + "type": "string", + "$comment": "empty string if no route is granted to this train. Otherwise route id.", + "minLength": 0 + }, + "on_track": { + "type": "boolean" + }, + "occupied_segments": { + "type": "array", + "$comment": "occupied_segments is only included if on_track is true.", + "items": { + "type": "string" + } + }, + "occupied_blocks": { + "type": "array", + "$comment": "occupied_blocks is only included if on_track is true.", + "items": { + "type": "string" + } + } + }, + "required": [ + "id", + "grabbed", + "orientation", + "direction", + "speed_step", + "detected_kmh_speed", + "route_id", + "on_track" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_train-states.json b/server/doc/api-formats/monitor/json-schema-monitor_train-states.json new file mode 100644 index 00000000..ad703a10 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_train-states.json @@ -0,0 +1,71 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_train-states.schema.json", + "title": "train-states", + "description": "list of train states.", + "type": "object", + "properties": { + "train-states": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id", + "grabbed", + "orientation", + "direction", + "speed_step", + "detected_kmh_speed", + "route_id", + "on_track" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "grabbed": { + "type": "boolean" + }, + "orientation": { + "type": "string", + "minLength": 0 + }, + "direction": { + "type": "string", + "minLength": 0 + }, + "speed_step": { + "type": "number" + }, + "detected_kmh_speed": { + "type": "number" + }, + "route_id": { + "type": "string", + "minLength": 0 + }, + "on_track": { + "type": "boolean" + }, + "occupied_segments": { + "type": "array", + "items": { + "type": "string" + } + }, + "occupied_blocks": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + }, + "required": [ + "train-states" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_trains.json b/server/doc/api-formats/monitor/json-schema-monitor_trains.json new file mode 100644 index 00000000..94967b33 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_trains.json @@ -0,0 +1,36 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_trains.schema.json", + "title": "trains", + "description": "list of trains.", + "type": "object", + "properties": { + "trains": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id", + "grabbed", + "on_track" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "grabbed": { + "type": "boolean" + }, + "on_track": { + "type": "boolean" + } + } + } + } + }, + "required": [ + "trains" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_verification-option.json b/server/doc/api-formats/monitor/json-schema-monitor_verification-option.json new file mode 100644 index 00000000..7a942b95 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_verification-option.json @@ -0,0 +1,15 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_verification-option.schema.json", + "title": "verification-option", + "description": "verification enabled value", + "type": "object", + "properties": { + "verification-enabled": { + "type": "boolean" + } + }, + "required": [ + "verification-enabled" + ] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_verification-url.json b/server/doc/api-formats/monitor/json-schema-monitor_verification-url.json new file mode 100644 index 00000000..92a64f25 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_verification-url.json @@ -0,0 +1,16 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_verification-url.schema.json", + "title": "verification-url", + "description": "verification url value", + "type": "object", + "properties": { + "verification-url": { + "type": "string", + "minLength": 0 + } + }, + "required": [ + "verification-url" + ] +} \ No newline at end of file diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 6fcc3a01..66243fff 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -80,6 +80,11 @@ static void free_g_strarray_and_contents(GArray *g_strarray) { static GString *get_trains_json() { t_bidib_id_list_query query = bidib_get_trains(); GString *g_trains = g_string_sized_new(60 * (query.length + 1)); + if (g_trains == NULL) { + bidib_free_id_list_query(query); + syslog_server(LOG_ERR, "Get trains json - can't allocate g_trains"); + return NULL; + } g_string_assign(g_trains, ""); append_start_of_obj(g_trains, false); @@ -107,53 +112,65 @@ o_con_status handler_get_trains(void *_, onion_request *req, onion_response *res build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_trains = get_trains_json(); - send_some_gstring_and_free(res, HTTP_OK, g_trains); - syslog_server(LOG_INFO, "Request: Get available trains - done"); + if (g_trains != NULL) { + send_some_gstring_and_free(res, HTTP_OK, g_trains); + syslog_server(LOG_INFO, "Request: Get available trains - done"); + } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + syslog_server(LOG_ERR, "Request: Get trains - unable to build reply message"); + } + return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, ""); } } -static GString *get_train_state_json(const char *data_train) { - if (data_train == NULL) { - return NULL; - } - - t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); - if (!train_state_query.known) { - bidib_free_train_state_query(train_state_query); +/** + * @brief Get the train state json given a train state query and the trains ID. + * + * @param train_id string with id of the train + * @param tr_state_query train state query (from libbidib) for the train with the id spec. in train_id. + * "tr_state_query.known" shall be true, otherwise the behaviour is undefined. + * @return GString* json train state (according to schema TODO) glib string. NULL if malloc for string fails. + */ +static GString *get_train_state_json_given_statequery(const char *train_id, + t_bidib_train_state_query tr_state_query) { + const char *f_logname = "Get train state json given statequery"; + GString *g_train_state = g_string_sized_new(256); + if (g_train_state == NULL) { + syslog_server(LOG_ERR, "%s - can't allocate g_train_state", f_logname); return NULL; } - - GString *g_train_state = g_string_sized_new(256); g_string_assign(g_train_state, ""); + append_start_of_obj(g_train_state, false); - append_field_str_value(g_train_state, "id", data_train, true); - append_field_bool_value(g_train_state, "grabbed", train_grabbed(data_train), true); - const char *orientation_str = (train_state_query.data.orientation == + append_field_str_value(g_train_state, "id", train_id, true); + append_field_bool_value(g_train_state, "grabbed", train_grabbed(train_id), true); + const char *orientation_str = (tr_state_query.data.orientation == BIDIB_TRAIN_ORIENTATION_LEFT) ? "left" : "right"; append_field_str_value(g_train_state, "orientation", orientation_str, true); - const char *direction_str = train_state_query.data.set_is_forwards ? "forwards" : "backwards"; + const char *direction_str = tr_state_query.data.set_is_forwards ? "forwards" : "backwards"; append_field_str_value(g_train_state, "direction", direction_str, true); - append_field_int_value(g_train_state, "speed_step", train_state_query.data.set_speed_step, true); - append_field_int_value(g_train_state, "detected_kmh_speed", train_state_query.data.detected_kmh_speed, true); - - bidib_free_train_state_query(train_state_query); + append_field_int_value(g_train_state, "speed_step", tr_state_query.data.set_speed_step, true); + append_field_int_value(g_train_state, "detected_kmh_speed", tr_state_query.data.detected_kmh_speed, true); pthread_mutex_lock(&interlocker_mutex); - int route_id = interlocking_table_get_route_id_of_train(data_train); + int route_id = interlocking_table_get_route_id_of_train(train_id); pthread_mutex_unlock(&interlocker_mutex); - append_field_int_value(g_train_state, "route_id", route_id, true); + if (route_id > -1) { + append_field_str_value_from_int(g_train_state, "route_id", route_id, true); + } else { + append_field_str_value(g_train_state, "route_id", "", true); + } - t_bidib_train_position_query train_position_query = bidib_get_train_position(data_train); + t_bidib_train_position_query train_position_query = bidib_get_train_position(train_id); bool is_on_track = train_position_query.length > 0; // is_on_track intentionally used for both value and add_trailing_comma parameters. append_field_bool_value(g_train_state, "on_track", is_on_track, is_on_track); if (is_on_track) { - // two passes likely needed, one for segments, one for blocks. append_field_strlist_value(g_train_state, "occupied_segments", (const char **) train_position_query.segments, train_position_query.length, true); @@ -162,11 +179,17 @@ static GString *get_train_state_json(const char *data_train) { int added_blocks = 0; for (size_t i = 0; i < train_position_query.length; i++) { const char *block_id = config_get_block_id_of_segment(train_position_query.segments[i]); + GString *search_str = g_string_new(block_id); + g_string_prepend_c(search_str, '"'); + g_string_append_c(search_str, '"'); // only add block if it does not already exist in the list (and thus in g_train_state) - if (block_id != NULL && strstr(g_train_state->str, block_id) == NULL) { + // Naively, if e.g., "block12" was added, then block1 will be found. + // -> fix is to include the '"'s in the search. + if (block_id != NULL && strstr(g_train_state->str, search_str->str) == NULL) { g_string_append_printf(g_train_state, "%s\"%s\"", added_blocks > 0 ? ", " : "", block_id); ++added_blocks; } + g_string_free(search_str, true); } append_end_of_list(g_train_state, false, false); } @@ -185,16 +208,27 @@ o_con_status handler_get_train_state(void *_, onion_request *req, onion_response syslog_server(LOG_ERR, "Request: Get train state - invalid parameters"); onion_response_set_code(res, HTTP_BAD_REQUEST); return OCS_PROCESSED; - } + } + + t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); + if (!train_state_query.known) { + bidib_free_train_state_query(train_state_query); + onion_response_set_code(res, HTTP_BAD_REQUEST); + syslog_server(LOG_WARNING, + "Request: Get train state - train: %s - unknown train/train state", + data_train); + return OCS_PROCESSED; + } - GString *ret_string = get_train_state_json(data_train); + GString *ret_string = get_train_state_json_given_statequery(data_train, train_state_query); + bidib_free_train_state_query(train_state_query); if (ret_string != NULL) { send_some_gstring_and_free(res, HTTP_OK, ret_string); syslog_server(LOG_INFO, "Request: Get train state - train: %s - done", data_train); } else { - onion_response_set_code(res, HTTP_BAD_REQUEST); + onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, - "Request: Get train state - train: %s - invalid train", + "Request: Get train state - train: %s - unable to build reply message", data_train); } return OCS_PROCESSED; @@ -206,20 +240,30 @@ o_con_status handler_get_train_state(void *_, onion_request *req, onion_response static GString *get_train_states_json() { t_bidib_id_list_query query = bidib_get_trains(); GString *g_train_states = g_string_sized_new(256 * (query.length + 1)); + if (g_train_states == NULL) { + bidib_free_id_list_query(query); + syslog_server(LOG_ERR, "Get train states json - can't allocate g_train_states"); + return NULL; + } g_string_assign(g_train_states, ""); append_start_of_obj(g_train_states, false); append_field_start_of_list(g_train_states, "train-states"); - + int added_trains = 0; for (size_t i = 0; i < query.length; i++) { - GString *g_train_state = get_train_state_json(query.ids[i]); - if (g_train_state != NULL) { - g_string_append_printf(g_train_states, "%s", g_train_state->str); - g_string_free(g_train_state, true); - if (i + 1 < query.length) { - g_string_append_printf(g_train_states, "%s", ","); + t_bidib_train_state_query tr_state_q = bidib_get_train_state(query.ids[i]); + if (tr_state_q.known) { + GString *g_train_state = get_train_state_json_given_statequery(query.ids[i], tr_state_q); + if (g_train_state != NULL) { + if (added_trains > 0) { + g_string_append_printf(g_train_states, "%s", ",\n"); + } + added_trains++; + g_string_append_printf(g_train_states, "%s", g_train_state->str); + g_string_free(g_train_state, true); } } + bidib_free_train_state_query(tr_state_q); } append_end_of_list(g_train_states, false, query.length > 0); append_end_of_obj(g_train_states, false); @@ -232,20 +276,25 @@ o_con_status handler_get_train_states(void *_, onion_request *req, onion_respons build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_train_states = get_train_states_json(); - send_some_gstring_and_free(res, HTTP_OK, g_train_states); - syslog_server(LOG_INFO, "Request: Get train states - done"); + if (g_train_states != NULL) { + send_some_gstring_and_free(res, HTTP_OK, g_train_states); + syslog_server(LOG_INFO, "Request: Get train states - done"); + } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + syslog_server(LOG_ERR, "Request: Get train states - unable to build reply message"); + } return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Get train states"); } } -static GString *get_train_peripherals_json(const char *data_train) { - if (data_train == NULL) { +static GString *get_train_peripherals_json(const char *train_id) { + if (train_id == NULL) { return NULL; } - t_bidib_id_list_query query = bidib_get_train_peripherals(data_train); + t_bidib_id_list_query query = bidib_get_train_peripherals(train_id); GString *g_train_peripherals = g_string_sized_new(24 + 42 * query.length); if (g_train_peripherals == NULL) { bidib_free_id_list_query(query); @@ -259,7 +308,7 @@ static GString *get_train_peripherals_json(const char *data_train) { for (size_t i = 0; i < query.length; i++) { t_bidib_train_peripheral_state_query train_peripheral_state = - bidib_get_train_peripheral_state(data_train, query.ids[i]); + bidib_get_train_peripheral_state(train_id, query.ids[i]); char *state_string; if (train_peripheral_state.available) { state_string = train_peripheral_state.state == 1 ? "on" : "off"; @@ -426,22 +475,22 @@ o_con_status handler_get_track_outputs(void *_, onion_request *req, onion_respon // returns string with list of aspects of accessory in json format, with field identifier "aspects", // e.g., \"aspects": ["normal", "reverse"]\". If inputs invalid or internal error, returns NULL. -static GString *get_accessory_aspects_json_listonly(const char *data_id, bool is_point) { - if (data_id == NULL) { +static GString *get_accessory_aspects_json_listonly(const char *acc_id, bool is_point) { + if (acc_id == NULL) { syslog_server(LOG_ERR, "Get accessory aspects json listonly - invalid accessory identifier"); return NULL; } t_bidib_id_list_query query; if (is_point) { - query = bidib_get_point_aspects(data_id); + query = bidib_get_point_aspects(acc_id); } else { - query = bidib_get_signal_aspects(data_id); + query = bidib_get_signal_aspects(acc_id); } if (query.ids == NULL) { syslog_server(LOG_ERR, "Get accessory aspects json listonly - accessory: %s - " "bidib query id list is NULL", - data_id); + acc_id); return NULL; } // size 16 general plus 16 per aspect (heuristic/estimate) @@ -451,7 +500,7 @@ static GString *get_accessory_aspects_json_listonly(const char *data_id, bool is syslog_server(LOG_ERR, "Get accessory aspects json listonly - accessory: %s - " "can't allocate g_aspects_list", - data_id); + acc_id); return NULL; } @@ -561,26 +610,26 @@ o_con_status handler_get_signals(void *_, onion_request *req, onion_response *re return get_points_signals_common(req, res, false); } -static GString *get_point_details_json(const char *data_id) { - if (data_id == NULL) { +static GString *get_point_details_json(const char *point_id) { + if (point_id == NULL) { syslog_server(LOG_WARNING, "Get point details json - input data_id is NULL"); return NULL; } GString *g_details = g_string_sized_new(156); if (g_details == NULL) { - syslog_server(LOG_ERR, "Get point details json - point: %s - can't allocate g_details", data_id); + syslog_server(LOG_ERR, "Get point details json - point: %s - can't allocate g_details", point_id); return NULL; } g_string_assign(g_details, ""); append_start_of_obj(g_details, false); // field: id - append_field_str_value(g_details, "id", data_id, true); + append_field_str_value(g_details, "id", point_id, true); // field: aspects - GString *g_aspects_list = get_accessory_aspects_json_listonly(data_id, true); + GString *g_aspects_list = get_accessory_aspects_json_listonly(point_id, true); if (g_aspects_list == NULL) { - syslog_server(LOG_ERR, "Get point details json - point: %s - failed to get aspects list", data_id); + syslog_server(LOG_ERR, "Get point details json - point: %s - failed to get aspects list", point_id); g_string_free(g_details, true); return NULL; } @@ -589,7 +638,7 @@ static GString *get_point_details_json(const char *data_id) { g_string_free(g_aspects_list, true); // field: state - t_bidib_unified_accessory_state_query acc_state = bidib_get_point_state(data_id); + t_bidib_unified_accessory_state_query acc_state = bidib_get_point_state(point_id); // Accessories with type "BIDIB_ACCESSORY_BOARD" have the field "target_state_reached" bool has_target_reached_field = acc_state.type == BIDIB_ACCESSORY_BOARD; if (!acc_state.known) { @@ -597,7 +646,7 @@ static GString *get_point_details_json(const char *data_id) { has_target_reached_field = false; syslog_server(LOG_WARNING, "Get point details json - point: %s - bidib get point state query is empty" - "/point (state) is not known", data_id); + "/point (state) is not known", point_id); append_field_str_value(g_details, "state", "unknown", true); } else { append_field_str_value(g_details, "state", @@ -608,7 +657,7 @@ static GString *get_point_details_json(const char *data_id) { } // field: segment - const char *point_segment = config_get_scalar_string_value("point", data_id, "segment"); + const char *point_segment = config_get_scalar_string_value("point", point_id, "segment"); append_field_str_value(g_details, "segment", point_segment, true); append_field_bool_value(g_details, "occupied", @@ -624,7 +673,7 @@ static GString *get_point_details_json(const char *data_id) { if (ex_state == BIDIB_EXEC_STATE_ERROR) { syslog_server(LOG_NOTICE, "Get point details json - point: %s - target_state_reached reported as false, " - "execution state is BIDIB_EXEC_STATE_ERROR", data_id); + "execution state is BIDIB_EXEC_STATE_ERROR", point_id); } append_field_bool_value(g_details, "target_state_reached", target_state_reached_val, false); @@ -664,16 +713,16 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon } -static GString *get_accessory_aspects_json(const char *data_id, bool is_point) { - if (data_id == NULL) { +static GString *get_accessory_aspects_json(const char *acc_id, bool is_point) { + if (acc_id == NULL) { syslog_server(LOG_ERR, "Get accessory aspects json - invalid accessory identifier"); return NULL; } - GString *g_aspects = get_accessory_aspects_json_listonly(data_id, is_point); + GString *g_aspects = get_accessory_aspects_json_listonly(acc_id, is_point); if (g_aspects == NULL) { syslog_server(LOG_ERR, "Get accessory aspects json - accessory: %s - getting aspects json list failed", - data_id); + acc_id); return NULL; } // g_aspects now has the list field, need to enclose it in json obj. diff --git a/server/src/json_response_builder.c b/server/src/json_response_builder.c index 715c03f6..9ad72cda 100644 --- a/server/src/json_response_builder.c +++ b/server/src/json_response_builder.c @@ -13,6 +13,15 @@ GString* append_field_str_value(GString *dest, const char *field, return dest; } +GString* append_field_str_value_from_int(GString *dest, const char *field, int value_int, bool add_trailing_comma) { + if (dest == NULL || field == NULL) { + return NULL; + } + g_string_append_printf(dest, "\n\"%s\": \"%d\"%s", + field, value_int, add_trailing_comma ? "," : ""); + return dest; +} + GString* append_field_bare_value_from_str(GString *dest, const char *field, const char *value_str, bool add_trailing_comma) { if (dest == NULL || field == NULL) { diff --git a/server/src/json_response_builder.h b/server/src/json_response_builder.h index 2a2b16d3..f26dbe60 100644 --- a/server/src/json_response_builder.h +++ b/server/src/json_response_builder.h @@ -32,6 +32,7 @@ #include GString* append_field_str_value(GString *dest, const char *field, const char *value_str, bool add_trailing_comma); +GString* append_field_str_value_from_int(GString *dest, const char *field, int value_int, bool add_trailing_comma); GString* append_field_bare_value_from_str(GString *dest, const char *field, const char *value_str, bool add_trailing_comma); GString* append_field_strlist_value(GString *dest, const char *field, const char **value_liststr, unsigned int list_len, bool add_trailing_comma); GString* append_field_strlist_value_from_garray_strs(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma); From c67abc71ecd4f5550a7fb64bce44723f751aa205 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 15 Nov 2024 12:46:26 +0100 Subject: [PATCH 041/125] Added missing schema and added doxygen-style doc to monitor json gen functions. --- .../examples/monitor_interlockers.json | 3 + .../json-schema-monitor_interlockers.json | 19 ++ server/src/handler_monitor.c | 181 ++++++++++++++++-- 3 files changed, 183 insertions(+), 20 deletions(-) create mode 100644 server/doc/api-formats/monitor/examples/monitor_interlockers.json create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_interlockers.json diff --git a/server/doc/api-formats/monitor/examples/monitor_interlockers.json b/server/doc/api-formats/monitor/examples/monitor_interlockers.json new file mode 100644 index 00000000..8e718f73 --- /dev/null +++ b/server/doc/api-formats/monitor/examples/monitor_interlockers.json @@ -0,0 +1,3 @@ +{ + "interlockers": ["interlockername1", "interlockername2"] +} \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_interlockers.json b/server/doc/api-formats/monitor/json-schema-monitor_interlockers.json new file mode 100644 index 00000000..a84105e4 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_interlockers.json @@ -0,0 +1,19 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "monitor_interlockers.schema.json", + "title": "interlockers", + "description": "List of interlocker identifiers", + "type": "object", + "properties": { + "interlockers": { + "type": "array", + "uniqueItems": true, + "items": { + "type": "string" + } + } + }, + "required": [ + "interlockers" + ] +} \ No newline at end of file diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 66243fff..a4d3ba3a 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -77,6 +77,14 @@ static void free_g_strarray_and_contents(GArray *g_strarray) { g_strarray = NULL; } +/** + * @brief Get information on trains. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_trains.json + * + * @return GString* containing info on trains in json format. + * Returns NULL on failure to allocate the string. + */ static GString *get_trains_json() { t_bidib_id_list_query query = bidib_get_trains(); GString *g_trains = g_string_sized_new(60 * (query.length + 1)); @@ -127,12 +135,15 @@ o_con_status handler_get_trains(void *_, onion_request *req, onion_response *res } /** - * @brief Get the train state json given a train state query and the trains ID. + * @brief Get information on the state of a train, given a train state query and the trains ID. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_train-state.json * * @param train_id string with id of the train - * @param tr_state_query train state query (from libbidib) for the train with the id spec. in train_id. - * "tr_state_query.known" shall be true, otherwise the behaviour is undefined. - * @return GString* json train state (according to schema TODO) glib string. NULL if malloc for string fails. + * @param tr_state_query train state query (from libbidib) for the train with the id specified + * in train_id. "tr_state_query.known" shall be true, otherwise the behaviour is undefined. + * @return GString* containing info on train state in json format. + * Returns NULL on failure to allocate the string. */ static GString *get_train_state_json_given_statequery(const char *train_id, t_bidib_train_state_query tr_state_query) { @@ -237,6 +248,14 @@ o_con_status handler_get_train_state(void *_, onion_request *req, onion_response } } +/** + * @brief Get information on the state of all known trains. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_train-states.json + * + * @return GString* containing info on train states in json format. + * Returns NULL on failure to allocate the string. + */ static GString *get_train_states_json() { t_bidib_id_list_query query = bidib_get_trains(); GString *g_train_states = g_string_sized_new(256 * (query.length + 1)); @@ -289,6 +308,15 @@ o_con_status handler_get_train_states(void *_, onion_request *req, onion_respons } } +/** + * @brief Get information on a train's peripherals. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_train-peripherals.json + * + * @param train_id id of the train whose peripherals to get information about. + * @return GString* containing info on train's peripherals in json format. + * Returns NULL on failure to allocate the string, and/or if train_id is NULL. + */ static GString *get_train_peripherals_json(const char *train_id) { if (train_id == NULL) { return NULL; @@ -358,6 +386,20 @@ o_con_status handler_get_train_peripherals(void *_, onion_request *req, onion_re } } +/** + * @brief Get information on available engines or available interlockers. + * If the value of the parameter "engines" is true, it will contain info on engines, + * otherwise info on interlockers. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_engines.json (if engines is true), otherwise + * /server/doc/api-formats/monitor/json-schema-monitor_interlockers.json + * + * + * @param engines pass true if information about available engines is desired, if information on + * available interlockers is desired then pass false. + * @return GString* containing info on available engines or interlockers in json format. + * Returns NULL on failure to allocate the string. + */ static GString *get_engines_or_interlockers_json(bool engines) { GString *g_json_ret = g_string_new(""); if (g_json_ret == NULL) { @@ -391,10 +433,11 @@ static o_con_status get_engines_interlockers_common(onion_request *req, onion_re GString *g_ret = get_engines_or_interlockers_json(engines); if (g_ret != NULL) { send_some_gstring_and_free(res, HTTP_OK, g_ret); + syslog_server(LOG_INFO, "Request: %s - done", l_name); } else { onion_response_set_code(res, HTTP_INTERNAL_ERROR); + syslog_server(LOG_ERR, "Request: %s - unable to build reply message", l_name); } - syslog_server(LOG_INFO, "Request: %s - done", l_name); return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, l_name); @@ -409,6 +452,14 @@ o_con_status handler_get_interlockers(void *_, onion_request *req, onion_respons return get_engines_interlockers_common(req, res, false); } +/** + * @brief Get information on known track outputs. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_track-outputs.json + * + * @return GString* containing info on track outputs in json format. + * Returns NULL on failure to allocate the string. + */ static GString *get_track_outputs_json() { t_bidib_id_list_query query = bidib_get_track_outputs(); GString *g_track_outputs = g_string_sized_new(24 + 48 * query.length); @@ -473,8 +524,18 @@ o_con_status handler_get_track_outputs(void *_, onion_request *req, onion_respon } } -// returns string with list of aspects of accessory in json format, with field identifier "aspects", -// e.g., \"aspects": ["normal", "reverse"]\". If inputs invalid or internal error, returns NULL. +/** + * @brief Get a string containing a json list field of aspects that the accessory + * identified by acc_id supports. Accessory must be a signal or a point (indicate which one it + * is through parameter is_point). + * Example returned string: `"aspects": ["normal", "reverse"]` + * + * @param acc_id id of the accessory whose aspects to get. + * @param is_point pass true if the accessory in question is a point, pass false if it is a signal. + * @return GString* containing a json field called "aspects" with a list of aspects the specified + * accessory supports. Returns NULL on failure to allocate the string, and/or on failure to query + * the accessories aspects. + */ static GString *get_accessory_aspects_json_listonly(const char *acc_id, bool is_point) { if (acc_id == NULL) { syslog_server(LOG_ERR, "Get accessory aspects json listonly - invalid accessory identifier"); @@ -515,6 +576,19 @@ static GString *get_accessory_aspects_json_listonly(const char *acc_id, bool is_ return g_aspects_list; } +/** + * @brief Get information on either all point accessories or signal accessories (choose by value + * passed in parameter point_accessories). + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_points.json if point_accessories is true, else: + * /server/doc/api-formats/monitor/json-schema-monitor_signals.json + * + * @param point_accessories pass true if info on points is desired, pass false if info on signals + * is desired. + * @return GString* containing info on either points or signals in json format. + * Returns NULL on failure to allocate the string, and/or on failure to query + * the accessories. + */ static GString *get_accessories_json(bool point_accessories) { t_bidib_id_list_query query; if (point_accessories) { @@ -524,6 +598,7 @@ static GString *get_accessories_json(bool point_accessories) { } if (query.ids == NULL) { syslog_server(LOG_ERR, "Get accessories json - bidib returned NULL id list"); + return NULL; } GString *g_accs = g_string_sized_new(24 + 72 * query.length); @@ -610,6 +685,15 @@ o_con_status handler_get_signals(void *_, onion_request *req, onion_response *re return get_points_signals_common(req, res, false); } +/** + * @brief Get detail information on a point specified by its id in point_id. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_point-details.json + * + * @param point_id id of the point to get detail info on. + * @return GString* containing info on the point in json format. + * Returns NULL on failure to allocate the string, and/or if point_id is NULL. + */ static GString *get_point_details_json(const char *point_id) { if (point_id == NULL) { syslog_server(LOG_WARNING, "Get point details json - input data_id is NULL"); @@ -712,7 +796,18 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon } } - +/** + * @brief Get information on the aspects an accessory supports, either for a point or a signal + * (choose by value passed for is_point parameter). See also get_accessory_aspects_json_listonly. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json if is_point is true, else + * /server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json + * + * @param acc_id id of the accessory whose aspects to get info on + * @param is_point pass true if the accessory is a point, pass false if it is a signal. + * @return GString* containing info on the aspects the accessory supports, in json format. + * Returns NULL on failure to allocate the string, and/or if acc_id is NULL. + */ static GString *get_accessory_aspects_json(const char *acc_id, bool is_point) { if (acc_id == NULL) { syslog_server(LOG_ERR, "Get accessory aspects json - invalid accessory identifier"); @@ -776,6 +871,14 @@ o_con_status handler_get_signal_aspects(void *_, onion_request *req, onion_respo return get_acc_aspects_common(req, res, false); } +/** + * @brief Get information on all known segments, i.e., the identifier and occupancy information each. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_segments.json + * + * @return GString* containing info on segments in json format. + * Returns NULL on failure to allocate the string. + */ static GString *get_segments_json() { t_bidib_id_list_query seg_query = bidib_get_connected_segments(); // empty query result will lead to reply with empty list, this is intended. @@ -812,8 +915,10 @@ static GString *get_segments_json() { } // In case we know the segment is occupied, but no addresses are known, the // loop above won't add "unknown", so deal with this case separately - if (seg_state_query.known && seg_state_query.data.occupied && seg_state_query.data.dcc_addresses == 0) { - + if (seg_state_query.known + && seg_state_query.data.occupied + && seg_state_query.data.dcc_addresses == 0) { + g_string_append_printf(g_segments, "\"unknown\""); } append_end_of_list(g_segments, false, false); @@ -839,6 +944,14 @@ o_con_status handler_get_segments(void *_, onion_request *req, onion_response *r } } +/** + * @brief Get information on the known reversers, i.e., the identifier and the reverser state each. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_reversers.json + * + * @return GString* containing info on reversers in json format. + * Returns NULL on failure to allocate the string. + */ static GString *get_reversers_json() { t_bidib_id_list_query rev_query = bidib_get_connected_reversers(); // Size heuristic/guess from examples. Will be auto-resized if too small. @@ -913,6 +1026,15 @@ o_con_status handler_get_reversers(void *_, onion_request *req, onion_response * } } +/** + * @brief Get information on all known peripherals (this does NOT include train peripherals!), + * i.e., the identifier, the peripheral's state ID and its state value. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_peripherals.json + * + * @return GString* containing info on peripherals in json format. + * Returns NULL on failure to allocate the string. + */ static GString *get_peripherals_json() { // Trying out ways of estimating size. The +1 is there to avoid size 0 if query length is 0. t_bidib_id_list_query per_query = bidib_get_connected_peripherals(); @@ -1002,8 +1124,17 @@ o_con_status handler_get_verification_url(void *_, onion_request *req, onion_res } } +/** + * @brief Get information on granted routes, i.e., the route identifier and the train that the + * route is granted to for each granted route. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_granted-routes.json + * + * @return GString* containing info on granted routes in json format. + * Returns NULL on failure to allocate the string. + */ static GString* get_granted_routes_json() { - // Size is a guess/heuristic - will be auto-resized if not sufficient. + // Size based on examples, will be auto-resized if not enough. GString *g_granted_routes = g_string_sized_new(128); if (g_granted_routes == NULL) { syslog_server(LOG_ERR, "Get granted routes json - can't allocate g_granted_routes"); @@ -1011,9 +1142,6 @@ static GString* get_granted_routes_json() { } g_string_assign(g_granted_routes, ""); - // Old "normal" way without sized new - //GString *g_granted_routes = g_string_new(""); - append_start_of_obj(g_granted_routes, false); append_field_start_of_list(g_granted_routes, "granted-routes"); @@ -1039,6 +1167,10 @@ static GString* get_granted_routes_json() { } // free the GArray but not the contained strings, as it was created by shallow copy. g_array_free(route_ids, true); + } else { + syslog_server(LOG_WARNING, + "Get granted routes json - " + "route ID array copied from interlocking table is NULL"); } pthread_mutex_unlock(&interlocker_mutex); @@ -1064,14 +1196,23 @@ o_con_status handler_get_granted_routes(void *_, onion_request *req, onion_respo } } -///TODO: Think about a possible endpoint with less details; e.g., no length, -/// no conflicting-route-ids, no sections; to reduce bandwidth load where those fields -/// are not needed by the client anyway. -/// Also, this does not return info on the required position of points, is that not needed -/// by any client? +/** + * @brief Get information on a particular route, specified by the parameter route_id. + * The returned string is formatted to comply with the json-schema: + * /server/doc/api-formats/monitor/json-schema-monitor_route.json + * + * @param route_id id of the route to get info on. + * @return GString* containing info on the route in json format. + * Returns NULL on failure to allocate the string. + */ static GString* get_route_json(const char *route_id) { + ///TODO: Think about a possible endpoint with less details; e.g., no length, + /// no conflicting-route-ids, no sections; to reduce bandwidth load where those fields + /// are not needed by the client anyway. + /// Also, this does not return info on the required position of points, is that not needed + /// by any client? + if (route_id == NULL) { - syslog_server(LOG_ERR, "Get route json - route_id parameter is NULL"); return NULL; } pthread_mutex_lock(&interlocker_mutex); From 10042a251b060f420eb9c483e1c333c4894ec3f3 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 10:08:49 +0100 Subject: [PATCH 042/125] json helpers formatting and documentation --- server/src/json_response_builder.c | 39 +++++- server/src/json_response_builder.h | 218 +++++++++++++++++++++++++++-- 2 files changed, 238 insertions(+), 19 deletions(-) diff --git a/server/src/json_response_builder.c b/server/src/json_response_builder.c index 9ad72cda..eeacbdc9 100644 --- a/server/src/json_response_builder.c +++ b/server/src/json_response_builder.c @@ -1,4 +1,29 @@ -///AUTHOR: Bernhard Luedtke +/* + * + * Copyright (C) 2025 University of Bamberg, Software Technologies Research Group + * , + * + * This file is part of the SWTbahn command line interface (swtbahn-cli), which is + * a client-server application to interactively control a BiDiB model railway. + * + * swtbahn-cli is licensed under the GNU GENERAL PUBLIC LICENSE (Version 3), see + * the LICENSE file at the project's top-level directory for details or consult + * . + * + * swtbahn-cli is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or any later version. + * + * swtbahn-cli is a RESEARCH PROTOTYPE and distributed WITHOUT ANY WARRANTY, without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * The following people contributed to the conception and realization of the + * present swtbahn-cli (in alphabetic order by surname): + * + * - Bernhard Luedtke + * + */ #include "json_response_builder.h" @@ -13,7 +38,8 @@ GString* append_field_str_value(GString *dest, const char *field, return dest; } -GString* append_field_str_value_from_int(GString *dest, const char *field, int value_int, bool add_trailing_comma) { +GString* append_field_str_value_from_int(GString *dest, const char *field, + int value_int, bool add_trailing_comma) { if (dest == NULL || field == NULL) { return NULL; } @@ -77,7 +103,8 @@ GString* append_field_value_garray_strs_base(GString *dest, const char *field, } GString* append_field_strlist_value_from_garray_strs(GString *dest, const char *field, - const GArray* g_strarray, bool add_trailing_comma) { + const GArray* g_strarray, + bool add_trailing_comma) { return append_field_value_garray_strs_base(dest, field, g_strarray, true, add_trailing_comma); } @@ -87,13 +114,11 @@ GString* append_field_barelist_value_from_garray_strs(GString *dest, const char return append_field_value_garray_strs_base(dest, field, g_strarray, false, add_trailing_comma); } -GString* append_field_emptylist_value(GString *dest, const char *field, - bool add_trailing_comma) { +GString* append_field_emptylist_value(GString *dest, const char *field, bool add_trailing_comma) { if (dest == NULL || field == NULL) { return NULL; } - g_string_append_printf(dest, "\n\"%s\": []%s", - field, add_trailing_comma ? "," : ""); + g_string_append_printf(dest, "\n\"%s\": []%s", field, add_trailing_comma ? "," : ""); return dest; } diff --git a/server/src/json_response_builder.h b/server/src/json_response_builder.h index f26dbe60..03ce947f 100644 --- a/server/src/json_response_builder.h +++ b/server/src/json_response_builder.h @@ -1,6 +1,6 @@ /* * - * Copyright (C) 2024 University of Bamberg, Software Technologies Research Group + * Copyright (C) 2025 University of Bamberg, Software Technologies Research Group * , * * This file is part of the SWTbahn command line interface (swtbahn-cli), which is @@ -21,7 +21,7 @@ * The following people contributed to the conception and realization of the * present swtbahn-cli (in alphabetic order by surname): * - * - Bernhard Luedtke + * - Bernhard Luedtke * */ @@ -31,23 +31,217 @@ #include #include -GString* append_field_str_value(GString *dest, const char *field, const char *value_str, bool add_trailing_comma); -GString* append_field_str_value_from_int(GString *dest, const char *field, int value_int, bool add_trailing_comma); -GString* append_field_bare_value_from_str(GString *dest, const char *field, const char *value_str, bool add_trailing_comma); -GString* append_field_strlist_value(GString *dest, const char *field, const char **value_liststr, unsigned int list_len, bool add_trailing_comma); -GString* append_field_strlist_value_from_garray_strs(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma); -GString* append_field_barelist_value_from_garray_strs(GString *dest, const char *field, const GArray* g_strarray, bool add_trailing_comma); +/** + * @brief Adds a json field with an identifier and a value, + * where the value is represented in json as a string. + * Example. Input: field=`mystr`, value_str=`helloworld`. + * Resulting addition to `dest`: `\n"mystr": "helloworld"`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param value_str string value of the json field + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ +GString* append_field_str_value(GString *dest, const char *field, const char *value_str, + bool add_trailing_comma); +/** + * @brief Adds a json field with an identifier and a string value (from int). + * Example. Input: field=`mystr`, value_int=`5`. + * Resulting addition to `dest`: `\n"mystr": "5"`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param value_int int value of the json field (will be added as string, i.e., enclosed by "") + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ +GString* append_field_str_value_from_int(GString *dest, const char *field, int value_int, + bool add_trailing_comma); + +/** + * @brief Adds a json field with an identifier and a value. + * Example. Input: field=`myval`, value_str=`barevaluehello`. + * Resulting addition to `dest`: `\n"myval": barevaluehello`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param value_str value of the json field (will not be enclosed in, e.g., quote marks) + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ +GString* append_field_bare_value_from_str(GString *dest, const char *field, const char *value_str, + bool add_trailing_comma); + +/** + * @brief Adds a json field with a list of strings as the value of the field. + * Example. Input: field=`mystrlist`, value_liststr=list with strings `hello`, `world`. + * Resulting addition to `dest`: `\n"mystrlist": ["hello", "world"]`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param value_liststr list of strings to add as the field value + * @param list_len length of the list of strings (i.e., length of value_liststr) + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ +GString* append_field_strlist_value(GString *dest, const char *field, const char **value_liststr, + unsigned int list_len, bool add_trailing_comma); + +/** + * @brief Adds a json field with a list of strings as the value of the field. + * Like append_field_strlist_value, but here with GArray* instead of raw array + length. + * See append_field_strlist_value for an example. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param g_strarray list of strings to add as the field value + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ +GString* append_field_strlist_value_from_garray_strs(GString *dest, const char *field, + const GArray* g_strarray, + bool add_trailing_comma); + +/** + * @brief Adds a json field with a list as the value of the field. + * Like append_field_strlist_value and append_field_strlist_value_from_garray_strs, + * but here the strings in the passed list are not enclosed in quote marks + * in the `dest` string. + * Example. Input: field=`mylist`, g_strarray=list with strings `hello`, `world`. + * Resulting addition to `dest`: `\n"mylist": [hello, world]`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param g_strarray list of strings to add as the field value (as bare values) + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ +GString* append_field_barelist_value_from_garray_strs(GString *dest, const char *field, + const GArray* g_strarray, + bool add_trailing_comma); + +/** + * @brief Adds a json field with an empty list as the value of the field. + * Example. Input: field=`mylist`. + * Resulting addition to `dest`: `\n"mylist": []`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ GString* append_field_emptylist_value(GString *dest, const char *field, bool add_trailing_comma); -GString* append_field_bool_value(GString *dest, const char *field, bool value_bool, bool add_trailing_comma); -GString* append_field_int_value(GString *dest, const char *field, int value_int, bool add_trailing_comma); -GString* append_field_uint_value(GString *dest, const char *field, unsigned int value_uint, bool add_trailing_comma); -GString* append_field_float_value(GString *dest, const char *field, float value_float, bool add_trailing_comma); +/** + * @brief Adds a json field with a boolean value (true or false). + * Example. Input: field=`mybool`, value_bool=`true`. + * Resulting addition to `dest`: `\n"mybool": true`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param value_bool field value + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ +GString* append_field_bool_value(GString *dest, const char *field, bool value_bool, + bool add_trailing_comma); + +/** + * @brief Adds a json field with a number value (from int). + * Example. Input: field=`mynumber`, value_int=`5`. + * Resulting addition to `dest`: `\n"mynumber": 5`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param value_int field value + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ +GString* append_field_int_value(GString *dest, const char *field, int value_int, + bool add_trailing_comma); + +/** + * @brief Adds a json field with a number value (from unsigned int). + * Example. Input: field=`mynumber`, value_uint=`-5`. + * Resulting addition to `dest`: `\n"mynumber": -5`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param value_uint field value + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ +GString* append_field_uint_value(GString *dest, const char *field, unsigned int value_uint, + bool add_trailing_comma); + +/** + * @brief Adds a json field with a (real) number value (from float). + * Example. Input: field=`myreal`, value_float=`15.124`. + * Resulting addition to `dest`: `\n"myreal": 15.124`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @param value_float field value + * @param add_trailing_comma if true, adds comma after the field and value + * @return GString* modified "dest" string + */ +GString* append_field_float_value(GString *dest, const char *field, float value_float, + bool add_trailing_comma); + +/** + * @brief Adds a json field and starts a list for the value + * (i.e., value is incomplete in json terms, list needs to be closed later). + * Example. Input: field=`mylist`. + * Resulting addition to `dest`: `\n"mylist": [`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @return GString* modified "dest" string + */ GString* append_field_start_of_list(GString *dest, const char *field); + +/** + * @brief Adds the end of a list marker (`]`). + * Example. Resulting Addition to `dest`: `]`. + * + * @param dest String to be added to + * @param add_trailing_comma if true, adds comma after the added `]` + * @param with_prepend_newline if true, adds a newline in front of the added `]` + * @return GString* modified "dest" string + */ GString* append_end_of_list(GString *dest, bool add_trailing_comma, bool with_prepend_newline); +/** + * @brief Adds a json field and starts an object for the value + * (i.e., value is incomplete in json terms, object needs to be closed later). + * Example. Input: field=`myobject`. + * Resulting addition to `dest`: `\n"myobject": {`. + * + * @param dest String to be added to + * @param field name of the json field to add + * @return GString* modified "dest" string + */ GString* append_field_start_of_obj(GString *dest, const char *field); + +/** + * @brief Adds the start of an object marker (`{`). + * Example. Resulting Addition to `dest`: `{`. + * + * @param dest String to be added to + * @param with_prepend_newline if true, adds a newline in front of the added `{` + * @return GString* modified "dest" string + */ GString* append_start_of_obj(GString *dest, bool with_prepend_newline); + +/** + * @brief Adds the end of an object marker (`}`). + * Example. Resulting Addition to `dest`: `}`. + * + * @param dest String to be added to + * @param add_trailing_comma if true, adds a comma after the added `}` + * @return GString* modified "dest" string + */ GString* append_end_of_obj(GString *dest, bool add_trailing_comma); #endif // JSON_RESPONSE_BUILDER_H \ No newline at end of file From f8b7275d6fd5b3471f2db6e8c3f36faf80facc9d Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 10:23:24 +0100 Subject: [PATCH 043/125] more documentation --- server/src/communication_utils.c | 4 ++-- server/src/communication_utils.h | 32 +++++++++++++++++++++++++++----- 2 files changed, 29 insertions(+), 7 deletions(-) diff --git a/server/src/communication_utils.c b/server/src/communication_utils.c index 797e43d2..4f16b9a5 100644 --- a/server/src/communication_utils.c +++ b/server/src/communication_utils.c @@ -73,8 +73,8 @@ bool send_some_cstring(onion_response *res, int status_code, const char *cstr) { } } -onion_connection_status -handle_req_run_or_method_fail(onion_response *res, bool is_running, const char *caller_logname) { +onion_connection_status handle_req_run_or_method_fail(onion_response *res, bool is_running, + const char *caller_logname) { if (is_running) { syslog_server(LOG_WARNING, "Request: %s - wrong request type", caller_logname); onion_response_set_code(res, HTTP_METHOD_NOT_ALLOWED); diff --git a/server/src/communication_utils.h b/server/src/communication_utils.h index 6fa9b4f7..bb50da7e 100644 --- a/server/src/communication_utils.h +++ b/server/src/communication_utils.h @@ -32,8 +32,7 @@ #include #include -//########################## COMMON UTIL ########################## - +// The onion library we use has no define for the 409 code. Add it here. #define CUSTOM_HTTP_CODE_CONFLICT 409 /** @@ -55,16 +54,39 @@ bool send_common_feedback(onion_response *res, int status_code, const char* mess * @param res the response over which to send. Shall not be NULL. * @param status_code http status code to set for the response to be sent * @param gstr the gstring whose contents to send. If it is NULL, only the code will be set, nothing - * will be send. The gstr gstring will be free'd if it is not null, regardless of the return value. + * will be sent. The gstr gstring will be free'd if it is not null, regardless of the return value. * @return true if parameters were valid and sending succeeded, * @return false otherwise. */ bool send_some_gstring_and_free(onion_response *res, int status_code, GString *gstr); // This does not free the passed string to be sent (in contrast to the gstring version). +/** + * @brief Like send_some_gstring_and_free, but with a c-style 0-terminated string, + * but does NOT free the string. + * + * @param res the response over which to send. Shall not be NULL. + * @param status_code http status code to set for the response to be sent + * @param cstr the c-style 0-terminated string whose contents to send. + * If this is NULL, only the code will be set, nothing will be sent. + * @return true + * @return false + */ bool send_some_cstring(onion_response *res, int status_code, const char *cstr); -onion_connection_status -handle_req_run_or_method_fail(onion_response *res, bool is_running, const char *caller_logname); +/** + * @brief Helper for logging to syslog and responding to request + * that either the system is not running (but it has to be running for the request in question) + * or that an incorrect HTTP method was used. + * + * @param res the response over which to send. Shall not be NULL. + * @param is_running whether the system is running or not. Pass `true` if this does not matter + * for the request in question. + * @param caller_logname name of the request endpoint to log + * @return onion_connection_status OCS_NOT_IMPLEMENTED if wrong request type, + * otherwise OCS_PROCESSED + */ +onion_connection_status handle_req_run_or_method_fail(onion_response *res, bool is_running, + const char *caller_logname); #endif // JSON_COMMUNICATION_UTILS_H \ No newline at end of file From 0da1ec596e5213bd3ca9c407b5f576c486107b18 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 10:50:25 +0100 Subject: [PATCH 044/125] admin handler improv (details, doc/comments), comutils name in license updated --- server/src/communication_utils.c | 2 +- server/src/communication_utils.h | 2 +- server/src/handler_admin.c | 55 +++++++++++++++++++++----------- 3 files changed, 38 insertions(+), 21 deletions(-) diff --git a/server/src/communication_utils.c b/server/src/communication_utils.c index 4f16b9a5..41fab42e 100644 --- a/server/src/communication_utils.c +++ b/server/src/communication_utils.c @@ -21,7 +21,7 @@ * The following people contributed to the conception and realization of the * present swtbahn-cli (in alphabetic order by surname): * - * - Bernhard Luedtke + * - Bernhard Luedtke * */ diff --git a/server/src/communication_utils.h b/server/src/communication_utils.h index bb50da7e..5f96f836 100644 --- a/server/src/communication_utils.h +++ b/server/src/communication_utils.h @@ -21,7 +21,7 @@ * The following people contributed to the conception and realization of the * present swtbahn-cli (in alphabetic order by surname): * - * - Bernhard Luedtke + * - Bernhard Luedtke * */ diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index 12e81bf7..b329be5f 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -22,6 +22,7 @@ * present swtbahn-cli (in alphabetic order by surname): * * - Nicolas Gross + * - Bernhard Luedtke * */ @@ -41,12 +42,21 @@ #include "websocket_uploader/engine_uploader.h" #include "communication_utils.h" +// Mutex to lock when performing startup or shutdown static pthread_mutex_t start_stop_mutex = PTHREAD_MUTEX_INITIALIZER; +// Thread that polls bidib messages periodically static pthread_t poll_bidib_messages_thread; typedef onion_connection_status o_con_status; -void build_message_hex_string(unsigned char *message, char *dest) { - for (size_t i = 0; i <= message[0]; i++) { +/** + * @brief Constructs a hex-string from a bidib message into `dest`. + * + * @param message bidib msg string, first byte shall indicate length + * @param dest (in-out), filled with resulting hex string; caller responsible for ensuring + * that this string is long enough to hold the hex string + */ +static void build_message_hex_string(unsigned char *message, char *dest) { + for (unsigned int i = 0; i <= message[0]; i++) { if (i != 0) { dest += sprintf(dest, " "); } @@ -58,6 +68,8 @@ static void *poll_bidib_messages(void *_) { while (running) { unsigned char *message; while ((message = bidib_read_message()) != NULL) { + // message[0] holds length of msg; +1 for null-term(?), + // and max. 5 chars per byte will be needed in hex representation char hex_string[(message[0] + 1) * 5]; build_message_hex_string(message, hex_string); syslog_server(LOG_NOTICE, "SWTbahn message queue: %s", hex_string); @@ -69,13 +81,13 @@ static void *poll_bidib_messages(void *_) { syslog_server(LOG_ERR, "SWTbahn error message queue: %s", hex_string); free(message); } - usleep(500000); // 0.5 seconds + usleep(250000); // 0.25 seconds } pthread_exit(NULL); } -// Must be called with start_stop_mutex already acquired +// Shall only be called with start_stop_mutex acquired static bool startup_server(void) { const int err_serial = bidib_start_serial(serial_device, config_directory, 0); if (err_serial) { @@ -113,6 +125,7 @@ static bool startup_server(void) { return true; } +// Shall only be called with start_stop_mutex acquired void shutdown_server(void) { session_id = 0; syslog_server(LOG_NOTICE, "Shutdown server"); @@ -127,7 +140,8 @@ void shutdown_server(void) { syslog_server(LOG_INFO, "Shutdown server - Released interlocking config and table data"); pthread_join(poll_bidib_messages_thread, NULL); syslog_server(LOG_NOTICE, - "Shutdown server - BiDiB message poll thread joined, now stopping BiDiB and closing log"); + "Shutdown server - BiDiB message poll thread joined, " + "now stopping BiDiB and closing log"); bidib_stop(); } @@ -139,7 +153,7 @@ o_con_status handler_startup(void *_, onion_request *req, onion_response *res) { openlog("swtbahn", 0, LOG_LOCAL0); session_id = time(NULL); syslog_server(LOG_NOTICE, "Request: Startup server - session id: %ld - start", session_id); - + if (startup_server()) { pthread_mutex_unlock(&start_stop_mutex); send_common_feedback(res, HTTP_OK, ""); @@ -148,9 +162,10 @@ o_con_status handler_startup(void *_, onion_request *req, onion_response *res) { session_id); } else { pthread_mutex_unlock(&start_stop_mutex); - send_common_feedback(res, HTTP_INTERNAL_ERROR, "unable to start BiDiB"); + send_common_feedback(res, HTTP_INTERNAL_ERROR, "unable to start the server"); syslog_server(LOG_ERR, - "Request: Startup server - session id: %ld - unable to start BiDiB - abort", + "Request: Startup server - session id: %ld - " + "unable to start the server - abort", session_id); } return OCS_PROCESSED; @@ -166,9 +181,9 @@ o_con_status handler_shutdown(void *_, onion_request *req, onion_response *res) if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { syslog_server(LOG_NOTICE, "Request: Shutdown server - start"); shutdown_server(); - // Can't log "finished" here since bidib closes the syslog when stopping pthread_mutex_unlock(&start_stop_mutex); send_common_feedback(res, HTTP_OK, ""); + // Can't log "finished" here since bidib closes the syslog when stopping return OCS_PROCESSED; } else { pthread_mutex_unlock(&start_stop_mutex); @@ -198,8 +213,7 @@ o_con_status handler_set_track_output(void *_, onion_request *req, onion_respons } } -o_con_status handler_set_verification_option(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_set_verification_option(void *_, onion_request *req, onion_response *res) { build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_POST) { const char *data_verification_option = onion_request_get_post(req, "verification-option"); @@ -225,9 +239,8 @@ o_con_status handler_set_verification_option(void *_, onion_request *req, } } -o_con_status handler_set_verification_url(void *_, onion_request *req, - onion_response *res) { - build_response_header(res); +o_con_status handler_set_verification_url(void *_, onion_request *req, onion_response *res) { + build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_POST) { const char *data_verification_url = onion_request_get_post(req, "verification-url"); if (data_verification_url == NULL) { @@ -246,8 +259,7 @@ o_con_status handler_set_verification_url(void *_, onion_request *req, } } -o_con_status handler_admin_release_train(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_admin_release_train(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); @@ -296,8 +308,7 @@ o_con_status handler_admin_release_train(void *_, onion_request *req, } } -o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, - onion_response *res) { +o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); @@ -318,12 +329,18 @@ o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, "train: %s speed: %d - invalid track output", data_train, speed); return OCS_PROCESSED; - } + } syslog_server(LOG_NOTICE, "Request: Admin set dcc train speed - train: %s speed: %d - start", data_train, speed); // Does not require lock on grabbed trains mutex as this bidib function is threadsafe. + ///TODO: Directly setting the speed via bidib - i.e., not setting it via + /// the dynamic containers - will cause an inconsistent state: + /// the train in the real world will stop, but the speed set in the dynamic container + /// is not necessarily 0. + /// Todo for the future: set speed via dyn. container, check that speed is set to 0 + // with a timeout after which it is set to 0 directly via bidib as currently done. if (bidib_set_train_speed(data_train, speed, data_track_output)) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); syslog_server(LOG_ERR, From fa14c4181dd30e3bad3dccd6606bbfd98799aa9d Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 11:22:12 +0100 Subject: [PATCH 045/125] handler controller improvements and small dyn cont interface doc addition --- server/src/dyn_containers_interface.h | 3 +- server/src/handler_controller.c | 63 +++++++++++++++++++-------- 2 files changed, 46 insertions(+), 20 deletions(-) diff --git a/server/src/dyn_containers_interface.h b/server/src/dyn_containers_interface.h index 0e0781d5..11db2e4a 100644 --- a/server/src/dyn_containers_interface.h +++ b/server/src/dyn_containers_interface.h @@ -182,7 +182,8 @@ GArray *dyn_containers_get_interlockers_arr(void); // Gets a comma-separated string of interlockers that have been loaded GString *dyn_containers_get_interlockers(void); -// Finds the requested interlocker, and finds an available interlocker instance to use +// Finds the requested interlocker, and finds an available interlocker instance to use; +// returns 1 on error/failure to set interlocker instance, and 0 on success. int dyn_containers_set_interlocker_instance(t_interlocker_data * const interlocker_instance, const char *interlocker); diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index da415a14..40adb049 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -57,33 +57,58 @@ static int selected_interlocker_instance = -1; static const size_t max_signals_in_route_assmptn = 1024; static const size_t max_items_in_route_assmptn = 1024; -// Returns a value >= 0 if the interlocker with the specified name was set. Otherwise returns -1. -// Only call with interlocker_mutex locked. + +/** + * @brief Set the currently selected interlocker to be the interlocker with + * name given by `interlocker_name interlocker_name`, if an interlocker with this name exists + * and no interlocker is currently set. + * Shall only be called with interlocker_mutex locked. + * + * @param interlocker_name name of the interlocker to set, shall not be NULL + * @return int >= 0 if interlocker was set successfully, otherwise -1. + */ static int set_interlocker(const char *interlocker_name) { - if (selected_interlocker_instance != -1) { + if (interlocker_name == NULL) { + syslog_server(LOG_ERR, "Set interlocker - invalid interlocker_name (NULL)"); + return -1; + } else if (selected_interlocker_instance != -1) { // Another interlocker is already set, return -1 + syslog_server(LOG_ERR, + "Set interlocker - interlocker: %s - another interlocker is already set!", + interlocker_name); return -1; } for (size_t i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { + // Look for not already used interlocker instance slot (indicated by is_valid). if (!interlocker_instances[i].is_valid) { if (dyn_containers_set_interlocker_instance(&interlocker_instances[i], interlocker_name)) { syslog_server(LOG_ERR, "Set interlocker - interlocker: %s - could not be used in instance %d", interlocker_name, i); + return -1; } else { selected_interlocker_name = g_string_new(interlocker_name); selected_interlocker_instance = i; interlocker_instances[selected_interlocker_instance].is_valid = true; + return selected_interlocker_instance; } - break; } } - return selected_interlocker_instance; + syslog_server(LOG_ERR, + "Set interlocker - interlocker: %s - no interlocker instance/slot available", + interlocker_name); + return -1; } -// Returns the value -1 if the interlocker with the specified name was unset. Otherwise returns -1. -// Only call with interlocker_mutex locked. +/** + * @brief Un-set the interlocker given the name of the currently set interlocker. + * Shall only be called with interlocker_mutex locked. + * + * @param interlocker_name name of the interlocker to unset + * @return int -1 if no interlocker is set after unsetting, >= 0 if an interlocker remains set, + * i.e., unsetting failed if the returned value is >= 0. + */ static int unset_interlocker(const char *interlocker_name) { if (selected_interlocker_instance == -1) { // Selected interlocker instance is -1 -> no interlocker to unset. @@ -105,7 +130,7 @@ static int unset_interlocker(const char *interlocker_name) { bool load_default_interlocker_instance() { while (!dyn_containers_is_running()) { - // Empty + usleep(let_period_us); } pthread_mutex_lock(&interlocker_mutex); const int result = set_interlocker("libinterlocker_default (unremovable)"); @@ -146,7 +171,7 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ config_get_array_string_value("route", route_id, "conflicts", conflict_routes); for (size_t i = 0; i < conflict_routes_len; i++) { t_interlocking_route *conflict_route = get_route(conflict_routes[i]); - if (conflict_route->train != NULL) { + if (conflict_route != NULL && conflict_route->train != NULL) { if (sectional_in_use && is_route_conflict_safe_sectional(conflict_routes[i], route_id)) { // If a sectional checker is in use and it says that this conflict is // actually "safe" to grant, skip this conflict/dont add it to the list. @@ -178,7 +203,6 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ g_array_append_val(conflict_route_ids, conflict_route_id_string); } } - return conflict_route_ids; } @@ -220,7 +244,6 @@ GString *grant_route(const char *train_id, const char *source_id, const char *de return g_string_new("not_grantable"); } - pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance == -1) { pthread_mutex_unlock(&interlocker_mutex); @@ -446,8 +469,8 @@ o_con_status handler_release_route(void *_, onion_request *req, onion_response * const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); if (strcmp(route_id, "") == 0) { - syslog_server(LOG_ERR, "Request: Release route - invalid parameters"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); + syslog_server(LOG_ERR, "Request: Release route - invalid route-id parameter"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id parameter"); } else { syslog_server(LOG_NOTICE, "Request: Release route - route: %s - start", route_id); bool release_success = release_route(route_id); @@ -455,7 +478,7 @@ o_con_status handler_release_route(void *_, onion_request *req, onion_response * send_common_feedback(res, HTTP_OK, ""); } else { send_common_feedback(res, HTTP_BAD_REQUEST, - "invalid parameters, route does not exist or is not granted"); + "invalid parameter, route does not exist or is not granted"); } syslog_server(LOG_NOTICE, "Request: Release route - route: %s - finish", route_id); } @@ -588,8 +611,8 @@ o_con_status handler_set_interlocker(void *_, onion_request *req, onion_response if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_interlocker = onion_request_get_post(req, "interlocker"); if (data_interlocker == NULL) { - syslog_server(LOG_ERR, "Request: Set interlocker - invalid parameters"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); + syslog_server(LOG_ERR, "Request: Set interlocker - invalid interlocker parameter (NULL)"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker parameter (NULL)"); } else { syslog_server(LOG_NOTICE, "Request: Set interlocker - interlocker: %s - start", @@ -633,11 +656,13 @@ o_con_status handler_unset_interlocker(void *_, onion_request *req, onion_respon if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_interlocker = onion_request_get_post(req, "interlocker"); if (data_interlocker == NULL) { - syslog_server(LOG_ERR, "Request: Unset interlocker - invalid parameters"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); + syslog_server(LOG_ERR, "Request: Unset interlocker - invalid interlocker parameter (NULL)"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker parameter (NULL)"); } else { - syslog_server(LOG_NOTICE, "Request: Unset interlocker - interlocker: %s - start", + syslog_server(LOG_NOTICE, + "Request: Unset interlocker - interlocker: %s - start", data_interlocker); + pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance == -1) { pthread_mutex_unlock(&interlocker_mutex); From ce726685bcd8f41941560a63603a8ce41edf4aa3 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 11:56:26 +0100 Subject: [PATCH 046/125] wip bahn util and interlocking impl improvements --- server/src/bahn_data_util.c | 58 +++++++++++++++-------- server/src/interlocking.c | 5 +- server/src/interlocking.h | 11 +++-- server/test/unit/server_bahn_util_tests.c | 2 + server/test/unit/server_parser_tests.c | 2 + 5 files changed, 52 insertions(+), 26 deletions(-) diff --git a/server/src/bahn_data_util.c b/server/src/bahn_data_util.c index d56e1057..f372c25e 100644 --- a/server/src/bahn_data_util.c +++ b/server/src/bahn_data_util.c @@ -53,8 +53,8 @@ typedef enum { t_config_data config_data = {}; -// Needed to temporarily store new strings created by config_get_... -GArray *cached_allocated_str = NULL; +// Needed to temporarily store new strings created by track_state_get_value +GArray *cached_allocated_str_array = NULL; char *static_empty_str = ""; @@ -80,19 +80,30 @@ bool string_equals(const char *str1, const char *str2) { } void bahn_data_util_init_cached_track_state() { - cached_allocated_str = g_array_sized_new(FALSE, FALSE, sizeof(char *), 16); + if (cached_allocated_str_array != NULL) { + syslog_server(LOG_ERR, + "bahn data util init cached track state - cache is not NULL, " + "either concurrent usage or someone didn't free the cache correctly!"); + return; + } + cached_allocated_str_array = g_array_sized_new(FALSE, FALSE, sizeof(char *), 16); } void bahn_data_util_free_cached_track_state() { - if (cached_allocated_str != NULL) { - g_array_free(cached_allocated_str, true); - cached_allocated_str = NULL; + if (cached_allocated_str_array != NULL) { + for (int i = 0; i < cached_allocated_str_array->len; ++i) { + free(g_array_index(cached_allocated_str_array, char *, i)); + } + g_array_free(cached_allocated_str_array, true); + cached_allocated_str_array = NULL; } } void add_cache_str(char *state) { - if (cached_allocated_str != NULL) { - g_array_append_val(cached_allocated_str, state); + if (cached_allocated_str_array != NULL) { + g_array_append_val(cached_allocated_str_array, state); + } else { + syslog_server(LOG_ERR, "bahn data util add cache str - cache is NULL!"); } } @@ -168,16 +179,17 @@ void *get_object(e_config_type config_type, const char *id) { break; } - // check if (tb != NULL) { if (g_hash_table_contains(tb, id)) { return g_hash_table_lookup(tb, id); } + } else { + syslog_server(LOG_ERR, "bahn data util get object - unknown config type"); } - return NULL; } +///TODO: Document i/o param assumptions int interlocking_table_get_routes(const char *src_signal_id, const char *dst_signal_id, char *route_ids[]) { GArray *arr = interlocking_table_get_route_ids(src_signal_id, dst_signal_id); if (arr != NULL) { @@ -561,12 +573,20 @@ bool config_set_scalar_string_value(const char *type, const char *id, const char if (string_equals(prop_name, "train")) { // Set train t_interlocking_route *route = (t_interlocking_route *) obj; - route->train = strdup(value); - if (value != NULL && route->train == NULL) { + if (route->train != NULL) { syslog_server(LOG_ERR, - "config set scalar string value: unable to allocate memory for route->train"); + "config set scalar string value: not allowed to " + "overwrite route->train for route-id %s", + route->id); + } else { + route->train = strdup(value); + if (value != NULL && route->train == NULL) { + syslog_server(LOG_ERR, + "config set scalar string value: " + "unable to allocate memory for route->train"); + } + result = true; } - result = true; } } @@ -578,7 +598,7 @@ bool config_set_scalar_string_value(const char *type, const char *id, const char e_config_type get_track_state_type(const char *id) { if (id == NULL) { - syslog_server(LOG_ERR, "Get track state: %s is NULL", id); + syslog_server(LOG_ERR, "Get track state type: %s is NULL", id); return TYPE_NOT_SUPPORTED; } @@ -590,7 +610,7 @@ e_config_type get_track_state_type(const char *id) { return TYPE_PERIPHERAL; } - syslog_server(LOG_ERR, "Get track state: %s could not be found", id); + syslog_server(LOG_ERR, "Get track state type: %s could not be found", id); return TYPE_NOT_SUPPORTED; } @@ -614,13 +634,13 @@ char *get_signal_state(const char *id) { t_bidib_unified_accessory_state_query state_query = bidib_get_signal_state(id); if (state_query.known) { if (state_query.board_accessory_state.state_id == NULL) { - syslog_server(LOG_ERR, "get signal state: board accessory state id is NULL"); + syslog_server(LOG_ERR, "Get signal state: board accessory state id is NULL"); bidib_free_unified_accessory_state_query(state_query); return NULL; } raw_state = strdup(state_query.board_accessory_state.state_id); if (raw_state == NULL) { - syslog_server(LOG_ERR, "get signal state: unable to allocate memory for raw_state"); + syslog_server(LOG_ERR, "Get signal state: unable to allocate memory for raw_state"); bidib_free_unified_accessory_state_query(state_query); return NULL; } @@ -808,7 +828,7 @@ char *track_state_get_value(const char *id) { } bidib_free_unified_accessory_state_query(state_query); } else if (config_type == TYPE_SIGNAL) { - result = get_signal_state(id); + result = strdup(get_signal_state(id)); } else if (config_type == TYPE_PERIPHERAL) { t_bidib_peripheral_state_query state_query = bidib_get_peripheral_state(id); if (state_query.available) { diff --git a/server/src/interlocking.c b/server/src/interlocking.c index 2f25bc4a..eca84a3d 100644 --- a/server/src/interlocking.c +++ b/server/src/interlocking.c @@ -122,9 +122,8 @@ GArray *interlocking_table_get_all_route_ids(void) { if (route_id_string == NULL) { syslog_server(LOG_ERR, "Interlocking table get all route ids: " - "unable to allocate memory for route_id_string"); - g_array_free(route_ids, true); - return NULL; + "unable to allocate memory for a route_id_string"); + continue; } g_array_append_val(route_ids, route_id_string); } diff --git a/server/src/interlocking.h b/server/src/interlocking.h index be09fc76..0f636478 100644 --- a/server/src/interlocking.h +++ b/server/src/interlocking.h @@ -86,15 +86,16 @@ void free_interlocking_table(void); /** * Return all the route IDs in the interlocking table. + * The caller IS responsible for freeing the array or its contents. * - * @return array of route IDs. Caller is responsible for freeing the GArray and its contents(!) + * @return array of route IDs. */ GArray *interlocking_table_get_all_route_ids(void); /** * Return all the route IDs in the interlocking table. * The strings containing the route IDs are shallow copies of the ones in the interlocking table. - * That means, the caller of this function does not gain their ownership. + * That means, the caller has to free the GArray but not the contained strings! * * @return array of route IDs. Caller is responsible for freeing the GArray, * but not the contained strings(!) @@ -111,7 +112,8 @@ GArray *interlocking_table_get_all_route_ids_cpy(void); int interlocking_table_get_route_id_of_train(const char *train_id); /** - * Return the array of route ID for a given source and destination signal. + * Return the array of route IDs for a given source and destination signal. + * The caller is NOT responsible for freeing the array or its contents. * * @return array if it exists, otherwise NULL */ @@ -127,7 +129,8 @@ GArray *interlocking_table_get_route_ids(const char *source_id, const char *dest int interlocking_table_get_route_id(const char *source_id, const char *destination_id); /** - * Return the route (pointer to a struct) for a given route_id + * Return (pointer to) the route for a given route_id. + * The caller is NOT responsible for freeing the memory pointed to by the route pointer. * * @param route_id route * @return the route pointer if it exists, otherwise NULL diff --git a/server/test/unit/server_bahn_util_tests.c b/server/test/unit/server_bahn_util_tests.c index 60fb93fe..962cf719 100644 --- a/server/test/unit/server_bahn_util_tests.c +++ b/server/test/unit/server_bahn_util_tests.c @@ -37,10 +37,12 @@ static const char *config_directory = "../../configurations/swtbahn-full/"; static void test_setup(void) { + // Probably not necessary as no test calls track_state_get_value -> investigate bahn_data_util_init_cached_track_state(); } static void test_teardown(void) { + // Probably not necessary as no test calls track_state_get_value -> investigate bahn_data_util_free_cached_track_state(); } diff --git a/server/test/unit/server_parser_tests.c b/server/test/unit/server_parser_tests.c index 33c4569b..80df076f 100644 --- a/server/test/unit/server_parser_tests.c +++ b/server/test/unit/server_parser_tests.c @@ -37,10 +37,12 @@ static const char *config_directory = "../../configurations/swtbahn-full/"; static void test_setup(void) { + // Probably not necessary as no test calls track_state_get_value -> investigate bahn_data_util_init_cached_track_state(); } static void test_teardown(void) { + // Probably not necessary as no test calls track_state_get_value -> investigate bahn_data_util_free_cached_track_state(); } From b9989d7c54dfe14f68065d53e871fa4303415dce Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 15:00:01 +0100 Subject: [PATCH 047/125] bahn data util improvements + consequences to other files --- server/src/bahn_data_util.c | 231 ++++++++++++++++++++++------------- server/src/bahn_data_util.h | 35 ++++++ server/src/handler_driver.c | 14 +-- server/src/handler_monitor.c | 7 +- 4 files changed, 187 insertions(+), 100 deletions(-) diff --git a/server/src/bahn_data_util.c b/server/src/bahn_data_util.c index f372c25e..04dbd024 100644 --- a/server/src/bahn_data_util.c +++ b/server/src/bahn_data_util.c @@ -56,8 +56,6 @@ t_config_data config_data = {}; // Needed to temporarily store new strings created by track_state_get_value GArray *cached_allocated_str_array = NULL; -char *static_empty_str = ""; - bool bahn_data_util_initialise_config(const char *config_dir) { if (!interlocking_table_initialise(config_dir)) { return false; @@ -76,7 +74,11 @@ void bahn_data_util_free_config() { } bool string_equals(const char *str1, const char *str2) { - return strcmp(str1, str2) == 0; + if (str1 != NULL && str2 != NULL) { + return strcmp(str1, str2) == 0; + } else { + return false; + } } void bahn_data_util_init_cached_track_state() { @@ -189,20 +191,26 @@ void *get_object(e_config_type config_type, const char *id) { return NULL; } -///TODO: Document i/o param assumptions int interlocking_table_get_routes(const char *src_signal_id, const char *dst_signal_id, char *route_ids[]) { - GArray *arr = interlocking_table_get_route_ids(src_signal_id, dst_signal_id); + if (src_signal_id == NULL || dst_signal_id == NULL) { + syslog_server(LOG_ERR, "interlocking table get routes: called with invalid (NULL) parameters"); + return 0; + } + const GArray *arr = interlocking_table_get_route_ids(src_signal_id, dst_signal_id); if (arr != NULL) { for (int i = 0; i < arr->len; ++i) { route_ids[i] = g_array_index(arr, char *, i); } return arr->len; } - return 0; } int get_route_array_string_value(t_interlocking_route *route, const char *prop_name, char* data[]) { + if (route == NULL || prop_name == NULL) { + syslog_server(LOG_ERR, "Get route array string value: called with invalid (NULL) parameters"); + return 0; + } if (string_equals(prop_name, "path")) { if (route->path != NULL) { for (int i = 0; i < route->path->len; ++i) { @@ -244,6 +252,10 @@ int get_route_array_string_value(t_interlocking_route *route, const char *prop_n } char *config_get_scalar_string_value(const char *type, const char *id, const char *prop_name) { + if (type == NULL || id == NULL || prop_name == NULL) { + syslog_server(LOG_ERR, "Get scalar string: called with invalid (NULL) parameters"); + return ""; + } e_config_type config_type = get_config_type(type); void *obj = get_object(config_type, id); char *result = NULL; @@ -261,14 +273,12 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "train")) { result = ((t_interlocking_route *) obj)->train; } - break; case TYPE_SEGMENT: if (string_equals(prop_name, "id")) { result = ((t_config_segment *) obj)->id; } - break; case TYPE_REVERSER: @@ -279,7 +289,6 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "block")) { result = ((t_config_reverser *) obj)->block; } - break; case TYPE_SIGNAL: @@ -290,7 +299,6 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "type")) { result = ((t_config_signal *) obj)->type; } - break; case TYPE_POINT: @@ -305,7 +313,6 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "reverse")) { result = ((t_config_point *) obj)->reverse_aspect; } - break; case TYPE_PERIPHERAL: @@ -316,7 +323,6 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "type")) { result = ((t_config_peripheral *) obj)->type; } - break; case TYPE_TRAIN: @@ -325,7 +331,6 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "type")) { result = ((t_config_train *) obj)->type; } - break; case TYPE_BLOCK: @@ -334,7 +339,6 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "direction")) { result = ((t_config_block *) obj)->direction; } - break; case TYPE_CROSSING: @@ -343,7 +347,6 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "segment")) { result = ((t_config_crossing *) obj)->main_segment; } - break; case TYPE_SIGNAL_TYPE: @@ -352,7 +355,6 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "initial")) { result = ((t_config_signal_type *) obj)->initial; } - break; case TYPE_COMPOSITE_SIGNAL: @@ -367,7 +369,6 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "distant")) { result = ((t_config_composite_signal *) obj)->distant; } - break; case TYPE_PERIPHERAL_TYPE: @@ -376,7 +377,6 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } else if (string_equals(prop_name, "initial")) { result = ((t_config_peripheral_type *) obj)->initial; } - break; default: @@ -384,12 +384,16 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha } } - result = result != NULL ? result : static_empty_str; + result = result != NULL ? result : ""; syslog_server(LOG_DEBUG, "Get scalar string: %s %s.%s => \"%s\"", type, id, prop_name, result); return result; } float config_get_scalar_float_value(const char *type, const char *id, const char *prop_name) { + if (type == NULL || id == NULL || prop_name == NULL) { + syslog_server(LOG_ERR, "Get scalar float: called with invalid (NULL) parameters"); + return 0; + } e_config_type config_type = get_config_type(type); void *obj = get_object(config_type, id); float result = 0; @@ -408,7 +412,7 @@ float config_get_scalar_float_value(const char *type, const char *id, const char result = ((t_config_block *) obj)->limit_speed; } break; - + case TYPE_SEGMENT: if (string_equals(prop_name, "length")) { result = ((t_config_segment *) obj)->length; @@ -433,6 +437,10 @@ float config_get_scalar_float_value(const char *type, const char *id, const char } bool config_get_scalar_bool_value(const char *type, const char *id, const char *prop_name) { + if (type == NULL || id == NULL || prop_name == NULL) { + syslog_server(LOG_ERR, "Get scalar bool: called with invalid (NULL) parameters"); + return ""; + } e_config_type config_type = get_config_type(type); void *obj = get_object(config_type, id); bool result = false; @@ -453,6 +461,10 @@ bool config_get_scalar_bool_value(const char *type, const char *id, const char * } int config_get_array_string_value(const char *type, const char *id, const char *prop_name, char *data[]) { + if (type == NULL || id == NULL || prop_name == NULL) { + syslog_server(LOG_ERR, "Get array string: called with invalid (NULL) parameters"); + return 0; + } e_config_type config_type = get_config_type(type); void *obj = get_object(config_type, id); int result = 0; @@ -467,21 +479,18 @@ int config_get_array_string_value(const char *type, const char *id, const char * if (string_equals(prop_name, "aspects")) { arr = ((t_config_signal *) obj)->aspects; } - break; case TYPE_PERIPHERAL: if (string_equals(prop_name, "aspects")) { arr = ((t_config_peripheral *) obj)->aspects; } - break; case TYPE_TRAIN: if (string_equals(prop_name, "peripherals")) { arr = ((t_config_train *) obj)->peripherals; } - break; case TYPE_BLOCK: @@ -494,21 +503,18 @@ int config_get_array_string_value(const char *type, const char *id, const char * } else if (string_equals(prop_name, "overlaps")) { arr = ((t_config_block *) obj)->overlaps; } - break; case TYPE_SIGNAL_TYPE: if (string_equals(prop_name, "aspects")) { arr = ((t_config_signal_type *) obj)->aspects; } - break; case TYPE_PERIPHERAL_TYPE: if (string_equals(prop_name, "aspects")) { arr = ((t_config_peripheral_type *) obj)->aspects; } - break; default: @@ -528,6 +534,10 @@ int config_get_array_string_value(const char *type, const char *id, const char * } int config_get_array_int_value(const char *type, const char *id, const char *prop_name, int data[]) { + if (type == NULL || id == NULL || prop_name == NULL) { + syslog_server(LOG_ERR, "Get array int value: called with invalid (NULL) parameters"); + return 0; + } e_config_type config_type = get_config_type(type); void *obj = get_object(config_type, id); int result = 0; @@ -566,6 +576,10 @@ int config_get_array_bool_value(const char *type, const char *id, const char *pr } bool config_set_scalar_string_value(const char *type, const char *id, const char *prop_name, char *value) { + if (type == NULL || id == NULL || prop_name == NULL) { + syslog_server(LOG_ERR, "Config set scalar string value: called with invalid (NULL) parameters"); + return false; + } e_config_type config_type = get_config_type(type); void *obj = get_object(config_type, id); bool result = false; @@ -622,13 +636,15 @@ e_config_type get_track_state_type(const char *id) { * @param value stop, go, caution, or shunt * @return true of success, otherwise false */ -char *get_signal_state(const char *id) { - t_config_signal *signal = get_object(TYPE_SIGNAL, id); - if (signal == NULL) +static char *get_signal_state(const char *id) { + if (id == NULL) { return ""; - - const char *type = signal->type; - + } + const t_config_signal *signal = get_object(TYPE_SIGNAL, id); + if (signal == NULL) { + return ""; + } + // load raw state char *raw_state = NULL; t_bidib_unified_accessory_state_query state_query = bidib_get_signal_state(id); @@ -651,33 +667,33 @@ char *get_signal_state(const char *id) { char *result = NULL; if (string_equals(raw_state, "aspect_stop")) { - if (string_equals(type, "entry") - || string_equals(type, "exit") - || string_equals(type, "block") - || string_equals(type, "distant") - || string_equals(type, "shunting") - || string_equals(type, "halt")) { + if (string_equals(signal->type, "entry") + || string_equals(signal->type, "exit") + || string_equals(signal->type, "block") + || string_equals(signal->type, "distant") + || string_equals(signal->type, "shunting") + || string_equals(signal->type, "halt")) { result = "stop"; } } else if (string_equals(raw_state, "aspect_go")) { - if (string_equals(type, "entry") - || string_equals(type, "exit") - || string_equals(type, "block") - || string_equals(type, "distant")) { + if (string_equals(signal->type, "entry") + || string_equals(signal->type, "exit") + || string_equals(signal->type, "block") + || string_equals(signal->type, "distant")) { result = "go"; } } else if (string_equals(raw_state, "aspect_caution")) { - if (string_equals(type, "entry") - || string_equals(type, "exit") - || string_equals(type, "distant")) { + if (string_equals(signal->type, "entry") + || string_equals(signal->type, "exit") + || string_equals(signal->type, "distant")) { result = "caution"; } } else if (string_equals(raw_state, "aspect_shunt")) { - if (string_equals(type, "exit") - || string_equals(type, "shunting")) { + if (string_equals(signal->type, "exit") + || string_equals(signal->type, "shunting")) { result = "shunt"; } @@ -687,7 +703,11 @@ char *get_signal_state(const char *id) { return result; } -bool set_signal_raw_aspect(t_config_signal *signal, const char *value) { +static bool set_signal_raw_aspect(const t_config_signal *signal, const char *value) { + if (signal == NULL || value == NULL) { + syslog_server(LOG_ERR, "Set signal raw aspect: invalid (NULL) parameters"); + return false; + } if (signal->aspects != NULL) { for (int i = 0; i < signal->aspects->len; ++i) { char *aspect = g_array_index(signal->aspects, char *, i); @@ -698,7 +718,6 @@ bool set_signal_raw_aspect(t_config_signal *signal, const char *value) { } } } - return false; } @@ -710,11 +729,16 @@ bool set_signal_raw_aspect(t_config_signal *signal, const char *value) { * @param value stop, go, caution, shunt * @return true if successful, otherwise false */ -bool set_signal_state(const char *id, const char *value) { - t_config_signal *signal = get_object(TYPE_SIGNAL, id); - if (signal == NULL) +static bool set_signal_state(const char *id, const char *value) { + if (id == NULL || value == NULL) { + syslog_server(LOG_ERR, "Set signal state: invalid (NULL) parameters"); return false; - + } + const t_config_signal *signal = get_object(TYPE_SIGNAL, id); + if (signal == NULL) { + return false; + } + if (string_equals(value, "stop")) { if (string_equals(signal->type, "entry") || string_equals(signal->type, "exit") @@ -725,11 +749,7 @@ bool set_signal_state(const char *id, const char *value) { return set_signal_raw_aspect(signal, "aspect_stop"); } - - return false; - } - - if (string_equals(value, "go")) { + } else if (string_equals(value, "go")) { if (string_equals(signal->type, "entry") || string_equals(signal->type, "exit") || string_equals(signal->type, "distant") @@ -737,35 +757,37 @@ bool set_signal_state(const char *id, const char *value) { return set_signal_raw_aspect(signal, "aspect_go"); } - - return false; - } - - if (string_equals(value, "caution")) { + } else if (string_equals(value, "caution")) { if (string_equals(signal->type, "entry") || string_equals(signal->type, "exit") || string_equals(signal->type, "distant")) { return set_signal_raw_aspect(signal, "aspect_caution"); } - - return false; - } - - if (string_equals(value, "shunt")) { + } else if (string_equals(value, "shunt")) { if (string_equals(signal->type, "exit") || string_equals(signal->type, "shunting")) { return set_signal_raw_aspect(signal, "aspect_shunt"); } - - return false; } return false; } -bool set_peripheral_raw_aspect(t_config_peripheral *peripheral, const char *value) { +/** + * Set the peripheral aspect to some value + * + * @param peripheral peripheral whose aspect to set + * @param value value of the aspect + * @return true valid params + * @return false invalid params + */ +static bool set_peripheral_raw_aspect(t_config_peripheral *peripheral, const char *value) { + if (peripheral == NULL || value == NULL) { + syslog_server(LOG_ERR, "Set peripheral raw aspect: invalid (NULL) parameters"); + return false; + } if (peripheral->aspects != NULL) { for (int i = 0; i < peripheral->aspects->len; ++i) { char *aspect = g_array_index(peripheral->aspects, char *, i); @@ -788,30 +810,31 @@ bool set_peripheral_raw_aspect(t_config_peripheral *peripheral, const char *valu * @param value on or off * @return true if successful, otherwise false */ -bool set_peripheral_state(const char *id, const char *value) { - t_config_peripheral *peripheral = get_object(TYPE_PERIPHERAL, id); - if (peripheral == NULL) +static bool set_peripheral_state(const char *id, const char *value) { + if (id == NULL || value == NULL) { + syslog_server(LOG_ERR, "Set peripheral state: invalid (NULL) parameters"); return false; - - if (string_equals(value, "on")) { - if (string_equals(peripheral->type, "onebit")) { - return set_peripheral_raw_aspect(peripheral, "high"); - } - + } + t_config_peripheral *peripheral = get_object(TYPE_PERIPHERAL, id); + if (peripheral == NULL) { return false; } - if (string_equals(value, "off")) { - if (string_equals(peripheral->type, "onebit")) { + if (string_equals(peripheral->type, "onebit")) { + if (string_equals(value, "on")) { + return set_peripheral_raw_aspect(peripheral, "high"); + } else if (string_equals(value, "off")) { return set_peripheral_raw_aspect(peripheral, "low"); } - - return false; } return false; } char *track_state_get_value(const char *id) { + if (id == NULL) { + syslog_server(LOG_ERR, "Track state get value: called with invalid (NULL) id parameter"); + return ""; + } char *result = NULL; e_config_type config_type = get_track_state_type(id); void *obj = get_object(config_type, id); @@ -844,9 +867,11 @@ char *track_state_get_value(const char *id) { } if (result != NULL) { + // Add to cache such that the memory can be freed later via + // bahn_data_util_free_cached_track_state add_cache_str(result); } else { - result = static_empty_str; + result = ""; } syslog_server(LOG_DEBUG, "Get track state: %s => %s", id, result); @@ -854,6 +879,10 @@ char *track_state_get_value(const char *id) { } bool track_state_set_value(const char *id, const char *value) { + if (id == NULL || value == NULL) { + syslog_server(LOG_ERR, "Track state set value: invalid (NULL) parameters"); + return false; + } e_config_type config_type = get_track_state_type(id); bool result = false; switch (config_type) { @@ -888,11 +917,16 @@ bool track_state_set_value(const char *id, const char *value) { } bool is_segment_occupied(const char *id) { + if (id == NULL) { + return false; + } bool result = false; if (g_hash_table_contains(config_data.table_segments, id)) { t_bidib_segment_state_query state_query = bidib_get_segment_state(id); result = state_query.known && state_query.data.occupied; bidib_free_segment_state_query(state_query); + } else { + syslog_server(LOG_WARNING, "Is segment occupied: unknown segment %s", id); } syslog_server(LOG_DEBUG, "Is segment occupied: %s => %s", id, result ? "true" : "false"); @@ -900,6 +934,9 @@ bool is_segment_occupied(const char *id) { } bool is_type_segment(const char *id) { + if (id == NULL) { + return false; + } bool result = g_hash_table_contains(config_data.table_segments, id); syslog_server(LOG_DEBUG, "Is %s a segment: %s", id, result ? "true" : "false"); @@ -907,6 +944,9 @@ bool is_type_segment(const char *id) { } bool is_type_signal(const char *id) { + if (id == NULL) { + return false; + } bool result = g_hash_table_contains(config_data.table_signals, id); syslog_server(LOG_DEBUG, "Is %s a signal: %s", id, result ? "true" : "false"); @@ -914,6 +954,10 @@ bool is_type_signal(const char *id) { } int train_state_get_speed(const char *train_id) { + if (train_id == NULL) { + syslog_server(LOG_ERR, "Train state get speed (km/h): invalid (NULL) train_id parameter"); + return 0; + } int result = 0; if (g_hash_table_contains(config_data.table_trains, train_id)) { t_bidib_train_speed_kmh_query kmh_query = bidib_get_train_speed_kmh(train_id); @@ -929,6 +973,10 @@ int train_state_get_speed(const char *train_id) { } bool train_state_set_speed(const char *train_id, int speed) { + if (train_id == NULL) { + syslog_server(LOG_ERR, "Train state set speed: invalid (NULL) train_id parameter"); + return false; + } bool result = false; if (g_hash_table_contains(config_data.table_trains, train_id)) { const int grab_id = train_get_grab_id(train_id); @@ -947,6 +995,10 @@ bool train_state_set_speed(const char *train_id, int speed) { } char *config_get_point_position(const char *route_id, const char *point_id) { + if (route_id == NULL || point_id == NULL) { + syslog_server(LOG_ERR, "Get route point position: invalid (NULL) parameters"); + return ""; + } void *obj = get_object(TYPE_ROUTE, route_id); char *result = NULL; @@ -961,12 +1013,16 @@ char *config_get_point_position(const char *route_id, const char *point_id) { } } - result = result != NULL ? result : static_empty_str; + result = result != NULL ? result : ""; syslog_server(LOG_DEBUG, "Get route point position: %s.%s => %s", route_id, point_id, result); return result; } char *config_get_block_id_of_segment(const char *seg_id) { + if (seg_id == NULL) { + syslog_server(LOG_ERR, "Get block id of segment: invalid (NULL) seg_id parameter"); + return ""; + } GHashTableIter iterator; g_hash_table_iter_init(&iterator, config_data.table_blocks); @@ -996,8 +1052,7 @@ char *config_get_block_id_of_segment(const char *seg_id) { } } } - - return NULL; + return ""; } void log_bool(bool value) { diff --git a/server/src/bahn_data_util.h b/server/src/bahn_data_util.h index 606c3775..0a3500ec 100644 --- a/server/src/bahn_data_util.h +++ b/server/src/bahn_data_util.h @@ -30,16 +30,51 @@ #include +/** + * @brief Initialize the interlocking table and load/parse config files from the config-directory. + * + * @param config_dir directory containing the config files + * @return true if initialization succeeded, otherwise false + */ bool bahn_data_util_initialise_config(const char *config_dir); +/** + * @brief Free all loaded config data (incl. interlocking table) + * + */ void bahn_data_util_free_config(); +/** + * @brief Returns true if str1 is (lexic.) equal to str2. + * Returns false if either parameter is NULL. + * + */ bool string_equals(const char *str1, const char *str2); +/** + * @brief Initialize the cached-track-state, has to be called before one or more calls to + * `track_state_get_value`. + * + */ void bahn_data_util_init_cached_track_state(); +/** + * @brief Frees the cached-track-state, has to be called after one or more calls to + * `track_state_get_value` (invalidates/frees any strings returned by track_state_get_value). + * + */ void bahn_data_util_free_cached_track_state(); +/** + * @brief Get the route ids of routes that start at a specific source signal and end at a specific + * destination signal. Resulting list/array of route ids is written to out-param `route_ids`. + * Caller is responsible to ensure `route_ids` is big enough to hold all ids. + * + * @param src_signal_id source signal + * @param dst_signal_id destination signal + * @param route_ids out-parameter, ids of routes... + * @return int amount of routes found and written to route_ids. + */ int interlocking_table_get_routes(const char *src_signal_id, const char *dst_signal_id, char *route_ids[]); char *config_get_scalar_string_value(const char *type, const char *id, const char *prop_name); diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index e26f1bf3..cd8b9fad 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -163,21 +163,21 @@ static bool is_forward_driving(const t_interlocking_route *route, const char *tr char *block_id = NULL; for (size_t i = 0; i < train_position_query.length; i++) { block_id = config_get_block_id_of_segment(train_position_query.segments[i]); - if (block_id != NULL) { + if (block_id != NULL && strlen(block_id) > 0) { break; } } bidib_free_train_position_query(train_position_query); - if (block_id == NULL) { + if (block_id == NULL || strlen(block_id) == 0) { syslog_server(LOG_ERR, - "Is forward driving - train: %s driving: %s - current block of train is unknown", + "Is forward driving - train: %s driving: %s - current block of train unknown", train_id, is_forwards ? "forwards" : "backwards"); return is_forwards; } // 2. Check whether the train is on a block controlled by a reverser - bool electrically_reversed = false; + bool block_reversed = false; t_bidib_id_list_query rev_query = bidib_get_connected_reversers(); for (size_t i = 0; i < rev_query.length; i++) { const char *reverser_id = rev_query.ids[i]; @@ -189,7 +189,7 @@ static bool is_forward_driving(const t_interlocking_route *route, const char *tr t_bidib_reverser_state_query rev_state_query = bidib_get_reverser_state(reverser_id); // 3. Check the reverser's state if (succ && rev_state_query.available) { - electrically_reversed = (rev_state_query.data.state_value == BIDIB_REV_EXEC_STATE_ON); + block_reversed = (rev_state_query.data.state_value == BIDIB_REV_EXEC_STATE_ON); } bidib_free_reverser_state_query(rev_state_query); break; @@ -197,9 +197,7 @@ static bool is_forward_driving(const t_interlocking_route *route, const char *tr } bidib_free_id_list_query(rev_query); - const bool requested_forwards = electrically_reversed - ? !is_forwards - : is_forwards; + const bool requested_forwards = block_reversed ? !is_forwards : is_forwards; syslog_server(LOG_NOTICE, "Is forward driving - train: %s driving: %s", train_id, is_forwards ? "forwards" : "backwards"); diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index a4d3ba3a..15b553fa 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -190,13 +190,12 @@ static GString *get_train_state_json_given_statequery(const char *train_id, int added_blocks = 0; for (size_t i = 0; i < train_position_query.length; i++) { const char *block_id = config_get_block_id_of_segment(train_position_query.segments[i]); - GString *search_str = g_string_new(block_id); - g_string_prepend_c(search_str, '"'); - g_string_append_c(search_str, '"'); + GString *search_str = g_string_new(""); + g_string_append_printf(search_str, "\"%s\"", block_id); // only add block if it does not already exist in the list (and thus in g_train_state) // Naively, if e.g., "block12" was added, then block1 will be found. // -> fix is to include the '"'s in the search. - if (block_id != NULL && strstr(g_train_state->str, search_str->str) == NULL) { + if (block_id != NULL && strlen(block_id) > 0 && strstr(g_train_state->str, search_str->str) == NULL) { g_string_append_printf(g_train_state, "%s\"%s\"", added_blocks > 0 ? ", " : "", block_id); ++added_blocks; } From d52bebca6164f7951c5ecf3668c28872596c0395 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 15:06:17 +0100 Subject: [PATCH 048/125] additional bahn data util fixes --- server/src/bahn_data_util.c | 17 +++++++++-------- server/src/bahn_data_util.h | 2 ++ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/server/src/bahn_data_util.c b/server/src/bahn_data_util.c index 04dbd024..1ed8646f 100644 --- a/server/src/bahn_data_util.c +++ b/server/src/bahn_data_util.c @@ -109,7 +109,7 @@ void add_cache_str(char *state) { } } -e_config_type get_config_type(const char *type) { +static e_config_type get_config_type(const char *type) { if (string_equals(type, "route")) { return TYPE_ROUTE; } else if (string_equals(type, "segment")) { @@ -139,7 +139,7 @@ e_config_type get_config_type(const char *type) { return TYPE_NOT_SUPPORTED; } -void *get_object(e_config_type config_type, const char *id) { +static void *get_object(e_config_type config_type, const char *id) { GHashTable *tb = NULL; switch (config_type) { case TYPE_ROUTE: @@ -206,7 +206,7 @@ int interlocking_table_get_routes(const char *src_signal_id, const char *dst_sig return 0; } -int get_route_array_string_value(t_interlocking_route *route, const char *prop_name, char* data[]) { +static int get_route_array_string_value(t_interlocking_route *route, const char *prop_name, char* data[]) { if (route == NULL || prop_name == NULL) { syslog_server(LOG_ERR, "Get route array string value: called with invalid (NULL) parameters"); return 0; @@ -610,9 +610,9 @@ bool config_set_scalar_string_value(const char *type, const char *id, const char return result; } -e_config_type get_track_state_type(const char *id) { +static e_config_type get_track_state_accessory_type(const char *id) { if (id == NULL) { - syslog_server(LOG_ERR, "Get track state type: %s is NULL", id); + syslog_server(LOG_ERR, "Get accessory type: %s is NULL", id); return TYPE_NOT_SUPPORTED; } @@ -624,7 +624,7 @@ e_config_type get_track_state_type(const char *id) { return TYPE_PERIPHERAL; } - syslog_server(LOG_ERR, "Get track state type: %s could not be found", id); + syslog_server(LOG_ERR, "Get accessory type: %s could not be found", id); return TYPE_NOT_SUPPORTED; } @@ -638,6 +638,7 @@ e_config_type get_track_state_type(const char *id) { */ static char *get_signal_state(const char *id) { if (id == NULL) { + syslog_server(LOG_ERR, "Get signal state: invalid (NULL) id parameter"); return ""; } const t_config_signal *signal = get_object(TYPE_SIGNAL, id); @@ -836,7 +837,7 @@ char *track_state_get_value(const char *id) { return ""; } char *result = NULL; - e_config_type config_type = get_track_state_type(id); + e_config_type config_type = get_track_state_accessory_type(id); void *obj = get_object(config_type, id); if (obj != NULL) { if (config_type == TYPE_POINT) { @@ -883,7 +884,7 @@ bool track_state_set_value(const char *id, const char *value) { syslog_server(LOG_ERR, "Track state set value: invalid (NULL) parameters"); return false; } - e_config_type config_type = get_track_state_type(id); + e_config_type config_type = get_track_state_accessory_type(id); bool result = false; switch (config_type) { case TYPE_POINT: diff --git a/server/src/bahn_data_util.h b/server/src/bahn_data_util.h index 0a3500ec..125656fc 100644 --- a/server/src/bahn_data_util.h +++ b/server/src/bahn_data_util.h @@ -87,6 +87,8 @@ bool config_get_scalar_bool_value(const char *type, const char *id, const char * int config_get_array_string_value(const char *type, const char *id, const char *prop_name, char *data[]); +int config_get_array_int_value(const char *type, const char *id, const char *prop_name, int data[]); + int config_get_array_float_value(const char *type, const char *id, const char *prop_name, float data[]); int config_get_array_bool_value(const char *type, const char *id, const char *prop_name, bool data[]); From dd5b01087e7094e752fb7654b1ab5c92bf0a9b70 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 15:34:35 +0100 Subject: [PATCH 049/125] improvements and fixes for interlocking impl --- server/src/handler_monitor.c | 8 +-- server/src/interlocking.c | 69 ++++++++++++++---------- server/src/interlocking.h | 16 ++---- server/src/parsers/interlocking_parser.c | 4 +- 4 files changed, 49 insertions(+), 48 deletions(-) diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 15b553fa..c2b4e642 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -169,13 +169,9 @@ static GString *get_train_state_json_given_statequery(const char *train_id, append_field_int_value(g_train_state, "detected_kmh_speed", tr_state_query.data.detected_kmh_speed, true); pthread_mutex_lock(&interlocker_mutex); - int route_id = interlocking_table_get_route_id_of_train(train_id); + const char *route_id = interlocking_table_get_route_id_of_train(train_id); pthread_mutex_unlock(&interlocker_mutex); - if (route_id > -1) { - append_field_str_value_from_int(g_train_state, "route_id", route_id, true); - } else { - append_field_str_value(g_train_state, "route_id", "", true); - } + append_field_str_value(g_train_state, "route_id", route_id == NULL ? "" : route_id, true); t_bidib_train_position_query train_position_query = bidib_get_train_position(train_id); bool is_on_track = train_position_query.length > 0; diff --git a/server/src/interlocking.c b/server/src/interlocking.c index eca84a3d..8be6ccb1 100644 --- a/server/src/interlocking.c +++ b/server/src/interlocking.c @@ -39,17 +39,26 @@ GHashTable *route_hash_table = NULL; GHashTable *route_string_to_ids_hashtable = NULL; void free_interlocking_hashtable_key(void *pointer) { - char *key = (char *)pointer; - free(key); + if (pointer != NULL) { + free(pointer); + pointer = NULL; + } } void free_interlocking_hashtable_value(void *pointer) { + // For use with route_string_to_ids_hashtable: + // Not necessary to free elements individually, as they are not allocated/owned here, + // they are owned by the route_hash_table instead. GArray *value = (GArray *)pointer; g_array_free(value, true); } -void create_interlocking_hashtable(void) { - route_string_to_ids_hashtable = g_hash_table_new_full(g_str_hash, g_str_equal, free_interlocking_hashtable_key, free_interlocking_hashtable_value); +// initialises the route_string_to_ids_hashtable hashtable. +static void create_route_str_to_ids_hashtable() { + route_string_to_ids_hashtable = + g_hash_table_new_full(g_str_hash, g_str_equal, + free_interlocking_hashtable_key, + free_interlocking_hashtable_value); GHashTableIter iter; gpointer key, value; @@ -57,7 +66,7 @@ void create_interlocking_hashtable(void) { while (g_hash_table_iter_next (&iter, &key, &value)) { t_interlocking_route *route = (t_interlocking_route *) value; - // Build key, example: signal3signal6 + // Build search key, example: signal3signal6 size_t len = strlen(route->source) + strlen(route->destination) + 1; char *route_string = malloc(sizeof(char) * len); if (route_string == NULL) { @@ -69,13 +78,17 @@ void create_interlocking_hashtable(void) { snprintf(route_string, len, "%s%s", route->source, route->destination); if (g_hash_table_contains(route_string_to_ids_hashtable, route_string)) { + // entry with route_string as key exists in hashtable void *route_ids_ptr = g_hash_table_lookup(route_string_to_ids_hashtable, route_string); free(route_string); + // Add the route to the hashtable entry's value/list of routes GArray *route_ids = (GArray *) route_ids_ptr; g_array_append_val(route_ids, route->id); } else { + // entry with route_string as key does NOT exist in hashtable -> create new GArray *route_ids = g_array_sized_new(FALSE, FALSE, sizeof(size_t), 8); g_array_append_val(route_ids, route->id); + // Ownership of key (route_string) is transferred to hashtable g_hash_table_insert(route_string_to_ids_hashtable, route_string, route_ids); } } @@ -87,7 +100,7 @@ bool interlocking_table_initialise(const char *config_dir) { // Parse the interlocking table from the YAML file route_hash_table = parse_interlocking_table(config_dir); if (route_hash_table != NULL) { - create_interlocking_hashtable(); + create_route_str_to_ids_hashtable(); return true; } @@ -95,13 +108,14 @@ bool interlocking_table_initialise(const char *config_dir) { } void free_interlocking_table(void) { - // free hash table + // free route-string to route ids hash table if (route_string_to_ids_hashtable != NULL) { g_hash_table_destroy(route_string_to_ids_hashtable); route_string_to_ids_hashtable = NULL; } + syslog_server(LOG_INFO, "Interlocking extra table route str to route ids freed"); - // free array + // free general route hash table if (route_hash_table != NULL) { g_hash_table_destroy(route_hash_table); route_hash_table = NULL; @@ -144,22 +158,30 @@ GArray *interlocking_table_get_all_route_ids_cpy(void) { return route_ids; } -int interlocking_table_get_route_id_of_train(const char *train_id) { - int route_id = -1; - +const char *interlocking_table_get_route_id_of_train(const char *train_id) { + if (train_id == NULL) { + syslog_server(LOG_ERR, "Get route id of train: invalid train_id parameter (NULL)"); + return NULL; + } GHashTableIter iter; gpointer key, value; g_hash_table_iter_init (&iter, route_hash_table); while (g_hash_table_iter_next (&iter, &key, &value)) { const t_interlocking_route *route = (t_interlocking_route *) value; - if (route != NULL && route->train != NULL && strcmp(route->train, train_id) == 0) - return route_id; + if (route != NULL && route->train != NULL && strcmp(route->train, train_id) == 0) { + return route->id; + } } - return route_id; + return NULL; } GArray *interlocking_table_get_route_ids(const char *source_id, const char *destination_id) { - size_t len = strlen(source_id) + strlen(destination_id) + 1; + if (source_id == NULL || destination_id == NULL) { + syslog_server(LOG_ERR, + "Get route ids for source-dest combination: invalid (NULL) parameters"); + return NULL; + } + const size_t len = strlen(source_id) + strlen(destination_id) + 1; char route_string[len]; snprintf(route_string, len, "%s%s", source_id, destination_id); @@ -170,19 +192,10 @@ GArray *interlocking_table_get_route_ids(const char *source_id, const char *dest return NULL; } -int interlocking_table_get_route_id(const char *source_id, const char *destination_id) { - GArray *route_ids = interlocking_table_get_route_ids(source_id, destination_id); - - // Return first route - if (route_ids != NULL && route_ids->len > 0) { - char *id = g_array_index(route_ids, char *, 0); - return atoi(id); - } - - return -1; -} - t_interlocking_route *get_route(const char *route_id) { + if (route_id == NULL) { + return NULL; + } if (g_hash_table_contains(route_hash_table, route_id)) { return g_hash_table_lookup(route_hash_table, route_id); } @@ -194,6 +207,6 @@ unsigned int interlocking_table_get_size() { if (route_hash_table != NULL) { return g_hash_table_size(route_hash_table); } - + return 0; } diff --git a/server/src/interlocking.h b/server/src/interlocking.h index 0f636478..997f8ea4 100644 --- a/server/src/interlocking.h +++ b/server/src/interlocking.h @@ -86,7 +86,7 @@ void free_interlocking_table(void); /** * Return all the route IDs in the interlocking table. - * The caller IS responsible for freeing the array or its contents. + * The caller IS responsible for freeing the array and its contents. * * @return array of route IDs. */ @@ -104,12 +104,13 @@ GArray *interlocking_table_get_all_route_ids_cpy(void); /** * Search for the first route granted to the specified train and return its id. + * The caller is NOT responsible for freeing the returned string. * * @param train_id * @return int id of the first route found that is granted to train. - * -1 if no routes are granted to this train. + * NULL if no routes are granted to this train or the train is unknown/invalid. */ -int interlocking_table_get_route_id_of_train(const char *train_id); +const char *interlocking_table_get_route_id_of_train(const char *train_id); /** * Return the array of route IDs for a given source and destination signal. @@ -119,15 +120,6 @@ int interlocking_table_get_route_id_of_train(const char *train_id); */ GArray *interlocking_table_get_route_ids(const char *source_id, const char *destination_id); -/** - * Return the first route between the source and destination signals. - * - * @param source_id - * @param destination_id - * @return - */ -int interlocking_table_get_route_id(const char *source_id, const char *destination_id); - /** * Return (pointer to) the route for a given route_id. * The caller is NOT responsible for freeing the memory pointed to by the route pointer. diff --git a/server/src/parsers/interlocking_parser.c b/server/src/parsers/interlocking_parser.c index ad6544b2..5878e3c1 100644 --- a/server/src/parsers/interlocking_parser.c +++ b/server/src/parsers/interlocking_parser.c @@ -426,7 +426,7 @@ GHashTable *parse(yaml_parser_t *parser) { GHashTable *parse_interlocking_table(const char *config_dir) { if (config_dir == NULL) { syslog_server(LOG_ERR, "Interlocking parser: config directory is missing"); - return false; + return NULL; } // init @@ -434,7 +434,7 @@ GHashTable *parse_interlocking_table(const char *config_dir) { yaml_parser_t parser; if (!init_parser(config_dir, INTERLOCKING_TABLE_FILENAME, &fh, &parser)) { syslog_server(LOG_ERR, "Interlocking parser: Interlocking table file is missing"); - return false; + return NULL; } // parse From 4987d15a2ed4819417ed442d5cbcc29d8e7fb671 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 15:39:02 +0100 Subject: [PATCH 050/125] change interlocking impl file indentation to tabs --- server/src/interlocking.c | 277 +++++++++++++++++++------------------- 1 file changed, 138 insertions(+), 139 deletions(-) diff --git a/server/src/interlocking.c b/server/src/interlocking.c index 8be6ccb1..6d3c2f07 100644 --- a/server/src/interlocking.c +++ b/server/src/interlocking.c @@ -34,179 +34,178 @@ #include "server.h" #include "parsers/interlocking_parser.h" - GHashTable *route_hash_table = NULL; GHashTable *route_string_to_ids_hashtable = NULL; void free_interlocking_hashtable_key(void *pointer) { - if (pointer != NULL) { - free(pointer); - pointer = NULL; - } + if (pointer != NULL) { + free(pointer); + pointer = NULL; + } } void free_interlocking_hashtable_value(void *pointer) { - // For use with route_string_to_ids_hashtable: - // Not necessary to free elements individually, as they are not allocated/owned here, - // they are owned by the route_hash_table instead. - GArray *value = (GArray *)pointer; - g_array_free(value, true); + // For use with route_string_to_ids_hashtable: + // Not necessary to free elements individually, as they are not allocated/owned here, + // they are owned by the route_hash_table instead. + GArray *value = (GArray *)pointer; + g_array_free(value, true); } // initialises the route_string_to_ids_hashtable hashtable. static void create_route_str_to_ids_hashtable() { - route_string_to_ids_hashtable = - g_hash_table_new_full(g_str_hash, g_str_equal, - free_interlocking_hashtable_key, - free_interlocking_hashtable_value); - - GHashTableIter iter; - gpointer key, value; - g_hash_table_iter_init (&iter, route_hash_table); - while (g_hash_table_iter_next (&iter, &key, &value)) { - t_interlocking_route *route = (t_interlocking_route *) value; - - // Build search key, example: signal3signal6 - size_t len = strlen(route->source) + strlen(route->destination) + 1; - char *route_string = malloc(sizeof(char) * len); - if (route_string == NULL) { - syslog_server(LOG_ERR, - "Interlocking create interlocking hash table: " - "unable to allocate memory for route_string"); - return; - } - snprintf(route_string, len, "%s%s", route->source, route->destination); - - if (g_hash_table_contains(route_string_to_ids_hashtable, route_string)) { - // entry with route_string as key exists in hashtable - void *route_ids_ptr = g_hash_table_lookup(route_string_to_ids_hashtable, route_string); - free(route_string); - // Add the route to the hashtable entry's value/list of routes - GArray *route_ids = (GArray *) route_ids_ptr; - g_array_append_val(route_ids, route->id); - } else { - // entry with route_string as key does NOT exist in hashtable -> create new - GArray *route_ids = g_array_sized_new(FALSE, FALSE, sizeof(size_t), 8); - g_array_append_val(route_ids, route->id); - // Ownership of key (route_string) is transferred to hashtable - g_hash_table_insert(route_string_to_ids_hashtable, route_string, route_ids); - } - } - - syslog_server(LOG_NOTICE, "Interlocking create hash table - done"); + route_string_to_ids_hashtable = + g_hash_table_new_full(g_str_hash, g_str_equal, + free_interlocking_hashtable_key, + free_interlocking_hashtable_value); + + GHashTableIter iter; + gpointer key, value; + g_hash_table_iter_init (&iter, route_hash_table); + while (g_hash_table_iter_next (&iter, &key, &value)) { + t_interlocking_route *route = (t_interlocking_route *) value; + + // Build search key, example: signal3signal6 + size_t len = strlen(route->source) + strlen(route->destination) + 1; + char *route_string = malloc(sizeof(char) * len); + if (route_string == NULL) { + syslog_server(LOG_ERR, + "Interlocking create interlocking hash table: " + "unable to allocate memory for route_string"); + return; + } + snprintf(route_string, len, "%s%s", route->source, route->destination); + + if (g_hash_table_contains(route_string_to_ids_hashtable, route_string)) { + // entry with route_string as key exists in hashtable + void *route_ids_ptr = g_hash_table_lookup(route_string_to_ids_hashtable, route_string); + free(route_string); + // Add the route to the hashtable entry's value/list of routes + GArray *route_ids = (GArray *) route_ids_ptr; + g_array_append_val(route_ids, route->id); + } else { + // entry with route_string as key does NOT exist in hashtable -> create new + GArray *route_ids = g_array_sized_new(FALSE, FALSE, sizeof(size_t), 8); + g_array_append_val(route_ids, route->id); + // Ownership of key (route_string) is transferred to hashtable + g_hash_table_insert(route_string_to_ids_hashtable, route_string, route_ids); + } + } + + syslog_server(LOG_NOTICE, "Interlocking create hash table - done"); } bool interlocking_table_initialise(const char *config_dir) { - // Parse the interlocking table from the YAML file - route_hash_table = parse_interlocking_table(config_dir); - if (route_hash_table != NULL) { - create_route_str_to_ids_hashtable(); - return true; - } - - return false; + // Parse the interlocking table from the YAML file + route_hash_table = parse_interlocking_table(config_dir); + if (route_hash_table != NULL) { + create_route_str_to_ids_hashtable(); + return true; + } + + return false; } void free_interlocking_table(void) { - // free route-string to route ids hash table - if (route_string_to_ids_hashtable != NULL) { - g_hash_table_destroy(route_string_to_ids_hashtable); - route_string_to_ids_hashtable = NULL; - } - syslog_server(LOG_INFO, "Interlocking extra table route str to route ids freed"); - - // free general route hash table - if (route_hash_table != NULL) { - g_hash_table_destroy(route_hash_table); - route_hash_table = NULL; - } - - syslog_server(LOG_NOTICE, "Interlocking table freed"); + // free route-string to route ids hash table + if (route_string_to_ids_hashtable != NULL) { + g_hash_table_destroy(route_string_to_ids_hashtable); + route_string_to_ids_hashtable = NULL; + } + syslog_server(LOG_INFO, "Interlocking extra table route str to route ids freed"); + + // free general route hash table + if (route_hash_table != NULL) { + g_hash_table_destroy(route_hash_table); + route_hash_table = NULL; + } + + syslog_server(LOG_NOTICE, "Interlocking table freed"); } GArray *interlocking_table_get_all_route_ids(void) { - GArray* route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); - - GHashTableIter iter; - gpointer key, value; - g_hash_table_iter_init (&iter, route_hash_table); - while (g_hash_table_iter_next (&iter, &key, &value)) { - t_interlocking_route *route = (t_interlocking_route *) value; - char *route_id_string = strdup(route->id); - if (route_id_string == NULL) { - syslog_server(LOG_ERR, - "Interlocking table get all route ids: " - "unable to allocate memory for a route_id_string"); - continue; - } - g_array_append_val(route_ids, route_id_string); - } - - return route_ids; + GArray* route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); + + GHashTableIter iter; + gpointer key, value; + g_hash_table_iter_init (&iter, route_hash_table); + while (g_hash_table_iter_next (&iter, &key, &value)) { + t_interlocking_route *route = (t_interlocking_route *) value; + char *route_id_string = strdup(route->id); + if (route_id_string == NULL) { + syslog_server(LOG_ERR, + "Interlocking table get all route ids: " + "unable to allocate memory for a route_id_string"); + continue; + } + g_array_append_val(route_ids, route_id_string); + } + + return route_ids; } GArray *interlocking_table_get_all_route_ids_cpy(void) { - GArray* route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); - - GHashTableIter iter; - gpointer key, value; - g_hash_table_iter_init (&iter, route_hash_table); - while (g_hash_table_iter_next (&iter, &key, &value)) { - t_interlocking_route *route = (t_interlocking_route *) value; - g_array_append_val(route_ids, route->id); - } - return route_ids; + GArray* route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); + + GHashTableIter iter; + gpointer key, value; + g_hash_table_iter_init (&iter, route_hash_table); + while (g_hash_table_iter_next (&iter, &key, &value)) { + t_interlocking_route *route = (t_interlocking_route *) value; + g_array_append_val(route_ids, route->id); + } + return route_ids; } const char *interlocking_table_get_route_id_of_train(const char *train_id) { - if (train_id == NULL) { - syslog_server(LOG_ERR, "Get route id of train: invalid train_id parameter (NULL)"); - return NULL; - } - GHashTableIter iter; - gpointer key, value; - g_hash_table_iter_init (&iter, route_hash_table); - while (g_hash_table_iter_next (&iter, &key, &value)) { - const t_interlocking_route *route = (t_interlocking_route *) value; - if (route != NULL && route->train != NULL && strcmp(route->train, train_id) == 0) { - return route->id; - } - } - return NULL; + if (train_id == NULL) { + syslog_server(LOG_ERR, "Get route id of train: invalid train_id parameter (NULL)"); + return NULL; + } + GHashTableIter iter; + gpointer key, value; + g_hash_table_iter_init (&iter, route_hash_table); + while (g_hash_table_iter_next (&iter, &key, &value)) { + const t_interlocking_route *route = (t_interlocking_route *) value; + if (route != NULL && route->train != NULL && strcmp(route->train, train_id) == 0) { + return route->id; + } + } + return NULL; } GArray *interlocking_table_get_route_ids(const char *source_id, const char *destination_id) { - if (source_id == NULL || destination_id == NULL) { - syslog_server(LOG_ERR, - "Get route ids for source-dest combination: invalid (NULL) parameters"); - return NULL; - } - const size_t len = strlen(source_id) + strlen(destination_id) + 1; - char route_string[len]; - snprintf(route_string, len, "%s%s", source_id, destination_id); - - if (g_hash_table_contains(route_string_to_ids_hashtable, route_string)) { - return (GArray *)g_hash_table_lookup(route_string_to_ids_hashtable, route_string); - } - - return NULL; + if (source_id == NULL || destination_id == NULL) { + syslog_server(LOG_ERR, + "Get route ids for source-dest combination: invalid (NULL) parameters"); + return NULL; + } + const size_t len = strlen(source_id) + strlen(destination_id) + 1; + char route_string[len]; + snprintf(route_string, len, "%s%s", source_id, destination_id); + + if (g_hash_table_contains(route_string_to_ids_hashtable, route_string)) { + return (GArray *)g_hash_table_lookup(route_string_to_ids_hashtable, route_string); + } + + return NULL; } t_interlocking_route *get_route(const char *route_id) { - if (route_id == NULL) { - return NULL; - } - if (g_hash_table_contains(route_hash_table, route_id)) { - return g_hash_table_lookup(route_hash_table, route_id); - } - - return NULL; + if (route_id == NULL) { + return NULL; + } + if (g_hash_table_contains(route_hash_table, route_id)) { + return g_hash_table_lookup(route_hash_table, route_id); + } + + return NULL; } unsigned int interlocking_table_get_size() { - if (route_hash_table != NULL) { - return g_hash_table_size(route_hash_table); - } + if (route_hash_table != NULL) { + return g_hash_table_size(route_hash_table); + } - return 0; + return 0; } From df7588d1ba04ae71ea9c7a4f29f5bf67114773e7 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 16:44:35 +0100 Subject: [PATCH 051/125] adjust dyn containers interface, formatting, improved naming, type fixes, removed const qualifs where not warranted --- server/src/dyn_containers_interface.c | 483 +++++++++++++++----------- server/src/dyn_containers_interface.h | 50 +-- server/src/handler_driver.c | 2 +- 3 files changed, 298 insertions(+), 237 deletions(-) diff --git a/server/src/dyn_containers_interface.c b/server/src/dyn_containers_interface.c index 18402889..1321b829 100644 --- a/server/src/dyn_containers_interface.c +++ b/server/src/dyn_containers_interface.c @@ -44,7 +44,7 @@ pthread_mutex_t dyn_containers_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_t dyn_containers_thread; static pthread_t dyn_containers_actuate_thread; -t_dyn_containers_interface *dyn_containers_interface; +t_dyn_containers_interface *dyn_containers_interface = NULL; #define MICROSECOND 1 static const int let_period_us = 10000 * MICROSECOND; // 0.01 seconds @@ -55,11 +55,13 @@ static const key_t shm_key = 1234; long long dyn_containers_actuate_reaction_counter = 0; -void dyn_containers_reset_interface( - t_dyn_containers_interface * const dyn_containers_interface) { +static void dyn_containers_reset_interface(t_dyn_containers_interface *dyn_containers_interface) { + if (dyn_containers_interface == NULL) { + return; + } dyn_containers_interface->running = false; dyn_containers_interface->terminate = false; - + dyn_containers_interface->let_period_us = let_period_us; for (size_t i = 0; i < TRAIN_ENGINE_COUNT_MAX; i++) { @@ -112,7 +114,7 @@ void dyn_containers_reset_interface( .input_src_signal_id = "", .input_dst_signal_id = "", .input_train_id = "", - + .output_in_use = false, .output_terminated = false, .output_interlocker_type = -1 @@ -120,6 +122,45 @@ void dyn_containers_reset_interface( } } +static void dyn_actuate_specific_engine(int index_in_grabbed_trains) { + int i = index_in_grabbed_trains; + if (i >= TRAIN_ENGINE_INSTANCE_COUNT_MAX) { + return; + } else if (!grabbed_trains[i].is_valid || grabbed_trains[i].name == NULL) { + return; + } + + const int dyn_cont_eng_instance = grabbed_trains[i].dyn_containers_engine_instance; + + struct t_train_engine_instance_io *eng_instance = + &dyn_containers_interface->train_engine_instances_io[dyn_cont_eng_instance]; + if (eng_instance->output_in_use) { + if (eng_instance->output_nominal_speed != eng_instance->output_nominal_speed_pre + || eng_instance->output_nominal_forwards != eng_instance->output_nominal_forwards_pre) { + if (bidib_set_train_speed(grabbed_trains[i].name->str, + eng_instance->output_nominal_forwards + ? eng_instance->output_nominal_speed + : -eng_instance->output_nominal_speed, + grabbed_trains[i].track_output)) { + syslog_server(LOG_ERR, + "Dyn containers actuate - train: %s - invalid parameters", + grabbed_trains[i].name->str); + } else { + bidib_flush(); + syslog_server(LOG_NOTICE, + "Dyn containers actuate - train: %s speed: %d - set train speed", + grabbed_trains[i].name->str, + eng_instance->output_nominal_forwards + ? eng_instance->output_nominal_speed + : -eng_instance->output_nominal_speed); + eng_instance->output_nominal_speed_pre = eng_instance->output_nominal_speed; + eng_instance->output_nominal_forwards_pre = eng_instance->output_nominal_forwards; + } + } + } + +} + // Execute the outputs of the train engines and interlockers via the BiDiB library static void *dyn_containers_actuate(void *_) { while (!running) { @@ -130,63 +171,30 @@ static void *dyn_containers_actuate(void *_) { do { pthread_mutex_lock(&grabbed_trains_mutex); pthread_mutex_lock(&dyn_containers_mutex); - + for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { - if (grabbed_trains[i].is_valid && grabbed_trains[i].name != NULL) { - const int dyn_containers_engine_instance = - grabbed_trains[i].dyn_containers_engine_instance; - - struct t_train_engine_instance_io * const engine_instance = - &dyn_containers_interface->train_engine_instances_io[dyn_containers_engine_instance]; - if (engine_instance->output_in_use) { - if (engine_instance->output_nominal_speed != engine_instance->output_nominal_speed_pre - || engine_instance->output_nominal_forwards != engine_instance->output_nominal_forwards_pre) { - if (bidib_set_train_speed(grabbed_trains[i].name->str, - engine_instance->output_nominal_forwards - ? engine_instance->output_nominal_speed - : -engine_instance->output_nominal_speed, - grabbed_trains[i].track_output)) { - syslog_server(LOG_ERR, - "Dyn containers actuate - train: %s - invalid parameters", - grabbed_trains[i].name->str); - } else { - bidib_flush(); - syslog_server(LOG_NOTICE, - "Dyn containers actuate - train: %s speed: %d - set train speed", - grabbed_trains[i].name->str, - engine_instance->output_nominal_forwards - ? engine_instance->output_nominal_speed - : -engine_instance->output_nominal_speed); - engine_instance->output_nominal_speed_pre = engine_instance->output_nominal_speed; - engine_instance->output_nominal_forwards_pre = engine_instance->output_nominal_forwards; - } - } - } - } + dyn_actuate_specific_engine(i); } pthread_mutex_unlock(&dyn_containers_mutex); pthread_mutex_unlock(&grabbed_trains_mutex); - + dyn_containers_actuate_reaction_counter++; usleep(let_period_us); } while (running); - + dyn_containers_interface->terminate = true; - // TODO: Ensure that all trains really stop + /// TODO: Ensure that all trains really stop pthread_exit(NULL); } int dyn_containers_start(void) { - dyn_containers_shm_create(&shm_config, shm_permissions, shm_key, - &dyn_containers_interface); + dyn_containers_shm_create(&shm_config, shm_permissions, shm_key, &dyn_containers_interface); dyn_containers_reset_interface(dyn_containers_interface); - pthread_create(&dyn_containers_thread, NULL, - forec_dyn_containers, NULL); - pthread_create(&dyn_containers_actuate_thread, NULL, - dyn_containers_actuate, NULL); + pthread_create(&dyn_containers_thread, NULL, forec_dyn_containers, NULL); + pthread_create(&dyn_containers_actuate_thread, NULL, dyn_containers_actuate, NULL); return 0; } @@ -199,45 +207,38 @@ void dyn_containers_stop(void) { syslog_server(LOG_NOTICE, "Closed dynamic library containers"); } -const bool dyn_containers_is_running(void) { - return dyn_containers_interface->running; +bool dyn_containers_is_running(void) { + return dyn_containers_interface != NULL && dyn_containers_interface->running; } // General function to obtain a shared memory segment based on a given key -void dyn_containers_shm_create(t_dyn_shm_config * const shm_config, - const int shm_permissions, const key_t shm_key, - t_dyn_containers_interface ** const shm_payload) { +void dyn_containers_shm_create(t_dyn_shm_config *shm_config, int shm_permissions, key_t shm_key, + t_dyn_containers_interface **shm_payload) { // Create our shared memory segment with the given shmKey. shm_config->size = 1 * sizeof(t_dyn_containers_interface); shm_config->permissions = shm_permissions; shm_config->key = shm_key; - shm_config->shmid = shmget(shm_config->key, shm_config->size, - shm_config->permissions); + shm_config->shmid = shmget(shm_config->key, shm_config->size, shm_config->permissions); if (shm_config->shmid == -1) { int error_number = errno; - syslog_server(LOG_ERR, - "Error getting shared memory segment: errono %d", - error_number); + syslog_server(LOG_ERR, "Error getting shared memory segment: errono %d", error_number); return; } - + // Attach the shared memory segment to our data space *shm_payload = shmat(shm_config->shmid, NULL, 0); if (shm_payload == (void *) -1) { - syslog_server(LOG_ERR, - "Error attaching shared memory segment to process' data space"); + syslog_server(LOG_ERR, "Error attaching shared memory segment to process' data space"); return; - } + } } // Detaches the shared memory segment from our data space -void dyn_containers_shm_detach(t_dyn_containers_interface ** const shm_payload) { +void dyn_containers_shm_detach(t_dyn_containers_interface **shm_payload) { if (shmdt(*shm_payload) == -1) { int error_number = errno; - syslog_server(LOG_ERR, - "Error detaching shared memory segment: errono %d", - error_number); + syslog_server(LOG_ERR, "Error detaching shared memory segment: errono %d", error_number); return; } @@ -245,24 +246,29 @@ void dyn_containers_shm_detach(t_dyn_containers_interface ** const shm_payload) } // Deletes the shared memory segment from our data space -void dyn_containers_shm_delete(t_dyn_shm_config * const shm_config) { +void dyn_containers_shm_delete(t_dyn_shm_config *shm_config) { + if (shm_config == NULL) { + syslog_server(LOG_ERR, + "Error deleting shared memory segment: invalid shm_config parameter (NULL)"); + return; + } shm_config->shmid = shmctl(shm_config->shmid, IPC_RMID, NULL); if (shm_config->shmid == -1) { int error_number = errno; - syslog_server(LOG_ERR, - "Error deleting shared memory segment: errono %d", - error_number); + syslog_server(LOG_ERR, "Error deleting shared memory segment: errono %d", error_number); return; } } // Finds the first available slot for a train engine -// Can only be called while the dyn_containers_mutex is locked -const int dyn_containers_get_free_engine_slot(void) { +// Shall only be called while the dyn_containers_mutex is locked +int dyn_containers_get_free_engine_slot(void) { + if (dyn_containers_interface == NULL) { + return -1; + } for (int i = 0; i < TRAIN_ENGINE_COUNT_MAX; i++) { - struct t_train_engine_io * const train_engine_io = - &dyn_containers_interface->train_engines_io[i]; - if (!train_engine_io->output_in_use) { + struct t_train_engine_io *tr_eng_io = &dyn_containers_interface->train_engines_io[i]; + if (!tr_eng_io->output_in_use) { return i; } } @@ -270,85 +276,89 @@ const int dyn_containers_get_free_engine_slot(void) { } // Finds the slot of a train engine -// Can only be called while the dyn_containers_mutex is locked -const int dyn_containers_get_engine_slot(const char name[]) { +// Shall only be called while the dyn_containers_mutex is locked +int dyn_containers_get_engine_slot(const char name[]) { + if (dyn_containers_interface == NULL) { + return -1; + } for (int i = 0; i < TRAIN_ENGINE_COUNT_MAX; i++) { - struct t_train_engine_io * const train_engine_io = - &dyn_containers_interface->train_engines_io[i]; - if (train_engine_io->output_in_use && - strcmp(train_engine_io->output_name, name) == 0) { + struct t_train_engine_io *tr_eng_io = &dyn_containers_interface->train_engines_io[i]; + if (tr_eng_io->output_in_use && strcmp(tr_eng_io->output_name, name) == 0) { return i; } } return -1; } - // Loads train engine into specified slot -// Can only be called while the dyn_containers_mutex is locked -void dyn_containers_set_engine(const int engine_slot, const char filepath[]) { - struct t_train_engine_io * const train_engine_io = - &dyn_containers_interface->train_engines_io[engine_slot]; - train_engine_io->input_load = true; - train_engine_io->input_unload = false; - strcpy(train_engine_io->input_filepath, filepath); +// Shall only be called while the dyn_containers_mutex is locked +void dyn_containers_set_engine(int engine_slot, const char filepath[]) { + if (dyn_containers_interface == NULL) { + return; + } + struct t_train_engine_io *tr_eng_io = &dyn_containers_interface->train_engines_io[engine_slot]; + tr_eng_io->input_load = true; + tr_eng_io->input_unload = false; + strcpy(tr_eng_io->input_filepath, filepath); pthread_mutex_unlock(&dyn_containers_mutex); syslog_server(LOG_NOTICE, - "Waiting for train engine %s to be dynamically loaded into slot %d", - filepath, engine_slot); - while (!train_engine_io->output_in_use) { + "Waiting for train engine %s to be dynamically loaded into slot %d", + filepath, engine_slot); + while (!tr_eng_io->output_in_use) { usleep(let_period_us); } pthread_mutex_lock(&dyn_containers_mutex); - train_engine_io->input_load = false; + tr_eng_io->input_load = false; syslog_server(LOG_NOTICE, - "Train engine %s has been dynamically loaded into engine slot %d", - filepath, engine_slot); + "Train engine %s has been dynamically loaded into engine slot %d", + filepath, engine_slot); } // Unloads train engine at specified slot -// Can only be called while the dyn_containers_mutex is locked -bool dyn_containers_free_engine(const int engine_slot) { +// Shall only be called while the dyn_containers_mutex is locked +bool dyn_containers_free_engine(int engine_slot) { + if (dyn_containers_interface == NULL) { + return false; + } // Check that no instance of the train engine is in use for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { - struct t_train_engine_instance_io * const engine_instance = - &dyn_containers_interface->train_engine_instances_io[i]; - if (engine_instance->output_in_use && - engine_instance->output_train_engine_type == engine_slot) { + struct t_train_engine_instance_io *eng_instance = + &dyn_containers_interface->train_engine_instances_io[i]; + if (eng_instance->output_in_use && eng_instance->output_train_engine_type == engine_slot) { return false; } } - + // Unload the train engine - struct t_train_engine_io * const train_engine_io = - &dyn_containers_interface->train_engines_io[engine_slot]; - train_engine_io->input_load = false; - train_engine_io->input_unload = true; - strcpy(train_engine_io->input_filepath, ""); + struct t_train_engine_io *tr_eng_io = &dyn_containers_interface->train_engines_io[engine_slot]; + tr_eng_io->input_load = false; + tr_eng_io->input_unload = true; + strcpy(tr_eng_io->input_filepath, ""); pthread_mutex_unlock(&dyn_containers_mutex); syslog_server(LOG_NOTICE, - "Waiting for train engine %s at slot %d to be unloaded", - train_engine_io->input_filepath, engine_slot); - while (train_engine_io->output_in_use) { + "Waiting for train engine %s at slot %d to be unloaded", + tr_eng_io->input_filepath, engine_slot); + while (tr_eng_io->output_in_use) { usleep(let_period_us); } pthread_mutex_lock(&dyn_containers_mutex); - train_engine_io->input_unload = false; - syslog_server(LOG_NOTICE, - "Unloaded train engine at slot %d", - engine_slot); + tr_eng_io->input_unload = false; + syslog_server(LOG_NOTICE, "Unloaded train engine at slot %d", engine_slot); return true; } GArray *dyn_containers_get_train_engines_arr(void) { + if (dyn_containers_interface == NULL) { + return NULL; + } GArray *train_engine_names = g_array_new(FALSE, FALSE, sizeof(char *)); pthread_mutex_lock(&dyn_containers_mutex); for (size_t i = 0; i < TRAIN_ENGINE_COUNT_MAX; ++i) { - const struct t_train_engine_io *engine_io = &dyn_containers_interface->train_engines_io[i]; - if (!engine_io->output_in_use) { + const struct t_train_engine_io *tr_eng_io = &dyn_containers_interface->train_engines_io[i]; + if (!tr_eng_io->output_in_use) { continue; } - char *name = strdup(engine_io->output_name); + char *name = strdup(tr_eng_io->output_name); if (name != NULL) { g_array_append_val(train_engine_names, name); } else { @@ -359,24 +369,25 @@ GArray *dyn_containers_get_train_engines_arr(void) { return train_engine_names; } -int dyn_containers_set_train_engine_instance(t_train_data * const grabbed_train, - const char *train, const char *engine) { - if (engine == NULL) { - syslog_server(LOG_ERR, "Could not set train engine because engine was NULL"); +int dyn_containers_set_train_engine_instance(t_train_data *grabbed_train, + const char *train, const char *engine) { + if (engine == NULL || grabbed_train == NULL) { + syslog_server(LOG_ERR, "Set train engine instance: invalid (NULL) parameter(s)"); + return 1; + } else if (dyn_containers_interface == NULL) { return 1; } pthread_mutex_lock(&dyn_containers_mutex); int train_engine_type = -1; for (int i = 0; i < TRAIN_ENGINE_COUNT_MAX; i++) { - struct t_train_engine_io * const train_engine_io = - &dyn_containers_interface->train_engines_io[i]; + struct t_train_engine_io *train_engine_io = &dyn_containers_interface->train_engines_io[i]; if (strcmp(train_engine_io->output_name, engine) == 0) { train_engine_type = i; break; } } - + if (train_engine_type == -1) { pthread_mutex_unlock(&dyn_containers_mutex); syslog_server(LOG_ERR, "Engine %s could not be found", engine); @@ -384,21 +395,21 @@ int dyn_containers_set_train_engine_instance(t_train_data * const grabbed_train, } for (int i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { - struct t_train_engine_instance_io * const train_engine_instance_io = - &dyn_containers_interface->train_engine_instances_io[i]; - if (!train_engine_instance_io->output_in_use) { - train_engine_instance_io->input_grab = true; - train_engine_instance_io->input_train_engine_type = train_engine_type; - train_engine_instance_io->input_requested_speed = 0; - train_engine_instance_io->input_requested_forwards = true; + struct t_train_engine_instance_io *tr_eng_instance_io = + &dyn_containers_interface->train_engine_instances_io[i]; + if (!tr_eng_instance_io->output_in_use) { + tr_eng_instance_io->input_grab = true; + tr_eng_instance_io->input_train_engine_type = train_engine_type; + tr_eng_instance_io->input_requested_speed = 0; + tr_eng_instance_io->input_requested_forwards = true; pthread_mutex_unlock(&dyn_containers_mutex); - + do { usleep(let_period_us); - } while (!train_engine_instance_io->output_in_use); + } while (!tr_eng_instance_io->output_in_use); pthread_mutex_lock(&dyn_containers_mutex); - train_engine_instance_io->input_grab = false; + tr_eng_instance_io->input_grab = false; pthread_mutex_unlock(&dyn_containers_mutex); grabbed_train->dyn_containers_engine_instance = i; @@ -406,53 +417,58 @@ int dyn_containers_set_train_engine_instance(t_train_data * const grabbed_train, return 0; } } - + pthread_mutex_unlock(&dyn_containers_mutex); syslog_server(LOG_ERR, "No engine instances available for train %s", train); return 1; } -void dyn_containers_free_train_engine_instance(const int dyn_containers_engine_instance) { +void dyn_containers_free_train_engine_instance(int dyn_containers_engine_instance) { if (dyn_containers_interface == NULL) { return; } - struct t_train_engine_instance_io * const train_engine_instance_io = + struct t_train_engine_instance_io *tr_eng_instance_io = &dyn_containers_interface->train_engine_instances_io[dyn_containers_engine_instance]; - + pthread_mutex_lock(&dyn_containers_mutex); - train_engine_instance_io->input_release = true; + tr_eng_instance_io->input_release = true; pthread_mutex_unlock(&dyn_containers_mutex); - + do { usleep(let_period_us); - } while (train_engine_instance_io->output_in_use); + } while (tr_eng_instance_io->output_in_use); pthread_mutex_lock(&dyn_containers_mutex); - train_engine_instance_io->input_release = false; + tr_eng_instance_io->input_release = false; pthread_mutex_unlock(&dyn_containers_mutex); - - syslog_server(LOG_NOTICE, "Train instance %d released", dyn_containers_engine_instance); + + syslog_server(LOG_NOTICE, "Train engine instance %d released", dyn_containers_engine_instance); } -void dyn_containers_set_train_engine_instance_inputs(const int dyn_containers_engine_instance, - const int requested_speed, - const char requested_forwards) { - struct t_train_engine_instance_io * const train_engine_instance_io = - &dyn_containers_interface->train_engine_instances_io[dyn_containers_engine_instance]; - +void dyn_containers_set_train_engine_instance_inputs(int dyn_containers_engine_instance, + int requested_speed, + bool requested_forwards) { + if (dyn_containers_interface == NULL) { + return; + } + struct t_train_engine_instance_io *tr_eng_instance_io = + &dyn_containers_interface->train_engine_instances_io[dyn_containers_engine_instance]; + pthread_mutex_lock(&dyn_containers_mutex); - train_engine_instance_io->input_requested_speed = requested_speed; - train_engine_instance_io->input_requested_forwards = requested_forwards; + tr_eng_instance_io->input_requested_speed = requested_speed; + tr_eng_instance_io->input_requested_forwards = requested_forwards; pthread_mutex_unlock(&dyn_containers_mutex); } // Finds the first available slot for a interlocker -// Can only be called while the dyn_containers_mutex is locked -const int dyn_containers_get_free_interlocker_slot(void) { +// Shall only be called while the dyn_containers_mutex is locked +int dyn_containers_get_free_interlocker_slot(void) { + if (dyn_containers_interface == NULL) { + return -1; + } for (int i = 0; i < INTERLOCKER_COUNT_MAX; i++) { - struct t_interlocker_io * const interlocker_io = - &dyn_containers_interface->interlockers_io[i]; + struct t_interlocker_io *interlocker_io = &dyn_containers_interface->interlockers_io[i]; if (!interlocker_io->output_in_use) { return i; } @@ -461,13 +477,14 @@ const int dyn_containers_get_free_interlocker_slot(void) { } // Finds the slot of a interlocker -// Can only be called while the dyn_containers_mutex is locked -const int dyn_containers_get_interlocker_slot(const char name[]) { +// Shall only be called while the dyn_containers_mutex is locked +int dyn_containers_get_interlocker_slot(const char name[]) { + if (dyn_containers_interface == NULL) { + return -1; + } for (int i = 0; i < INTERLOCKER_COUNT_MAX; i++) { - struct t_interlocker_io * const interlocker_io = - &dyn_containers_interface->interlockers_io[i]; - if (interlocker_io->output_in_use && - strcmp(interlocker_io->output_name, name) == 0) { + const struct t_interlocker_io *interlocker_io = &dyn_containers_interface->interlockers_io[i]; + if (interlocker_io->output_in_use && strcmp(interlocker_io->output_name, name) == 0) { return i; } } @@ -475,10 +492,13 @@ const int dyn_containers_get_interlocker_slot(const char name[]) { } // Loads interlocker into specified slot -// Can only be called while the dyn_containers_mutex is locked -void dyn_containers_set_interlocker(const int interlocker_slot, const char filepath[]) { - struct t_interlocker_io * const interlocker_io = - &dyn_containers_interface->interlockers_io[interlocker_slot]; +// Shall only be called while the dyn_containers_mutex is locked +void dyn_containers_set_interlocker(int interlocker_slot, const char filepath[]) { + if (dyn_containers_interface == NULL) { + return; + } + struct t_interlocker_io *interlocker_io = + &dyn_containers_interface->interlockers_io[interlocker_slot]; interlocker_io->input_load = true; interlocker_io->input_unload = false; strcpy(interlocker_io->input_filepath, filepath); @@ -497,45 +517,49 @@ void dyn_containers_set_interlocker(const int interlocker_slot, const char filep } // Unloads interlocker at specified slot -// Can only be called while the dyn_containers_mutex is locked -bool dyn_containers_free_interlocker(const int interlocker_slot) { +// Shall only be called while the dyn_containers_mutex is locked +bool dyn_containers_free_interlocker(int interlocker_slot) { + if (dyn_containers_interface == NULL) { + return false; + } // Check that no instance of the interlocker is in use for (size_t i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { - struct t_interlocker_instance_io * const interlocker_instance = - &dyn_containers_interface->interlocker_instances_io[i]; + struct t_interlocker_instance_io *interlocker_instance = + &dyn_containers_interface->interlocker_instances_io[i]; if (interlocker_instance->output_in_use && interlocker_instance->output_interlocker_type == interlocker_slot) { return false; } } - + // Unload the interlocker - struct t_interlocker_io * const interlocker_io = - &dyn_containers_interface->interlockers_io[interlocker_slot]; + struct t_interlocker_io *interlocker_io = + &dyn_containers_interface->interlockers_io[interlocker_slot]; interlocker_io->input_load = false; interlocker_io->input_unload = true; pthread_mutex_unlock(&dyn_containers_mutex); syslog_server(LOG_NOTICE, - "Waiting for interlocker %s at slot %d to be unloaded", - interlocker_io->input_filepath, interlocker_slot); + "Waiting for interlocker %s at slot %d to be unloaded", + interlocker_io->input_filepath, interlocker_slot); strcpy(interlocker_io->input_filepath, ""); while (interlocker_io->output_in_use) { usleep(let_period_us); } pthread_mutex_lock(&dyn_containers_mutex); interlocker_io->input_unload = false; - syslog_server(LOG_NOTICE, - "Unloaded interlocker at slot %d", - interlocker_slot); + syslog_server(LOG_NOTICE, "Unloaded interlocker at slot %d", interlocker_slot); return true; } GArray *dyn_containers_get_interlockers_arr(void) { + if (dyn_containers_interface == NULL) { + return NULL; + } GArray *interlocker_names = g_array_new(FALSE, FALSE, sizeof(char *)); pthread_mutex_lock(&dyn_containers_mutex); for (size_t i = 0; i < INTERLOCKER_COUNT_MAX; ++i) { - const struct t_interlocker_io * interlocker_io = - &dyn_containers_interface->interlockers_io[i]; + const struct t_interlocker_io *interlocker_io = + &dyn_containers_interface->interlockers_io[i]; if (!interlocker_io->output_in_use) { continue; } @@ -552,10 +576,8 @@ GArray *dyn_containers_get_interlockers_arr(void) { GString *dyn_containers_get_interlockers(void) { GString *interlocker_names = g_string_new(NULL); - int i = 0; - for (i = 0; i < INTERLOCKER_COUNT_MAX; i++) { - struct t_interlocker_io * const interlocker_io = - &dyn_containers_interface->interlockers_io[i]; + for (int i = 0; i < INTERLOCKER_COUNT_MAX; i++) { + struct t_interlocker_io *interlocker_io = &dyn_containers_interface->interlockers_io[i]; if (!interlocker_io->output_in_use) { continue; } @@ -568,24 +590,29 @@ GString *dyn_containers_get_interlockers(void) { return interlocker_names; } -int dyn_containers_set_interlocker_instance(t_interlocker_data * const interlocker_instance, +int dyn_containers_set_interlocker_instance(t_interlocker_data *interlocker_instance, const char *interlocker) { if (interlocker == NULL) { - syslog_server(LOG_ERR, "Could not set interlocker because it was NULL"); + syslog_server(LOG_ERR, "Set interlocker instance: invalid interlocker parameter (NULL)"); + return 1; + } else if (interlocker_instance == NULL) { + syslog_server(LOG_ERR, + "Set interlocker instance: invalid interlocker_instance parameter (NULL)"); + return 1; + } else if (dyn_containers_interface == NULL) { return 1; } pthread_mutex_lock(&dyn_containers_mutex); int interlocker_type = -1; for (int i = 0; i < INTERLOCKER_COUNT_MAX; i++) { - struct t_interlocker_io * const interlocker_io = - &dyn_containers_interface->interlockers_io[i]; + struct t_interlocker_io *interlocker_io = &dyn_containers_interface->interlockers_io[i]; if (strcmp(interlocker_io->output_name, interlocker) == 0) { interlocker_type = i; break; } } - + if (interlocker_type == -1) { pthread_mutex_unlock(&dyn_containers_mutex); syslog_server(LOG_ERR, "Interlocker %s could not be found", interlocker); @@ -593,14 +620,14 @@ int dyn_containers_set_interlocker_instance(t_interlocker_data * const interlock } for (int i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { - struct t_interlocker_instance_io * const interlocker_instance_io = - &dyn_containers_interface->interlocker_instances_io[i]; + struct t_interlocker_instance_io *interlocker_instance_io = + &dyn_containers_interface->interlocker_instances_io[i]; if (!interlocker_instance_io->output_in_use) { interlocker_instance_io->input_grab = true; interlocker_instance_io->input_interlocker_type = interlocker_type; interlocker_instance_io->input_reset = false; pthread_mutex_unlock(&dyn_containers_mutex); - + do { usleep(let_period_us); } while (!interlocker_instance_io->output_in_use); @@ -610,7 +637,9 @@ int dyn_containers_set_interlocker_instance(t_interlocker_data * const interlock pthread_mutex_unlock(&dyn_containers_mutex); interlocker_instance->dyn_containers_interlocker_instance = i; - syslog_server(LOG_NOTICE, "Interlocker %d in use by instance %d", interlocker_type, *interlocker_instance); + syslog_server(LOG_NOTICE, + "Interlocker %d in use by instance %d", + interlocker_type, *interlocker_instance); return 0; } } @@ -620,18 +649,22 @@ int dyn_containers_set_interlocker_instance(t_interlocker_data * const interlock return 1; } -void dyn_containers_free_interlocker_instance(t_interlocker_data * const interlocker_instance) { - if (dyn_containers_interface == NULL) { +void dyn_containers_free_interlocker_instance(t_interlocker_data *interlocker_instance) { + if (interlocker_instance == NULL) { + syslog_server(LOG_ERR, + "Free interlocker instance: invalid interlocker_instance parameter (NULL)"); + return; + } else if (dyn_containers_interface == NULL) { return; } + const int inst_index = interlocker_instance->dyn_containers_interlocker_instance; + struct t_interlocker_instance_io *interlocker_instance_io = + &dyn_containers_interface->interlocker_instances_io[inst_index]; - struct t_interlocker_instance_io * const interlocker_instance_io = - &dyn_containers_interface->interlocker_instances_io[interlocker_instance->dyn_containers_interlocker_instance]; - pthread_mutex_lock(&dyn_containers_mutex); interlocker_instance_io->input_release = true; pthread_mutex_unlock(&dyn_containers_mutex); - + do { usleep(let_period_us); } while (interlocker_instance_io->output_in_use); @@ -639,28 +672,49 @@ void dyn_containers_free_interlocker_instance(t_interlocker_data * const interlo pthread_mutex_lock(&dyn_containers_mutex); interlocker_instance_io->input_release = false; pthread_mutex_unlock(&dyn_containers_mutex); - - syslog_server(LOG_NOTICE, "Interlocker instance %d released", + + syslog_server(LOG_NOTICE, + "Interlocker instance %d released", interlocker_instance->dyn_containers_interlocker_instance); } -void dyn_containers_set_interlocker_instance_reset(t_interlocker_data * const interlocker_instance, - const bool reset) { - struct t_interlocker_instance_io * const interlocker_instance_io = - &dyn_containers_interface->interlocker_instances_io[interlocker_instance->dyn_containers_interlocker_instance]; - +void dyn_containers_set_interlocker_instance_reset(t_interlocker_data *interlocker_instance, + bool reset) { + if (interlocker_instance == NULL) { + syslog_server(LOG_ERR, + "Set interlocker instance reset: " + "invalid interlocker_instance parameter (NULL)"); + return; + } else if (dyn_containers_interface == NULL) { + return; + } + const int inst_index = interlocker_instance->dyn_containers_interlocker_instance; + struct t_interlocker_instance_io *interlocker_instance_io = + &dyn_containers_interface->interlocker_instances_io[inst_index]; + pthread_mutex_lock(&dyn_containers_mutex); interlocker_instance_io->input_reset = reset; pthread_mutex_unlock(&dyn_containers_mutex); } -void dyn_containers_set_interlocker_instance_inputs(t_interlocker_data * const interlocker_instance, +void dyn_containers_set_interlocker_instance_inputs(t_interlocker_data *interlocker_instance, const char *src_signal_id, const char *dst_signal_id, const char *train_id) { - struct t_interlocker_instance_io * const interlocker_instance_io = - &dyn_containers_interface->interlocker_instances_io[interlocker_instance->dyn_containers_interlocker_instance]; - + if (interlocker_instance == NULL + || src_signal_id == NULL + || dst_signal_id == NULL + || train_id == NULL) { + + syslog_server(LOG_ERR, "Set interlocker instance outputs: invalid (NULL) parameters"); + return; + } else if (dyn_containers_interface == NULL) { + return; + } + const int inst_index = interlocker_instance->dyn_containers_interlocker_instance; + struct t_interlocker_instance_io *interlocker_instance_io = + &dyn_containers_interface->interlocker_instances_io[inst_index]; + pthread_mutex_lock(&dyn_containers_mutex); interlocker_instance_io->input_reset = true; strncpy(interlocker_instance_io->input_src_signal_id, src_signal_id, NAME_MAX); @@ -669,10 +723,17 @@ void dyn_containers_set_interlocker_instance_inputs(t_interlocker_data * const i pthread_mutex_unlock(&dyn_containers_mutex); } -void dyn_containers_get_interlocker_instance_outputs(t_interlocker_data * const interlocker_instance, +void dyn_containers_get_interlocker_instance_outputs(t_interlocker_data *interlocker_instance, struct t_interlocker_instance_io *interlocker_instance_io_copy) { - struct t_interlocker_instance_io * const interlocker_instance_io = - &dyn_containers_interface->interlocker_instances_io[interlocker_instance->dyn_containers_interlocker_instance]; + if (interlocker_instance == NULL || interlocker_instance_io_copy == NULL) { + syslog_server(LOG_ERR, "Get interlocker instance outputs: invalid (NULL) parameters"); + return; + } else if (dyn_containers_interface == NULL) { + return; + } + const int inst_index = interlocker_instance->dyn_containers_interlocker_instance; + struct t_interlocker_instance_io *interlocker_instance_io = + &dyn_containers_interface->interlocker_instances_io[inst_index]; pthread_mutex_lock(&dyn_containers_mutex); interlocker_instance_io_copy->output_in_use = interlocker_instance_io->output_in_use; diff --git a/server/src/dyn_containers_interface.h b/server/src/dyn_containers_interface.h index 11db2e4a..9df8d5e8 100644 --- a/server/src/dyn_containers_interface.h +++ b/server/src/dyn_containers_interface.h @@ -116,65 +116,65 @@ int dyn_containers_start(void); void dyn_containers_stop(void); -const bool dyn_containers_is_running(void); +bool dyn_containers_is_running(void); // Obtains a shared memory segment based on a given key -void dyn_containers_shm_create(t_dyn_shm_config * const shm_config, - const int shm_permissions, const key_t shm_key, - t_dyn_containers_interface ** const shm_payload); +void dyn_containers_shm_create(t_dyn_shm_config *shm_config, + int shm_permissions, key_t shm_key, + t_dyn_containers_interface **shm_payload); // Detaches the shared memory segment from our data space -void dyn_containers_shm_detach(t_dyn_containers_interface ** const shm_payload); +void dyn_containers_shm_detach(t_dyn_containers_interface **shm_payload); // Deletes the shared memory segment from our data space -void dyn_containers_shm_delete(t_dyn_shm_config * const shm_config); +void dyn_containers_shm_delete(t_dyn_shm_config *shm_config); // Finds the first available slot for a train engine // Can only be called while the dyn_containers_mutex is locked -const int dyn_containers_get_free_engine_slot(void); +int dyn_containers_get_free_engine_slot(void); // Finds the slot of a train engine // Can only be called while the dyn_containers_mutex is locked -const int dyn_containers_get_engine_slot(const char name[]); +int dyn_containers_get_engine_slot(const char name[]); // Loads train engine into specified slot // Can only be called while the dyn_containers_mutex is locked -void dyn_containers_set_engine(const int engine_slot, const char filepath[]); +void dyn_containers_set_engine(int engine_slot, const char filepath[]); // Unloads train engine at specified slot // Can only be called while the dyn_containers_mutex is locked -bool dyn_containers_free_engine(const int engine_slot); +bool dyn_containers_free_engine(int engine_slot); // Gets a char*-GArray with the names of train engines that have been loaded. GArray *dyn_containers_get_train_engines_arr(void); // Finds the requested train engine, and finds an available train engine instance to use -int dyn_containers_set_train_engine_instance(t_train_data * const grabbed_train, +int dyn_containers_set_train_engine_instance(t_train_data *grabbed_train, const char *train, const char *engine); -void dyn_containers_free_train_engine_instance(const int dyn_containers_engine_instance); +void dyn_containers_free_train_engine_instance(int dyn_containers_engine_instance); -void dyn_containers_set_train_engine_instance_inputs(const int dyn_containers_engine_instance, - const int requested_speed, - const char requested_forwards); +void dyn_containers_set_train_engine_instance_inputs(int dyn_containers_engine_instance, + int requested_speed, + bool requested_forwards); // Finds the first available slot for a interlocker // Can only be called while the dyn_containers_mutex is locked -const int dyn_containers_get_free_interlocker_slot(void); +int dyn_containers_get_free_interlocker_slot(void); // Finds the slot of a interlocker // Can only be called while the dyn_containers_mutex is locked -const int dyn_containers_get_interlocker_slot(const char name[]); +int dyn_containers_get_interlocker_slot(const char name[]); // Loads interlocker into specified slot // Can only be called while the dyn_containers_mutex is locked -void dyn_containers_set_interlocker(const int interlocker_slot, const char filepath[]); +void dyn_containers_set_interlocker(int interlocker_slot, const char filepath[]); // Unloads interlocker at specified slot // Can only be called while the dyn_containers_mutex is locked -bool dyn_containers_free_interlocker(const int interlocker_slot); +bool dyn_containers_free_interlocker(int interlocker_slot); // Gets a char*-GArray with the names of interlockers that have been loaded GArray *dyn_containers_get_interlockers_arr(void); @@ -184,20 +184,20 @@ GString *dyn_containers_get_interlockers(void); // Finds the requested interlocker, and finds an available interlocker instance to use; // returns 1 on error/failure to set interlocker instance, and 0 on success. -int dyn_containers_set_interlocker_instance(t_interlocker_data * const interlocker_instance, +int dyn_containers_set_interlocker_instance(t_interlocker_data *interlocker_instance, const char *interlocker); -void dyn_containers_free_interlocker_instance(t_interlocker_data * const interlocker_instance); +void dyn_containers_free_interlocker_instance(t_interlocker_data *interlocker_instance); -void dyn_containers_set_interlocker_instance_reset(t_interlocker_data * const interlocker_instance, - const bool reset); +void dyn_containers_set_interlocker_instance_reset(t_interlocker_data *interlocker_instance, + bool reset); -void dyn_containers_set_interlocker_instance_inputs(t_interlocker_data * const interlocker_instance, +void dyn_containers_set_interlocker_instance_inputs(t_interlocker_data *interlocker_instance, const char *src_signal_id, const char *dst_signal_id, const char *train_id); -void dyn_containers_get_interlocker_instance_outputs(t_interlocker_data * const interlocker_instance, +void dyn_containers_get_interlocker_instance_outputs(t_interlocker_data *interlocker_instance, struct t_interlocker_instance_io *interlocker_instance_io_copy); #endif // DYN_CONTAINERS_INTERFACE_H diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index cd8b9fad..255a9a60 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -611,7 +611,7 @@ static bool drive_route(const int grab_id, const char* train_id, const char *rou pthread_mutex_lock(&grabbed_trains_mutex); const int engine_instance = grabbed_trains[grab_id].dyn_containers_engine_instance; - const char requested_forwards = is_forward_driving(route, train_id); + const bool requested_forwards = is_forward_driving(route, train_id); if (is_automatic) { dyn_containers_set_train_engine_instance_inputs(engine_instance, DRIVING_SPEED_SLOW, From 6699947ae30cd2510617d3c50e38f35a58438db7 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 16:54:06 +0100 Subject: [PATCH 052/125] formatting improved for dynlib.c --- server/src/dynlib.c | 75 ++++++++++++++++++++++++++++----------------- 1 file changed, 47 insertions(+), 28 deletions(-) diff --git a/server/src/dynlib.c b/server/src/dynlib.c index 39612d4a..12bab040 100644 --- a/server/src/dynlib.c +++ b/server/src/dynlib.c @@ -64,17 +64,15 @@ dynlib_status dynlib_compile_scchart(const char filepath[], const char output_di // Compile the SCCharts model to a C file char command[MAX_INPUT + 2 * (PATH_MAX + NAME_MAX)]; sprintf(command, "%s -o %s %s.sctx", sccharts_compiler_c_command, output_dir, filepath); - + int ret = system(command); if (ret == -1 || WEXITSTATUS(ret) != 0) { return DYNLIB_COMPILE_SCCHARTS_C_ERR; } - + // Compile the C file into a shared library sprintf(command, "%s -o %s/lib%s.so %s/%s.c", - c_compiler_command, - output_dir, filename, - output_dir, filename); + c_compiler_command, output_dir, filename, output_dir, filename); ret = system(command); if (ret == -1 || WEXITSTATUS(ret) != 0) { @@ -104,7 +102,8 @@ dynlib_status dynlib_compile_bahndsl(const char filepath[], const char output_di ret = system(command); if (ret == -1 || WEXITSTATUS(ret) != 0) { // Try and move the shared library with *.dylib extension out of the bahnc folder - sprintf(command, bahndsl_move_command, output_dir, filename, "dylib", output_dir, filename, "dylib"); + sprintf(command, bahndsl_move_command, output_dir, + filename, "dylib", output_dir, filename, "dylib"); ret = system(command); if (ret == -1 || WEXITSTATUS(ret) != 0) { @@ -133,11 +132,13 @@ dynlib_status dynlib_load(dynlib_data *library, const char filepath[], dynlib_ty library->lib_handle = dlopen(library->filepath, RTLD_LAZY); if (library->lib_handle == NULL) { - syslog_server(LOG_ERR, "Could not load dynamic library %s.\n%s", library->filepath, dlerror()); + syslog_server(LOG_ERR, + "Could not load dynamic library %s. Error message: %s", + library->filepath, dlerror()); return DYNLIB_LOAD_ERR; } } - + library->type = type; // Try and locate the functions of the library interface @@ -169,57 +170,75 @@ dynlib_status dynlib_load(dynlib_data *library, const char filepath[], dynlib_ty dynlib_status dynlib_load_train_engine_funcs(dynlib_data *library) { char *error; - - *(void **) (&library->train_engine_reset_func) = dlsym(library->lib_handle, dynlib_symbol_train_engine_reset); + + *(void **) (&library->train_engine_reset_func) = + dlsym(library->lib_handle, dynlib_symbol_train_engine_reset); if ((error = dlerror()) != NULL) { - syslog_server(LOG_ERR, "Could not find address of symbol %s.\n%s", dynlib_symbol_train_engine_reset, error); + syslog_server(LOG_ERR, + "Could not find address of symbol %s. Error message: %s", + dynlib_symbol_train_engine_reset, error); return DYNLIB_LOAD_RESET_ERR; } dlerror(); - *(void **) (&library->train_engine_tick_func) = dlsym(library->lib_handle, dynlib_symbol_train_engine_tick); + *(void **) (&library->train_engine_tick_func) = + dlsym(library->lib_handle, dynlib_symbol_train_engine_tick); if ((error = dlerror()) != NULL) { - syslog_server(LOG_ERR, "Could not find address of symbol %s.\n%s", dynlib_symbol_train_engine_tick, error); + syslog_server(LOG_ERR, + "Could not find address of symbol %s. Error message: %s", + dynlib_symbol_train_engine_tick, error); return DYNLIB_LOAD_TICK_ERR; } - + return DYNLIB_LOAD_SUCCESS; } dynlib_status dynlib_load_interlocker_funcs(dynlib_data *library) { char *error; - - *(void **) (&library->interlocker_reset_func) = dlsym(library->lib_handle, dynlib_symbol_interlocker_reset); + + *(void **) (&library->interlocker_reset_func) = + dlsym(library->lib_handle, dynlib_symbol_interlocker_reset); if ((error = dlerror()) != NULL) { - syslog_server(LOG_ERR, "Could not find address of symbol %s.\n%s", dynlib_symbol_interlocker_reset, error); + syslog_server(LOG_ERR, + "Could not find address of symbol %s. Error message: %s", + dynlib_symbol_interlocker_reset, error); return DYNLIB_LOAD_RESET_ERR; } - + dlerror(); - *(void **) (&library->interlocker_tick_func) = dlsym(library->lib_handle, dynlib_symbol_interlocker_tick); + *(void **) (&library->interlocker_tick_func) = + dlsym(library->lib_handle, dynlib_symbol_interlocker_tick); if ((error = dlerror()) != NULL) { - syslog_server(LOG_ERR, "Could not find address of symbol %s.\n%s", dynlib_symbol_interlocker_tick, error); + syslog_server(LOG_ERR, + "Could not find address of symbol %s. Error message: %s", + dynlib_symbol_interlocker_tick, error); return DYNLIB_LOAD_TICK_ERR; } - + return DYNLIB_LOAD_SUCCESS; } dynlib_status dynlib_load_drive_route_funcs(dynlib_data *library) { char *error; - - *(void **) (&library->drive_route_reset_func) = dlsym(library->lib_handle, dynlib_symbol_drive_route_reset); + + *(void **) (&library->drive_route_reset_func) = + dlsym(library->lib_handle, dynlib_symbol_drive_route_reset); if ((error = dlerror()) != NULL) { - syslog_server(LOG_ERR, "Could not find address of symbol %s.\n%s", dynlib_symbol_drive_route_reset, error); + syslog_server(LOG_ERR, + "Could not find address of symbol %s. Error message: %s", + dynlib_symbol_drive_route_reset, error); return DYNLIB_LOAD_RESET_ERR; } - - *(void **) (&library->drive_route_tick_func) = dlsym(library->lib_handle, dynlib_symbol_drive_route_tick); + + *(void **) (&library->drive_route_tick_func) = + dlsym(library->lib_handle, dynlib_symbol_drive_route_tick); if ((error = dlerror()) != NULL) { - syslog_server(LOG_ERR, "Could not find address of symbol %s.\n%s", dynlib_symbol_drive_route_tick, error); + syslog_server(LOG_ERR, + "Could not find address of symbol %s. Error message: %s", + dynlib_symbol_drive_route_tick, error); return DYNLIB_LOAD_TICK_ERR; } - + return DYNLIB_LOAD_SUCCESS; } From 03f212afbc35e220323fb4a2dbfefb26e2c092ce Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 17:16:46 +0100 Subject: [PATCH 053/125] formatting, trailing whitespace on non-empty lines + intentional trailing whitespace on in-func empty lines --- server/src/dyn_containers.forec | 12 ++-- server/src/dynlib.c | 2 +- server/src/handler_admin.c | 2 +- server/src/handler_controller.c | 56 +++++++++---------- server/src/handler_driver.c | 10 ++-- server/src/handler_monitor.c | 36 ++++++------ server/src/handler_upload.c | 32 +++++------ server/src/interlocking.c | 28 +++++----- server/src/param_verification.c | 16 +++--- server/src/server.c | 22 ++++---- .../src/websocket_uploader/engine_uploader.c | 4 +- 11 files changed, 108 insertions(+), 112 deletions(-) diff --git a/server/src/dyn_containers.forec b/server/src/dyn_containers.forec index 64f463e7..4d78f27a 100644 --- a/server/src/dyn_containers.forec +++ b/server/src/dyn_containers.forec @@ -929,7 +929,7 @@ thread interlockerInstance0(void) { // Reset the interlocker so that it can execute its algorithm from the start dynlib_interlocker_reset(&interlockers[forec_intern_output_interlocker_instance_0.interlocker_type], &interlockerInstanceData[instance]); - forec_intern_output_interlocker_instance_0.has_reset = true; + forec_intern_output_interlocker_instance_0.has_reset = true; if (interlockerInstanceData[instance].route_id == NULL) { interlockerInstanceData[instance].route_id = ""; @@ -1023,7 +1023,7 @@ thread interlockerInstance1(void) { // Reset the interlocker so that it can execute its algorithm from the start dynlib_interlocker_reset(&interlockers[forec_intern_output_interlocker_instance_1.interlocker_type], &interlockerInstanceData[instance]); - forec_intern_output_interlocker_instance_1.has_reset = true; + forec_intern_output_interlocker_instance_1.has_reset = true; if (interlockerInstanceData[instance].route_id == NULL) { interlockerInstanceData[instance].route_id = ""; @@ -1116,7 +1116,7 @@ thread interlockerInstance2(void) { // Reset the interlocker so that it can execute its alglorithm from the start dynlib_interlocker_reset(&interlockers[forec_intern_output_interlocker_instance_2.interlocker_type], &interlockerInstanceData[instance]); - forec_intern_output_interlocker_instance_2.has_reset = true; + forec_intern_output_interlocker_instance_2.has_reset = true; if (interlockerInstanceData[instance].route_id == NULL) { interlockerInstanceData[instance].route_id = ""; @@ -1209,7 +1209,7 @@ thread interlockerInstance3(void) { // Reset the interlocker so that it can execute its alglorithm from the start dynlib_interlocker_reset(&interlockers[forec_intern_output_interlocker_instance_3.interlocker_type], &interlockerInstanceData[instance]); - forec_intern_output_interlocker_instance_3.has_reset = true; + forec_intern_output_interlocker_instance_3.has_reset = true; if (interlockerInstanceData[instance].route_id == NULL) { interlockerInstanceData[instance].route_id = ""; @@ -1331,7 +1331,7 @@ void copyInterlockerInputs(t_forec_intern_input_interlocker *internal, void copyInterlockerOutputs(struct t_interlocker_io *external, t_forec_intern_output_interlocker *internal) { - external->output_in_use = internal->in_use; + external->output_in_use = internal->in_use; strncpy(external->output_name, internal->name, name_max); } @@ -1468,7 +1468,7 @@ void printout(const char *threadName, const dynlib_status status, const dynlib_d break; case (DYNLIB_COMPILE_SHARED_BAHNDSL_ERR): syslog_server(LOG_ERR, "%s: Could not compile BahnDSL file into shared library '%s'", threadName, library->filepath); - break; + break; case (DYNLIB_COMPILE_SHARED_SCCHARTS_ERR): syslog_server(LOG_ERR, "%s: Could not compile C file into shared library '%s'", threadName, library->filepath); break; diff --git a/server/src/dynlib.c b/server/src/dynlib.c index 12bab040..e5978939 100644 --- a/server/src/dynlib.c +++ b/server/src/dynlib.c @@ -91,7 +91,7 @@ dynlib_status dynlib_compile_bahndsl(const char filepath[], const char output_di // Compile the BahnDSL model to a shared library char command[MAX_INPUT + 2 * (PATH_MAX + NAME_MAX)]; - sprintf(command, bahndsl_compiler_command, output_dir, output_dir, filename); + sprintf(command, bahndsl_compiler_command, output_dir, output_dir, filename); int ret = system(command); if (ret == -1 || WEXITSTATUS(ret) != 0) { return DYNLIB_COMPILE_SHARED_BAHNDSL_ERR; diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index b329be5f..414a9c17 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -121,7 +121,7 @@ static bool startup_server(void) { } running = true; - pthread_create(&poll_bidib_messages_thread, NULL, poll_bidib_messages, NULL); + pthread_create(&poll_bidib_messages_thread, NULL, poll_bidib_messages, NULL); return true; } diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 40adb049..90c705e4 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -78,7 +78,7 @@ static int set_interlocker(const char *interlocker_name) { interlocker_name); return -1; } - + for (size_t i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { // Look for not already used interlocker instance slot (indicated by is_valid). if (!interlocker_instances[i].is_valid) { @@ -114,7 +114,7 @@ static int unset_interlocker(const char *interlocker_name) { // Selected interlocker instance is -1 -> no interlocker to unset. return -1; } - + if (strcmp(selected_interlocker_name->str, interlocker_name) == 0 && interlocker_instances[selected_interlocker_instance].is_valid) { dyn_containers_free_interlocker_instance(&interlocker_instances[selected_interlocker_instance]); @@ -160,7 +160,7 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ return NULL; } GArray* conflict_route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); - + // When a sectional interlocker is in use, use the sectional checker to // check for route availability. bool sectional_in_use = (g_strrstr(selected_interlocker_name->str, "sectional") != NULL); @@ -211,11 +211,11 @@ bool get_route_is_clear(const char *route_id) { return false; } bahn_data_util_init_cached_track_state(); - + // Check that all route signals are in the Stop aspect char *signal_ids[max_signals_in_route_assmptn]; - const size_t signal_ids_len = config_get_array_string_value("route", route_id, - "route_signals", signal_ids); + const size_t signal_ids_len = + config_get_array_string_value("route", route_id, "route_signals", signal_ids); for (size_t i = 0; i < signal_ids_len; i++) { const char *signal_state = track_state_get_value(signal_ids[i]); if (strcmp(signal_state, "stop")) { @@ -223,7 +223,7 @@ bool get_route_is_clear(const char *route_id) { return false; } } - + // Check that all blocks are unoccupied char *item_ids[max_items_in_route_assmptn]; const size_t item_ids_len = config_get_array_string_value("route", route_id, "path", item_ids); @@ -233,8 +233,8 @@ bool get_route_is_clear(const char *route_id) { return false; } } - - bahn_data_util_free_cached_track_state(); + + bahn_data_util_free_cached_track_state(); return true; } @@ -252,31 +252,31 @@ GString *grant_route(const char *train_id, const char *source_id, const char *de train_id, source_id, destination_id); return g_string_new("no_interlocker"); } - + bahn_data_util_init_cached_track_state(); - + // Ask the interlocker to grant requested route. // May take multiple ticks to process the request. dyn_containers_set_interlocker_instance_inputs(&interlocker_instances[selected_interlocker_instance], source_id, destination_id, train_id); - + struct t_interlocker_instance_io interlocker_instance_io; do { usleep(let_period_us); dyn_containers_get_interlocker_instance_outputs(&interlocker_instances[selected_interlocker_instance], &interlocker_instance_io); } while (!interlocker_instance_io.output_has_reset); - + dyn_containers_set_interlocker_instance_reset(&interlocker_instances[selected_interlocker_instance], false); - + do { usleep(let_period_us); dyn_containers_get_interlocker_instance_outputs(&interlocker_instances[selected_interlocker_instance], &interlocker_instance_io); } while (!interlocker_instance_io.output_terminated); - + // Return the result GString *g_route_id_copy = g_string_new(interlocker_instance_io.output_route_id); bahn_data_util_free_cached_track_state(); @@ -337,7 +337,7 @@ const char *grant_route_id(const char *train_id, const char *route_id) { train_id, route_id); return "not_grantable"; } - + // Check whether the route is physically available if (!get_route_is_clear(route_id)) { pthread_mutex_unlock(&interlocker_mutex); @@ -346,9 +346,9 @@ const char *grant_route_id(const char *train_id, const char *route_id) { train_id, route_id); return "not_clear"; } - + // Grant the route to the train - + syslog_server(LOG_INFO, "Grant route id - train: %s route: %s - checks passed, now grant route", train_id, route_id); @@ -362,7 +362,7 @@ const char *grant_route_id(const char *train_id, const char *route_id) { train_id, route_id); return "not_grantable"; } - + // Set the points to their required positions for (size_t i = 0; i < route->points->len; i++) { const t_interlocking_point point = g_array_index(route->points, t_interlocking_point, i); @@ -370,7 +370,7 @@ const char *grant_route_id(const char *train_id, const char *route_id) { bidib_switch_point(point.id, position); bidib_flush(); } - + // Set the signals to their required aspects for (size_t i = 0; i < route->signals->len - 1; i++) { const char *signal = g_array_index(route->signals, char *, i); @@ -383,7 +383,7 @@ const char *grant_route_id(const char *train_id, const char *route_id) { syslog_server(LOG_NOTICE, "Grant route id - train: %s route: %s - route granted", train_id, route_id); - + pthread_mutex_unlock(&interlocker_mutex); return "granted"; } @@ -407,7 +407,7 @@ bool release_route(const char *route_id) { const char *signal_aspect = "aspect_stop"; for (int signal_index = 0; signal_index < route->signals->len; signal_index++) { const char *signal_id = g_array_index(route->signals, char *, signal_index); - + if (bidib_set_signal(signal_id, signal_aspect)) { syslog_server(LOG_ERR, "Release route - route: %s - unable to set signal to aspect %s", @@ -416,7 +416,7 @@ bool release_route(const char *route_id) { bidib_flush(); } } - + free(route->train); route->train = NULL; syslog_server(LOG_NOTICE, "Release route - route: %s - released", route_id); @@ -433,7 +433,7 @@ bool release_route(const char *route_id) { bool reversers_state_update(void) { const int max_retries = 5; bool error = false; - + t_bidib_id_list_query rev_query = bidib_get_connected_reversers(); for (size_t i = 0; i < rev_query.length; i++) { const char *reverser_id = rev_query.ids[i]; @@ -441,7 +441,7 @@ bool reversers_state_update(void) { config_get_scalar_string_value("reverser", reverser_id, "board"); error |= bidib_request_reverser_state(reverser_id, reverser_board); bidib_flush(); - + bool state_unknown = true; for (int retry = 0; retry < max_retries && state_unknown; retry++) { t_bidib_reverser_state_query rev_state_query = bidib_get_reverser_state(reverser_id); @@ -452,13 +452,13 @@ bool reversers_state_update(void) { if (!state_unknown) { break; } - + usleep(50000); // 0.05s } - + error |= state_unknown; } - + bidib_free_id_list_query(rev_query); return !error; } diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 255a9a60..223d814f 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -175,7 +175,7 @@ static bool is_forward_driving(const t_interlocking_route *route, const char *tr train_id, is_forwards ? "forwards" : "backwards"); return is_forwards; } - + // 2. Check whether the train is on a block controlled by a reverser bool block_reversed = false; t_bidib_id_list_query rev_query = bidib_get_connected_reversers(); @@ -183,7 +183,7 @@ static bool is_forward_driving(const t_interlocking_route *route, const char *tr const char *reverser_id = rev_query.ids[i]; const char *reverser_block = config_get_scalar_string_value("reverser", reverser_id, "block"); - + if (strcmp(block_id, reverser_block) == 0) { const bool succ = reversers_state_update(); t_bidib_reverser_state_query rev_state_query = bidib_get_reverser_state(reverser_id); @@ -603,13 +603,13 @@ static bool drive_route(const int grab_id, const char* train_id, const char *rou syslog_server(LOG_ERR, "Drive route - unable to start driving because route is invalid"); return false; } - + // Driving starts: Driving direction is computed from the route orientation syslog_server(LOG_NOTICE, "Drive route - route: %s train: %s - %s driving starts", route->id, train_id, is_automatic ? "automatic" : "manual"); - pthread_mutex_lock(&grabbed_trains_mutex); + pthread_mutex_lock(&grabbed_trains_mutex); const int engine_instance = grabbed_trains[grab_id].dyn_containers_engine_instance; const bool requested_forwards = is_forward_driving(route, train_id); if (is_automatic) { @@ -1146,7 +1146,7 @@ o_con_status handler_drive_route(void *_, onion_request *req, onion_response *re } else if (strcmp(mode, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid driving mode"); syslog_server(LOG_ERR, "Request: Drive route - invalid driving mode"); - return OCS_PROCESSED; + return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); syslog_server(LOG_ERR, "Request: Drive route - invalid route id"); diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index c2b4e642..4d707de3 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -158,9 +158,8 @@ static GString *get_train_state_json_given_statequery(const char *train_id, append_start_of_obj(g_train_state, false); append_field_str_value(g_train_state, "id", train_id, true); append_field_bool_value(g_train_state, "grabbed", train_grabbed(train_id), true); - const char *orientation_str = (tr_state_query.data.orientation == - BIDIB_TRAIN_ORIENTATION_LEFT) ? - "left" : "right"; + const char *orientation_str = + (tr_state_query.data.orientation == BIDIB_TRAIN_ORIENTATION_LEFT) ? "left" : "right"; append_field_str_value(g_train_state, "orientation", orientation_str, true); const char *direction_str = tr_state_query.data.set_is_forwards ? "forwards" : "backwards"; append_field_str_value(g_train_state, "direction", direction_str, true); @@ -628,7 +627,6 @@ static GString *get_accessories_json(bool point_accessories) { field_target_reached_present); } - ///TODO: Remove the commented out part for actual pull request. // Decided not to have the signal type in this "get all signals" monitor endpoint. // But will have it in a "get signal details" kind of monitor endpoint. if (field_target_reached_present) { @@ -637,12 +635,7 @@ static GString *get_accessories_json(bool point_accessories) { || acc_state.board_accessory_state.execution_state == BIDIB_EXEC_STATE_REACHED_VERIFIED; append_field_bool_value(g_accs, "target_state_reached", target_state_reached_val, false); - } /*else if (!point_accessories) { - // if the accessory is not a point, include the field "type" (signal type, e.g. "block") - append_field_str_value(g_accs, "type", - config_get_scalar_string_value("signal", query.ids[i], "type"), - false); - }*/ + } append_end_of_obj(g_accs, i+1 < query.length); bidib_free_unified_accessory_state_query(acc_state); } @@ -708,7 +701,9 @@ static GString *get_point_details_json(const char *point_id) { // field: aspects GString *g_aspects_list = get_accessory_aspects_json_listonly(point_id, true); if (g_aspects_list == NULL) { - syslog_server(LOG_ERR, "Get point details json - point: %s - failed to get aspects list", point_id); + syslog_server(LOG_ERR, + "Get point details json - point: %s - failed to get aspects list", + point_id); g_string_free(g_details, true); return NULL; } @@ -911,8 +906,8 @@ static GString *get_segments_json() { // In case we know the segment is occupied, but no addresses are known, the // loop above won't add "unknown", so deal with this case separately if (seg_state_query.known - && seg_state_query.data.occupied - && seg_state_query.data.dcc_addresses == 0) { + && seg_state_query.data.occupied + && seg_state_query.data.dcc_addresses == 0) { g_string_append_printf(g_segments, "\"unknown\""); } @@ -1095,7 +1090,8 @@ o_con_status handler_get_verification_option(void *_, onion_request *req, onion_ build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_GET) { onion_response_set_code(res, HTTP_OK); - onion_response_printf(res, "{\n\"verification-enabled\": %s\n}", + onion_response_printf(res, + "{\n\"verification-enabled\": %s\n}", verification_enabled ? "true" : "false"); syslog_server(LOG_INFO, "Request: Get verification option - done"); return OCS_PROCESSED; @@ -1307,8 +1303,8 @@ o_con_status handler_get_route(void *_, onion_request *req, onion_response *res) // Provides data values seen by the environment (dyn_containers_interface.c) // and those set by the containers (dyn_containers.forec). static GString *debug_info(void) { - GString *info_str = g_string_new(""); - + GString *info_str = g_string_new(""); + const char info_template0[] = "Debug info: \n" "* dyn_containers_reaction_counter: %lld \n" @@ -1320,7 +1316,7 @@ static GString *debug_info(void) { dyn_containers_reaction_counter__global_0_0, dyn_containers_actuate_reaction_counter ); - + const char info_template1[] = "dyn_containers_interface: (external value, internal value) \n" " running: %d \n" @@ -1466,15 +1462,15 @@ o_con_status handler_get_debug_info(void *_, onion_request *req, onion_response // Returns extra debugging information related to the ForeC thread scheduler // in dyn_containers.forec. static GString *debug_info_extra(void) { - GString *info_str = g_string_new(""); - + GString *info_str = g_string_new(""); + const char info_template[] = "Debug info extra: \n" "* mainParReactionCounter: %d \n" "* mainParCore1.reactionCounter: %d \n" "* mainParCore2.reactionCounter: %d \n" "\n"; - + g_string_append_printf( info_str, info_template, mainParReactionCounter, diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index 4b5943f8..65ea2f3e 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -155,7 +155,7 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * } syslog_server(LOG_NOTICE, "Request: Upload engine - engine file: %s - start", filename); - + if (engine_file_exists(filename)) { syslog_server(LOG_ERR, "Request: Upload engine - engine file: %s - " @@ -169,14 +169,14 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * remove_file_extension(filename_noextension, filename, ".sctx"); char libname[sizeof(filename_noextension)]; snprintf(libname, sizeof(libname), "lib%s", filename_noextension); - + char final_filepath[PATH_MAX + NAME_MAX]; snprintf(final_filepath, sizeof(final_filepath), "%s/%s", engine_dir, filename); onion_shortcut_rename(temp_filepath, final_filepath); syslog_server(LOG_DEBUG, "Request: Upload engine - engine file: %s - copied engine file from %s to %s", filename, temp_filepath, final_filepath); - + if (verification_enabled) { verif_result engine_verif_result = verify_engine_model(final_filepath); if (!engine_verif_result.success) { @@ -199,7 +199,7 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * const dynlib_status status = dynlib_compile_scchart(filepath, engine_dir); if (status == DYNLIB_COMPILE_SCCHARTS_C_ERR || status == DYNLIB_COMPILE_SHARED_SCCHARTS_ERR) { remove_engine_files(libname); - + syslog_server(LOG_ERR, "Request: Upload engine - engine file: %s - could not be " "compiled into a C file and then to a shared library - abort", @@ -216,7 +216,7 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * if (engine_slot < 0) { pthread_mutex_unlock(&dyn_containers_mutex); remove_engine_files(libname); - + syslog_server(LOG_WARNING, "Request: Upload engine - engine file: %s - " "no available engine slot - abort", @@ -308,7 +308,7 @@ static bool remove_interlocker_files(const char library_name[]) { // Remove the prefix "libinterlocker_" char name[PATH_MAX + NAME_MAX]; strcpy(name, library_name + 15); - + int result = 0; char filepath[PATH_MAX + NAME_MAX]; for (int i = 0; i < interlocker_extensions_count; i++) { @@ -334,7 +334,7 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo syslog_server(LOG_NOTICE, "Request: Upload interlocker - interlocker file: %s - start", filename); - + if (interlocker_file_exists(filename)) { syslog_server(LOG_ERR, "Request: Upload interlocker - interlocker file: %s - " @@ -343,12 +343,12 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo send_common_feedback(res, HTTP_BAD_REQUEST, "Interlocker file already exists"); return OCS_PROCESSED; } - + char filename_noextension[NAME_MAX]; remove_file_extension(filename_noextension, filename, ".bahn"); char libname[sizeof(filename_noextension)]; snprintf(libname, sizeof(libname), "libinterlocker_%s", filename_noextension); - + char final_filepath[PATH_MAX + NAME_MAX]; snprintf(final_filepath, sizeof(final_filepath), "%s/%s", interlocker_dir, filename); onion_shortcut_rename(temp_filepath, final_filepath); @@ -356,7 +356,7 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo "Request: Upload interlocker - interlocker file: %s - " "copied interlocker BahnDSL file from %s to %s", filename, temp_filepath, final_filepath); - + char filepath[sizeof(final_filepath)]; remove_file_extension(filepath, final_filepath, ".bahn"); const dynlib_status status = dynlib_compile_bahndsl(filepath, interlocker_dir); @@ -372,13 +372,13 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo syslog_server(LOG_DEBUG, "Request: Upload interlocker - interlocker file: %s - interlocker compiled", filename); - + pthread_mutex_lock(&dyn_containers_mutex); const int interlocker_slot = dyn_containers_get_free_interlocker_slot(); if (interlocker_slot < 0) { pthread_mutex_unlock(&dyn_containers_mutex); remove_interlocker_files(libname); - + syslog_server(LOG_WARNING, "Request: Upload interlocker - interlocker file: %s - " "no available interlocker slot - abort", @@ -386,7 +386,7 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "No available interlocker slot"); return OCS_PROCESSED; } - + snprintf(filepath, sizeof(filepath), "%s/%s", interlocker_dir, libname); dyn_containers_set_interlocker(interlocker_slot, filepath); pthread_mutex_unlock(&dyn_containers_mutex); @@ -413,7 +413,7 @@ o_con_status handler_remove_interlocker(void *_, onion_request *req, onion_respo return OCS_PROCESSED; } syslog_server(LOG_NOTICE, "Request: Remove interlocker - interlocker: %s - start", name); - + pthread_mutex_lock(&dyn_containers_mutex); const int interlocker_slot = dyn_containers_get_interlocker_slot(name); if (interlocker_slot < 0) { @@ -425,7 +425,7 @@ o_con_status handler_remove_interlocker(void *_, onion_request *req, onion_respo send_common_feedback(res, HTTP_NOT_FOUND, "Interlocker to remove could not be found"); return OCS_PROCESSED; } - + const bool free_success = dyn_containers_free_interlocker(interlocker_slot); pthread_mutex_unlock(&dyn_containers_mutex); if (!free_success) { @@ -436,7 +436,7 @@ o_con_status handler_remove_interlocker(void *_, onion_request *req, onion_respo send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Interlocker is still in use"); return OCS_PROCESSED; } - + if (!remove_interlocker_files(name)) { syslog_server(LOG_ERR, "Request: Remove interlocker - interlocker: %s - " diff --git a/server/src/interlocking.c b/server/src/interlocking.c index 6d3c2f07..32bf496c 100644 --- a/server/src/interlocking.c +++ b/server/src/interlocking.c @@ -58,13 +58,13 @@ static void create_route_str_to_ids_hashtable() { g_hash_table_new_full(g_str_hash, g_str_equal, free_interlocking_hashtable_key, free_interlocking_hashtable_value); - + GHashTableIter iter; gpointer key, value; g_hash_table_iter_init (&iter, route_hash_table); while (g_hash_table_iter_next (&iter, &key, &value)) { t_interlocking_route *route = (t_interlocking_route *) value; - + // Build search key, example: signal3signal6 size_t len = strlen(route->source) + strlen(route->destination) + 1; char *route_string = malloc(sizeof(char) * len); @@ -75,7 +75,7 @@ static void create_route_str_to_ids_hashtable() { return; } snprintf(route_string, len, "%s%s", route->source, route->destination); - + if (g_hash_table_contains(route_string_to_ids_hashtable, route_string)) { // entry with route_string as key exists in hashtable void *route_ids_ptr = g_hash_table_lookup(route_string_to_ids_hashtable, route_string); @@ -91,7 +91,7 @@ static void create_route_str_to_ids_hashtable() { g_hash_table_insert(route_string_to_ids_hashtable, route_string, route_ids); } } - + syslog_server(LOG_NOTICE, "Interlocking create hash table - done"); } @@ -102,7 +102,7 @@ bool interlocking_table_initialise(const char *config_dir) { create_route_str_to_ids_hashtable(); return true; } - + return false; } @@ -113,19 +113,19 @@ void free_interlocking_table(void) { route_string_to_ids_hashtable = NULL; } syslog_server(LOG_INFO, "Interlocking extra table route str to route ids freed"); - + // free general route hash table if (route_hash_table != NULL) { g_hash_table_destroy(route_hash_table); route_hash_table = NULL; } - + syslog_server(LOG_NOTICE, "Interlocking table freed"); } GArray *interlocking_table_get_all_route_ids(void) { GArray* route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); - + GHashTableIter iter; gpointer key, value; g_hash_table_iter_init (&iter, route_hash_table); @@ -140,13 +140,13 @@ GArray *interlocking_table_get_all_route_ids(void) { } g_array_append_val(route_ids, route_id_string); } - + return route_ids; } GArray *interlocking_table_get_all_route_ids_cpy(void) { GArray* route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); - + GHashTableIter iter; gpointer key, value; g_hash_table_iter_init (&iter, route_hash_table); @@ -183,11 +183,11 @@ GArray *interlocking_table_get_route_ids(const char *source_id, const char *dest const size_t len = strlen(source_id) + strlen(destination_id) + 1; char route_string[len]; snprintf(route_string, len, "%s%s", source_id, destination_id); - + if (g_hash_table_contains(route_string_to_ids_hashtable, route_string)) { return (GArray *)g_hash_table_lookup(route_string_to_ids_hashtable, route_string); } - + return NULL; } @@ -198,7 +198,7 @@ t_interlocking_route *get_route(const char *route_id) { if (g_hash_table_contains(route_hash_table, route_id)) { return g_hash_table_lookup(route_hash_table, route_id); } - + return NULL; } @@ -206,6 +206,6 @@ unsigned int interlocking_table_get_size() { if (route_hash_table != NULL) { return g_hash_table_size(route_hash_table); } - + return 0; } diff --git a/server/src/param_verification.c b/server/src/param_verification.c index c0968ece..0262bfaf 100644 --- a/server/src/param_verification.c +++ b/server/src/param_verification.c @@ -35,7 +35,7 @@ int params_check_session_id(const char *data_session_id) { int client_session_id; char *end_client_session_id; if (data_session_id != NULL) { - client_session_id = strtol(data_session_id, &end_client_session_id, 10); + client_session_id = strtol(data_session_id, &end_client_session_id, 10); if (*end_client_session_id == '\0') { return client_session_id; } @@ -47,8 +47,8 @@ int params_check_grab_id(const char *data_grab_id, int max_trains) { int grab_id; char *end_grab_id; if (data_grab_id == NULL || - (grab_id = strtol(data_grab_id, &end_grab_id, 10)) < 0 || - grab_id >= max_trains || *end_grab_id != '\0') { + (grab_id = strtol(data_grab_id, &end_grab_id, 10)) < 0 || + grab_id >= max_trains || *end_grab_id != '\0') { return -1; } return grab_id; @@ -58,7 +58,7 @@ int params_check_speed(const char *data_speed) { int speed; char *end_speed; if (data_speed == NULL || (speed = strtol(data_speed, &end_speed, 10)) < -126 || - speed > 126 || *end_speed != '\0') { + speed > 126 || *end_speed != '\0') { return 999; } return speed; @@ -68,7 +68,7 @@ int params_check_calibrated_speed(const char *data_speed) { int speed; char *end_speed; if (data_speed == NULL || (speed = strtol(data_speed, &end_speed, 10)) < -9 || - speed > 9 || *end_speed != '\0') { + speed > 9 || *end_speed != '\0') { return 999; } return speed; @@ -78,7 +78,7 @@ int params_check_state(const char *data_state) { int state; char *end_state; if (data_state == NULL || (state = strtol(data_state, &end_state, 10)) < 0 || - state > 1 || *end_state != '\0') { + state > 1 || *end_state != '\0') { return -1; } return state; @@ -88,7 +88,7 @@ const char *params_check_route_id(const char *data_route_id) { int route_id; char *end_route_id; if (data_route_id == NULL || (route_id = strtol(data_route_id, &end_route_id, 10)) < 0 || - *end_route_id != '\0') { + *end_route_id != '\0') { return ""; } return data_route_id; @@ -116,7 +116,7 @@ bool params_check_is_bool_string(const char *string) { if (string == NULL || *string == '\0' || isspace(*string)) { return false; } else if (strcmp("false", string) == 0 || strcmp("False", string) == 0 || strcmp("FALSE", string) == 0 - || strcmp("true", string) == 0 || strcmp("True", string) == 0 || strcmp("TRUE", string) == 0) { + || strcmp("true", string) == 0 || strcmp("True", string) == 0 || strcmp("TRUE", string) == 0) { return true; } else { return false; diff --git a/server/src/server.c b/server/src/server.c index 6bf763ce..a402d9a9 100644 --- a/server/src/server.c +++ b/server/src/server.c @@ -101,9 +101,9 @@ static onion_connection_status handler_assets(void *_, onion_request *req, onion GString *full_filename = g_string_new(global_path); onion_low_free(global_path); g_string_append(full_filename, filename); - + onion_connection_status status = - onion_shortcut_response_file(full_filename->str, req, res); + onion_shortcut_response_file(full_filename->str, req, res); g_string_free(full_filename, true); return status; } @@ -111,7 +111,7 @@ static onion_connection_status handler_assets(void *_, onion_request *req, onion static int eval_args(int argc, char **argv) { if (argc == 5) { if (strnlen(argv[1], INPUT_MAX_LEN + 1) == INPUT_MAX_LEN + 1 || - strnlen(argv[2], INPUT_MAX_LEN + 1) == INPUT_MAX_LEN + 1) { + strnlen(argv[2], INPUT_MAX_LEN + 1) == INPUT_MAX_LEN + 1) { printf("Serial device and config directory must not exceed %d characters\n", INPUT_MAX_LEN); return 1; @@ -128,7 +128,7 @@ static int eval_args(int argc, char **argv) { } } else { printf("Four arguments expected: " - " \n"); + " \n"); return 1; } } @@ -137,7 +137,7 @@ int main(int argc, char **argv) { if (eval_args(argc, argv)) { return 1; } - + openlog("swtbahn", 0, LOG_LOCAL0); syslog_server(LOG_NOTICE, "SWTbahn server started"); ///TODO: Consider making configurable a max_thread count to limit @@ -152,7 +152,7 @@ int main(int argc, char **argv) { // --- home page --- onion_url_add_with_data(urls, "", onion_shortcut_internal_redirect, "assets/index.html", NULL); - + // --- admin functions --- onion_url_add(urls, "admin/startup", handler_startup); onion_url_add(urls, "admin/shutdown", handler_shutdown); @@ -173,7 +173,7 @@ int main(int argc, char **argv) { // --- train driver functions --- onion_url_add(urls, "driver/grab-train", handler_grab_train); - onion_url_add(urls, "driver/release-train", handler_release_train); + onion_url_add(urls, "driver/release-train", handler_release_train); onion_url_add(urls, "driver/request-route", handler_request_route); onion_url_add(urls, "driver/request-route-id", handler_request_route_id); onion_url_add(urls, "driver/direction", handler_driving_direction); @@ -182,13 +182,13 @@ int main(int argc, char **argv) { onion_url_add(urls, "driver/set-calibrated-train-speed", handler_set_calibrated_train_speed); onion_url_add(urls, "driver/set-train-emergency-stop", handler_set_train_emergency_stop); onion_url_add(urls, "driver/set-train-peripheral", handler_set_train_peripheral); - + // --- upload functions --- onion_url_add(urls, "upload/engine", handler_upload_engine); onion_url_add(urls, "upload/remove-engine", handler_remove_engine); onion_url_add(urls, "upload/interlocker", handler_upload_interlocker); onion_url_add(urls, "upload/remove-interlocker", handler_remove_interlocker); - + // --- monitor functions --- onion_url_add(urls, "monitor/trains", handler_get_trains); onion_url_add(urls, "monitor/train-state", handler_get_train_state); @@ -212,7 +212,7 @@ int main(int argc, char **argv) { onion_url_add(urls, "monitor/debug_extra", handler_get_debug_info_extra); load_cached_verifier_url(); - + onion_listen(o); onion_free(o); if (running) { @@ -223,7 +223,7 @@ int main(int argc, char **argv) { syslog_server(LOG_NOTICE, "%s", "SWTbahn server stopped"); closelog(); - + return 0; } diff --git a/server/src/websocket_uploader/engine_uploader.c b/server/src/websocket_uploader/engine_uploader.c index 371938bf..e6279d22 100644 --- a/server/src/websocket_uploader/engine_uploader.c +++ b/server/src/websocket_uploader/engine_uploader.c @@ -376,7 +376,7 @@ void set_verifier_url(const char *upd_verifier_url) { const char * get_verifier_url() { - return verifier_url; + return verifier_url; } @@ -434,7 +434,7 @@ void cache_verifier_url() { syslog_server(LOG_ERR, "Cache verifier URL - cache file opening failed"); return; } - + // Write the content to the file fputs(verifier_url, file); syslog_server(LOG_INFO, "Cache verifier URL - cached URL %s", verifier_url); From ef8dee25c9178bf5aa96abcd4149a77d785c46b4 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 9 Jan 2025 17:29:55 +0100 Subject: [PATCH 054/125] local functions -> static --- server/src/bahn_data_util.c | 2 +- server/src/handler_driver.c | 10 +++++----- server/src/handler_monitor.c | 2 +- server/src/interlocking.c | 27 +++------------------------ server/src/interlocking.h | 10 +--------- server/src/json_response_builder.c | 2 +- 6 files changed, 12 insertions(+), 41 deletions(-) diff --git a/server/src/bahn_data_util.c b/server/src/bahn_data_util.c index 1ed8646f..2b535853 100644 --- a/server/src/bahn_data_util.c +++ b/server/src/bahn_data_util.c @@ -101,7 +101,7 @@ void bahn_data_util_free_cached_track_state() { } } -void add_cache_str(char *state) { +static void add_cache_str(char *state) { if (cached_allocated_str_array != NULL) { g_array_append_val(cached_allocated_str_array, state); } else { diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 223d814f..1a98be2b 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -760,7 +760,7 @@ char *train_id_from_grab_id(int grab_id) { return train_id; } -GString *get_simple_msg_json(const char *msg) { +static GString *get_simple_msg_json(const char *msg) { GString *g_smplemsg = g_string_sized_new(128); g_string_assign(g_smplemsg, ""); append_start_of_obj(g_smplemsg, false); @@ -769,7 +769,7 @@ GString *get_simple_msg_json(const char *msg) { return g_smplemsg; } -GString *get_grab_fdbk_json(int l_session_id, int grab_id) { +static GString *get_grab_fdbk_json(int l_session_id, int grab_id) { GString *g_feedback = g_string_sized_new(96); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); @@ -779,7 +779,7 @@ GString *get_grab_fdbk_json(int l_session_id, int grab_id) { return g_feedback; } -void fill_grab_err_feedback(int grab_id, GString *ret_str, int *http_code) { +static void fill_grab_err_feedback(int grab_id, GString *ret_str, int *http_code) { ret_str = NULL; if (grab_id == -4) { ret_str = get_simple_msg_json("invalid parameters"); @@ -920,7 +920,7 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * } } -GString *get_reqroute_fdbk_json(const char* granted_route_id) { +static GString *get_reqroute_fdbk_json(const char* granted_route_id) { GString *g_feedback = g_string_sized_new(48); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); @@ -929,7 +929,7 @@ GString *get_reqroute_fdbk_json(const char* granted_route_id) { return g_feedback; } -void fill_request_route_err_feedback(GString *route_id, GString *ret_str, int *http_code) { +static void fill_request_route_err_feedback(GString *route_id, GString *ret_str, int *http_code) { ret_str = NULL; *http_code = HTTP_BAD_REQUEST; if (route_id == NULL || route_id->str == NULL) { diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 4d707de3..ce27ca27 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -1137,7 +1137,7 @@ static GString* get_granted_routes_json() { append_field_start_of_list(g_granted_routes, "granted-routes"); pthread_mutex_lock(&interlocker_mutex); - GArray *route_ids = interlocking_table_get_all_route_ids_cpy(); + GArray *route_ids = interlocking_table_get_all_route_ids_shallowcpy(); int routes_added = 0; if (route_ids != NULL) { diff --git a/server/src/interlocking.c b/server/src/interlocking.c index 32bf496c..0dae7825 100644 --- a/server/src/interlocking.c +++ b/server/src/interlocking.c @@ -37,14 +37,14 @@ GHashTable *route_hash_table = NULL; GHashTable *route_string_to_ids_hashtable = NULL; -void free_interlocking_hashtable_key(void *pointer) { +static void free_interlocking_hashtable_key(void *pointer) { if (pointer != NULL) { free(pointer); pointer = NULL; } } -void free_interlocking_hashtable_value(void *pointer) { +static void free_interlocking_hashtable_value(void *pointer) { // For use with route_string_to_ids_hashtable: // Not necessary to free elements individually, as they are not allocated/owned here, // they are owned by the route_hash_table instead. @@ -123,28 +123,7 @@ void free_interlocking_table(void) { syslog_server(LOG_NOTICE, "Interlocking table freed"); } -GArray *interlocking_table_get_all_route_ids(void) { - GArray* route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); - - GHashTableIter iter; - gpointer key, value; - g_hash_table_iter_init (&iter, route_hash_table); - while (g_hash_table_iter_next (&iter, &key, &value)) { - t_interlocking_route *route = (t_interlocking_route *) value; - char *route_id_string = strdup(route->id); - if (route_id_string == NULL) { - syslog_server(LOG_ERR, - "Interlocking table get all route ids: " - "unable to allocate memory for a route_id_string"); - continue; - } - g_array_append_val(route_ids, route_id_string); - } - - return route_ids; -} - -GArray *interlocking_table_get_all_route_ids_cpy(void) { +GArray *interlocking_table_get_all_route_ids_shallowcpy(void) { GArray* route_ids = g_array_new(FALSE, FALSE, sizeof(char *)); GHashTableIter iter; diff --git a/server/src/interlocking.h b/server/src/interlocking.h index 997f8ea4..204b7742 100644 --- a/server/src/interlocking.h +++ b/server/src/interlocking.h @@ -84,14 +84,6 @@ bool interlocking_table_initialise(const char *config_dir); */ void free_interlocking_table(void); -/** - * Return all the route IDs in the interlocking table. - * The caller IS responsible for freeing the array and its contents. - * - * @return array of route IDs. - */ -GArray *interlocking_table_get_all_route_ids(void); - /** * Return all the route IDs in the interlocking table. * The strings containing the route IDs are shallow copies of the ones in the interlocking table. @@ -100,7 +92,7 @@ GArray *interlocking_table_get_all_route_ids(void); * @return array of route IDs. Caller is responsible for freeing the GArray, * but not the contained strings(!) */ -GArray *interlocking_table_get_all_route_ids_cpy(void); +GArray *interlocking_table_get_all_route_ids_shallowcpy(void); /** * Search for the first route granted to the specified train and return its id. diff --git a/server/src/json_response_builder.c b/server/src/json_response_builder.c index eeacbdc9..4380ddee 100644 --- a/server/src/json_response_builder.c +++ b/server/src/json_response_builder.c @@ -78,7 +78,7 @@ GString* append_field_strlist_value(GString *dest, const char *field, return dest; } -GString* append_field_value_garray_strs_base(GString *dest, const char *field, +static GString* append_field_value_garray_strs_base(GString *dest, const char *field, const GArray* g_strarray, bool add_value_quote_marks, bool add_trailing_comma) { From 1ad4955b6e37169a214ba8562e985e737cf57c29 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 10 Jan 2025 12:01:56 +0100 Subject: [PATCH 055/125] various improvements to logging, comments, wrong lock, and changed size_t to unsigned int where appropriate --- .../check_route_sectional_direct.c | 27 ++-- server/src/dyn_containers_interface.c | 18 +-- server/src/handler_admin.c | 56 +++++--- server/src/handler_controller.c | 92 +++++++------ server/src/handler_controller.h | 7 +- server/src/handler_driver.c | 129 ++++++++++-------- server/src/handler_monitor.c | 6 +- server/src/interlocking.c | 2 +- 8 files changed, 193 insertions(+), 144 deletions(-) diff --git a/server/src/check_route_sectional/check_route_sectional_direct.c b/server/src/check_route_sectional/check_route_sectional_direct.c index ef29280f..6ce1a871 100644 --- a/server/src/check_route_sectional/check_route_sectional_direct.c +++ b/server/src/check_route_sectional/check_route_sectional_direct.c @@ -80,13 +80,13 @@ static const char* crossing2[7] = {"signal9", "signal14", "signal15", "signal24" // Don't forget to update this when changing the entry signal arrays above! // -> If we ever get constexpr or consteval, shall compute this value at compile-time -static const size_t longest_entry_signals_array_len = 14; +static const unsigned int longest_entry_signals_array_len = 14; static const char** entry_signals_mapping[44] = {block1, block2, block3, block4, block5, block6, block7, block8and15, block9, block10, block11, block12to13, block14, block16to17, block18, block19to22, p1, p2, p3, p4, p5, p6to7, p8to9, p10, p11, p12, p13, p14, p15to16, p17, p18a, p18b, p19, p20to21, p22, p23, p24, p25, p26, p27, p28, p29, crossing1, crossing2}; -// Returns size_t between 0 and 43 (both inclusive) if segment_id is valid; returns -// 65535 (minimum max of size_t) if segment_id unknown or NULL -size_t entry_signals_lookup(const char* segment_id); +// Returns unsigned int between 0 and 43 (both inclusive) if segment_id is valid; returns +// 65535 if segment_id unknown or NULL +unsigned int entry_signals_lookup(const char* segment_id); // If any signal controlling entry into the railway network section in which segment_id lies // is in a permissive aspect (GO, SHUNT), return true. @@ -97,7 +97,7 @@ bool is_any_entry_signal_permissive(const char* segment_id); // and the last path item of type signal whose index is lower than path_segment_index is occupied. // If route has no path elements, or if path_segment_index is larger than the length of the // route, returns false. -bool is_any_segment_after_preceding_signal_until_segment_occupied(const t_interlocking_route *route, size_t path_segment_index); +bool is_any_segment_after_preceding_signal_until_segment_occupied(const t_interlocking_route *route, unsigned int path_segment_index); @@ -111,20 +111,21 @@ bool is_route_conflict_safe_sectional(const char *granted_route_id, const char * } bool encountered_signal = true; // Search backwards in granted route to minimize duplicate lookups - for (size_t gr_i = granted_route->path->len; gr_i > 0; --gr_i) { + for (unsigned int gr_i = granted_route->path->len; gr_i > 0; --gr_i) { const char* gr_path_item = g_array_index(granted_route->path, char*, gr_i - 1); if (gr_path_item == NULL) { continue; } if (is_type_signal(gr_path_item)) { // Further optimization: Only set encountered_signal to true if this is NOT a distant signal. + // -> but distant signals are currently (Jan. 2025) not contained in route def., so doesnt matter. encountered_signal = true; continue; } if (!is_type_segment(gr_path_item)) { continue; } - for (size_t re_i = 0; re_i < requested_route->path->len; ++re_i) { + for (unsigned int re_i = 0; re_i < requested_route->path->len; ++re_i) { const char* re_path_item = g_array_index(requested_route->path, char*, re_i); if (re_path_item == NULL) { continue; @@ -146,7 +147,7 @@ bool is_route_conflict_safe_sectional(const char *granted_route_id, const char * } -bool is_any_segment_after_preceding_signal_until_segment_occupied(const t_interlocking_route *route, size_t path_segment_index) { +bool is_any_segment_after_preceding_signal_until_segment_occupied(const t_interlocking_route *route, unsigned int path_segment_index) { if (route == NULL || route->path == NULL || route->path->len == 0) { return false; } @@ -154,8 +155,8 @@ bool is_any_segment_after_preceding_signal_until_segment_occupied(const t_interl return false; } // Loop from index to start checking at, decrementing until first signal is encountered. - for (long long i = path_segment_index; i >= 0; --i) { - const char* path_item = g_array_index(route->path, char*, (size_t) i); + for (long i = (long) path_segment_index; i >= 0; --i) { + const char* path_item = g_array_index(route->path, char*, i); if (is_type_segment(path_item)) { // return true if segment is occupied, otherwise continue searching. if (is_segment_occupied(path_item)) { @@ -174,7 +175,7 @@ bool is_any_entry_signal_permissive(const char* segment_id) { return false; } // Query for the entry signals relevant for segment_id - size_t entry_signals_lookup_index = entry_signals_lookup(segment_id); + unsigned int entry_signals_lookup_index = entry_signals_lookup(segment_id); if (entry_signals_lookup_index >= 65535) { return false; } @@ -183,7 +184,7 @@ bool is_any_entry_signal_permissive(const char* segment_id) { return false; } // Check state of each entry signal - for (size_t sig_i = 0; sig_i < longest_entry_signals_array_len; ++sig_i) { + for (unsigned int sig_i = 0; sig_i < longest_entry_signals_array_len; ++sig_i) { const char* entry_signal_item = entry_signals_for_segment[sig_i]; if (strcmp(entry_signal_item, "_end_") == 0) { // End of entry_signals_for_segment @@ -208,7 +209,7 @@ bool is_any_entry_signal_permissive(const char* segment_id) { } -size_t entry_signals_lookup(const char* segment_id) { +unsigned int entry_signals_lookup(const char* segment_id) { if (segment_id == NULL) { return 65535; } else if (strcmp(segment_id,"seg1") == 0 || strcmp(segment_id,"seg2") == 0 || strcmp(segment_id,"seg3") == 0) { // block 1 diff --git a/server/src/dyn_containers_interface.c b/server/src/dyn_containers_interface.c index 1321b829..cc6f02fe 100644 --- a/server/src/dyn_containers_interface.c +++ b/server/src/dyn_containers_interface.c @@ -64,7 +64,7 @@ static void dyn_containers_reset_interface(t_dyn_containers_interface *dyn_conta dyn_containers_interface->let_period_us = let_period_us; - for (size_t i = 0; i < TRAIN_ENGINE_COUNT_MAX; i++) { + for (int i = 0; i < TRAIN_ENGINE_COUNT_MAX; i++) { dyn_containers_interface->train_engines_io[i] = (struct t_train_engine_io) { .input_load = false, @@ -75,7 +75,7 @@ static void dyn_containers_reset_interface(t_dyn_containers_interface *dyn_conta .output_name = "" }; } - for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { dyn_containers_interface->train_engine_instances_io[i] = (struct t_train_engine_instance_io) { .input_grab = false, @@ -94,7 +94,7 @@ static void dyn_containers_reset_interface(t_dyn_containers_interface *dyn_conta }; } - for (size_t i = 0; i < INTERLOCKER_COUNT_MAX; i++) { + for (int i = 0; i < INTERLOCKER_COUNT_MAX; i++) { dyn_containers_interface->interlockers_io[i] = (struct t_interlocker_io) { .input_load = false, @@ -103,7 +103,7 @@ static void dyn_containers_reset_interface(t_dyn_containers_interface *dyn_conta .output_in_use = false }; } - for (size_t i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { dyn_containers_interface->interlocker_instances_io[i] = (struct t_interlocker_instance_io) { .input_grab = false, @@ -172,7 +172,7 @@ static void *dyn_containers_actuate(void *_) { pthread_mutex_lock(&grabbed_trains_mutex); pthread_mutex_lock(&dyn_containers_mutex); - for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { dyn_actuate_specific_engine(i); } @@ -321,7 +321,7 @@ bool dyn_containers_free_engine(int engine_slot) { return false; } // Check that no instance of the train engine is in use - for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { struct t_train_engine_instance_io *eng_instance = &dyn_containers_interface->train_engine_instances_io[i]; if (eng_instance->output_in_use && eng_instance->output_train_engine_type == engine_slot) { @@ -353,7 +353,7 @@ GArray *dyn_containers_get_train_engines_arr(void) { } GArray *train_engine_names = g_array_new(FALSE, FALSE, sizeof(char *)); pthread_mutex_lock(&dyn_containers_mutex); - for (size_t i = 0; i < TRAIN_ENGINE_COUNT_MAX; ++i) { + for (int i = 0; i < TRAIN_ENGINE_COUNT_MAX; ++i) { const struct t_train_engine_io *tr_eng_io = &dyn_containers_interface->train_engines_io[i]; if (!tr_eng_io->output_in_use) { continue; @@ -523,7 +523,7 @@ bool dyn_containers_free_interlocker(int interlocker_slot) { return false; } // Check that no instance of the interlocker is in use - for (size_t i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { struct t_interlocker_instance_io *interlocker_instance = &dyn_containers_interface->interlocker_instances_io[i]; if (interlocker_instance->output_in_use && @@ -557,7 +557,7 @@ GArray *dyn_containers_get_interlockers_arr(void) { } GArray *interlocker_names = g_array_new(FALSE, FALSE, sizeof(char *)); pthread_mutex_lock(&dyn_containers_mutex); - for (size_t i = 0; i < INTERLOCKER_COUNT_MAX; ++i) { + for (int i = 0; i < INTERLOCKER_COUNT_MAX; ++i) { const struct t_interlocker_io *interlocker_io = &dyn_containers_interface->interlockers_io[i]; if (!interlocker_io->output_in_use) { diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index 414a9c17..662e3311 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -64,6 +64,12 @@ static void build_message_hex_string(unsigned char *message, char *dest) { } } +/** + * @brief While the system is running, polls bidib messages and logs them. + * + * @param _ unused + * @return void* + */ static void *poll_bidib_messages(void *_) { while (running) { unsigned char *message; @@ -87,8 +93,19 @@ static void *poll_bidib_messages(void *_) { pthread_exit(NULL); } -// Shall only be called with start_stop_mutex acquired +/** + * @brief Starts the server/system. I.e., establishes BiDiB connection, + * clears temporary directories, loads the config, starts the dynamic containers + * along with the default interlocker, and launches the thread that polls + * bidib messages. + * Shall only be called with start_stop_mutex acquired. + * + * @return true if startup succeeded, otherwise returns false + */ static bool startup_server(void) { + ///TODO: Change this to return enum/code for what went wrong to give better feedback + /// to a client calling startup. + const int err_serial = bidib_start_serial(serial_device, config_directory, 0); if (err_serial) { syslog_server(LOG_ERR, "Startup server - Could not start BiDiB serial connection"); @@ -125,7 +142,13 @@ static bool startup_server(void) { return true; } -// Shall only be called with start_stop_mutex acquired +/** + * @brief Stops the server/system. I.e., releases all grabbed trains, releases all interlockers, + * stops the dynamic containers, frees the loaded config memory, joins with the thread + * polling bidib messages, and stops bidib. + * + * Shall only be called with start_stop_mutex acquired. + */ void shutdown_server(void) { session_id = 0; syslog_server(LOG_NOTICE, "Shutdown server"); @@ -170,8 +193,9 @@ o_con_status handler_startup(void *_, onion_request *req, onion_response *res) { } return OCS_PROCESSED; } else { + o_con_status ret = handle_req_run_or_method_fail(res, running, "Startup server"); pthread_mutex_unlock(&start_stop_mutex); - return handle_req_run_or_method_fail(res, running, "Startup server"); + return ret; } } @@ -186,8 +210,9 @@ o_con_status handler_shutdown(void *_, onion_request *req, onion_response *res) // Can't log "finished" here since bidib closes the syslog when stopping return OCS_PROCESSED; } else { + o_con_status ret = handle_req_run_or_method_fail(res, running, "Shutdown server"); pthread_mutex_unlock(&start_stop_mutex); - return handle_req_run_or_method_fail(res, running, "Shutdown server"); + return ret; } } @@ -281,7 +306,6 @@ o_con_status handler_admin_release_train(void *_, onion_request *req, onion_resp dyn_containers_set_train_engine_instance_inputs(engine_instance, 0, true); pthread_mutex_unlock(&grabbed_trains_mutex); - t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); while (train_state_query.data.set_speed_step != 0) { bidib_free_train_state_query(train_state_query); @@ -290,18 +314,16 @@ o_con_status handler_admin_release_train(void *_, onion_request *req, onion_resp } bidib_free_train_state_query(train_state_query); - - if (!release_train(grab_id)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab id parameter"); - syslog_server(LOG_ERR, - "Request: Admin release train - train: %s - invalid grab id - abort", - data_train); - } else { - send_common_feedback(res, HTTP_OK, ""); - syslog_server(LOG_NOTICE, - "Request: Admin release train - train: %s - finish", - data_train); - } + // We can ignore the return of release_train here, as it would only fail if someone else + // released the train with this grab_id in the meantime -> that is okay, objective achieved. + // (Due to how the dyn-containers work and how grabbed_trains_mutex is used, we can't + // easily avoid such a race condition being possible - have to release the mutex whilst + // waiting for the train to stop; thus someone else could do smth with it in the meantime) + release_train(grab_id); + send_common_feedback(res, HTTP_OK, ""); + syslog_server(LOG_NOTICE, + "Request: Admin release train - train: %s - finish", + data_train); return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Admin release train"); diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 90c705e4..a1422824 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -79,7 +79,7 @@ static int set_interlocker(const char *interlocker_name) { return -1; } - for (size_t i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { // Look for not already used interlocker instance slot (indicated by is_valid). if (!interlocker_instances[i].is_valid) { if (dyn_containers_set_interlocker_instance(&interlocker_instances[i], interlocker_name)) { @@ -123,9 +123,7 @@ static int unset_interlocker(const char *interlocker_name) { selected_interlocker_name = NULL; selected_interlocker_instance = -1; } - int ret = selected_interlocker_instance; - // return -1 if unsetting succeeded, otherwise a value >= 0 - return ret; + return selected_interlocker_instance; } bool load_default_interlocker_instance() { @@ -145,7 +143,7 @@ void release_all_interlockers(void) { g_string_free(selected_interlocker_name, true); selected_interlocker_name = NULL; } - for (size_t i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < INTERLOCKER_INSTANCE_COUNT_MAX; i++) { if (interlocker_instances[i].is_valid) { dyn_containers_free_interlocker_instance(&interlocker_instances[i]); interlocker_instances[i].is_valid = false; @@ -165,12 +163,16 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ // check for route availability. bool sectional_in_use = (g_strrstr(selected_interlocker_name->str, "sectional") != NULL); - const unsigned int route_count = MAX(interlocking_table_get_size(), max_signals_in_route_assmptn); + // For the route with id=route_id, get all conflicting routes and add them to the + // GArray that will be returned if they are granted. + + // Amount of conflicting routes can't be larger than overall amount of routes known. + const unsigned int route_count = interlocking_table_get_size(); char *conflict_routes[route_count]; - const size_t conflict_routes_len = + const int conflict_routes_len = config_get_array_string_value("route", route_id, "conflicts", conflict_routes); - for (size_t i = 0; i < conflict_routes_len; i++) { - t_interlocking_route *conflict_route = get_route(conflict_routes[i]); + for (int i = 0; i < conflict_routes_len; i++) { + const t_interlocking_route *conflict_route = get_route(conflict_routes[i]); if (conflict_route != NULL && conflict_route->train != NULL) { if (sectional_in_use && is_route_conflict_safe_sectional(conflict_routes[i], route_id)) { // If a sectional checker is in use and it says that this conflict is @@ -186,8 +188,7 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ syslog_server(LOG_ERR, "get_granted_route_conflicts - failed to allocate memory" " for conflict_route_id_string"); - ///TODO: Test if this freeing works. - for (size_t n = 0; n < conflict_route_ids->len; ++n) { + for (unsigned int n = 0; n < conflict_route_ids->len; ++n) { char *elem = g_array_index(conflict_route_ids, char *, n); free(elem); } @@ -214,9 +215,9 @@ bool get_route_is_clear(const char *route_id) { // Check that all route signals are in the Stop aspect char *signal_ids[max_signals_in_route_assmptn]; - const size_t signal_ids_len = + const int signal_ids_len = config_get_array_string_value("route", route_id, "route_signals", signal_ids); - for (size_t i = 0; i < signal_ids_len; i++) { + for (int i = 0; i < signal_ids_len; i++) { const char *signal_state = track_state_get_value(signal_ids[i]); if (strcmp(signal_state, "stop")) { bahn_data_util_free_cached_track_state(); @@ -224,10 +225,10 @@ bool get_route_is_clear(const char *route_id) { } } - // Check that all blocks are unoccupied + // Check that all segments are unoccupied char *item_ids[max_items_in_route_assmptn]; - const size_t item_ids_len = config_get_array_string_value("route", route_id, "path", item_ids); - for (size_t i = 0; i < item_ids_len; i++) { + const int item_ids_len = config_get_array_string_value("route", route_id, "path", item_ids); + for (int i = 0; i < item_ids_len; i++) { if (is_type_segment(item_ids[i]) && is_segment_occupied(item_ids[i])) { bahn_data_util_free_cached_track_state(); return false; @@ -314,12 +315,17 @@ const char *grant_route_id(const char *train_id, const char *route_id) { pthread_mutex_lock(&interlocker_mutex); // Check whether the route can be granted t_interlocking_route *route = get_route(route_id); + if (route == NULL) { + pthread_mutex_unlock(&interlocker_mutex); + syslog_server(LOG_ERR, "Grant route id - unknown route id %s", route_id); + return "not_grantable"; + } GArray *granted_conflicts = get_granted_route_conflicts(route_id, false); if (granted_conflicts == NULL) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_WARNING, - "Grant route id - train: %s route: %s - search for conflicting routes failed", - train_id, route_id); + "Grant route id - route: %s train: %s - search for conflicting routes failed", + route_id, train_id); return "not_grantable"; } const bool hasGrantedConflicts = (granted_conflicts->len > 0); @@ -332,9 +338,9 @@ const char *grant_route_id(const char *train_id, const char *route_id) { if (route->train != NULL || hasGrantedConflicts) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_WARNING, - "Grant route id - train: %s route: %s - route already granted " + "Grant route id - route: %s train: %s - route already granted " "or conflicting routes are in use", - train_id, route_id); + route_id, train_id); return "not_grantable"; } @@ -342,29 +348,29 @@ const char *grant_route_id(const char *train_id, const char *route_id) { if (!get_route_is_clear(route_id)) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_WARNING, - "Grant route id - train: %s route: %s - route is not clear", - train_id, route_id); + "Grant route id - route: %s train: %s - route is not clear", + route_id, train_id); return "not_clear"; } // Grant the route to the train syslog_server(LOG_INFO, - "Grant route id - train: %s route: %s - checks passed, now grant route", - train_id, route_id); + "Grant route id - route: %s train: %s - checks passed, now grant route", + route_id, train_id); route->train = strdup(train_id); if (route->train == NULL) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_ERR, - "Grant route id - train: %s route: %s - unable to allocate memory for route->train", - train_id, route_id); + "Grant route id - route: %s train: %s - unable to allocate memory for route->train", + route_id, train_id); return "not_grantable"; } // Set the points to their required positions - for (size_t i = 0; i < route->points->len; i++) { + for (unsigned int i = 0; i < route->points->len; i++) { const t_interlocking_point point = g_array_index(route->points, t_interlocking_point, i); const char *position = (point.position == NORMAL) ? "normal" : "reverse"; bidib_switch_point(point.id, position); @@ -372,7 +378,7 @@ const char *grant_route_id(const char *train_id, const char *route_id) { } // Set the signals to their required aspects - for (size_t i = 0; i < route->signals->len - 1; i++) { + for (unsigned int i = 0; i < route->signals->len - 1; i++) { const char *signal = g_array_index(route->signals, char *, i); const char *signal_type = config_get_scalar_string_value("signal", signal, "type"); const char *signal_aspect = strcmp(signal_type, "shunting") == 0 ? "aspect_shunt" : "aspect_go"; @@ -380,11 +386,16 @@ const char *grant_route_id(const char *train_id, const char *route_id) { bidib_flush(); } - syslog_server(LOG_NOTICE, - "Grant route id - train: %s route: %s - route granted", - train_id, route_id); + /// TODO: Discuss - at this point we could add a wait of ~2s and then check if the points are + /// in their required position. + /// Benefit: Detect hardware failures, thus preventing a potential short circuit later. + /// Drawback: Latency increases. pthread_mutex_unlock(&interlocker_mutex); + + syslog_server(LOG_NOTICE, + "Grant route id - route: %s train: %s - route granted", + route_id, train_id); return "granted"; } @@ -495,7 +506,7 @@ o_con_status handler_set_point(void *_, onion_request *req, onion_response *res) const char *data_state = onion_request_get_post(req, "state"); if (data_point == NULL || data_state == NULL) { syslog_server(LOG_ERR, "Request: Set point - invalid parameters"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters, > 0 parameters are NULL"); } else { syslog_server(LOG_NOTICE, "Request: Set point - point: %s state: %s - start", @@ -526,7 +537,7 @@ o_con_status handler_set_signal(void *_, onion_request *req, onion_response *res const char *data_state = onion_request_get_post(req, "state"); if (data_signal == NULL || data_state == NULL) { syslog_server(LOG_ERR, "Request: Set signal - invalid parameters"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters, > 0 parameters are NULL"); } else { syslog_server(LOG_NOTICE, "Request: Set signal - signal: %s state: %s - start", @@ -558,7 +569,7 @@ o_con_status handler_set_peripheral(void *_, onion_request *req, onion_response const char *data_state = onion_request_get_post(req, "state"); if (data_peripheral == NULL || data_state == NULL) { syslog_server(LOG_ERR, "Request: Set peripheral - invalid parameters"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (> 0 parameters are NULL)"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters, > 0 parameters are NULL"); } else { syslog_server(LOG_NOTICE, "Request: Set peripheral - peripheral: %s state: %s - start", @@ -589,7 +600,7 @@ o_con_status handler_get_interlocker(void *_, onion_request *req, onion_response if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance != -1 && selected_interlocker_name != NULL) { - GString *g_resstr = g_string_new("{\n\"interlocker\":\""); + GString *g_resstr = g_string_new("{\n\"interlocker\": \""); g_string_append_printf(g_resstr, "%s\"\n}", selected_interlocker_name->str); pthread_mutex_unlock(&interlocker_mutex); @@ -626,10 +637,7 @@ o_con_status handler_set_interlocker(void *_, onion_request *req, onion_response data_interlocker); send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "another interlocker instance is already set"); - return OCS_PROCESSED; - } - int set_i = set_interlocker(data_interlocker); - if (set_i == -1) { + } else if (set_interlocker(data_interlocker) == -1) { pthread_mutex_unlock(&interlocker_mutex); send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters or no more " "interlocker instances can be loaded"); @@ -672,11 +680,7 @@ o_con_status handler_unset_interlocker(void *_, onion_request *req, onion_respon data_interlocker); send_common_feedback(res, HTTP_BAD_REQUEST, "no interlocker instance is set that can be unset"); - return OCS_PROCESSED; - } - - unset_interlocker(data_interlocker); - if (selected_interlocker_instance != -1) { + } else if (unset_interlocker(data_interlocker) != -1) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_ERR, "Request: Unset interlocker - interlocker: %s - " diff --git a/server/src/handler_controller.h b/server/src/handler_controller.h index a359a322..3052b22a 100644 --- a/server/src/handler_controller.h +++ b/server/src/handler_controller.h @@ -56,11 +56,14 @@ bool load_default_interlocker_instance(); /** * Finds conflicting routes that have been granted. + * Shall only be called with interlocker_mutex locked. + * The caller is responsible for freeing the returned array and its contents. * * @param route_id id of route for which conflicts should be checked * @param include_conflict_train_info whether the train to which a conflicting route is granted * shall be added for each element - * @return GArray of granted route conflicts, described by strings + * @return GArray of granted route conflicts, described by strings. + * returns NULL if inputs are invalid or internal error occured. */ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_train_info); @@ -68,6 +71,7 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ * Determines whether a route is physically ready for use: * All route signals are in the Stop aspect and all blocks * are unoccupied. + * Shall only be called with interlocker_mutex locked. * * @param ID of route for which clearance should be checked * @return true if clear, otherwise false @@ -88,6 +92,7 @@ bool route_has_no_sectional_conflicts(const char *route_id); /** * Finds and grants a requested train route using an external algorithm. * A requested route is defined by a pair of source and destination signals. + * The caller is responsible for freeing the returned string. * * @param name of requesting train * @param name of the source signal diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 1a98be2b..50130116 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -56,12 +56,12 @@ typedef struct { bool has_been_set_to_stop; bool is_source_signal; bool is_destination_signal; - size_t index_in_route_path; + unsigned int index_in_route_path; } t_route_signal_info; typedef struct { t_route_signal_info **data_ptr; - size_t len; + unsigned int len; } t_route_signal_info_array; t_train_data grabbed_trains[TRAIN_ENGINE_INSTANCE_COUNT_MAX] = { @@ -70,7 +70,7 @@ t_train_data grabbed_trains[TRAIN_ENGINE_INSTANCE_COUNT_MAX] = { typedef struct { bool *arr; - size_t len; + unsigned int len; } t_route_repeated_segment_flags; typedef enum { @@ -81,7 +81,7 @@ typedef enum { } e_route_pos_error_code; typedef struct { - size_t pos_index; + unsigned int pos_index; e_route_pos_error_code err_code; } t_train_index_on_route_query; @@ -100,7 +100,7 @@ int train_get_grab_id(const char *train) { } int grab_id = -1; pthread_mutex_lock(&grabbed_trains_mutex); - for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { if (grabbed_trains[i].is_valid && strcmp(grabbed_trains[i].name->str, train) == 0) { grab_id = i; break; @@ -117,7 +117,7 @@ bool train_grabbed(const char *train) { } bool grabbed = false; pthread_mutex_lock(&grabbed_trains_mutex); - for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { if (grabbed_trains[i].is_valid && grabbed_trains[i].name != NULL && strcmp(grabbed_trains[i].name->str, train) == 0) { @@ -236,7 +236,7 @@ static void free_route_signal_info_array(t_route_signal_info_array *route_signal route_signal_info_array->len = 0; return; } - for (size_t i = 0; i < route_signal_info_array->len; ++i) { + for (unsigned int i = 0; i < route_signal_info_array->len; ++i) { t_route_signal_info *elem = route_signal_info_array->data_ptr[i]; if (elem != NULL) { if (elem->id != NULL) { @@ -257,20 +257,20 @@ static void free_route_signal_info_array(t_route_signal_info_array *route_signal // continuing. Otherwise returns true. static bool add_signal_info_for_signal(t_route_signal_info_array *signal_info_array, const char *signal_id_item, - size_t index_in_info_array, - size_t number_of_signal_infos) { + unsigned int index_in_info_array, + unsigned int number_of_signal_infos) { if (signal_info_array == NULL || signal_info_array->data_ptr == NULL) { syslog_server(LOG_ERR, "Add signal-info to signal_info_array - " "signal info array or signal info array data pointer is NULL"); return false; } - const size_t i = index_in_info_array; + const unsigned int i = index_in_info_array; // A. Return without adding signal-info if signal from route->signals is NULL if (signal_id_item == NULL) { syslog_server(LOG_WARNING, "Add signal-info to signal_info_array - " - "skipping NULL signal at index %d of route->signals", + "skipping NULL signal at index %u of route->signals", i); signal_info_array->data_ptr[i] = NULL; signal_info_array->len = i + 1; @@ -282,7 +282,8 @@ static bool add_signal_info_for_signal(t_route_signal_info_array *signal_info_ar signal_info_array->len = i + 1; if (signal_info_array->data_ptr[i] == NULL) { syslog_server(LOG_ERR, - "Add signal-info to signal_info_array - unable to allocate memory for array index %d", + "Add signal-info to signal_info_array - " + "unable to allocate memory for array index %u", i); return false; } @@ -296,7 +297,8 @@ static bool add_signal_info_for_signal(t_route_signal_info_array *signal_info_ar signal_info_array->data_ptr[i]->id = strdup(signal_id_item); if (signal_info_array->data_ptr[i]->id == NULL) { syslog_server(LOG_ERR, - "Add signal-info to signal_info_array - unable to allocate memory for signal id %s", + "Add signal-info to signal_info_array - " + "unable to allocate memory for signal id %s", signal_id_item); return false; } @@ -312,8 +314,9 @@ static t_route_signal_info_array get_route_signal_info_array(const t_interlockin } // 1. Allocate memory for array of pointers to t_route_signal_info type entities - const size_t number_of_signal_infos = route->signals->len; - info_arr.data_ptr = (t_route_signal_info**) malloc(sizeof(t_route_signal_info*) * number_of_signal_infos); + const unsigned int number_of_signal_infos = route->signals->len; + info_arr.data_ptr = + (t_route_signal_info**) malloc(sizeof(t_route_signal_info*) * number_of_signal_infos); if (info_arr.data_ptr == NULL) { syslog_server(LOG_ERR, @@ -322,23 +325,27 @@ static t_route_signal_info_array get_route_signal_info_array(const t_interlockin return info_arr; } // 2. For every signal in route->signals... - for (size_t i = 0; i < number_of_signal_infos; ++i) { + for (unsigned int i = 0; i < number_of_signal_infos; ++i) { const char *signal_id_item = g_array_index(route->signals, char *, i); // ... Call function to add a signal-info to info_arr for signal_id_item if (!add_signal_info_for_signal(&info_arr, signal_id_item, i, number_of_signal_infos)) { + syslog_server(LOG_ERR, + "Get route signal info array - route: %s - " + "failed to add signal-info, abort", + route->id); free_route_signal_info_array(&info_arr); - return info_arr; + return (t_route_signal_info_array){.data_ptr = NULL, .len = 0}; } } // 3. For every signal_info, determine index of its signal-id in route->path and set member // for index_in_route_path of signal_info accordingly - size_t path_index = 0; - for (size_t i = 0; i < info_arr.len; ++i) { + unsigned int path_index = 0; + for (unsigned int i = 0; i < info_arr.len; ++i) { if (info_arr.data_ptr[i] == NULL) { syslog_server(LOG_WARNING, "Get route signal info array - route: %s - " - "skipped NULL signal_info at pos %d of info_arr", - i); + "skipped NULL signal_info at pos %u of info_arr", + route->id, i); continue; } @@ -375,7 +382,7 @@ static t_route_repeated_segment_flags get_route_repeated_segment_flags(const t_i if (route == NULL || route->path == NULL) { return r_seg_flags; } - const size_t route_path_len = (size_t) route->path->len; + const unsigned int route_path_len = route->path->len; r_seg_flags.arr = malloc(sizeof(bool) * route_path_len); if (r_seg_flags.arr == NULL) { syslog_server(LOG_ERR, @@ -385,17 +392,17 @@ static t_route_repeated_segment_flags get_route_repeated_segment_flags(const t_i } r_seg_flags.len = route_path_len; - for (size_t i = 0; i < r_seg_flags.len; ++i) { + for (unsigned int i = 0; i < r_seg_flags.len; ++i) { r_seg_flags.arr[i] = false; } // For every segment in route->path, check if it occurs again at a different position. // If yes, set the respective flags in r_seg_flags to true. - for (size_t path_index_i = 0; path_index_i < route_path_len; ++path_index_i) { + for (unsigned int path_index_i = 0; path_index_i < route_path_len; ++path_index_i) { const char *path_item_i = g_array_index(route->path, char *, path_index_i); if (path_item_i != NULL && is_type_segment(path_item_i) && (path_index_i + 1) < route_path_len) { - for (size_t path_index_n = path_index_i + 1; path_index_n < route_path_len; ++path_index_n) { + for (unsigned int path_index_n = path_index_i + 1; path_index_n < route_path_len; ++path_index_n) { const char *path_item_n = g_array_index(route->path, char *, path_index_n); if (path_item_n != NULL && strcmp(path_item_i, path_item_n) == 0) { r_seg_flags.arr[path_index_i] = true; @@ -431,14 +438,14 @@ static t_train_index_on_route_query get_train_pos_index_in_route_ignore_repeated } ret_query.err_code = ERR_TRAIN_NOT_ON_ROUTE; - const size_t path_count = route->path->len; - for (size_t i = 0; i < train_pos_query.length; ++i) { + const unsigned int path_count = route->path->len; + for (unsigned int i = 0; i < train_pos_query.length; ++i) { // Search starting at most recent pos_index to skip unnecessary comparisons if ((ret_query.pos_index + 1) >= path_count) { // pos_index at max, stop. break; } - for (size_t n = ret_query.pos_index + 1; n < path_count; ++n) { + for (unsigned int n = ret_query.pos_index + 1; n < path_count; ++n) { bool ignore = repeated_segment_flags->arr[n]; if (!ignore) { const char *path_item = g_array_index(route->path, char *, n); @@ -457,18 +464,18 @@ static t_train_index_on_route_query get_train_pos_index_in_route_ignore_repeated // For a train at position train_pos_index in route->path, set all signals to stop that // the train has passed and have not yet been set to stop. // Returns the count of how many signals have been set to stop in this function -static size_t update_route_signals_for_train_pos(t_route_signal_info_array *signal_info_array, - t_interlocking_route *route, - size_t train_pos_index) { - size_t signals_set_to_stop = 0; +static unsigned int update_route_signals_for_train_pos(t_route_signal_info_array *signal_info_array, + t_interlocking_route *route, + unsigned int train_pos_index) { + unsigned int signals_set_to_stop = 0; const char *signal_stop_aspect = "aspect_stop"; // 1. For every signal on the route, represented by an entry in signal_info_array - for (size_t sig_info_index = 0; sig_info_index < signal_info_array->len; ++sig_info_index) { + for (unsigned int sig_info_index = 0; sig_info_index < signal_info_array->len; ++sig_info_index) { t_route_signal_info *sig_info = signal_info_array->data_ptr[sig_info_index]; if (sig_info == NULL) { syslog_server(LOG_WARNING, - "Update route signals - route: %s - signal_info_array[%d] is NULL", + "Update route signals - route: %s - signal_info_array[%u] is NULL", route->id, sig_info_index); continue; } @@ -479,13 +486,14 @@ static size_t update_route_signals_for_train_pos(t_route_signal_info_array *sign // 4. Try to set the signal to signal_stop_aspect. if (bidib_set_signal(sig_info->id, signal_stop_aspect)) { syslog_server(LOG_WARNING, - "Update route signals - route: %s signal: %s - unable to set signal to %s", + "Update route signals - route: %s signal: %s - " + "unable to set signal to %s", route->id, sig_info->id, signal_stop_aspect); } else { bidib_flush(); syslog_server(LOG_NOTICE, "Update route signals - route: %s signal: %s - signal set to %s", - sig_info->id, signal_stop_aspect, route->id); + route->id, sig_info->id, signal_stop_aspect); sig_info->has_been_set_to_stop = true; signals_set_to_stop++; } @@ -551,9 +559,11 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, // Signals in a route shall be set to stop once the train has driven passed them. // Destination signal is already in STOP aspect, thus signal_info_array.len - 1 signals. - const size_t signals_to_set_to_stop_count = signal_info_array.len - 1; - size_t signals_set_to_stop = 0; - size_t train_pos_index_previous = 0; + // No underflow/wraparound to be concerned about because the call to + // `drive_route_decoupled_signal_info_array_valid` above checks that signal_info_array.len >= 2. + const unsigned int signals_to_set_to_stop_count = signal_info_array.len - 1; + unsigned int signals_set_to_stop = 0; + unsigned int train_pos_index_previous = 0; bool first_okay_position = true; while (running && drive_route_params_valid(train_id, route) @@ -573,11 +583,12 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, if (train_pos_index_previous != train_pos_query.pos_index || first_okay_position) { const char *path_item = g_array_index(route->path, char *, train_pos_query.pos_index); syslog_server(LOG_DEBUG, - "Drive route decoupled - route: %s train: %s - train is at index %d (%s)", + "Drive route decoupled - route: %s train: %s - train is at index %u (%s)", route->id, train_id, train_pos_query.pos_index, - path_item != NULL ? path_item : "NULL"); + path_item != NULL ? path_item : "PATH-ITEM-IS-NULL"); signals_set_to_stop += - update_route_signals_for_train_pos(&signal_info_array, route, train_pos_query.pos_index); + update_route_signals_for_train_pos(&signal_info_array, route, + train_pos_query.pos_index); first_okay_position = false; } train_pos_index_previous = train_pos_query.pos_index; @@ -585,8 +596,8 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, } syslog_server(LOG_INFO, - "Drive route decoupled - Finished setting %d signals to stop for route id %s", - signals_set_to_stop, route->id); + "Drive route decoupled - route: %s train: %s - Finished setting %u signals to stop", + route->id, train_id, signals_set_to_stop); free_route_signal_info_array(&signal_info_array); free_route_repeated_segment_flags(&repeated_segment_flags); return true; @@ -600,14 +611,17 @@ static bool drive_route(const int grab_id, const char* train_id, const char *rou t_interlocking_route *route = get_route(route_id); if (route == NULL || !drive_route_params_valid(train_id, route)) { - syslog_server(LOG_ERR, "Drive route - unable to start driving because route is invalid"); + syslog_server(LOG_ERR, + "Drive route - route: %s train: %s - " + "unable to start driving because route is invalid", + route_id, train_id); return false; } // Driving starts: Driving direction is computed from the route orientation syslog_server(LOG_NOTICE, "Drive route - route: %s train: %s - %s driving starts", - route->id, train_id, is_automatic ? "automatic" : "manual"); + route_id, train_id, is_automatic ? "automatic" : "manual"); pthread_mutex_lock(&grabbed_trains_mutex); const int engine_instance = grabbed_trains[grab_id].dyn_containers_engine_instance; @@ -625,6 +639,7 @@ static bool drive_route(const int grab_id, const char* train_id, const char *rou // If driving is automatic, slow train down at the end of the route if (is_automatic && result) { + // Assumes that all routes have a path with a length of at least 2. const char *pre_dest_segment = g_array_index(route->path, char *, route->path->len - 2); while (running && !train_position_is_at(train_id, pre_dest_segment) && drive_route_params_valid(train_id, route)) { @@ -633,7 +648,7 @@ static bool drive_route(const int grab_id, const char* train_id, const char *rou syslog_server(LOG_NOTICE, "Drive route - route: %s train: %s - slowing down for end of route", - train_id, route_id); + route_id, train_id); pthread_mutex_lock(&grabbed_trains_mutex); dyn_containers_set_train_engine_instance_inputs(engine_instance, DRIVING_SPEED_STOPPING, @@ -654,7 +669,7 @@ static bool drive_route(const int grab_id, const char* train_id, const char *rou pthread_mutex_unlock(&grabbed_trains_mutex); syslog_server(LOG_NOTICE, "Drive route - route: %s train: %s - driving stops", - route->id, train_id); + route_id, train_id); // Release the route if (drive_route_params_valid(train_id, route)) { @@ -671,7 +686,7 @@ static int grab_train(const char *train, const char *engine) { } pthread_mutex_lock(&grabbed_trains_mutex); // Check if train is already grabbed - for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { if (grabbed_trains[i].is_valid && strcmp(grabbed_trains[i].name->str, train) == 0) { pthread_mutex_unlock(&grabbed_trains_mutex); syslog_server(LOG_ERR, @@ -699,7 +714,11 @@ static int grab_train(const char *train, const char *engine) { const int grab_id = next_grab_id; increment_next_grab_id(); // increment for next "grab" action grabbed_trains[grab_id].name = g_string_new(train); + + /// TODO: Discuss: is there a more elegant way to determine the track output + /// than to hardcode `master`? strcpy(grabbed_trains[grab_id].track_output, "master"); + if (dyn_containers_set_train_engine_instance(&grabbed_trains[grab_id], train, engine)) { pthread_mutex_unlock(&grabbed_trains_mutex); syslog_server(LOG_ERR, @@ -733,7 +752,7 @@ bool release_train(int grab_id) { } void release_all_grabbed_trains(void) { - for (size_t i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { + for (int i = 0; i < TRAIN_ENGINE_INSTANCE_COUNT_MAX; i++) { release_train(i); } } @@ -755,7 +774,6 @@ char *train_id_from_grab_id(int grab_id) { pthread_mutex_unlock(&grabbed_trains_mutex); if (train_id == NULL) { syslog_server(LOG_ERR, "Train id from grab id - unable to allocate memory for train_id"); - return NULL; } return train_id; } @@ -1056,8 +1074,8 @@ o_con_status handler_request_route_id(void *_, onion_request *req, onion_respons } syslog_server(LOG_NOTICE, - "Request: Request train route id - train: %s route: %s - start", - train_id, route_id); + "Request: Request train route id - route: %s train: %s - start", + route_id, train_id); // Grant the route ID using an internal algorithm const char *result = grant_route_id(train_id, route_id); @@ -1074,8 +1092,8 @@ o_con_status handler_request_route_id(void *_, onion_request *req, onion_respons } syslog_server(LOG_NOTICE, - "Request: Request train route id - train: %s route: %s - finish", - train_id, route_id); + "Request: Request train route id - route: %s train: %s - finish", + route_id, train_id); free(train_id); return OCS_PROCESSED; } else { @@ -1176,7 +1194,6 @@ o_con_status handler_drive_route(void *_, onion_request *req, onion_response *re "Request: Drive route - route: %s train: %s drive mode: %s - " "driving failed - abort", route_id, train_id, mode); - ///TODO: Automatic countermeasures? e.g. set train speed to 0 } free(train_id); return OCS_PROCESSED; diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index ce27ca27..3d88182a 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -1141,7 +1141,7 @@ static GString* get_granted_routes_json() { int routes_added = 0; if (route_ids != NULL) { - for (size_t i = 0; i < route_ids->len; i++) { + for (unsigned int i = 0; i < route_ids->len; i++) { const char *route_id = g_array_index(route_ids, char *, i); if (route_id != NULL) { t_interlocking_route *route = get_route(route_id); @@ -1216,7 +1216,7 @@ static GString* get_route_json(const char *route_id) { // Size estimated from examples with some extra margins. GString *g_route = g_string_sized_new(1024); if (g_route == NULL) { - pthread_mutex_lock(&interlocker_mutex); + pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_ERR, "Get route json - route: %s - can't allocate g_route", route_id); return NULL; } @@ -1255,7 +1255,7 @@ static GString* get_route_json(const char *route_id) { g_conflicts, true); if (g_conflicts == NULL) { syslog_server(LOG_WARNING, - "Get route json - route: %s - g_conflicts null, no conflicts will be included", + "Get route json - route: %s - g_conflicts null, conflicts will be empty", route_id); } else { free_g_strarray_and_contents(g_conflicts); diff --git a/server/src/interlocking.c b/server/src/interlocking.c index 0dae7825..4a41e1e3 100644 --- a/server/src/interlocking.c +++ b/server/src/interlocking.c @@ -85,7 +85,7 @@ static void create_route_str_to_ids_hashtable() { g_array_append_val(route_ids, route->id); } else { // entry with route_string as key does NOT exist in hashtable -> create new - GArray *route_ids = g_array_sized_new(FALSE, FALSE, sizeof(size_t), 8); + GArray *route_ids = g_array_sized_new(FALSE, FALSE, sizeof(char *), 8); g_array_append_val(route_ids, route->id); // Ownership of key (route_string) is transferred to hashtable g_hash_table_insert(route_string_to_ids_hashtable, route_string, route_ids); From 8a6a1e5c6a79fdd9d432acb2a3d89492a36011d7 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 10 Jan 2025 12:47:43 +0100 Subject: [PATCH 056/125] checked all syslog calls -> fixed syslog related problems --- server/src/bahn_data_util.c | 4 ++-- server/src/dyn_containers_interface.c | 2 +- server/src/handler_driver.c | 2 +- server/src/handler_monitor.c | 12 +++++++----- server/src/parsers/interlocking_parser.c | 6 +++--- server/src/server.c | 2 +- server/src/websocket_uploader/engine_uploader.c | 6 +++--- 7 files changed, 18 insertions(+), 16 deletions(-) diff --git a/server/src/bahn_data_util.c b/server/src/bahn_data_util.c index 2b535853..09cc6151 100644 --- a/server/src/bahn_data_util.c +++ b/server/src/bahn_data_util.c @@ -612,7 +612,7 @@ bool config_set_scalar_string_value(const char *type, const char *id, const char static e_config_type get_track_state_accessory_type(const char *id) { if (id == NULL) { - syslog_server(LOG_ERR, "Get accessory type: %s is NULL", id); + syslog_server(LOG_ERR, "Get accessory type: parameter id is NULL"); return TYPE_NOT_SUPPORTED; } @@ -833,7 +833,7 @@ static bool set_peripheral_state(const char *id, const char *value) { char *track_state_get_value(const char *id) { if (id == NULL) { - syslog_server(LOG_ERR, "Track state get value: called with invalid (NULL) id parameter"); + syslog_server(LOG_ERR, "Track state get value: invalid parameter id (NULL)"); return ""; } char *result = NULL; diff --git a/server/src/dyn_containers_interface.c b/server/src/dyn_containers_interface.c index cc6f02fe..544cf2cb 100644 --- a/server/src/dyn_containers_interface.c +++ b/server/src/dyn_containers_interface.c @@ -639,7 +639,7 @@ int dyn_containers_set_interlocker_instance(t_interlocker_data *interlocker_inst interlocker_instance->dyn_containers_interlocker_instance = i; syslog_server(LOG_NOTICE, "Interlocker %d in use by instance %d", - interlocker_type, *interlocker_instance); + interlocker_type, i); return 0; } } diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 50130116..4577de93 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -521,7 +521,7 @@ static bool drive_route_decoupled_signal_info_array_valid(const char *route_id, } else if (signal_info_array->len < 2) { syslog_server(LOG_ERR, "Drive route decoupled signal info array validation - route: %s - " - "signal info array has only %d elements (at least two elements needed)", + "signal info array has only %u elements (at least two elements needed)", route_id, signal_info_array->len); return false; } diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 3d88182a..6e2fb214 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -684,13 +684,15 @@ o_con_status handler_get_signals(void *_, onion_request *req, onion_response *re */ static GString *get_point_details_json(const char *point_id) { if (point_id == NULL) { - syslog_server(LOG_WARNING, "Get point details json - input data_id is NULL"); + syslog_server(LOG_WARNING, "Get point details json - input point_id is NULL"); return NULL; } GString *g_details = g_string_sized_new(156); if (g_details == NULL) { - syslog_server(LOG_ERR, "Get point details json - point: %s - can't allocate g_details", point_id); + syslog_server(LOG_ERR, + "Get point details json - point: %s - can't allocate g_details", + point_id); return NULL; } g_string_assign(g_details, ""); @@ -766,7 +768,7 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon const char *data_point = onion_request_get_post(req, "point"); if (data_point == NULL) { onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: Get point details - invalid parameters"); + syslog_server(LOG_ERR, "Request: Get point details - invalid point parameter"); return OCS_PROCESSED; } @@ -800,7 +802,7 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon */ static GString *get_accessory_aspects_json(const char *acc_id, bool is_point) { if (acc_id == NULL) { - syslog_server(LOG_ERR, "Get accessory aspects json - invalid accessory identifier"); + syslog_server(LOG_ERR, "Get accessory aspects json - invalid acc_id parameter (NULL)"); return NULL; } GString *g_aspects = get_accessory_aspects_json_listonly(acc_id, is_point); @@ -825,7 +827,7 @@ static o_con_status get_acc_aspects_common(onion_request *req, onion_response *r const char *data_acc = onion_request_get_post(req, acc_type_name); if (data_acc == NULL) { onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: %s - invalid parameters", l_name); + syslog_server(LOG_ERR, "Request: %s - invalid %s parameter", l_name, acc_type_name); return OCS_PROCESSED; } diff --git a/server/src/parsers/interlocking_parser.c b/server/src/parsers/interlocking_parser.c index 5878e3c1..e3917951 100644 --- a/server/src/parsers/interlocking_parser.c +++ b/server/src/parsers/interlocking_parser.c @@ -52,7 +52,7 @@ bool init_parser(const char *config_dir, const char *table_file, *fh = fopen(full_path, "r"); if (*fh == NULL) { - syslog_server(LOG_ERR, "%Interlocking parser: Failed to open %s", full_path); + syslog_server(LOG_ERR, "Interlocking parser: Failed to open %s", full_path); return false; } @@ -218,7 +218,7 @@ GHashTable *parse(yaml_parser_t *parser) { char *last_scalar = NULL; do { if (!yaml_parser_parse(parser, &event)) { - syslog_server(LOG_ERR, "Parser error %d\n", (*parser).error); + syslog_server(LOG_ERR, "Parser error %d", (*parser).error); break; } @@ -446,7 +446,7 @@ GHashTable *parse_interlocking_table(const char *config_dir) { // success if (routes != NULL) { - syslog_server(LOG_INFO, "Interlocking parser: Interlocking table loaded successfully: %d routes", + syslog_server(LOG_INFO, "Interlocking parser: Interlocking table loaded successfully: %u routes", g_hash_table_size(routes)); return routes; } diff --git a/server/src/server.c b/server/src/server.c index a402d9a9..03089de2 100644 --- a/server/src/server.c +++ b/server/src/server.c @@ -221,7 +221,7 @@ int main(int argc, char **argv) { cache_verifier_url(); free_verifier_url(); - syslog_server(LOG_NOTICE, "%s", "SWTbahn server stopped"); + syslog_server(LOG_NOTICE, "SWTbahn server stopped"); closelog(); return 0; diff --git a/server/src/websocket_uploader/engine_uploader.c b/server/src/websocket_uploader/engine_uploader.c index e6279d22..c01ea764 100644 --- a/server/src/websocket_uploader/engine_uploader.c +++ b/server/src/websocket_uploader/engine_uploader.c @@ -337,7 +337,7 @@ verif_result verify_engine_model(const char* f_filepath) { ws_verif_data.success = false; syslog_server(LOG_WARNING, "Websocket engine uploader: Verify engine model - " - "verification did not start within %d ms, abort", + "verification did not start within %u ms, abort", (poll_counter * websocket_single_poll_length_ms)); } } @@ -371,7 +371,7 @@ void set_verifier_url(const char *upd_verifier_url) { verifier_url = NULL; } verifier_url = strdup(upd_verifier_url); - syslog_server(LOG_NOTICE, "Set verifier URL - verifier URL set to: %s", verifier_url); + syslog_server(LOG_NOTICE, "Set verifier URL - verifier URL set to: %s", verifier_url); } @@ -412,7 +412,7 @@ void load_cached_verifier_url() { "Load cached verifier URL - loaded URL %s from cache", verifier_url); } else { - syslog_server(LOG_NOTICE, "Load cached verifier URL - no content in cache file"); + syslog_server(LOG_NOTICE, "Load cached verifier URL - no content in cache file"); } } else { syslog_server(LOG_NOTICE, From 77febd1c5b70673eefcea10d879ad9bca6d37af6 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 10 Jan 2025 14:12:45 +0100 Subject: [PATCH 057/125] somewhat consistent log and reply formatting for missing or invalid parameters --- server/src/bahn_data_util.c | 26 +++--- server/src/dyn_containers_interface.c | 15 ++- server/src/handler_admin.c | 59 +++++++----- server/src/handler_controller.c | 103 +++++++++++--------- server/src/handler_driver.c | 130 ++++++++++++++------------ server/src/handler_monitor.c | 20 ++-- server/src/handler_upload.c | 69 ++++++++------ server/src/interlocking.c | 2 +- 8 files changed, 239 insertions(+), 185 deletions(-) diff --git a/server/src/bahn_data_util.c b/server/src/bahn_data_util.c index 09cc6151..207d1b7f 100644 --- a/server/src/bahn_data_util.c +++ b/server/src/bahn_data_util.c @@ -193,7 +193,7 @@ static void *get_object(e_config_type config_type, const char *id) { int interlocking_table_get_routes(const char *src_signal_id, const char *dst_signal_id, char *route_ids[]) { if (src_signal_id == NULL || dst_signal_id == NULL) { - syslog_server(LOG_ERR, "interlocking table get routes: called with invalid (NULL) parameters"); + syslog_server(LOG_ERR, "interlocking table get routes: invalid (NULL) parameters"); return 0; } const GArray *arr = interlocking_table_get_route_ids(src_signal_id, dst_signal_id); @@ -208,7 +208,7 @@ int interlocking_table_get_routes(const char *src_signal_id, const char *dst_sig static int get_route_array_string_value(t_interlocking_route *route, const char *prop_name, char* data[]) { if (route == NULL || prop_name == NULL) { - syslog_server(LOG_ERR, "Get route array string value: called with invalid (NULL) parameters"); + syslog_server(LOG_ERR, "Get route array string value: invalid (NULL) parameters"); return 0; } if (string_equals(prop_name, "path")) { @@ -253,7 +253,7 @@ static int get_route_array_string_value(t_interlocking_route *route, const char char *config_get_scalar_string_value(const char *type, const char *id, const char *prop_name) { if (type == NULL || id == NULL || prop_name == NULL) { - syslog_server(LOG_ERR, "Get scalar string: called with invalid (NULL) parameters"); + syslog_server(LOG_ERR, "Get scalar string: invalid (NULL) parameters"); return ""; } e_config_type config_type = get_config_type(type); @@ -391,7 +391,7 @@ char *config_get_scalar_string_value(const char *type, const char *id, const cha float config_get_scalar_float_value(const char *type, const char *id, const char *prop_name) { if (type == NULL || id == NULL || prop_name == NULL) { - syslog_server(LOG_ERR, "Get scalar float: called with invalid (NULL) parameters"); + syslog_server(LOG_ERR, "Get scalar float: invalid (NULL) parameters"); return 0; } e_config_type config_type = get_config_type(type); @@ -438,7 +438,7 @@ float config_get_scalar_float_value(const char *type, const char *id, const char bool config_get_scalar_bool_value(const char *type, const char *id, const char *prop_name) { if (type == NULL || id == NULL || prop_name == NULL) { - syslog_server(LOG_ERR, "Get scalar bool: called with invalid (NULL) parameters"); + syslog_server(LOG_ERR, "Get scalar bool: invalid (NULL) parameters"); return ""; } e_config_type config_type = get_config_type(type); @@ -462,7 +462,7 @@ bool config_get_scalar_bool_value(const char *type, const char *id, const char * int config_get_array_string_value(const char *type, const char *id, const char *prop_name, char *data[]) { if (type == NULL || id == NULL || prop_name == NULL) { - syslog_server(LOG_ERR, "Get array string: called with invalid (NULL) parameters"); + syslog_server(LOG_ERR, "Get array string: invalid (NULL) parameters"); return 0; } e_config_type config_type = get_config_type(type); @@ -535,7 +535,7 @@ int config_get_array_string_value(const char *type, const char *id, const char * int config_get_array_int_value(const char *type, const char *id, const char *prop_name, int data[]) { if (type == NULL || id == NULL || prop_name == NULL) { - syslog_server(LOG_ERR, "Get array int value: called with invalid (NULL) parameters"); + syslog_server(LOG_ERR, "Get array int value: invalid (NULL) parameters"); return 0; } e_config_type config_type = get_config_type(type); @@ -577,7 +577,7 @@ int config_get_array_bool_value(const char *type, const char *id, const char *pr bool config_set_scalar_string_value(const char *type, const char *id, const char *prop_name, char *value) { if (type == NULL || id == NULL || prop_name == NULL) { - syslog_server(LOG_ERR, "Config set scalar string value: called with invalid (NULL) parameters"); + syslog_server(LOG_ERR, "Config set scalar string value: invalid (NULL) parameters"); return false; } e_config_type config_type = get_config_type(type); @@ -638,7 +638,7 @@ static e_config_type get_track_state_accessory_type(const char *id) { */ static char *get_signal_state(const char *id) { if (id == NULL) { - syslog_server(LOG_ERR, "Get signal state: invalid (NULL) id parameter"); + syslog_server(LOG_ERR, "Get signal state: invalid (NULL) id"); return ""; } const t_config_signal *signal = get_object(TYPE_SIGNAL, id); @@ -833,7 +833,7 @@ static bool set_peripheral_state(const char *id, const char *value) { char *track_state_get_value(const char *id) { if (id == NULL) { - syslog_server(LOG_ERR, "Track state get value: invalid parameter id (NULL)"); + syslog_server(LOG_ERR, "Track state get value: invalid (NULL) id"); return ""; } char *result = NULL; @@ -956,7 +956,7 @@ bool is_type_signal(const char *id) { int train_state_get_speed(const char *train_id) { if (train_id == NULL) { - syslog_server(LOG_ERR, "Train state get speed (km/h): invalid (NULL) train_id parameter"); + syslog_server(LOG_ERR, "Train state get speed (km/h): invalid (NULL) train_id"); return 0; } int result = 0; @@ -975,7 +975,7 @@ int train_state_get_speed(const char *train_id) { bool train_state_set_speed(const char *train_id, int speed) { if (train_id == NULL) { - syslog_server(LOG_ERR, "Train state set speed: invalid (NULL) train_id parameter"); + syslog_server(LOG_ERR, "Train state set speed: invalid (NULL) train_id"); return false; } bool result = false; @@ -1021,7 +1021,7 @@ char *config_get_point_position(const char *route_id, const char *point_id) { char *config_get_block_id_of_segment(const char *seg_id) { if (seg_id == NULL) { - syslog_server(LOG_ERR, "Get block id of segment: invalid (NULL) seg_id parameter"); + syslog_server(LOG_ERR, "Get block id of segment: invalid (NULL) seg_id"); return ""; } GHashTableIter iterator; diff --git a/server/src/dyn_containers_interface.c b/server/src/dyn_containers_interface.c index 544cf2cb..516ca612 100644 --- a/server/src/dyn_containers_interface.c +++ b/server/src/dyn_containers_interface.c @@ -143,7 +143,7 @@ static void dyn_actuate_specific_engine(int index_in_grabbed_trains) { : -eng_instance->output_nominal_speed, grabbed_trains[i].track_output)) { syslog_server(LOG_ERR, - "Dyn containers actuate - train: %s - invalid parameters", + "Dyn containers actuate - train: %s - unable to set train speed", grabbed_trains[i].name->str); } else { bidib_flush(); @@ -249,7 +249,7 @@ void dyn_containers_shm_detach(t_dyn_containers_interface **shm_payload) { void dyn_containers_shm_delete(t_dyn_shm_config *shm_config) { if (shm_config == NULL) { syslog_server(LOG_ERR, - "Error deleting shared memory segment: invalid shm_config parameter (NULL)"); + "Error deleting shared memory segment: invalid (NULL) shm_config"); return; } shm_config->shmid = shmctl(shm_config->shmid, IPC_RMID, NULL); @@ -372,7 +372,7 @@ GArray *dyn_containers_get_train_engines_arr(void) { int dyn_containers_set_train_engine_instance(t_train_data *grabbed_train, const char *train, const char *engine) { if (engine == NULL || grabbed_train == NULL) { - syslog_server(LOG_ERR, "Set train engine instance: invalid (NULL) parameter(s)"); + syslog_server(LOG_ERR, "Set train engine instance: invalid (NULL) parameters"); return 1; } else if (dyn_containers_interface == NULL) { return 1; @@ -593,11 +593,11 @@ GString *dyn_containers_get_interlockers(void) { int dyn_containers_set_interlocker_instance(t_interlocker_data *interlocker_instance, const char *interlocker) { if (interlocker == NULL) { - syslog_server(LOG_ERR, "Set interlocker instance: invalid interlocker parameter (NULL)"); + syslog_server(LOG_ERR, "Set interlocker instance: invalid (NULL) interlocker"); return 1; } else if (interlocker_instance == NULL) { syslog_server(LOG_ERR, - "Set interlocker instance: invalid interlocker_instance parameter (NULL)"); + "Set interlocker instance: invalid (NULL) interlocker_instance"); return 1; } else if (dyn_containers_interface == NULL) { return 1; @@ -652,7 +652,7 @@ int dyn_containers_set_interlocker_instance(t_interlocker_data *interlocker_inst void dyn_containers_free_interlocker_instance(t_interlocker_data *interlocker_instance) { if (interlocker_instance == NULL) { syslog_server(LOG_ERR, - "Free interlocker instance: invalid interlocker_instance parameter (NULL)"); + "Free interlocker instance: invalid (NULL) interlocker_instance"); return; } else if (dyn_containers_interface == NULL) { return; @@ -682,8 +682,7 @@ void dyn_containers_set_interlocker_instance_reset(t_interlocker_data *interlock bool reset) { if (interlocker_instance == NULL) { syslog_server(LOG_ERR, - "Set interlocker instance reset: " - "invalid interlocker_instance parameter (NULL)"); + "Set interlocker instance reset: invalid (NULL) interlocker_instance"); return; } else if (dyn_containers_interface == NULL) { return; diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index 662e3311..e1771c22 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -222,9 +222,12 @@ o_con_status handler_set_track_output(void *_, onion_request *req, onion_respons char *end; const char *data_state = onion_request_get_post(req, "state"); const long int state = strtol(data_state, &end, 10); - if (data_state == NULL || (state == LONG_MAX || state == LONG_MIN) || *end != '\0') { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter(s)"); - syslog_server(LOG_ERR, "Request: Set track output - invalid parameters"); + if (data_state == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter state"); + syslog_server(LOG_ERR, "Request: Set track output - missing parameter state"); + } else if ((state == LONG_MAX || state == LONG_MIN) || *end != '\0') { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid state"); + syslog_server(LOG_ERR, "Request: Set track output - invalid state"); } else { syslog_server(LOG_NOTICE, "Request: Set track output - state: 0x%02x - start", state); bidib_set_track_output_state_all(state); @@ -242,9 +245,15 @@ o_con_status handler_set_verification_option(void *_, onion_request *req, onion_ build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_POST) { const char *data_verification_option = onion_request_get_post(req, "verification-option"); - if (!params_check_is_bool_string(data_verification_option)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid verification option parameter"); - syslog_server(LOG_ERR, "Request: Set verification option - invalid parameters"); + if (data_verification_option == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter verification-option"); + syslog_server(LOG_ERR, + "Request: Set verification option - missing parameter verification-option"); + return OCS_PROCESSED; + } else if (!params_check_is_bool_string(data_verification_option)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid verification-option"); + syslog_server(LOG_ERR, + "Request: Set verification option - invalid verification-option"); return OCS_PROCESSED; } if (strcmp("true", data_verification_option) == 0 @@ -269,8 +278,9 @@ o_con_status handler_set_verification_url(void *_, onion_request *req, onion_res if ((onion_request_get_flags(req) & OR_METHODS) == OR_POST) { const char *data_verification_url = onion_request_get_post(req, "verification-url"); if (data_verification_url == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid verification URL parameter"); - syslog_server(LOG_ERR, "Request: Set verification URL - invalid parameters"); + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter verification-url"); + syslog_server(LOG_ERR, + "Request: Set verification URL - missing parameter verification-url"); return OCS_PROCESSED; } set_verifier_url(data_verification_url); @@ -288,20 +298,23 @@ o_con_status handler_admin_release_train(void *_, onion_request *req, onion_resp build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); + if (data_train == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter train"); + syslog_server(LOG_ERR, "Request: Admin release train - missing parameter train"); + return OCS_PROCESSED; + } const int grab_id = train_get_grab_id(data_train); - - pthread_mutex_lock(&grabbed_trains_mutex); - if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { - pthread_mutex_unlock(&grabbed_trains_mutex); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid train id or train not grabbed"); + if (grab_id == -1) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid train or train not grabbed"); syslog_server(LOG_ERR, - "Request: Admin release train - invalid train id or train %s not grabbed", + "Request: Admin release train - invalid train or train %s not grabbed", data_train); return OCS_PROCESSED; } syslog_server(LOG_NOTICE, "Request: Admin release train - train: %s - start", data_train); // Ensure that the train has stopped moving + pthread_mutex_lock(&grabbed_trains_mutex); const int engine_instance = grabbed_trains[grab_id].dyn_containers_engine_instance; dyn_containers_set_train_engine_instance_inputs(engine_instance, 0, true); pthread_mutex_unlock(&grabbed_trains_mutex); @@ -338,17 +351,21 @@ o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, onio const char *data_track_output = onion_request_get_post(req, "track-output"); const int speed = params_check_speed(data_speed); - if (speed == 999) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid speed parameter"); + if (data_train == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter train"); + syslog_server(LOG_ERR, "Request: Admin set dcc train speed - missing parameter train"); + return OCS_PROCESSED; + } else if (speed == 999) { + send_common_feedback(res, HTTP_BAD_REQUEST, "bad speed"); syslog_server(LOG_ERR, - "Request: Admin set dcc train speed - train: %s speed: %d - invalid speed", + "Request: Admin set dcc train speed - train: %s speed: %d - bad speed", data_train, speed); return OCS_PROCESSED; } else if (data_track_output == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output parameter"); + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter track-output"); syslog_server(LOG_ERR, "Request: Admin set dcc train speed - " - "train: %s speed: %d - invalid track output", + "train: %s speed: %d - missing parameter track-output", data_train, speed); return OCS_PROCESSED; } @@ -364,10 +381,10 @@ o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, onio /// Todo for the future: set speed via dyn. container, check that speed is set to 0 // with a timeout after which it is set to 0 directly via bidib as currently done. if (bidib_set_train_speed(data_train, speed, data_track_output)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); syslog_server(LOG_ERR, "Request: Admin set dcc train speed - train: %s speed: %d - " - "invalid parameters - abort", + "invalid parameter values - abort", data_train, speed); } else { bidib_flush(); diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index a1422824..d01a40d2 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -69,7 +69,7 @@ static const size_t max_items_in_route_assmptn = 1024; */ static int set_interlocker(const char *interlocker_name) { if (interlocker_name == NULL) { - syslog_server(LOG_ERR, "Set interlocker - invalid interlocker_name (NULL)"); + syslog_server(LOG_ERR, "Set interlocker - invalid (NULL) interlocker_name"); return -1; } else if (selected_interlocker_instance != -1) { // Another interlocker is already set, return -1 @@ -241,7 +241,7 @@ bool get_route_is_clear(const char *route_id) { GString *grant_route(const char *train_id, const char *source_id, const char *destination_id) { if (train_id == NULL || source_id == NULL || destination_id == NULL) { - syslog_server(LOG_ERR, "Grant route - invalid (NULL) parameter(s)"); + syslog_server(LOG_ERR, "Grant route - invalid (NULL) parameters"); return g_string_new("not_grantable"); } @@ -309,7 +309,7 @@ GString *grant_route(const char *train_id, const char *source_id, const char *de const char *grant_route_id(const char *train_id, const char *route_id) { if (train_id == NULL || route_id == NULL) { - syslog_server(LOG_ERR, "Grant route id - invalid (NULL) parameter(s)"); + syslog_server(LOG_ERR, "Grant route id - invalid (NULL) parameters"); return "not_grantable"; } pthread_mutex_lock(&interlocker_mutex); @@ -364,7 +364,8 @@ const char *grant_route_id(const char *train_id, const char *route_id) { if (route->train == NULL) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_ERR, - "Grant route id - route: %s train: %s - unable to allocate memory for route->train", + "Grant route id - route: %s train: %s - " + "unable to allocate memory for route->train", route_id, train_id); return "not_grantable"; } @@ -381,7 +382,8 @@ const char *grant_route_id(const char *train_id, const char *route_id) { for (unsigned int i = 0; i < route->signals->len - 1; i++) { const char *signal = g_array_index(route->signals, char *, i); const char *signal_type = config_get_scalar_string_value("signal", signal, "type"); - const char *signal_aspect = strcmp(signal_type, "shunting") == 0 ? "aspect_shunt" : "aspect_go"; + const char *signal_aspect = + strcmp(signal_type, "shunting") == 0 ? "aspect_shunt" : "aspect_go"; bidib_set_signal(signal, signal_aspect); bidib_flush(); } @@ -403,7 +405,7 @@ const char *grant_route_id(const char *train_id, const char *route_id) { // prevent sectional route release from working correctly bool release_route(const char *route_id) { if (route_id == NULL) { - syslog_server(LOG_ERR, "Release route - invalid parameter, route_id is null"); + syslog_server(LOG_ERR, "Release route - invalid (NULL) route_id"); return false; } pthread_mutex_lock(&interlocker_mutex); @@ -479,9 +481,12 @@ o_con_status handler_release_route(void *_, onion_request *req, onion_response * if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); - if (strcmp(route_id, "") == 0) { - syslog_server(LOG_ERR, "Request: Release route - invalid route-id parameter"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id parameter"); + if (data_route_id == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter route-id"); + syslog_server(LOG_ERR, "Request: Release route - missing parameter route-id"); + } else if (strcmp(route_id, "") == 0) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); + syslog_server(LOG_ERR, "Request: Release route - invalid route-id"); } else { syslog_server(LOG_NOTICE, "Request: Release route - route: %s - start", route_id); bool release_success = release_route(route_id); @@ -489,7 +494,7 @@ o_con_status handler_release_route(void *_, onion_request *req, onion_response * send_common_feedback(res, HTTP_OK, ""); } else { send_common_feedback(res, HTTP_BAD_REQUEST, - "invalid parameter, route does not exist or is not granted"); + "invalid route-id, route does not exist or is not granted"); } syslog_server(LOG_NOTICE, "Request: Release route - route: %s - finish", route_id); } @@ -504,24 +509,28 @@ o_con_status handler_set_point(void *_, onion_request *req, onion_response *res) if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_point = onion_request_get_post(req, "point"); const char *data_state = onion_request_get_post(req, "state"); - if (data_point == NULL || data_state == NULL) { - syslog_server(LOG_ERR, "Request: Set point - invalid parameters"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters, > 0 parameters are NULL"); + if (data_point == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter point"); + syslog_server(LOG_ERR, "Request: Set point - missing parameter point"); + } else if (data_state == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter state"); + syslog_server(LOG_ERR, "Request: Set point - missing parameter state"); } else { syslog_server(LOG_NOTICE, "Request: Set point - point: %s state: %s - start", data_point, data_state); if (bidib_switch_point(data_point, data_state)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); syslog_server(LOG_ERR, - "Request: Set point - point: %s state: %s - invalid parameters - abort", + "Request: Set point - point: %s state: %s - " + "invalid parameter values - abort", data_point, data_state); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); } else { bidib_flush(); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Set point - point: %s state: %s - finish", data_point, data_state); - send_common_feedback(res, HTTP_OK, ""); } } return OCS_PROCESSED; @@ -535,25 +544,28 @@ o_con_status handler_set_signal(void *_, onion_request *req, onion_response *res if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_signal = onion_request_get_post(req, "signal"); const char *data_state = onion_request_get_post(req, "state"); - if (data_signal == NULL || data_state == NULL) { - syslog_server(LOG_ERR, "Request: Set signal - invalid parameters"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters, > 0 parameters are NULL"); + if (data_signal == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter signal"); + syslog_server(LOG_ERR, "Request: Set signal - missing parameter signal"); + } else if (data_state == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter state"); + syslog_server(LOG_ERR, "Request: Set signal - missing parameter state"); } else { syslog_server(LOG_NOTICE, "Request: Set signal - signal: %s state: %s - start", data_signal, data_state); if (bidib_set_signal(data_signal, data_state)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); syslog_server(LOG_ERR, "Request: Set signal - signal: %s state: %s - " - "invalid parameters - abort", + "invalid parameter values - abort", data_signal, data_state); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); } else { bidib_flush(); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Set signal - signal: %s state: %s - finish", data_signal, data_state); - send_common_feedback(res, HTTP_OK, ""); } } return OCS_PROCESSED; @@ -567,25 +579,28 @@ o_con_status handler_set_peripheral(void *_, onion_request *req, onion_response if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_peripheral = onion_request_get_post(req, "peripheral"); const char *data_state = onion_request_get_post(req, "state"); - if (data_peripheral == NULL || data_state == NULL) { - syslog_server(LOG_ERR, "Request: Set peripheral - invalid parameters"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters, > 0 parameters are NULL"); + if (data_peripheral == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter peripheral"); + syslog_server(LOG_ERR, "Request: Set peripheral - missing parameter peripheral"); + } else if (data_state == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter state"); + syslog_server(LOG_ERR, "Request: Set peripheral - missing parameter state"); } else { syslog_server(LOG_NOTICE, "Request: Set peripheral - peripheral: %s state: %s - start", data_peripheral, data_state); if (bidib_set_peripheral(data_peripheral, data_state)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); syslog_server(LOG_ERR, "Request: Set peripheral - peripheral: %s state: %s - " - "invalid parameters - abort", + "invalid parameter values - abort", data_peripheral, data_state); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); } else { bidib_flush(); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Set peripheral - peripheral: %s state: %s - finish", data_peripheral, data_state); - send_common_feedback(res, HTTP_OK, ""); } } return OCS_PROCESSED; @@ -622,8 +637,8 @@ o_con_status handler_set_interlocker(void *_, onion_request *req, onion_response if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_interlocker = onion_request_get_post(req, "interlocker"); if (data_interlocker == NULL) { - syslog_server(LOG_ERR, "Request: Set interlocker - invalid interlocker parameter (NULL)"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker parameter (NULL)"); + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter interlocker"); + syslog_server(LOG_ERR, "Request: Set interlocker - missing parameter interlocker"); } else { syslog_server(LOG_NOTICE, "Request: Set interlocker - interlocker: %s - start", @@ -631,19 +646,19 @@ o_con_status handler_set_interlocker(void *_, onion_request *req, onion_response pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance != -1) { pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, + "another interlocker instance is already set"); syslog_server(LOG_ERR, "Request: Set interlocker - interlocker: %s - another " "interlocker instance is already set - abort", data_interlocker); - send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, - "another interlocker instance is already set"); } else if (set_interlocker(data_interlocker) == -1) { pthread_mutex_unlock(&interlocker_mutex); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters or no more " - "interlocker instances can be loaded"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker name " + "or no more interlocker instances can be loaded"); syslog_server(LOG_ERR, - "Request: Set interlocker - interlocker: %s - invalid " - "parameters or no more interlocker instances can be loaded - abort", + "Request: Set interlocker - interlocker: %s - invalid interlocker " + "name or no more interlocker instances can be loaded - abort", data_interlocker); } else { send_common_feedback(res, HTTP_OK, selected_interlocker_name->str); @@ -664,8 +679,8 @@ o_con_status handler_unset_interlocker(void *_, onion_request *req, onion_respon if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_interlocker = onion_request_get_post(req, "interlocker"); if (data_interlocker == NULL) { - syslog_server(LOG_ERR, "Request: Unset interlocker - invalid interlocker parameter (NULL)"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker parameter (NULL)"); + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter interlocker"); + syslog_server(LOG_ERR, "Request: Unset interlocker - missing parameter interlocker"); } else { syslog_server(LOG_NOTICE, "Request: Unset interlocker - interlocker: %s - start", @@ -674,26 +689,26 @@ o_con_status handler_unset_interlocker(void *_, onion_request *req, onion_respon pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance == -1) { pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, HTTP_BAD_REQUEST, + "no interlocker instance is set that can be unset"); syslog_server(LOG_ERR, "Request: Unset interlocker - interlocker: %s - " "no interlocker instance to unset - abort", data_interlocker); - send_common_feedback(res, HTTP_BAD_REQUEST, - "no interlocker instance is set that can be unset"); } else if (unset_interlocker(data_interlocker) != -1) { pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker name (currently " + "set interlocker doesn't match provided interlocker name)"); syslog_server(LOG_ERR, "Request: Unset interlocker - interlocker: %s - " - "invalid parameters - abort", + "invalid interlocker name - abort", data_interlocker); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters (set " - "interlocker doesn't match passed interlocker name)"); } else { pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Unset interlocker - interlocker: %s - finish", data_interlocker); - send_common_feedback(res, HTTP_OK, ""); } } return OCS_PROCESSED; diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 4577de93..a01b48bd 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -95,7 +95,7 @@ static void increment_next_grab_id(void) { int train_get_grab_id(const char *train) { if (train == NULL) { - syslog_server(LOG_ERR, "train_get_grab_id - train parameter is NULL - returning -1"); + syslog_server(LOG_ERR, "Train get grab id - invalid (NULL) train"); return -1; } int grab_id = -1; @@ -112,7 +112,7 @@ int train_get_grab_id(const char *train) { bool train_grabbed(const char *train) { if (train == NULL) { - syslog_server(LOG_ERR, "train_grabbed - train parameter is NULL - returning false"); + syslog_server(LOG_ERR, "Train grabbed - invalid (NULL) train"); return false; } bool grabbed = false; @@ -131,7 +131,7 @@ bool train_grabbed(const char *train) { static bool train_position_is_at(const char *train_id, const char *segment) { if (train_id == NULL || segment == NULL) { - syslog_server(LOG_ERR, "train_position_is_at - invalid parameters - returning false"); + syslog_server(LOG_ERR, "Train position is at - invalid (NULL) parameters"); return false; } t_bidib_train_position_query train_position_query = bidib_get_train_position(train_id); @@ -149,7 +149,7 @@ static bool train_position_is_at(const char *train_id, const char *segment) { static bool is_forward_driving(const t_interlocking_route *route, const char *train_id) { if (route == NULL || train_id == NULL) { - syslog_server(LOG_ERR, "Is forward driving - invalid parameters"); + syslog_server(LOG_ERR, "Is forward driving - invalid (NULL) parameters"); return true; } t_bidib_train_position_query train_position_query = bidib_get_train_position(train_id); @@ -206,7 +206,7 @@ static bool is_forward_driving(const t_interlocking_route *route, const char *tr static bool drive_route_params_valid(const char *train_id, t_interlocking_route *route) { if (train_id == NULL || route == NULL) { - syslog_server(LOG_ERR, "Check drive route params - invalid (NULL) parameter(s)"); + syslog_server(LOG_ERR, "Check drive route params - invalid (NULL) parameters"); return false; } if ((route->train == NULL) || strcmp(train_id, route->train) != 0) { @@ -507,8 +507,7 @@ static bool drive_route_decoupled_signal_info_array_valid(const char *route_id, t_route_signal_info_array *signal_info_array) { if (signal_info_array == NULL || route_id == NULL) { syslog_server(LOG_ERR, - "Drive route decoupled signal info array validation - " - "route id or signal info array is NULL"); + "Drive route decoupled signal info array validation - invalid (NULL) parameters"); return false; } // Check that signal_info_array array is not empty and has at least 2 entries (source, destination) @@ -539,11 +538,13 @@ static bool drive_route_decoupled_signal_info_array_valid(const char *route_id, static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, t_interlocking_route *route) { if (route == NULL || route->id == NULL) { - syslog_server(LOG_ERR, "Drive route decoupled - route or route id is NULL"); + syslog_server(LOG_ERR, "Drive route decoupled - invalid (NULL) route or route->id"); return false; } if (train_id == NULL) { - syslog_server(LOG_ERR, "Drive route decoupled - route: %s - train id is NULL", route->id); + syslog_server(LOG_ERR, + "Drive route decoupled - route: %s - invalid (NULL) train_id", + route->id); return false; } @@ -605,7 +606,7 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, static bool drive_route(const int grab_id, const char* train_id, const char *route_id, bool is_automatic) { if (train_id == NULL || route_id == NULL) { - syslog_server(LOG_ERR, "Drive route - train_id and/or route_id is NULL"); + syslog_server(LOG_ERR, "Drive route - invalid (NULL) parameters"); return false; } @@ -681,7 +682,7 @@ static bool drive_route(const int grab_id, const char* train_id, const char *rou static int grab_train(const char *train, const char *engine) { if (train == NULL || engine == NULL) { - syslog_server(LOG_ERR, "Grab train - invalid (NULL) parameter(s)"); + syslog_server(LOG_ERR, "Grab train - invalid (NULL) parameters"); return -4; } pthread_mutex_lock(&grabbed_trains_mutex); @@ -823,9 +824,13 @@ o_con_status handler_grab_train(void *_, onion_request *req, onion_response *res const char *data_train = onion_request_get_post(req, "train"); const char *data_engine = onion_request_get_post(req, "engine"); - if (data_train == NULL || data_engine == NULL) { - syslog_server(LOG_ERR, "Request: Grab train - invalid parameters"); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); + if (data_train == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter train"); + syslog_server(LOG_ERR, "Request: Grab train - missing parameter train"); + return OCS_PROCESSED; + } else if (data_engine == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter engine"); + syslog_server(LOG_ERR, "Request: Grab train - missing parameter engine"); return OCS_PROCESSED; } @@ -840,15 +845,11 @@ o_con_status handler_grab_train(void *_, onion_request *req, onion_response *res send_common_feedback(res, HTTP_NOT_FOUND, "unknown train or invalid train state"); syslog_server(LOG_ERR, "Request: Grab train - train: %s engine: %s - " - "unknown train or train state - abort", + "unknown train or invalid train state - abort", data_train, data_engine); return OCS_PROCESSED; } - // -4: invalid params - // -3: train already grabbed - // -2: all grab IDs are in use - // -1: train engine could not be started int grab_id = grab_train(data_train, data_engine); if (grab_id >= 0) { send_some_gstring_and_free(res, HTTP_OK, get_grab_fdbk_json(session_id, grab_id)); @@ -859,11 +860,11 @@ o_con_status handler_grab_train(void *_, onion_request *req, onion_response *res if (ret_str != NULL) { send_some_gstring_and_free(res, http_code, ret_str); } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, "Request: Grab train - train: %s engine: %s - " "failed to build reply message", data_train, data_engine); - onion_response_set_code(res, HTTP_INTERNAL_ERROR); } } syslog_server(LOG_NOTICE, @@ -886,7 +887,7 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, - "Request: Release train - grab id: %d - invalid session id: %s", + "Request: Release train - grab id: %d - invalid session-id: %s", grab_id, data_session_id); return OCS_PROCESSED; } @@ -895,7 +896,7 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Release train - grab id: %d - invalid grab id", grab_id); + syslog_server(LOG_ERR, "Request: Release train - grab id: %d - invalid grab-id", grab_id); return OCS_PROCESSED; } @@ -920,15 +921,15 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * bidib_free_train_state_query(train_state_query); if (!release_train(grab_id)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id or train already released"); syslog_server(LOG_ERR, "Request: Release train - grab id: %d train: %s - " - "invalid grab id - abort", + "invalid grab-id or train already released - abort", grab_id, train_id); } else { send_common_feedback(res, HTTP_OK, "released train"); syslog_server(LOG_NOTICE, - "Request: Release train - grab id: %d train: %s - finish", + "Request: Release train - grab-id: %d train: %s - finish", grab_id, train_id); } free(train_id); @@ -983,14 +984,18 @@ o_con_status handler_request_route(void *_, onion_request *req, onion_response * const int client_session_id = params_check_session_id(data_session_id); const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); - if (data_source_name == NULL || data_destination_name == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); - syslog_server(LOG_ERR, "Request: Request train route - invalid parameters"); + if (data_source_name == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter source"); + syslog_server(LOG_ERR, "Request: Request train route - missing parameter source"); + return OCS_PROCESSED; + } else if (data_destination_name == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter destination"); + syslog_server(LOG_ERR, "Request: Request train route - missing parameter destination"); return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, - "Request: Request train route - from: %s to: %s - invalid session id", + "Request: Request train route - from: %s to: %s - invalid session-id", data_source_name, data_destination_name); return OCS_PROCESSED; } @@ -1000,7 +1005,7 @@ o_con_status handler_request_route(void *_, onion_request *req, onion_response * if (train_id == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, - "Request: Request train route - from: %s to: %s - invalid grab id", + "Request: Request train route - from: %s to: %s - invalid grab-id", data_source_name, data_destination_name); return OCS_PROCESSED; } @@ -1053,12 +1058,12 @@ o_con_status handler_request_route_id(void *_, onion_request *req, onion_respons if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); - syslog_server(LOG_ERR, "Request: Request train route id - invalid route id"); + syslog_server(LOG_ERR, "Request: Request train route id - invalid route-id"); return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, - "Request: Request train route id - route: %s - invalid session id", + "Request: Request train route id - route: %s - invalid session-id", route_id); return OCS_PROCESSED; } @@ -1068,7 +1073,7 @@ o_con_status handler_request_route_id(void *_, onion_request *req, onion_respons if (train_id == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, - "Request: Request train route id - route: %s - invalid grab id", + "Request: Request train route id - route: %s - invalid grab-id", route_id); return OCS_PROCESSED; } @@ -1118,14 +1123,14 @@ o_con_status handler_driving_direction(void *_, onion_request *req, onion_respon const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); if (data_train == NULL) { - syslog_server(LOG_ERR, "Request: Driving direction - train id is NULL"); - send_common_feedback(res, HTTP_BAD_REQUEST, "Invalid train-id parameter"); + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter train"); + syslog_server(LOG_ERR, "Request: Driving direction - missing parameter train"); return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); syslog_server(LOG_ERR, - "Request: Driving direction - train: %s - invalid route id", + "Request: Driving direction - train: %s - invalid route-id", data_train); - send_common_feedback(res, HTTP_BAD_REQUEST, "Invalid route-id parameter"); return OCS_PROCESSED; } @@ -1159,7 +1164,7 @@ o_con_status handler_drive_route(void *_, onion_request *req, onion_response *re if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); - syslog_server(LOG_ERR, "Request: Drive route - invalid session id"); + syslog_server(LOG_ERR, "Request: Drive route - invalid session-id"); return OCS_PROCESSED; } else if (strcmp(mode, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid driving mode"); @@ -1167,14 +1172,15 @@ o_con_status handler_drive_route(void *_, onion_request *req, onion_response *re return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); - syslog_server(LOG_ERR, "Request: Drive route - invalid route id"); + syslog_server(LOG_ERR, "Request: Drive route - invalid route-id"); return OCS_PROCESSED; } // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { - syslog_server(LOG_ERR, "Request: Drive route - route: %s - invalid grab id", route_id); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); + syslog_server(LOG_ERR, "Request: Drive route - route: %s - invalid grab-id", route_id); return OCS_PROCESSED; } @@ -1215,7 +1221,7 @@ o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_resp if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); - syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid session id"); + syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid session-id"); return OCS_PROCESSED; } @@ -1223,7 +1229,7 @@ o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_resp if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid grab id"); + syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid grab-id"); return OCS_PROCESSED; } else if (speed == 999) { send_common_feedback(res, HTTP_BAD_REQUEST, "bad speed"); @@ -1274,7 +1280,7 @@ o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, oni if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); - syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid session id"); + syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid session-id"); return OCS_PROCESSED; } @@ -1282,7 +1288,7 @@ o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, oni if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid grab id"); + syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid grab-id"); return OCS_PROCESSED; } else if (speed == 999) { send_common_feedback(res, HTTP_BAD_REQUEST, "bad speed"); @@ -1306,10 +1312,10 @@ o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, oni grabbed_trains[grab_id].name->str, speed); if (bidib_set_calibrated_train_speed(grabbed_trains[grab_id].name->str, speed, data_track_output)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - train: %s speed: %d - " - "invalid parameters - abort", + "invalid parameter values - abort", grabbed_trains[grab_id].name->str, speed); } else { bidib_flush(); @@ -1336,7 +1342,7 @@ o_con_status handler_set_train_emergency_stop(void *_, onion_request *req, onion if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); - syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid session id"); + syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid session-id"); return OCS_PROCESSED; } @@ -1344,12 +1350,13 @@ o_con_status handler_set_train_emergency_stop(void *_, onion_request *req, onion if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid grab id"); + syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid grab-id"); return OCS_PROCESSED; } else if (data_track_output == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output"); + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter track-output"); syslog_server(LOG_ERR, - "Request: Set train emergency stop - train: %s - invalid track output", + "Request: Set train emergency stop - train: %s - " + "missing parameter track-output", grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; @@ -1359,9 +1366,10 @@ o_con_status handler_set_train_emergency_stop(void *_, onion_request *req, onion grabbed_trains[grab_id].name->str); if (bidib_emergency_stop_train(grabbed_trains[grab_id].name->str, data_track_output)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); syslog_server(LOG_ERR, - "Request: Set train emergency stop - train: %s - invalid parameters - abort", + "Request: Set train emergency stop - train: %s - " + "invalid parameter values - abort", grabbed_trains[grab_id].name->str); } else { bidib_flush(); @@ -1391,7 +1399,7 @@ o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_res if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); - syslog_server(LOG_ERR, "Request: Set train peripheral - invalid session id"); + syslog_server(LOG_ERR, "Request: Set train peripheral - invalid session-id"); return OCS_PROCESSED; } @@ -1399,27 +1407,27 @@ o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_res if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Set train peripheral - invalid grab id"); + syslog_server(LOG_ERR, "Request: Set train peripheral - invalid grab-id"); return OCS_PROCESSED; } else if (state == -1) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid peripheral state"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid state"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s - invalid state", grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; } else if (data_peripheral == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid peripheral"); + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter peripheral"); syslog_server(LOG_ERR, - "Request: Set train peripheral - train: %s - invalid peripheral", + "Request: Set train peripheral - train: %s - missing parameter peripheral", grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; } else if (data_track_output == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output"); + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter track-output"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s peripheral: %s - " - "invalid track output", + "missing parameter track-output", grabbed_trains[grab_id].name->str, data_peripheral); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; @@ -1431,10 +1439,10 @@ o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_res if (bidib_set_train_peripheral(grabbed_trains[grab_id].name->str, data_peripheral, state, data_track_output)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s " - "peripheral: %s state: 0x%02x - invalid parameters - abort", + "peripheral: %s state: 0x%02x - invalid parameter values - abort", grabbed_trains[grab_id].name->str, data_peripheral, state); } else { bidib_flush(); diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 6e2fb214..8131153e 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -210,8 +210,8 @@ o_con_status handler_get_train_state(void *_, onion_request *req, onion_response if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); if (data_train == NULL) { - syslog_server(LOG_ERR, "Request: Get train state - invalid parameters"); onion_response_set_code(res, HTTP_BAD_REQUEST); + syslog_server(LOG_ERR, "Request: Get train state - missing parameter train"); return OCS_PROCESSED; } @@ -357,8 +357,8 @@ o_con_status handler_get_train_peripherals(void *_, onion_request *req, onion_re if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); if (data_train == NULL) { - syslog_server(LOG_ERR, "Request: Get train peripherals - invalid parameters"); onion_response_set_code(res, HTTP_BAD_REQUEST); + syslog_server(LOG_ERR, "Request: Get train peripherals - missing parameter train"); return OCS_PROCESSED; } @@ -532,7 +532,7 @@ o_con_status handler_get_track_outputs(void *_, onion_request *req, onion_respon */ static GString *get_accessory_aspects_json_listonly(const char *acc_id, bool is_point) { if (acc_id == NULL) { - syslog_server(LOG_ERR, "Get accessory aspects json listonly - invalid accessory identifier"); + syslog_server(LOG_ERR, "Get accessory aspects json listonly - invalid (NULL) acc_id"); return NULL; } t_bidib_id_list_query query; @@ -684,7 +684,7 @@ o_con_status handler_get_signals(void *_, onion_request *req, onion_response *re */ static GString *get_point_details_json(const char *point_id) { if (point_id == NULL) { - syslog_server(LOG_WARNING, "Get point details json - input point_id is NULL"); + syslog_server(LOG_WARNING, "Get point details json - invalid (NULL) point_id"); return NULL; } @@ -768,7 +768,7 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon const char *data_point = onion_request_get_post(req, "point"); if (data_point == NULL) { onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: Get point details - invalid point parameter"); + syslog_server(LOG_ERR, "Request: Get point details - missing parameter point"); return OCS_PROCESSED; } @@ -802,7 +802,7 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon */ static GString *get_accessory_aspects_json(const char *acc_id, bool is_point) { if (acc_id == NULL) { - syslog_server(LOG_ERR, "Get accessory aspects json - invalid acc_id parameter (NULL)"); + syslog_server(LOG_ERR, "Get accessory aspects json - invalid (NULL) acc_id"); return NULL; } GString *g_aspects = get_accessory_aspects_json_listonly(acc_id, is_point); @@ -827,7 +827,7 @@ static o_con_status get_acc_aspects_common(onion_request *req, onion_response *r const char *data_acc = onion_request_get_post(req, acc_type_name); if (data_acc == NULL) { onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: %s - invalid %s parameter", l_name, acc_type_name); + syslog_server(LOG_ERR, "Request: %s - missing %s parameter", l_name, acc_type_name); return OCS_PROCESSED; } @@ -1212,7 +1212,7 @@ static GString* get_route_json(const char *route_id) { const t_interlocking_route *route = get_route(route_id); if (route == NULL) { pthread_mutex_unlock(&interlocker_mutex); - syslog_server(LOG_ERR, "Get route json - invalid route id (route not found)"); + syslog_server(LOG_ERR, "Get route json - route: %s - no route with this ID found", route_id); return NULL; } // Size estimated from examples with some extra margins. @@ -1280,7 +1280,7 @@ o_con_status handler_get_route(void *_, onion_request *req, onion_response *res) if (route_id == NULL || strcmp(route_id, "") == 0 || get_route(route_id) == NULL) { onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: Get route - invalid parameters"); + syslog_server(LOG_ERR, "Request: Get route - invalid or missing route-id"); return OCS_PROCESSED; } @@ -1292,7 +1292,7 @@ o_con_status handler_get_route(void *_, onion_request *req, onion_response *res) } else { onion_response_set_code(res, HTTP_BAD_REQUEST); syslog_server(LOG_ERR, - "Request: Get route - route: %s - invalid route or internal error", + "Request: Get route - route: %s - invalid route-id or internal error", route_id); } return OCS_PROCESSED; diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index 65ea2f3e..844dc765 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -147,21 +147,23 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *filename = onion_request_get_post(req, "file"); const char *temp_filepath = onion_request_get_file(req, "file"); - - if (filename == NULL || temp_filepath == NULL) { - syslog_server(LOG_ERR, "Request: Upload engine - engine file is invalid"); + if (filename == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter file"); + syslog_server(LOG_ERR, "Request: Upload engine - missing parameter file"); + } else if (temp_filepath == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "engine file is invalid"); + syslog_server(LOG_ERR, "Request: Upload engine - engine file is invalid"); return OCS_PROCESSED; } syslog_server(LOG_NOTICE, "Request: Upload engine - engine file: %s - start", filename); if (engine_file_exists(filename)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "engine file already exists"); syslog_server(LOG_ERR, "Request: Upload engine - engine file: %s - " "engine file already exists - abort", filename); - send_common_feedback(res, HTTP_BAD_REQUEST, "engine file already exists"); return OCS_PROCESSED; } @@ -200,11 +202,11 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * if (status == DYNLIB_COMPILE_SCCHARTS_C_ERR || status == DYNLIB_COMPILE_SHARED_SCCHARTS_ERR) { remove_engine_files(libname); + send_common_feedback(res, HTTP_INTERNAL_ERROR, "engine file could not be compiled"); syslog_server(LOG_ERR, "Request: Upload engine - engine file: %s - could not be " "compiled into a C file and then to a shared library - abort", filepath); - send_common_feedback(res, HTTP_INTERNAL_ERROR, "engine file could not be compiled"); return OCS_PROCESSED; } syslog_server(LOG_DEBUG, @@ -217,11 +219,11 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * pthread_mutex_unlock(&dyn_containers_mutex); remove_engine_files(libname); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "No available engine slot"); syslog_server(LOG_WARNING, "Request: Upload engine - engine file: %s - " "no available engine slot - abort", filename); - send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "No available engine slot"); return OCS_PROCESSED; } @@ -240,12 +242,16 @@ o_con_status handler_remove_engine(void *_, onion_request *req, onion_response * build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *name = onion_request_get_post(req, "engine-name"); - if (name == NULL || plugin_is_unremovable(name)) { + if (name == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter engine-name"); syslog_server(LOG_ERR, - "Request: Remove engine - engine name \"%s\" is " - "invalid or engine is unremovable", - (name == NULL) ? "null" : name); - send_common_feedback(res, HTTP_BAD_REQUEST, "Engine name invalid or engine unremovable"); + "Request: Remove engine - missing parameter engine-name"); + return OCS_PROCESSED; + } else if (plugin_is_unremovable(name)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "engine to remove is unremovable"); + syslog_server(LOG_ERR, + "Request: Remove engine - engine to remove (%s) is unremovable", + name); return OCS_PROCESSED; } @@ -273,10 +279,11 @@ o_con_status handler_remove_engine(void *_, onion_request *req, onion_response * } if (!remove_engine_files(name)) { - syslog_server(LOG_ERR, + syslog_server(LOG_WARNING, "Request: Remove engine - engine: %s - files could not be removed", name); } + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Remove engine - engine: %s - finish", name); return OCS_PROCESSED; } else { @@ -326,9 +333,13 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *filename = onion_request_get_post(req, "file"); const char *temp_filepath = onion_request_get_file(req, "file"); - if (filename == NULL || temp_filepath == NULL) { - syslog_server(LOG_ERR, "Request: Upload - interlocker file is invalid"); - send_common_feedback(res, HTTP_BAD_REQUEST, "Interlocker file is invalid"); + if (filename == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter file"); + syslog_server(LOG_ERR, "Request: Upload interlocker - missing parameter file"); + return OCS_PROCESSED; + } else if (temp_filepath == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "interlocker file is invalid"); + syslog_server(LOG_ERR, "Request: Upload interlocker - interlocker file is invalid"); return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -336,11 +347,11 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo filename); if (interlocker_file_exists(filename)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "interlocker file already exists"); syslog_server(LOG_ERR, "Request: Upload interlocker - interlocker file: %s - " "file already exists - abort", filename); - send_common_feedback(res, HTTP_BAD_REQUEST, "Interlocker file already exists"); return OCS_PROCESSED; } @@ -361,12 +372,12 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo remove_file_extension(filepath, final_filepath, ".bahn"); const dynlib_status status = dynlib_compile_bahndsl(filepath, interlocker_dir); if (status == DYNLIB_COMPILE_SHARED_BAHNDSL_ERR) { + send_common_feedback(res, HTTP_INTERNAL_ERROR, "interlocker file could not be compiled"); syslog_server(LOG_ERR, "Request: Upload interlocker - interlocker file: %s - " "interlocker could not be compiled - abort", filename); remove_interlocker_files(libname); - send_common_feedback(res, HTTP_INTERNAL_ERROR, "Interlocker file could not be compiled"); return OCS_PROCESSED; } syslog_server(LOG_DEBUG, @@ -379,11 +390,11 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo pthread_mutex_unlock(&dyn_containers_mutex); remove_interlocker_files(libname); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "no interlocker slot available"); syslog_server(LOG_WARNING, "Request: Upload interlocker - interlocker file: %s - " "no available interlocker slot - abort", filename); - send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "No available interlocker slot"); return OCS_PROCESSED; } @@ -404,12 +415,16 @@ o_con_status handler_remove_interlocker(void *_, onion_request *req, onion_respo build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *name = onion_request_get_post(req, "interlocker-name"); - if (name == NULL || plugin_is_unremovable(name)) { + if (name == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter interlocker-name"); syslog_server(LOG_ERR, - "Request: Remove interlocker - interlocker name is invalid " - "or interlocker is unremovable"); - send_common_feedback(res, HTTP_BAD_REQUEST, - "Interlocker name invalid or interlocker unremovable"); + "Request: Remove interlocker - missing parameter interlocker-name"); + return OCS_PROCESSED; + } else if (plugin_is_unremovable(name)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "interlocker to remove is unremovable"); + syslog_server(LOG_ERR, + "Request: Remove interlocker - interlocker to remove (%s) is unremovable", + name); return OCS_PROCESSED; } syslog_server(LOG_NOTICE, "Request: Remove interlocker - interlocker: %s - start", name); @@ -418,35 +433,35 @@ o_con_status handler_remove_interlocker(void *_, onion_request *req, onion_respo const int interlocker_slot = dyn_containers_get_interlocker_slot(name); if (interlocker_slot < 0) { pthread_mutex_unlock(&dyn_containers_mutex); + send_common_feedback(res, HTTP_NOT_FOUND, "Interlocker to remove could not be found"); syslog_server(LOG_ERR, "Request: Remove interlocker - interlocker: %s - " "interlocker could not be found - abort", name); - send_common_feedback(res, HTTP_NOT_FOUND, "Interlocker to remove could not be found"); return OCS_PROCESSED; } const bool free_success = dyn_containers_free_interlocker(interlocker_slot); pthread_mutex_unlock(&dyn_containers_mutex); if (!free_success) { + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Interlocker is still in use"); syslog_server(LOG_WARNING, "Request: Remove interlocker - interlocker: %s - " "interlocker is still in use - abort", name); - send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Interlocker is still in use"); return OCS_PROCESSED; } if (!remove_interlocker_files(name)) { - syslog_server(LOG_ERR, + syslog_server(LOG_WARNING, "Request: Remove interlocker - interlocker: %s - " "files could not be removed", name); } + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Remove interlocker - interlocker: %s - finish", name); - send_common_feedback(res, HTTP_OK, ""); return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Remove interlocker"); diff --git a/server/src/interlocking.c b/server/src/interlocking.c index 4a41e1e3..e539a54b 100644 --- a/server/src/interlocking.c +++ b/server/src/interlocking.c @@ -138,7 +138,7 @@ GArray *interlocking_table_get_all_route_ids_shallowcpy(void) { const char *interlocking_table_get_route_id_of_train(const char *train_id) { if (train_id == NULL) { - syslog_server(LOG_ERR, "Get route id of train: invalid train_id parameter (NULL)"); + syslog_server(LOG_ERR, "Get route id of train: invalid (NULL) train_id"); return NULL; } GHashTableIter iter; From 9830d064e449a2f924f5e21bffd9e7836c3674db Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 10 Jan 2025 14:13:48 +0100 Subject: [PATCH 058/125] send before logging in upload handler --- server/src/handler_upload.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index 844dc765..74e90557 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -261,20 +261,20 @@ o_con_status handler_remove_engine(void *_, onion_request *req, onion_response * const int engine_slot = dyn_containers_get_engine_slot(name); if (engine_slot < 0) { pthread_mutex_unlock(&dyn_containers_mutex); + send_common_feedback(res, HTTP_NOT_FOUND, "Engine could not be found"); syslog_server(LOG_WARNING, "Request: Remove engine - engine: %s - engine could not be found - abort", name); - send_common_feedback(res, HTTP_NOT_FOUND, "Engine could not be found"); return OCS_PROCESSED; } const bool engine_freed_successfully = dyn_containers_free_engine(engine_slot); pthread_mutex_unlock(&dyn_containers_mutex); if (!engine_freed_successfully) { + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Engine still in use"); syslog_server(LOG_WARNING, "Request: Remove engine - engine: %s - engine is still in use - abort", name); - send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Engine still in use"); return OCS_PROCESSED; } From b1fbaca3d5728311516e7214685c269370908156 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 10 Jan 2025 14:46:31 +0100 Subject: [PATCH 059/125] drive-route checks if grab-id is still valid before stopping/slowing train, plus minor other adjustments --- server/src/handler_driver.c | 44 ++++++++++++++++++++++-------------- server/src/handler_monitor.c | 3 ++- 2 files changed, 29 insertions(+), 18 deletions(-) diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index a01b48bd..c9814d1e 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -208,8 +208,7 @@ static bool drive_route_params_valid(const char *train_id, t_interlocking_route if (train_id == NULL || route == NULL) { syslog_server(LOG_ERR, "Check drive route params - invalid (NULL) parameters"); return false; - } - if ((route->train == NULL) || strcmp(train_id, route->train) != 0) { + } else if (route->train == NULL || strcmp(train_id, route->train) != 0) { syslog_server(LOG_WARNING, "Check drive route params - route %s not granted to train %s", route->id, train_id); @@ -647,14 +646,16 @@ static bool drive_route(const int grab_id, const char* train_id, const char *rou usleep(TRAIN_DRIVE_TIME_STEP); } - syslog_server(LOG_NOTICE, - "Drive route - route: %s train: %s - slowing down for end of route", - route_id, train_id); - pthread_mutex_lock(&grabbed_trains_mutex); - dyn_containers_set_train_engine_instance_inputs(engine_instance, - DRIVING_SPEED_STOPPING, - requested_forwards); - pthread_mutex_unlock(&grabbed_trains_mutex); + if (train_get_grab_id(train_id) == grab_id) { + syslog_server(LOG_NOTICE, + "Drive route - route: %s train: %s - slowing down for end of route", + route_id, train_id); + pthread_mutex_lock(&grabbed_trains_mutex); + dyn_containers_set_train_engine_instance_inputs(engine_instance, + DRIVING_SPEED_STOPPING, + requested_forwards); + pthread_mutex_unlock(&grabbed_trains_mutex); + } } // Wait for train to reach the end of the route @@ -665,12 +666,21 @@ static bool drive_route(const int grab_id, const char* train_id, const char *rou } // Driving stops - pthread_mutex_lock(&grabbed_trains_mutex); - dyn_containers_set_train_engine_instance_inputs(engine_instance, 0, requested_forwards); - pthread_mutex_unlock(&grabbed_trains_mutex); - syslog_server(LOG_NOTICE, - "Drive route - route: %s train: %s - driving stops", - route_id, train_id); + if (train_get_grab_id(train_id) == grab_id) { + pthread_mutex_lock(&grabbed_trains_mutex); + dyn_containers_set_train_engine_instance_inputs(engine_instance, 0, requested_forwards); + pthread_mutex_unlock(&grabbed_trains_mutex); + syslog_server(LOG_NOTICE, + "Drive route - route: %s train: %s - stopping train", + route_id, train_id); + } else { + bidib_set_train_speed(train_id, 0, "master"); + bidib_flush(); + syslog_server(LOG_WARNING, + "Drive route - route: %s train: %s - stopping train directly via bidib, " + "train was released during route driving!", + route_id, train_id); + } // Release the route if (drive_route_params_valid(train_id, route)) { @@ -1276,7 +1286,7 @@ o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, oni const char *data_track_output = onion_request_get_post(req, "track-output"); const int client_session_id = params_check_session_id(data_session_id); const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); - const int speed = params_check_calibrated_speed(data_speed); + const int speed = params_check_calibrated_speed(data_speed); if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 8131153e..264b87b0 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -1158,14 +1158,15 @@ static GString* get_granted_routes_json() { } } } + pthread_mutex_unlock(&interlocker_mutex); // free the GArray but not the contained strings, as it was created by shallow copy. g_array_free(route_ids, true); } else { + pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_WARNING, "Get granted routes json - " "route ID array copied from interlocking table is NULL"); } - pthread_mutex_unlock(&interlocker_mutex); append_end_of_list(g_granted_routes, false, routes_added > 0); append_end_of_obj(g_granted_routes, false); From 236cac12d4ee580c878ddd9d135d37708ae57eb3 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 10 Jan 2025 15:09:48 +0100 Subject: [PATCH 060/125] adjusted naming in handler_driver --- server/src/handler_driver.c | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index c9814d1e..62cf36d0 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -502,23 +502,22 @@ static unsigned int update_route_signals_for_train_pos(t_route_signal_info_array return signals_set_to_stop; } -static bool drive_route_decoupled_signal_info_array_valid(const char *route_id, - t_route_signal_info_array *signal_info_array) { +static bool validate_route_signal_info_array(const char *route_id, + t_route_signal_info_array *signal_info_array) { if (signal_info_array == NULL || route_id == NULL) { - syslog_server(LOG_ERR, - "Drive route decoupled signal info array validation - invalid (NULL) parameters"); + syslog_server(LOG_ERR, "Route signal info array validation - invalid (NULL) parameters"); return false; } - // Check that signal_info_array array is not empty and has at least 2 entries (source, destination) + // Check that signal_info_array array is not empty and has >= 2 entries (source, destination) if (signal_info_array->data_ptr == NULL) { syslog_server(LOG_ERR, - "Drive route decoupled signal info array validation - route: %s - " + "Route signal info array validation - route: %s - " "signal info array is NULL", route_id); return false; } else if (signal_info_array->len < 2) { syslog_server(LOG_ERR, - "Drive route decoupled signal info array validation - route: %s - " + "Route signal info array validation - route: %s - " "signal info array has only %u elements (at least two elements needed)", route_id, signal_info_array->len); return false; @@ -527,22 +526,22 @@ static bool drive_route_decoupled_signal_info_array_valid(const char *route_id, } /** - * @brief For a train driving a route, set the signals to stop that the train passes + * @brief For a train driving a route, set the signals to stop that the train passes. * * @param train_id The train driving the route * @param route The route to be driven - * @return true signal updating successful (all signals were passed and set to stop) - * @return false signal updating failed + * @return true if signal updating successful (all passed signals were set to stop, + * and all signals have been passed or the route has been released or the system is stopping), + * otherwise returns false. */ -static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, - t_interlocking_route *route) { +static bool monitor_train_on_route(const char *train_id, t_interlocking_route *route) { if (route == NULL || route->id == NULL) { - syslog_server(LOG_ERR, "Drive route decoupled - invalid (NULL) route or route->id"); + syslog_server(LOG_ERR, "Monitor train on route - invalid (NULL) route or route->id"); return false; } if (train_id == NULL) { syslog_server(LOG_ERR, - "Drive route decoupled - route: %s - invalid (NULL) train_id", + "Monitor train on route - route: %s - invalid (NULL) train_id", route->id); return false; } @@ -551,7 +550,7 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, t_route_signal_info_array signal_info_array = get_route_signal_info_array(route); t_route_repeated_segment_flags repeated_segment_flags = get_route_repeated_segment_flags(route); - if (!drive_route_decoupled_signal_info_array_valid(route->id, &signal_info_array)) { + if (!validate_route_signal_info_array(route->id, &signal_info_array)) { free_route_signal_info_array(&signal_info_array); free_route_repeated_segment_flags(&repeated_segment_flags); return false; @@ -583,7 +582,7 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, if (train_pos_index_previous != train_pos_query.pos_index || first_okay_position) { const char *path_item = g_array_index(route->path, char *, train_pos_query.pos_index); syslog_server(LOG_DEBUG, - "Drive route decoupled - route: %s train: %s - train is at index %u (%s)", + "Monitor train on route - route: %s train: %s - train is at index %u (%s)", route->id, train_id, train_pos_query.pos_index, path_item != NULL ? path_item : "PATH-ITEM-IS-NULL"); signals_set_to_stop += @@ -596,7 +595,7 @@ static bool drive_route_progressive_stop_signals_decoupled(const char *train_id, } syslog_server(LOG_INFO, - "Drive route decoupled - route: %s train: %s - Finished setting %u signals to stop", + "Monitor train on route - route: %s train: %s - Finished, set %u signals to stop", route->id, train_id, signals_set_to_stop); free_route_signal_info_array(&signal_info_array); free_route_repeated_segment_flags(&repeated_segment_flags); @@ -635,7 +634,7 @@ static bool drive_route(const int grab_id, const char* train_id, const char *rou // Set the signals along the route to Stop as the train drives past them // This will return as soon as the train has passed all but the destination signal - const bool result = drive_route_progressive_stop_signals_decoupled(train_id, route); + const bool result = monitor_train_on_route(train_id, route); // If driving is automatic, slow train down at the end of the route if (is_automatic && result) { From 3c59aecd6afdd29a8822df707618067e8a2dfb7a Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 10 Jan 2025 15:15:44 +0100 Subject: [PATCH 061/125] consistent log formatting for grab-id and session-id --- server/src/handler_admin.c | 6 +++--- server/src/handler_driver.c | 20 ++++++++++---------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index e1771c22..a0dc9c1b 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -175,19 +175,19 @@ o_con_status handler_startup(void *_, onion_request *req, onion_response *res) { // Necessary when restarting the server because libbidib closes syslog on exit openlog("swtbahn", 0, LOG_LOCAL0); session_id = time(NULL); - syslog_server(LOG_NOTICE, "Request: Startup server - session id: %ld - start", session_id); + syslog_server(LOG_NOTICE, "Request: Startup server - session-id: %ld - start", session_id); if (startup_server()) { pthread_mutex_unlock(&start_stop_mutex); send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, - "Request: Startup server - session id: %ld - finish", + "Request: Startup server - session-id: %ld - finish", session_id); } else { pthread_mutex_unlock(&start_stop_mutex); send_common_feedback(res, HTTP_INTERNAL_ERROR, "unable to start the server"); syslog_server(LOG_ERR, - "Request: Startup server - session id: %ld - " + "Request: Startup server - session-id: %ld - " "unable to start the server - abort", session_id); } diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 62cf36d0..ac48320e 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -95,7 +95,7 @@ static void increment_next_grab_id(void) { int train_get_grab_id(const char *train) { if (train == NULL) { - syslog_server(LOG_ERR, "Train get grab id - invalid (NULL) train"); + syslog_server(LOG_ERR, "Train get grab-id - invalid (NULL) train"); return -1; } int grab_id = -1; @@ -713,14 +713,14 @@ static int grab_train(const char *train, const char *engine) { if (next_grab_id == start) { pthread_mutex_unlock(&grabbed_trains_mutex); syslog_server(LOG_ERR, - "Grab train - train: %s engine: %s - all grab ids in use", + "Grab train - train: %s engine: %s - all grab-ids in use", train, engine); return -2; } increment_next_grab_id(); } } - // Assign grab id, set track output to master, set engine instance + // Assign grab-id, set track output to master, set engine instance const int grab_id = next_grab_id; increment_next_grab_id(); // increment for next "grab" action grabbed_trains[grab_id].name = g_string_new(train); @@ -751,7 +751,7 @@ bool release_train(int grab_id) { grabbed_trains[grab_id].is_valid = false; dyn_containers_free_train_engine_instance(grabbed_trains[grab_id].dyn_containers_engine_instance); syslog_server(LOG_NOTICE, - "Release train - grab id: %d train: %s - released", + "Release train - grab-id: %d train: %s - released", grab_id, grabbed_trains[grab_id].name->str); g_string_free(grabbed_trains[grab_id].name, true); grabbed_trains[grab_id].name = NULL; @@ -776,14 +776,14 @@ char *train_id_from_grab_id(int grab_id) { if (grabbed_trains[grab_id].name == NULL) { pthread_mutex_unlock(&grabbed_trains_mutex); syslog_server(LOG_ERR, - "Train id from grab id - train with id %d marked valid but name is NULL", + "Train id from grab-id - train with id %d marked valid but name is NULL", grab_id); return NULL; } char *train_id = strdup(grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); if (train_id == NULL) { - syslog_server(LOG_ERR, "Train id from grab id - unable to allocate memory for train_id"); + syslog_server(LOG_ERR, "Train id from grab-id - unable to allocate memory for train_id"); } return train_id; } @@ -896,7 +896,7 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, - "Request: Release train - grab id: %d - invalid session-id: %s", + "Request: Release train - grab-id: %d - invalid session-id: %s", grab_id, data_session_id); return OCS_PROCESSED; } @@ -905,12 +905,12 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Release train - grab id: %d - invalid grab-id", grab_id); + syslog_server(LOG_ERR, "Request: Release train - grab-id: %d - invalid grab-id", grab_id); return OCS_PROCESSED; } syslog_server(LOG_NOTICE, - "Request: Release train - grab id: %d train: %s - start", + "Request: Release train - grab-id: %d train: %s - start", grab_id, train_id); // Set train speed to 0 @@ -932,7 +932,7 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * if (!release_train(grab_id)) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id or train already released"); syslog_server(LOG_ERR, - "Request: Release train - grab id: %d train: %s - " + "Request: Release train - grab-id: %d train: %s - " "invalid grab-id or train already released - abort", grab_id, train_id); } else { From 7ee42c84d5d40fc8e6d56e35f3a17c6074a66023 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Jan 2025 11:05:46 +0100 Subject: [PATCH 062/125] slight api and path adjustments --- server/doc/api-formats/driver.md | 2 +- server/src/handler_controller.c | 2 +- server/src/handler_driver.c | 43 +++++++++++++++++++++----------- server/src/handler_driver.h | 2 +- server/src/server.c | 6 +++-- 5 files changed, 36 insertions(+), 19 deletions(-) diff --git a/server/doc/api-formats/driver.md b/server/doc/api-formats/driver.md index b86fca29..29d8f715 100644 --- a/server/doc/api-formats/driver.md +++ b/server/doc/api-formats/driver.md @@ -2,7 +2,7 @@ For the driver endpoints: - driver/drive-route - driver/emergency-stop - driver/release-train -- driver/request-route-id +- driver/request-route-by-id - driver/set-calibrated-train-speed - driver/set-dcc-train-speed - driver/set-train-peripheral diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index d01a40d2..427cd7c0 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -661,8 +661,8 @@ o_con_status handler_set_interlocker(void *_, onion_request *req, onion_response "name or no more interlocker instances can be loaded - abort", data_interlocker); } else { - send_common_feedback(res, HTTP_OK, selected_interlocker_name->str); pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Set interlocker - interlocker: %s - finish", data_interlocker); diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index ac48320e..27ab0879 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -919,7 +919,7 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * dyn_containers_set_train_engine_instance_inputs(engine_instance, 0, true); pthread_mutex_unlock(&grabbed_trains_mutex); - + ///TODO: Consider adding a timeout after which the train is directly set to stop via bidib. // Wait until the train has stopped moving t_bidib_train_state_query train_state_query = bidib_get_train_state(train_id); while (train_state_query.data.set_speed_step != 0) { @@ -936,7 +936,7 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * "invalid grab-id or train already released - abort", grab_id, train_id); } else { - send_common_feedback(res, HTTP_OK, "released train"); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Release train - grab-id: %d train: %s - finish", grab_id, train_id); @@ -1053,9 +1053,7 @@ o_con_status handler_request_route(void *_, onion_request *req, onion_response * } } -///TODO: Discuss - maybe this should be called "request_route_by_id", to distinguish it from -// just getting a route id of/for something (similar to a monitor endpoint). -o_con_status handler_request_route_id(void *_, onion_request *req, onion_response *res) { +o_con_status handler_request_route_by_id(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_session_id = onion_request_get_post(req, "session-id"); @@ -1065,14 +1063,18 @@ o_con_status handler_request_route_id(void *_, onion_request *req, onion_respons const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); const char *route_id = params_check_route_id(data_route_id); - if (strcmp(route_id, "") == 0) { + if (data_route_id == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter route-id"); + syslog_server(LOG_ERR, "Request: Request route by id - missing parameter route-id"); + return OCS_PROCESSED; + } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); - syslog_server(LOG_ERR, "Request: Request train route id - invalid route-id"); + syslog_server(LOG_ERR, "Request: Request route by id - invalid route-id"); return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, - "Request: Request train route id - route: %s - invalid session-id", + "Request: Request route by id - route: %s - invalid session-id", route_id); return OCS_PROCESSED; } @@ -1082,19 +1084,19 @@ o_con_status handler_request_route_id(void *_, onion_request *req, onion_respons if (train_id == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, - "Request: Request train route id - route: %s - invalid grab-id", + "Request: Request route by id - route: %s - invalid grab-id", route_id); return OCS_PROCESSED; } syslog_server(LOG_NOTICE, - "Request: Request train route id - route: %s train: %s - start", + "Request: Request route by id - route: %s train: %s - start", route_id, train_id); // Grant the route ID using an internal algorithm const char *result = grant_route_id(train_id, route_id); if (strcmp(result, "granted") == 0) { - send_common_feedback(res, HTTP_OK, result); + send_common_feedback(res, HTTP_OK, ""); } else if (strcmp(result, "not_grantable") == 0) { send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Route not available or has conflicts with granted route(s)"); @@ -1106,12 +1108,12 @@ o_con_status handler_request_route_id(void *_, onion_request *req, onion_respons } syslog_server(LOG_NOTICE, - "Request: Request train route id - route: %s train: %s - finish", + "Request: Request route by id - route: %s train: %s - finish", route_id, train_id); free(train_id); return OCS_PROCESSED; } else { - return handle_req_run_or_method_fail(res, running, "Request train route id"); + return handle_req_run_or_method_fail(res, running, "Request route by id"); } } @@ -1131,10 +1133,15 @@ o_con_status handler_driving_direction(void *_, onion_request *req, onion_respon const char *data_train = onion_request_get_post(req, "train"); const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); + if (data_train == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter train"); syslog_server(LOG_ERR, "Request: Driving direction - missing parameter train"); return OCS_PROCESSED; + } else if (data_route_id == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter route-id"); + syslog_server(LOG_ERR, "Request: Driving direction - missing parameter route-id"); + return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); syslog_server(LOG_ERR, @@ -1171,7 +1178,15 @@ o_con_status handler_drive_route(void *_, onion_request *req, onion_response *re const char *route_id = params_check_route_id(data_route_id); const char *mode = params_check_mode(data_mode); - if (client_session_id != session_id) { + if (data_route_id == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter route-id"); + syslog_server(LOG_ERR, "Request: Drive route - missing parameter route-id"); + return OCS_PROCESSED; + } else if (data_mode == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter mode"); + syslog_server(LOG_ERR, "Request: Drive route - missing parameter mode"); + return OCS_PROCESSED; + } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Drive route - invalid session-id"); return OCS_PROCESSED; diff --git a/server/src/handler_driver.h b/server/src/handler_driver.h index 2d1775f5..43ff855e 100644 --- a/server/src/handler_driver.h +++ b/server/src/handler_driver.h @@ -73,7 +73,7 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * o_con_status handler_request_route(void *_, onion_request *req, onion_response *res); -o_con_status handler_request_route_id(void *_, onion_request *req, onion_response *res); +o_con_status handler_request_route_by_id(void *_, onion_request *req, onion_response *res); o_con_status handler_driving_direction(void *_, onion_request *req, onion_response *res); diff --git a/server/src/server.c b/server/src/server.c index 03089de2..27904cad 100644 --- a/server/src/server.c +++ b/server/src/server.c @@ -175,7 +175,8 @@ int main(int argc, char **argv) { onion_url_add(urls, "driver/grab-train", handler_grab_train); onion_url_add(urls, "driver/release-train", handler_release_train); onion_url_add(urls, "driver/request-route", handler_request_route); - onion_url_add(urls, "driver/request-route-id", handler_request_route_id); + /// NOTE: Changed path from request-route-id to request-route-by-id + onion_url_add(urls, "driver/request-route-by-id", handler_request_route_by_id); onion_url_add(urls, "driver/direction", handler_driving_direction); onion_url_add(urls, "driver/drive-route", handler_drive_route); onion_url_add(urls, "driver/set-dcc-train-speed", handler_set_dcc_train_speed); @@ -209,7 +210,8 @@ int main(int argc, char **argv) { onion_url_add(urls, "monitor/granted-routes", handler_get_granted_routes); onion_url_add(urls, "monitor/route", handler_get_route); onion_url_add(urls, "monitor/debug", handler_get_debug_info); - onion_url_add(urls, "monitor/debug_extra", handler_get_debug_info_extra); + /// NOTE: Changed path from debug_extra to debug-extra + onion_url_add(urls, "monitor/debug-extra", handler_get_debug_info_extra); load_cached_verifier_url(); From 74ce724433a96e59fc705e3071f6c391a45ceaee Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Jan 2025 11:31:45 +0100 Subject: [PATCH 063/125] monitor api small path change and placeholder for missing endpoint --- .../monitor/json-schema-monitor_signal-details.json | 3 +++ server/src/handler_monitor.c | 12 ++++++++---- server/src/handler_monitor.h | 2 ++ server/src/server.c | 2 ++ 4 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 server/doc/api-formats/monitor/json-schema-monitor_signal-details.json diff --git a/server/doc/api-formats/monitor/json-schema-monitor_signal-details.json b/server/doc/api-formats/monitor/json-schema-monitor_signal-details.json new file mode 100644 index 00000000..b6c05883 --- /dev/null +++ b/server/doc/api-formats/monitor/json-schema-monitor_signal-details.json @@ -0,0 +1,3 @@ +{ + "TODO" : "TODO" +} \ No newline at end of file diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 264b87b0..091091d4 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -206,7 +206,6 @@ static GString *get_train_state_json_given_statequery(const char *train_id, o_con_status handler_get_train_state(void *_, onion_request *req, onion_response *res) { build_response_header(res); - ///NOTE: uses POST instead of GET to allow parameter passing via POST dict/data if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); if (data_train == NULL) { @@ -353,7 +352,6 @@ static GString *get_train_peripherals_json(const char *train_id) { o_con_status handler_get_train_peripherals(void *_, onion_request *req, onion_response *res) { build_response_header(res); - ///NOTE: uses POST instead of GET to allow parameter passing via POST dict/data if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); if (data_train == NULL) { @@ -762,8 +760,6 @@ static GString *get_point_details_json(const char *point_id) { o_con_status handler_get_point_details(void *_, onion_request *req, onion_response *res) { build_response_header(res); - ///TODO: register URL this handler should handle in server setup - ///NOTE: uses POST instead of GET to allow parameter passing via POST dict/data if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_point = onion_request_get_post(req, "point"); if (data_point == NULL) { @@ -788,6 +784,12 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon } } +o_con_status handler_get_signal_details(void *_, onion_request *req, onion_response *res) { + syslog_server(LOG_ERR, "Request: Get signal details - not implemented yet!"); + ///TODO: Implement + return OCS_NOT_IMPLEMENTED; +} + /** * @brief Get information on the aspects an accessory supports, either for a point or a signal * (choose by value passed for is_point parameter). See also get_accessory_aspects_json_listonly. @@ -927,6 +929,8 @@ static GString *get_segments_json() { o_con_status handler_get_segments(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { + /// TODO: Change to only have occupied-by if actually needed! + /// Also change spec! GString *g_segments = get_segments_json(); send_some_gstring_and_free(res, HTTP_OK, g_segments); syslog_server(LOG_INFO, "Request: Get segments - done"); diff --git a/server/src/handler_monitor.h b/server/src/handler_monitor.h index 0a30f46c..6e30ff54 100644 --- a/server/src/handler_monitor.h +++ b/server/src/handler_monitor.h @@ -59,6 +59,8 @@ o_con_status handler_get_signals(void *_, onion_request *req, onion_response *re ///TODO: Add an equivalent "signal-details" endpoint o_con_status handler_get_point_details(void *_, onion_request *req, onion_response *res); +o_con_status handler_get_signal_details(void *_, onion_request *req, onion_response *res); + o_con_status handler_get_point_aspects(void *_, onion_request *req, onion_response *res); o_con_status handler_get_signal_aspects(void *_, onion_request *req, onion_response *res); diff --git a/server/src/server.c b/server/src/server.c index 27904cad..03663f5a 100644 --- a/server/src/server.c +++ b/server/src/server.c @@ -200,6 +200,8 @@ int main(int argc, char **argv) { onion_url_add(urls, "monitor/track-outputs", handler_get_track_outputs); onion_url_add(urls, "monitor/points", handler_get_points); onion_url_add(urls, "monitor/signals", handler_get_signals); + onion_url_add(urls, "monitor/point-details", handler_get_point_details); + onion_url_add(urls, "monitor/signal-details", handler_get_signal_details); onion_url_add(urls, "monitor/point-aspects", handler_get_point_aspects); onion_url_add(urls, "monitor/signal-aspects", handler_get_signal_aspects); onion_url_add(urls, "monitor/segments", handler_get_segments); From e113085de9b15bbc057d00054d5565e9980d4c51 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Jan 2025 11:53:42 +0100 Subject: [PATCH 064/125] try to refactor missing param validation, admin only for now --- server/src/communication_utils.c | 28 ++++++++++++ server/src/communication_utils.h | 26 +++++++++++ server/src/handler_admin.c | 75 +++++++++++++------------------- 3 files changed, 85 insertions(+), 44 deletions(-) diff --git a/server/src/communication_utils.c b/server/src/communication_utils.c index 41fab42e..04739ef4 100644 --- a/server/src/communication_utils.c +++ b/server/src/communication_utils.c @@ -44,6 +44,34 @@ bool send_common_feedback(onion_response *res, int status_code, const char* mess } } +bool send_common_feedback_miss_param_helper(onion_response *res, int status_code, const char* param_name) { + if (res == NULL) { + return false; + } + onion_response_set_code(res, status_code); + if (param_name != NULL && strlen(param_name) > 0) { + return onion_response_printf(res, "{\n\"msg\":\"missing parameter %s\"\n}", param_name) >= 0; + } else { + return true; + } +} + + +bool handle_param_miss_check(onion_response *res, const char *request_log_name, + const char *param_name, const char *param_value) { + if (param_value != NULL) { + return false; + } + if (send_common_feedback_miss_param_helper(res, HTTP_BAD_REQUEST, param_name)) { + syslog_server(LOG_ERR, "Request: %s - missing parameter %s", request_log_name, param_name); + } else { + syslog_server(LOG_ERR, + "Request: %s - missing parameter %s - but sending msg to client failed", + request_log_name, param_name); + } + return true; +} + bool send_some_gstring_and_free(onion_response *res, int status_code, GString *gstr) { if (res == NULL) { if (gstr != NULL) { diff --git a/server/src/communication_utils.h b/server/src/communication_utils.h index 5f96f836..a2cfc526 100644 --- a/server/src/communication_utils.h +++ b/server/src/communication_utils.h @@ -47,6 +47,32 @@ */ bool send_common_feedback(onion_response *res, int status_code, const char* message); +/** + * @brief Constructs the common-feedback json with field prefilled for a missing parameter msg, + * and sends it via the response res. + * + * @param res the response over which to send. Shall not be NULL, otherwise no sending takes place. + * @param status_code http status code to set for the response to be sent + * @param param_name name of the missing parameter + * @return true if parameters were valid + * @return false if parameters were invalid or an internal error occurred (nothing will be sent) + */ +bool send_common_feedback_miss_param_helper(onion_response *res, int status_code, const char* param_name); + +/** + * @brief Checks if a parameter is missing by way of checking if param_value is NULL. + * If it is NULL, sends common response with parameter missing message, and logs to syslog + * + * @param res the response over which to send if the parameter is missing. + * @param request_log_name the request calling this check, used for logging + * @param param_name name of the parameter being checked + * @param param_value value of the parameter + * @return true if the parameter (value) is missing/NULL + * @return false otherwise. + */ +bool handle_param_miss_check(onion_response *res, const char *request_log_name, + const char *param_name, const char *param_value); + /** * @brief Sends the content of gstr via the response res. Then free's the GString, * i.e., this is a transfer of ownership. diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index a0dc9c1b..4e255b66 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -222,9 +222,8 @@ o_con_status handler_set_track_output(void *_, onion_request *req, onion_respons char *end; const char *data_state = onion_request_get_post(req, "state"); const long int state = strtol(data_state, &end, 10); - if (data_state == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter state"); - syslog_server(LOG_ERR, "Request: Set track output - missing parameter state"); + if (handle_param_miss_check(res, "Set track output", "state", data_state)) { + ; } else if ((state == LONG_MAX || state == LONG_MIN) || *end != '\0') { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid state"); syslog_server(LOG_ERR, "Request: Set track output - invalid state"); @@ -245,28 +244,26 @@ o_con_status handler_set_verification_option(void *_, onion_request *req, onion_ build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_POST) { const char *data_verification_option = onion_request_get_post(req, "verification-option"); - if (data_verification_option == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter verification-option"); - syslog_server(LOG_ERR, - "Request: Set verification option - missing parameter verification-option"); - return OCS_PROCESSED; + if (handle_param_miss_check(res, "Set verification option", "verification-option", + data_verification_option)) { + ; } else if (!params_check_is_bool_string(data_verification_option)) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid verification-option"); syslog_server(LOG_ERR, "Request: Set verification option - invalid verification-option"); - return OCS_PROCESSED; - } - if (strcmp("true", data_verification_option) == 0 - || strcmp("True", data_verification_option) == 0 - || strcmp("TRUE", data_verification_option) == 0) { - verification_enabled = true; } else { - verification_enabled = false; + if (strcmp("true", data_verification_option) == 0 + || strcmp("True", data_verification_option) == 0 + || strcmp("TRUE", data_verification_option) == 0) { + verification_enabled = true; + } else { + verification_enabled = false; + } + send_common_feedback(res, HTTP_OK, ""); + syslog_server(LOG_NOTICE, + "Request: Set verification option - new state: %s - done", + verification_enabled ? "enabled" : "disabled"); } - send_common_feedback(res, HTTP_OK, ""); - syslog_server(LOG_NOTICE, - "Request: Set verification option - new state: %s - done", - verification_enabled ? "enabled" : "disabled"); return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Set verification option"); @@ -277,17 +274,16 @@ o_con_status handler_set_verification_url(void *_, onion_request *req, onion_res build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_POST) { const char *data_verification_url = onion_request_get_post(req, "verification-url"); - if (data_verification_url == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter verification-url"); - syslog_server(LOG_ERR, - "Request: Set verification URL - missing parameter verification-url"); - return OCS_PROCESSED; + if (handle_param_miss_check(res, "Set verification URL", "verification-url", + data_verification_url)) { + ; + } else { + set_verifier_url(data_verification_url); + send_common_feedback(res, HTTP_OK, ""); + syslog_server(LOG_NOTICE, + "Request: Set verification URL - new URL: %s - done", + data_verification_url); } - set_verifier_url(data_verification_url); - send_common_feedback(res, HTTP_OK, ""); - syslog_server(LOG_NOTICE, - "Request: Set verification URL - new URL: %s - done", - data_verification_url); return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Set verification URL"); @@ -298,9 +294,7 @@ o_con_status handler_admin_release_train(void *_, onion_request *req, onion_resp build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); - if (data_train == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter train"); - syslog_server(LOG_ERR, "Request: Admin release train - missing parameter train"); + if (handle_param_miss_check(res, "Admin release train", "train", data_train)) { return OCS_PROCESSED; } const int grab_id = train_get_grab_id(data_train); @@ -350,10 +344,10 @@ o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, onio const char *data_speed = onion_request_get_post(req, "speed"); const char *data_track_output = onion_request_get_post(req, "track-output"); const int speed = params_check_speed(data_speed); - - if (data_train == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter train"); - syslog_server(LOG_ERR, "Request: Admin set dcc train speed - missing parameter train"); + const char *l_name = "Admin set dcc train speed"; + if (handle_param_miss_check(res, l_name, "train", data_train) + || handle_param_miss_check(res, l_name, "speed", data_speed) + || handle_param_miss_check(res, l_name, "track-output", data_track_output)) { return OCS_PROCESSED; } else if (speed == 999) { send_common_feedback(res, HTTP_BAD_REQUEST, "bad speed"); @@ -361,14 +355,7 @@ o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, onio "Request: Admin set dcc train speed - train: %s speed: %d - bad speed", data_train, speed); return OCS_PROCESSED; - } else if (data_track_output == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter track-output"); - syslog_server(LOG_ERR, - "Request: Admin set dcc train speed - " - "train: %s speed: %d - missing parameter track-output", - data_train, speed); - return OCS_PROCESSED; - } + } syslog_server(LOG_NOTICE, "Request: Admin set dcc train speed - train: %s speed: %d - start", From f4a4a7d4e45f57706330109f84e347ec92a37aeb Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 16 Jan 2025 17:27:20 +0100 Subject: [PATCH 065/125] roll out missing param handling for all - monitor endpoints with params changed api format --- .../json-schema-monitor_point-aspects.json | 10 +- .../monitor/json-schema-monitor_route.json | 36 ++- .../json-schema-monitor_signal-aspects.json | 10 +- ...json-schema-monitor_train-peripherals.json | 10 +- .../json-schema-monitor_train-state.json | 24 +- server/src/bahn_data_util.c | 10 + server/src/bahn_data_util.h | 2 + server/src/communication_utils.c | 30 +- server/src/communication_utils.h | 14 + server/src/handler_controller.c | 253 +++++++++-------- server/src/handler_driver.c | 262 ++++++------------ server/src/handler_monitor.c | 46 +-- server/src/handler_upload.c | 36 +-- 13 files changed, 362 insertions(+), 381 deletions(-) diff --git a/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json b/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json index 5c266543..69a31332 100644 --- a/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json +++ b/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json @@ -14,9 +14,15 @@ "minLength": 1, "uniqueItems": true } + }, + "msg": { + "type": "string", + "description": "rejection/error message", + "minLength": 1 } }, - "required": [ - "aspects" + "oneOf": [ + {"required": ["aspects"]}, + {"required": ["msg"]} ] } \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_route.json b/server/doc/api-formats/monitor/json-schema-monitor_route.json index ca8794a5..af5d5306 100644 --- a/server/doc/api-formats/monitor/json-schema-monitor_route.json +++ b/server/doc/api-formats/monitor/json-schema-monitor_route.json @@ -85,21 +85,29 @@ "type": "string", "minLength": 0, "$comment": "Contains name of the train if the route is currently granted, otherwise empty." + }, + "msg": { + "type": "string", + "description": "rejection/error message", + "minLength": 1 } }, - "required": [ - "id", - "source_signal", - "destination_signal", - "orientation", - "length", - "path", - "sections", - "signals", - "points", - "conflicting_route_ids", - "granted_conflicting_route_ids", - "clear", - "granted_to_train" + "oneOf": [ + {"required": [ + "id", + "source_signal", + "destination_signal", + "orientation", + "length", + "path", + "sections", + "signals", + "points", + "conflicting_route_ids", + "granted_conflicting_route_ids", + "clear", + "granted_to_train" + ]}, + {"required": ["msg"]} ] } \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json b/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json index 4b0bc512..2e60462c 100644 --- a/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json +++ b/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json @@ -14,9 +14,15 @@ "minLength": 1, "uniqueItems": true } + }, + "msg": { + "type": "string", + "description": "rejection/error message", + "minLength": 1 } }, - "required": [ - "aspects" + "oneOf": [ + {"required": ["aspects"]}, + {"required": ["msg"]} ] } \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_train-peripherals.json b/server/doc/api-formats/monitor/json-schema-monitor_train-peripherals.json index 9dbfc434..2c067011 100644 --- a/server/doc/api-formats/monitor/json-schema-monitor_train-peripherals.json +++ b/server/doc/api-formats/monitor/json-schema-monitor_train-peripherals.json @@ -25,9 +25,15 @@ } } } + }, + "msg": { + "type": "string", + "description": "rejection/error message", + "minLength": 1 } }, - "required": [ - "train-peripherals" + "oneOf": [ + {"required": ["train-peripherals"]}, + {"required": ["msg"]} ] } \ No newline at end of file diff --git a/server/doc/api-formats/monitor/json-schema-monitor_train-state.json b/server/doc/api-formats/monitor/json-schema-monitor_train-state.json index 746a2c27..3a0f86ae 100644 --- a/server/doc/api-formats/monitor/json-schema-monitor_train-state.json +++ b/server/doc/api-formats/monitor/json-schema-monitor_train-state.json @@ -48,16 +48,22 @@ "items": { "type": "string" } + }, + "msg": { + "type": "string", + "description": "rejection/error message", + "minLength": 1 } }, - "required": [ - "id", - "grabbed", - "orientation", - "direction", - "speed_step", - "detected_kmh_speed", - "route_id", - "on_track" + "oneOf": [ + {"required": ["id", + "grabbed", + "orientation", + "direction", + "speed_step", + "detected_kmh_speed", + "route_id", + "on_track"]}, + {"required": ["msg"]} ] } \ No newline at end of file diff --git a/server/src/bahn_data_util.c b/server/src/bahn_data_util.c index 207d1b7f..dcbc38a9 100644 --- a/server/src/bahn_data_util.c +++ b/server/src/bahn_data_util.c @@ -954,6 +954,16 @@ bool is_type_signal(const char *id) { return result; } +bool is_type_point(const char *id) { + if (id == NULL) { + return false; + } + bool result = g_hash_table_contains(config_data.table_points, id); + + syslog_server(LOG_DEBUG, "Is %s a point: %s", id, result ? "true" : "false"); + return result; +} + int train_state_get_speed(const char *train_id) { if (train_id == NULL) { syslog_server(LOG_ERR, "Train state get speed (km/h): invalid (NULL) train_id"); diff --git a/server/src/bahn_data_util.h b/server/src/bahn_data_util.h index 125656fc..9b95852d 100644 --- a/server/src/bahn_data_util.h +++ b/server/src/bahn_data_util.h @@ -105,6 +105,8 @@ bool is_type_segment(const char *id); bool is_type_signal(const char *id); +bool is_type_point(const char *id); + int train_state_get_speed(const char *train_id); bool train_state_set_speed(const char *train_id, int speed); diff --git a/server/src/communication_utils.c b/server/src/communication_utils.c index 04739ef4..e961ef0d 100644 --- a/server/src/communication_utils.c +++ b/server/src/communication_utils.c @@ -26,22 +26,13 @@ */ #include "communication_utils.h" -#include "json_response_builder.h" #include "server.h" // for logging #include bool send_common_feedback(onion_response *res, int status_code, const char* message) { - if (res == NULL) { - return false; - } - onion_response_set_code(res, status_code); - if (message != NULL && strlen(message) > 0) { - return onion_response_printf(res, "{\n\"msg\":\"%s\"\n}", message) >= 0; - } else { - return true; - } + return send_single_str_field_feedback(res, status_code, "msg", message); } bool send_common_feedback_miss_param_helper(onion_response *res, int status_code, const char* param_name) { @@ -50,13 +41,14 @@ bool send_common_feedback_miss_param_helper(onion_response *res, int status_code } onion_response_set_code(res, status_code); if (param_name != NULL && strlen(param_name) > 0) { - return onion_response_printf(res, "{\n\"msg\":\"missing parameter %s\"\n}", param_name) >= 0; + return onion_response_printf(res, "{\"msg\":\"missing parameter %s\"}", param_name) >= 0; } else { return true; } } - +/// NOTE: This function / helper might better fit into a general util class for handlers, +/// but we don't have that. bool handle_param_miss_check(onion_response *res, const char *request_log_name, const char *param_name, const char *param_value) { if (param_value != NULL) { @@ -89,6 +81,20 @@ bool send_some_gstring_and_free(onion_response *res, int status_code, GString *g return ret; } +bool send_single_str_field_feedback(onion_response *res, int status_code, const char* field_name, + const char* field_value) { + if (res == NULL) { + return false; + } + onion_response_set_code(res, status_code); + if (field_name != NULL && strlen(field_name) > 0 + && field_value != NULL && strlen(field_value) > 0) { + return onion_response_printf(res, "{\"%s\":\"%s\"}", field_name, field_value) >= 0; + } else { + return true; + } +} + bool send_some_cstring(onion_response *res, int status_code, const char *cstr) { if (res == NULL) { return false; diff --git a/server/src/communication_utils.h b/server/src/communication_utils.h index a2cfc526..9ad1882f 100644 --- a/server/src/communication_utils.h +++ b/server/src/communication_utils.h @@ -86,6 +86,20 @@ bool handle_param_miss_check(onion_response *res, const char *request_log_name, */ bool send_some_gstring_and_free(onion_response *res, int status_code, GString *gstr); +/** + * @brief Constructs a json with a single field, named by field_name, and its string value + * given by field_value + * + * @param res the response over which to send. Shall not be NULL. + * @param status_code http status code to set for the response to be sent + * @param field_name the field identifier + * @param field_value the field value + * @return true if parameters were valid + * @return false otherwise. + */ +bool send_single_str_field_feedback(onion_response *res, int status_code, const char* field_name, + const char* field_value); + // This does not free the passed string to be sent (in contrast to the gstring version). /** * @brief Like send_some_gstring_and_free, but with a c-style 0-terminated string, diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 427cd7c0..f3d66ab0 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -481,22 +481,24 @@ o_con_status handler_release_route(void *_, onion_request *req, onion_response * if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); - if (data_route_id == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter route-id"); - syslog_server(LOG_ERR, "Request: Release route - missing parameter route-id"); + + if (handle_param_miss_check(res, "Release route", "route-id", data_route_id)) { + return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); syslog_server(LOG_ERR, "Request: Release route - invalid route-id"); - } else { - syslog_server(LOG_NOTICE, "Request: Release route - route: %s - start", route_id); - bool release_success = release_route(route_id); - if (release_success) { - send_common_feedback(res, HTTP_OK, ""); - } else { - send_common_feedback(res, HTTP_BAD_REQUEST, - "invalid route-id, route does not exist or is not granted"); - } + return OCS_PROCESSED; + } + + syslog_server(LOG_NOTICE, "Request: Release route - route: %s - start", route_id); + bool release_success = release_route(route_id); + if (release_success) { + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, "Request: Release route - route: %s - finish", route_id); + } else { + send_common_feedback(res, HTTP_BAD_REQUEST, + "invalid route-id, route does not exist or is not granted"); + syslog_server(LOG_ERR, "Request: Release route - route: %s - abort", route_id); } return OCS_PROCESSED; } else { @@ -509,29 +511,27 @@ o_con_status handler_set_point(void *_, onion_request *req, onion_response *res) if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_point = onion_request_get_post(req, "point"); const char *data_state = onion_request_get_post(req, "state"); - if (data_point == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter point"); - syslog_server(LOG_ERR, "Request: Set point - missing parameter point"); - } else if (data_state == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter state"); - syslog_server(LOG_ERR, "Request: Set point - missing parameter state"); + + if (handle_param_miss_check(res, "Set point", "point", data_point) + || handle_param_miss_check(res, "Set point", "state", data_state)) { + return OCS_PROCESSED; + } + + syslog_server(LOG_NOTICE, + "Request: Set point - point: %s state: %s - start", + data_point, data_state); + if (bidib_switch_point(data_point, data_state)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); + syslog_server(LOG_ERR, + "Request: Set point - point: %s state: %s - " + "invalid parameter values - abort", + data_point, data_state); } else { + bidib_flush(); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, - "Request: Set point - point: %s state: %s - start", + "Request: Set point - point: %s state: %s - finish", data_point, data_state); - if (bidib_switch_point(data_point, data_state)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); - syslog_server(LOG_ERR, - "Request: Set point - point: %s state: %s - " - "invalid parameter values - abort", - data_point, data_state); - } else { - bidib_flush(); - send_common_feedback(res, HTTP_OK, ""); - syslog_server(LOG_NOTICE, - "Request: Set point - point: %s state: %s - finish", - data_point, data_state); - } } return OCS_PROCESSED; } else { @@ -544,29 +544,27 @@ o_con_status handler_set_signal(void *_, onion_request *req, onion_response *res if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_signal = onion_request_get_post(req, "signal"); const char *data_state = onion_request_get_post(req, "state"); - if (data_signal == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter signal"); - syslog_server(LOG_ERR, "Request: Set signal - missing parameter signal"); - } else if (data_state == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter state"); - syslog_server(LOG_ERR, "Request: Set signal - missing parameter state"); + + if (handle_param_miss_check(res, "Set signal", "signal", data_signal) + || handle_param_miss_check(res, "Set signal", "state", data_state)) { + return OCS_PROCESSED; + } + + syslog_server(LOG_NOTICE, + "Request: Set signal - signal: %s state: %s - start", + data_signal, data_state); + if (bidib_set_signal(data_signal, data_state)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); + syslog_server(LOG_ERR, + "Request: Set signal - signal: %s state: %s - " + "invalid parameter values - abort", + data_signal, data_state); } else { + bidib_flush(); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, - "Request: Set signal - signal: %s state: %s - start", + "Request: Set signal - signal: %s state: %s - finish", data_signal, data_state); - if (bidib_set_signal(data_signal, data_state)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); - syslog_server(LOG_ERR, - "Request: Set signal - signal: %s state: %s - " - "invalid parameter values - abort", - data_signal, data_state); - } else { - bidib_flush(); - send_common_feedback(res, HTTP_OK, ""); - syslog_server(LOG_NOTICE, - "Request: Set signal - signal: %s state: %s - finish", - data_signal, data_state); - } } return OCS_PROCESSED; } else { @@ -579,29 +577,27 @@ o_con_status handler_set_peripheral(void *_, onion_request *req, onion_response if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_peripheral = onion_request_get_post(req, "peripheral"); const char *data_state = onion_request_get_post(req, "state"); - if (data_peripheral == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter peripheral"); - syslog_server(LOG_ERR, "Request: Set peripheral - missing parameter peripheral"); - } else if (data_state == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter state"); - syslog_server(LOG_ERR, "Request: Set peripheral - missing parameter state"); + + if (handle_param_miss_check(res, "Set peripheral", "peripheral", data_peripheral) + || handle_param_miss_check(res, "Set peripheral", "state", data_state)) { + return OCS_PROCESSED; + } + + syslog_server(LOG_NOTICE, + "Request: Set peripheral - peripheral: %s state: %s - start", + data_peripheral, data_state); + if (bidib_set_peripheral(data_peripheral, data_state)) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); + syslog_server(LOG_ERR, + "Request: Set peripheral - peripheral: %s state: %s - " + "invalid parameter values - abort", + data_peripheral, data_state); } else { + bidib_flush(); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, - "Request: Set peripheral - peripheral: %s state: %s - start", + "Request: Set peripheral - peripheral: %s state: %s - finish", data_peripheral, data_state); - if (bidib_set_peripheral(data_peripheral, data_state)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); - syslog_server(LOG_ERR, - "Request: Set peripheral - peripheral: %s state: %s - " - "invalid parameter values - abort", - data_peripheral, data_state); - } else { - bidib_flush(); - send_common_feedback(res, HTTP_OK, ""); - syslog_server(LOG_NOTICE, - "Request: Set peripheral - peripheral: %s state: %s - finish", - data_peripheral, data_state); - } } return OCS_PROCESSED; } else { @@ -636,37 +632,37 @@ o_con_status handler_set_interlocker(void *_, onion_request *req, onion_response build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_interlocker = onion_request_get_post(req, "interlocker"); - if (data_interlocker == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter interlocker"); - syslog_server(LOG_ERR, "Request: Set interlocker - missing parameter interlocker"); + + if (handle_param_miss_check(res, "Set interlocker", "interlocker", data_interlocker)) { + return OCS_PROCESSED; + } + + syslog_server(LOG_NOTICE, + "Request: Set interlocker - interlocker: %s - start", + data_interlocker); + pthread_mutex_lock(&interlocker_mutex); + if (selected_interlocker_instance != -1) { + pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, + "another interlocker instance is already set"); + syslog_server(LOG_ERR, + "Request: Set interlocker - interlocker: %s - another " + "interlocker instance is already set - abort", + data_interlocker); + } else if (set_interlocker(data_interlocker) == -1) { + pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker name " + "or no more interlocker instances can be loaded"); + syslog_server(LOG_ERR, + "Request: Set interlocker - interlocker: %s - invalid interlocker " + "name or no more interlocker instances can be loaded - abort", + data_interlocker); } else { + pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, - "Request: Set interlocker - interlocker: %s - start", + "Request: Set interlocker - interlocker: %s - finish", data_interlocker); - pthread_mutex_lock(&interlocker_mutex); - if (selected_interlocker_instance != -1) { - pthread_mutex_unlock(&interlocker_mutex); - send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, - "another interlocker instance is already set"); - syslog_server(LOG_ERR, - "Request: Set interlocker - interlocker: %s - another " - "interlocker instance is already set - abort", - data_interlocker); - } else if (set_interlocker(data_interlocker) == -1) { - pthread_mutex_unlock(&interlocker_mutex); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker name " - "or no more interlocker instances can be loaded"); - syslog_server(LOG_ERR, - "Request: Set interlocker - interlocker: %s - invalid interlocker " - "name or no more interlocker instances can be loaded - abort", - data_interlocker); - } else { - pthread_mutex_unlock(&interlocker_mutex); - send_common_feedback(res, HTTP_OK, ""); - syslog_server(LOG_NOTICE, - "Request: Set interlocker - interlocker: %s - finish", - data_interlocker); - } } return OCS_PROCESSED; } else { @@ -678,38 +674,37 @@ o_con_status handler_unset_interlocker(void *_, onion_request *req, onion_respon build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_interlocker = onion_request_get_post(req, "interlocker"); - if (data_interlocker == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter interlocker"); - syslog_server(LOG_ERR, "Request: Unset interlocker - missing parameter interlocker"); + + if (handle_param_miss_check(res, "Unset interlocker", "interlocker", data_interlocker)) { + return OCS_PROCESSED; + } + + syslog_server(LOG_NOTICE, + "Request: Unset interlocker - interlocker: %s - start", + data_interlocker); + pthread_mutex_lock(&interlocker_mutex); + if (selected_interlocker_instance == -1) { + pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, HTTP_BAD_REQUEST, + "no interlocker instance is set that can be unset"); + syslog_server(LOG_ERR, + "Request: Unset interlocker - interlocker: %s - " + "no interlocker instance to unset - abort", + data_interlocker); + } else if (unset_interlocker(data_interlocker) != -1) { + pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker name (currently " + "set interlocker doesn't match provided interlocker name)"); + syslog_server(LOG_ERR, + "Request: Unset interlocker - interlocker: %s - " + "invalid interlocker name - abort", + data_interlocker); } else { + pthread_mutex_unlock(&interlocker_mutex); + send_common_feedback(res, HTTP_OK, ""); syslog_server(LOG_NOTICE, - "Request: Unset interlocker - interlocker: %s - start", + "Request: Unset interlocker - interlocker: %s - finish", data_interlocker); - - pthread_mutex_lock(&interlocker_mutex); - if (selected_interlocker_instance == -1) { - pthread_mutex_unlock(&interlocker_mutex); - send_common_feedback(res, HTTP_BAD_REQUEST, - "no interlocker instance is set that can be unset"); - syslog_server(LOG_ERR, - "Request: Unset interlocker - interlocker: %s - " - "no interlocker instance to unset - abort", - data_interlocker); - } else if (unset_interlocker(data_interlocker) != -1) { - pthread_mutex_unlock(&interlocker_mutex); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker name (currently " - "set interlocker doesn't match provided interlocker name)"); - syslog_server(LOG_ERR, - "Request: Unset interlocker - interlocker: %s - " - "invalid interlocker name - abort", - data_interlocker); - } else { - pthread_mutex_unlock(&interlocker_mutex); - send_common_feedback(res, HTTP_OK, ""); - syslog_server(LOG_NOTICE, - "Request: Unset interlocker - interlocker: %s - finish", - data_interlocker); - } } return OCS_PROCESSED; } else { diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index 27ab0879..1f26fa2d 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -788,16 +788,7 @@ char *train_id_from_grab_id(int grab_id) { return train_id; } -static GString *get_simple_msg_json(const char *msg) { - GString *g_smplemsg = g_string_sized_new(128); - g_string_assign(g_smplemsg, ""); - append_start_of_obj(g_smplemsg, false); - append_field_str_value(g_smplemsg, "msg", msg, false); - append_end_of_obj(g_smplemsg, false); - return g_smplemsg; -} - -static GString *get_grab_fdbk_json(int l_session_id, int grab_id) { +static GString *build_grab_fdbk_json(int l_session_id, int grab_id) { GString *g_feedback = g_string_sized_new(96); g_string_assign(g_feedback, ""); append_start_of_obj(g_feedback, false); @@ -807,39 +798,14 @@ static GString *get_grab_fdbk_json(int l_session_id, int grab_id) { return g_feedback; } -static void fill_grab_err_feedback(int grab_id, GString *ret_str, int *http_code) { - ret_str = NULL; - if (grab_id == -4) { - ret_str = get_simple_msg_json("invalid parameters"); - *http_code = HTTP_BAD_REQUEST; - } else if (grab_id == -3) { - ret_str = get_simple_msg_json("train has already been grabbed"); - *http_code = CUSTOM_HTTP_CODE_CONFLICT; - } else if (grab_id == -2) { - ret_str = get_simple_msg_json("all grab-IDs are in use (max no. of grabbed trains reached)"); - *http_code = CUSTOM_HTTP_CODE_CONFLICT; - } else if (grab_id == -1) { - ret_str = get_simple_msg_json("internal err: failed to start train engine container"); - *http_code = HTTP_INTERNAL_ERROR; - } else { - ret_str = get_simple_msg_json("internal err: unexpected error case in grab_train"); - *http_code = HTTP_INTERNAL_ERROR; - } -} - o_con_status handler_grab_train(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); const char *data_engine = onion_request_get_post(req, "engine"); - if (data_train == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter train"); - syslog_server(LOG_ERR, "Request: Grab train - missing parameter train"); - return OCS_PROCESSED; - } else if (data_engine == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter engine"); - syslog_server(LOG_ERR, "Request: Grab train - missing parameter engine"); + if (handle_param_miss_check(res, "Grab train", "train", data_train) + || handle_param_miss_check(res, "Grab train", "engine", data_engine)) { return OCS_PROCESSED; } @@ -860,21 +826,22 @@ o_con_status handler_grab_train(void *_, onion_request *req, onion_response *res } int grab_id = grab_train(data_train, data_engine); + // No extra syslog per case as grab_train logs extensively. if (grab_id >= 0) { - send_some_gstring_and_free(res, HTTP_OK, get_grab_fdbk_json(session_id, grab_id)); + send_some_gstring_and_free(res, HTTP_OK, build_grab_fdbk_json(session_id, grab_id)); + } else if (grab_id == -4) { + send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameters"); + } else if (grab_id == -3) { + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "train has already been grabbed"); + } else if (grab_id == -2) { + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, + "all grab-IDs are in use (max no. of grabbed trains reached)"); + } else if (grab_id == -1) { + send_common_feedback(res, HTTP_INTERNAL_ERROR, + "internal err - failed to start train engine container"); } else { - GString *ret_str = NULL; - int http_code = 0; - fill_grab_err_feedback(grab_id, ret_str, &http_code); - if (ret_str != NULL) { - send_some_gstring_and_free(res, http_code, ret_str); - } else { - onion_response_set_code(res, HTTP_INTERNAL_ERROR); - syslog_server(LOG_ERR, - "Request: Grab train - train: %s engine: %s - " - "failed to build reply message", - data_train, data_engine); - } + send_common_feedback(res, HTTP_INTERNAL_ERROR, + "internal err - unexpected error case in grab_train"); } syslog_server(LOG_NOTICE, "Request: Grab train - train: %s engine: %s - finish", @@ -893,7 +860,10 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * const int client_session_id = params_check_session_id(data_session_id); const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); - if (client_session_id != session_id) { + if (handle_param_miss_check(res, "Release train", "session-id", data_session_id) + || handle_param_miss_check(res, "Release train", "grab-id", data_grab_id)) { + return OCS_PROCESSED; + } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Release train - grab-id: %d - invalid session-id: %s", @@ -948,39 +918,35 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * } } -static GString *get_reqroute_fdbk_json(const char* granted_route_id) { - GString *g_feedback = g_string_sized_new(48); - g_string_assign(g_feedback, ""); - append_start_of_obj(g_feedback, false); - append_field_str_value(g_feedback, "granted-route-id", granted_route_id, false); - append_end_of_obj(g_feedback, false); - return g_feedback; -} - -static void fill_request_route_err_feedback(GString *route_id, GString *ret_str, int *http_code) { - ret_str = NULL; - *http_code = HTTP_BAD_REQUEST; - if (route_id == NULL || route_id->str == NULL) { - ret_str = get_simple_msg_json("Route could not be granted"); +static void process_request_route_and_reply(onion_response *res, const char *train_id, + const char *source, const char *destination) { + syslog_server(LOG_NOTICE, + "Request: Request route - train: %s from: %s to: %s - start", + train_id, source, destination); + // Use interlocker to find and grant a route + GString *route_id = grant_route(train_id, source, destination); + // No extra syslog in both branches as grant_route logs extensively + if (route_id != NULL && route_id->str != NULL && params_check_is_number(route_id->str)) { + send_single_str_field_feedback(res, HTTP_OK, "granted-route-id", route_id->str); + } else if (route_id == NULL || route_id->str == NULL) { + send_common_feedback(res, HTTP_BAD_REQUEST, "Route could not be granted"); } else if (strcmp(route_id->str, "no_interlocker") == 0) { - ret_str = get_simple_msg_json("No interlocker selected for use"); + send_common_feedback(res, HTTP_BAD_REQUEST, "No interlocker selected for use"); } else if (strcmp(route_id->str, "no_routes") == 0) { - ret_str = get_simple_msg_json("No routes possible"); + send_common_feedback(res, HTTP_BAD_REQUEST, "No routes possible"); } else if (strcmp(route_id->str, "not_grantable") == 0) { - ret_str = get_simple_msg_json("Route conflicts with granted route(s)"); - *http_code = CUSTOM_HTTP_CODE_CONFLICT; + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, + "Route conflicts with granted route(s)"); } else if (strcmp(route_id->str, "not_clear") == 0) { - ret_str = get_simple_msg_json("Route found has occupied tracks or source " - "signal is not stop"); - *http_code = CUSTOM_HTTP_CODE_CONFLICT; + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, + "Route found has occupied tracks or source signal is not stop"); } else { - GString *aux = g_string_new("Route could not be granted"); - if (route_id != NULL) { - g_string_append_printf(aux, " (%s)", route_id->str); - } - ret_str = get_simple_msg_json(aux->str); - g_string_free(aux, true); + send_common_feedback(res, HTTP_BAD_REQUEST, "Route could not be granted"); } + syslog_server(LOG_NOTICE, + "Request: Request route - train: %s from: %s to: %s - finish", + train_id, source, destination); + g_string_free(route_id, true); } o_con_status handler_request_route(void *_, onion_request *req, onion_response *res) { @@ -993,63 +959,33 @@ o_con_status handler_request_route(void *_, onion_request *req, onion_response * const int client_session_id = params_check_session_id(data_session_id); const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); - if (data_source_name == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter source"); - syslog_server(LOG_ERR, "Request: Request train route - missing parameter source"); - return OCS_PROCESSED; - } else if (data_destination_name == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter destination"); - syslog_server(LOG_ERR, "Request: Request train route - missing parameter destination"); + if (handle_param_miss_check(res, "Request route", "session-id", data_session_id) + || handle_param_miss_check(res, "Request route", "grab-id", data_grab_id) + || handle_param_miss_check(res, "Request route", "destination", data_destination_name) + || handle_param_miss_check(res, "Request route", "source", data_source_name)) { return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, - "Request: Request train route - from: %s to: %s - invalid session-id", + "Request: Request route - from: %s to: %s - invalid session-id", data_source_name, data_destination_name); return OCS_PROCESSED; - } - + } // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, - "Request: Request train route - from: %s to: %s - invalid grab-id", + "Request: Request route - from: %s to: %s - invalid grab-id", data_source_name, data_destination_name); return OCS_PROCESSED; } - syslog_server(LOG_NOTICE, - "Request: Request train route - train: %s from: %s to: %s - start", - train_id, data_source_name, data_destination_name); - - // Use interlocker to find and grant a route - GString *route_id = grant_route(train_id, data_source_name, data_destination_name); - - if (route_id != NULL && route_id->str != NULL && params_check_is_number(route_id->str)) { - send_some_gstring_and_free(res, HTTP_OK, get_reqroute_fdbk_json(route_id->str)); - } else { - GString *ret_str = NULL; - int http_code = 0; - fill_request_route_err_feedback(route_id, ret_str, &http_code); - if (ret_str != NULL) { - send_some_gstring_and_free(res, http_code, ret_str); - } else { - syslog_server(LOG_ERR, - "Request: Request train route - train: %s from: %s to: %s - " - "failed to build reply message", - train_id, data_source_name, data_destination_name); - onion_response_set_code(res, HTTP_INTERNAL_ERROR); - } - } - syslog_server(LOG_NOTICE, - "Request: Request train route - train: %s from: %s to: %s - finish", - train_id, data_source_name, data_destination_name); - g_string_free(route_id, true); + process_request_route_and_reply(res, train_id, data_source_name, data_destination_name); free(train_id); return OCS_PROCESSED; } else { - return handle_req_run_or_method_fail(res, running, "Request train route"); + return handle_req_run_or_method_fail(res, running, "Request route"); } } @@ -1063,9 +999,9 @@ o_con_status handler_request_route_by_id(void *_, onion_request *req, onion_resp const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); const char *route_id = params_check_route_id(data_route_id); - if (data_route_id == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter route-id"); - syslog_server(LOG_ERR, "Request: Request route by id - missing parameter route-id"); + if (handle_param_miss_check(res, "Request route by id", "session-id", data_session_id) + || handle_param_miss_check(res, "Request route by id", "grab-id", data_grab_id) + || handle_param_miss_check(res, "Request route by id", "route-id", data_route_id)) { return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); @@ -1078,7 +1014,6 @@ o_con_status handler_request_route_by_id(void *_, onion_request *req, onion_resp route_id); return OCS_PROCESSED; } - // If grab_id is valid, train_id will be, too. char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { @@ -1095,6 +1030,7 @@ o_con_status handler_request_route_by_id(void *_, onion_request *req, onion_resp // Grant the route ID using an internal algorithm const char *result = grant_route_id(train_id, route_id); + // No extra syslog as grant_route_id logs extensively if (strcmp(result, "granted") == 0) { send_common_feedback(res, HTTP_OK, ""); } else if (strcmp(result, "not_grantable") == 0) { @@ -1134,13 +1070,8 @@ o_con_status handler_driving_direction(void *_, onion_request *req, onion_respon const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); - if (data_train == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter train"); - syslog_server(LOG_ERR, "Request: Driving direction - missing parameter train"); - return OCS_PROCESSED; - } else if (data_route_id == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter route-id"); - syslog_server(LOG_ERR, "Request: Driving direction - missing parameter route-id"); + if (handle_param_miss_check(res, "Driving direction", "train", data_train) + || handle_param_miss_check(res, "Driving direction", "route-id", data_route_id)) { return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); @@ -1178,13 +1109,10 @@ o_con_status handler_drive_route(void *_, onion_request *req, onion_response *re const char *route_id = params_check_route_id(data_route_id); const char *mode = params_check_mode(data_mode); - if (data_route_id == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter route-id"); - syslog_server(LOG_ERR, "Request: Drive route - missing parameter route-id"); - return OCS_PROCESSED; - } else if (data_mode == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter mode"); - syslog_server(LOG_ERR, "Request: Drive route - missing parameter mode"); + if (handle_param_miss_check(res, "Drive route", "session-id", data_session_id) + || handle_param_miss_check(res, "Drive route", "grab-id", data_grab_id) + || handle_param_miss_check(res, "Drive route", "route-id", data_route_id) + || handle_param_miss_check(res, "Drive route", "mode", data_mode)) { return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); @@ -1243,7 +1171,12 @@ o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_resp const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); const int speed = params_check_speed(data_speed); - if (client_session_id != session_id) { + if (handle_param_miss_check(res, "Set dcc train speed", "session-id", data_session_id) + || handle_param_miss_check(res, "Set dcc train speed", "grab-id", data_grab_id) + || handle_param_miss_check(res, "Set dcc train speed", "track-output", data_track_output) + || handle_param_miss_check(res, "Set dcc train speed", "speed", data_speed)) { + return OCS_PROCESSED; + } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid session-id"); return OCS_PROCESSED; @@ -1262,7 +1195,7 @@ o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_resp grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; - } else if (data_track_output == NULL || strlen(data_track_output) > 32) { + } else if (strlen(data_track_output) > 32) { // strlen check here as the value is copied to grabbed_trains[grab_id].track_output, // which has a length of 32. send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output"); @@ -1302,7 +1235,13 @@ o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, oni const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); const int speed = params_check_calibrated_speed(data_speed); - if (client_session_id != session_id) { + if (handle_param_miss_check(res, "Set calibrated train speed", "session-id", data_session_id) + || handle_param_miss_check(res, "Set calibrated train speed", "grab-id", data_grab_id) + || handle_param_miss_check(res, "Set calibrated train speed", "track-output", + data_track_output) + || handle_param_miss_check(res, "Set calibrated train speed", "speed", data_speed)) { + return OCS_PROCESSED; + } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid session-id"); return OCS_PROCESSED; @@ -1321,14 +1260,6 @@ o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, oni grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; - } else if (data_track_output == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output"); - syslog_server(LOG_ERR, - "Request: Set calibrated train speed - train: %s speed: %d - " - "invalid track output", - grabbed_trains[grab_id].name->str, speed); - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -1364,7 +1295,12 @@ o_con_status handler_set_train_emergency_stop(void *_, onion_request *req, onion const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); const int client_session_id = params_check_session_id(data_session_id); - if (client_session_id != session_id) { + if (handle_param_miss_check(res, "Set train emergency stop", "session-id", data_session_id) + || handle_param_miss_check(res, "Set train emergency stop", "grab-id", data_grab_id) + || handle_param_miss_check(res, "Set train emergency stop", "track-output", + data_track_output)) { + return OCS_PROCESSED; + } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid session-id"); return OCS_PROCESSED; @@ -1376,15 +1312,8 @@ o_con_status handler_set_train_emergency_stop(void *_, onion_request *req, onion send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid grab-id"); return OCS_PROCESSED; - } else if (data_track_output == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter track-output"); - syslog_server(LOG_ERR, - "Request: Set train emergency stop - train: %s - " - "missing parameter track-output", - grabbed_trains[grab_id].name->str); - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_PROCESSED; } + syslog_server(LOG_NOTICE, "Request: Set train emergency stop - train: %s - start", grabbed_trains[grab_id].name->str); @@ -1421,7 +1350,13 @@ o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_res const int grab_id = params_check_grab_id(data_grab_id, TRAIN_ENGINE_INSTANCE_COUNT_MAX); const int state = params_check_state(data_state); - if (client_session_id != session_id) { + if (handle_param_miss_check(res, "Set train peripheral", "session-id", data_session_id) + || handle_param_miss_check(res, "Set train peripheral", "grab-id", data_grab_id) + || handle_param_miss_check(res, "Set train peripheral", "peripheral", data_peripheral) + || handle_param_miss_check(res, "Set train peripheral", "track-output", data_track_output) + || handle_param_miss_check(res, "Set train peripheral", "state", data_state)) { + return OCS_PROCESSED; + } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, "Request: Set train peripheral - invalid session-id"); return OCS_PROCESSED; @@ -1440,21 +1375,6 @@ o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_res grabbed_trains[grab_id].name->str); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; - } else if (data_peripheral == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter peripheral"); - syslog_server(LOG_ERR, - "Request: Set train peripheral - train: %s - missing parameter peripheral", - grabbed_trains[grab_id].name->str); - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_PROCESSED; - } else if (data_track_output == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter track-output"); - syslog_server(LOG_ERR, - "Request: Set train peripheral - train: %s peripheral: %s - " - "missing parameter track-output", - grabbed_trains[grab_id].name->str, data_peripheral); - pthread_mutex_unlock(&grabbed_trains_mutex); - return OCS_PROCESSED; } syslog_server(LOG_NOTICE, diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 091091d4..253868d3 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -208,16 +208,15 @@ o_con_status handler_get_train_state(void *_, onion_request *req, onion_response build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); - if (data_train == NULL) { - onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: Get train state - missing parameter train"); + + if (handle_param_miss_check(res, "Get train state", "train", data_train)) { return OCS_PROCESSED; } t_bidib_train_state_query train_state_query = bidib_get_train_state(data_train); if (!train_state_query.known) { bidib_free_train_state_query(train_state_query); - onion_response_set_code(res, HTTP_BAD_REQUEST); + onion_response_set_code(res, HTTP_NOT_FOUND); syslog_server(LOG_WARNING, "Request: Get train state - train: %s - unknown train/train state", data_train); @@ -354,9 +353,8 @@ o_con_status handler_get_train_peripherals(void *_, onion_request *req, onion_re build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); - if (data_train == NULL) { - onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: Get train peripherals - missing parameter train"); + + if (handle_param_miss_check(res, "Get train peripherals", "train", data_train)) { return OCS_PROCESSED; } @@ -762,9 +760,11 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_point = onion_request_get_post(req, "point"); - if (data_point == NULL) { - onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: Get point details - missing parameter point"); + + if (handle_param_miss_check(res, "Get point details", "point", data_point)) { + return OCS_PROCESSED; + } else if (!is_type_point(data_point)) { + onion_response_set_code(res, HTTP_NOT_FOUND); return OCS_PROCESSED; } @@ -827,11 +827,13 @@ static o_con_status get_acc_aspects_common(onion_request *req, onion_response *r if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *acc_type_name = point ? "point" : "signal"; const char *data_acc = onion_request_get_post(req, acc_type_name); - if (data_acc == NULL) { - onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: %s - missing %s parameter", l_name, acc_type_name); + + if (handle_param_miss_check(res, l_name, acc_type_name, data_acc)) { return OCS_PROCESSED; - } + } else if ((point && !is_type_point(data_acc)) || (!point && !is_type_signal(data_acc))) { + onion_response_set_code(res, HTTP_NOT_FOUND); + return OCS_PROCESSED; + } GString *g_aspects = get_accessory_aspects_json(data_acc, point); if (g_aspects != NULL) { @@ -1004,7 +1006,7 @@ o_con_status handler_get_reversers(void *_, onion_request *req, onion_response * build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { if (!reversers_state_update()) { - onion_response_set_code(res, HTTP_BAD_REQUEST); + onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, "Request: Get reversers - unable to request state update"); return OCS_PROCESSED; } @@ -1110,10 +1112,8 @@ o_con_status handler_get_verification_url(void *_, onion_request *req, onion_res build_response_header(res); if ((onion_request_get_flags(req) & OR_METHODS) == OR_GET) { const char *verif_url = get_verifier_url(); - onion_response_set_code(res, HTTP_OK); - onion_response_printf(res, - "{\n\"verification-url\": \"%s\"\n}", - verif_url == NULL ? "null" : verif_url); + send_single_str_field_feedback(res, HTTP_OK, "verification-url", + verif_url == NULL ? "null" : verif_url); syslog_server(LOG_INFO, "Request: Get verification url - done"); return OCS_PROCESSED; } else { @@ -1283,9 +1283,11 @@ o_con_status handler_get_route(void *_, onion_request *req, onion_response *res) const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); - if (route_id == NULL || strcmp(route_id, "") == 0 || get_route(route_id) == NULL) { - onion_response_set_code(res, HTTP_BAD_REQUEST); - syslog_server(LOG_ERR, "Request: Get route - invalid or missing route-id"); + if (handle_param_miss_check(res, "Get route", "route-id", data_route_id)) { + return OCS_PROCESSED; + } else if (strcmp(route_id, "") == 0 || get_route(route_id) == NULL) { + onion_response_set_code(res, HTTP_NOT_FOUND); + syslog_server(LOG_ERR, "Request: Get route - unknown route-id"); return OCS_PROCESSED; } diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index 74e90557..e17877ee 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -147,12 +147,13 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *filename = onion_request_get_post(req, "file"); const char *temp_filepath = onion_request_get_file(req, "file"); - if (filename == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter file"); - syslog_server(LOG_ERR, "Request: Upload engine - missing parameter file"); + + if (handle_param_miss_check(res, "Upload engine", "file(name)", filename)) { + return OCS_PROCESSED; } else if (temp_filepath == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "engine file is invalid"); - syslog_server(LOG_ERR, "Request: Upload engine - engine file is invalid"); + // Either something went wrong with the fs(?), or the file was not attached at all. + send_common_feedback(res, HTTP_BAD_REQUEST, "engine file is invalid or missing"); + syslog_server(LOG_ERR, "Request: Upload engine - engine file is invalid or missing"); return OCS_PROCESSED; } @@ -242,10 +243,8 @@ o_con_status handler_remove_engine(void *_, onion_request *req, onion_response * build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *name = onion_request_get_post(req, "engine-name"); - if (name == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter engine-name"); - syslog_server(LOG_ERR, - "Request: Remove engine - missing parameter engine-name"); + + if (handle_param_miss_check(res, "Remove engine", "engine-name", name)) { return OCS_PROCESSED; } else if (plugin_is_unremovable(name)) { send_common_feedback(res, HTTP_BAD_REQUEST, "engine to remove is unremovable"); @@ -333,15 +332,17 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *filename = onion_request_get_post(req, "file"); const char *temp_filepath = onion_request_get_file(req, "file"); - if (filename == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter file"); - syslog_server(LOG_ERR, "Request: Upload interlocker - missing parameter file"); + + if (handle_param_miss_check(res, "Upload interlocker", "file(name)", filename)) { return OCS_PROCESSED; } else if (temp_filepath == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "interlocker file is invalid"); - syslog_server(LOG_ERR, "Request: Upload interlocker - interlocker file is invalid"); + // Either something went wrong with the fs(?), or the file was not attached at all. + send_common_feedback(res, HTTP_BAD_REQUEST, "interlocker file is invalid or missing"); + syslog_server(LOG_ERR, + "Request: Upload interlocker - interlocker file is invalid or missing"); return OCS_PROCESSED; } + syslog_server(LOG_NOTICE, "Request: Upload interlocker - interlocker file: %s - start", filename); @@ -415,10 +416,8 @@ o_con_status handler_remove_interlocker(void *_, onion_request *req, onion_respo build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *name = onion_request_get_post(req, "interlocker-name"); - if (name == NULL) { - send_common_feedback(res, HTTP_BAD_REQUEST, "missing parameter interlocker-name"); - syslog_server(LOG_ERR, - "Request: Remove interlocker - missing parameter interlocker-name"); + + if (handle_param_miss_check(res, "Remove interlocker", "interlocker-name", name)) { return OCS_PROCESSED; } else if (plugin_is_unremovable(name)) { send_common_feedback(res, HTTP_BAD_REQUEST, "interlocker to remove is unremovable"); @@ -427,6 +426,7 @@ o_con_status handler_remove_interlocker(void *_, onion_request *req, onion_respo name); return OCS_PROCESSED; } + syslog_server(LOG_NOTICE, "Request: Remove interlocker - interlocker: %s - start", name); pthread_mutex_lock(&dyn_containers_mutex); From fc2f000571ded3a10c7384329de46e05e69268dd Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 4 Mar 2025 11:10:04 +0100 Subject: [PATCH 066/125] start work on adding signal-details endpoint --- .../monitor/examples/monitor_signal-details.json | 6 ++++++ server/src/handler_monitor.h | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 server/doc/api-formats/monitor/examples/monitor_signal-details.json diff --git a/server/doc/api-formats/monitor/examples/monitor_signal-details.json b/server/doc/api-formats/monitor/examples/monitor_signal-details.json new file mode 100644 index 00000000..74fb043c --- /dev/null +++ b/server/doc/api-formats/monitor/examples/monitor_signal-details.json @@ -0,0 +1,6 @@ +{ + "id": "signal19", + "aspects": ["aspect_shunt", "aspect_caution", "aspect_go", "aspect_stop"], + "type": "exit", + "state": "aspect_go" +} \ No newline at end of file diff --git a/server/src/handler_monitor.h b/server/src/handler_monitor.h index 6e30ff54..fabb495f 100644 --- a/server/src/handler_monitor.h +++ b/server/src/handler_monitor.h @@ -56,7 +56,6 @@ o_con_status handler_get_points(void *_, onion_request *req, onion_response *res o_con_status handler_get_signals(void *_, onion_request *req, onion_response *res); -///TODO: Add an equivalent "signal-details" endpoint o_con_status handler_get_point_details(void *_, onion_request *req, onion_response *res); o_con_status handler_get_signal_details(void *_, onion_request *req, onion_response *res); From 2b256ee665debab5baf63d4a2da174fe2d7e463f Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 15 Apr 2025 11:16:31 +0200 Subject: [PATCH 067/125] minor admin client adjustment --- server/src/handler_admin.c | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index 4e255b66..61da1dfb 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -179,7 +179,7 @@ o_con_status handler_startup(void *_, onion_request *req, onion_response *res) { if (startup_server()) { pthread_mutex_unlock(&start_stop_mutex); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Startup server - session-id: %ld - finish", session_id); @@ -193,7 +193,16 @@ o_con_status handler_startup(void *_, onion_request *req, onion_response *res) { } return OCS_PROCESSED; } else { - o_con_status ret = handle_req_run_or_method_fail(res, running, "Startup server"); + // Cannot use the usual handler for this case, as startup requires server NOT to be running. + o_con_status ret = OCS_PROCESSED; + if (running) { + syslog_server(LOG_WARNING, "Request: Startup server - system already running"); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "server already running"); + } else { + syslog_server(LOG_WARNING, "Request: Startup server - wrong request type"); + onion_response_set_code(res, HTTP_METHOD_NOT_ALLOWED); + ret = OCS_NOT_IMPLEMENTED; + } pthread_mutex_unlock(&start_stop_mutex); return ret; } @@ -206,7 +215,7 @@ o_con_status handler_shutdown(void *_, onion_request *req, onion_response *res) syslog_server(LOG_NOTICE, "Request: Shutdown server - start"); shutdown_server(); pthread_mutex_unlock(&start_stop_mutex); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); // Can't log "finished" here since bidib closes the syslog when stopping return OCS_PROCESSED; } else { @@ -231,7 +240,7 @@ o_con_status handler_set_track_output(void *_, onion_request *req, onion_respons syslog_server(LOG_NOTICE, "Request: Set track output - state: 0x%02x - start", state); bidib_set_track_output_state_all(state); bidib_flush(); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Set track output - state: 0x%02x - finish", state); } return OCS_PROCESSED; @@ -259,7 +268,7 @@ o_con_status handler_set_verification_option(void *_, onion_request *req, onion_ } else { verification_enabled = false; } - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Set verification option - new state: %s - done", verification_enabled ? "enabled" : "disabled"); @@ -279,7 +288,7 @@ o_con_status handler_set_verification_url(void *_, onion_request *req, onion_res ; } else { set_verifier_url(data_verification_url); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Set verification URL - new URL: %s - done", data_verification_url); @@ -327,7 +336,7 @@ o_con_status handler_admin_release_train(void *_, onion_request *req, onion_resp // easily avoid such a race condition being possible - have to release the mutex whilst // waiting for the train to stop; thus someone else could do smth with it in the meantime) release_train(grab_id); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Admin release train - train: %s - finish", data_train); @@ -375,7 +384,7 @@ o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, onio data_train, speed); } else { bidib_flush(); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Admin set dcc train speed - train: %s speed: %d - finish", data_train, speed); From 7acc33bf180df1903e77a4bb2ccc2e746d22c5f9 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 16 Apr 2025 09:41:08 +0200 Subject: [PATCH 068/125] openapi doc of admin endpoints --- .../doc/api-formats/openapi_swtbahn_V1.json | 361 ++++++++++++++++++ 1 file changed, 361 insertions(+) create mode 100644 server/doc/api-formats/openapi_swtbahn_V1.json diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json new file mode 100644 index 00000000..7775efc4 --- /dev/null +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -0,0 +1,361 @@ +{ + "openapi": "3.0.0", + "info": { + "title": "SWTbahn", + "version": "1.0.0", + "contact": {}, + "license": { + "name": "GPL-3.0" + }, + "description": "SWTbahn server offering an API for interacting with an SWTbahn model railway." + }, + "paths": { + "/admin/startup": { + "post": { + "summary": "Startup the SWTbahn", + "description": "Attempts to start up the SWTbahn to get it running; i.e., initialize connection to hardware, parse config files, and so on.", + "parameters": [], + "operationId": "admin-startup", + "responses": { + "200": { + "description": "Success" + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "SWTbahn is already running", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "500": { + "description": "SWTbahn unable to startup due to internal error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + } + }, + "security": [] + } + }, + "/admin/shutdown": { + "post": { + "summary": "Shutdown the SWTbahn", + "description": "Attempts to shut down the SWTbahn (if it is running); i.e., close connection to hardware, stop running internal threads, and so on.", + "parameters": [], + "operationId": "admin-shutdown", + "responses": { + "200": { + "description": "Success" + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [] + } + }, + "/admin/set-track-output": { + "post": { + "summary": "Set the track output state", + "description": "Set the track output state for all track outputs", + "parameters": [], + "operationId": "admin-set-track-output", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_state_string" + } + } + }, + "description": "the state that all track outputs shall be set to" + }, + "security": [] + } + }, + "/admin/set-verification-option": { + "post": { + "summary": "Set the verification option", + "description": "Set the verification option to true or false, i.e., enable or disable the verification of train engines when they are uploaded. Note that verification will only work if a verification url to the swtbahn-verifier (or equivalent) server has been set.", + "parameters": [], + "operationId": "admin-set-verification-option", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_verification-option_string" + } + } + }, + "description": "the new value of the verification option (true or false)" + }, + "security": [] + } + }, + "/admin/set-verification-url": { + "post": { + "summary": "Set the verification url", + "description": "Set the verification url, i.e., the path for the websocket connection to the verification server for train engines.", + "parameters": [], + "operationId": "admin-set-verification-url", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_verification-url_string" + } + } + }, + "description": "the new value of the verification url (should start with ws://)" + }, + "security": [] + } + }, + "/admin/release-train": { + "post": { + "summary": "Release a train", + "description": "Force-release a train that is currently grabbed by someone.", + "parameters": [], + "operationId": "admin-release-train", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid train, or train not currently grabbed", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_train_string" + } + } + }, + "description": "the train that shall be released" + }, + "security": [] + } + }, + "/admin/set-dcc-train-speed": { + "post": { + "summary": "Set the dcc speed of a train", + "description": "Set the dcc speed of a train, i.e., the speed has to be provided as a whole number in the range [-126, 126]", + "parameters": [], + "operationId": "admin-set-dcc-train-speed", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid train, invalid speed, or invalid track output", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_train_speed_trackoutput" + } + } + }, + "description": "the train whose speed shall be set, the speed, and the track output" + }, + "security": [] + } + } + }, + "security": [], + "servers": [], + "components": { + "links": {}, + "callbacks": {}, + "schemas": { + "common_feedback": { + "title": "common_feedback", + "description": "simple object with feedback message", + "type": "object", + "properties": { + "msg": { + "type": "string", + "minLength": 1, + "$comment": "msg is not required to always be present, but if it is, its value shall not be empty." + } + } + }, + "param_state_string": { + "title": "param_state_string", + "type": "object", + "properties": { + "state": { + "description": "state string", + "type": "string", + "minLength": 1 + } + } + }, + "param_verification-option_string": { + "title": "param_verification-option_string", + "type": "object", + "properties": { + "verification-option": { + "description": "verification option value string (value should be true or false)", + "type": "string", + "minLength": 1 + } + } + }, + "param_verification-url_string": { + "title": "param_verification-url_string", + "type": "object", + "properties": { + "verification-url": { + "description": "verification url string", + "type": "string", + "minLength": 1 + } + } + }, + "param_train_string": { + "title": "param_train_string", + "type": "object", + "properties": { + "train": { + "description": "string with name of the train", + "type": "string", + "minLength": 1 + } + } + }, + "param_train_speed_trackoutput": { + "title": "param_train_speed_trackoutput", + "type": "object", + "properties": { + "train": { + "description": "string with name of the train", + "type": "string", + "minLength": 1 + }, + "speed": { + "description": "string with speed to set the train to [-126,126]", + "type": "string", + "minLength": 1 + }, + "track-output": { + "description": "the name of the track output node (usually master)", + "type": "string", + "minLength": 1 + } + } + } + } + } +} \ No newline at end of file From d69faebca266c92685926edf03c282ba9d200905 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 16 Apr 2025 10:23:51 +0200 Subject: [PATCH 069/125] controller endpoints in OpenAPI --- ...son-schema-controller_get-interlocker.json | 13 +- .../doc/api-formats/openapi_swtbahn_V1.json | 429 +++++++++++++++++- server/src/handler_controller.c | 12 +- 3 files changed, 415 insertions(+), 39 deletions(-) diff --git a/server/doc/api-formats/controller/json-schema-controller_get-interlocker.json b/server/doc/api-formats/controller/json-schema-controller_get-interlocker.json index 86e62e3f..8956fa48 100644 --- a/server/doc/api-formats/controller/json-schema-controller_get-interlocker.json +++ b/server/doc/api-formats/controller/json-schema-controller_get-interlocker.json @@ -2,22 +2,13 @@ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "controller_get-interlocker.schema.json", "title": "get-interlocker", - "description": "get interlocker result. Interlocker if request successfull, otherwise error message", + "description": "get interlocker result", "type": "object", "properties": { "interlocker": { "description": "the name of the interlocker that is currently set", "type": "string", "minLength": 1 - }, - "msg": { - "type": "string", - "description": "error message", - "minLength": 1 } - }, - "oneOf": [ - {"required": ["interlocker"]}, - {"required": ["msg"]} - ] + } } \ No newline at end of file diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index 7775efc4..e7f5ef50 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -271,6 +271,309 @@ }, "security": [] } + }, + "/controller/release-route": { + "post": { + "summary": "releases a route", + "description": "releases a route that is currently granted to a train", + "parameters": [], + "operationId": "controller-release-route", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_route-id" + } + } + }, + "description": "route which shall be released." + }, + "security": [] + } + }, + "/controller/set-point": { + "post": { + "summary": "set the state/aspect of a point", + "description": "", + "parameters": [], + "operationId": "controller-set-point", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_point_state" + } + } + }, + "description": "point whose state shall be set, and state to set." + }, + "security": [] + } + }, + "/controller/set-signal": { + "post": { + "summary": "set the state/aspect of a signal", + "description": "", + "parameters": [], + "operationId": "controller-set-signal", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_signal_state" + } + } + }, + "description": "signal whose state shall be set, and state to set." + }, + "security": [] + } + }, + "/controller/set-peripheral": { + "post": { + "summary": "set the state/aspect of a peripheral", + "description": "", + "parameters": [], + "operationId": "controller-set-peripheral", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_peripheral_state" + } + } + }, + "description": "peripheral whose state shall be set, and state to set." + }, + "security": [] + } + }, + "/controller/set-interlocker": { + "post": { + "summary": "set the interlocker to be used by the SWTbahn", + "description": "", + "parameters": [], + "operationId": "controller-set-interlocker", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter or no more free interlocker instances available", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "Another interlocker is already set", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_interlocker" + } + } + }, + "description": "ID of the interlocker to be used by the SWTbahn." + }, + "security": [] + } + }, + "/controller/unset-interlocker": { + "post": { + "summary": "unset the interlocker currently used by the SWTbahn", + "description": "", + "parameters": [], + "operationId": "controller-unset-interlocker", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "no interlocker currently set, or currently set interlocker has a different name", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "503": { + "description": "SWTbahn not running" + } + }, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_interlocker" + } + } + }, + "description": "ID of the interlocker currently used by the SWTbahn that shall be unset." + }, + "security": [] + } + }, + "/controller/get-interlocker": { + "get": { + "summary": "get the ID of the interlocker currently used by the SWTbahn", + "description": "", + "parameters": [], + "operationId": "controller-get-interlocker", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_get-interlocker" + } + } + } + }, + "404": { + "description": "no interlocker currently set", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [] + } } }, "security": [], @@ -291,30 +594,40 @@ } } }, - "param_state_string": { - "title": "param_state_string", + "param_train_speed_trackoutput": { + "title": "param_train_speed_trackoutput", "type": "object", "properties": { - "state": { - "description": "state string", + "train": { + "description": "string with name of the train", + "type": "string", + "minLength": 1 + }, + "speed": { + "description": "string with speed to set the train to [-126,126]", + "type": "string", + "minLength": 1 + }, + "track-output": { + "description": "the name of the track output node (usually master)", "type": "string", "minLength": 1 } } }, - "param_verification-option_string": { - "title": "param_verification-option_string", + "param_train": { + "title": "param_train", "type": "object", "properties": { - "verification-option": { - "description": "verification option value string (value should be true or false)", + "train": { + "description": "string with name of the train", "type": "string", "minLength": 1 } } }, - "param_verification-url_string": { - "title": "param_verification-url_string", + "param_verification-url": { + "title": "param_verification-url", "type": "object", "properties": { "verification-url": { @@ -324,33 +637,105 @@ } } }, - "param_train_string": { - "title": "param_train_string", + "param_verification-option": { + "title": "param_verification-option", "type": "object", "properties": { - "train": { - "description": "string with name of the train", + "verification-option": { + "description": "verification option value string (value should be true or false)", "type": "string", "minLength": 1 } } }, - "param_train_speed_trackoutput": { - "title": "param_train_speed_trackoutput", + "param_state": { + "title": "param_state", "type": "object", "properties": { - "train": { - "description": "string with name of the train", + "state": { + "description": "state string", + "type": "string", + "minLength": 1 + } + } + }, + "param_route-id": { + "title": "param_route-id", + "type": "object", + "properties": { + "route-id": { + "description": "string with ID of a route, which is usually a whole number", + "type": "string", + "minLength": 1 + } + } + }, + "param_point_state": { + "title": "param_point_state", + "type": "object", + "properties": { + "point": { + "description": "ID of a point", "type": "string", "minLength": 1 }, - "speed": { - "description": "string with speed to set the train to [-126,126]", + "state": { + "description": "desired point state", + "type": "string", + "minLength": 1 + } + } + }, + "param_signal_state": { + "title": "param_signal_state", + "type": "object", + "properties": { + "signal": { + "description": "ID of a signal", "type": "string", "minLength": 1 }, - "track-output": { - "description": "the name of the track output node (usually master)", + "state": { + "description": "desired signal state", + "type": "string", + "minLength": 1 + } + } + }, + "param_peripheral_state": { + "title": "param_peripheral_state", + "type": "object", + "properties": { + "peripheral": { + "description": "ID of a peripheral", + "type": "string", + "minLength": 1 + }, + "state": { + "description": "desired peripheral state", + "type": "string", + "minLength": 1 + } + } + }, + "param_interlocker": { + "title": "param_interlocker", + "type": "object", + "properties": { + "interlocker": { + "description": "string with ID of an interlocker", + "type": "string", + "minLength": 1 + } + } + }, + "reply_get-interlocker": { + "title": "reply_get-interlocker", + "description": "interlocker", + "type": "object", + "properties": { + "interlocker": { + "description": "the ID of the interlocker that is currently set", "type": "string", "minLength": 1 } diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index f3d66ab0..298bc046 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -611,15 +611,15 @@ o_con_status handler_get_interlocker(void *_, onion_request *req, onion_response if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance != -1 && selected_interlocker_name != NULL) { - GString *g_resstr = g_string_new("{\n\"interlocker\": \""); - g_string_append_printf(g_resstr, "%s\"\n}", + GString *g_resstr = g_string_new("{\"interlocker\": \""); + g_string_append_printf(g_resstr, "%s\"}", selected_interlocker_name->str); pthread_mutex_unlock(&interlocker_mutex); send_some_gstring_and_free(res, HTTP_OK, g_resstr); syslog_server(LOG_INFO, "Request: Get interlocker - done"); } else { pthread_mutex_unlock(&interlocker_mutex); - send_common_feedback(res, HTTP_BAD_REQUEST, "No interlocker is currently selected"); + send_common_feedback(res, HTTP_NOT_FOUND, "No interlocker is currently selected"); syslog_server(LOG_ERR, "Request: Get interlocker - none selected"); } return OCS_PROCESSED; @@ -685,7 +685,7 @@ o_con_status handler_unset_interlocker(void *_, onion_request *req, onion_respon pthread_mutex_lock(&interlocker_mutex); if (selected_interlocker_instance == -1) { pthread_mutex_unlock(&interlocker_mutex); - send_common_feedback(res, HTTP_BAD_REQUEST, + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "no interlocker instance is set that can be unset"); syslog_server(LOG_ERR, "Request: Unset interlocker - interlocker: %s - " @@ -693,8 +693,8 @@ o_con_status handler_unset_interlocker(void *_, onion_request *req, onion_respon data_interlocker); } else if (unset_interlocker(data_interlocker) != -1) { pthread_mutex_unlock(&interlocker_mutex); - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid interlocker name (currently " - "set interlocker doesn't match provided interlocker name)"); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "invalid interlocker name (curr" + "ently set interlocker doesn't match provided interlocker name)"); syslog_server(LOG_ERR, "Request: Unset interlocker - interlocker: %s - " "invalid interlocker name - abort", From 70413be1c876fe577088210b0893b2fc9f973eb0 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 16 Apr 2025 11:10:05 +0200 Subject: [PATCH 070/125] OpenAPI schemas prep for driver, driver minor adjustment when sending empty success replies --- .../doc/api-formats/openapi_swtbahn_V1.json | 305 ++++++++++++++++-- server/src/handler_driver.c | 16 +- 2 files changed, 291 insertions(+), 30 deletions(-) diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index e7f5ef50..66b1ccf3 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -594,27 +594,6 @@ } } }, - "param_train_speed_trackoutput": { - "title": "param_train_speed_trackoutput", - "type": "object", - "properties": { - "train": { - "description": "string with name of the train", - "type": "string", - "minLength": 1 - }, - "speed": { - "description": "string with speed to set the train to [-126,126]", - "type": "string", - "minLength": 1 - }, - "track-output": { - "description": "the name of the track output node (usually master)", - "type": "string", - "minLength": 1 - } - } - }, "param_train": { "title": "param_train", "type": "object", @@ -740,6 +719,290 @@ "minLength": 1 } } + }, + "param_train_engine": { + "title": "param_train_engine", + "type": "object", + "properties": { + "train": { + "description": "string with name of a train", + "type": "string", + "minLength": 1 + }, + "engine": { + "description": "string with name of a (train) engine", + "type": "string", + "minLength": 1 + } + } + }, + "param_session-id_grab-id": { + "title": "param_session-id_grab-id", + "type": "object", + "properties": { + "session-id": { + "description": "session-id", + "type": "string", + "minLength": 1 + }, + "grab-id": { + "description": "grab-id", + "type": "string", + "minLength": 1 + } + } + }, + "reply_grab-train": { + "title": "reply_grab-train", + "type": "object", + "properties": { + "session-id": { + "type": "integer", + "description": "identifier for the current server session", + "minimum": 1 + }, + "grab-id": { + "type": "integer", + "description": "identifier for this grabbing/ownership of a train", + "minimum": 0 + } + } + }, + "param_session-id_grab-id_source_destination": { + "title": "param_session-id_grab-id_source_destination", + "type": "object", + "properties": { + "session-id": { + "description": "session-id", + "type": "string", + "minLength": 1 + }, + "grab-id": { + "description": "grab-id", + "type": "string", + "minLength": 1 + }, + "source": { + "description": "name of the source signal", + "type": "string", + "minLength": 1 + }, + "destination": { + "description": "name of the destination signal", + "type": "string", + "minLength": 1 + } + } + }, + "reply_request-route": { + "title": "reply_request-route", + "type": "object", + "properties": { + "granted-route-id": { + "description": "ID of the granted route", + "type": "string", + "minLength": 1 + } + } + }, + "param_session-id_grab-id_route-id": { + "title": "param_session-id_grab-id_route-id", + "type": "object", + "properties": { + "session-id": { + "description": "session-id", + "type": "string", + "minLength": 1 + }, + "grab-id": { + "description": "grab-id", + "type": "string", + "minLength": 1 + }, + "route-id": { + "description": "ID of the route", + "type": "string", + "minLength": 1 + } + } + }, + "param_train_route-id": { + "title": "param_train_route-id", + "type": "object", + "properties": { + "train": { + "description": "string with name of a train", + "type": "string", + "minLength": 1 + }, + "route-id": { + "description": "string with ID of the route that shall be considered for driving direction", + "type": "string", + "minLength": 1 + } + } + }, + "reply_direction": { + "title": "reply_direction", + "type": "object", + "properties": { + "direction": { + "type": "string", + "pattern": "^(forwards|backwards)$", + "description": "direction of train considering its location and route to be driven" + } + } + }, + "param_session-id_grab-id_route-id_mode": { + "title": "param_session-id_grab-id_route-id_mode", + "type": "object", + "properties": { + "session-id": { + "description": "session-id", + "type": "string", + "minLength": 1 + }, + "grab-id": { + "description": "grab-id", + "type": "string", + "minLength": 1 + }, + "route-id": { + "description": "ID of the route", + "type": "string", + "minLength": 1 + }, + "mode": { + "type": "string", + "pattern": "^(manual|automatic)$", + "description": "driving mode for the route, either manual or automatic" + } + } + }, + "param_session-id_grab-id_speed_track-output": { + "title": "param_session-id_grab-id_speed_track-output", + "type": "object", + "properties": { + "session-id": { + "description": "session-id", + "type": "string", + "minLength": 1 + }, + "grab-id": { + "description": "grab-id", + "type": "string", + "minLength": 1 + }, + "speed": { + "description": "string with speed to set the train to [-126,126]", + "type": "string", + "minLength": 1 + }, + "track-output": { + "description": "the name of the track output node (usually master)", + "type": "string", + "minLength": 1 + } + } + }, + "param_train_speed_track-output": { + "title": "param_train_speed_track-output", + "type": "object", + "properties": { + "train": { + "description": "string with name of the train", + "type": "string", + "minLength": 1 + }, + "speed": { + "description": "string with speed to set the train to [-126,126]", + "type": "string", + "minLength": 1 + }, + "track-output": { + "description": "the name of the track output node (usually master)", + "type": "string", + "minLength": 1 + } + } + }, + "param_session-id_grab-id_speed_track-output__for-calibrated-speed": { + "title": "param_session-id_grab-id_speed_track-output__for-calibrated-speed", + "type": "object", + "properties": { + "session-id": { + "description": "session-id", + "type": "string", + "minLength": 1 + }, + "grab-id": { + "description": "grab-id", + "type": "string", + "minLength": 1 + }, + "speed": { + "description": "string with speed to set the train to, [-9,9], depending on the calibration levels configured for the grabbed train", + "type": "string", + "minLength": 1 + }, + "track-output": { + "description": "the name of the track output node (usually master)", + "type": "string", + "minLength": 1 + } + } + }, + "param_session-id_grab-id_track-output": { + "title": "param_session-id_grab-id_track-output", + "type": "object", + "properties": { + "session-id": { + "description": "session-id", + "type": "string", + "minLength": 1 + }, + "grab-id": { + "description": "grab-id", + "type": "string", + "minLength": 1 + }, + "track-output": { + "description": "the name of the track output node (usually master)", + "type": "string", + "minLength": 1 + } + } + }, + "param_session-id_grab-id_peripheral_state_track-output": { + "title": "param_session-id_grab-id_peripheral_state_track-output", + "type": "object", + "properties": { + "session-id": { + "description": "session-id", + "type": "string", + "minLength": 1 + }, + "grab-id": { + "description": "grab-id", + "type": "string", + "minLength": 1 + }, + "peripheral": { + "description": "ID of the train peripheral", + "type": "string", + "minLength": 1 + }, + "state": { + "description": "desired peripheral state", + "type": "string", + "minLength": 1 + }, + "track-output": { + "description": "the name of the track output node (usually master)", + "type": "string", + "minLength": 1 + } + } } } } diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index e9709e76..fbc65752 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -216,7 +216,7 @@ static bool is_forward_driving(const t_interlocking_route *route, const char *tr const bool requested_forwards = block_reversed ? !is_forwards : is_forwards; syslog_server(LOG_NOTICE, "Is forward driving - train: %s driving: %s", - train_id, is_forwards ? "forwards" : "backwards"); + train_id, requested_forwards ? "forwards" : "backwards"); return requested_forwards; } @@ -932,7 +932,7 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * "invalid grab-id or train already released - abort", grab_id, train_id); } else { - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Release train - grab-id: %d train: %s - finish", grab_id, train_id); @@ -1058,7 +1058,7 @@ o_con_status handler_request_route_by_id(void *_, onion_request *req, onion_resp const char *result = grant_route_id(train_id, route_id); // No extra syslog as grant_route_id logs extensively if (strcmp(result, "granted") == 0) { - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); } else if (strcmp(result, "not_grantable") == 0) { send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Route not available or has conflicts with granted route(s)"); @@ -1089,8 +1089,6 @@ o_con_status handler_driving_direction(void *_, onion_request *req, onion_respon // what direction would the train have to drive (forwards/backwards) to reach the destination? build_response_header(res); - ///TODO: this uses onion_request_get_post to get params -> is that possible if method is GET? - ///TODO: Determine if we can change this to get wrt passing parameters if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_train = onion_request_get_post(req, "train"); const char *data_route_id = onion_request_get_post(req, "route-id"); @@ -1243,7 +1241,7 @@ o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_resp "Request: Set dcc train speed - train: %s speed: %d - finish", grabbed_trains[grab_id].name->str, speed); pthread_mutex_unlock(&grabbed_trains_mutex); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Set dcc train speed"); @@ -1300,7 +1298,7 @@ o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, oni grabbed_trains[grab_id].name->str, speed); } else { bidib_flush(); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Set calibrated train speed - train: %s speed: %d - finish", grabbed_trains[grab_id].name->str, speed); @@ -1352,7 +1350,7 @@ o_con_status handler_set_train_emergency_stop(void *_, onion_request *req, onion grabbed_trains[grab_id].name->str); } else { bidib_flush(); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Set train emergency stop - train: %s - finish", grabbed_trains[grab_id].name->str); @@ -1416,7 +1414,7 @@ o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_res grabbed_trains[grab_id].name->str, data_peripheral, state); } else { bidib_flush(); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Set train peripheral - train: %s peripheral: %s state: 0x%02x" " - finish", From fd9561ea9b0fac58b74343430875c140a46e4d0a Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 23 Apr 2025 11:22:40 +0200 Subject: [PATCH 071/125] minor driver and controller improvements for better feedback, simpler code --- server/src/handler_controller.c | 73 ++++++++++++++++++++++----------- server/src/handler_controller.h | 13 +++++- server/src/handler_driver.c | 50 ++++++++++++++++------ 3 files changed, 99 insertions(+), 37 deletions(-) diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 298bc046..331fd63d 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -153,6 +153,47 @@ void release_all_interlockers(void) { pthread_mutex_unlock(&interlocker_mutex); } +/** + * Check if a sectional interlocker is in use. + * Shall only be called with interlocker_mutex locked. + * + * @return true if the currently used interlocker name contains "sectional", i.e., + * a sectional interlocker is in use. + * @return false otherwise + */ +static bool is_sectional_interlocker_in_use() { + return selected_interlocker_name != NULL + && (g_strrstr(selected_interlocker_name->str, "sectional") != NULL); +} + +bool get_route_has_granted_conflicts(const char *route_id) { + if (route_id == NULL) { + return false; + } + // When a sectional interlocker is in use, use the sectional checker to check for conflicts. + const bool sectional_in_use = is_sectional_interlocker_in_use(); + + // Amount of conflicting routes can't be larger than overall amount of routes known. + const unsigned int route_count = interlocking_table_get_size(); + char *conflict_routes[route_count]; + const int conflict_routes_len = + config_get_array_string_value("route", route_id, "conflicts", conflict_routes); + + for (int i = 0; i < conflict_routes_len; i++) { + const t_interlocking_route *conflict_route = get_route(conflict_routes[i]); + if (conflict_route != NULL && conflict_route->train != NULL) { + if (sectional_in_use && is_route_conflict_safe_sectional(conflict_routes[i], route_id)) { + // If a sectional checker is in use and it says that this conflict is + // actually "safe", skip this conflict. + continue; + } else { + return true; + } + } + } + return false; +} + GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_train_info) { if (route_id == NULL) { return NULL; @@ -161,7 +202,7 @@ GArray *get_granted_route_conflicts(const char *route_id, bool include_conflict_ // When a sectional interlocker is in use, use the sectional checker to // check for route availability. - bool sectional_in_use = (g_strrstr(selected_interlocker_name->str, "sectional") != NULL); + const bool sectional_in_use = is_sectional_interlocker_in_use(); // For the route with id=route_id, get all conflicting routes and add them to the // GArray that will be returned if they are granted. @@ -318,34 +359,20 @@ const char *grant_route_id(const char *train_id, const char *route_id) { if (route == NULL) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_ERR, "Grant route id - unknown route id %s", route_id); - return "not_grantable"; - } - GArray *granted_conflicts = get_granted_route_conflicts(route_id, false); - if (granted_conflicts == NULL) { + return "not_known"; + } else if (route->train != NULL) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_WARNING, - "Grant route id - route: %s train: %s - search for conflicting routes failed", + "Grant route id - route: %s train: %s - route already granted", route_id, train_id); - return "not_grantable"; - } - const bool hasGrantedConflicts = (granted_conflicts->len > 0); - for (int i = 0; i < granted_conflicts->len; ++i) { - if (g_array_index(granted_conflicts, char *, i) != NULL) { - free(g_array_index(granted_conflicts, char *, i)); - } - } - g_array_free(granted_conflicts, true); - if (route->train != NULL || hasGrantedConflicts) { + return "already_granted"; + } else if (get_route_has_granted_conflicts(route_id)) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_WARNING, - "Grant route id - route: %s train: %s - route already granted " - "or conflicting routes are in use", + "Grant route id - route: %s train: %s - conflicting routes are in use", route_id, train_id); return "not_grantable"; - } - - // Check whether the route is physically available - if (!get_route_is_clear(route_id)) { + } else if (!get_route_is_clear(route_id)) { pthread_mutex_unlock(&interlocker_mutex); syslog_server(LOG_WARNING, "Grant route id - route: %s train: %s - route is not clear", @@ -367,7 +394,7 @@ const char *grant_route_id(const char *train_id, const char *route_id) { "Grant route id - route: %s train: %s - " "unable to allocate memory for route->train", route_id, train_id); - return "not_grantable"; + return "internal_error"; } // Set the points to their required positions diff --git a/server/src/handler_controller.h b/server/src/handler_controller.h index 3052b22a..59189dda 100644 --- a/server/src/handler_controller.h +++ b/server/src/handler_controller.h @@ -54,12 +54,23 @@ void release_all_interlockers(void); */ bool load_default_interlocker_instance(); +/** + * Checks if there exists at least one route that is currently granted + * and conflicts with the route specified via route_id. + * Shall only be called with interlocker_mutex locked. + * + * @param route_id id of route for which conflicts shall be checked + * @return true if at least one conflict with a granted route exists and route_id is a valid route + * @return false otherwise + */ +bool get_route_has_granted_conflicts(const char *route_id); + /** * Finds conflicting routes that have been granted. * Shall only be called with interlocker_mutex locked. * The caller is responsible for freeing the returned array and its contents. * - * @param route_id id of route for which conflicts should be checked + * @param route_id id of route for which conflicts shall be checked * @param include_conflict_train_info whether the train to which a conflicting route is granted * shall be added for each element * @return GArray of granted route conflicts, described by strings. diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index fbc65752..cec03927 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -915,8 +915,11 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * dyn_containers_set_train_engine_instance_inputs(engine_instance, 0, true); pthread_mutex_unlock(&grabbed_trains_mutex); - ///TODO: Consider adding a timeout after which the train is directly set to stop via bidib. // Wait until the train has stopped moving + ///NOTE: There is a potential race condition with set-dcc-speed: + /// If release is requested and a non-zero speed is set just barely after/during that, + /// the effective speed will not become 0 (which we wait for in the loop below). + ///TODO: Consider adding a timeout after which the train is directly set to stop via bidib. t_bidib_train_state_query train_state_query = bidib_get_train_state(train_id); while (train_state_query.data.set_speed_step != 0) { bidib_free_train_state_query(train_state_query); @@ -926,10 +929,10 @@ o_con_status handler_release_train(void *_, onion_request *req, onion_response * bidib_free_train_state_query(train_state_query); if (!release_train(grab_id)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id or train already released"); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "train is not currently grabbed"); syslog_server(LOG_ERR, "Request: Release train - grab-id: %d train: %s - " - "invalid grab-id or train already released - abort", + "train is not currently grabbed - abort", grab_id, train_id); } else { onion_response_set_code(res, HTTP_OK); @@ -1059,12 +1062,20 @@ o_con_status handler_request_route_by_id(void *_, onion_request *req, onion_resp // No extra syslog as grant_route_id logs extensively if (strcmp(result, "granted") == 0) { onion_response_set_code(res, HTTP_OK); + } else if (strcmp(result, "not_known") == 0) { + send_common_feedback(res, HTTP_NOT_FOUND, "Route is not known"); + } else if (strcmp(result, "already_granted") == 0) { + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, + "Route is already granted to another train"); } else if (strcmp(result, "not_grantable") == 0) { send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Route not available or has conflicts with granted route(s)"); } else if (strcmp(result, "not_clear") == 0) { send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Route has occupied tracks or source signal is not stop"); + } else if (strcmp(result, "internal_error") == 0) { + send_common_feedback(res, HTTP_INTERNAL_ERROR, + "Route granting failed due to internal error"); } else { send_common_feedback(res, HTTP_BAD_REQUEST, "Route could not be granted"); } @@ -1105,16 +1116,25 @@ o_con_status handler_driving_direction(void *_, onion_request *req, onion_respon return OCS_PROCESSED; } - syslog_server(LOG_INFO, "Request: Driving direction - train: %s - start", data_train); + syslog_server(LOG_INFO, + "Request: Driving direction - train: %s route: %s - start", + data_train, route_id); pthread_mutex_lock(&interlocker_mutex); const t_interlocking_route *route = get_route(route_id); - if (is_forward_driving(route, data_train)) { - send_some_cstring(res, HTTP_OK, "{\n\"direction\": \"forwards\"\n}"); + if (route == NULL) { + send_common_feedback(res, HTTP_NOT_FOUND, "no route with given route-id known"); + syslog_server(LOG_INFO, + "Request: Driving direction - train: %s route: %s - unknown route", + data_train, route_id); + } else if (is_forward_driving(route, data_train)) { + send_some_cstring(res, HTTP_OK, "{\"direction\": \"forwards\"}"); } else { - send_some_cstring(res, HTTP_OK, "{\n\"direction\": \"backwards\"\n}"); + send_some_cstring(res, HTTP_OK, "{\"direction\": \"backwards\"}"); } pthread_mutex_unlock(&interlocker_mutex); - syslog_server(LOG_INFO, "Request: Driving direction - train: %s - finish", data_train); + syslog_server(LOG_INFO, + "Request: Driving direction - train: %s route: %s - finish", + data_train, route_id); return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Driving direction"); @@ -1171,7 +1191,9 @@ o_con_status handler_drive_route(void *_, onion_request *req, onion_response *re "Request: Drive route - route: %s train: %s drive mode: %s - finish", route_id, train_id, mode); } else { - send_common_feedback(res, HTTP_INTERNAL_ERROR, "Route driving aborted"); + send_common_feedback(res, HTTP_BAD_REQUEST, + "Route driving failed; please ensure that the route is granted " + "to the train corresponding to the grab-id"); syslog_server(LOG_ERR, "Request: Drive route - route: %s train: %s drive mode: %s - " "driving failed - abort", @@ -1222,7 +1244,9 @@ o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_resp } else if (strlen(data_track_output) > 32) { // strlen check here as the value is copied to grabbed_trains[grab_id].track_output, // which has a length of 32. - send_common_feedback(res, HTTP_BAD_REQUEST, "invalid track output"); + send_common_feedback(res, HTTP_BAD_REQUEST, + "invalid track output (currently no track output longer than " + "32 chars, incl. nul terminator, is supported for this endpoint)"); syslog_server(LOG_ERR, "Request: Set dcc train speed - train: %s speed: %d - invalid track output", grabbed_trains[grab_id].name->str, speed); @@ -1402,7 +1426,7 @@ o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_res } syslog_server(LOG_NOTICE, - "Request: Set train peripheral - train: %s peripheral: %s state: 0x%02x - start", + "Request: Set train peripheral - train: %s peripheral: %s state: %d - start", grabbed_trains[grab_id].name->str, data_peripheral, state); if (bidib_set_train_peripheral(grabbed_trains[grab_id].name->str, data_peripheral, state, @@ -1410,13 +1434,13 @@ o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_res send_common_feedback(res, HTTP_BAD_REQUEST, "invalid parameter values"); syslog_server(LOG_ERR, "Request: Set train peripheral - train: %s " - "peripheral: %s state: 0x%02x - invalid parameter values - abort", + "peripheral: %s state: %d - invalid parameter values - abort", grabbed_trains[grab_id].name->str, data_peripheral, state); } else { bidib_flush(); onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, - "Request: Set train peripheral - train: %s peripheral: %s state: 0x%02x" + "Request: Set train peripheral - train: %s peripheral: %s state: %d" " - finish", grabbed_trains[grab_id].name->str, data_peripheral, state); } From 4f0ce82ed943774fba107caf93a1a266b59d0ee2 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 23 Apr 2025 11:37:28 +0200 Subject: [PATCH 072/125] driver endpoints in OpenAPI and some doc refinements in other api parts --- .../doc/api-formats/openapi_swtbahn_V1.json | 543 +++++++++++++++++- 1 file changed, 536 insertions(+), 7 deletions(-) diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index 66b1ccf3..61af706f 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -13,7 +13,7 @@ "/admin/startup": { "post": { "summary": "Startup the SWTbahn", - "description": "Attempts to start up the SWTbahn to get it running; i.e., initialize connection to hardware, parse config files, and so on.", + "description": "Attempts to start up the SWTbahn to get it running; i.e., initialize connection to hardware, parse config files, and so on. This starts the server session if successful.", "parameters": [], "operationId": "admin-startup", "responses": { @@ -50,7 +50,7 @@ "/admin/shutdown": { "post": { "summary": "Shutdown the SWTbahn", - "description": "Attempts to shut down the SWTbahn (if it is running); i.e., close connection to hardware, stop running internal threads, and so on.", + "description": "Attempts to shut down the SWTbahn (if it is running); i.e., close connection to hardware, stop running internal threads, and so on. This stops the current server session if successful.", "parameters": [], "operationId": "admin-shutdown", "responses": { @@ -234,7 +234,7 @@ "/admin/set-dcc-train-speed": { "post": { "summary": "Set the dcc speed of a train", - "description": "Set the dcc speed of a train, i.e., the speed has to be provided as a whole number in the range [-126, 126]", + "description": "Set the dcc speed of a train. This is set directly via bidib, i.e., it does not use the train engine dynamic container. Note that this may lead to inconsistencies/the train changing its speed to something else after this command due to a change in the output of the train engine dynamic container.", "parameters": [], "operationId": "admin-set-dcc-train-speed", "responses": { @@ -267,7 +267,7 @@ } } }, - "description": "the train whose speed shall be set, the speed, and the track output" + "description": "the train whose speed shall be set, the speed in the range [-126, 126] , and the track output (usually 'master')." }, "security": [] } @@ -275,7 +275,7 @@ "/controller/release-route": { "post": { "summary": "releases a route", - "description": "releases a route that is currently granted to a train", + "description": "releases the specified route that is currently granted to a train", "parameters": [], "operationId": "controller-release-route", "responses": { @@ -572,7 +572,536 @@ "description": "SWTbahn not running" } }, - "security": [] + "security": [], + "callbacks": {} + } + }, + "/driver/grab-train": { + "post": { + "summary": "grab a train", + "description": "Grab a train (to take temporary ownership). If successful, a grab-id (that identifies this temporary ownership) and a session-id (server session ID to detect server restarts which invalidate train ownerships) are returned. The ownership lasts until it is released (by an admin or by the driver), or until the server session ends.", + "parameters": [], + "operationId": "driver-grab-train", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_grab-train" + } + } + } + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "404": { + "description": "Unknown train or invalid train state", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "Train already grabbed or max. no of grabbed trains reached", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "500": { + "description": "Internal error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_train_engine" + } + } + }, + "description": "A train engine ID has to be specified along with the ID of the train to grab.\nThe train engine determines how the train reacts to speed and direction requests/commands sent via the appropriate API endpoint.\nThe normal train engine is called 'libtrain_engine_default (unremovable)'." + } + } + }, + "/driver/release-train": { + "post": { + "summary": "release a train", + "description": "Release a train that was grabbed with a specific grab-id in the current server session.", + "parameters": [], + "operationId": "driver-release-train", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "Train is not currently grabbed", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_session-id_grab-id" + } + } + }, + "description": "The grab-id has to be specified which identifies the train ownership that is to be released.\nThe session-id has to be specified to make sure this train ownership was granted in the same server session." + } + } + }, + "/driver/request-route": { + "post": { + "summary": "request a route", + "description": "Request a route from a source signal to a destination signal, to be driven with the grabbed train. If successful, a route is granted and its ID is returned.", + "parameters": [], + "operationId": "driver-request-route", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_request-route" + } + } + } + }, + "400": { + "description": "Invalid or missing parameter(s), or other reason for no route being granted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "Route to be granted is in conflict with other granted route or in conflict with state of the track", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_session-id_grab-id_source_destination" + } + } + }, + "description": "The grab-id has to be specified which identifies the train ownership, i.e., the train with which the route is to be driven.\nThe session-id has to be specified to make sure the train ownership was granted in the same server session.\nThe source (destination) signal is the start (end) of the desired route. In case of composite signals (two signals on one post/mast), usually the specific ID of the non-distant signal has to be provided." + } + } + }, + "/driver/request-route-by-id": { + "post": { + "summary": "request a route by its ID", + "description": "Request the route with a specific route-id, to be driven with the grabbed train. If successful, the route with the specified ID is granted.", + "parameters": [], + "operationId": "driver-request-route-by-id", + "responses": { + "200": { + "description": "Success (route is granted)" + }, + "400": { + "description": "Invalid or missing parameter(s), or other reason for no route being granted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "Route to be granted is in conflict with other granted route or in conflict with state of the track, or route is already granted", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "500": { + "description": "Internal error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_session-id_grab-id_route-id" + } + } + }, + "description": "The grab-id has to be specified which identifies the train ownership, i.e., the train with which the route is to be driven.\nThe session-id has to be specified to make sure the train ownership was granted in the same server session.\nThe route-id identifies which route is being requested." + } + } + }, + "/driver/direction": { + "post": { + "summary": "get the direction for driving a route", + "description": "Get the direction that the specified train would need to drive (forwards or backwards) to drive along the specified route.", + "parameters": [], + "operationId": "driver-direction", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_direction" + } + } + } + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "404": { + "description": "Unknown route", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_train_route-id" + } + } + }, + "description": "The train for which the direction is to be determined and the route-id of the route for which the driving direction is to be determined." + } + } + }, + "/driver/drive-route": { + "post": { + "summary": "drive a route", + "description": "Drive the specified route with the grabbed train, either in manual mode (speed controlled by driver via separate set-speed commands) or in automatic mode (train is driven automatically along the route).\nNote that this request is blocking until the route is released (either manually through appropriate command or automatically when end of the route is reached), or an internal error occurs.\nThis only works if the route is currently granted to the grabbed train.", + "parameters": [], + "operationId": "driver-drive-route", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_session-id_grab-id_route-id_mode" + } + } + }, + "description": "The session-id of the current server session. \nThe grab-id that identifies the ownership of the train with which the route is driven.\nThe route-id that identifies the route to drive.\nThe mode that specifies whether driving is manual or automatic." + } + } + }, + "/driver/set-dcc-train-speed": { + "post": { + "summary": "set the dcc speed of a train", + "description": "Set the requested speed (and thus also direction) of the grabbed train to a valid dcc speed. The speed request is passed to the train engine dynamic container.", + "parameters": [], + "operationId": "driver-set-dcc-train-speed", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_session-id_grab-id_speed_track-output" + } + } + }, + "description": "The session-id of the current server session. \nThe grab-id that identifies the ownership of the train whose speed is to be set.\nThe dcc speed to set.\nThe track output for which the train shall be set to the given speed (usually 'master')." + } + } + }, + "/driver/set-calibrated-train-speed": { + "post": { + "summary": "set the speed of a train to a calibrated level", + "description": "Sets the speed of the grabbed train to a calibrated level (levels defined in config files)(and thus also direction). In contrast to driver-set-dcc-train-speed, this bypasses the train engine dynamic container, i.e., the speed is set directly via bidib. Note that this may lead to inconsistencies/the train changing its speed to something else after this command due to a change in the output of the train engine dynamic container.", + "parameters": [], + "operationId": "driver-set-calibrated-train-speed", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_session-id_grab-id_speed_track-output__for-calibrated-speed" + } + } + }, + "description": "The session-id of the current server session. \nThe grab-id that identifies the ownership of the train whose speed is to be set.\nThe calibrated speed level to set.\nThe track output for which the train shall be set to the given speed (usually 'master')." + } + } + }, + "/driver/set-train-emergency-stop": { + "post": { + "summary": "set a train to emergency stop", + "description": "Emergency stops the grabbed train. This bypasses the train engine dynamic container, i.e., the emergency stop is set directly via bidib. Note that this may lead to inconsistencies/the train starting to drive again after the emergency stop due to a change in the output of the train engine dynamic container.", + "parameters": [], + "operationId": "driver-set-train-emergency-stop", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_session-id_grab-id_track-output" + } + } + }, + "description": "The session-id of the current server session. \nThe grab-id that identifies the ownership of the train which is to be stopped.\nThe track output for which the train shall be stopped (usually 'master')." + } + } + }, + "/driver/set-train-peripheral": { + "post": { + "summary": "set the state of a train peripheral", + "description": "Set the state of the peripheral of the grabbed train", + "parameters": [], + "operationId": "driver-set-train-peripheral", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter(s)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_session-id_grab-id_peripheral_state_track-output" + } + } + }, + "description": "The session-id of the current server session. \nThe grab-id that identifies the ownership of the train whose peripheral is to be set.\nThe peripheral whose state to set.\nThe state to set the peripheral to (string with '0' or '1' for on or off respectively).\nThe track output for which the train's peripheral shall be set (usually 'master')." + } } } }, @@ -993,7 +1522,7 @@ "minLength": 1 }, "state": { - "description": "desired peripheral state", + "description": "desired peripheral state (either 0 (off) or 1 (on))", "type": "string", "minLength": 1 }, From 139b263b2fbfaffe65abd4708042aa153715e26f Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Thu, 24 Apr 2025 11:09:56 +0200 Subject: [PATCH 073/125] preparation for adding monitor to OpenAPI spec --- .../json-schema-monitor_point-aspects.json | 4 +- .../monitor/json-schema-monitor_segments.json | 9 +- .../json-schema-monitor_signal-aspects.json | 4 +- .../doc/api-formats/openapi_swtbahn_V1.json | 620 +++++++++++++++++- server/src/handler_monitor.c | 49 +- 5 files changed, 635 insertions(+), 51 deletions(-) diff --git a/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json b/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json index 69a31332..250cf4bd 100644 --- a/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json +++ b/server/doc/api-formats/monitor/json-schema-monitor_point-aspects.json @@ -9,10 +9,10 @@ "type": "array", "minItems": 0, "$comment": "currently allows answers with no aspects in the list, can occur if specified point is unknown", + "uniqueItems": true, "items": { "type": "string", - "minLength": 1, - "uniqueItems": true + "minLength": 1 } }, "msg": { diff --git a/server/doc/api-formats/monitor/json-schema-monitor_segments.json b/server/doc/api-formats/monitor/json-schema-monitor_segments.json index 3acda6b3..7b608088 100644 --- a/server/doc/api-formats/monitor/json-schema-monitor_segments.json +++ b/server/doc/api-formats/monitor/json-schema-monitor_segments.json @@ -2,7 +2,7 @@ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "monitor_segments.schema.json", "title": "segments", - "description": "list of segments connected/known, each with info on occupancy.", + "description": "List of segments, with info on its occupancy if segment is occupied", "type": "object", "properties": { "segments": { @@ -11,8 +11,7 @@ "minItems": 0, "items": { "required": [ - "id", - "occupied-by" + "id" ], "properties": { "id": { @@ -20,9 +19,9 @@ "minLength": 1 }, "occupied-by": { - "$comment": "if a segment is not occupied, its occupied-by entry is an empty list. No separate bool for that to save bandwidth, but this might be reconsidered in the future.", + "description": "list of occupiers (names of train(s) or 'unknown' if occupier is not identifiable)", "type": "array", - "minItems": 0, + "minItems": 1, "items": { "type": "string" } diff --git a/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json b/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json index 2e60462c..f0d00ec2 100644 --- a/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json +++ b/server/doc/api-formats/monitor/json-schema-monitor_signal-aspects.json @@ -9,10 +9,10 @@ "type": "array", "minItems": 0, "$comment": "currently allows answers with no aspects in the list, can occur if specified signal is unknown", + "uniqueItems": true, "items": { "type": "string", - "minLength": 1, - "uniqueItems": true + "minLength": 1 } }, "msg": { diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index 61af706f..a0e93f65 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -1118,8 +1118,7 @@ "properties": { "msg": { "type": "string", - "minLength": 1, - "$comment": "msg is not required to always be present, but if it is, its value shall not be empty." + "minLength": 1 } } }, @@ -1128,7 +1127,7 @@ "type": "object", "properties": { "train": { - "description": "string with name of the train", + "description": "name of the train", "type": "string", "minLength": 1 } @@ -1139,7 +1138,7 @@ "type": "object", "properties": { "verification-url": { - "description": "verification url string", + "description": "verification server url incl. port", "type": "string", "minLength": 1 } @@ -1150,9 +1149,10 @@ "type": "object", "properties": { "verification-option": { - "description": "verification option value string (value should be true or false)", + "description": "verification option value string (value should be 'true' or 'false')", "type": "string", - "minLength": 1 + "minLength": 1, + "pattern": "^(true|false)$" } } }, @@ -1161,7 +1161,7 @@ "type": "object", "properties": { "state": { - "description": "state string", + "description": "state", "type": "string", "minLength": 1 } @@ -1172,7 +1172,7 @@ "type": "object", "properties": { "route-id": { - "description": "string with ID of a route, which is usually a whole number", + "description": "ID of the route", "type": "string", "minLength": 1 } @@ -1231,7 +1231,7 @@ "type": "object", "properties": { "interlocker": { - "description": "string with ID of an interlocker", + "description": "ID of an interlocker", "type": "string", "minLength": 1 } @@ -1254,12 +1254,12 @@ "type": "object", "properties": { "train": { - "description": "string with name of a train", + "description": "name of a train", "type": "string", "minLength": 1 }, "engine": { - "description": "string with name of a (train) engine", + "description": "name of a (train) engine", "type": "string", "minLength": 1 } @@ -1360,12 +1360,12 @@ "type": "object", "properties": { "train": { - "description": "string with name of a train", + "description": "name of a train", "type": "string", "minLength": 1 }, "route-id": { - "description": "string with ID of the route that shall be considered for driving direction", + "description": "ID of the route that shall be considered for driving direction", "type": "string", "minLength": 1 } @@ -1423,7 +1423,7 @@ "minLength": 1 }, "speed": { - "description": "string with speed to set the train to [-126,126]", + "description": "speed to set the train to, in range [-126,126]", "type": "string", "minLength": 1 }, @@ -1439,12 +1439,12 @@ "type": "object", "properties": { "train": { - "description": "string with name of the train", + "description": "name of a train", "type": "string", "minLength": 1 }, "speed": { - "description": "string with speed to set the train to [-126,126]", + "description": "speed to set the train to, in range [-126,126]", "type": "string", "minLength": 1 }, @@ -1470,7 +1470,7 @@ "minLength": 1 }, "speed": { - "description": "string with speed to set the train to, [-9,9], depending on the calibration levels configured for the grabbed train", + "description": "speed to set the train to, in range [-9,9], depending on the calibration levels configured for the grabbed train", "type": "string", "minLength": 1 }, @@ -1532,6 +1532,592 @@ "minLength": 1 } } + }, + "param_signal": { + "title": "param_signal", + "type": "object", + "properties": { + "signal": { + "description": "ID of a signal", + "type": "string", + "minLength": 1 + } + } + }, + "param_point": { + "title": "param_point", + "type": "object", + "properties": { + "point": { + "description": "ID of a point", + "type": "string", + "minLength": 1 + } + } + }, + "reply_route": { + "title": "reply_route", + "description": "Info on a specific route", + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "ID of the route", + "minLength": 1 + }, + "source_signal": { + "type": "string", + "minLength": 1 + }, + "destination_signal": { + "type": "string", + "minLength": 1 + }, + "orientation": { + "type": "string", + "pattern": "^(anticlockwise|clockwise)$" + }, + "length": { + "type": "number", + "description": "length, usually in centimeters (depends on config)" + }, + "path": { + "type": "array", + "minItems": 1, + "uniqueItems": false, + "description": "path of the route, in order of intended traversal, including signals that are passed", + "items": { + "type": "string", + "minLength": 1 + } + }, + "sections": { + "type": "array", + "minItems": 1, + "items": { + "type": "string", + "minLength": 1 + } + }, + "signals": { + "type": "array", + "minItems": 2, + "description": "Includes at least source and destination signals, plus any passed non-distant signals", + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + }, + "points": { + "type": "array", + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + }, + "conflicting_route_ids": { + "type": "array", + "minItems": 0, + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + }, + "granted_conflicting_route_ids": { + "type": "array", + "minItems": 0, + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + }, + "clear": { + "type": "boolean" + }, + "granted_to_train": { + "type": "string", + "minLength": 0, + "description": "Contains name of the train if the route is currently granted, otherwise empty" + } + } + }, + "reply_granted-routes": { + "title": "reply_granted-routes", + "description": "List of granted routes, each entry has the route ID and name of train which the route is granted to", + "type": "object", + "properties": { + "granted-routes": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "train": { + "type": "string", + "minLength": 1 + } + } + } + } + } + }, + "reply_verification-url": { + "title": "reply_verification-url", + "description": "Verification Server URL", + "type": "object", + "properties": { + "verification-url": { + "type": "string", + "minLength": 0 + } + } + }, + "reply_verification-option": { + "title": "reply_verification-option", + "description": "State of verification option, i.e., whether it is enabled or disabled", + "type": "object", + "properties": { + "verification-enabled": { + "type": "boolean" + } + } + }, + "reply_peripherals": { + "title": "reply_peripherals", + "description": "List of peripherals, with their identifier and info on their state id and state value", + "type": "object", + "properties": { + "peripherals": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state-id": { + "type": "string", + "minLength": 0 + }, + "state-value": { + "type": "integer" + } + } + } + } + } + }, + "reply_reversers": { + "title": "reply_reversers", + "description": "List of reversers of the platform with their state", + "type": "object", + "properties": { + "reversers": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state": { + "type": "string", + "pattern": "^(on|off|unknown)$" + } + } + } + } + } + }, + "reply_segments": { + "title": "reply_segments", + "description": "List of segments, with info on occupancy per segment if it is occupied", + "type": "object", + "properties": { + "segments": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "occupied-by": { + "description": "list of occupiers (names of train(s) or 'unknown' if occupier is not identifiable)", + "type": "array", + "minItems": 1, + "items": { + "type": "string" + } + } + } + } + } + } + }, + "reply_point-details": { + "title": "reply_point-details", + "description": "Detailed information on a point", + "type": "object", + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "aspects": { + "type": "array", + "minItems": 0, + "$comment": "currently allows answers with no aspects in the list, can occur if low-level querying of aspects fails", + "description": "list of aspects, i.e., states, that this point can be set to", + "items": { + "type": "string" + } + }, + "state": { + "type": "string", + "minLength": 0, + "$comment": "not sure if we may have an empty state in some non-erronous circumstance" + }, + "segment": { + "type": "string", + "minLength": 1 + }, + "occupied": { + "type": "boolean" + }, + "target_state_reached": { + "type": "boolean", + "$comment": "This is optional, as DCC-accessories (so possibly points) don't provide this info. True if execution state is reached or reached_verified, otherwise false." + } + }, + "required": [ + "id", + "aspects", + "state", + "segment", + "occupied" + ] + }, + "reply_signals": { + "title": "reply_signals", + "description": "List of signals, consisting of the signal ID and its state", + "type": "object", + "properties": { + "signals": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state": { + "type": "string", + "minLength": 0 + } + } + } + } + } + }, + "reply_points": { + "title": "reply_points", + "description": "List of points, consisting of the point ID, its state, and the target_state_reached status if available", + "type": "object", + "properties": { + "points": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "required": [ + "id", + "state" + ], + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state": { + "type": "string", + "minLength": 0 + }, + "target_state_reached": { + "type": "boolean", + "$comment": "This is optional, as DCC-accessories (so possibly points) don't provide this info. True if execution state is reached or reached_verified, otherwise false." + } + } + } + } + } + }, + "reply_track-outputs": { + "title": "reply_track-outputs", + "description": "List of track outputs with their identifier and their state", + "type": "object", + "properties": { + "track-outputs": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state": { + "type": "string", + "minLength": 0 + } + } + } + } + } + }, + "reply_interlockers": { + "title": "reply_interlockers", + "description": "List of interlocker identifiers", + "type": "object", + "properties": { + "interlockers": { + "type": "array", + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + } + } + }, + "reply_engines": { + "title": "reply_engines", + "description": "List of train engine identifiers (i.e., those of available train behaviour models, not physical trains)", + "type": "object", + "properties": { + "engines": { + "type": "array", + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + } + } + }, + "reply_train-peripherals": { + "title": "reply_train-peripherals", + "description": "List of peripherals of a train with their state", + "type": "object", + "properties": { + "train-peripherals": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "state": { + "type": "string", + "pattern": "^(on|off|unknown)$" + } + } + } + } + } + }, + "reply_train-states": { + "title": "reply_train-states", + "description": "List of train states", + "type": "object", + "train-states": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "grabbed": { + "type": "boolean" + }, + "orientation": { + "type": "string", + "pattern": "^(left|right)$" + }, + "direction": { + "type": "string", + "pattern": "^(forwards|backwards)$" + }, + "speed_step": { + "type": "number" + }, + "detected_kmh_speed": { + "type": "number", + "$comment": "Some trains don't report their km/h speed; in that case the value is 0 or this field is not present" + }, + "route_id": { + "type": "string", + "$comment": "empty string or not present if no route is granted to this train. Otherwise route id.", + "minLength": 0 + }, + "on_track": { + "type": "boolean" + }, + "occupied_segments": { + "type": "array", + "$comment": "occupied_segments is only included if on_track is true.", + "items": { + "type": "string" + } + }, + "occupied_blocks": { + "type": "array", + "$comment": "occupied_blocks is only included if on_track is true.", + "items": { + "type": "string" + } + } + } + } + } + }, + "reply_train-state": { + "title": "reply_train-state", + "description": "state of a train", + "type": "object", + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "grabbed": { + "type": "boolean" + }, + "orientation": { + "type": "string", + "pattern": "^(left|right)$" + }, + "direction": { + "type": "string", + "pattern": "^(forwards|backwards)$" + }, + "speed_step": { + "type": "number" + }, + "detected_kmh_speed": { + "type": "number", + "$comment": "Some trains don't report their km/h speed; in that case the value is 0 or this field is not present" + }, + "route_id": { + "type": "string", + "$comment": "empty string or not present if no route is granted to this train. Otherwise route id.", + "minLength": 0 + }, + "on_track": { + "type": "boolean" + }, + "occupied_segments": { + "type": "array", + "$comment": "occupied_segments is only included if on_track is true.", + "items": { + "type": "string" + } + }, + "occupied_blocks": { + "type": "array", + "$comment": "occupied_blocks is only included if on_track is true.", + "items": { + "type": "string" + } + } + }, + "required": [ + "id", + "grabbed", + "orientation", + "direction", + "speed_step", + "on_track" + ] + }, + "reply_trains": { + "title": "reply_trains", + "description": "List of trains, each entry has train ID, grabbed status and on_track status", + "type": "object", + "properties": { + "trains": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "grabbed": { + "type": "boolean" + }, + "on_track": { + "type": "boolean" + } + } + } + } + } + }, + "reply_platform-name": { + "title": "reply_platform-name", + "type": "object", + "properties": { + "platform-name": { + "type": "string", + "description": "name of the SWTbahn (platform) which is being operated", + "minLength": 1 + } + } + }, + "reply_accessory-aspects": { + "title": "reply_accessory-aspects", + "description": "List of aspects (i.e., states) that a specific accessory (e.g., point, signal) can be set to", + "type": "object", + "properties": { + "aspects": { + "type": "array", + "minItems": 0, + "uniqueItems": true, + "items": { + "type": "string", + "minLength": 1 + } + } + } } } } diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 60f83ed4..22875a16 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -801,7 +801,7 @@ o_con_status handler_get_point_details(void *_, onion_request *req, onion_respon o_con_status handler_get_signal_details(void *_, onion_request *req, onion_response *res) { syslog_server(LOG_ERR, "Request: Get signal details - not implemented yet!"); - ///TODO: Implement + ///TODO: Implement and add to API documentation return OCS_NOT_IMPLEMENTED; } @@ -912,27 +912,28 @@ static GString *get_segments_json() { g_string_append_c(g_segments, ','); } added_segments++; + const bool segment_is_occupied = seg_state_query.known && seg_state_query.data.occupied; + append_start_of_obj(g_segments, true); - append_field_str_value(g_segments, "id", seg_query.ids[i], true); + append_field_str_value(g_segments, "id", seg_query.ids[i], segment_is_occupied); - append_field_start_of_list(g_segments, "occupied-by"); - for (size_t j = 0; j < seg_state_query.data.dcc_address_cnt; j++) { - t_bidib_id_query id_query = bidib_get_train_id(seg_state_query.data.dcc_addresses[j]); + if (segment_is_occupied) { + append_field_start_of_list(g_segments, "occupied-by"); + for (size_t j = 0; j < seg_state_query.data.dcc_address_cnt; j++) { + t_bidib_id_query id_query = bidib_get_train_id(seg_state_query.data.dcc_addresses[j]); + g_string_append_printf(g_segments, "%s\"%s\"", + j != 0 ? ", " : "", + id_query.known ? id_query.id : "unknown"); + bidib_free_id_query(id_query); + } + // In case we know the segment is occupied, but no addresses are present, the + // loop above won't add "unknown", so deal with this case separately + if (seg_state_query.data.dcc_address_cnt == 0) { + g_string_append_printf(g_segments, "\"unknown\""); + } - g_string_append_printf(g_segments, "%s\"%s\"", - j != 0 ? ", " : "", - id_query.known ? id_query.id : "unknown"); - bidib_free_id_query(id_query); + append_end_of_list(g_segments, false, false); } - // In case we know the segment is occupied, but no addresses are known, the - // loop above won't add "unknown", so deal with this case separately - if (seg_state_query.known - && seg_state_query.data.occupied - && seg_state_query.data.dcc_addresses == 0) { - g_string_append_printf(g_segments, "\"unknown\""); - } - - append_end_of_list(g_segments, false, false); append_end_of_obj(g_segments, false); bidib_free_segment_state_query(seg_state_query); @@ -946,8 +947,6 @@ static GString *get_segments_json() { o_con_status handler_get_segments(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { - /// TODO: Change to only have occupied-by if actually needed! - /// Also change spec! GString *g_segments = get_segments_json(); send_some_gstring_and_free(res, HTTP_OK, g_segments); syslog_server(LOG_INFO, "Request: Get segments - done"); @@ -1021,6 +1020,7 @@ o_con_status handler_get_reversers(void *_, onion_request *req, onion_response * build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { if (!reversers_state_update()) { + ///TODO: reply with common feedback to differentiate error from the one below onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, "Request: Get reversers - unable to request state update"); return OCS_PROCESSED; @@ -1167,9 +1167,10 @@ static GString* get_granted_routes_json() { if (route_id != NULL) { t_interlocking_route *route = get_route(route_id); if (route != NULL && route->train != NULL) { - if (routes_added++ > 0) { + if (routes_added > 0) { g_string_append_c(g_granted_routes, ','); } + routes_added++; append_start_of_obj(g_granted_routes, true); append_field_str_value(g_granted_routes, "id", route->id, true); append_field_str_value(g_granted_routes, "train", route->train, false); @@ -1219,7 +1220,7 @@ o_con_status handler_get_granted_routes(void *_, onion_request *req, onion_respo * Returns NULL on failure to allocate the string. */ static GString* get_route_json(const char *route_id) { - ///TODO: Think about a possible endpoint with less details; e.g., no length, + ///NOTE: Think about a possible endpoint with less details; e.g., no length, /// no conflicting-route-ids, no sections; to reduce bandwidth load where those fields /// are not needed by the client anyway. /// Also, this does not return info on the required position of points, is that not needed @@ -1254,8 +1255,7 @@ static GString* get_route_json(const char *route_id) { append_field_strlist_value_from_garray_strs(g_route, "sections", route->sections, true); append_field_strlist_value_from_garray_strs(g_route, "signals", route->signals, true); - // if g_point_ids is null, nothing will be appended -> document that in the json-schema and log. - // (same for g_conflicts down below). + // if g_point_ids is null, nothing will be appended. (same for g_conflicts down below). GArray *g_point_ids = garray_points_to_garray_str_ids(route->points); append_field_strlist_value_from_garray_strs(g_route, "points", g_point_ids, true); if (g_point_ids == NULL) { @@ -1293,7 +1293,6 @@ static GString* get_route_json(const char *route_id) { o_con_status handler_get_route(void *_, onion_request *req, onion_response *res) { build_response_header(res); - ///NOTE: uses POST instead of GET to allow parameter passing via POST dict/data if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { const char *data_route_id = onion_request_get_post(req, "route-id"); const char *route_id = params_check_route_id(data_route_id); From 429cc735ec0ff1d168f12131b1e7d62cc118a0e7 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 25 Apr 2025 15:51:58 +0200 Subject: [PATCH 074/125] Add monitor endpoints OpenAPI Doc/Spec + shortcut to check if train is known --- .../doc/api-formats/openapi_swtbahn_V1.json | 772 ++++++++++++++++++ server/src/bahn_data_util.c | 5 + server/src/bahn_data_util.h | 2 + server/src/handler_monitor.c | 24 +- 4 files changed, 796 insertions(+), 7 deletions(-) diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index a0e93f65..325b441c 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -1103,6 +1103,778 @@ "description": "The session-id of the current server session. \nThe grab-id that identifies the ownership of the train whose peripheral is to be set.\nThe peripheral whose state to set.\nThe state to set the peripheral to (string with '0' or '1' for on or off respectively).\nThe track output for which the train's peripheral shall be set (usually 'master')." } } + }, + "/monitor/platform-name": { + "get": { + "summary": "get the name of the SWTbahn (platform) currently being operated", + "description": "", + "parameters": [], + "operationId": "monitor-platform-name", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_platform-name" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/trains": { + "get": { + "summary": "get info of trains", + "description": "Gets information (ID, grab status, on-track status) of trains, for all trains defined in the configuration files of the SWTbahn platform being operated", + "parameters": [], + "operationId": "monitor-trains", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_trains" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/train-state": { + "post": { + "summary": "get info on state of specific train", + "description": "Gets information on state of a specific train", + "parameters": [], + "operationId": "monitor-train-state", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_train-state" + } + } + } + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "404": { + "description": "Unknown train" + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_train" + } + } + }, + "description": "The name/ID of the train to get info on its state" + } + } + }, + "/monitor/train-states": { + "get": { + "summary": "get info on state of all trains", + "description": "Gets information on state of all trains", + "parameters": [], + "operationId": "monitor-train-states", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_train-states" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/train-peripherals": { + "post": { + "summary": "get info on peripherals of a specific train", + "description": "", + "parameters": [], + "operationId": "monitor-train-peripherals", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_train-peripherals" + } + } + } + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "404": { + "description": "Unknown train" + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_train" + } + } + }, + "description": "The name/ID of the train whose peripherals to get info on" + } + } + }, + "/monitor/engines": { + "get": { + "summary": "get names of available train engines (behavior models)", + "description": "", + "parameters": [], + "operationId": "monitor-engines", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_engines" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/interlockers": { + "get": { + "summary": "get names of available interlockers", + "description": "", + "parameters": [], + "operationId": "monitor-interlockers", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_interlockers" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/track-outputs": { + "get": { + "summary": "get names of available track ouputs", + "description": "", + "parameters": [], + "operationId": "monitor-track-outputs", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_track-outputs" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/points": { + "get": { + "summary": "get info on points", + "description": "Get information (ID, state, and optionally whether the current target state is reached) on all points", + "parameters": [], + "operationId": "monitor-points", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_points" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/signals": { + "get": { + "summary": "get info on signals", + "description": "Get information (ID, state) on all signals", + "parameters": [], + "operationId": "monitor-signals", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_signals" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/point-details": { + "post": { + "summary": "get detailed info on a specific point", + "description": "", + "parameters": [], + "operationId": "monitor-point-details", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_point-details" + } + } + } + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "404": { + "description": "Unknown point" + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_point" + } + } + }, + "description": "The name/ID of the point" + } + } + }, + "/monitor/signal-details": { + "post": { + "summary": "get detailed info on a specific signal - NOT YET IMPLEMENTED", + "description": "", + "parameters": [], + "operationId": "monitor-signal-details", + "responses": { + "501": { + "description": "NOT YET IMPLEMENTED" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_signal" + } + } + }, + "description": "The name/ID of the signal" + } + } + }, + "/monitor/point-aspects": { + "post": { + "summary": "get info on aspects (states) a specific point supports", + "description": "", + "parameters": [], + "operationId": "monitor-point-aspects", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_accessory-aspects" + } + } + } + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "404": { + "description": "Unknown point" + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_point" + } + } + }, + "description": "The name/ID of the point" + } + } + }, + "/monitor/signal-aspects": { + "post": { + "summary": "get info on aspects (states) a specific signal supports", + "description": "", + "parameters": [], + "operationId": "monitor-signal-aspects", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_accessory-aspects" + } + } + } + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "404": { + "description": "Unknown signal" + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_signal" + } + } + }, + "description": "The name/ID of the signal" + } + } + }, + "/monitor/segments": { + "get": { + "summary": "get info on segments", + "description": "Get info on segments (ID, and, if occupied, who/what is occupying them)", + "parameters": [], + "operationId": "monitor-segments", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_segments" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/reversers": { + "get": { + "summary": "get info on reversers", + "description": "Get info on reversers (ID, state)", + "parameters": [], + "operationId": "monitor-reversers", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_reversers" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message or unable to get reverser state update" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/peripherals": { + "get": { + "summary": "get info on peripherals", + "description": "Get info on peripherals (ID, state ID, state value)", + "parameters": [], + "operationId": "monitor-peripherals", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_peripherals" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/verification-option": { + "get": { + "summary": "get the current verification option setting", + "description": "", + "parameters": [], + "operationId": "monitor-verification-option", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_verification-option" + } + } + } + }, + "405": { + "description": "Method not allowed" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/verification-url": { + "get": { + "summary": "get the current verification url", + "description": "", + "parameters": [], + "operationId": "monitor-verification-url", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_verification-url" + } + } + } + }, + "405": { + "description": "Method not allowed" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/granted-routes": { + "get": { + "summary": "get info on granted routes", + "description": "Get info on granted routes, with ID of route and the train (ID) they are granted to", + "parameters": [], + "operationId": "monitor-granted-routes", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_granted-routes" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {} + } + }, + "/monitor/route": { + "post": { + "summary": "get info on a specific route", + "description": "Get (detailed) info on a specific route, including conflicting route IDs etc.; reply can be quite big", + "parameters": [], + "operationId": "monitor-route", + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_route" + } + } + } + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "404": { + "description": "Unknown route" + }, + "405": { + "description": "Method not allowed" + }, + "500": { + "description": "Server unable to build reply message or other internal error" + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_route-id" + } + } + }, + "description": "The name/ID of the route" + } + } } }, "security": [], diff --git a/server/src/bahn_data_util.c b/server/src/bahn_data_util.c index 0fc47031..66f44703 100644 --- a/server/src/bahn_data_util.c +++ b/server/src/bahn_data_util.c @@ -1007,6 +1007,11 @@ bool train_state_set_speed(const char *train_id, int speed) { return result; } +bool train_known(const char *train_id) { + // Shorthand/alias for checking if a train with a certain ID is defined in the config + return train_id != NULL && g_hash_table_contains(config_data.table_trains, train_id); +} + char *config_get_point_position(const char *route_id, const char *point_id) { if (route_id == NULL || point_id == NULL) { syslog_server(LOG_ERR, "Get route point position: invalid (NULL) parameters"); diff --git a/server/src/bahn_data_util.h b/server/src/bahn_data_util.h index e973d6f5..b0f636b6 100644 --- a/server/src/bahn_data_util.h +++ b/server/src/bahn_data_util.h @@ -111,6 +111,8 @@ int train_state_get_speed(const char *train_id); bool train_state_set_speed(const char *train_id, int speed); +bool train_known(const char *train_id); + char *config_get_point_position(const char *route_id, const char *point_id); char *config_get_block_id_of_segment(const char *seg_id); diff --git a/server/src/handler_monitor.c b/server/src/handler_monitor.c index 22875a16..78555c02 100644 --- a/server/src/handler_monitor.c +++ b/server/src/handler_monitor.c @@ -137,7 +137,7 @@ o_con_status handler_get_trains(void *_, onion_request *req, onion_response *res GString *g_trains = get_trains_json(); if (g_trains != NULL) { send_some_gstring_and_free(res, HTTP_OK, g_trains); - syslog_server(LOG_INFO, "Request: Get available trains - done"); + syslog_server(LOG_INFO, "Request: Get trains - done"); } else { onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, "Request: Get trains - unable to build reply message"); @@ -371,6 +371,12 @@ o_con_status handler_get_train_peripherals(void *_, onion_request *req, onion_re if (handle_param_miss_check(res, "Get train peripherals", "train", data_train)) { return OCS_PROCESSED; + } else if (!train_known(data_train)) { + onion_response_set_code(res, HTTP_NOT_FOUND); + syslog_server(LOG_WARNING, + "Request: Get train peripherals - train: %s - unknown train", + data_train); + return OCS_PROCESSED; } GString *g_train_peripherals = get_train_peripherals_json(data_train); @@ -924,14 +930,13 @@ static GString *get_segments_json() { g_string_append_printf(g_segments, "%s\"%s\"", j != 0 ? ", " : "", id_query.known ? id_query.id : "unknown"); - bidib_free_id_query(id_query); + bidib_free_id_query(id_query); } // In case we know the segment is occupied, but no addresses are present, the // loop above won't add "unknown", so deal with this case separately if (seg_state_query.data.dcc_address_cnt == 0) { g_string_append_printf(g_segments, "\"unknown\""); } - append_end_of_list(g_segments, false, false); } append_end_of_obj(g_segments, false); @@ -948,8 +953,14 @@ o_con_status handler_get_segments(void *_, onion_request *req, onion_response *r build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { GString *g_segments = get_segments_json(); - send_some_gstring_and_free(res, HTTP_OK, g_segments); - syslog_server(LOG_INFO, "Request: Get segments - done"); + if (g_segments != NULL) { + send_some_gstring_and_free(res, HTTP_OK, g_segments); + syslog_server(LOG_INFO, "Request: Get segments - done"); + } else { + onion_response_set_code(res, HTTP_INTERNAL_ERROR); + syslog_server(LOG_ERR, + "Request: Get segments - unable to build reply message"); + } return OCS_PROCESSED; } else { return handle_req_run_or_method_fail(res, running, "Get segments"); @@ -1020,7 +1031,6 @@ o_con_status handler_get_reversers(void *_, onion_request *req, onion_response * build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { if (!reversers_state_update()) { - ///TODO: reply with common feedback to differentiate error from the one below onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, "Request: Get reversers - unable to request state update"); return OCS_PROCESSED; @@ -1311,7 +1321,7 @@ o_con_status handler_get_route(void *_, onion_request *req, onion_response *res) send_some_gstring_and_free(res, HTTP_OK, g_route); syslog_server(LOG_INFO, "Request: Get route - route: %s - finished", route_id); } else { - onion_response_set_code(res, HTTP_BAD_REQUEST); + onion_response_set_code(res, HTTP_INTERNAL_ERROR); syslog_server(LOG_ERR, "Request: Get route - route: %s - invalid route-id or internal error", route_id); From f759ead3bd283e56926ecb7540cffe56fc2c63d9 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 6 May 2025 11:19:23 +0200 Subject: [PATCH 075/125] engine upload endpoint added to OpenAPI; adjusted handler and client slightly to match changes to swtbahn verifier --- .../doc/api-formats/openapi_swtbahn_V1.json | 134 ++++++++++++++++++ server/doc/api-formats/upload.md | 4 +- .../upload/json-schema-upload-engine.json | 57 ++++++++ server/src/assets/script.js | 2 +- server/src/handler_upload.c | 26 +++- .../src/websocket_uploader/engine_uploader.c | 6 +- .../src/websocket_uploader/engine_uploader.h | 1 + 7 files changed, 219 insertions(+), 11 deletions(-) create mode 100644 server/doc/api-formats/upload/json-schema-upload-engine.json diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index 325b441c..b982feb3 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -1875,6 +1875,68 @@ "description": "The name/ID of the route" } } + }, + "/upload/engine": { + "post": { + "summary": "upload a train engine (behavior) model", + "description": "Upload a train engine behavior model in form of an .sctx (SCCharts) file.", + "parameters": [], + "operationId": "upload-engine", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter, or verification of train engine failed", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_engine__for-upload" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "Engine with same name exists or no engine (container) slot is available", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "500": { + "description": "Engine could not be compiled to a shared library", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "multipart/form-data": { + "schema": { + "$ref": "#/components/schemas/param_file" + } + } + }, + "description": "The .sctx file containing the train engine." + } + } } }, "security": [], @@ -2890,6 +2952,78 @@ } } } + }, + "param_file": { + "title": "param_file", + "type": "object", + "properties": { + "file": { + "description": "file. Attach via your request libraries form data, try with default format/encoding", + "type": "string", + "format": "binary" + } + } + }, + "reply_engine__for-upload": { + "title": "reply_engine__for-upload", + "description": "Result info of uploading an engine", + "type": "object", + "properties": { + "msg": { + "type": "string", + "description": "(error) message", + "minLength": 1 + }, + "status": { + "type": "boolean", + "description": "true if all properties of the engine model hold, false otherwise" + }, + "__MESSAGE_TYPE__": { + "type": "string", + "description": "this can safely be ignored" + }, + "verifiedproperties": { + "type": "array", + "items": { + "type": "object", + "properties": { + "property": { + "type": "object", + "properties": { + "formula": { + "type": "string", + "description": "formula of the property" + }, + "name": { + "type": "string", + "description": "name of the property" + }, + "type": { + "type": "string", + "description": "type of the property (ltl or invariant)" + } + } + }, + "resultcode": { + "type": "string", + "pattern": "^(proven|disproven|unknown)$", + "description": "result of verification of this property" + }, + "verificationlog": { + "type": "string", + "description": "Base64 encoded String. If decoded, this will give the verification log from nuXmv, including counterexamples at the end if possible. The string might also be compressed with zlib (uncompress after initial base64 decode), but default is uncompressed." + }, + "verificationmessage": { + "type": "string", + "description": "Textual description of verification verdict for this property" + } + } + } + } + }, + "required": [ + "msg" + ] } } } diff --git a/server/doc/api-formats/upload.md b/server/doc/api-formats/upload.md index a45d20c7..b0e51a4f 100644 --- a/server/doc/api-formats/upload.md +++ b/server/doc/api-formats/upload.md @@ -1,9 +1,9 @@ For the upload endpoints: -- upload/engine - upload/remove-engine - upload/interlocker - upload/remove-interlocker See common_feedback.json. -There are no other endpoints. \ No newline at end of file +For the upload endpoint(s): +- upload/engine -> See OpenAPI WIP (slightly advanced feedback with result of verification if that was enabled) and json-schema-upload-engine.json \ No newline at end of file diff --git a/server/doc/api-formats/upload/json-schema-upload-engine.json b/server/doc/api-formats/upload/json-schema-upload-engine.json new file mode 100644 index 00000000..8572417d --- /dev/null +++ b/server/doc/api-formats/upload/json-schema-upload-engine.json @@ -0,0 +1,57 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "upload_engine.schema.json", + "title": "engine", + "description": "Result of uploading an engine", + "type": "object", + "properties": { + "msg": { + "type": "string", + "description": "(error) message", + "minLength": 1 + }, + "status": { + "type": "boolean", + "description": "true if all properties of the engine model hold, false otherwise" + }, + "verifiedproperties": { + "type": "array", + "items": { + "type": "object", + "properties": { + "property": { + "type": "object", + "properties": { + "formula": { + "type": "string", + "description": "formula of the property" + }, + "name": { + "type": "string", + "description": "name of the property" + }, + "type": { + "type": "string", + "description": "type of the property (ltl or invariant)" + } + } + }, + "resultcode": { + "type": "string", + "pattern": "^(proven|disproven|unknown)$", + "description": "result of verification of this property" + }, + "verificationlog": { + "type": "string", + "description": "Base64 encoded String. If decoded, this will give the verification log from nuXmv, including counterexamples at the end if possible. The string might also be compressed with zlib (uncompress after initial base64 decode), but default is uncompressed." + }, + "verificationmessage": { + "type": "string", + "description": "textual description of verification verdict for this property" + } + } + } + } + }, + "required": ["msg"] +} \ No newline at end of file diff --git a/server/src/assets/script.js b/server/src/assets/script.js index 917e0f83..ac388dc6 100644 --- a/server/src/assets/script.js +++ b/server/src/assets/script.js @@ -564,7 +564,7 @@ $(document).ready( console.log("Upload Failed"); try { var resJson = JSON.parse(responseData.responseText.toString(), null, 2); - var msg = "Server Message: " + resJson["message"]; + var msg = "Server Message: " + resJson["msg"]; msg += "\nList of Properties:" resJson["verifiedproperties"].forEach(element => { msg += "\n-" + element["property"]["name"] + ": " + element["verificationmessage"] diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index e17877ee..1468a7cf 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -145,10 +145,14 @@ static bool plugin_is_unremovable(const char name[]) { o_con_status handler_upload_engine(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { + // The client has to attach the file via form data. They do NOT have to + // also send the filename on its own as a string - this is just how onion + // allows us to get the filename of an attached file, even though it looks + // like the client has to provide both a file and the filename. const char *filename = onion_request_get_post(req, "file"); const char *temp_filepath = onion_request_get_file(req, "file"); - if (handle_param_miss_check(res, "Upload engine", "file(name)", filename)) { + if (handle_param_miss_check(res, "Upload engine", "file", filename)) { return OCS_PROCESSED; } else if (temp_filepath == NULL) { // Either something went wrong with the fs(?), or the file was not attached at all. @@ -160,7 +164,7 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * syslog_server(LOG_NOTICE, "Request: Upload engine - engine file: %s - start", filename); if (engine_file_exists(filename)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "engine file already exists"); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "engine file already exists"); syslog_server(LOG_ERR, "Request: Upload engine - engine file: %s - " "engine file already exists - abort", @@ -186,9 +190,17 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * // Stop upload if verification did not succeed syslog_server(LOG_NOTICE, "Request: Upload Engine - engine verification failed - abort"); remove_engine_files(libname); - if (engine_verif_result.message != NULL) { + // If the reply message (from the verification server) is NOT in json format, + // send it via common_feedback; if it IS in JSON format, send it directly. + // -> the OpenAPI spec conformance thus relies on the verification server + // adhering to the spec, which is fragile, but all other options would be + // quite complicated. + // If there's no message, reason for verification failure is unknown. + if (engine_verif_result.message != NULL && !engine_verif_result.message_is_json_str) { send_common_feedback(res, HTTP_BAD_REQUEST, engine_verif_result.message->str); g_string_free(engine_verif_result.message, true); + } else if (engine_verif_result.message != NULL && engine_verif_result.message_is_json_str) { + send_some_gstring_and_free(res, HTTP_BAD_REQUEST, engine_verif_result.message); } else { send_common_feedback(res, HTTP_BAD_REQUEST, "verification failed due to unknown reason"); @@ -231,7 +243,7 @@ o_con_status handler_upload_engine(void *_, onion_request *req, onion_response * snprintf(filepath, sizeof(filepath), "%s/%s", engine_dir, libname); dyn_containers_set_engine(engine_slot, filepath); pthread_mutex_unlock(&dyn_containers_mutex); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Upload engine - engine file: %s - finish", filename); return OCS_PROCESSED; } else { @@ -282,7 +294,7 @@ o_con_status handler_remove_engine(void *_, onion_request *req, onion_response * "Request: Remove engine - engine: %s - files could not be removed", name); } - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Remove engine - engine: %s - finish", name); return OCS_PROCESSED; } else { @@ -402,7 +414,7 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo snprintf(filepath, sizeof(filepath), "%s/%s", interlocker_dir, libname); dyn_containers_set_interlocker(interlocker_slot, filepath); pthread_mutex_unlock(&dyn_containers_mutex); - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Upload interlocker - interlocker file: %s - finish", filename); @@ -458,7 +470,7 @@ o_con_status handler_remove_interlocker(void *_, onion_request *req, onion_respo "files could not be removed", name); } - send_common_feedback(res, HTTP_OK, ""); + onion_response_set_code(res, HTTP_OK); syslog_server(LOG_NOTICE, "Request: Remove interlocker - interlocker: %s - finish", name); diff --git a/server/src/websocket_uploader/engine_uploader.c b/server/src/websocket_uploader/engine_uploader.c index c01ea764..a10ca7f7 100644 --- a/server/src/websocket_uploader/engine_uploader.c +++ b/server/src/websocket_uploader/engine_uploader.c @@ -35,6 +35,7 @@ typedef struct { bool started; bool finished; bool success; + bool message_is_json_str; GString* file_path; GString* message; } ws_verif_data; @@ -197,6 +198,7 @@ void process_verification_result_msg(struct mg_ws_message *ws_msg, ws_verif_data "engine does not satisfy all its properties"); ws_data_ptr->message = g_string_new(""); g_string_append_printf(ws_data_ptr->message,"%s", ws_msg->data.ptr); + ws_data_ptr->message_is_json_str = true; } ws_data_ptr->success = false; ws_data_ptr->finished = true; @@ -303,7 +305,7 @@ void websocket_verification_callback(struct mg_connection *ws_connection, verif_result verify_engine_model(const char* f_filepath) { struct mg_mgr event_manager; - ws_verif_data ws_verif_data = {false, false, false, g_string_new(f_filepath), NULL}; + ws_verif_data ws_verif_data = {false, false, false, false, g_string_new(f_filepath), NULL}; if (verifier_url == NULL) { syslog_server(LOG_ERR, @@ -311,6 +313,7 @@ verif_result verify_engine_model(const char* f_filepath) { "no verifier URL has been set, abort"); verif_result result_data; result_data.success = false; + result_data.message_is_json_str = false; result_data.message = g_string_new("No verifier server URL has been set, " "thus no verification was possible"); return result_data; @@ -353,6 +356,7 @@ verif_result verify_engine_model(const char* f_filepath) { mg_mgr_free(&event_manager); verif_result result_data; result_data.success = ws_verif_data.success; + result_data.message_is_json_str = ws_verif_data.message_is_json_str; result_data.message = ws_verif_data.message; // Free string allocated for filepath of model file diff --git a/server/src/websocket_uploader/engine_uploader.h b/server/src/websocket_uploader/engine_uploader.h index 94c4642c..9f91c6f8 100644 --- a/server/src/websocket_uploader/engine_uploader.h +++ b/server/src/websocket_uploader/engine_uploader.h @@ -33,6 +33,7 @@ typedef struct { bool success; + bool message_is_json_str; GString* message; } verif_result; From 24ac4af51765e23d86edc8736a74f8dd769f7467 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 6 May 2025 11:36:39 +0200 Subject: [PATCH 076/125] OpenAPI for rest of upload endpoints --- .../doc/api-formats/openapi_swtbahn_V1.json | 208 ++++++++++++++++++ server/src/handler_upload.c | 8 +- 2 files changed, 212 insertions(+), 4 deletions(-) diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index b982feb3..29e71377 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -1937,6 +1937,192 @@ "description": "The .sctx file containing the train engine." } } + }, + "/upload/remove-engine": { + "post": { + "summary": "remove a train engine (behavior) model", + "description": "Remove a train engine (behavior) model from those that are available on the server. Note that the default engines which are not uploaded by users are not removable.", + "parameters": [], + "operationId": "upload-remove-engine", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter, or engine is unremovable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "404": { + "description": "Engine to remove not found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "Engine is still being used", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_engine-name" + } + } + }, + "description": "The name of the train engine to remove." + } + } + }, + "/upload/interlocker": { + "post": { + "summary": "upload an interlocker", + "description": "Upload a interlocker in form of a .bahn (BahnDSL) file.", + "parameters": [], + "operationId": "upload-interlocker", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/reply_engine__for-upload" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "Interlocker with same name exists or no interlocker (container) slot is available", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "500": { + "description": "Interlocker could not be compiled to a shared library", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "multipart/form-data": { + "schema": { + "$ref": "#/components/schemas/param_file" + } + } + }, + "description": "The .bahn file containing the interlocker." + } + } + }, + "/upload/remove-interlocker": { + "post": { + "summary": "remove an interlocker", + "description": "Remove an interlocker from those that are available on the server. Note that the default interlockers which are not uploaded by users are not removable.", + "parameters": [], + "operationId": "upload-remove-interlocker", + "responses": { + "200": { + "description": "Success" + }, + "400": { + "description": "Invalid or missing parameter, or interlocker is unremovable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "404": { + "description": "Interlocker to remove not found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "405": { + "description": "Method not allowed" + }, + "409": { + "description": "Interlocker is still being used", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, + "503": { + "description": "SWTbahn not running" + } + }, + "security": [], + "callbacks": {}, + "requestBody": { + "required": true, + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/param_interlocker-name" + } + } + }, + "description": "The name of the interlocker to remove." + } + } } }, "security": [], @@ -3024,6 +3210,28 @@ "required": [ "msg" ] + }, + "param_engine-name": { + "title": "param_engine-name", + "type": "object", + "properties": { + "engine-name": { + "description": "name of a (train) engine", + "type": "string", + "minLength": 1 + } + } + }, + "param_interlocker-name": { + "title": "param_interlocker-name", + "type": "object", + "properties": { + "interlocker-name": { + "description": "name of an interlocker", + "type": "string", + "minLength": 1 + } + } } } } diff --git a/server/src/handler_upload.c b/server/src/handler_upload.c index 1468a7cf..6a25e410 100644 --- a/server/src/handler_upload.c +++ b/server/src/handler_upload.c @@ -272,7 +272,7 @@ o_con_status handler_remove_engine(void *_, onion_request *req, onion_response * const int engine_slot = dyn_containers_get_engine_slot(name); if (engine_slot < 0) { pthread_mutex_unlock(&dyn_containers_mutex); - send_common_feedback(res, HTTP_NOT_FOUND, "Engine could not be found"); + send_common_feedback(res, HTTP_NOT_FOUND, "engine could not be found"); syslog_server(LOG_WARNING, "Request: Remove engine - engine: %s - engine could not be found - abort", name); @@ -282,7 +282,7 @@ o_con_status handler_remove_engine(void *_, onion_request *req, onion_response * const bool engine_freed_successfully = dyn_containers_free_engine(engine_slot); pthread_mutex_unlock(&dyn_containers_mutex); if (!engine_freed_successfully) { - send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "Engine still in use"); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "engine still in use"); syslog_server(LOG_WARNING, "Request: Remove engine - engine: %s - engine is still in use - abort", name); @@ -345,7 +345,7 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo const char *filename = onion_request_get_post(req, "file"); const char *temp_filepath = onion_request_get_file(req, "file"); - if (handle_param_miss_check(res, "Upload interlocker", "file(name)", filename)) { + if (handle_param_miss_check(res, "Upload interlocker", "file", filename)) { return OCS_PROCESSED; } else if (temp_filepath == NULL) { // Either something went wrong with the fs(?), or the file was not attached at all. @@ -360,7 +360,7 @@ o_con_status handler_upload_interlocker(void *_, onion_request *req, onion_respo filename); if (interlocker_file_exists(filename)) { - send_common_feedback(res, HTTP_BAD_REQUEST, "interlocker file already exists"); + send_common_feedback(res, CUSTOM_HTTP_CODE_CONFLICT, "interlocker file already exists"); syslog_server(LOG_ERR, "Request: Upload interlocker - interlocker file: %s - " "file already exists - abort", From 90e8aef80198ef944270d58331c3fec7c69535a4 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 7 May 2025 10:23:38 +0200 Subject: [PATCH 077/125] OpenAPI Fixes based on IBM Validation Tool --- .../doc/api-formats/openapi_swtbahn_V1.json | 146 +++++++++--------- 1 file changed, 73 insertions(+), 73 deletions(-) diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index 29e71377..22a5d8cf 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -99,7 +99,7 @@ "content": { "application/x-www-form-urlencoded": { "schema": { - "$ref": "#/components/schemas/param_state_string" + "$ref": "#/components/schemas/param_state" } } }, @@ -140,7 +140,7 @@ "content": { "application/x-www-form-urlencoded": { "schema": { - "$ref": "#/components/schemas/param_verification-option_string" + "$ref": "#/components/schemas/param_verification-option" } } }, @@ -181,7 +181,7 @@ "content": { "application/x-www-form-urlencoded": { "schema": { - "$ref": "#/components/schemas/param_verification-url_string" + "$ref": "#/components/schemas/param_verification-url" } } }, @@ -222,7 +222,7 @@ "content": { "application/x-www-form-urlencoded": { "schema": { - "$ref": "#/components/schemas/param_train_string" + "$ref": "#/components/schemas/param_train" } } }, @@ -263,7 +263,7 @@ "content": { "application/x-www-form-urlencoded": { "schema": { - "$ref": "#/components/schemas/param_train_speed_trackoutput" + "$ref": "#/components/schemas/param_train_speed_track-output" } } }, @@ -2804,16 +2804,14 @@ "aspects": { "type": "array", "minItems": 0, - "$comment": "currently allows answers with no aspects in the list, can occur if low-level querying of aspects fails", - "description": "list of aspects, i.e., states, that this point can be set to", + "description": "list of aspects, i.e., states, that this point can be set to. currently allows answers with no aspects in the list, can occur if low-level querying of aspects fails", "items": { "type": "string" } }, "state": { "type": "string", - "minLength": 0, - "$comment": "not sure if we may have an empty state in some non-erronous circumstance" + "minLength": 0 }, "segment": { "type": "string", @@ -2824,7 +2822,7 @@ }, "target_state_reached": { "type": "boolean", - "$comment": "This is optional, as DCC-accessories (so possibly points) don't provide this info. True if execution state is reached or reached_verified, otherwise false." + "description": "This is optional, as DCC-accessories (so possibly points) don't provide this info. True if execution state is reached or reached_verified, otherwise false." } }, "required": [ @@ -2884,7 +2882,7 @@ }, "target_state_reached": { "type": "boolean", - "$comment": "This is optional, as DCC-accessories (so possibly points) don't provide this info. True if execution state is reached or reached_verified, otherwise false." + "description": "This is optional, as DCC-accessories (so possibly points) don't provide this info. True if execution state is reached or reached_verified, otherwise false." } } } @@ -2969,64 +2967,6 @@ } } }, - "reply_train-states": { - "title": "reply_train-states", - "description": "List of train states", - "type": "object", - "train-states": { - "type": "array", - "uniqueItems": true, - "minItems": 0, - "items": { - "properties": { - "id": { - "type": "string", - "minLength": 1 - }, - "grabbed": { - "type": "boolean" - }, - "orientation": { - "type": "string", - "pattern": "^(left|right)$" - }, - "direction": { - "type": "string", - "pattern": "^(forwards|backwards)$" - }, - "speed_step": { - "type": "number" - }, - "detected_kmh_speed": { - "type": "number", - "$comment": "Some trains don't report their km/h speed; in that case the value is 0 or this field is not present" - }, - "route_id": { - "type": "string", - "$comment": "empty string or not present if no route is granted to this train. Otherwise route id.", - "minLength": 0 - }, - "on_track": { - "type": "boolean" - }, - "occupied_segments": { - "type": "array", - "$comment": "occupied_segments is only included if on_track is true.", - "items": { - "type": "string" - } - }, - "occupied_blocks": { - "type": "array", - "$comment": "occupied_blocks is only included if on_track is true.", - "items": { - "type": "string" - } - } - } - } - } - }, "reply_train-state": { "title": "reply_train-state", "description": "state of a train", @@ -3052,11 +2992,11 @@ }, "detected_kmh_speed": { "type": "number", - "$comment": "Some trains don't report their km/h speed; in that case the value is 0 or this field is not present" + "description": "Some trains don't report their km/h speed; in that case the value is 0 or this field is not present" }, "route_id": { "type": "string", - "$comment": "empty string or not present if no route is granted to this train. Otherwise route id.", + "description": "empty string or not present if no route is granted to this train. Otherwise route id.", "minLength": 0 }, "on_track": { @@ -3064,14 +3004,14 @@ }, "occupied_segments": { "type": "array", - "$comment": "occupied_segments is only included if on_track is true.", + "description": "occupied_segments is only included if on_track is true.", "items": { "type": "string" } }, "occupied_blocks": { "type": "array", - "$comment": "occupied_blocks is only included if on_track is true.", + "description": "occupied_blocks is only included if on_track is true.", "items": { "type": "string" } @@ -3232,6 +3172,66 @@ "minLength": 1 } } + }, + "reply_train-states": { + "title": "reply_train-states", + "description": "List of train states", + "type": "object", + "properties": { + "train-states": { + "type": "array", + "uniqueItems": true, + "minItems": 0, + "items": { + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "grabbed": { + "type": "boolean" + }, + "orientation": { + "type": "string", + "pattern": "^(left|right)$" + }, + "direction": { + "type": "string", + "pattern": "^(forwards|backwards)$" + }, + "speed_step": { + "type": "number" + }, + "detected_kmh_speed": { + "type": "number", + "description": "Some trains don't report their km/h speed; in that case the value is 0 or this field is not present" + }, + "route_id": { + "type": "string", + "description": "empty string or not present if no route is granted to this train. Otherwise route id.", + "minLength": 0 + }, + "on_track": { + "type": "boolean" + }, + "occupied_segments": { + "type": "array", + "description": "occupied_segments is only included if on_track is true.", + "items": { + "type": "string" + } + }, + "occupied_blocks": { + "type": "array", + "description": "occupied_blocks is only included if on_track is true.", + "items": { + "type": "string" + } + } + } + } + } + } } } } From 6c861df4c4db5c3489f989b131672504290072ba Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 7 May 2025 10:28:20 +0200 Subject: [PATCH 078/125] reduce duplicate schema in OpenAPI --- .../doc/api-formats/openapi_swtbahn_V1.json | 47 +------------------ 1 file changed, 1 insertion(+), 46 deletions(-) diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index 22a5d8cf..8639dcc8 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -3183,52 +3183,7 @@ "uniqueItems": true, "minItems": 0, "items": { - "properties": { - "id": { - "type": "string", - "minLength": 1 - }, - "grabbed": { - "type": "boolean" - }, - "orientation": { - "type": "string", - "pattern": "^(left|right)$" - }, - "direction": { - "type": "string", - "pattern": "^(forwards|backwards)$" - }, - "speed_step": { - "type": "number" - }, - "detected_kmh_speed": { - "type": "number", - "description": "Some trains don't report their km/h speed; in that case the value is 0 or this field is not present" - }, - "route_id": { - "type": "string", - "description": "empty string or not present if no route is granted to this train. Otherwise route id.", - "minLength": 0 - }, - "on_track": { - "type": "boolean" - }, - "occupied_segments": { - "type": "array", - "description": "occupied_segments is only included if on_track is true.", - "items": { - "type": "string" - } - }, - "occupied_blocks": { - "type": "array", - "description": "occupied_blocks is only included if on_track is true.", - "items": { - "type": "string" - } - } - } + "$ref": "#/components/schemas/reply_train-state" } } } From 1b40a06c07b3c45ad44eec4f51dc505982bc3875 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Fri, 9 May 2025 17:18:54 +0200 Subject: [PATCH 079/125] python client for json api up to driver endpoints, and fixed incorrect returns on two endpoints in OpenAPI spec --- client/swtbahn-json | 547 ++++++++++++------ .../doc/api-formats/openapi_swtbahn_V1.json | 6 - 2 files changed, 355 insertions(+), 198 deletions(-) diff --git a/client/swtbahn-json b/client/swtbahn-json index 6e2a7cbe..843b8a8c 100644 --- a/client/swtbahn-json +++ b/client/swtbahn-json @@ -2,7 +2,7 @@ """ -Copyright (C) 2024 University of Bamberg, Software Technologies Research Group +Copyright (C) 2025 University of Bamberg, Software Technologies Research Group , This file is part of the SWTbahn command line interface (swtbahn-cli), which is @@ -28,7 +28,7 @@ present swtbahn-cli (in alphabetic order by surname): """ -import click, yaml, requests +import click, yaml, json, requests @@ -50,7 +50,7 @@ server = "" # --- config handling --- # ----------------------- -def create_config(hostname, port, default_output): +def create_config(hostname, port, default_output, do_test_connection=True): try: data = {'hostname': hostname, 'port': port, 'default_track_output': default_output, 'session_id': 0, @@ -61,20 +61,22 @@ def create_config(hostname, port, default_output): except Exception as e: click.echo(e, err=True) return - global server - server = "http://" + hostname + ":" + str(port) - click.echo("Connection test:") - try: - response = requests.get(server) - if (response.status_code != requests.codes.ok): - click.echo("No SWTbahn server on " + server, err=True) - else: - click.echo("SWTbahn server found on " + server) - except requests.exceptions.RequestException as e: - click.echo(e, err=True) + if do_test_connection: + global server + server = "http://" + hostname + ":" + str(port) + click.echo("Connection test:") + try: + response = requests.get(server) + if (response.status_code != requests.codes.ok): + click.echo("No SWTbahn server on " + server, err=True) + else: + click.echo("SWTbahn server found on " + server) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) def update_session_and_grab_id(session_id, grab_id): + global config_file try: with open(config_file) as infile: config = yaml.safe_load(infile) @@ -86,11 +88,12 @@ def update_session_and_grab_id(session_id, grab_id): click.echo(e, err=True) +# Returns False if config is valid, otherwise returns True def parse_config(): + global config_file, hostname, port, default_track_output, session_id, grab_id, server try: with open(config_file) as infile: config = yaml.safe_load(infile) - global hostname, port, default_track_output, session_id, grab_id, server hostname = config['hostname'] port = config['port'] default_track_output = config['default_track_output'] @@ -109,18 +112,33 @@ def parse_config(): @click.group(help="Command-line interface for controlling the SWTbahn. " - "Use the config command first to set the hostname and port") + "Use the config command first to set the hostname and port." + "Use the reset_grab_and_session_id command if the server says they are invalid, " + "this may happen if an admin force-releases a train you've grabbed.") def cli(): pass @click.command(help="Configure hostname and port") -@click.argument('hostname') -@click.argument('port', type=click.IntRange(0, 65535)) -@click.argument('default_track_output') +@click.argument('hostname', required=True) +@click.argument('port', type=click.IntRange(0, 65535), required=True) +@click.argument('default_track_output', default="master") def config(hostname, port, default_track_output): create_config(hostname, port, default_track_output) +@click.command(help="Reset your train ownership (grab and session id). " + "Do NOT do this if you still have proper control over the train!") +def reset_grab_and_session_id(): + global server, session_id, grab_id, hostname, port, default_track_output + try: + # to be safe, try to release the train with the current grab id before resetting it + requests.post(server + "/driver/release-train", + data = {'session-id': session_id, 'grab-id': grab_id}) + # Reset the session_id and grab_id + create_config(hostname, port, default_track_output, False) + except Exception as e: + click.echo("reset_grab_and_session_id failed. Error: " + e, err=True) + # --- admin --- @@ -132,15 +150,21 @@ def admin(): @click.command(help="Start up the SWTbahn") def startup(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/admin/startup") if (response.status_code == requests.codes.ok): - click.echo("System has started up\n") + click.echo("System has started up.") + elif response.status_code == requests.codes.conflict: + click.echo("System already running!") + elif response.status_code == requests.codes.internal_server_error: + response_json: dict = json.loads(response.text) + click.echo("Startup failed due to internal error: " + response_json.get("msg", ""), + err=True) else: - click.echo("System already running or startup failed\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -148,25 +172,27 @@ def startup(): @click.command(help="Shut down the SWTbahn") def shutdown(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/admin/shutdown") if (response.status_code == requests.codes.ok): - click.echo("System is stopping\n") + click.echo("System has been stopped.") update_session_and_grab_id(0, -1) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or shutdown failed\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) -@click.command(help="Set the power state of a track output") +@click.command(help="Set the power state of all track outputs") @click.argument('state', type=click.Choice(['off', 'stop', 'soft_stop', 'go'])) def set_track_output(state): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -179,9 +205,14 @@ def set_track_output(state): response = requests.post(server + "/admin/set-track-output", data = {'state': mapping.get(state)}) if (response.status_code == requests.codes.ok): - click.echo("Track output state set\n") + click.echo("Track output state set to " + state) + elif response.status_code == requests.codes.bad_request: + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or setting the track output failed\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -189,16 +220,21 @@ def set_track_output(state): @click.argument('verification-option', type=click.Choice(['true', 'false'])) def set_verification_option(verification_option): if(parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/admin/set-verification-option", data = {'verification-option': verification_option}) if (response.status_code == requests.codes.ok): - click.echo("Verification option set to " + verification_option + "\n") + click.echo("Verification option set to " + verification_option) + elif response.status_code == requests.codes.bad_request: + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -206,16 +242,19 @@ def set_verification_option(verification_option): @click.argument('verification-url', type=click.STRING) def set_verification_url(verification_url): if(parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/admin/set-verification-url", data = {'verification-url': verification_url}) if (response.status_code == requests.codes.ok): - click.echo("Verification url set to " + verification_url + "\n") + click.echo("Verification url set to " + verification_url) + elif response.status_code == requests.codes.bad_request: + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -223,30 +262,32 @@ def set_verification_url(verification_url): @click.argument('train') def admin_release(train): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: - response = requests.post(server + "/admin/release-train", - data = {'train': train}) + response = requests.post(server + "/admin/release-train", data = {'train': train}) if (response.status_code == requests.codes.ok): - click.echo("Released grabbed train\n") + click.echo("Released grabbed train " + train) + elif response.status_code == requests.codes.bad_request: + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or train not grabbed!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(name="set-dcc-speed", help="Set the dcc speed step of a train") -@click.option('--backwards', '-b', help="The rear end of the train moves forward", - is_flag=True) -@click.option('--track_output', '-t', help="Use another track output than the " - "default one", default="") +@click.option('--backwards', '-b', help="The rear end of the train moves forward", is_flag=True) +@click.option('--track_output', '-t', help="Use another track output than the default one", default="") @click.argument('train') @click.argument('speed', type=click.IntRange(0, 126)) def admin_set_dcc_speed(train, backwards, speed, track_output): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server, default_track_output if (backwards and speed > 0): @@ -255,11 +296,16 @@ def admin_set_dcc_speed(train, backwards, speed, track_output): track_output = default_track_output try: response = requests.post(server + "/admin/set-dcc-train-speed", - data = {'train': train, 'speed': speed, 'track-output': track_output}) + data = {'train': train, 'speed': speed, 'track-output': default_track_output}) if (response.status_code == requests.codes.ok): - click.echo("DCC train speed set to " + str(speed) + "\n") + click.echo("DCC speed of " + train + " set to " + str(speed)) + elif response.status_code == requests.codes.bad_request: + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid track output!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -275,34 +321,44 @@ def controller(): @click.argument('route-id', type=int) def release_route(route_id): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: try: response = requests.post(server + "/controller/release-route", - data = {'route-id': route_id}) + data = {'route-id': route_id}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Route " + str(route_id) + " released\n") + process_id_feedback(response.text, "Route " + str(route_id) + " released.") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) + elif response.status_code == requests.codes.bad_request: + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) else: - click.echo("System not running or invalid track output!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) -@click.command(help="Switch a point") +@click.command(help="Set a point") @click.argument('point') @click.argument('state') def set_point(point, state): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/controller/set-point", - data = {'point': point, 'state': state}) + data = {'point': point, 'state': state}) if (response.status_code == requests.codes.ok): - click.echo("Point " + point + " set to " + state + " \n") + click.echo("Point " + point + " set to " + state) + elif response.status_code == requests.codes.bad_request: + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid state!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -312,16 +368,21 @@ def set_point(point, state): @click.argument('state') def set_signal(signal, state): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/controller/set-signal", - data = {'signal': signal, 'state': state}) + data = {'signal': signal, 'state': state}) if (response.status_code == requests.codes.ok): - click.echo("Signal " + signal + " set to " + state + " \n") + click.echo("Signal " + signal + " set to " + state) + elif response.status_code == requests.codes.bad_request: + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid state!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -331,16 +392,21 @@ def set_signal(signal, state): @click.argument('state') def set_peripheral(peripheral, state): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/controller/set-peripheral", - data = {'peripheral': peripheral, 'state': state}) + data = {'peripheral': peripheral, 'state': state}) if (response.status_code == requests.codes.ok): - click.echo("Peripheral " + peripheral + " set to " + state + " \n") + click.echo("Peripheral " + peripheral + " set to " + state) + elif response.status_code == requests.codes.bad_request: + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid state!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -348,15 +414,18 @@ def set_peripheral(peripheral, state): @click.command(help="Get the interlocker in use") def get_interlocker(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: - response = requests.post(server + "/controller/get-interlocker") + response = requests.get(server + "/controller/get-interlocker") if (response.status_code == requests.codes.ok): - click.echo(response.text + "\n") + response_json: dict = json.loads(response.text) + click.echo("Interlocker in use: " + response_json.get("interlocker", None)) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid state!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -365,16 +434,22 @@ def get_interlocker(): @click.argument('interlocker') def set_interlocker(interlocker): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/controller/set-interlocker", - data = {'interlocker': interlocker}) + data = {'interlocker': interlocker}) if (response.status_code == requests.codes.ok): - click.echo("Interlocker set to " + interlocker + " \n") + click.echo("Interlocker set to " + interlocker) + elif (response.status_code == requests.codes.bad_request or + response.status_code == requests.codes.conflict): + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid state!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -383,34 +458,48 @@ def set_interlocker(interlocker): @click.argument('interlocker') def unset_interlocker(interlocker): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/controller/unset-interlocker", - data = {'interlocker': interlocker}) + data = {'interlocker': interlocker}) if (response.status_code == requests.codes.ok): - click.echo("Interlocker " + interlocker + " is unset \n") + click.echo("Interlocker " + interlocker + " has been unset.") + elif (response.status_code == requests.codes.bad_request or + response.status_code == requests.codes.conflict): + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid state!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) -@click.command(help="Upload an interlocker. Absolute path to an BahnDSL (*.bahn) file") -@click.argument('filepath', type=click.Path(exists=True)) +@click.command(help="Upload an interlocker") +@click.argument('filepath', type=click.Path(exists=True), help="Absolute path to an BahnDSL (*.bahn) file") def upload_interlocker(filepath): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/upload/interlocker", - files = {'file': open(filepath, 'r')}) + files = {'file': open(filepath, 'r')}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Interlocker uploaded\n") + click.echo("Interlocker has been uploaded.") + elif (response.status_code == requests.codes.bad_request or + response.status_code == requests.codes.conflict): + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif response.status_code == requests.codes.internal_server_error: + click.echo("Internal error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid state!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -419,33 +508,23 @@ def upload_interlocker(filepath): @click.argument('interlocker-name') def delete_interlocker(interlocker_name): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/upload/remove-interlocker", - data = {'interlocker-name': interlocker_name}) - if (response.status_code == requests.codes.ok): - click.echo("Interlocker " + interlocker_name + " deleted\n") - else: - click.echo("Interlocker still in use, or system not running or invalid state!\n", - err=True) - except requests.exceptions.RequestException as e: - click.echo(e, err=True) - - -@click.command(help="Get a list of interlockers") -def get_interlocker_list(): - if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) - else: - global server - try: - response = requests.post(server + "/upload/refresh-interlockers") + data = {'interlocker-name': interlocker_name}) if (response.status_code == requests.codes.ok): - click.echo(response.text.replace(",", "\n")) + click.echo("Interlocker " + interlocker_name + " deleted.") + elif (response.status_code == requests.codes.bad_request or + response.status_code == requests.codes.not_found or + response.status_code == requests.codes.conflict): + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid state!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -460,10 +539,10 @@ def driver(): @click.command(help="Grab a train") @click.argument('train') @click.option('--engine', '-e', help="The train engine behaviour to use", - default="libtrain_engine_default (unremovable)") + default="libtrain_engine_default (unremovable)") def grab(train, engine): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global session_id, grab_id, server if (session_id == 0 and grab_id == -1): @@ -474,13 +553,18 @@ def grab(train, engine): ids = response.text.split(",") update_session_and_grab_id(int(ids[0]), int(ids[1])) click.echo("Grabbed train " + train + "\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or train not available!\n", - err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) else: - click.echo("You can only grab one train!") + click.echo("You already have a train grabbed! " + "Release it before grabbing a new train. " + "If your grab-id or session-id is not valid, i.e., if you do not actually " + "have control over a train, then please re-run the " + , err=True) return @@ -499,7 +583,7 @@ def process_id_feedback(feedback, success_message): def release(): global session_id, grab_id, server if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) elif (session_id == 0 and grab_id == -1): click.echo("No train grabbed!") else: @@ -509,8 +593,10 @@ def release(): if (response.status_code == requests.codes.ok): process_id_feedback(response.text, "Released grabbed train\n") update_session_and_grab_id(0, -1) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -521,7 +607,7 @@ def release(): def request_route(source, destination): global session_id, grab_id, server if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) elif (session_id == 0 and grab_id == -1): click.echo("No train grabbed!") else: @@ -532,11 +618,10 @@ def request_route(source, destination): if (response.status_code == requests.codes.ok): process_id_feedback(response.text, "Route " + response.text + " from " + source + " to " + destination + " has been granted\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("Route from " + source + " to " + destination + - " has not been granted,\n" + - "or system not running or invalid track output!\n", - err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -546,7 +631,7 @@ def request_route(source, destination): def request_route_id(route_id): global session_id, grab_id, server if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) elif (session_id == 0 and grab_id == -1): click.echo("No train grabbed!") else: @@ -556,10 +641,10 @@ def request_route_id(route_id): 'route-id': route_id}) if (response.status_code == requests.codes.ok): process_id_feedback(response.text, "Route " + route_id + " has been granted\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("Route " + route_id + " has not been granted,\n" + - "or system not running or invalid track output!\n", - err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -570,7 +655,7 @@ def request_route_id(route_id): def direction(train, route_id): global server if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: try: response = requests.post(server + "/driver/direction", @@ -578,8 +663,10 @@ def direction(train, route_id): 'route-id': route_id}) if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -590,7 +677,7 @@ def direction(train, route_id): def drive_route(mode, route_id): global session_id, grab_id, server if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) elif (session_id == 0 and grab_id == -1): click.echo("No train grabbed!") else: @@ -601,10 +688,10 @@ def drive_route(mode, route_id): if (response.status_code == requests.codes.ok): process_id_feedback(response.text, "Driving along route " + route_id + " completed\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("Could not drive along route " + route_id + ",\n" + - "or system not running or invalid track output!\n", - err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -618,7 +705,7 @@ def drive_route(mode, route_id): def set_dcc_speed(backwards, speed, track_output): global session_id, grab_id, server, default_track_output if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) elif (session_id == 0 and grab_id == -1): click.echo("No train grabbed!") else: @@ -633,8 +720,10 @@ def set_dcc_speed(backwards, speed, track_output): if (response.status_code == requests.codes.ok): process_id_feedback(response.text, "DCC train speed set to " + str(speed) + "\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid track output!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -648,7 +737,7 @@ def set_dcc_speed(backwards, speed, track_output): def set_calibrated_speed(backwards, speed, track_output): global session_id, grab_id, server, default_track_output if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) elif (session_id == 0 and grab_id == -1): click.echo("No train grabbed!") else: @@ -663,8 +752,10 @@ def set_calibrated_speed(backwards, speed, track_output): if (response.status_code == requests.codes.ok): process_id_feedback(response.text, "Calibrated train speed set " "to " + str(speed) + "\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid track output!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -675,7 +766,7 @@ def set_calibrated_speed(backwards, speed, track_output): def emergency_stop(track_output): global session_id, grab_id, server, default_track_output if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) elif (session_id == 0 and grab_id == -1): click.echo("No train grabbed!") else: @@ -687,8 +778,10 @@ def emergency_stop(track_output): 'track-output': track_output}) if (response.status_code == requests.codes.ok): process_id_feedback(response.text, "Train emergency stopped\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid track output!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -701,7 +794,7 @@ def emergency_stop(track_output): def set_train_peripheral(peripheral, state, track_output): global session_id, grab_id, server, default_track_output if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) elif (session_id == 0 and grab_id == -1): click.echo("No train grabbed!") else: @@ -719,9 +812,10 @@ def set_train_peripheral(peripheral, state, track_output): if (response.status_code == requests.codes.ok): process_id_feedback(response.text, "Train peripheral " + peripheral + " set to " + state + "\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running, invalid peripheral or invalid " - "track output!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -730,7 +824,7 @@ def set_train_peripheral(peripheral, state, track_output): @click.argument('filepath', type=click.Path(exists=True)) def upload_engine(filepath): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -738,9 +832,10 @@ def upload_engine(filepath): files = {'file': open(filepath, 'r')}) if (response.status_code == requests.codes.ok): process_id_feedback(response.text, "Train engine uploaded\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid state!\n", - err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -749,7 +844,7 @@ def upload_engine(filepath): @click.argument('engine-name') def delete_engine(engine_name): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -757,41 +852,41 @@ def delete_engine(engine_name): data = {'engine-name': engine_name}) if (response.status_code == requests.codes.ok): click.echo("Train engine " + engine_name + " deleted\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("Train engine still in use, or system not running or invalid state!\n", - err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) -@click.command(help="Get a list of train engines") -def get_engine_list(): +# --- monitor --- + +@click.group(help="Monitor functionality") +def monitor(): + pass + +@click.command(help="Get the name of the platform/railway that is being run") +def get_platform_name(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: - response = requests.post(server + "/upload/refresh-engines") + response = requests.get(server + "/monitor/platform-name") if (response.status_code == requests.codes.ok): - click.echo(response.text.replace(",", "\n")) + click.echo("Platform name: " + response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or invalid state!\n", - err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) - -# --- monitor --- - -@click.group(help="Monitor functionality") -def monitor(): - pass - - @click.command(help="Get a list of trains") def get_trains(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -801,8 +896,10 @@ def get_trains(): click.echo("No trains available") else: click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -811,7 +908,7 @@ def get_trains(): @click.argument('train') def get_train_state(train): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -819,8 +916,10 @@ def get_train_state(train): data = {'train': train}) if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or train unknown!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -829,7 +928,7 @@ def get_train_state(train): @click.argument('train') def get_train_peripherals(train): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -837,8 +936,45 @@ def get_train_peripherals(train): data = {'train': train}) if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) + else: + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get a list of train engines") +def get_engine_list(): + if (parse_config()): + click.echo("Corrupt config, please run the config command.", err=True) + else: + global server + try: + response = requests.post(server + "/upload/refresh-engines") + if (response.status_code == requests.codes.ok): + click.echo(response.text.replace(",", "\n")) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) + else: + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + +@click.command(help="Get a list of interlockers") +def get_interlocker_list(): + if (parse_config()): + click.echo("Corrupt config, please run the config command.", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/interlockers") + if (response.status_code == requests.codes.ok): + click.echo(response.text.replace(",", "\n")) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or train unknown!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -846,15 +982,17 @@ def get_train_peripherals(train): @click.command(help="Get a list of track outputs") def get_track_outputs(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/monitor/track-outputs") if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -862,15 +1000,17 @@ def get_track_outputs(): @click.command(help="Get a list of points") def get_points(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/monitor/points") if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -878,15 +1018,17 @@ def get_points(): @click.command(help="Get a list of signals") def get_signals(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/monitor/signals") if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -895,7 +1037,7 @@ def get_signals(): @click.argument('point') def get_point_aspects(point): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -903,8 +1045,10 @@ def get_point_aspects(point): data = {'point': point}) if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or point unknown!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -913,7 +1057,7 @@ def get_point_aspects(point): @click.argument('signal') def get_signal_aspects(signal): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -921,8 +1065,10 @@ def get_signal_aspects(signal): data = {'signal': signal}) if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or signal unknown!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -930,15 +1076,17 @@ def get_signal_aspects(signal): @click.command(help="Get a list of segments") def get_segments(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/monitor/segments") if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -946,15 +1094,17 @@ def get_segments(): @click.command(help="Get a list of reversers") def get_reversers(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/monitor/reversers") if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -962,60 +1112,68 @@ def get_reversers(): @click.command(help="Get a list of peripherals") def get_peripherals(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/monitor/peripherals") if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(help="Get whether plugins will be verified upon upload") def get_verification_option(): if(parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.get(server + "/monitor/verification-option") if (response.status_code == requests.codes.ok): click.echo(response.text + "\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(help="Get the url to the verification server") def get_verification_url(): if(parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.get(server + "/monitor/verification-url") if (response.status_code == requests.codes.ok): click.echo(response.text + "\n") + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(help="Get a list of granted routes") def get_granted_routes(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: response = requests.post(server + "/monitor/granted-routes") if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1024,7 +1182,7 @@ def get_granted_routes(): @click.argument('route-id') def get_route(route_id): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -1032,8 +1190,10 @@ def get_route(route_id): data = {'route-id': route_id}) if (response.status_code == requests.codes.ok): click.echo(response.text) + elif (response.status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) else: - click.echo("System not running or route unknown!\n", err=True) + click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1041,7 +1201,7 @@ def get_route(route_id): @click.command(help="Get debug information") def get_debug_info(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -1049,14 +1209,14 @@ def get_debug_info(): if (response.status_code == requests.codes.ok): click.echo(response.text) else: - click.echo("System not running!\n", err=True) + click.echo("System not running.", err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(help="Get extra debug information") def get_debug_info_extra(): if (parse_config()): - click.echo("Corrupt config, please run the config command", err=True) + click.echo("Corrupt config, please run the config command.", err=True) else: global server try: @@ -1064,7 +1224,7 @@ def get_debug_info_extra(): if (response.status_code == requests.codes.ok): click.echo(response.text) else: - click.echo("System not running!\n", err=True) + click.echo("System not running.", err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1072,6 +1232,7 @@ def get_debug_info_extra(): # --- assign commands to groups --- cli.add_command(config) +cli.add_command(reset_grab_and_session_id) cli.add_command(admin) cli.add_command(controller) cli.add_command(driver) @@ -1094,7 +1255,7 @@ controller.add_command(set_interlocker) controller.add_command(unset_interlocker) controller.add_command(upload_interlocker) controller.add_command(delete_interlocker) -controller.add_command(get_interlocker_list) + driver.add_command(grab) driver.add_command(release) @@ -1108,11 +1269,13 @@ driver.add_command(emergency_stop) driver.add_command(set_train_peripheral) driver.add_command(upload_engine) driver.add_command(delete_engine) -driver.add_command(get_engine_list) +monitor.add_command(get_platform_name) monitor.add_command(get_trains) monitor.add_command(get_train_state) monitor.add_command(get_train_peripherals) +monitor.add_command(get_engine_list) +monitor.add_command(get_interlocker_list) monitor.add_command(get_track_outputs) monitor.add_command(get_points) monitor.add_command(get_signals) diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index 8639dcc8..5b1379cf 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -130,9 +130,6 @@ }, "405": { "description": "Method not allowed" - }, - "503": { - "description": "SWTbahn not running" } }, "requestBody": { @@ -171,9 +168,6 @@ }, "405": { "description": "Method not allowed" - }, - "503": { - "description": "SWTbahn not running" } }, "requestBody": { From 45f2fa29d1f6d130d093c299b0cd0d4488942c5b Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 20 May 2025 11:39:44 +0200 Subject: [PATCH 080/125] python client for json api, done for all endpoints, reduced duplicate code --- client/swtbahn-json | 677 ++++++++++++++++++++++++-------------------- 1 file changed, 377 insertions(+), 300 deletions(-) mode change 100644 => 100755 client/swtbahn-json diff --git a/client/swtbahn-json b/client/swtbahn-json old mode 100644 new mode 100755 index 843b8a8c..ef779521 --- a/client/swtbahn-json +++ b/client/swtbahn-json @@ -44,8 +44,6 @@ session_id = 0 grab_id = 0 server = "" - - # ----------------------- # --- config handling --- # ----------------------- @@ -104,7 +102,22 @@ def parse_config(): except Exception as e: return True +# ----------------------- +# --- logging helpers --- +# ----------------------- + +def log_common_feedback_err_msg(response_text:str, internal_err=False): + response_json: dict = json.loads(response_text) + if (internal_err): + click.echo("Internal error, server msg: " + response_json.get("msg", ""), err=True) + else: + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) +def log_not_running_or_unknown_err(status_code:int): + if (status_code == requests.codes.service_unavailable): + click.echo("System is not running.", err=True) + else: + click.echo(f"Unknown error, reply status code: {status_code}", err=True) # ------------------------------ # --- command line interface --- @@ -119,13 +132,14 @@ def cli(): pass -@click.command(help="Configure hostname and port") +@click.command(help="Configure hostname, port, and track output") @click.argument('hostname', required=True) @click.argument('port', type=click.IntRange(0, 65535), required=True) @click.argument('default_track_output', default="master") def config(hostname, port, default_track_output): create_config(hostname, port, default_track_output) + @click.command(help="Reset your train ownership (grab and session id). " "Do NOT do this if you still have proper control over the train!") def reset_grab_and_session_id(): @@ -135,7 +149,7 @@ def reset_grab_and_session_id(): requests.post(server + "/driver/release-train", data = {'session-id': session_id, 'grab-id': grab_id}) # Reset the session_id and grab_id - create_config(hostname, port, default_track_output, False) + update_session_and_grab_id(0, -1) except Exception as e: click.echo("reset_grab_and_session_id failed. Error: " + e, err=True) @@ -157,14 +171,14 @@ def startup(): response = requests.post(server + "/admin/startup") if (response.status_code == requests.codes.ok): click.echo("System has started up.") - elif response.status_code == requests.codes.conflict: + elif (response.status_code == requests.codes.conflict): click.echo("System already running!") - elif response.status_code == requests.codes.internal_server_error: + elif (response.status_code == requests.codes.internal_server_error): response_json: dict = json.loads(response.text) click.echo("Startup failed due to internal error: " + response_json.get("msg", ""), err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + click.echo(f"Unknown error, reply status code: {response.status_code}", err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -180,10 +194,8 @@ def shutdown(): if (response.status_code == requests.codes.ok): click.echo("System has been stopped.") update_session_and_grab_id(0, -1) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -205,14 +217,11 @@ def set_track_output(state): response = requests.post(server + "/admin/set-track-output", data = {'state': mapping.get(state)}) if (response.status_code == requests.codes.ok): - click.echo("Track output state set to " + state) - elif response.status_code == requests.codes.bad_request: - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"Track output state set to {state}.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -227,14 +236,11 @@ def set_verification_option(verification_option): response = requests.post(server + "/admin/set-verification-option", data = {'verification-option': verification_option}) if (response.status_code == requests.codes.ok): - click.echo("Verification option set to " + verification_option) - elif response.status_code == requests.codes.bad_request: - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"Verification option set to {verification_option}.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -249,12 +255,11 @@ def set_verification_url(verification_url): response = requests.post(server + "/admin/set-verification-url", data = {'verification-url': verification_url}) if (response.status_code == requests.codes.ok): - click.echo("Verification url set to " + verification_url) - elif response.status_code == requests.codes.bad_request: - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + click.echo(f"Verification url set to {verification_url}.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + click.echo(f"Unknown error, reply status code: {response.status_code}", err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -268,14 +273,11 @@ def admin_release(train): try: response = requests.post(server + "/admin/release-train", data = {'train': train}) if (response.status_code == requests.codes.ok): - click.echo("Released grabbed train " + train) - elif response.status_code == requests.codes.bad_request: - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"Released grabbed train {train}.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -296,16 +298,14 @@ def admin_set_dcc_speed(train, backwards, speed, track_output): track_output = default_track_output try: response = requests.post(server + "/admin/set-dcc-train-speed", - data = {'train': train, 'speed': speed, 'track-output': default_track_output}) + data = {'train': train, 'speed': speed, + 'track-output': default_track_output}) if (response.status_code == requests.codes.ok): - click.echo("DCC speed of " + train + " set to " + str(speed)) - elif response.status_code == requests.codes.bad_request: - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"DCC speed of {train} set to {speed}.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -327,14 +327,11 @@ def release_route(route_id): response = requests.post(server + "/controller/release-route", data = {'route-id': route_id}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Route " + str(route_id) + " released.") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) - elif response.status_code == requests.codes.bad_request: - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + click.echo(f"Route {route_id} released.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -351,14 +348,11 @@ def set_point(point, state): response = requests.post(server + "/controller/set-point", data = {'point': point, 'state': state}) if (response.status_code == requests.codes.ok): - click.echo("Point " + point + " set to " + state) - elif response.status_code == requests.codes.bad_request: - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"Point {point} set to {state}.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -375,14 +369,11 @@ def set_signal(signal, state): response = requests.post(server + "/controller/set-signal", data = {'signal': signal, 'state': state}) if (response.status_code == requests.codes.ok): - click.echo("Signal " + signal + " set to " + state) - elif response.status_code == requests.codes.bad_request: - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"Signal {signal} set to {state}.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -399,14 +390,11 @@ def set_peripheral(peripheral, state): response = requests.post(server + "/controller/set-peripheral", data = {'peripheral': peripheral, 'state': state}) if (response.status_code == requests.codes.ok): - click.echo("Peripheral " + peripheral + " set to " + state) - elif response.status_code == requests.codes.bad_request: - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"Peripheral {peripheral} set to {state}.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -422,10 +410,10 @@ def get_interlocker(): if (response.status_code == requests.codes.ok): response_json: dict = json.loads(response.text) click.echo("Interlocker in use: " + response_json.get("interlocker", None)) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + elif (response.status_code == requests.codes.not_found): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -441,15 +429,12 @@ def set_interlocker(interlocker): response = requests.post(server + "/controller/set-interlocker", data = {'interlocker': interlocker}) if (response.status_code == requests.codes.ok): - click.echo("Interlocker set to " + interlocker) + click.echo(f"Interlocker set to {interlocker}.") elif (response.status_code == requests.codes.bad_request or response.status_code == requests.codes.conflict): - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -465,21 +450,18 @@ def unset_interlocker(interlocker): response = requests.post(server + "/controller/unset-interlocker", data = {'interlocker': interlocker}) if (response.status_code == requests.codes.ok): - click.echo("Interlocker " + interlocker + " has been unset.") + click.echo(f"Interlocker {interlocker} has been unset.") elif (response.status_code == requests.codes.bad_request or response.status_code == requests.codes.conflict): - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(help="Upload an interlocker") -@click.argument('filepath', type=click.Path(exists=True), help="Absolute path to an BahnDSL (*.bahn) file") +@click.argument('filepath', type=click.Path(exists=True)) def upload_interlocker(filepath): if (parse_config()): click.echo("Corrupt config, please run the config command.", err=True) @@ -492,14 +474,11 @@ def upload_interlocker(filepath): click.echo("Interlocker has been uploaded.") elif (response.status_code == requests.codes.bad_request or response.status_code == requests.codes.conflict): - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif response.status_code == requests.codes.internal_server_error: - click.echo("Internal error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.internal_server_error): + log_common_feedback_err_msg(response.text, internal_err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -515,16 +494,13 @@ def delete_interlocker(interlocker_name): response = requests.post(server + "/upload/remove-interlocker", data = {'interlocker-name': interlocker_name}) if (response.status_code == requests.codes.ok): - click.echo("Interlocker " + interlocker_name + " deleted.") + click.echo(f"Interlocker {interlocker_name} deleted.") elif (response.status_code == requests.codes.bad_request or response.status_code == requests.codes.not_found or response.status_code == requests.codes.conflict): - response_json: dict = json.loads(response.text) - click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -550,33 +526,28 @@ def grab(train, engine): response = requests.post(server + "/driver/grab-train", data = {'train': train, 'engine': engine}) if (response.status_code == requests.codes.ok): - ids = response.text.split(",") - update_session_and_grab_id(int(ids[0]), int(ids[1])) - click.echo("Grabbed train " + train + "\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + update_session_and_grab_id(response_json["session-id"], response_json["grab-id"]) + click.echo("Grabbed train " + train) + click.echo(f" Debug information: session-id ({response_json["session-id"]})") + click.echo(f" Debug information: grab-id ({response_json["grab-id"]})") + elif (response.status_code == requests.codes.bad_request or + response.status_code == requests.codes.not_found or + response.status_code == requests.codes.conflict): + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.internal_server_error): + log_common_feedback_err_msg(response.text, internal_err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) else: click.echo("You already have a train grabbed! " - "Release it before grabbing a new train. " + "Release it before grabbing a new train.\n" "If your grab-id or session-id is not valid, i.e., if you do not actually " - "have control over a train, then please re-run the " - , err=True) - return - - -def process_id_feedback(feedback, success_message): - if (feedback == "invalid session id"): - update_session_and_grab_id(0, -1) - click.echo("Session id has become invalid\n", err=True) - elif (feedback == "invalid grab id"): - update_session_and_grab_id(0, -1) - click.echo("Grab id was invalid\n", err=True) - else: - click.echo(success_message) + "have control over a train, then please re-run the " + "reset_grab_and_session_id command.", + err=True) @click.command(help="Release your train") @@ -589,14 +560,15 @@ def release(): else: try: response = requests.post(server + "/driver/release-train", - data = {'session-id': session_id, 'grab-id': grab_id}) + data = {'session-id': session_id, 'grab-id': grab_id}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Released grabbed train\n") + click.echo("Released grabbed train.") update_session_and_grab_id(0, -1) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + elif (response.status_code == requests.codes.bad_request or + response.status_code == requests.codes.conflict): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -613,20 +585,22 @@ def request_route(source, destination): else: try: response = requests.post(server + "/driver/request-route", - data = {'session-id': session_id, 'grab-id': grab_id, - 'source': source, 'destination': destination}) + data = {'session-id': session_id, 'grab-id': grab_id, + 'source': source, 'destination': destination}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Route " + response.text + - " from " + source + " to " + destination + " has been granted\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + route_id = response_json["granted-route-id"] + click.echo(f"Route {route_id} from {source} to {destination} has been granted.") + elif (response.status_code == requests.codes.bad_request or + response.status_code == requests.codes.conflict): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) -@click.command(help="Request a specific route ID for your train ") +@click.command(help="Request a specific route by its ID for your train") @click.argument('route-id') def request_route_id(route_id): global session_id, grab_id, server @@ -636,15 +610,18 @@ def request_route_id(route_id): click.echo("No train grabbed!") else: try: - response = requests.post(server + "/driver/request-route-id", - data = {'session-id': session_id, 'grab-id': grab_id, - 'route-id': route_id}) + response = requests.post(server + "/driver/request-route-by-id", + data = {'session-id': session_id, 'grab-id': grab_id, + 'route-id': route_id}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Route " + route_id + " has been granted\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"Route {route_id} has been granted.") + elif (response.status_code == requests.codes.bad_request or + response.status_code == requests.codes.conflict): + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.internal_server_error): + log_common_feedback_err_msg(response.text, internal_err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -659,20 +636,22 @@ def direction(train, route_id): else: try: response = requests.post(server + "/driver/direction", - data = {'session-id': session_id, 'train': train, - 'route-id': route_id}) + data = {'session-id': session_id, 'train': train, + 'route-id': route_id}) if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(f"Direction: {response_json["direction"]}.") + elif (response.status_code == requests.codes.bad_request or + response.status_code == requests.codes.not_found): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(help="Drive along a granted route in automatic or manual mode") -@click.argument('mode') +@click.argument('mode', type=click.Choice(['manual', 'automatic'])) @click.argument('route-id') def drive_route(mode, route_id): global session_id, grab_id, server @@ -680,27 +659,28 @@ def drive_route(mode, route_id): click.echo("Corrupt config, please run the config command.", err=True) elif (session_id == 0 and grab_id == -1): click.echo("No train grabbed!") + elif ((not mode == "manual") and (not mode == "automatic")): + click.echo("Incorrect mode! Mode shall be either manual or automatic.") else: try: response = requests.post(server + "/driver/drive-route", - data = {'session-id': session_id, 'grab-id': grab_id, - 'mode': mode, 'route-id': route_id}) + data = {'session-id': session_id, 'grab-id': grab_id, + 'mode': mode, 'route-id': route_id}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Driving along route " + route_id + - " completed\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(f"Driving route {route_id} completed, server msg: {response_json.get("msg", "")}") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(help="Set the dcc speed step of your train") -@click.option('--backwards', '-b', help="The rear end of the train moves forward", - is_flag=True) -@click.option('--track_output', '-t', help="Use another track output than the " - "default one", default="") +@click.option('--backwards', '-b', help="The rear end of the train moves forward", is_flag=True) +@click.option('--track_output', '-t', help="Use another track output than the default one", + default="") @click.argument('speed', type=click.IntRange(0, 126)) def set_dcc_speed(backwards, speed, track_output): global session_id, grab_id, server, default_track_output @@ -715,24 +695,22 @@ def set_dcc_speed(backwards, speed, track_output): track_output = default_track_output try: response = requests.post(server + "/driver/set-dcc-train-speed", - data = {'session-id': session_id, 'grab-id': grab_id, - 'speed': speed, 'track-output': track_output}) + data = {'session-id': session_id, 'grab-id': grab_id, + 'speed': speed, 'track-output': track_output}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "DCC train speed set to " + - str(speed) + "\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"DCC train speed set to {speed} on track-output {track_output}.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(help="Set the calibrated speed step of your train") -@click.option('--backwards', '-b', help="The rear end of the train moves forward", - is_flag=True) -@click.option('--track_output', '-t', help="Use another track output than the " - "default one", default="") +@click.option('--backwards', '-b', help="The rear end of the train moves forward", is_flag=True) +@click.option('--track_output', '-t', help="Use another track output than the default one", + default="") @click.argument('speed', type=click.IntRange(0, 9)) def set_calibrated_speed(backwards, speed, track_output): global session_id, grab_id, server, default_track_output @@ -747,22 +725,21 @@ def set_calibrated_speed(backwards, speed, track_output): track_output = default_track_output try: response = requests.post(server + "/driver/set-calibrated-train-speed", - data = {'session-id': session_id, 'grab-id': grab_id, - 'speed': speed, 'track-output': track_output}) + data = {'session-id': session_id, 'grab-id': grab_id, + 'speed': speed, 'track-output': track_output}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Calibrated train speed set " - "to " + str(speed) + "\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"Calibrated train speed set to {speed} on track-output {track_output}.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(help="Emergency stop your train") -@click.option('--track_output', '-t', help="Use another track output than the " - "default one", default="") +@click.option('--track_output', '-t', help="Use another track output than the default one", + default="") def emergency_stop(track_output): global session_id, grab_id, server, default_track_output if (parse_config()): @@ -774,21 +751,21 @@ def emergency_stop(track_output): track_output = default_track_output try: response = requests.post(server + "/driver/set-train-emergency-stop", - data = {'session-id': session_id, 'grab-id': grab_id, - 'track-output': track_output}) + data = {'session-id': session_id, 'grab-id': grab_id, + 'track-output': track_output}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Train emergency stopped\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo("Train emergency stopped.") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @click.command(help="Set a peripheral of your train") -@click.option('--track_output', '-t', help="Use another track output than the " - "default one", default="") +@click.option('--track_output', '-t', help="Use another track output than the default one", + default="") @click.argument('peripheral') @click.argument('state', type=click.Choice(['off', 'on'])) def set_train_peripheral(peripheral, state, track_output): @@ -806,21 +783,20 @@ def set_train_peripheral(peripheral, state, track_output): 'on': 1, } response = requests.post(server + "/driver/set-train-peripheral", - data = {'session-id': session_id, 'grab-id': grab_id, - 'peripheral': peripheral, 'state': mapping.get(state), - 'track-output': track_output}) + data = {'session-id': session_id, 'grab-id': grab_id, + 'peripheral': peripheral, 'state': mapping.get(state), + 'track-output': track_output}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Train peripheral " - + peripheral + " set to " + state + "\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"Train peripheral {peripheral} set to {state}") + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) -@click.command(help="Upload a train engine. Absolute path to an SCCharts (*.sctx) file") +@click.command(help="Upload a train engine") @click.argument('filepath', type=click.Path(exists=True)) def upload_engine(filepath): if (parse_config()): @@ -829,13 +805,24 @@ def upload_engine(filepath): global server try: response = requests.post(server + "/upload/engine", - files = {'file': open(filepath, 'r')}) + files = {'file': open(filepath, 'r')}) if (response.status_code == requests.codes.ok): - process_id_feedback(response.text, "Train engine uploaded\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo("Train engine uploaded.") + elif (response.status_code == requests.codes.bad_request): + response_json: dict = json.loads(response.text) + click.echo("Error, server msg: " + response_json.get("msg", ""), err=True) + # If the verification failed, the feedback can be quite long. + if (response_json.get("status", True) == False): + # easiest for now to directly print the whole verifiedproperties object + click.echo("Verification of at least one property failed. " + "Now printing info on all properties:") + click.echo(json.dumps(response_json["verifiedproperties"], indent=4, default=str)) + elif (response.status_code == requests.codes.conflict): + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.internal_server_error): + log_common_feedback_err_msg(response.text, internal_err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -849,13 +836,15 @@ def delete_engine(engine_name): global server try: response = requests.post(server + "/upload/remove-engine", - data = {'engine-name': engine_name}) + data = {'engine-name': engine_name}) if (response.status_code == requests.codes.ok): - click.echo("Train engine " + engine_name + " deleted\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + click.echo(f"Train engine {engine_name} deleted.") + elif (response.status_code == requests.codes.bad_request or + response.status_code == requests.codes.not_found or + response.status_code == requests.codes.conflict): + log_common_feedback_err_msg(response.text) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -875,14 +864,14 @@ def get_platform_name(): try: response = requests.get(server + "/monitor/platform-name") if (response.status_code == requests.codes.ok): - click.echo("Platform name: " + response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(f"Platform name: {response_json["platform-name"]}") else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) + @click.command(help="Get a list of trains") def get_trains(): if (parse_config()): @@ -890,16 +879,15 @@ def get_trains(): else: global server try: - response = requests.post(server + "/monitor/trains") + response = requests.get(server + "/monitor/trains") if (response.status_code == requests.codes.ok): if (response.text == ""): - click.echo("No trains available") + click.echo("No trains available.") else: - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -913,13 +901,37 @@ def get_train_state(train): global server try: response = requests.post(server + "/monitor/train-state", - data = {'train': train}) + data = {'train': train}) if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.not_found): + click.echo(f"Error, train {train} was not found.", err=True) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get the state of all trains") +def get_trains_states(): + if (parse_config()): + click.echo("Corrupt config, please run the config command.", err=True) + else: + global server + try: + response = requests.get(server + "/monitor/train-states") + if (response.status_code == requests.codes.ok): + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) + else: + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -933,13 +945,16 @@ def get_train_peripherals(train): global server try: response = requests.post(server + "/monitor/train-peripherals", - data = {'train': train}) + data = {'train': train}) if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -951,13 +966,14 @@ def get_engine_list(): else: global server try: - response = requests.post(server + "/upload/refresh-engines") + response = requests.get(server + "/monitor/engines") if (response.status_code == requests.codes.ok): - click.echo(response.text.replace(",", "\n")) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -968,31 +984,33 @@ def get_interlocker_list(): else: global server try: - response = requests.post(server + "/monitor/interlockers") + response = requests.get(server + "/monitor/interlockers") if (response.status_code == requests.codes.ok): - click.echo(response.text.replace(",", "\n")) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) -@click.command(help="Get a list of track outputs") +@click.command(help="Get a list of track outputs with their state") def get_track_outputs(): if (parse_config()): click.echo("Corrupt config, please run the config command.", err=True) else: global server try: - response = requests.post(server + "/monitor/track-outputs") + response = requests.get(server + "/monitor/track-outputs") if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1004,13 +1022,14 @@ def get_points(): else: global server try: - response = requests.post(server + "/monitor/points") + response = requests.get(server + "/monitor/points") if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1022,13 +1041,58 @@ def get_signals(): else: global server try: - response = requests.post(server + "/monitor/signals") + response = requests.get(server + "/monitor/signals") if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) + else: + log_not_running_or_unknown_err(response.status_code) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get detailed information on a point") +@click.argument('point') +def get_point_details(point): + if (parse_config()): + click.echo("Corrupt config, please run the config command.", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/point-details", data = {'point': point}) + if (response.status_code == requests.codes.ok): + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) + else: + log_not_running_or_unknown_err(response.status_code) + except requests.exceptions.RequestException as e: + click.echo(e, err=True) + + +@click.command(help="Get detailed information on a signal") +@click.argument('signal') +def get_signal_details(signal): + if (parse_config()): + click.echo("Corrupt config, please run the config command.", err=True) + else: + global server + try: + response = requests.post(server + "/monitor/signal-details", data = {'signal': signal}) + if (response.status_code == requests.codes.ok): + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1041,14 +1105,16 @@ def get_point_aspects(point): else: global server try: - response = requests.post(server + "/monitor/point-aspects", - data = {'point': point}) + response = requests.post(server + "/monitor/point-aspects", data = {'point': point}) if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1061,14 +1127,16 @@ def get_signal_aspects(signal): else: global server try: - response = requests.post(server + "/monitor/signal-aspects", - data = {'signal': signal}) + response = requests.post(server + "/monitor/signal-aspects", data = {'signal': signal}) if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1080,13 +1148,14 @@ def get_segments(): else: global server try: - response = requests.post(server + "/monitor/segments") + response = requests.get(server + "/monitor/segments") if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1098,13 +1167,15 @@ def get_reversers(): else: global server try: - response = requests.post(server + "/monitor/reversers") + response = requests.get(server + "/monitor/reversers") if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message " + "or unable to get reverser state update.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1116,17 +1187,18 @@ def get_peripherals(): else: global server try: - response = requests.post(server + "/monitor/peripherals") + response = requests.get(server + "/monitor/peripherals") if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) -@click.command(help="Get whether plugins will be verified upon upload") +@click.command(help="Get whether train engines will be verified upon upload") def get_verification_option(): if(parse_config()): click.echo("Corrupt config, please run the config command.", err=True) @@ -1135,11 +1207,10 @@ def get_verification_option(): try: response = requests.get(server + "/monitor/verification-option") if (response.status_code == requests.codes.ok): - click.echo(response.text + "\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + click.echo(f"Unknown error, reply status code: {response.status_code}", err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1152,11 +1223,10 @@ def get_verification_url(): try: response = requests.get(server + "/monitor/verification-url") if (response.status_code == requests.codes.ok): - click.echo(response.text + "\n") - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + click.echo(f"Unknown error, reply status code: {response.status_code}", err=True) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1167,13 +1237,14 @@ def get_granted_routes(): else: global server try: - response = requests.post(server + "/monitor/granted-routes") + response = requests.get(server + "/monitor/granted-routes") if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1186,14 +1257,18 @@ def get_route(route_id): else: global server try: - response = requests.post(server + "/monitor/route", - data = {'route-id': route_id}) + response = requests.post(server + "/monitor/route", data = {'route-id': route_id}) if (response.status_code == requests.codes.ok): - click.echo(response.text) - elif (response.status_code == requests.codes.service_unavailable): - click.echo("System is not running.", err=True) + response_json: dict = json.loads(response.text) + click.echo(json.dumps(response_json, indent=4, default=str)) + elif (response.status_code == requests.codes.bad_request): + log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.not_found): + click.echo(f"Route with ID {route_id} was not found.", err=True) + elif (response.status_code == requests.codes.internal_server_error): + click.echo("Internal error, server was unable to build a reply message.", err=True) else: - click.echo("Unknown error, reply status code: " + str(response.status_code), err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1273,12 +1348,14 @@ driver.add_command(delete_engine) monitor.add_command(get_platform_name) monitor.add_command(get_trains) monitor.add_command(get_train_state) +monitor.add_command(get_trains_states) monitor.add_command(get_train_peripherals) monitor.add_command(get_engine_list) monitor.add_command(get_interlocker_list) monitor.add_command(get_track_outputs) monitor.add_command(get_points) monitor.add_command(get_signals) +monitor.add_command(get_point_details) monitor.add_command(get_point_aspects) monitor.add_command(get_signal_aspects) monitor.add_command(get_segments) From f8beddc921141e2f0eb3049b8eb2f28c5b8c534b Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 20 May 2025 11:52:52 +0200 Subject: [PATCH 081/125] small json client fixes --- client/swtbahn-json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/client/swtbahn-json b/client/swtbahn-json index ef779521..0b67cbdf 100755 --- a/client/swtbahn-json +++ b/client/swtbahn-json @@ -174,9 +174,7 @@ def startup(): elif (response.status_code == requests.codes.conflict): click.echo("System already running!") elif (response.status_code == requests.codes.internal_server_error): - response_json: dict = json.loads(response.text) - click.echo("Startup failed due to internal error: " + response_json.get("msg", ""), - err=True) + log_common_feedback_err_msg(response.text, internal_err=True) else: click.echo(f"Unknown error, reply status code: {response.status_code}", err=True) except requests.exceptions.RequestException as e: @@ -225,6 +223,7 @@ def set_track_output(state): except requests.exceptions.RequestException as e: click.echo(e, err=True) + @click.command(help="Set whether plugins will be verified upon upload") @click.argument('verification-option', type=click.Choice(['true', 'false'])) def set_verification_option(verification_option): @@ -244,6 +243,7 @@ def set_verification_option(verification_option): except requests.exceptions.RequestException as e: click.echo(e, err=True) + @click.command(help="Set the url of the verification server to use for verification on upload") @click.argument('verification-url', type=click.STRING) def set_verification_url(verification_url): @@ -263,6 +263,7 @@ def set_verification_url(verification_url): except requests.exceptions.RequestException as e: click.echo(e, err=True) + @click.command(name="release", help="Release a train") @click.argument('train') def admin_release(train): @@ -977,6 +978,7 @@ def get_engine_list(): except requests.exceptions.RequestException as e: click.echo(e, err=True) + @click.command(help="Get a list of interlockers") def get_interlocker_list(): if (parse_config()): @@ -1198,6 +1200,7 @@ def get_peripherals(): except requests.exceptions.RequestException as e: click.echo(e, err=True) + @click.command(help="Get whether train engines will be verified upon upload") def get_verification_option(): if(parse_config()): @@ -1214,6 +1217,7 @@ def get_verification_option(): except requests.exceptions.RequestException as e: click.echo(e, err=True) + @click.command(help="Get the url to the verification server") def get_verification_url(): if(parse_config()): @@ -1230,6 +1234,7 @@ def get_verification_url(): except requests.exceptions.RequestException as e: click.echo(e, err=True) + @click.command(help="Get a list of granted routes") def get_granted_routes(): if (parse_config()): @@ -1288,6 +1293,7 @@ def get_debug_info(): except requests.exceptions.RequestException as e: click.echo(e, err=True) + @click.command(help="Get extra debug information") def get_debug_info_extra(): if (parse_config()): @@ -1356,6 +1362,7 @@ monitor.add_command(get_track_outputs) monitor.add_command(get_points) monitor.add_command(get_signals) monitor.add_command(get_point_details) +monitor.add_command(get_signal_details) monitor.add_command(get_point_aspects) monitor.add_command(get_signal_aspects) monitor.add_command(get_segments) From 54f8a0224022e43076046e6d76542dc19479cd2f Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Wed, 21 May 2025 10:35:37 +0200 Subject: [PATCH 082/125] client fixes from testing --- client/swtbahn-json | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/client/swtbahn-json b/client/swtbahn-json index 0b67cbdf..cfcfa1e8 100755 --- a/client/swtbahn-json +++ b/client/swtbahn-json @@ -143,15 +143,18 @@ def config(hostname, port, default_track_output): @click.command(help="Reset your train ownership (grab and session id). " "Do NOT do this if you still have proper control over the train!") def reset_grab_and_session_id(): - global server, session_id, grab_id, hostname, port, default_track_output - try: - # to be safe, try to release the train with the current grab id before resetting it - requests.post(server + "/driver/release-train", - data = {'session-id': session_id, 'grab-id': grab_id}) - # Reset the session_id and grab_id - update_session_and_grab_id(0, -1) - except Exception as e: - click.echo("reset_grab_and_session_id failed. Error: " + e, err=True) + if (parse_config()): + click.echo("Corrupt config, please run the config command.", err=True) + else: + global server, session_id, grab_id + try: + # to be safe, try to release the train with the current grab id before resetting it + requests.post(server + "/driver/release-train", + data = {'session-id': session_id, 'grab-id': grab_id}) + # Reset the session_id and grab_id + update_session_and_grab_id(0, -1) + except Exception as e: + click.echo(f"reset_grab_and_session_id failed. Error: {e}", err=True) # --- admin --- @@ -1113,6 +1116,8 @@ def get_point_aspects(point): click.echo(json.dumps(response_json, indent=4, default=str)) elif (response.status_code == requests.codes.bad_request): log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.not_found): + click.echo(f"Error, point {point} was not found.") elif (response.status_code == requests.codes.internal_server_error): click.echo("Internal error, server was unable to build a reply message.", err=True) else: @@ -1135,6 +1140,8 @@ def get_signal_aspects(signal): click.echo(json.dumps(response_json, indent=4, default=str)) elif (response.status_code == requests.codes.bad_request): log_common_feedback_err_msg(response.text) + elif (response.status_code == requests.codes.not_found): + click.echo(f"Error, signal {signal} was not found.") elif (response.status_code == requests.codes.internal_server_error): click.echo("Internal error, server was unable to build a reply message.", err=True) else: @@ -1285,11 +1292,11 @@ def get_debug_info(): else: global server try: - response = requests.post(server + "/monitor/debug") + response = requests.get(server + "/monitor/debug") if (response.status_code == requests.codes.ok): click.echo(response.text) else: - click.echo("System not running.", err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) @@ -1301,11 +1308,11 @@ def get_debug_info_extra(): else: global server try: - response = requests.post(server + "/monitor/debug_extra") + response = requests.get(server + "/monitor/debug-extra") if (response.status_code == requests.codes.ok): click.echo(response.text) else: - click.echo("System not running.", err=True) + log_not_running_or_unknown_err(response.status_code) except requests.exceptions.RequestException as e: click.echo(e, err=True) From 5210166dd3fe9dfd66720e51d139a8ab6e0960b0 Mon Sep 17 00:00:00 2001 From: Jochen Mehlich Date: Fri, 13 Jun 2025 12:00:00 +0200 Subject: [PATCH 083/125] jsonify api script_game --- server/src/assets/game/script-game.js | 155 +++++++++++++++++--------- 1 file changed, 102 insertions(+), 53 deletions(-) diff --git a/server/src/assets/game/script-game.js b/server/src/assets/game/script-game.js index a48508d1..d5c58415 100644 --- a/server/src/assets/game/script-game.js +++ b/server/src/assets/game/script-game.js @@ -20,31 +20,27 @@ var signalFlagMap = null; // Global access variable for signal flag mapping // If the server does reply with the platform name, tries to load the destinations and the flags // mapped for the respective platform. If this fails, does not perform a retry. function tryLoadDestinationsAndFlagMap() { - // Try to get the platform name from the server, retry every 2 seconds on failure. let retryDelay = 2000; - fetch(serverAddress + '/monitor/platform-name',) + fetch(serverAddress + '/monitor/platform-name') .then(response => { if (response.status !== 200) { console.log("Getting platform name failed: Retrying in %d ms", retryDelay); setTimeout(() => tryLoadDestinationsAndFlagMap(), retryDelay); } else { - // response.text() gives a promise, not immediately a string, therefore pass - // it to the next then block via return. - return response.text(); + return response.json(); } }) - .then(responseText => { - // Check if the previous then block actually returned something (i.e., if server - // responded with a reply with code 200) - if (responseText !== undefined) { - console.log("Platform name received from server:", responseText); - platform = responseText.toLowerCase(); - // Set the possible destinations and signal flag map for the SWTbahn platform. + .then(data => { + if (data !== undefined && data["platform-name"]) { + console.log("Platform name received from server:", data["platform-name"]); + platform = data["platform-name"].toLowerCase(); allPossibleDestinations = eval("allPossibleDestinations_" + platform); signalFlagMap = eval("signalFlagMap_" + platform); } }) - .catch(error => console.error("tryLoadDestinationsAndFlagMap (get platform name) err:", error)); + .catch(error => { + console.error("tryLoadDestinationsAndFlagMap (get platform name) err:", error); + }); } // Returns the destinations possible from a given block @@ -141,31 +137,41 @@ function updateDestinationAvailabilityPromise(routeId, available, unavailable) { data: { 'route-id': routeId, }, - dataType: 'text', - success: (responseData, textStatus, jqXHR) => { - const isNotConflicting = responseData.includes("granted conflicting route ids: none"); - const isRouteClear = responseData.includes("route clear: yes"); - const isNotGranted = responseData.includes("granted train: none"); + dataType: 'json', + success: (data, textStatus, jqXHR) => { + // Fehlerobjekt erkannt + if ('msg' in data) { + console.warn("Route API returned message:", data.msg); + unavailable(); + return; + } + + const noConflicts = Array.isArray(data.granted_conflicting_route_ids) && + data.granted_conflicting_route_ids.length === 0; + const isClear = data.clear === true; + const isNotGranted = data.granted_to_train === ""; + + const isAvailable = noConflicts && isClear && isNotGranted; - const isAvailable = isNotConflicting && isRouteClear && isNotGranted; if (isAvailable) { available(); } else { unavailable(); } }, - error: (responseData, textStatus, errorThrown) => { - setResponseDanger('#serverResponse', + error: (xhr, textStatus, errorThrown) => { + setResponseDanger( + '#serverResponse', '😢 There was a problem checking the destinations', '😢 Es ist ein Problem beim Überprüfen der Ziele aufgetreten', 'Sorry' ); } }); - } + /************************************************** * Train speed UI elements */ @@ -410,10 +416,19 @@ class Driver { data: { 'train': this.trainId }, - dataType: 'text', - success: (responseData, textStatus, jqXHR) => { - const regexMatch = /on block: (.*?) /g.exec(responseData); - this.currentBlock = regexMatch[1]; + dataType: 'json', + success: (data, textStatus, jqXHR) => { + if ('msg' in data) { + setResponseDanger('#serverResponse', + '😢 Could not find your train', + '😢 Dein Zug konnte nicht gefunden werden', + '' + ); + return; + } + if (data.on_track && Array.isArray(data.occupied_blocks) && data.occupied_blocks.length > 0) { + this.currentBlock = data.occupied_blocks[0]; + } }, error: (responseData, textStatus, errorThrown) => { setResponseDanger('#serverResponse', @@ -432,16 +447,19 @@ class Driver { url: serverAddress + '/monitor/train-state', crossDomain: true, data: { 'train': trainId }, - dataType: 'text', - success: (responseData, textStatus, jqXHR) => { - if (responseData.includes("grabbed: no") && !responseData.includes("on segment: no")) { + dataType: 'json', + success: (data, textStatus, jqXHR) => { + if ('msg' in data) { + error(); + return; + } + if (data.grabbed === false && data.on_track === true) { success(); } else { error(); } }, error: (responseData, textStatus, errorThrown) => { - // Do nothing } }); } @@ -509,11 +527,19 @@ class Driver { 'train': this.trainId, 'engine': this.trainEngine }, - dataType: 'text', - success: (responseData, textStatus, jqXHR) => { - const responseDataSplit = responseData.split(','); - this.sessionId = responseDataSplit[0]; - this.grabId = responseDataSplit[1]; + dataType: 'json', + success: (data, textStatus, jqXHR) => { + if ('msg' in data) { + setResponseDanger('#serverResponse', + '😢 There was a problem starting your train', + '😢 Es ist ein Problem beim starten deines Zuges aufgetreten', + '' + ); + return; + } + + this.sessionId = data['session-id']; + this.grabId = data['grab-id']; setResponseSuccess('#serverResponse', '😁 Your train is ready', '😁 Dein Zug ist bereit', ''); }, @@ -527,6 +553,7 @@ class Driver { }); } + // Server request for the train's physical driving direction of its granted route updateDrivingDirectionPromise() { return $.ajax({ @@ -537,9 +564,14 @@ class Driver { 'train': this.trainId, 'route-id': this.routeDetails["route-id"] }, - dataType: 'text', - success: (responseData, textStatus, jqXHR) => { - this.drivingIsForwards = responseData.includes("forwards"); + dataType: 'json', + success: (data, textStatus, jqXHR) => { + if ('msg' in data) { + setResponseDanger('#serverResponse', '😢 Could not find your train', '😢 Dein Zug konnte nicht gefunden werden', ''); + return; + } + + this.drivingIsForwards = data.direction === "forwards"; }, error: (responseData, textStatus, errorThrown) => { setResponseDanger('#serverResponse', '😢 Could not find your train', '😢 Dein Zug konnte nicht gefunden werden', ''); @@ -547,8 +579,10 @@ class Driver { }); } + // Server request to set the train's speed - setTrainSpeedPromise(speed) { + // TODO: Specification missing + setTrainSpeedPromise(speed) { return $.ajax({ type: 'POST', url: serverAddress + '/driver/set-dcc-train-speed', @@ -582,30 +616,33 @@ class Driver { data: { 'train': this.trainId }, - dataType: 'text', - success: (responseData, textStatus, jqXHR) => { - const matches = /on segment: (.*?) -/g.exec(responseData); // Get all Segment IDS as String - const segmentIDs = matches[1]; - const segments = segmentIDs.split(", "); // Splits them into Array + dataType: 'json', + success: (data, textStatus, jqXHR) => { + // Get all Segment IDS as String + if ('msg' in data || !data.on_track || !Array.isArray(data.occupied_segments)) { + return; + } + + const segmentIDs = data.occupied_segments; + const segments = segmentIDs.map(s => s.replace(/(a|b)$/, '')); // Show the destination reached button when the train is only on the // main segment of the destination // Take into account that a main segment could be split into a/b segments for (let index in segments) { - segments[index] = segments[index].replace(/(a|b)$/, ''); - ///TODO: Investigate the point of this check. + //TODO: Investigate the point of this check. // reads as if we return if the train occupies a segment // that is not part of the route. if (segments[index] != this.routeDetails['segment']) { return; } } - ///NOTE: Only checks the first segment that the train occupies -> + //NOTE: Only checks the first segment that the train occupies -> // older segments the train has physically already left will still be // contained and perhaps lead to the "is destination reached" staying // false until they are officially left (delay of ~1 - 1.5s). // This could be a problem for short main segments! - if(segments[0] == this.routeDetails['segment']) { + if (segments[0] == this.routeDetails['segment']) { this.clearDestinationReachedInterval(); this.isDestinationReached = true; $('#endGameButton').show(); @@ -618,12 +655,13 @@ class Driver { }); }, destinationReachedTimeout); } - + disableDestinationReached() { this.isDestinationReached = false; } // Server request to release the train + // TODO: missing api spec releaseTrainPromise() { return $.ajax({ type: 'POST', @@ -659,11 +697,18 @@ class Driver { 'grab-id': this.grabId, 'route-id': routeDetails['route-id'] }, - dataType: 'text', - success: (responseData, textStatus, jqXHR) => { + dataType: 'json', + success: (data, textStatus, jqXHR) => { + if ('msg' in data) { + this.routeDetails = null; + setResponseDanger('#serverResponse', "This route is not available", "Diese Route ist zurzeit leider nicht verfügbar", 'Sorry'); + return; + } + this.routeDetails = routeDetails; - setResponseSuccess('#serverResponse', - '🥳 Start driving your train to your chosen destination', + setResponseSuccess( + '#serverResponse', + '🥳 Start driving your train to your chosen destination', '🥳 Fahr deinen Zug zum ausgewählten Ziel', '' ); @@ -675,7 +720,9 @@ class Driver { }); } + // Server request to manually drive the granted route + // TODO: missing API Spec driveRoutePromise() { return $.ajax({ type: 'POST', @@ -715,6 +762,7 @@ class Driver { } // Server request to release the granted route + // TODO: missing API spec releaseRoutePromise() { if (!this.hasRouteGranted) { return; @@ -978,6 +1026,7 @@ function pageRefreshWarning(event) { // During page unload (refresh or close) behaviour // Only synchronouse statements will be executed by this handler! // Promises will not be executed! +// TODO: missing API Spec $(window).on("unload", (event) => { console.log("Unloading"); if (driver.hasRouteGranted) { From 9dac8e43398d34305ab0dbf4739d036c69e4fd41 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 8 Jul 2025 09:20:42 +0200 Subject: [PATCH 084/125] set-point or signal now replies with 404 if point/signal unknown --- .../doc/api-formats/openapi_swtbahn_V1.json | 20 +++++++++++++++++++ server/src/handler_controller.c | 6 ++++++ 2 files changed, 26 insertions(+) diff --git a/server/doc/api-formats/openapi_swtbahn_V1.json b/server/doc/api-formats/openapi_swtbahn_V1.json index 5b1379cf..d8cbcdaa 100644 --- a/server/doc/api-formats/openapi_swtbahn_V1.json +++ b/server/doc/api-formats/openapi_swtbahn_V1.json @@ -327,6 +327,16 @@ } } }, + "404": { + "description": "Unknown Point", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, "405": { "description": "Method not allowed" }, @@ -368,6 +378,16 @@ } } }, + "404": { + "description": "Unknown signal", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/common_feedback" + } + } + } + }, "405": { "description": "Method not allowed" }, diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 331fd63d..75e4aaaa 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -542,6 +542,9 @@ o_con_status handler_set_point(void *_, onion_request *req, onion_response *res) if (handle_param_miss_check(res, "Set point", "point", data_point) || handle_param_miss_check(res, "Set point", "state", data_state)) { return OCS_PROCESSED; + } else if (!is_type_point(data_point)) { + send_common_feedback(res, HTTP_NOT_FOUND, "unknown point"); + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, @@ -575,6 +578,9 @@ o_con_status handler_set_signal(void *_, onion_request *req, onion_response *res if (handle_param_miss_check(res, "Set signal", "signal", data_signal) || handle_param_miss_check(res, "Set signal", "state", data_state)) { return OCS_PROCESSED; + } else if (!is_type_signal(data_signal)) { + send_common_feedback(res, HTTP_NOT_FOUND, "unknown signal"); + return OCS_PROCESSED; } syslog_server(LOG_NOTICE, From 0713132e2e42118723bfaace3aedc080d59781fe Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 8 Jul 2025 09:22:04 +0200 Subject: [PATCH 085/125] better log for 404 case of set-point/signal --- server/src/handler_controller.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index 75e4aaaa..bd8755fb 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -544,6 +544,7 @@ o_con_status handler_set_point(void *_, onion_request *req, onion_response *res) return OCS_PROCESSED; } else if (!is_type_point(data_point)) { send_common_feedback(res, HTTP_NOT_FOUND, "unknown point"); + syslog_server(LOG_ERR, "Request: Set point - unknown point %s", data_point); return OCS_PROCESSED; } @@ -580,6 +581,7 @@ o_con_status handler_set_signal(void *_, onion_request *req, onion_response *res return OCS_PROCESSED; } else if (!is_type_signal(data_signal)) { send_common_feedback(res, HTTP_NOT_FOUND, "unknown signal"); + syslog_server(LOG_ERR, "Request: Set point - unknown signal %s", data_signal); return OCS_PROCESSED; } From 954f61923cc0e122d075722a570295307ff72047 Mon Sep 17 00:00:00 2001 From: Bernhard Luedtke Date: Tue, 8 Jul 2025 09:58:07 +0200 Subject: [PATCH 086/125] adjusted logging to improve debugging invalid handler inputs --- server/src/handler_admin.c | 21 +++++---- server/src/handler_controller.c | 8 ++-- server/src/handler_driver.c | 83 +++++++++++++++++++++------------ 3 files changed, 69 insertions(+), 43 deletions(-) diff --git a/server/src/handler_admin.c b/server/src/handler_admin.c index 61da1dfb..0087bfa3 100644 --- a/server/src/handler_admin.c +++ b/server/src/handler_admin.c @@ -228,14 +228,18 @@ o_con_status handler_shutdown(void *_, onion_request *req, onion_response *res) o_con_status handler_set_track_output(void *_, onion_request *req, onion_response *res) { build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_POST)) { - char *end; const char *data_state = onion_request_get_post(req, "state"); - const long int state = strtol(data_state, &end, 10); + if (handle_param_miss_check(res, "Set track output", "state", data_state)) { - ; - } else if ((state == LONG_MAX || state == LONG_MIN) || *end != '\0') { + return OCS_PROCESSED; + } + char *end; + const long int state = strtol(data_state, &end, 10); + + if ((state == LONG_MAX || state == LONG_MIN) || *end != '\0') { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid state"); - syslog_server(LOG_ERR, "Request: Set track output - invalid state"); + // log the original input (data_state) for debugging + syslog_server(LOG_ERR, "Request: Set track output - invalid state (%s)", data_state); } else { syslog_server(LOG_NOTICE, "Request: Set track output - state: 0x%02x - start", state); bidib_set_track_output_state_all(state); @@ -259,7 +263,8 @@ o_con_status handler_set_verification_option(void *_, onion_request *req, onion_ } else if (!params_check_is_bool_string(data_verification_option)) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid verification-option"); syslog_server(LOG_ERR, - "Request: Set verification option - invalid verification-option"); + "Request: Set verification option - invalid verification-option (%s)", + data_verification_option); } else { if (strcmp("true", data_verification_option) == 0 || strcmp("True", data_verification_option) == 0 @@ -361,8 +366,8 @@ o_con_status handler_admin_set_dcc_train_speed(void *_, onion_request *req, onio } else if (speed == 999) { send_common_feedback(res, HTTP_BAD_REQUEST, "bad speed"); syslog_server(LOG_ERR, - "Request: Admin set dcc train speed - train: %s speed: %d - bad speed", - data_train, speed); + "Request: Admin set dcc train speed - train: %s speed: %d - bad speed (%s)", + data_train, speed, data_speed); return OCS_PROCESSED; } diff --git a/server/src/handler_controller.c b/server/src/handler_controller.c index bd8755fb..4679e666 100644 --- a/server/src/handler_controller.c +++ b/server/src/handler_controller.c @@ -513,7 +513,8 @@ o_con_status handler_release_route(void *_, onion_request *req, onion_response * return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); - syslog_server(LOG_ERR, "Request: Release route - invalid route-id"); + // log the original input (data_route_id), not the parsed (route_id), for debugging + syslog_server(LOG_ERR, "Request: Release route - invalid route-id (%s)", data_route_id); return OCS_PROCESSED; } @@ -544,7 +545,7 @@ o_con_status handler_set_point(void *_, onion_request *req, onion_response *res) return OCS_PROCESSED; } else if (!is_type_point(data_point)) { send_common_feedback(res, HTTP_NOT_FOUND, "unknown point"); - syslog_server(LOG_ERR, "Request: Set point - unknown point %s", data_point); + syslog_server(LOG_ERR, "Request: Set point - unknown point (%s)", data_point); return OCS_PROCESSED; } @@ -581,7 +582,7 @@ o_con_status handler_set_signal(void *_, onion_request *req, onion_response *res return OCS_PROCESSED; } else if (!is_type_signal(data_signal)) { send_common_feedback(res, HTTP_NOT_FOUND, "unknown signal"); - syslog_server(LOG_ERR, "Request: Set point - unknown signal %s", data_signal); + syslog_server(LOG_ERR, "Request: Set point - unknown signal (%s)", data_signal); return OCS_PROCESSED; } @@ -641,7 +642,6 @@ o_con_status handler_set_peripheral(void *_, onion_request *req, onion_response } o_con_status handler_get_interlocker(void *_, onion_request *req, onion_response *res) { - ///TODO: Changed to GET, adjust clients! build_response_header(res); if (running && ((onion_request_get_flags(req) & OR_METHODS) == OR_GET)) { pthread_mutex_lock(&interlocker_mutex); diff --git a/server/src/handler_driver.c b/server/src/handler_driver.c index cec03927..59033f19 100644 --- a/server/src/handler_driver.c +++ b/server/src/handler_driver.c @@ -996,8 +996,8 @@ o_con_status handler_request_route(void *_, onion_request *req, onion_response * } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, - "Request: Request route - from: %s to: %s - invalid session-id", - data_source_name, data_destination_name); + "Request: Request route - from: %s to: %s - invalid session-id (%s)", + data_source_name, data_destination_name, data_session_id); return OCS_PROCESSED; } // If grab_id is valid, train_id will be, too. @@ -1005,8 +1005,8 @@ o_con_status handler_request_route(void *_, onion_request *req, onion_response * if (train_id == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, - "Request: Request route - from: %s to: %s - invalid grab-id", - data_source_name, data_destination_name); + "Request: Request route - from: %s to: %s - invalid grab-id (%s)", + data_source_name, data_destination_name, data_grab_id); return OCS_PROCESSED; } @@ -1034,13 +1034,15 @@ o_con_status handler_request_route_by_id(void *_, onion_request *req, onion_resp return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); - syslog_server(LOG_ERR, "Request: Request route by id - invalid route-id"); + syslog_server(LOG_ERR, + "Request: Request route by id - invalid route-id (%s)", + data_route_id); return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); syslog_server(LOG_ERR, - "Request: Request route by id - route: %s - invalid session-id", - route_id); + "Request: Request route by id - route: %s - invalid session-id (%s)", + route_id, data_session_id); return OCS_PROCESSED; } // If grab_id is valid, train_id will be, too. @@ -1048,8 +1050,8 @@ o_con_status handler_request_route_by_id(void *_, onion_request *req, onion_resp if (train_id == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); syslog_server(LOG_ERR, - "Request: Request route by id - route: %s - invalid grab-id", - route_id); + "Request: Request route by id - route: %s - invalid grab-id (%s)", + route_id, data_grab_id); return OCS_PROCESSED; } @@ -1111,8 +1113,8 @@ o_con_status handler_driving_direction(void *_, onion_request *req, onion_respon } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); syslog_server(LOG_ERR, - "Request: Driving direction - train: %s - invalid route-id", - data_train); + "Request: Driving direction - train: %s - invalid route-id (%s)", + data_train, data_route_id); return OCS_PROCESSED; } @@ -1160,15 +1162,15 @@ o_con_status handler_drive_route(void *_, onion_request *req, onion_response *re return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); - syslog_server(LOG_ERR, "Request: Drive route - invalid session-id"); + syslog_server(LOG_ERR, "Request: Drive route - invalid session-id (%s)", data_session_id); return OCS_PROCESSED; } else if (strcmp(mode, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid driving mode"); - syslog_server(LOG_ERR, "Request: Drive route - invalid driving mode"); + syslog_server(LOG_ERR, "Request: Drive route - invalid driving mode (%s)", data_mode); return OCS_PROCESSED; } else if (strcmp(route_id, "") == 0) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid route-id"); - syslog_server(LOG_ERR, "Request: Drive route - invalid route-id"); + syslog_server(LOG_ERR, "Request: Drive route - invalid route-id (%s)", data_route_id); return OCS_PROCESSED; } @@ -1176,7 +1178,9 @@ o_con_status handler_drive_route(void *_, onion_request *req, onion_response *re char *train_id = train_id_from_grab_id(grab_id); if (train_id == NULL) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Drive route - route: %s - invalid grab-id", route_id); + syslog_server(LOG_ERR, + "Request: Drive route - route: %s - invalid grab-id (%s)", + route_id, data_grab_id); return OCS_PROCESSED; } @@ -1224,7 +1228,9 @@ o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_resp return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); - syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid session-id"); + syslog_server(LOG_ERR, + "Request: Set dcc train speed - invalid session-id (%s)", + data_session_id); return OCS_PROCESSED; } @@ -1232,13 +1238,15 @@ o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_resp if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Set dcc train speed - invalid grab-id"); + syslog_server(LOG_ERR, + "Request: Set dcc train speed - invalid grab-id (%s)", + data_grab_id); return OCS_PROCESSED; } else if (speed == 999) { send_common_feedback(res, HTTP_BAD_REQUEST, "bad speed"); syslog_server(LOG_ERR, - "Request: Set dcc train speed - train: %s speed: %d - bad speed", - grabbed_trains[grab_id].name->str, speed); + "Request: Set dcc train speed - train: %s speed: %d - bad speed (%s)", + grabbed_trains[grab_id].name->str, speed, data_speed); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; } else if (strlen(data_track_output) > 32) { @@ -1248,8 +1256,9 @@ o_con_status handler_set_dcc_train_speed(void *_, onion_request *req, onion_resp "invalid track output (currently no track output longer than " "32 chars, incl. nul terminator, is supported for this endpoint)"); syslog_server(LOG_ERR, - "Request: Set dcc train speed - train: %s speed: %d - invalid track output", - grabbed_trains[grab_id].name->str, speed); + "Request: Set dcc train speed - train: %s speed: %d - " + "invalid track output (%s)", + grabbed_trains[grab_id].name->str, speed, data_track_output); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; } @@ -1291,7 +1300,9 @@ o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, oni return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); - syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid session-id"); + syslog_server(LOG_ERR, + "Request: Set calibrated train speed - invalid session-id (%s)", + data_session_id); return OCS_PROCESSED; } @@ -1299,13 +1310,15 @@ o_con_status handler_set_calibrated_train_speed(void *_, onion_request *req, oni if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Set calibrated train speed - invalid grab-id"); + syslog_server(LOG_ERR, + "Request: Set calibrated train speed - invalid grab-id (%s)", + data_grab_id); return OCS_PROCESSED; } else if (speed == 999) { send_common_feedback(res, HTTP_BAD_REQUEST, "bad speed"); syslog_server(LOG_ERR, - "Request: Set calibrated train speed - train: %s speed: %d - bad speed", - grabbed_trains[grab_id].name->str, speed); + "Request: Set calibrated train speed - train: %s speed: %d - bad speed (%s)", + grabbed_trains[grab_id].name->str, speed, data_speed); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; } @@ -1350,7 +1363,9 @@ o_con_status handler_set_train_emergency_stop(void *_, onion_request *req, onion return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); - syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid session-id"); + syslog_server(LOG_ERR, + "Request: Set train emergency stop - invalid session-id (%s)", + data_session_id); return OCS_PROCESSED; } @@ -1358,7 +1373,9 @@ o_con_status handler_set_train_emergency_stop(void *_, onion_request *req, onion if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Set train emergency stop - invalid grab-id"); + syslog_server(LOG_ERR, + "Request: Set train emergency stop - invalid grab-id (%s)", + data_grab_id); return OCS_PROCESSED; } @@ -1406,7 +1423,9 @@ o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_res return OCS_PROCESSED; } else if (client_session_id != session_id) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid session-id"); - syslog_server(LOG_ERR, "Request: Set train peripheral - invalid session-id"); + syslog_server(LOG_ERR, + "Request: Set train peripheral - invalid session-id (%s)", + data_session_id); return OCS_PROCESSED; } @@ -1414,13 +1433,15 @@ o_con_status handler_set_train_peripheral(void *_, onion_request *req, onion_res if (grab_id == -1 || !grabbed_trains[grab_id].is_valid) { pthread_mutex_unlock(&grabbed_trains_mutex); send_common_feedback(res, HTTP_BAD_REQUEST, "invalid grab-id"); - syslog_server(LOG_ERR, "Request: Set train peripheral - invalid grab-id"); + syslog_server(LOG_ERR, + "Request: Set train peripheral - invalid grab-id (%s)", + data_grab_id); return OCS_PROCESSED; } else if (state == -1) { send_common_feedback(res, HTTP_BAD_REQUEST, "invalid state"); syslog_server(LOG_ERR, - "Request: Set train peripheral - train: %s - invalid state", - grabbed_trains[grab_id].name->str); + "Request: Set train peripheral - train: %s - invalid state (%s)", + grabbed_trains[grab_id].name->str, data_state); pthread_mutex_unlock(&grabbed_trains_mutex); return OCS_PROCESSED; } From 9cf12ceaf41db8143c2c0c02ab87acc54b0ac797 Mon Sep 17 00:00:00 2001 From: Jochen Mehlich Date: Tue, 8 Jul 2025 14:09:46 +0200 Subject: [PATCH 087/125] sync Signed-off-by: Jochen Mehlich --- .../PyYAML-6.0.2.dist-info/INSTALLER | 1 + .../PyYAML-6.0.2.dist-info/LICENSE | 20 + .../PyYAML-6.0.2.dist-info/METADATA | 46 + .../PyYAML-6.0.2.dist-info/RECORD | 44 + .../PyYAML-6.0.2.dist-info/REQUESTED | 0 .../PyYAML-6.0.2.dist-info/WHEEL | 6 + .../PyYAML-6.0.2.dist-info/top_level.txt | 2 + .../site-packages/_yaml/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 908 bytes .../pip-24.2.dist-info/AUTHORS.txt | 796 ++ .../pip-24.2.dist-info/INSTALLER | 1 + .../pip-24.2.dist-info/LICENSE.txt | 20 + .../site-packages/pip-24.2.dist-info/METADATA | 89 + .../site-packages/pip-24.2.dist-info/RECORD | 853 ++ .../pip-24.2.dist-info/REQUESTED | 0 .../site-packages/pip-24.2.dist-info/WHEEL | 5 + .../pip-24.2.dist-info/entry_points.txt | 3 + .../pip-24.2.dist-info/top_level.txt | 1 + .../python3.12/site-packages/pip/__init__.py | 13 + .../python3.12/site-packages/pip/__main__.py | 24 + .../site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 733 bytes .../pip/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 889 bytes .../__pip-runner__.cpython-312.pyc | Bin 0 -> 2253 bytes .../site-packages/pip/_internal/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 835 bytes .../__pycache__/build_env.cpython-312.pyc | Bin 0 -> 14520 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 12715 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 17680 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 35599 bytes .../__pycache__/main.cpython-312.pyc | Bin 0 -> 718 bytes .../__pycache__/pyproject.cpython-312.pyc | Bin 0 -> 5166 bytes .../self_outdated_check.cpython-312.pyc | Bin 0 -> 10256 bytes .../__pycache__/wheel_builder.cpython-312.pyc | Bin 0 -> 13663 bytes .../site-packages/pip/_internal/build_env.py | 315 + .../site-packages/pip/_internal/cache.py | 290 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 326 bytes .../autocompletion.cpython-312.pyc | Bin 0 -> 8654 bytes .../__pycache__/base_command.cpython-312.pyc | Bin 0 -> 10242 bytes .../__pycache__/cmdoptions.cpython-312.pyc | Bin 0 -> 30443 bytes .../command_context.cpython-312.pyc | Bin 0 -> 1822 bytes .../__pycache__/index_command.cpython-312.pyc | Bin 0 -> 7172 bytes .../cli/__pycache__/main.cpython-312.pyc | Bin 0 -> 2348 bytes .../__pycache__/main_parser.cpython-312.pyc | Bin 0 -> 4954 bytes .../cli/__pycache__/parser.cpython-312.pyc | Bin 0 -> 15061 bytes .../__pycache__/progress_bars.cpython-312.pyc | Bin 0 -> 3882 bytes .../__pycache__/req_command.cpython-312.pyc | Bin 0 -> 12289 bytes .../cli/__pycache__/spinners.cpython-312.pyc | Bin 0 -> 7881 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 423 bytes .../pip/_internal/cli/autocompletion.py | 176 + .../pip/_internal/cli/base_command.py | 231 + .../pip/_internal/cli/cmdoptions.py | 1075 +++ .../pip/_internal/cli/command_context.py | 27 + .../pip/_internal/cli/index_command.py | 170 + .../site-packages/pip/_internal/cli/main.py | 80 + .../pip/_internal/cli/main_parser.py | 134 + .../site-packages/pip/_internal/cli/parser.py | 294 + .../pip/_internal/cli/progress_bars.py | 94 + .../pip/_internal/cli/req_command.py | 329 + .../pip/_internal/cli/spinners.py | 159 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 132 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4050 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 9749 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 2640 bytes .../__pycache__/completion.cpython-312.pyc | Bin 0 -> 5241 bytes .../__pycache__/configuration.cpython-312.pyc | Bin 0 -> 13211 bytes .../__pycache__/debug.cpython-312.pyc | Bin 0 -> 10116 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 7551 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 4433 bytes .../commands/__pycache__/hash.cpython-312.pyc | Bin 0 -> 3016 bytes .../commands/__pycache__/help.cpython-312.pyc | Bin 0 -> 1721 bytes .../__pycache__/index.cpython-312.pyc | Bin 0 -> 6719 bytes .../__pycache__/inspect.cpython-312.pyc | Bin 0 -> 4028 bytes .../__pycache__/install.cpython-312.pyc | Bin 0 -> 29162 bytes .../commands/__pycache__/list.cpython-312.pyc | Bin 0 -> 15805 bytes .../__pycache__/search.cpython-312.pyc | Bin 0 -> 7566 bytes .../commands/__pycache__/show.cpython-312.pyc | Bin 0 -> 10525 bytes .../__pycache__/uninstall.cpython-312.pyc | Bin 0 -> 4757 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 8913 bytes .../pip/_internal/commands/cache.py | 225 + .../pip/_internal/commands/check.py | 67 + .../pip/_internal/commands/completion.py | 130 + .../pip/_internal/commands/configuration.py | 280 + .../pip/_internal/commands/debug.py | 201 + .../pip/_internal/commands/download.py | 146 + .../pip/_internal/commands/freeze.py | 109 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/inspect.py | 92 + .../pip/_internal/commands/install.py | 783 ++ .../pip/_internal/commands/list.py | 375 + .../pip/_internal/commands/search.py | 172 + .../pip/_internal/commands/show.py | 217 + .../pip/_internal/commands/uninstall.py | 114 + .../pip/_internal/commands/wheel.py | 182 + .../pip/_internal/configuration.py | 383 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 989 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 2941 bytes .../__pycache__/installed.cpython-312.pyc | Bin 0 -> 1748 bytes .../__pycache__/sdist.cpython-312.pyc | Bin 0 -> 8475 bytes .../__pycache__/wheel.cpython-312.pyc | Bin 0 -> 2329 bytes .../pip/_internal/distributions/base.py | 53 + .../pip/_internal/distributions/installed.py | 29 + .../pip/_internal/distributions/sdist.py | 158 + .../pip/_internal/distributions/wheel.py | 42 + .../site-packages/pip/_internal/exceptions.py | 777 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 280 bytes .../__pycache__/collector.cpython-312.pyc | Bin 0 -> 21665 bytes .../package_finder.cpython-312.pyc | Bin 0 -> 40696 bytes .../index/__pycache__/sources.cpython-312.pyc | Bin 0 -> 12636 bytes .../pip/_internal/index/collector.py | 494 + .../pip/_internal/index/package_finder.py | 1020 ++ .../pip/_internal/index/sources.py | 285 + .../pip/_internal/locations/__init__.py | 456 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 16488 bytes .../__pycache__/_distutils.cpython-312.pyc | Bin 0 -> 6900 bytes .../__pycache__/_sysconfig.cpython-312.pyc | Bin 0 -> 8076 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 3829 bytes .../pip/_internal/locations/_distutils.py | 172 + .../pip/_internal/locations/_sysconfig.py | 214 + .../pip/_internal/locations/base.py | 81 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 128 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5917 bytes .../__pycache__/_json.cpython-312.pyc | Bin 0 -> 2974 bytes .../metadata/__pycache__/base.cpython-312.pyc | Bin 0 -> 35246 bytes .../__pycache__/pkg_resources.cpython-312.pyc | Bin 0 -> 16132 bytes .../pip/_internal/metadata/_json.py | 84 + .../pip/_internal/metadata/base.py | 688 ++ .../_internal/metadata/importlib/__init__.py | 6 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 406 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 4539 bytes .../__pycache__/_dists.cpython-312.pyc | Bin 0 -> 12613 bytes .../__pycache__/_envs.cpython-312.pyc | Bin 0 -> 11127 bytes .../_internal/metadata/importlib/_compat.py | 85 + .../_internal/metadata/importlib/_dists.py | 221 + .../pip/_internal/metadata/importlib/_envs.py | 189 + .../pip/_internal/metadata/pkg_resources.py | 301 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 314 bytes .../__pycache__/candidate.cpython-312.pyc | Bin 0 -> 1652 bytes .../__pycache__/direct_url.cpython-312.pyc | Bin 0 -> 10892 bytes .../format_control.cpython-312.pyc | Bin 0 -> 4271 bytes .../models/__pycache__/index.cpython-312.pyc | Bin 0 -> 1742 bytes .../installation_report.cpython-312.pyc | Bin 0 -> 2325 bytes .../models/__pycache__/link.cpython-312.pyc | Bin 0 -> 26665 bytes .../models/__pycache__/scheme.cpython-312.pyc | Bin 0 -> 1071 bytes .../__pycache__/search_scope.cpython-312.pyc | Bin 0 -> 5035 bytes .../selection_prefs.cpython-312.pyc | Bin 0 -> 1899 bytes .../__pycache__/target_python.cpython-312.pyc | Bin 0 -> 5001 bytes .../models/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5808 bytes .../pip/_internal/models/candidate.py | 25 + .../pip/_internal/models/direct_url.py | 224 + .../pip/_internal/models/format_control.py | 78 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 56 + .../pip/_internal/models/link.py | 590 ++ .../pip/_internal/models/scheme.py | 25 + .../pip/_internal/models/search_scope.py | 127 + .../pip/_internal/models/selection_prefs.py | 53 + .../pip/_internal/models/target_python.py | 121 + .../pip/_internal/models/wheel.py | 93 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 302 bytes .../network/__pycache__/auth.cpython-312.pyc | Bin 0 -> 22147 bytes .../network/__pycache__/cache.cpython-312.pyc | Bin 0 -> 6499 bytes .../__pycache__/download.cpython-312.pyc | Bin 0 -> 8527 bytes .../__pycache__/lazy_wheel.cpython-312.pyc | Bin 0 -> 11655 bytes .../__pycache__/session.cpython-312.pyc | Bin 0 -> 18922 bytes .../network/__pycache__/utils.cpython-312.pyc | Bin 0 -> 2303 bytes .../__pycache__/xmlrpc.cpython-312.pyc | Bin 0 -> 2997 bytes .../pip/_internal/network/auth.py | 566 ++ .../pip/_internal/network/cache.py | 106 + .../pip/_internal/network/download.py | 187 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 522 + .../pip/_internal/network/utils.py | 98 + .../pip/_internal/network/xmlrpc.py | 62 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 245 bytes .../__pycache__/check.cpython-312.pyc | Bin 0 -> 7152 bytes .../__pycache__/freeze.cpython-312.pyc | Bin 0 -> 10176 bytes .../__pycache__/prepare.cpython-312.pyc | Bin 0 -> 25820 bytes .../pip/_internal/operations/check.py | 181 + .../pip/_internal/operations/freeze.py | 258 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 314 bytes .../editable_legacy.cpython-312.pyc | Bin 0 -> 1846 bytes .../install/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 34151 bytes .../operations/install/editable_legacy.py | 47 + .../pip/_internal/operations/install/wheel.py | 741 ++ .../pip/_internal/operations/prepare.py | 732 ++ .../site-packages/pip/_internal/pyproject.py | 185 + .../pip/_internal/req/__init__.py | 90 + .../req/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3493 bytes .../__pycache__/constructors.cpython-312.pyc | Bin 0 -> 21266 bytes .../req/__pycache__/req_file.cpython-312.pyc | Bin 0 -> 21480 bytes .../__pycache__/req_install.cpython-312.pyc | Bin 0 -> 38523 bytes .../req/__pycache__/req_set.cpython-312.pyc | Bin 0 -> 5531 bytes .../__pycache__/req_uninstall.cpython-312.pyc | Bin 0 -> 32142 bytes .../pip/_internal/req/constructors.py | 560 ++ .../pip/_internal/req/req_file.py | 551 ++ .../pip/_internal/req/req_install.py | 934 ++ .../pip/_internal/req/req_set.py | 82 + .../pip/_internal/req/req_uninstall.py | 633 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 245 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 1233 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 252 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 22627 bytes .../_internal/resolution/legacy/resolver.py | 597 ++ .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 256 bytes .../__pycache__/base.cpython-312.pyc | Bin 0 -> 8197 bytes .../__pycache__/candidates.cpython-312.pyc | Bin 0 -> 29220 bytes .../__pycache__/factory.cpython-312.pyc | Bin 0 -> 32334 bytes .../found_candidates.cpython-312.pyc | Bin 0 -> 6841 bytes .../__pycache__/provider.cpython-312.pyc | Bin 0 -> 10571 bytes .../__pycache__/reporter.cpython-312.pyc | Bin 0 -> 5088 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 15404 bytes .../__pycache__/resolver.cpython-312.pyc | Bin 0 -> 12362 bytes .../_internal/resolution/resolvelib/base.py | 139 + .../resolution/resolvelib/candidates.py | 569 ++ .../resolution/resolvelib/factory.py | 817 ++ .../resolution/resolvelib/found_candidates.py | 174 + .../resolution/resolvelib/provider.py | 258 + .../resolution/resolvelib/reporter.py | 81 + .../resolution/resolvelib/requirements.py | 245 + .../resolution/resolvelib/resolver.py | 317 + .../pip/_internal/self_outdated_check.py | 244 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 240 bytes .../__pycache__/_jaraco_text.cpython-312.pyc | Bin 0 -> 4575 bytes .../utils/__pycache__/_log.cpython-312.pyc | Bin 0 -> 1911 bytes .../utils/__pycache__/appdirs.cpython-312.pyc | Bin 0 -> 2455 bytes .../utils/__pycache__/compat.cpython-312.pyc | Bin 0 -> 2952 bytes .../compatibility_tags.cpython-312.pyc | Bin 0 -> 5608 bytes .../__pycache__/datetime.cpython-312.pyc | Bin 0 -> 729 bytes .../__pycache__/deprecation.cpython-312.pyc | Bin 0 -> 4236 bytes .../direct_url_helpers.cpython-312.pyc | Bin 0 -> 3581 bytes .../__pycache__/egg_link.cpython-312.pyc | Bin 0 -> 3251 bytes .../__pycache__/encoding.cpython-312.pyc | Bin 0 -> 2193 bytes .../__pycache__/entrypoints.cpython-312.pyc | Bin 0 -> 4038 bytes .../__pycache__/filesystem.cpython-312.pyc | Bin 0 -> 7374 bytes .../__pycache__/filetypes.cpython-312.pyc | Bin 0 -> 1209 bytes .../utils/__pycache__/glibc.cpython-312.pyc | Bin 0 -> 2464 bytes .../utils/__pycache__/hashes.cpython-312.pyc | Bin 0 -> 7648 bytes .../utils/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13603 bytes .../utils/__pycache__/misc.cpython-312.pyc | Bin 0 -> 33596 bytes .../__pycache__/packaging.cpython-312.pyc | Bin 0 -> 2628 bytes .../utils/__pycache__/retry.cpython-312.pyc | Bin 0 -> 2153 bytes .../setuptools_build.cpython-312.pyc | Bin 0 -> 4595 bytes .../__pycache__/subprocess.cpython-312.pyc | Bin 0 -> 8684 bytes .../__pycache__/temp_dir.cpython-312.pyc | Bin 0 -> 12069 bytes .../__pycache__/unpacking.cpython-312.pyc | Bin 0 -> 13543 bytes .../utils/__pycache__/urls.cpython-312.pyc | Bin 0 -> 2122 bytes .../__pycache__/virtualenv.cpython-312.pyc | Bin 0 -> 4511 bytes .../utils/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 5948 bytes .../pip/_internal/utils/_jaraco_text.py | 109 + .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 79 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 124 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/egg_link.py | 80 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 84 + .../pip/_internal/utils/filesystem.py | 149 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 101 + .../pip/_internal/utils/hashes.py | 147 + .../pip/_internal/utils/logging.py | 347 + .../site-packages/pip/_internal/utils/misc.py | 777 ++ .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/retry.py | 42 + .../pip/_internal/utils/setuptools_build.py | 146 + .../pip/_internal/utils/subprocess.py | 245 + .../pip/_internal/utils/temp_dir.py | 296 + .../pip/_internal/utils/unpacking.py | 337 + .../site-packages/pip/_internal/utils/urls.py | 55 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 134 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 579 bytes .../vcs/__pycache__/bazaar.cpython-312.pyc | Bin 0 -> 5100 bytes .../vcs/__pycache__/git.cpython-312.pyc | Bin 0 -> 19065 bytes .../vcs/__pycache__/mercurial.cpython-312.pyc | Bin 0 -> 7653 bytes .../__pycache__/subversion.cpython-312.pyc | Bin 0 -> 12572 bytes .../versioncontrol.cpython-312.pyc | Bin 0 -> 29045 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 112 + .../site-packages/pip/_internal/vcs/git.py | 527 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 688 ++ .../pip/_internal/wheel_builder.py | 354 + .../site-packages/pip/_vendor/__init__.py | 116 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 4598 bytes .../typing_extensions.cpython-312.pyc | Bin 0 -> 139500 bytes .../pip/_vendor/cachecontrol/__init__.py | 28 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 951 bytes .../__pycache__/_cmd.cpython-312.pyc | Bin 0 -> 2695 bytes .../__pycache__/adapter.cpython-312.pyc | Bin 0 -> 6513 bytes .../__pycache__/cache.cpython-312.pyc | Bin 0 -> 3836 bytes .../__pycache__/controller.cpython-312.pyc | Bin 0 -> 16273 bytes .../__pycache__/filewrapper.cpython-312.pyc | Bin 0 -> 4396 bytes .../__pycache__/heuristics.cpython-312.pyc | Bin 0 -> 6743 bytes .../__pycache__/serialize.cpython-312.pyc | Bin 0 -> 5310 bytes .../__pycache__/wrapper.cpython-312.pyc | Bin 0 -> 1723 bytes .../pip/_vendor/cachecontrol/_cmd.py | 70 + .../pip/_vendor/cachecontrol/adapter.py | 161 + .../pip/_vendor/cachecontrol/cache.py | 74 + .../_vendor/cachecontrol/caches/__init__.py | 8 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 484 bytes .../__pycache__/file_cache.cpython-312.pyc | Bin 0 -> 7812 bytes .../__pycache__/redis_cache.cpython-312.pyc | Bin 0 -> 2782 bytes .../_vendor/cachecontrol/caches/file_cache.py | 182 + .../cachecontrol/caches/redis_cache.py | 48 + .../pip/_vendor/cachecontrol/controller.py | 499 + .../pip/_vendor/cachecontrol/filewrapper.py | 119 + .../pip/_vendor/cachecontrol/heuristics.py | 154 + .../pip/_vendor/cachecontrol/py.typed | 0 .../pip/_vendor/cachecontrol/serialize.py | 146 + .../pip/_vendor/cachecontrol/wrapper.py | 43 + .../pip/_vendor/certifi/__init__.py | 4 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 367 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 694 bytes .../certifi/__pycache__/core.cpython-312.pyc | Bin 0 -> 3260 bytes .../pip/_vendor/certifi/cacert.pem | 4798 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 114 + .../pip/_vendor/certifi/py.typed | 0 .../pip/_vendor/distlib/__init__.py | 33 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1318 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 45580 bytes .../__pycache__/database.cpython-312.pyc | Bin 0 -> 65730 bytes .../distlib/__pycache__/index.cpython-312.pyc | Bin 0 -> 24365 bytes .../__pycache__/locators.cpython-312.pyc | Bin 0 -> 59979 bytes .../__pycache__/manifest.cpython-312.pyc | Bin 0 -> 15125 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 7727 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 41715 bytes .../__pycache__/resources.cpython-312.pyc | Bin 0 -> 17361 bytes .../__pycache__/scripts.cpython-312.pyc | Bin 0 -> 19818 bytes .../distlib/__pycache__/util.cpython-312.pyc | Bin 0 -> 88066 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 30394 bytes .../distlib/__pycache__/wheel.cpython-312.pyc | Bin 0 -> 51497 bytes .../pip/_vendor/distlib/compat.py | 1138 +++ .../pip/_vendor/distlib/database.py | 1359 +++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1303 +++ .../pip/_vendor/distlib/manifest.py | 384 + .../pip/_vendor/distlib/markers.py | 167 + .../pip/_vendor/distlib/metadata.py | 1068 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 466 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 97792 bytes .../pip/_vendor/distlib/t64-arm.exe | Bin 0 -> 182784 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 108032 bytes .../site-packages/pip/_vendor/distlib/util.py | 2025 ++++ .../pip/_vendor/distlib/version.py | 751 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 91648 bytes .../pip/_vendor/distlib/w64-arm.exe | Bin 0 -> 168448 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 101888 bytes .../pip/_vendor/distlib/wheel.py | 1099 +++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1009 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 341 bytes .../distro/__pycache__/distro.cpython-312.pyc | Bin 0 -> 53841 bytes .../pip/_vendor/distro/distro.py | 1403 +++ .../site-packages/pip/_vendor/distro/py.typed | 0 .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 930 bytes .../idna/__pycache__/codec.cpython-312.pyc | Bin 0 -> 5025 bytes .../idna/__pycache__/compat.cpython-312.pyc | Bin 0 -> 936 bytes .../idna/__pycache__/core.cpython-312.pyc | Bin 0 -> 15840 bytes .../idna/__pycache__/idnadata.cpython-312.pyc | Bin 0 -> 99525 bytes .../__pycache__/intranges.cpython-312.pyc | Bin 0 -> 2682 bytes .../__pycache__/package_data.cpython-312.pyc | Bin 0 -> 265 bytes .../__pycache__/uts46data.cpython-312.pyc | Bin 0 -> 158897 bytes .../site-packages/pip/_vendor/idna/codec.py | 118 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 395 + .../pip/_vendor/idna/idnadata.py | 4245 ++++++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../site-packages/pip/_vendor/idna/py.typed | 0 .../pip/_vendor/idna/uts46data.py | 8598 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1790 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 2074 bytes .../msgpack/__pycache__/ext.cpython-312.pyc | Bin 0 -> 8219 bytes .../__pycache__/fallback.cpython-312.pyc | Bin 0 -> 42092 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 168 + .../pip/_vendor/msgpack/fallback.py | 951 ++ .../pip/_vendor/packaging/__init__.py | 15 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 607 bytes .../__pycache__/_elffile.cpython-312.pyc | Bin 0 -> 5016 bytes .../__pycache__/_manylinux.cpython-312.pyc | Bin 0 -> 9734 bytes .../__pycache__/_musllinux.cpython-312.pyc | Bin 0 -> 4603 bytes .../__pycache__/_parser.cpython-312.pyc | Bin 0 -> 14034 bytes .../__pycache__/_structures.cpython-312.pyc | Bin 0 -> 3290 bytes .../__pycache__/_tokenizer.cpython-312.pyc | Bin 0 -> 7964 bytes .../__pycache__/markers.cpython-312.pyc | Bin 0 -> 11060 bytes .../__pycache__/metadata.cpython-312.pyc | Bin 0 -> 25002 bytes .../__pycache__/requirements.cpython-312.pyc | Bin 0 -> 4459 bytes .../__pycache__/specifiers.cpython-312.pyc | Bin 0 -> 38788 bytes .../__pycache__/tags.cpython-312.pyc | Bin 0 -> 21393 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 7390 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 19556 bytes .../pip/_vendor/packaging/_elffile.py | 110 + .../pip/_vendor/packaging/_manylinux.py | 262 + .../pip/_vendor/packaging/_musllinux.py | 85 + .../pip/_vendor/packaging/_parser.py | 354 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/_tokenizer.py | 194 + .../pip/_vendor/packaging/markers.py | 325 + .../pip/_vendor/packaging/metadata.py | 804 ++ .../pip/_vendor/packaging/py.typed | 0 .../pip/_vendor/packaging/requirements.py | 91 + .../pip/_vendor/packaging/specifiers.py | 1009 ++ .../pip/_vendor/packaging/tags.py | 568 ++ .../pip/_vendor/packaging/utils.py | 174 + .../pip/_vendor/packaging/version.py | 563 ++ .../pip/_vendor/pkg_resources/__init__.py | 3676 +++++++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 161310 bytes .../pip/_vendor/platformdirs/__init__.py | 627 ++ .../pip/_vendor/platformdirs/__main__.py | 55 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 19878 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 1997 bytes .../__pycache__/android.cpython-312.pyc | Bin 0 -> 10746 bytes .../__pycache__/api.cpython-312.pyc | Bin 0 -> 12960 bytes .../__pycache__/macos.cpython-312.pyc | Bin 0 -> 8056 bytes .../__pycache__/unix.cpython-312.pyc | Bin 0 -> 15086 bytes .../__pycache__/version.cpython-312.pyc | Bin 0 -> 646 bytes .../__pycache__/windows.cpython-312.pyc | Bin 0 -> 13723 bytes .../pip/_vendor/platformdirs/android.py | 249 + .../pip/_vendor/platformdirs/api.py | 292 + .../pip/_vendor/platformdirs/macos.py | 130 + .../pip/_vendor/platformdirs/py.typed | 0 .../pip/_vendor/platformdirs/unix.py | 275 + .../pip/_vendor/platformdirs/version.py | 16 + .../pip/_vendor/platformdirs/windows.py | 272 + .../pip/_vendor/pygments/__init__.py | 82 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3538 bytes .../__pycache__/__main__.cpython-312.pyc | Bin 0 -> 784 bytes .../__pycache__/cmdline.cpython-312.pyc | Bin 0 -> 26634 bytes .../__pycache__/console.cpython-312.pyc | Bin 0 -> 2678 bytes .../__pycache__/filter.cpython-312.pyc | Bin 0 -> 3271 bytes .../__pycache__/formatter.cpython-312.pyc | Bin 0 -> 4770 bytes .../__pycache__/lexer.cpython-312.pyc | Bin 0 -> 38411 bytes .../__pycache__/modeline.cpython-312.pyc | Bin 0 -> 1609 bytes .../__pycache__/plugin.cpython-312.pyc | Bin 0 -> 2658 bytes .../__pycache__/regexopt.cpython-312.pyc | Bin 0 -> 4127 bytes .../__pycache__/scanner.cpython-312.pyc | Bin 0 -> 4806 bytes .../__pycache__/sphinxext.cpython-312.pyc | Bin 0 -> 12148 bytes .../__pycache__/style.cpython-312.pyc | Bin 0 -> 6743 bytes .../__pycache__/token.cpython-312.pyc | Bin 0 -> 8239 bytes .../__pycache__/unistring.cpython-312.pyc | Bin 0 -> 33022 bytes .../pygments/__pycache__/util.cpython-312.pyc | Bin 0 -> 14119 bytes .../pip/_vendor/pygments/cmdline.py | 668 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 70 + .../pip/_vendor/pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 37961 bytes .../pip/_vendor/pygments/formatter.py | 129 + .../_vendor/pygments/formatters/__init__.py | 157 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 6952 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 4265 bytes .../__pycache__/bbcode.cpython-312.pyc | Bin 0 -> 4272 bytes .../__pycache__/groff.cpython-312.pyc | Bin 0 -> 7343 bytes .../__pycache__/html.cpython-312.pyc | Bin 0 -> 41076 bytes .../__pycache__/img.cpython-312.pyc | Bin 0 -> 28598 bytes .../__pycache__/irc.cpython-312.pyc | Bin 0 -> 6105 bytes .../__pycache__/latex.cpython-312.pyc | Bin 0 -> 20175 bytes .../__pycache__/other.cpython-312.pyc | Bin 0 -> 6927 bytes .../__pycache__/pangomarkup.cpython-312.pyc | Bin 0 -> 3008 bytes .../__pycache__/rtf.cpython-312.pyc | Bin 0 -> 13823 bytes .../__pycache__/svg.cpython-312.pyc | Bin 0 -> 9189 bytes .../__pycache__/terminal.cpython-312.pyc | Bin 0 -> 5869 bytes .../__pycache__/terminal256.cpython-312.pyc | Bin 0 -> 15168 bytes .../_vendor/pygments/formatters/_mapping.py | 23 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 170 + .../pip/_vendor/pygments/formatters/html.py | 987 ++ .../pip/_vendor/pygments/formatters/img.py | 685 ++ .../pip/_vendor/pygments/formatters/irc.py | 154 + .../pip/_vendor/pygments/formatters/latex.py | 518 + .../pip/_vendor/pygments/formatters/other.py | 160 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 349 + .../pip/_vendor/pygments/formatters/svg.py | 185 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 963 ++ .../pip/_vendor/pygments/lexers/__init__.py | 362 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 14671 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 68313 bytes .../lexers/__pycache__/python.cpython-312.pyc | Bin 0 -> 43017 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 589 ++ .../pip/_vendor/pygments/lexers/python.py | 1198 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 72 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 247 + .../pip/_vendor/pygments/style.py | 203 + .../pip/_vendor/pygments/styles/__init__.py | 61 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 2714 bytes .../__pycache__/_mapping.cpython-312.pyc | Bin 0 -> 3698 bytes .../pip/_vendor/pygments/styles/_mapping.py | 54 + .../pip/_vendor/pygments/token.py | 214 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 324 + .../pip/_vendor/pyproject_hooks/__init__.py | 23 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 663 bytes .../__pycache__/_compat.cpython-312.pyc | Bin 0 -> 424 bytes .../__pycache__/_impl.cpython-312.pyc | Bin 0 -> 14743 bytes .../pip/_vendor/pyproject_hooks/_compat.py | 8 + .../pip/_vendor/pyproject_hooks/_impl.py | 330 + .../pyproject_hooks/_in_process/__init__.py | 18 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1130 bytes .../__pycache__/_in_process.cpython-312.pyc | Bin 0 -> 14403 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 179 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 5303 bytes .../__pycache__/__version__.cpython-312.pyc | Bin 0 -> 634 bytes .../_internal_utils.cpython-312.pyc | Bin 0 -> 2074 bytes .../__pycache__/adapters.cpython-312.pyc | Bin 0 -> 28481 bytes .../requests/__pycache__/api.cpython-312.pyc | Bin 0 -> 7241 bytes .../requests/__pycache__/auth.cpython-312.pyc | Bin 0 -> 13971 bytes .../__pycache__/certs.cpython-312.pyc | Bin 0 -> 972 bytes .../__pycache__/compat.cpython-312.pyc | Bin 0 -> 1727 bytes .../__pycache__/cookies.cpython-312.pyc | Bin 0 -> 25248 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 7648 bytes .../requests/__pycache__/help.cpython-312.pyc | Bin 0 -> 4278 bytes .../__pycache__/hooks.cpython-312.pyc | Bin 0 -> 1101 bytes .../__pycache__/models.cpython-312.pyc | Bin 0 -> 35478 bytes .../__pycache__/packages.cpython-312.pyc | Bin 0 -> 1316 bytes .../__pycache__/sessions.cpython-312.pyc | Bin 0 -> 27896 bytes .../__pycache__/status_codes.cpython-312.pyc | Bin 0 -> 6073 bytes .../__pycache__/structures.cpython-312.pyc | Bin 0 -> 5673 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 36416 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 50 + .../pip/_vendor/requests/adapters.py | 719 ++ .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 314 + .../pip/_vendor/requests/certs.py | 24 + .../pip/_vendor/requests/compat.py | 78 + .../pip/_vendor/requests/cookies.py | 561 ++ .../pip/_vendor/requests/exceptions.py | 151 + .../pip/_vendor/requests/help.py | 127 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1037 ++ .../pip/_vendor/requests/packages.py | 25 + .../pip/_vendor/requests/sessions.py | 831 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1096 +++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 684 bytes .../__pycache__/providers.cpython-312.pyc | Bin 0 -> 6901 bytes .../__pycache__/reporters.cpython-312.pyc | Bin 0 -> 2704 bytes .../__pycache__/resolvers.cpython-312.pyc | Bin 0 -> 25930 bytes .../__pycache__/structs.cpython-312.pyc | Bin 0 -> 10550 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 250 bytes .../collections_abc.cpython-312.pyc | Bin 0 -> 470 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/py.typed | 0 .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 547 ++ .../pip/_vendor/resolvelib/structs.py | 170 + .../pip/_vendor/rich/__init__.py | 177 + .../pip/_vendor/rich/__main__.py | 273 + .../rich/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 7065 bytes .../rich/__pycache__/__main__.cpython-312.pyc | Bin 0 -> 10342 bytes .../__pycache__/_cell_widths.cpython-312.pyc | Bin 0 -> 7922 bytes .../__pycache__/_emoji_codes.cpython-312.pyc | Bin 0 -> 206026 bytes .../_emoji_replace.cpython-312.pyc | Bin 0 -> 1779 bytes .../_export_format.cpython-312.pyc | Bin 0 -> 2399 bytes .../__pycache__/_extension.cpython-312.pyc | Bin 0 -> 587 bytes .../rich/__pycache__/_fileno.cpython-312.pyc | Bin 0 -> 905 bytes .../rich/__pycache__/_inspect.cpython-312.pyc | Bin 0 -> 12123 bytes .../__pycache__/_log_render.cpython-312.pyc | Bin 0 -> 4197 bytes .../rich/__pycache__/_loop.cpython-312.pyc | Bin 0 -> 1920 bytes .../__pycache__/_null_file.cpython-312.pyc | Bin 0 -> 3670 bytes .../__pycache__/_palettes.cpython-312.pyc | Bin 0 -> 5210 bytes .../rich/__pycache__/_pick.cpython-312.pyc | Bin 0 -> 771 bytes .../rich/__pycache__/_ratio.cpython-312.pyc | Bin 0 -> 6620 bytes .../__pycache__/_spinners.cpython-312.pyc | Bin 0 -> 13229 bytes .../rich/__pycache__/_stack.cpython-312.pyc | Bin 0 -> 1015 bytes .../rich/__pycache__/_timer.cpython-312.pyc | Bin 0 -> 915 bytes .../_win32_console.cpython-312.pyc | Bin 0 -> 29026 bytes .../rich/__pycache__/_windows.cpython-312.pyc | Bin 0 -> 2540 bytes .../_windows_renderer.cpython-312.pyc | Bin 0 -> 3613 bytes .../rich/__pycache__/_wrap.cpython-312.pyc | Bin 0 -> 3376 bytes .../rich/__pycache__/abc.cpython-312.pyc | Bin 0 -> 1658 bytes .../rich/__pycache__/align.cpython-312.pyc | Bin 0 -> 12337 bytes .../rich/__pycache__/ansi.cpython-312.pyc | Bin 0 -> 9116 bytes .../rich/__pycache__/bar.cpython-312.pyc | Bin 0 -> 4322 bytes .../rich/__pycache__/box.cpython-312.pyc | Bin 0 -> 11888 bytes .../rich/__pycache__/cells.cpython-312.pyc | Bin 0 -> 5860 bytes .../rich/__pycache__/color.cpython-312.pyc | Bin 0 -> 26619 bytes .../__pycache__/color_triplet.cpython-312.pyc | Bin 0 -> 1751 bytes .../rich/__pycache__/columns.cpython-312.pyc | Bin 0 -> 8634 bytes .../rich/__pycache__/console.cpython-312.pyc | Bin 0 -> 113486 bytes .../__pycache__/constrain.cpython-312.pyc | Bin 0 -> 2308 bytes .../__pycache__/containers.cpython-312.pyc | Bin 0 -> 9260 bytes .../rich/__pycache__/control.cpython-312.pyc | Bin 0 -> 10991 bytes .../default_styles.cpython-312.pyc | Bin 0 -> 10416 bytes .../rich/__pycache__/diagnose.cpython-312.pyc | Bin 0 -> 1538 bytes .../rich/__pycache__/emoji.cpython-312.pyc | Bin 0 -> 4262 bytes .../rich/__pycache__/errors.cpython-312.pyc | Bin 0 -> 1895 bytes .../__pycache__/file_proxy.cpython-312.pyc | Bin 0 -> 3621 bytes .../rich/__pycache__/filesize.cpython-312.pyc | Bin 0 -> 3122 bytes .../__pycache__/highlighter.cpython-312.pyc | Bin 0 -> 9937 bytes .../rich/__pycache__/json.cpython-312.pyc | Bin 0 -> 6085 bytes .../rich/__pycache__/jupyter.cpython-312.pyc | Bin 0 -> 5258 bytes .../rich/__pycache__/layout.cpython-312.pyc | Bin 0 -> 20208 bytes .../rich/__pycache__/live.cpython-312.pyc | Bin 0 -> 19059 bytes .../__pycache__/live_render.cpython-312.pyc | Bin 0 -> 4939 bytes .../rich/__pycache__/logging.cpython-312.pyc | Bin 0 -> 13604 bytes .../rich/__pycache__/markup.cpython-312.pyc | Bin 0 -> 9617 bytes .../rich/__pycache__/measure.cpython-312.pyc | Bin 0 -> 6428 bytes .../rich/__pycache__/padding.cpython-312.pyc | Bin 0 -> 7174 bytes .../rich/__pycache__/pager.cpython-312.pyc | Bin 0 -> 1861 bytes .../rich/__pycache__/palette.cpython-312.pyc | Bin 0 -> 5347 bytes .../rich/__pycache__/panel.cpython-312.pyc | Bin 0 -> 12233 bytes .../rich/__pycache__/pretty.cpython-312.pyc | Bin 0 -> 40197 bytes .../rich/__pycache__/progress.cpython-312.pyc | Bin 0 -> 74985 bytes .../__pycache__/progress_bar.cpython-312.pyc | Bin 0 -> 10427 bytes .../rich/__pycache__/prompt.cpython-312.pyc | Bin 0 -> 14837 bytes .../rich/__pycache__/protocol.cpython-312.pyc | Bin 0 -> 1842 bytes .../rich/__pycache__/region.cpython-312.pyc | Bin 0 -> 617 bytes .../rich/__pycache__/repr.cpython-312.pyc | Bin 0 -> 6663 bytes .../rich/__pycache__/rule.cpython-312.pyc | Bin 0 -> 6618 bytes .../rich/__pycache__/scope.cpython-312.pyc | Bin 0 -> 3875 bytes .../rich/__pycache__/screen.cpython-312.pyc | Bin 0 -> 2529 bytes .../rich/__pycache__/segment.cpython-312.pyc | Bin 0 -> 28165 bytes .../rich/__pycache__/spinner.cpython-312.pyc | Bin 0 -> 6114 bytes .../rich/__pycache__/status.cpython-312.pyc | Bin 0 -> 6111 bytes .../rich/__pycache__/style.cpython-312.pyc | Bin 0 -> 33550 bytes .../rich/__pycache__/styled.cpython-312.pyc | Bin 0 -> 2189 bytes .../rich/__pycache__/syntax.cpython-312.pyc | Bin 0 -> 39998 bytes .../rich/__pycache__/table.cpython-312.pyc | Bin 0 -> 43589 bytes .../terminal_theme.cpython-312.pyc | Bin 0 -> 3398 bytes .../rich/__pycache__/text.cpython-312.pyc | Bin 0 -> 60899 bytes .../rich/__pycache__/theme.cpython-312.pyc | Bin 0 -> 6385 bytes .../rich/__pycache__/themes.cpython-312.pyc | Bin 0 -> 364 bytes .../__pycache__/traceback.cpython-312.pyc | Bin 0 -> 31561 bytes .../rich/__pycache__/tree.cpython-312.pyc | Bin 0 -> 11486 bytes .../pip/_vendor/rich/_cell_widths.py | 454 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_export_format.py | 76 + .../pip/_vendor/rich/_extension.py | 10 + .../site-packages/pip/_vendor/rich/_fileno.py | 24 + .../pip/_vendor/rich/_inspect.py | 270 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_null_file.py | 69 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 159 + .../pip/_vendor/rich/_spinners.py | 482 + .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_win32_console.py | 662 ++ .../pip/_vendor/rich/_windows.py | 71 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 93 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 311 + .../site-packages/pip/_vendor/rich/ansi.py | 240 + .../site-packages/pip/_vendor/rich/bar.py | 93 + .../site-packages/pip/_vendor/rich/box.py | 480 + .../site-packages/pip/_vendor/rich/cells.py | 167 + .../site-packages/pip/_vendor/rich/color.py | 621 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2633 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 225 + .../pip/_vendor/rich/default_styles.py | 190 + .../pip/_vendor/rich/diagnose.py | 37 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 57 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 232 + .../site-packages/pip/_vendor/rich/json.py | 139 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 442 + .../site-packages/pip/_vendor/rich/live.py | 375 + .../pip/_vendor/rich/live_render.py | 112 + .../site-packages/pip/_vendor/rich/logging.py | 289 + .../site-packages/pip/_vendor/rich/markup.py | 251 + .../site-packages/pip/_vendor/rich/measure.py | 151 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 312 + .../site-packages/pip/_vendor/rich/pretty.py | 995 ++ .../pip/_vendor/rich/progress.py | 1699 ++++ .../pip/_vendor/rich/progress_bar.py | 223 + .../site-packages/pip/_vendor/rich/prompt.py | 375 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/py.typed | 0 .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 149 + .../site-packages/pip/_vendor/rich/rule.py | 130 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 738 ++ .../site-packages/pip/_vendor/rich/spinner.py | 137 + .../site-packages/pip/_vendor/rich/status.py | 131 + .../site-packages/pip/_vendor/rich/style.py | 796 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 958 ++ .../site-packages/pip/_vendor/rich/table.py | 1000 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1357 +++ .../site-packages/pip/_vendor/rich/theme.py | 115 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 753 ++ .../site-packages/pip/_vendor/rich/tree.py | 249 + .../pip/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 434 bytes .../tomli/__pycache__/_parser.cpython-312.pyc | Bin 0 -> 26949 bytes .../tomli/__pycache__/_re.cpython-312.pyc | Bin 0 -> 3958 bytes .../tomli/__pycache__/_types.cpython-312.pyc | Bin 0 -> 416 bytes .../pip/_vendor/tomli/_parser.py | 691 ++ .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../site-packages/pip/_vendor/tomli/py.typed | 1 + .../pip/_vendor/truststore/__init__.py | 13 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 668 bytes .../__pycache__/_api.cpython-312.pyc | Bin 0 -> 16590 bytes .../__pycache__/_macos.cpython-312.pyc | Bin 0 -> 16622 bytes .../__pycache__/_openssl.cpython-312.pyc | Bin 0 -> 2255 bytes .../_ssl_constants.cpython-312.pyc | Bin 0 -> 1149 bytes .../__pycache__/_windows.cpython-312.pyc | Bin 0 -> 15790 bytes .../pip/_vendor/truststore/_api.py | 313 + .../pip/_vendor/truststore/_macos.py | 499 + .../pip/_vendor/truststore/_openssl.py | 66 + .../pip/_vendor/truststore/_ssl_constants.py | 31 + .../pip/_vendor/truststore/_windows.py | 564 ++ .../pip/_vendor/truststore/py.typed | 0 .../pip/_vendor/typing_extensions.py | 3641 +++++++ .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 3455 bytes .../__pycache__/_collections.cpython-312.pyc | Bin 0 -> 16414 bytes .../__pycache__/_version.cpython-312.pyc | Bin 0 -> 268 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 20453 bytes .../connectionpool.cpython-312.pyc | Bin 0 -> 36487 bytes .../__pycache__/exceptions.cpython-312.pyc | Bin 0 -> 13543 bytes .../__pycache__/fields.cpython-312.pyc | Bin 0 -> 10452 bytes .../__pycache__/filepost.cpython-312.pyc | Bin 0 -> 4062 bytes .../__pycache__/poolmanager.cpython-312.pyc | Bin 0 -> 20479 bytes .../__pycache__/request.cpython-312.pyc | Bin 0 -> 7344 bytes .../__pycache__/response.cpython-312.pyc | Bin 0 -> 33993 bytes .../pip/_vendor/urllib3/_collections.py | 355 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 572 ++ .../pip/_vendor/urllib3/connectionpool.py | 1137 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 248 bytes .../_appengine_environ.cpython-312.pyc | Bin 0 -> 1898 bytes .../__pycache__/appengine.cpython-312.pyc | Bin 0 -> 11614 bytes .../__pycache__/ntlmpool.cpython-312.pyc | Bin 0 -> 5764 bytes .../__pycache__/pyopenssl.cpython-312.pyc | Bin 0 -> 24498 bytes .../securetransport.cpython-312.pyc | Bin 0 -> 35551 bytes .../contrib/__pycache__/socks.cpython-312.pyc | Bin 0 -> 7561 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 265 bytes .../__pycache__/bindings.cpython-312.pyc | Bin 0 -> 17477 bytes .../__pycache__/low_level.cpython-312.pyc | Bin 0 -> 14813 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 518 + .../urllib3/contrib/securetransport.py | 920 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 249 bytes .../packages/__pycache__/six.cpython-312.pyc | Bin 0 -> 41305 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-312.pyc | Bin 0 -> 259 bytes .../__pycache__/makefile.cpython-312.pyc | Bin 0 -> 1875 bytes .../weakref_finalize.cpython-312.pyc | Bin 0 -> 7386 bytes .../urllib3/packages/backports/makefile.py | 51 + .../packages/backports/weakref_finalize.py | 155 + .../pip/_vendor/urllib3/packages/six.py | 1076 +++ .../pip/_vendor/urllib3/poolmanager.py | 540 ++ .../pip/_vendor/urllib3/request.py | 191 + .../pip/_vendor/urllib3/response.py | 879 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 1196 bytes .../__pycache__/connection.cpython-312.pyc | Bin 0 -> 4797 bytes .../util/__pycache__/proxy.cpython-312.pyc | Bin 0 -> 1602 bytes .../util/__pycache__/queue.cpython-312.pyc | Bin 0 -> 1402 bytes .../util/__pycache__/request.cpython-312.pyc | Bin 0 -> 4233 bytes .../util/__pycache__/response.cpython-312.pyc | Bin 0 -> 3042 bytes .../util/__pycache__/retry.cpython-312.pyc | Bin 0 -> 21751 bytes .../util/__pycache__/ssl_.cpython-312.pyc | Bin 0 -> 15134 bytes .../ssl_match_hostname.cpython-312.pyc | Bin 0 -> 5101 bytes .../__pycache__/ssltransport.cpython-312.pyc | Bin 0 -> 10803 bytes .../util/__pycache__/timeout.cpython-312.pyc | Bin 0 -> 11189 bytes .../util/__pycache__/url.cpython-312.pyc | Bin 0 -> 15835 bytes .../util/__pycache__/wait.cpython-312.pyc | Bin 0 -> 4453 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 620 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 271 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + .../site-packages/pip/_vendor/vendor.txt | 18 + .../lib/python3.12/site-packages/pip/py.typed | 4 + .../python3.12/site-packages/yaml/__init__.py | 390 + .../yaml/__pycache__/__init__.cpython-312.pyc | Bin 0 -> 15640 bytes .../yaml/__pycache__/composer.cpython-312.pyc | Bin 0 -> 6571 bytes .../__pycache__/constructor.cpython-312.pyc | Bin 0 -> 34893 bytes .../yaml/__pycache__/cyaml.cpython-312.pyc | Bin 0 -> 4672 bytes .../yaml/__pycache__/dumper.cpython-312.pyc | Bin 0 -> 2508 bytes .../yaml/__pycache__/emitter.cpython-312.pyc | Bin 0 -> 50155 bytes .../yaml/__pycache__/error.cpython-312.pyc | Bin 0 -> 4314 bytes .../yaml/__pycache__/events.cpython-312.pyc | Bin 0 -> 4762 bytes .../yaml/__pycache__/loader.cpython-312.pyc | Bin 0 -> 3570 bytes .../yaml/__pycache__/nodes.cpython-312.pyc | Bin 0 -> 2255 bytes .../yaml/__pycache__/parser.cpython-312.pyc | Bin 0 -> 24750 bytes .../yaml/__pycache__/reader.cpython-312.pyc | Bin 0 -> 8890 bytes .../__pycache__/representer.cpython-312.pyc | Bin 0 -> 16944 bytes .../yaml/__pycache__/resolver.cpython-312.pyc | Bin 0 -> 9071 bytes .../yaml/__pycache__/scanner.cpython-312.pyc | Bin 0 -> 49871 bytes .../__pycache__/serializer.cpython-312.pyc | Bin 0 -> 6225 bytes .../yaml/__pycache__/tokens.cpython-312.pyc | Bin 0 -> 5829 bytes .../_yaml.cpython-312-x86_64-linux-gnu.so | Bin 0 -> 2481784 bytes .../python3.12/site-packages/yaml/composer.py | 139 + .../site-packages/yaml/constructor.py | 748 ++ .../python3.12/site-packages/yaml/cyaml.py | 101 + .../python3.12/site-packages/yaml/dumper.py | 62 + .../python3.12/site-packages/yaml/emitter.py | 1137 +++ .../python3.12/site-packages/yaml/error.py | 75 + .../python3.12/site-packages/yaml/events.py | 86 + .../python3.12/site-packages/yaml/loader.py | 63 + .../python3.12/site-packages/yaml/nodes.py | 49 + .../python3.12/site-packages/yaml/parser.py | 589 ++ .../python3.12/site-packages/yaml/reader.py | 185 + .../site-packages/yaml/representer.py | 389 + .../python3.12/site-packages/yaml/resolver.py | 227 + .../python3.12/site-packages/yaml/scanner.py | 1435 +++ .../site-packages/yaml/serializer.py | 111 + .../python3.12/site-packages/yaml/tokens.py | 104 + .../src/assets/game/tableGenerator/env/lib64 | 1 + .../assets/game/tableGenerator/env/pyvenv.cfg | 5 + 880 files changed, 143161 insertions(+) create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/INSTALLER create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/LICENSE create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/METADATA create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/RECORD create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/REQUESTED create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/WHEEL create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/top_level.txt create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/_yaml/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/INSTALLER create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/LICENSE.txt create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/REQUESTED create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__main__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pip-runner__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/build_env.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cache.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/base_command.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/command_context.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/index_command.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/main.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/parser.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/req_command.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/spinners.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/cache.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/check.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/completion.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/configuration.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/debug.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/download.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/freeze.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/hash.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/help.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/index.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/inspect.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/install.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/list.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/search.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/show.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/wheel.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/configuration.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/base.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/installed.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/exceptions.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/collector.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/package_finder.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/sources.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/base.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/main.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/_json.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/base.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/candidate.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/direct_url.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/format_control.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/index.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/installation_report.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/link.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/scheme.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/search_scope.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/target_python.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/wheel.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/auth.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/cache.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/download.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/session.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/utils.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/check.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/freeze.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/prepare.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/pyproject.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/constructors.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_file.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_install.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_set.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/base.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/_log.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/compat.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/datetime.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/encoding.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/glibc.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/hashes.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/logging.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/misc.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/packaging.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/retry.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/urls.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/wheel.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/git.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/wheel_builder.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/core.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/database.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/index.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/util.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/version.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/distro.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/codec.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/compat.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/core.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/version.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/console.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/style.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/token.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/util.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/api.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/auth.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/certs.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/compat.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/help.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/models.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/packages.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/structures.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/requests/utils.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/abc.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/align.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/bar.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/box.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/cells.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/color.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/columns.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/console.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/containers.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/control.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/errors.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/json.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/layout.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/live.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/logging.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/markup.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/measure.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/padding.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/pager.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/palette.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/panel.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/progress.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/region.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/repr.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/rule.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/scope.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/screen.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/segment.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/status.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/style.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/styled.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/table.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/text.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/theme.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/themes.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/tree.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/vendor.txt create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/py.typed create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__init__.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/__init__.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/composer.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/constructor.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/cyaml.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/dumper.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/emitter.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/error.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/events.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/loader.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/nodes.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/parser.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/reader.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/representer.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/resolver.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/scanner.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/serializer.cpython-312.pyc create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/__pycache__/tokens.cpython-312.pyc create mode 100755 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/_yaml.cpython-312-x86_64-linux-gnu.so create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/composer.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/constructor.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/cyaml.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/dumper.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/emitter.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/error.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/events.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/loader.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/nodes.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/parser.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/reader.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/representer.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/resolver.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/scanner.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/serializer.py create mode 100644 server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/yaml/tokens.py create mode 120000 server/src/assets/game/tableGenerator/env/lib64 create mode 100644 server/src/assets/game/tableGenerator/env/pyvenv.cfg diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/INSTALLER b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/LICENSE b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/LICENSE new file mode 100644 index 00000000..2f1b8e15 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2017-2021 Ingy döt Net +Copyright (c) 2006-2016 Kirill Simonov + +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. diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/METADATA b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/METADATA new file mode 100644 index 00000000..db029b77 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/METADATA @@ -0,0 +1,46 @@ +Metadata-Version: 2.1 +Name: PyYAML +Version: 6.0.2 +Summary: YAML parser and emitter for Python +Home-page: https://pyyaml.org/ +Download-URL: https://pypi.org/project/PyYAML/ +Author: Kirill Simonov +Author-email: xi@resolvent.net +License: MIT +Project-URL: Bug Tracker, https://github.com/yaml/pyyaml/issues +Project-URL: CI, https://github.com/yaml/pyyaml/actions +Project-URL: Documentation, https://pyyaml.org/wiki/PyYAMLDocumentation +Project-URL: Mailing lists, http://lists.sourceforge.net/lists/listinfo/yaml-core +Project-URL: Source Code, https://github.com/yaml/pyyaml +Platform: Any +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Cython +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Text Processing :: Markup +Requires-Python: >=3.8 +License-File: LICENSE + +YAML is a data serialization format designed for human readability +and interaction with scripting languages. PyYAML is a YAML parser +and emitter for Python. + +PyYAML features a complete YAML 1.1 parser, Unicode support, pickle +support, capable extension API, and sensible error messages. PyYAML +supports standard YAML tags and provides Python-specific tags that +allow to represent an arbitrary Python object. + +PyYAML is applicable for a broad range of tasks from complex +configuration files to object serialization and persistence. diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/RECORD b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/RECORD new file mode 100644 index 00000000..e607e702 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/RECORD @@ -0,0 +1,44 @@ +PyYAML-6.0.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +PyYAML-6.0.2.dist-info/LICENSE,sha256=jTko-dxEkP1jVwfLiOsmvXZBAqcoKVQwfT5RZ6V36KQ,1101 +PyYAML-6.0.2.dist-info/METADATA,sha256=9-odFB5seu4pGPcEv7E8iyxNF51_uKnaNGjLAhz2lto,2060 +PyYAML-6.0.2.dist-info/RECORD,, +PyYAML-6.0.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +PyYAML-6.0.2.dist-info/WHEEL,sha256=1pP4yhrbipRtdbm4Rbg3aoTjzc7pDhpHKO0CEY24CNM,152 +PyYAML-6.0.2.dist-info/top_level.txt,sha256=rpj0IVMTisAjh_1vG3Ccf9v5jpCQwAz6cD1IVU5ZdhQ,11 +_yaml/__init__.py,sha256=04Ae_5osxahpJHa3XBZUAf4wi6XX32gR8D6X6p64GEA,1402 +_yaml/__pycache__/__init__.cpython-312.pyc,, +yaml/__init__.py,sha256=N35S01HMesFTe0aRRMWkPj0Pa8IEbHpE9FK7cr5Bdtw,12311 +yaml/__pycache__/__init__.cpython-312.pyc,, +yaml/__pycache__/composer.cpython-312.pyc,, +yaml/__pycache__/constructor.cpython-312.pyc,, +yaml/__pycache__/cyaml.cpython-312.pyc,, +yaml/__pycache__/dumper.cpython-312.pyc,, +yaml/__pycache__/emitter.cpython-312.pyc,, +yaml/__pycache__/error.cpython-312.pyc,, +yaml/__pycache__/events.cpython-312.pyc,, +yaml/__pycache__/loader.cpython-312.pyc,, +yaml/__pycache__/nodes.cpython-312.pyc,, +yaml/__pycache__/parser.cpython-312.pyc,, +yaml/__pycache__/reader.cpython-312.pyc,, +yaml/__pycache__/representer.cpython-312.pyc,, +yaml/__pycache__/resolver.cpython-312.pyc,, +yaml/__pycache__/scanner.cpython-312.pyc,, +yaml/__pycache__/serializer.cpython-312.pyc,, +yaml/__pycache__/tokens.cpython-312.pyc,, +yaml/_yaml.cpython-312-x86_64-linux-gnu.so,sha256=PJFgxnc0f5Dyde6WKmBm6fZWapawmWl7aBRruXjRA80,2481784 +yaml/composer.py,sha256=_Ko30Wr6eDWUeUpauUGT3Lcg9QPBnOPVlTnIMRGJ9FM,4883 +yaml/constructor.py,sha256=kNgkfaeLUkwQYY_Q6Ff1Tz2XVw_pG1xVE9Ak7z-viLA,28639 +yaml/cyaml.py,sha256=6ZrAG9fAYvdVe2FK_w0hmXoG7ZYsoYUwapG8CiC72H0,3851 +yaml/dumper.py,sha256=PLctZlYwZLp7XmeUdwRuv4nYOZ2UBnDIUy8-lKfLF-o,2837 +yaml/emitter.py,sha256=jghtaU7eFwg31bG0B7RZea_29Adi9CKmXq_QjgQpCkQ,43006 +yaml/error.py,sha256=Ah9z-toHJUbE9j-M8YpxgSRM5CgLCcwVzJgLLRF2Fxo,2533 +yaml/events.py,sha256=50_TksgQiE4up-lKo_V-nBy-tAIxkIPQxY5qDhKCeHw,2445 +yaml/loader.py,sha256=UVa-zIqmkFSCIYq_PgSGm4NSJttHY2Rf_zQ4_b1fHN0,2061 +yaml/nodes.py,sha256=gPKNj8pKCdh2d4gr3gIYINnPOaOxGhJAUiYhGRnPE84,1440 +yaml/parser.py,sha256=ilWp5vvgoHFGzvOZDItFoGjD6D42nhlZrZyjAwa0oJo,25495 +yaml/reader.py,sha256=0dmzirOiDG4Xo41RnuQS7K9rkY3xjHiVasfDMNTqCNw,6794 +yaml/representer.py,sha256=IuWP-cAW9sHKEnS0gCqSa894k1Bg4cgTxaDwIcbRQ-Y,14190 +yaml/resolver.py,sha256=9L-VYfm4mWHxUD1Vg4X7rjDRK_7VZd6b92wzq7Y2IKY,9004 +yaml/scanner.py,sha256=YEM3iLZSaQwXcQRg2l2R4MdT0zGP2F9eHkKGKnHyWQY,51279 +yaml/serializer.py,sha256=ChuFgmhU01hj4xgI8GaKv6vfM2Bujwa9i7d2FAHj7cA,4165 +yaml/tokens.py,sha256=lTQIzSVw8Mg9wv459-TjiOQe6wVziqaRlqX2_89rp54,2573 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/REQUESTED b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/REQUESTED new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/WHEEL b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/WHEEL new file mode 100644 index 00000000..56616a86 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.44.0) +Root-Is-Purelib: false +Tag: cp312-cp312-manylinux_2_17_x86_64 +Tag: cp312-cp312-manylinux2014_x86_64 + diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/top_level.txt b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/top_level.txt new file mode 100644 index 00000000..e6475e91 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/top_level.txt @@ -0,0 +1,2 @@ +_yaml +yaml diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/_yaml/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/_yaml/__init__.py new file mode 100644 index 00000000..7baa8c4b --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/_yaml/__init__.py @@ -0,0 +1,33 @@ +# This is a stub package designed to roughly emulate the _yaml +# extension module, which previously existed as a standalone module +# and has been moved into the `yaml` package namespace. +# It does not perfectly mimic its old counterpart, but should get +# close enough for anyone who's relying on it even when they shouldn't. +import yaml + +# in some circumstances, the yaml module we imoprted may be from a different version, so we need +# to tread carefully when poking at it here (it may not have the attributes we expect) +if not getattr(yaml, '__with_libyaml__', False): + from sys import version_info + + exc = ModuleNotFoundError if version_info >= (3, 6) else ImportError + raise exc("No module named '_yaml'") +else: + from yaml._yaml import * + import warnings + warnings.warn( + 'The _yaml extension module is now located at yaml._yaml' + ' and its location is subject to change. To use the' + ' LibYAML-based parser and emitter, import from `yaml`:' + ' `from yaml import CLoader as Loader, CDumper as Dumper`.', + DeprecationWarning + ) + del warnings + # Don't `del yaml` here because yaml is actually an existing + # namespace member of _yaml. + +__name__ = '_yaml' +# If the module is top-level (i.e. not a part of any specific package) +# then the attribute should be set to ''. +# https://docs.python.org/3.8/library/types.html +__package__ = '' diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..309f882acd37df259e2d4c65c8008abe9ec4ca02 GIT binary patch literal 908 zcmYjP&1(}u6rcS_viWLlOD&?p^pr-LEb2iJ5u~*$G{r-qmwCPLp_aXXw!1@&7xaqmWEojc#?$I;&X%y zeCd(EZx3l05VBI$;?fRq;j@VN(H5)fC&{2ES#|BrtuY)jw;uqGXb3K@kc3uIB<;%H z@wx|i9Kf(EAxdhT!F_=vHoyUMs8l>EaYC%8Xd1cLmm +License: MIT +Project-URL: Homepage, https://pip.pypa.io/ +Project-URL: Documentation, https://pip.pypa.io +Project-URL: Source, https://github.com/pypa/pip +Project-URL: Changelog, https://pip.pypa.io/en/stable/news/ +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Topic :: Software Development :: Build Tools +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Requires-Python: >=3.8 +Description-Content-Type: text/x-rst +License-File: LICENSE.txt +License-File: AUTHORS.txt + +pip - The Python Package Installer +================================== + +.. |pypi-version| image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + :alt: PyPI + +.. |python-versions| image:: https://img.shields.io/pypi/pyversions/pip + :target: https://pypi.org/project/pip + :alt: PyPI - Python Version + +.. |docs-badge| image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + :alt: Documentation + +|pypi-version| |python-versions| |docs-badge| + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installation/ +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa +.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD new file mode 100644 index 00000000..6d85f56d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD @@ -0,0 +1,853 @@ +../../../bin/pip,sha256=DE6gngehk2sq7k1nskXCKbWSQ9hRwfcDh4CoeGSnmac,299 +../../../bin/pip3,sha256=DE6gngehk2sq7k1nskXCKbWSQ9hRwfcDh4CoeGSnmac,299 +../../../bin/pip3.12,sha256=DE6gngehk2sq7k1nskXCKbWSQ9hRwfcDh4CoeGSnmac,299 +pip-24.2.dist-info/AUTHORS.txt,sha256=KDa8Pd3GDeKSogF6yFW0l9A9eMneLDOFrcIDqkL8G8s,10868 +pip-24.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-24.2.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-24.2.dist-info/METADATA,sha256=PhzCxQxIhsnZ871cPUe3Hew9PhhpgflLbfqU3WizZqM,3624 +pip-24.2.dist-info/RECORD,, +pip-24.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-24.2.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91 +pip-24.2.dist-info/entry_points.txt,sha256=eeIjuzfnfR2PrhbjnbzFU6MnSS70kZLxwaHHq6M-bD0,87 +pip-24.2.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=EQxEGXUQIu-9fNJxVEK74ufx_fTk_HpYV9lAbw-WWbs,355 +pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854 +pip/__pip-runner__.py,sha256=cPPWuJ6NK_k-GzfvlejLFgwzmYUROmpAR6QC3Q-vkXQ,1450 +pip/__pycache__/__init__.cpython-312.pyc,, +pip/__pycache__/__main__.cpython-312.pyc,, +pip/__pycache__/__pip-runner__.cpython-312.pyc,, +pip/_internal/__init__.py,sha256=MfcoOluDZ8QMCFYal04IqOJ9q6m2V7a0aOsnI-WOxUo,513 +pip/_internal/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/__pycache__/build_env.cpython-312.pyc,, +pip/_internal/__pycache__/cache.cpython-312.pyc,, +pip/_internal/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/__pycache__/exceptions.cpython-312.pyc,, +pip/_internal/__pycache__/main.cpython-312.pyc,, +pip/_internal/__pycache__/pyproject.cpython-312.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-312.pyc,, +pip/_internal/build_env.py,sha256=QiusW8QEaj387y0hdRqVbuelHSHGYcT7WzVckbmMhR0,10420 +pip/_internal/cache.py,sha256=Jb698p5PNigRtpW5o26wQNkkUv4MnQ94mc471wL63A0,10369 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-312.pyc,, +pip/_internal/cli/__pycache__/index_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main.cpython-312.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-312.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-312.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-312.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc,, +pip/_internal/cli/autocompletion.py,sha256=Lli3Mr6aDNu7ZkJJFFvwD2-hFxNI6Avz8OwMyS5TVrs,6865 +pip/_internal/cli/base_command.py,sha256=F8nUcSM-Y-MQljJUe724-yxmc5viFXHyM_zH70NmIh4,8289 +pip/_internal/cli/cmdoptions.py,sha256=mDqBr0d0hoztbRJs-PWtcKpqNAc7khU6ZpoesZKocT8,30110 +pip/_internal/cli/command_context.py,sha256=RHgIPwtObh5KhMrd3YZTkl8zbVG-6Okml7YbFX4Ehg0,774 +pip/_internal/cli/index_command.py,sha256=YIJ84cfYcbDBACnB8eoDgqjYJU6GpiWP2Rh7Ij-Xyak,5633 +pip/_internal/cli/main.py,sha256=BDZef-bWe9g9Jpr4OVs4dDf-845HJsKw835T7AqEnAc,2817 +pip/_internal/cli/main_parser.py,sha256=laDpsuBDl6kyfywp9eMMA9s84jfH2TJJn-vmL0GG90w,4338 +pip/_internal/cli/parser.py,sha256=QAkY6s8N-AD7w5D2PQm2Y8C2MIJSv7iuAeNjOMvDBUA,10811 +pip/_internal/cli/progress_bars.py,sha256=0FAf7eN67KnIv_gZQhTWSnKXXUzQko1ftGXEoLe5Yec,2713 +pip/_internal/cli/req_command.py,sha256=DqeFhmUMs6o6Ev8qawAcOoYNdAZsfyKS0MZI5jsJYwQ,12250 +pip/_internal/cli/spinners.py,sha256=hIJ83GerdFgFCdobIA23Jggetegl_uC4Sp586nzFbPE,5118 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=5oRO9O3dM2vGuh0bFw4HOVletryrz5HHMmmPWwJrH9U,3882 +pip/_internal/commands/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-312.pyc,, +pip/_internal/commands/__pycache__/check.cpython-312.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-312.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-312.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-312.pyc,, +pip/_internal/commands/__pycache__/download.cpython-312.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-312.pyc,, +pip/_internal/commands/__pycache__/help.cpython-312.pyc,, +pip/_internal/commands/__pycache__/index.cpython-312.pyc,, +pip/_internal/commands/__pycache__/inspect.cpython-312.pyc,, +pip/_internal/commands/__pycache__/install.cpython-312.pyc,, +pip/_internal/commands/__pycache__/list.cpython-312.pyc,, +pip/_internal/commands/__pycache__/search.cpython-312.pyc,, +pip/_internal/commands/__pycache__/show.cpython-312.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/commands/cache.py,sha256=xg76_ZFEBC6zoQ3gXLRfMZJft4z2a0RwH4GEFZC6nnU,7944 +pip/_internal/commands/check.py,sha256=Hr_4eiMd9cgVDgEvjtIdw915NmL7ROIWW8enkr8slPQ,2268 +pip/_internal/commands/completion.py,sha256=HT4lD0bgsflHq2IDgYfiEdp7IGGtE7s6MgI3xn0VQEw,4287 +pip/_internal/commands/configuration.py,sha256=n98enwp6y0b5G6fiRQjaZo43FlJKYve_daMhN-4BRNc,9766 +pip/_internal/commands/debug.py,sha256=DNDRgE9YsKrbYzU0s3VKi8rHtKF4X13CJ_br_8PUXO0,6797 +pip/_internal/commands/download.py,sha256=0qB0nys6ZEPsog451lDsjL5Bx7Z97t-B80oFZKhpzKM,5273 +pip/_internal/commands/freeze.py,sha256=2Vt72BYTSm9rzue6d8dNzt8idxWK4Db6Hd-anq7GQ80,3203 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=RAXxmJwFhVb5S1BYzb5ifX3sn9Na8v2CCVYwSMP8pao,4731 +pip/_internal/commands/inspect.py,sha256=PGrY9TRTRCM3y5Ml8Bdk8DEOXquWRfscr4DRo1LOTPc,3189 +pip/_internal/commands/install.py,sha256=iqesiLIZc6Op9uihMQFYRhAA2DQRZUxbM4z1BwXoFls,29428 +pip/_internal/commands/list.py,sha256=RgaIV4kN-eMSpgUAXc-6bjnURzl0v3cRE11xr54O9Cg,12771 +pip/_internal/commands/search.py,sha256=hSGtIHg26LRe468Ly7oZ6gfd9KbTxBRZAAtJc9Um6S4,5628 +pip/_internal/commands/show.py,sha256=IG9L5uo8w6UA4tI_IlmaxLCoNKPa5JNJCljj3NWs0OE,7507 +pip/_internal/commands/uninstall.py,sha256=7pOR7enK76gimyxQbzxcG1OsyLXL3DvX939xmM8Fvtg,3892 +pip/_internal/commands/wheel.py,sha256=eJRhr_qoNNxWAkkdJCNiQM7CXd4E1_YyQhsqJnBPGGg,6414 +pip/_internal/configuration.py,sha256=XkAiBS0hpzsM-LF0Qu5hvPWO_Bs67-oQKRYFBuMbESs,14006 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/distributions/base.py,sha256=QeB9qvKXDIjLdPBDE5fMgpfGqMMCr-govnuoQnGuiF8,1783 +pip/_internal/distributions/installed.py,sha256=QinHFbWAQ8oE0pbD8MFZWkwlnfU1QYTccA1vnhrlYOU,842 +pip/_internal/distributions/sdist.py,sha256=PlcP4a6-R6c98XnOM-b6Lkb3rsvh9iG4ok8shaanrzs,6751 +pip/_internal/distributions/wheel.py,sha256=THBYfnv7VVt8mYhMYUtH13S1E7FDwtDyDfmUcl8ai0E,1317 +pip/_internal/exceptions.py,sha256=6qcW3QgmFVlRxlZvDSLUhSzKJ7_Tedo-lyqWA6NfdAU,25371 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/index/__pycache__/collector.cpython-312.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-312.pyc,, +pip/_internal/index/__pycache__/sources.cpython-312.pyc,, +pip/_internal/index/collector.py,sha256=RdPO0JLAlmyBWPAWYHPyRoGjz3GNAeTngCNkbGey_mE,16265 +pip/_internal/index/package_finder.py,sha256=yRC4xsyudwKnNoU6IXvNoyqYo5ScT7lB6Wa-z2eh7cs,37666 +pip/_internal/index/sources.py,sha256=dJegiR9f86kslaAHcv9-R5L_XBf5Rzm_FkyPteDuPxI,8688 +pip/_internal/locations/__init__.py,sha256=UaAxeZ_f93FyouuFf4p7SXYF-4WstXuEvd3LbmPCAno,14925 +pip/_internal/locations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc,, +pip/_internal/locations/__pycache__/base.cpython-312.pyc,, +pip/_internal/locations/_distutils.py,sha256=H9ZHK_35rdDV1Qsmi4QeaBULjFT4Mbu6QuoVGkJ6QHI,6009 +pip/_internal/locations/_sysconfig.py,sha256=IGzds60qsFneRogC-oeBaY7bEh3lPt_v47kMJChQXsU,7724 +pip/_internal/locations/base.py,sha256=RQiPi1d4FVM2Bxk04dQhXZ2PqkeljEL2fZZ9SYqIQ78,2556 +pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 +pip/_internal/metadata/__init__.py,sha256=9pU3W3s-6HtjFuYhWcLTYVmSaziklPv7k2x8p7X1GmA,4339 +pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/_json.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-312.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc,, +pip/_internal/metadata/_json.py,sha256=P0cAJrH_mtmMZvlZ16ZXm_-izA4lpr5wy08laICuiaA,2644 +pip/_internal/metadata/base.py,sha256=ft0K5XNgI4ETqZnRv2-CtvgYiMOMAeGMAzxT-f6VLJA,25298 +pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135 +pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc,, +pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc,, +pip/_internal/metadata/importlib/_compat.py,sha256=c6av8sP8BBjAZuFSJow1iWfygUXNM3xRTCn5nqw6B9M,2796 +pip/_internal/metadata/importlib/_dists.py,sha256=anh0mLI-FYRPUhAdipd0Va3YJJc6HelCKQ0bFhY10a0,8017 +pip/_internal/metadata/importlib/_envs.py,sha256=JHjNfnk9RsjrcQw8dLBqdfBglOKSepEe9aq03B4nRpU,7431 +pip/_internal/metadata/pkg_resources.py,sha256=U07ETAINSGeSRBfWUG93E4tZZbaW_f7PGzEqZN0hulc,10542 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-312.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-312.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-312.pyc,, +pip/_internal/models/__pycache__/index.cpython-312.pyc,, +pip/_internal/models/__pycache__/installation_report.cpython-312.pyc,, +pip/_internal/models/__pycache__/link.cpython-312.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-312.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-312.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-312.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/models/candidate.py,sha256=zzgFRuw_kWPjKpGw7LC0ZUMD2CQ2EberUIYs8izjdCA,753 +pip/_internal/models/direct_url.py,sha256=uBtY2HHd3TO9cKQJWh0ThvE5FRr-MWRYChRU4IG9HZE,6578 +pip/_internal/models/format_control.py,sha256=wtsQqSK9HaUiNxQEuB-C62eVimw6G4_VQFxV9-_KDBE,2486 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/installation_report.py,sha256=zRVZoaz-2vsrezj_H3hLOhMZCK9c7TbzWgC-jOalD00,2818 +pip/_internal/models/link.py,sha256=jHax9O-9zlSzEwjBCDkx0OXjKXwBDwOuPwn-PsR8dCs,21034 +pip/_internal/models/scheme.py,sha256=PakmHJM3e8OOWSZFtfz1Az7f1meONJnkGuQxFlt3wBE,575 +pip/_internal/models/search_scope.py,sha256=67NEnsYY84784S-MM7ekQuo9KXLH-7MzFntXjapvAo0,4531 +pip/_internal/models/selection_prefs.py,sha256=qaFfDs3ciqoXPg6xx45N1jPLqccLJw4N0s4P0PyHTQ8,2015 +pip/_internal/models/target_python.py,sha256=2XaH2rZ5ZF-K5wcJbEMGEl7SqrTToDDNkrtQ2v_v_-Q,4271 +pip/_internal/models/wheel.py,sha256=Odc1NVWL5N-i6A3vFa50BfNvCRlGvGa4som60FQM198,3601 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/network/__pycache__/auth.cpython-312.pyc,, +pip/_internal/network/__pycache__/cache.cpython-312.pyc,, +pip/_internal/network/__pycache__/download.cpython-312.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc,, +pip/_internal/network/__pycache__/session.cpython-312.pyc,, +pip/_internal/network/__pycache__/utils.cpython-312.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc,, +pip/_internal/network/auth.py,sha256=D4gASjUrqoDFlSt6gQ767KAAjv6PUyJU0puDlhXNVRE,20809 +pip/_internal/network/cache.py,sha256=48A971qCzKNFvkb57uGEk7-0xaqPS0HWj2711QNTxkU,3935 +pip/_internal/network/download.py,sha256=FLOP29dPYECBiAi7eEjvAbNkyzaKNqbyjOT2m8HPW8U,6048 +pip/_internal/network/lazy_wheel.py,sha256=2PXVduYZPCPZkkQFe1J1GbfHJWeCU--FXonGyIfw9eU,7638 +pip/_internal/network/session.py,sha256=XmanBKjVwPFmh1iJ58q6TDh9xabH37gREuQJ_feuZGA,18741 +pip/_internal/network/utils.py,sha256=Inaxel-NxBu4PQWkjyErdnfewsFCcgHph7dzR1-FboY,4088 +pip/_internal/network/xmlrpc.py,sha256=sAxzOacJ-N1NXGPvap9jC3zuYWSnnv3GXtgR2-E2APA,1838 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/__pycache__/check.cpython-312.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-312.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-312.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc,, +pip/_internal/operations/build/build_tracker.py,sha256=-ARW_TcjHCOX7D2NUOGntB4Fgc6b4aolsXkAK6BWL7w,4774 +pip/_internal/operations/build/metadata.py,sha256=9S0CUD8U3QqZeXp-Zyt8HxwU90lE4QrnYDgrqZDzBnc,1422 +pip/_internal/operations/build/metadata_editable.py,sha256=VLL7LvntKE8qxdhUdEJhcotFzUsOSI8NNS043xULKew,1474 +pip/_internal/operations/build/metadata_legacy.py,sha256=8i6i1QZX9m_lKPStEFsHKM0MT4a-CD408JOw99daLmo,2190 +pip/_internal/operations/build/wheel.py,sha256=sT12FBLAxDC6wyrDorh8kvcZ1jG5qInCRWzzP-UkJiQ,1075 +pip/_internal/operations/build/wheel_editable.py,sha256=yOtoH6zpAkoKYEUtr8FhzrYnkNHQaQBjWQ2HYae1MQg,1417 +pip/_internal/operations/build/wheel_legacy.py,sha256=K-6kNhmj-1xDF45ny1yheMerF0ui4EoQCLzEoHh6-tc,3045 +pip/_internal/operations/check.py,sha256=L24vRL8VWbyywdoeAhM89WCd8zLTnjIbULlKelUgIec,5912 +pip/_internal/operations/freeze.py,sha256=V59yEyCSz_YhZuhH09-6aV_zvYBMrS_IxFFNqn2QzlA,9864 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=PoEsNEPGbIZ2yQphPsmYTKLOCMs4gv5OcCdzW124NcA,1283 +pip/_internal/operations/install/wheel.py,sha256=X5Iz9yUg5LlK5VNQ9g2ikc6dcRu8EPi_SUi5iuEDRgo,27615 +pip/_internal/operations/prepare.py,sha256=joWJwPkuqGscQgVNImLK71e9hRapwKvRCM8HclysmvU,28118 +pip/_internal/pyproject.py,sha256=rw4fwlptDp1hZgYoplwbAGwWA32sWQkp7ysf8Ju6iXc,7287 +pip/_internal/req/__init__.py,sha256=HxBFtZy_BbCclLgr26waMtpzYdO5T3vxePvpGAXSt5s,2653 +pip/_internal/req/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-312.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc,, +pip/_internal/req/constructors.py,sha256=qXNZtUqhsXpHxkRaIQhp20_Kz6I88MDKM8SQR9fckIc,18424 +pip/_internal/req/req_file.py,sha256=hnC9Oz-trqGQpuDnCVWqwpJkAvtbCsk7-5k0EWVQhlQ,17687 +pip/_internal/req/req_install.py,sha256=yhT98NGDoAEk03jznTJnYCznzhiMEEA2ocgsUG_dcNU,35788 +pip/_internal/req/req_set.py,sha256=j3esG0s6SzoVReX9rWn4rpYNtyET_fwxbwJPRimvRxo,2858 +pip/_internal/req/req_uninstall.py,sha256=qzDIxJo-OETWqGais7tSMCDcWbATYABT-Tid3ityF0s,23853 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=3HZiJBRd1FTN6jQpI4qRO8-TbLYeIbUTS6PFvXnXs2w,24068 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=DCf669FsqyQY5uqXeePDHQY1e4QO-pBzWH8O0s9-K94,5023 +pip/_internal/resolution/resolvelib/candidates.py,sha256=07CBc85ya3J19XqdvUsLQwtVIxiTYq9km9hbTRh0jb0,19823 +pip/_internal/resolution/resolvelib/factory.py,sha256=mTTq_nG1F9Eq3VnlYPH6Ap-mydcS-mxC5y5L-CLLp80,32459 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=9hrTyQqFvl9I7Tji79F1AxHv39Qh1rkJ_7deSHSMfQc,6383 +pip/_internal/resolution/resolvelib/provider.py,sha256=bcsFnYvlmtB80cwVdW1fIwgol8ZNr1f1VHyRTkz47SM,9935 +pip/_internal/resolution/resolvelib/reporter.py,sha256=00JtoXEkTlw0-rl_sl54d71avwOsJHt9GGHcrj5Sza0,3168 +pip/_internal/resolution/resolvelib/requirements.py,sha256=7JG4Z72e5Yk4vU0S5ulGvbqTy4FMQGYhY5zQhX9zTtY,8065 +pip/_internal/resolution/resolvelib/resolver.py,sha256=nLJOsVMEVi2gQUVJoUFKMZAeu2f7GRMjGMvNSWyz0Bc,12592 +pip/_internal/self_outdated_check.py,sha256=pkjQixuWyQ1vrVxZAaYD6SSHgXuFUnHZybXEWTkh0S0,8145 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-312.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-312.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-312.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-312.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-312.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-312.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-312.pyc,, +pip/_internal/utils/__pycache__/retry.cpython-312.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-312.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-312.pyc,, +pip/_internal/utils/_jaraco_text.py,sha256=M15uUPIh5NpP1tdUGBxRau6q1ZAEtI8-XyLEETscFfE,3350 +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 +pip/_internal/utils/compat.py,sha256=ckkFveBiYQjRWjkNsajt_oWPS57tJvE8XxoC4OIYgCY,2399 +pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377 +pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 +pip/_internal/utils/deprecation.py,sha256=k7Qg_UBAaaTdyq82YVARA6D7RmcGTXGv7fnfcgigj4Q,3707 +pip/_internal/utils/direct_url_helpers.py,sha256=r2MRtkVDACv9AGqYODBUC9CjwgtsUU1s68hmgfCJMtA,3196 +pip/_internal/utils/egg_link.py,sha256=0FePZoUYKv4RGQ2t6x7w5Z427wbA_Uo3WZnAkrgsuqo,2463 +pip/_internal/utils/encoding.py,sha256=qqsXDtiwMIjXMEiIVSaOjwH5YmirCaK-dIzb6-XJsL0,1169 +pip/_internal/utils/entrypoints.py,sha256=YlhLTRl2oHBAuqhc-zmL7USS67TPWVHImjeAQHreZTQ,3064 +pip/_internal/utils/filesystem.py,sha256=ajvA-q4ocliW9kPp8Yquh-4vssXbu-UKbo5FV9V4X64,4950 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=vUkWq_1pJuzcYNcGKLlQmABoUiisK8noYY1yc8Wq4w4,3734 +pip/_internal/utils/hashes.py,sha256=XGGLL0AG8-RhWnyz87xF6MFZ--BKadHU35D47eApCKI,4972 +pip/_internal/utils/logging.py,sha256=7BFKB1uFjdxD5crM-GtwA5T2qjbQ2LPD-gJDuJeDNTg,11606 +pip/_internal/utils/misc.py,sha256=HR_V97vNTHNzwq01JrnTZtsLLkWAOJ9_EeYfHJZSgDY,23745 +pip/_internal/utils/packaging.py,sha256=iI3LH43lVNR4hWBOqF6lFsZq4aycb2j0UcHlmDmcqUg,2109 +pip/_internal/utils/retry.py,sha256=mhFbykXjhTnZfgzeuy-vl9c8nECnYn_CMtwNJX2tYzQ,1392 +pip/_internal/utils/setuptools_build.py,sha256=ouXpud-jeS8xPyTPsXJ-m34NPvK5os45otAzdSV_IJE,4435 +pip/_internal/utils/subprocess.py,sha256=EsvqSRiSMHF98T8Txmu6NLU3U--MpTTQjtNgKP0P--M,8988 +pip/_internal/utils/temp_dir.py,sha256=5qOXe8M4JeY6vaFQM867d5zkp1bSwMZ-KT5jymmP0Zg,9310 +pip/_internal/utils/unpacking.py,sha256=eyDkSsk4nW8ZfiSjNzJduCznpHyaGHVv3ak_LMGsiEM,11951 +pip/_internal/utils/urls.py,sha256=qceSOZb5lbNDrHNsv7_S4L4Ytszja5NwPKUMnZHbYnM,1599 +pip/_internal/utils/virtualenv.py,sha256=S6f7csYorRpiD6cvn3jISZYc3I8PJC43H5iMFpRAEDU,3456 +pip/_internal/utils/wheel.py,sha256=b442jkydFHjXzDy6cMR7MpzWBJ1Q82hR5F33cmcHV3g,4494 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc,, +pip/_internal/vcs/bazaar.py,sha256=EKStcQaKpNu0NK4p5Q10Oc4xb3DUxFw024XrJy40bFQ,3528 +pip/_internal/vcs/git.py,sha256=3tpc9LQA_J4IVW5r5NvWaaSeDzcmJOrSFZN0J8vIKfU,18177 +pip/_internal/vcs/mercurial.py,sha256=oULOhzJ2Uie-06d1omkL-_Gc6meGaUkyogvqG9ZCyPs,5249 +pip/_internal/vcs/subversion.py,sha256=ddTugHBqHzV3ebKlU5QXHPN4gUqlyXbOx8q8NgXKvs8,11735 +pip/_internal/vcs/versioncontrol.py,sha256=cvf_-hnTAjQLXJ3d17FMNhQfcO1AcKWUF10tfrYyP-c,22440 +pip/_internal/wheel_builder.py,sha256=DL3A8LKeRj_ACp11WS5wSgASgPFqeyAeXJKdXfmaWXU,11799 +pip/_vendor/__init__.py,sha256=JYuAXvClhInxIrA2FTp5p-uuWVL7WV6-vEpTs46-Qh4,4873 +pip/_vendor/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=GiYoagwPEiJ_xR_lbwWGaoCiPtF_rz4isjfjdDAgHU4,676 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737 +pip/_vendor/cachecontrol/adapter.py,sha256=fByO_Pd_EOemjWbuocvBWdN85xT0q_TBm2lxS6vD4fk,6355 +pip/_vendor/cachecontrol/cache.py,sha256=OTQj72tUf8C1uEgczdl3Gc8vkldSzsTITKtDGKMx4z8,1952 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=9AlmmTJc6cslb6k5z_6q0sGPHVrMj8zv-uWy-simmfE,5406 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386 +pip/_vendor/cachecontrol/controller.py,sha256=o-ejGJlBmpKK8QQLyTPJj0t7siU8XVHXuV8MCybCxQ8,18575 +pip/_vendor/cachecontrol/filewrapper.py,sha256=STttGmIPBvZzt2b51dUOwoWX5crcMCpKZOisM3f5BNc,4292 +pip/_vendor/cachecontrol/heuristics.py,sha256=IYe4QmHERWsMvtxNrp920WeaIsaTTyqLB14DSheSbtY,4834 +pip/_vendor/cachecontrol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/cachecontrol/serialize.py,sha256=HQd2IllQ05HzPkVLMXTF2uX5mjEQjDBkxCqUJUODpZk,5163 +pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417 +pip/_vendor/certifi/__init__.py,sha256=LHXz7E80YJYBzCBv6ZyidQ5-ciYSkSebpY2E5OM0l7o,94 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-312.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=SIupYGAr8HzGP073rsEIaS_sQYIPwzKKjj894DgUmu4,291528 +pip/_vendor/certifi/core.py,sha256=2SRT5rIcQChFDbe37BQa-kULxAgJ8qN6l1jfqTp4HIs,4486 +pip/_vendor/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/distlib/__init__.py,sha256=hJKF7FHoqbmGckncDuEINWo_OYkDNiHODtYXSMcvjcc,625 +pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-312.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc,, +pip/_vendor/distlib/compat.py,sha256=Un-uIBvy02w-D267OG4VEhuddqWgKj9nNkxVltAb75w,41487 +pip/_vendor/distlib/database.py,sha256=0V9Qvs0Vrxa2F_-hLWitIyVyRifJ0pCxyOI-kEOBwsA,51965 +pip/_vendor/distlib/index.py,sha256=lTbw268rRhj8dw1sib3VZ_0EhSGgoJO3FKJzSFMOaeA,20797 +pip/_vendor/distlib/locators.py,sha256=o1r_M86_bRLafSpetmyfX8KRtFu-_Q58abvQrnOSnbA,51767 +pip/_vendor/distlib/manifest.py,sha256=3qfmAmVwxRqU1o23AlfXrQGZzh6g_GGzTAP_Hb9C5zQ,14168 +pip/_vendor/distlib/markers.py,sha256=n3DfOh1yvZ_8EW7atMyoYeZFXjYla0Nz0itQlojCd0A,5268 +pip/_vendor/distlib/metadata.py,sha256=pB9WZ9mBfmQxc9OVIldLS5CjOoQRvKAvUwwQyKwKQtQ,39693 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=8_gP9J7_tlNRicnWmPX4ZiDlP5wTwJKDeeg-8_qXUZU,18780 +pip/_vendor/distlib/t32.exe,sha256=a0GV5kCoWsMutvliiCKmIgV98eRZ33wXoS-XrqvJQVs,97792 +pip/_vendor/distlib/t64-arm.exe,sha256=68TAa32V504xVBnufojh0PcenpR3U4wAqTqf-MZqbPw,182784 +pip/_vendor/distlib/t64.exe,sha256=gaYY8hy4fbkHYTTnA4i26ct8IQZzkBG2pRdy0iyuBrc,108032 +pip/_vendor/distlib/util.py,sha256=XSznxEi_i3T20UJuaVc0qXHz5ksGUCW1khYlBprN_QE,67530 +pip/_vendor/distlib/version.py,sha256=9pXkduchve_aN7JG6iL9VTYV_kqNSGoc2Dwl8JuySnQ,23747 +pip/_vendor/distlib/w32.exe,sha256=R4csx3-OGM9kL4aPIzQKRo5TfmRSHZo6QWyLhDhNBks,91648 +pip/_vendor/distlib/w64-arm.exe,sha256=xdyYhKj0WDcVUOCb05blQYvzdYIKMbmJn2SZvzkcey4,168448 +pip/_vendor/distlib/w64.exe,sha256=ejGf-rojoBfXseGLpya6bFTFPWRG21X5KvU8J5iU-K0,101888 +pip/_vendor/distlib/wheel.py,sha256=FVQCve8u-L0QYk5-YTZc7s4WmNQdvjRWTK08KXzZVX4,43958 +pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981 +pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64 +pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/distro/__pycache__/distro.cpython-312.pyc,, +pip/_vendor/distro/distro.py,sha256=XqbefacAhDT4zr_trnbA15eY8vdK4GTghgmvUGrEM_4,49430 +pip/_vendor/distro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc,, +pip/_vendor/idna/codec.py,sha256=PS6m-XmdST7Wj7J7ulRMakPDt5EBJyYrT3CPtjh-7t4,3426 +pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +pip/_vendor/idna/core.py,sha256=lyhpoe2vulEaB_65xhXmoKgO-xUqFDvcwxu5hpNNO4E,12663 +pip/_vendor/idna/idnadata.py,sha256=dqRwytzkjIHMBa2R1lYvHDwACenZPt8eGVu1Y8UBE-E,78320 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=Tkt0KnIeyIlnHddOaz9WSkkislNgokJAuE-p5GorMqo,21 +pip/_vendor/idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/idna/uts46data.py,sha256=1KuksWqLuccPXm2uyRVkhfiFLNIhM_H2m4azCcnOqEU,206503 +pip/_vendor/msgpack/__init__.py,sha256=gsMP7JTECZNUSjvOyIbdhNOkpB9Z8BcGwabVGY2UcdQ,1077 +pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc,, +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=fKp00BqDLjUtZnPd70Llr138zk8JsCuSpJkkZ5S4dt8,5629 +pip/_vendor/msgpack/fallback.py,sha256=wdUWJkWX2gzfRW9BBCTOuIE1Wvrf5PtBtR8ZtY7G_EE,33175 +pip/_vendor/packaging/__init__.py,sha256=dtw2bNmWCQ9WnMoK3bk_elL1svSlikXtLpZhCFIB9SE,496 +pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-312.pyc,, +pip/_vendor/packaging/_elffile.py,sha256=_LcJW4YNKywYsl4169B2ukKRqwxjxst_8H0FRVQKlz8,3282 +pip/_vendor/packaging/_manylinux.py,sha256=Xo4V0PZz8sbuVCbTni0t1CR0AHeir_7ib4lTmV8scD4,9586 +pip/_vendor/packaging/_musllinux.py,sha256=p9ZqNYiOItGee8KcZFeHF_YcdhVwGHdK6r-8lgixvGQ,2694 +pip/_vendor/packaging/_parser.py,sha256=s_TvTvDNK0NrM2QB3VKThdWFM4Nc0P6JnkObkl3MjpM,10236 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/_tokenizer.py,sha256=J6v5H7Jzvb-g81xp_2QACKwO7LxHQA6ikryMU7zXwN8,5273 +pip/_vendor/packaging/markers.py,sha256=dWKSqn5Sp-jDmOG-W3GfLHKjwhf1IsznbT71VlBoB5M,10671 +pip/_vendor/packaging/metadata.py,sha256=KINuSkJ12u-SyoKNTy_pHNGAfMUtxNvZ53qA1zAKcKI,32349 +pip/_vendor/packaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/packaging/requirements.py,sha256=gYyRSAdbrIyKDY66ugIDUQjRMvxkH2ALioTmX3tnL6o,2947 +pip/_vendor/packaging/specifiers.py,sha256=HfGgfNJRvrzC759gnnoojHyiWs_DYmcw5PEh5jHH-YE,39738 +pip/_vendor/packaging/tags.py,sha256=y8EbheOu9WS7s-MebaXMcHMF-jzsA_C1Lz5XRTiSy4w,18883 +pip/_vendor/packaging/utils.py,sha256=NAdYUwnlAOpkat_RthavX8a07YuVxgGL_vwrx73GSDM,5287 +pip/_vendor/packaging/version.py,sha256=wE4sSVlF-d1H6HFC1vszEe35CwTig_fh4HHIFg95hFE,16210 +pip/_vendor/pkg_resources/__init__.py,sha256=jrhDRbOubP74QuPXxd7U7Po42PH2l-LZ2XfcO7llpZ4,124463 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__init__.py,sha256=FTA6LGNm40GwNZt3gG3uLAacWvf2E_2HTmH0rAALGR8,22285 +pip/_vendor/platformdirs/__main__.py,sha256=jBJ8zb7Mpx5ebcqF83xrpO94MaeCpNGHVf9cvDN2JLg,1505 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc,, +pip/_vendor/platformdirs/android.py,sha256=xZXY9Jd46WOsxT2U6-5HsNtDZ-IQqxcEUrBLl3hYk4o,9016 +pip/_vendor/platformdirs/api.py,sha256=QBYdUac2eC521ek_y53uD1Dcq-lJX8IgSRVd4InC6uc,8996 +pip/_vendor/platformdirs/macos.py,sha256=wftsbsvq6nZ0WORXSiCrZNkRHz_WKuktl0a6mC7MFkI,5580 +pip/_vendor/platformdirs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/platformdirs/unix.py,sha256=Cci9Wqt35dAMsg6HT9nRGHSBW5obb0pR3AE1JJnsCXg,10643 +pip/_vendor/platformdirs/version.py,sha256=r7F76tZRjgQKzrpx_I0_ZMQOMU-PS7eGnHD7zEK3KB0,411 +pip/_vendor/platformdirs/windows.py,sha256=IFpiohUBwxPtCzlyKwNtxyW4Jk8haa6W8o59mfrDXVo,10125 +pip/_vendor/pygments/__init__.py,sha256=7N1oiaWulw_nCsTY4EEixYLz15pWY5u4uPAFFi-ielU,2983 +pip/_vendor/pygments/__main__.py,sha256=isIhBxLg65nLlXukG4VkMuPfNdd7gFzTZ_R_z3Q8diY,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-312.pyc,, +pip/_vendor/pygments/cmdline.py,sha256=LIVzmAunlk9sRJJp54O4KRy9GDIN4Wu13v9p9QzfGPM,23656 +pip/_vendor/pygments/console.py,sha256=yhP9UsLAVmWKVQf2446JJewkA7AiXeeTf4Ieg3Oi2fU,1718 +pip/_vendor/pygments/filter.py,sha256=_ADNPCskD8_GmodHi6_LoVgPU3Zh336aBCT5cOeTMs0,1910 +pip/_vendor/pygments/filters/__init__.py,sha256=RdedK2KWKXlKwR7cvkfr3NUj9YiZQgMgilRMFUg2jPA,40392 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatter.py,sha256=jDWBTndlBH2Z5IYZFVDnP0qn1CaTQjTWt7iAGtCnJEg,4390 +pip/_vendor/pygments/formatters/__init__.py,sha256=8No-NUs8rBTSSBJIv4hSEQt2M0cFB4hwAT0snVc2QGE,5385 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176 +pip/_vendor/pygments/formatters/bbcode.py,sha256=3JQLI45tcrQ_kRUMjuab6C7Hb0XUsbVWqqbSn9cMjkI,3320 +pip/_vendor/pygments/formatters/groff.py,sha256=M39k0PaSSZRnxWjqBSVPkF0mu1-Vr7bm6RsFvs-CNN4,5106 +pip/_vendor/pygments/formatters/html.py,sha256=SE2jc3YCqbMS3rZW9EAmDlAUhdVxJ52gA4dileEvCGU,35669 +pip/_vendor/pygments/formatters/img.py,sha256=MwA4xWPLOwh6j7Yc6oHzjuqSPt0M1fh5r-5BTIIUfsU,23287 +pip/_vendor/pygments/formatters/irc.py,sha256=dp1Z0l_ObJ5NFh9MhqLGg5ptG5hgJqedT2Vkutt9v0M,4981 +pip/_vendor/pygments/formatters/latex.py,sha256=XMmhOCqUKDBQtG5mGJNAFYxApqaC5puo5cMmPfK3944,19306 +pip/_vendor/pygments/formatters/other.py,sha256=56PMJOliin-rAUdnRM0i1wsV1GdUPd_dvQq0_UPfF9c,5034 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=y16U00aVYYEFpeCfGXlYBSMacG425CbfoG8oKbKegIg,2218 +pip/_vendor/pygments/formatters/rtf.py,sha256=ZT90dmcKyJboIB0mArhL7IhE467GXRN0G7QAUgG03To,11957 +pip/_vendor/pygments/formatters/svg.py,sha256=KKsiophPupHuxm0So-MsbQEWOT54IAiSF7hZPmxtKXE,7174 +pip/_vendor/pygments/formatters/terminal.py,sha256=AojNG4MlKq2L6IsC_VnXHu4AbHCBn9Otog6u45XvxeI,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=kGkNUVo3FpwjytIDS0if79EuUoroAprcWt3igrcIqT0,11753 +pip/_vendor/pygments/lexer.py,sha256=TYHDt___gNW4axTl2zvPZff-VQi8fPaIh5OKRcVSjUM,35349 +pip/_vendor/pygments/lexers/__init__.py,sha256=pIlxyQJuu_syh9lE080cq8ceVbEVcKp0osAFU5fawJU,12115 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=61-h3zr103m01OS5BUq_AfUiL9YI06Ves9ipQ7k4vr4,76097 +pip/_vendor/pygments/lexers/python.py,sha256=2J_YJrPTr_A6fJY_qKiKv0GpgPwHMrlMSeo59qN3fe4,53687 +pip/_vendor/pygments/modeline.py,sha256=gtRYZBS-CKOCDXHhGZqApboHBaZwGH8gznN3O6nuxj4,1005 +pip/_vendor/pygments/plugin.py,sha256=ioeJ3QeoJ-UQhZpY9JL7vbxsTVuwwM7BCu-Jb8nN0AU,1891 +pip/_vendor/pygments/regexopt.py,sha256=Hky4EB13rIXEHQUNkwmCrYqtIlnXDehNR3MztafZ43w,3072 +pip/_vendor/pygments/scanner.py,sha256=NDy3ofK_fHRFK4hIDvxpamG871aewqcsIb6sgTi7Fhk,3092 +pip/_vendor/pygments/sphinxext.py,sha256=iOptJBcqOGPwMEJ2p70PvwpZPIGdvdZ8dxvq6kzxDgA,7981 +pip/_vendor/pygments/style.py,sha256=rSCZWFpg1_DwFMXDU0nEVmAcBHpuQGf9RxvOPPQvKLQ,6420 +pip/_vendor/pygments/styles/__init__.py,sha256=qUk6_1z5KmT8EdJFZYgESmG6P_HJF_2vVrDD7HSCGYY,2042 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc,, +pip/_vendor/pygments/styles/_mapping.py,sha256=6lovFUE29tz6EsV3XYY4hgozJ7q1JL7cfO3UOlgnS8w,3312 +pip/_vendor/pygments/token.py,sha256=qZwT7LSPy5YBY3JgDjut642CCy7JdQzAfmqD9NmT5j0,6226 +pip/_vendor/pygments/unistring.py,sha256=p5c1i-HhoIhWemy9CUsaN9o39oomYHNxXll0Xfw6tEA,63208 +pip/_vendor/pygments/util.py,sha256=2tj2nS1X9_OpcuSjf8dOET2bDVZhs8cEKd_uT6-Fgg8,10031 +pip/_vendor/pyproject_hooks/__init__.py,sha256=kCehmy0UaBa9oVMD7ZIZrnswfnP3LXZ5lvnNJAL5JBM,491 +pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_compat.py,sha256=by6evrYnqkisiM-MQcvOKs5bgDMzlOSgZqRHNqf04zE,138 +pip/_vendor/pyproject_hooks/_impl.py,sha256=61GJxzQip0IInhuO69ZI5GbNQ82XEDUB_1Gg5_KtUoc,11920 +pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=9gQATptbFkelkIy0OfWFEACzqxXJMQDWCH9rBOAZVwQ,546 +pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc,, +pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=m2b34c917IW5o-Q_6TYIHlsK9lSUlNiyrITTUH_zwew,10927 +pip/_vendor/requests/__init__.py,sha256=HlB_HzhrzGtfD_aaYUwUh1zWXLZ75_YCLyit75d0Vz8,5057 +pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-312.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-312.pyc,, +pip/_vendor/requests/__version__.py,sha256=FVfglgZmNQnmYPXpOohDU58F5EUb_-VnSTaAesS187g,435 +pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495 +pip/_vendor/requests/adapters.py,sha256=J7VeVxKBvawbtlX2DERVo05J9BXTcWYLMHNd1Baa-bk,27607 +pip/_vendor/requests/api.py,sha256=_Zb9Oa7tzVIizTKwFrPjDEY9ejtm_OnSRERnADxGsQs,6449 +pip/_vendor/requests/auth.py,sha256=kF75tqnLctZ9Mf_hm9TZIj4cQWnN5uxRz8oWsx5wmR0,10186 +pip/_vendor/requests/certs.py,sha256=PVPooB0jP5hkZEULSCwC074532UFbR2Ptgu0I5zwmCs,575 +pip/_vendor/requests/compat.py,sha256=Mo9f9xZpefod8Zm-n9_StJcVTmwSukXR2p3IQyyVXvU,1485 +pip/_vendor/requests/cookies.py,sha256=bNi-iqEj4NPZ00-ob-rHvzkvObzN3lEpgw3g6paS3Xw,18590 +pip/_vendor/requests/exceptions.py,sha256=D1wqzYWne1mS2rU43tP9CeN1G7QAy7eqL9o1god6Ejw,4272 +pip/_vendor/requests/help.py,sha256=hRKaf9u0G7fdwrqMHtF3oG16RKktRf6KiwtSq2Fo1_0,3813 +pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733 +pip/_vendor/requests/models.py,sha256=x4K4CmH-lC0l2Kb-iPfMN4dRXxHEcbOaEWBL_i09AwI,35483 +pip/_vendor/requests/packages.py,sha256=_ZQDCJTJ8SP3kVWunSqBsRZNPzj2c1WFVqbdr08pz3U,1057 +pip/_vendor/requests/sessions.py,sha256=ykTI8UWGSltOfH07HKollH7kTBGw4WhiBVaQGmckTw4,30495 +pip/_vendor/requests/status_codes.py,sha256=iJUAeA25baTdw-6PfD0eF4qhpINDJRJI-yaMqxs4LEI,4322 +pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912 +pip/_vendor/requests/utils.py,sha256=L79vnFbzJ3SFLKtJwpoWe41Tozi3RlZv94pY1TFIyow,33631 +pip/_vendor/resolvelib/__init__.py,sha256=h509TdEcpb5-44JonaU3ex2TM15GVBLjM9CNCPwnTTs,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=fuuvVrCetu5gsxPB43ERyjfO8aReS3rFQHpDgiItbs4,5871 +pip/_vendor/resolvelib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/reporters.py,sha256=TSbRmWzTc26w0ggsV1bxVpeWDB8QNIre6twYl7GIZBE,1601 +pip/_vendor/resolvelib/resolvers.py,sha256=G8rsLZSq64g5VmIq-lB7UcIJ1gjAxIQJmTF4REZleQ0,20511 +pip/_vendor/resolvelib/structs.py,sha256=0_1_XO8z_CLhegP3Vpf9VJ3zJcfLm0NOHRM-i0Ykz3o,4963 +pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090 +pip/_vendor/rich/__main__.py,sha256=eO7Cq8JnrgG8zVoeImiAs92q3hXNMIfp0w5lMsO7Q2Y,8477 +pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-312.pyc,, +pip/_vendor/rich/_cell_widths.py,sha256=fbmeyetEdHjzE_Vx2l1uK7tnPOhMs2X1lJfO3vsKDpA,10209 +pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 +pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 +pip/_vendor/rich/_export_format.py,sha256=RI08pSrm5tBSzPMvnbTqbD9WIalaOoN5d4M1RTmLq1Y,2128 +pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799 +pip/_vendor/rich/_inspect.py,sha256=oZJGw31e64dwXSCmrDnvZbwVb1ZKhWfU8wI3VWohjJk,9695 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_null_file.py,sha256=tGSXk_v-IZmbj1GAzHit8A3kYIQMiCpVsCFfsC-_KJ4,1387 +pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 +pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 +pip/_vendor/rich/_ratio.py,sha256=Zt58apszI6hAAcXPpgdWKpu3c31UBWebOeR4mbyptvU,5471 +pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_win32_console.py,sha256=P0vxI2fcndym1UU1S37XAzQzQnkyY7YqAKmxm24_gug,22820 +pip/_vendor/rich/_windows.py,sha256=aBwaD_S56SbgopIvayVmpk0Y28uwY2C5Bab1wl3Bp-I,1925 +pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783 +pip/_vendor/rich/_wrap.py,sha256=FlSsom5EX0LVkA3KWy34yHnCfLtqX-ZIepXKh-70rpc,3404 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=sCUkisXkQfoq-IQPyBELfJ8l7LihZJX3HbH8K7Cie-M,10368 +pip/_vendor/rich/ansi.py,sha256=iD6532QYqnBm6hADulKjrV8l8kFJ-9fEVooHJHH3hMg,6906 +pip/_vendor/rich/bar.py,sha256=ldbVHOzKJOnflVNuv1xS7g6dLX2E3wMnXkdPbpzJTcs,3263 +pip/_vendor/rich/box.py,sha256=nr5fYIUghB_iUCEq6y0Z3LlCT8gFPDrzN9u2kn7tJl4,10831 +pip/_vendor/rich/cells.py,sha256=aMmGK4BjXhgE6_JF1ZEGmW3O7mKkE8g84vUnj4Et4To,4780 +pip/_vendor/rich/color.py,sha256=bCRATVdRe5IClJ6Hl62de2PKQ_U4i2MZ4ugjUEg7Tao,18223 +pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 +pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 +pip/_vendor/rich/console.py,sha256=deFZIubq2M9A2MCsKFAsFQlWDvcOMsGuUA07QkOaHIw,99173 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=c_56TxcedGYqDepHBMTuZdUIijitAQgnox-Qde0Z1qo,5502 +pip/_vendor/rich/control.py,sha256=DSkHTUQLorfSERAKE_oTAEUFefZnZp4bQb4q8rHbKws,6630 +pip/_vendor/rich/default_styles.py,sha256=-Fe318kMVI_IwciK5POpThcO0-9DYJ67TZAN6DlmlmM,8082 +pip/_vendor/rich/diagnose.py,sha256=an6uouwhKPAlvQhYpNNpGq9EJysfMIOvvCbO3oSoR24,972 +pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501 +pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 +pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683 +pip/_vendor/rich/filesize.py,sha256=9fTLAPCAwHmBXdRv7KZU194jSgNrRb6Wx7RIoBgqeKY,2508 +pip/_vendor/rich/highlighter.py,sha256=6ZAjUcNhBRajBCo9umFUclyi2xL0-55JL7S0vYGUJu4,9585 +pip/_vendor/rich/json.py,sha256=vVEoKdawoJRjAFayPwXkMBPLy7RSTs-f44wSQDR2nJ0,5031 +pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252 +pip/_vendor/rich/layout.py,sha256=ajkSFAtEVv9EFTcFs-w4uZfft7nEXhNzL7ZVdgrT5rI,14004 +pip/_vendor/rich/live.py,sha256=vUcnJV2LMSK3sQNaILbm0-_B8BpAeiHfcQMAMLfpRe0,14271 +pip/_vendor/rich/live_render.py,sha256=zJtB471jGziBtEwxc54x12wEQtH4BuQr1SA8v9kU82w,3666 +pip/_vendor/rich/logging.py,sha256=uB-cB-3Q4bmXDLLpbOWkmFviw-Fde39zyMV6tKJ2WHQ,11903 +pip/_vendor/rich/markup.py,sha256=3euGKP5s41NCQwaSjTnJxus5iZMHjxpIM0W6fCxra38,8451 +pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305 +pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 +pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=2Fd1V7e1kHxlPFIusoHY5T7-Cs0RpkrihgVG9ZVqJ4g,10705 +pip/_vendor/rich/pretty.py,sha256=5oIHP_CGWnHEnD0zMdW5qfGC5kHqIKn7zH_eC4crULE,35848 +pip/_vendor/rich/progress.py,sha256=P02xi7T2Ua3qq17o83bkshe4c0v_45cg8VyTj6US6Vg,59715 +pip/_vendor/rich/progress_bar.py,sha256=L4jw8E6Qb_x-jhOrLVhkuMaPmiAhFIl8jHQbWFrKuR8,8164 +pip/_vendor/rich/prompt.py,sha256=wdOn2X8XTJKnLnlw6PoMY7xG4iUPp3ezt4O5gqvpV-E,11304 +pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391 +pip/_vendor/rich/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=5MZJZmONgC6kud-QW-_m1okXwL2aR6u6y-pUcUCJz28,4431 +pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602 +pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=hU1ueeXqI6YeFa08K9DAjlF2QLxcJY9pwZx7RsXavlk,24246 +pip/_vendor/rich/spinner.py,sha256=15koCmF0DQeD8-k28Lpt6X_zJQUlzEhgo_6A6uy47lc,4339 +pip/_vendor/rich/status.py,sha256=kkPph3YeAZBo-X-4wPp8gTqZyU466NLwZBA4PZTTewo,4424 +pip/_vendor/rich/style.py,sha256=3hiocH_4N8vwRm3-8yFWzM7tSwjjEven69XqWasSQwM,27073 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=TnZDuOD4DeHFbkaVEAji1gf8qgAlMU9Boe_GksMGCkk,35475 +pip/_vendor/rich/table.py,sha256=nGEvAZHF4dy1vT9h9Gj9O5qhSQO3ODAxJv0RY1vnIB8,39680 +pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370 +pip/_vendor/rich/text.py,sha256=5rQ3zvNrg5UZKNLecbh7fiw9v3HeFulNVtRY_CBDjjE,47312 +pip/_vendor/rich/theme.py,sha256=belFJogzA0W0HysQabKaHOc3RWH2ko3fQAJhoN-AFdo,3777 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=CUpxYLjQWIb6vQQ6O72X0hvDV6caryGqU6UweHgOyCY,29601 +pip/_vendor/rich/tree.py,sha256=meAOUU6sYnoBEOX2ILrPLY9k5bWrWNQKkaiEFvHinXM,9167 +pip/_vendor/tomli/__init__.py,sha256=JhUwV66DB1g4Hvt1UQCVMdfCu-IgAV8FXmvDU9onxd4,396 +pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc,, +pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc,, +pip/_vendor/tomli/_parser.py,sha256=g9-ENaALS-B8dokYpCuzUFalWlog7T-SIYMjLZSWrtM,22633 +pip/_vendor/tomli/_re.py,sha256=dbjg5ChZT23Ka9z9DHOXfdtSpPwUfdgMXnj8NOoly-w,2943 +pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254 +pip/_vendor/tomli/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26 +pip/_vendor/truststore/__init__.py,sha256=M-PhuLMIF7gxKXk7tpo2MD7dk6nqG1ae8GXWdNXbMdQ,403 +pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc,, +pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc,, +pip/_vendor/truststore/_api.py,sha256=B9JIHipzBIS8pMP_J50-o1DHVZsvKZQUXTB0HQQ_UPg,10461 +pip/_vendor/truststore/_macos.py,sha256=VJ24avz5aEGYAs_kWvnGjMJtuIP4xJcYa459UQOQC3M,17608 +pip/_vendor/truststore/_openssl.py,sha256=LLUZ7ZGaio-i5dpKKjKCSeSufmn6T8pi9lDcFnvSyq0,2324 +pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130 +pip/_vendor/truststore/_windows.py,sha256=eldNViHNHeY5r3fiBoz_JFGD37atXB9S5yaRoPKEGAA,17891 +pip/_vendor/truststore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/typing_extensions.py,sha256=78hFl0HpDY-ylHUVCnWdU5nTHxUP2-S-3wEZk6CQmLk,134499 +pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333 +pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=pyASJJhW7wdOpqJj9QJA8FyGRfr8E8uUUhqUvhF0728,11372 +pip/_vendor/urllib3/_version.py,sha256=cuJvnSrWxXGYgQ3-ZRoPMw8-qaN5tpw71jnH1t16dLA,64 +pip/_vendor/urllib3/connection.py,sha256=92k9td_y4PEiTIjNufCUa1NzMB3J3w0LEdyokYgXnW8,20300 +pip/_vendor/urllib3/connectionpool.py,sha256=Be6q65SR9laoikg-h_jmc_p8OWtEmwgq_Om_Xtig-2M,40285 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 +pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=Fef1IIUUFHqpevzXiDPbIGkDKchY2FVKeVeLGR1Qq3g,34446 +pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343 +pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665 +pip/_vendor/urllib3/poolmanager.py,sha256=aWyhXRtNO4JUnCSVVqKTKQd8EXTvUm1VN9pgs2bcONo,19990 +pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691 +pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 +pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=Z6WEf518eTOXP5jr5QSQ9gqJI0DVYt3Xs3EKnYaTmus,22013 +pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168 +pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296 +pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403 +pip/_vendor/vendor.txt,sha256=PxNaxxkkpBaw5zOTsDpHEY-zEaHjgkDgyrSxOuxg8nw,330 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/REQUESTED b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/REQUESTED new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL new file mode 100644 index 00000000..ecaf39f3 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (71.1.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt new file mode 100644 index 00000000..25fcf7e2 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__init__.py new file mode 100644 index 00000000..640e922f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "24.2" + + +def main(args: Optional[List[str]] = None) -> int: + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__main__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__main__.py new file mode 100644 index 00000000..59913261 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__main__.py @@ -0,0 +1,24 @@ +import os +import sys + +# Remove '' and current working directory from the first entry +# of sys.path, if present to avoid using current directory +# in pip commands check, freeze, install, list and show, +# when invoked as python -m pip +if sys.path[0] in ("", os.getcwd()): + sys.path.pop(0) + +# If we are running from a wheel, add the wheel to sys.path +# This allows the usage python pip-*.whl/pip install pip-*.whl +if __package__ == "": + # __file__ is pip-*.whl/pip/__main__.py + # first dirname call strips of '/__main__.py', second strips off '/pip' + # Resulting path is the name of the wheel itself + # Add that to sys.path so we can import pip + path = os.path.dirname(os.path.dirname(__file__)) + sys.path.insert(0, path) + +if __name__ == "__main__": + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pip-runner__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pip-runner__.py new file mode 100644 index 00000000..c633787f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pip-runner__.py @@ -0,0 +1,50 @@ +"""Execute exactly this copy of pip, within a different environment. + +This file is named as it is, to ensure that this module can't be imported via +an import statement. +""" + +# /!\ This version compatibility check section must be Python 2 compatible. /!\ + +import sys + +# Copied from pyproject.toml +PYTHON_REQUIRES = (3, 8) + + +def version_str(version): # type: ignore + return ".".join(str(v) for v in version) + + +if sys.version_info[:2] < PYTHON_REQUIRES: + raise SystemExit( + "This version of pip does not support python {} (requires >={}).".format( + version_str(sys.version_info[:2]), version_str(PYTHON_REQUIRES) + ) + ) + +# From here on, we can use Python 3 features, but the syntax must remain +# Python 2 compatible. + +import runpy # noqa: E402 +from importlib.machinery import PathFinder # noqa: E402 +from os.path import dirname # noqa: E402 + +PIP_SOURCES_ROOT = dirname(dirname(__file__)) + + +class PipImportRedirectingFinder: + @classmethod + def find_spec(self, fullname, path=None, target=None): # type: ignore + if fullname != "pip": + return None + + spec = PathFinder.find_spec(fullname, [PIP_SOURCES_ROOT], target) + assert spec, (PIP_SOURCES_ROOT, fullname) + return spec + + +sys.meta_path.insert(0, PipImportRedirectingFinder()) + +assert __name__ == "__main__", "Cannot run __pip-runner__.py as a non-main module" +runpy.run_module("pip", run_name="__main__", alter_sys=True) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88cb071414950d85a1f152959387e895b614be27 GIT binary patch literal 733 zcmX|9J#Q2-5Vd#rF2@}K@zI0=3=KJntVM``AQTA+fsjy$6sl`hzTL^KlU;jd`w}(^ zA_WB!4PC-N0P$03pxp)#6@wSusi}A>Vy*Y^|f@ z@FpgEBqJFuNJ$5@3{ z(|J-ksg)?Uqxpq+ez}Q+8QG?7z>SUa3jSM&nfJqs7_d9d0^j{Pr6eFbbccL6La&m3 zxV`r@mzLot6qCwie|mBwI#Q6&O5mG+DqWJqRoz6TkjnH>O&i^w!LUnycS&pUTkqVP`>&Ti zMKg!Eh!ZdOr<%5_E2&1tU!#dIG`%E2T^64}k~E=prU`N43FCWWPI{bwk4@)psk3nb zOXe(={-SLk!$C+X{X#B(J#~J!_p?1kFT8rTAMLNcJ@NVUl>>tHyY!d;O{o3?qiM<; literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..105be2d37ffcf92e437bc81bcfe7e912e441efe7 GIT binary patch literal 889 zcmb7CL2DC16n?Y2Y0@OERBEBEc(9k`&cr+XQ;3R`yO`_s3SNxEx zVH9#LFqp*$8idtXO|Axhz;n7D81<&nAiB=ercFJgMP!#1+m)pO+Y1S0vLa7JWh}6R zl5Ts92(DYIyLL(HQ28Ht>O`GuC<6q{%|4H~>EL{~LbO?ioknQF{ORvv%W;f-*|xHw*dUt;%L)tGZeJP~NTV zRCcR7)sM3WlQRdoTWj}|n~R;rcrIq&w5vyIZsYmBI{s6eInwfL_hjSEM{k~d*RFKa KpiR(GVeKzt565Nz literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eef98f52280055a97dfe204494059eb96c8b6e54 GIT binary patch literal 2253 zcmaJ>O>7fK6n?Y2{*ST22??RVA}Eck#M=NBsDeHf&B*G9VzYq7o4P#Ft&V~S`mF4fx3`Q&wV|5jp{X*%JiD1yXCs<7ELDW zcC{|s1-WWg2j#0K{{^P?CmS7&*;cWHCJP9zqB)15G&$dcXhwsFzBugf;#1on8WCc&iz2%WBjFU>1|NdAh+7+sl zY`sV^gT=C`7nMoJF40++D(tFzNh?}Idf8MMb*@lHVUDh7j8T^h9QIjOYGF zPcL5ClS;N};T-7zGM*{fNucx+n+|a>kHA0Hi((Ph6I(t%`svYC4&BTQHWPylX|RPR zc*>JDccRU(4nT*OvSCwXo9)W1R^{}O{RGI@7vuqlUapxA+DDFGU&!V#r1+%f7EhU$ zK^-2TVLF_sIzJ;AoIrfEcxB!K3fP7qFHq4Ckvb%xOK1tQQbAI z8UKI@o#!MN*!6sF7IA?r!d^0a1iKcg!%HTWIvpo);`2OlU*OD;c`>Nm1!-Pl$uscM zI!_8h5Z(M&RQJ-8R&XUjVg)UdE!SP%H|g9qfH*L-^5iIy+qK z$B%WRSc3IX`neDeb+<$aZ+*sBz60OJkF02>rK)qoCpC-H4vR^CrL1`4(~y2nk6)adz(<5Q#4?PBq| zg7Pt~g6+kp>kM1t=rz;z!Ufx@Xs#DRaIEW$-%PP1S=W%!LvXAfPZ{e49^qBvD#5s)rc)ha*iVcwv z@=TD3)Jg+MY=j}RV=?tSOvuni6r{+Sm{}Dw%kM3pZ-~9Ol?P(>QM`LSI=&X2T#ZgX z>gv5MuJsM9_6^+Ic5iQ^Z?M@lbpQGfCz{IHmMFyHEm2B@H$V!7TibvnAH$oEVdpQI z{;!VQIojMg*vt$yApJ);O1hr`ijD0+q)(C`CD)*P6}p$tul5~m_8oo*Z$F8omfv|0 k+0}rl#-6Dr%E+#DNH2!gAiWCd<(@nJ-@8A int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..90024b7de51f485156f1c8b071c6106adf658241 GIT binary patch literal 835 zcmZuvy=xRf6rb7MyKKIY7@Jt=C>A*|JNN-HBB?|hi9)QdIp=m?cIPtt!OUFZNrV&@ zijAGIu~zb@*ccFmZA8SvE)s35e6zV&`IvcMy!Yn!-nd-pqsWM%w1EEt>w>8+IE@JA!$K<1Q_vjol zL`o4EB7I67vK_iZ_Q%odq~kw%`!JJ+;i)tj&|8qOjZ(8xB`hurQz~F4*0QpO*-TiL zixD$cD#iN1G;Dx|B9=uu#gL?prW)lAmJmrIk5RJ(tdPoFW(I&|)>h^w=c%;Wuph-` z&Z|)+cqJMT&j6mi__dJyfOb^`dH2 z2f2`io|7Qr= zEonW|yn;)TVn*#7t7{*}(meK_=vh}{+69KU@-i7JSk-6HbW35DksbP!(l6w~cXH`4 qB=q!d@R`gVkhxD}{%1R+XP-ab3-;FEOdg!Ncu3HG7yojiDf}0mYT?rW literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f48fe1c1cffe7e0f331ccbac78d3bc254fa9ee7 GIT binary patch literal 14520 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 PY)`&z$5#w|>Ae3hYZ&dy literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8b05393dc89f2b255ee4faf7f0eb8794836be55f GIT binary patch literal 12715 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bca26d3059c314c1c840d178d71979bce548d2c0 GIT binary patch literal 17680 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 UY{D4eyt>EFetaz8%((3T2l5EEs{jB1 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..96cf88845d0affd0a121f2297d0d1636a322fc05 GIT binary patch literal 718 zcmX|9J8u**5Vm*sjw25tL=_4!h$1JEwFpQMgi;}BP(VtmYa-uza_eMwZH;{ihk`@_ z5)us^p`ixxQ)r;w1|cfCpg=>#_y`$!#-AVa&BOjQKR?4r78liMgERI$F8)jB7#uAV zc*8W)yka#U@H!bJoawGkAps8Q0-ZPIB#CvEn?_|Wzqx?pUh zs^PGZcboU?@O^L_U5`1U&Mr%&E(l*S7h4#5NN zf)-mAg{`zGY~yVO!WU><@FJ8dh+0jA52mWb5Cp;&AT)((Ml*uMgnVWS?h%F3+WgB_ zXb8$w{;Kc*q71?L+ft59D96LRu(fm(r=&AZ8t=#8<;@!_xAG|wCR9Y9x4q3hRL%iX zFD}x}eA6@mkXn(CDI1?d6L8`z?RxA*p9Ev`r`SglA^yCOrL943+oFV~hO#n6DIcNT zhMfS??}ec%o28;Ma@q-$9t)|whv4N%k!MiD3hqM#sDeca&91D>kkSvOZLa6nmZdiV zmYgbf)QIYcC7mQHYh{|;P1-C1oTZ#HQh%1rGxmFqbymL3o_l@w)#~SL;fOY=?zMim z?S_e?24j3vj2><31GXuZIwkqQa4sIjU)c8U)K-rxSj9*iAKG6bbC`0@zp_g|yFGsX Z<>Q0wVEygsFJ~?vGFrbce#L3Z@)umF#nu1- literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7b14b2bf0f84da07ae684c38d029363787a655d6 GIT binary patch literal 5166 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cce8f9d7d5823d805560a4c862386c28dc2347f9 GIT binary patch literal 10256 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e37efe85f50eec2308a1f9b960e0e66c7ac6d297 GIT binary patch literal 13663 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/build_env.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/build_env.py new file mode 100644 index 00000000..be1e0ca8 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/build_env.py @@ -0,0 +1,315 @@ +"""Build Environment used for isolation during sdist building +""" + +import logging +import os +import pathlib +import site +import sys +import textwrap +from collections import OrderedDict +from types import TracebackType +from typing import TYPE_CHECKING, Iterable, List, Optional, Set, Tuple, Type, Union + +from pip._vendor.certifi import where +from pip._vendor.packaging.version import Version + +from pip import __file__ as pip_location +from pip._internal.cli.spinners import open_spinner +from pip._internal.locations import get_platlib, get_purelib, get_scheme +from pip._internal.metadata import get_default_environment, get_environment +from pip._internal.utils.logging import VERBOSE +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + +logger = logging.getLogger(__name__) + + +def _dedup(a: str, b: str) -> Union[Tuple[str], Tuple[str, str]]: + return (a, b) if a != b else (a,) + + +class _Prefix: + def __init__(self, path: str) -> None: + self.path = path + self.setup = False + scheme = get_scheme("", prefix=path) + self.bin_dir = scheme.scripts + self.lib_dirs = _dedup(scheme.purelib, scheme.platlib) + + +def get_runnable_pip() -> str: + """Get a file to pass to a Python executable, to run the currently-running pip. + + This is used to run a pip subprocess, for installing requirements into the build + environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + if not source.is_dir(): + # This would happen if someone is using pip from inside a zip file. In that + # case, we can use that directly. + return str(source) + + return os.fsdecode(source / "__pip-runner__.py") + + +def _get_system_sitepackages() -> Set[str]: + """Get system site packages + + Usually from site.getsitepackages, + but fallback on `get_purelib()/get_platlib()` if unavailable + (e.g. in a virtualenv created by virtualenv<20) + + Returns normalized set of strings. + """ + if hasattr(site, "getsitepackages"): + system_sites = site.getsitepackages() + else: + # virtualenv < 20 overwrites site.py without getsitepackages + # fallback on get_purelib/get_platlib. + # this is known to miss things, but shouldn't in the cases + # where getsitepackages() has been removed (inside a virtualenv) + system_sites = [get_purelib(), get_platlib()] + return {os.path.normcase(path) for path in system_sites} + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps""" + + def __init__(self) -> None: + temp_dir = TempDirectory(kind=tempdir_kinds.BUILD_ENV, globally_managed=True) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ("normal", "overlay") + ) + + self._bin_dirs: List[str] = [] + self._lib_dirs: List[str] = [] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = _get_system_sitepackages() + + self._site_dir = os.path.join(temp_dir.path, "site") + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open( + os.path.join(self._site_dir, "sitecustomize.py"), "w", encoding="utf-8" + ) as fp: + fp.write( + textwrap.dedent( + """ + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + """ + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs) + ) + + def __enter__(self) -> None: + self._save_env = { + name: os.environ.get(name, None) + for name in ("PATH", "PYTHONNOUSERSITE", "PYTHONPATH") + } + + path = self._bin_dirs[:] + old_path = self._save_env["PATH"] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update( + { + "PATH": os.pathsep.join(path), + "PYTHONNOUSERSITE": "1", + "PYTHONPATH": os.pathsep.join(pythonpath), + } + ) + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements( + self, reqs: Iterable[str] + ) -> Tuple[Set[Tuple[str, str]], Set[str]]: + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + env = ( + get_environment(self._lib_dirs) + if hasattr(self, "_lib_dirs") + else get_default_environment() + ) + for req_str in reqs: + req = get_requirement(req_str) + # We're explicitly evaluating with an empty extra value, since build + # environments are not provided any mechanism to select specific extras. + if req.marker is not None and not req.marker.evaluate({"extra": ""}): + continue + dist = env.get_distribution(req.name) + if not dist: + missing.add(req_str) + continue + if isinstance(dist.version, Version): + installed_req_str = f"{req.name}=={dist.version}" + else: + installed_req_str = f"{req.name}==={dist.version}" + if not req.specifier.contains(dist.version, prereleases=True): + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + self._install_requirements( + get_runnable_pip(), + finder, + requirements, + prefix, + kind=kind, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + ) -> None: + args: List[str] = [ + sys.executable, + pip_runnable, + "install", + "--ignore-installed", + "--no-user", + "--prefix", + prefix.path, + "--no-warn-script-location", + "--disable-pip-version-check", + ] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append("-vv") + elif logger.getEffectiveLevel() <= VERBOSE: + args.append("-v") + for format_control in ("no_binary", "only_binary"): + formats = getattr(finder.format_control, format_control) + args.extend( + ( + "--" + format_control.replace("_", "-"), + ",".join(sorted(formats or {":none:"})), + ) + ) + + index_urls = finder.index_urls + if index_urls: + args.extend(["-i", index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(["--extra-index-url", extra_index]) + else: + args.append("--no-index") + for link in finder.find_links: + args.extend(["--find-links", link]) + + for host in finder.trusted_hosts: + args.extend(["--trusted-host", host]) + if finder.allow_all_prereleases: + args.append("--pre") + if finder.prefer_binary: + args.append("--prefer-binary") + args.append("--") + args.extend(requirements) + extra_environ = {"_PIP_STANDALONE_CERT": where()} + with open_spinner(f"Installing {kind}") as spinner: + call_subprocess( + args, + command_desc=f"pip subprocess to install {kind}", + spinner=spinner, + extra_environ=extra_environ, + ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment""" + + def __init__(self) -> None: + pass + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + pass + + def cleanup(self) -> None: + pass + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + raise NotImplementedError() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cache.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cache.py new file mode 100644 index 00000000..6b451267 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cache.py @@ -0,0 +1,290 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from pathlib import Path +from typing import Any, Dict, List, Optional + +from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + +ORIGIN_JSON_NAME = "origin.json" + + +def _hash_dict(d: Dict[str, str]) -> str: + """Return a stable sha224 of a dictionary.""" + s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) + return hashlib.sha224(s.encode("ascii")).hexdigest() + + +class Cache: + """An abstract class - provides cache directories for data from links + + :param cache_dir: The root of the cache. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + + def _get_cache_path_parts(self, link: Link) -> List[str]: + """Get parts of part that must be os.path.joined with cache_dir""" + + # We want to generate an url to use as our cache key, we don't want to + # just reuse the URL because it might have other items in the fragment + # and we don't care about those. + key_parts = {"url": link.url_without_fragment} + if link.hash_name is not None and link.hash is not None: + key_parts[link.hash_name] = link.hash + if link.subdirectory_fragment: + key_parts["subdirectory"] = link.subdirectory_fragment + + # Include interpreter name, major and minor version in cache key + # to cope with ill-behaved sdists that build a different wheel + # depending on the python version their setup.py is being run on, + # and don't encode the difference in compatibility tags. + # https://github.com/pypa/pip/issues/7296 + key_parts["interpreter_name"] = interpreter_name() + key_parts["interpreter_version"] = interpreter_version() + + # Encode our key url with sha224, we'll use this because it has similar + # security properties to sha256, but with a shorter total output (and + # thus less secure). However the differences don't make a lot of + # difference for our use case here. + hashed = _hash_dict(key_parts) + + # We want to nest the directories some to prevent having a ton of top + # level directories where we might run out of sub directories on some + # FS. + parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] + + return parts + + def _get_candidates(self, link: Link, canonical_package_name: str) -> List[Any]: + can_not_cache = not self.cache_dir or not canonical_package_name or not link + if can_not_cache: + return [] + + path = self.get_path_for_link(link) + if os.path.isdir(path): + return [(candidate, path) for candidate in os.listdir(path)] + return [] + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached items in for link.""" + raise NotImplementedError() + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + """Returns a link to a cached item if it exists, otherwise returns the + passed link. + """ + raise NotImplementedError() + + +class SimpleWheelCache(Cache): + """A cache of wheels for future installs.""" + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached wheels for link + + Because there are M wheels for any one sdist, we provide a directory + to cache them in, and then consult that directory when looking up + cache hits. + + We only insert things into the cache if they have plausible version + numbers, so that we don't contaminate the cache with things that were + not unique. E.g. ./package might have dozens of installs done for it + and build a version of 0.0...and if we built and cached a wheel, we'd + end up using the same wheel even if the source has been edited. + + :param link: The link of the sdist for which this will cache wheels. + """ + parts = self._get_cache_path_parts(link) + assert self.cache_dir + # Store wheels within the root cache_dir + return os.path.join(self.cache_dir, "wheels", *parts) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + candidates = [] + + if not package_name: + return link + + canonical_package_name = canonicalize_name(package_name) + for wheel_name, wheel_dir in self._get_candidates(link, canonical_package_name): + try: + wheel = Wheel(wheel_name) + except InvalidWheelFilename: + continue + if canonicalize_name(wheel.name) != canonical_package_name: + logger.debug( + "Ignoring cached wheel %s for %s as it " + "does not match the expected distribution name %s.", + wheel_name, + link, + package_name, + ) + continue + if not wheel.supported(supported_tags): + # Built for a different python/arch/etc + continue + candidates.append( + ( + wheel.support_index_min(supported_tags), + wheel_name, + wheel_dir, + ) + ) + + if not candidates: + return link + + _, wheel_name, wheel_dir = min(candidates) + return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) + + +class EphemWheelCache(SimpleWheelCache): + """A SimpleWheelCache that creates it's own temporary cache directory""" + + def __init__(self) -> None: + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path) + + +class CacheEntry: + def __init__( + self, + link: Link, + persistent: bool, + ): + self.link = link + self.persistent = persistent + self.origin: Optional[DirectUrl] = None + origin_direct_url_path = Path(self.link.file_path).parent / ORIGIN_JSON_NAME + if origin_direct_url_path.exists(): + try: + self.origin = DirectUrl.from_json( + origin_direct_url_path.read_text(encoding="utf-8") + ) + except Exception as e: + logger.warning( + "Ignoring invalid cache entry origin file %s for %s (%s)", + origin_direct_url_path, + link.filename, + e, + ) + + +class WheelCache(Cache): + """Wraps EphemWheelCache and SimpleWheelCache into a single Cache + + This Cache allows for gracefully degradation, using the ephem wheel cache + when a certain link is not found in the simple wheel cache first. + """ + + def __init__(self, cache_dir: str) -> None: + super().__init__(cache_dir) + self._wheel_cache = SimpleWheelCache(cache_dir) + self._ephem_cache = EphemWheelCache() + + def get_path_for_link(self, link: Link) -> str: + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link: Link) -> str: + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + cache_entry = self.get_cache_entry(link, package_name, supported_tags) + if cache_entry is None: + return link + return cache_entry.link + + def get_cache_entry( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Optional[CacheEntry]: + """Returns a CacheEntry with a link to a cached item if it exists or + None. The cache entry indicates if the item was found in the persistent + or ephemeral cache. + """ + retval = self._wheel_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=True) + + retval = self._ephem_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=False) + + return None + + @staticmethod + def record_download_origin(cache_dir: str, download_info: DirectUrl) -> None: + origin_path = Path(cache_dir) / ORIGIN_JSON_NAME + if origin_path.exists(): + try: + origin = DirectUrl.from_json(origin_path.read_text(encoding="utf-8")) + except Exception as e: + logger.warning( + "Could not read origin file %s in cache entry (%s). " + "Will attempt to overwrite it.", + origin_path, + e, + ) + else: + # TODO: use DirectUrl.equivalent when + # https://github.com/pypa/pip/pull/10564 is merged. + if origin.url != download_info.url: + logger.warning( + "Origin URL %s in cache entry %s does not match download URL " + "%s. This is likely a pip bug or a cache corruption issue. " + "Will overwrite it with the new value.", + origin.url, + cache_dir, + download_info.url, + ) + origin_path.write_text(download_info.to_json(), encoding="utf-8") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 00000000..e589bb91 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__init__.py @@ -0,0 +1,4 @@ +"""Subpackage containing all of pip's command line interface related code +""" + +# This file intentionally does not import submodules diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..409d62bde4e5be52914032de0155c06ac3bb3202 GIT binary patch literal 326 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 E>m9*z{(sTNY;jcXxuTx1! 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

vpAKh0;4=-clfav)0eTmK!fDWfBY15lV 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3538d05b868e678af9f1559e024f505a5ac6653b GIT binary patch literal 1822 zcmZ`(O>7%g5Pom}yiVG#2Kj&xNt&TO3z&EHdUgfQiHg_&1!^F0SD&o+HMksC++Oaym|9x zzL|NyB$IszRxW4EN<2cpGoibL4zqg=m~~_!3p=QSOSr<7ILu_u;VVK(sE8%8B9$bJ zI7B3iw}kJ+4K6xeigD;FvZOU+#dBXXogSc5;FsN;~z8PH|(Owo)Ab$*b z5LChzDsfhSpW;jb&6E-?NN|Gg#7?Ify*vK;ib^RD;T6rZeR8e_<%g1cTFtI$ z5VKFHYd9KnY)0sI6Bw`6sRF?*zjOrbhYBz^5R8& z*Zpy-H9px!O!#?fFZ_qugl-FJJm~9`8s3WV#R_8%B)?v>-PtJOFaZ`q6gvy(8x(m7 zJ6(P=!r(1>8n##!y|X~tJjVD5I{ySsw9v$FVxm#JQ`{6!uX20RAijv7B1S_${{cE8 Br3(N6 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a375d6fa10853289b460609b4ac6e1a4301d631c GIT binary patch literal 7172 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..487a88a1a76709483ab938d1bef2fbbc47a3f90c GIT binary patch literal 2348 zcma)7O>7fK6rTO{`X_c`f)fk@CpahuCEFAv3Q8+z6CuBEt;1)bv6ci>B!#q&3kX& zym|B9o8Oz7LI_4rk5=Hq2>r<>{*bo8=Fb4WK|0DJozr=f%W@v&v%E)ztl&{GD|%GQ zN~1}x2eEMG~TOhq#@oEy=`shzh=WfM~j^QN*!9GnAA zNwaidMDqk|^lgrE-Y5?dViS;tbzCO6zNIT_q~N$R!E~Hh`Rx<1tr3g20RPQJp2fS0 zW_MA>_eK$T?+=J7N}?G={hLBX`F$OT1Wy&8s|)wUCAJ3)4pF%A`Y1+x)Sye-5cFa` zx4{b{+TwGo$iIoN!OIzLh6m{ZUs_E0s6pv|9~ZlP)S$Y&w0&CG`-soK#_7s6egfSK z`qCMxDiwQud4pDY-=B-AkAr-z4K$!iEqgPC?E9gmI|NPyWDOPXP2WWu^J#Hpm`EUkp=$ZHq^ zp31u%b_3f@$6-FDyzzQo9kWYVE!ueqSP73odmB^F6T677P^>zWbW|I&dh@2CI+#pg zqB8&tMA^joL)T)`V&rqiVTA$876pU;l@y1E=jRYxyf$0Xu5h zD62VWnwUU;RGDGseqXsly1^^&qXKZC^P^exI1rw#K8?i}rsk(=T#cWr&WT$QBsHyx zdsoE0k7I4CUB{L`9{F3~C3!1^q~GrLJyoJ>O8bh^emile<5tHazp5PBQc$d;_T>-zeraFsKf4VybziX)s57S-#vP_yLMnz$-KkA9lw*jm0VTQjH}Em zH(M6M^Wire0Wk1pD~=+b^;d`okDe>hg~)tldH29i+M04|MLG3mLt=v0PCrECeoOSz zG`gQk5AH_~(!s&K!h_z^>A{5XFd@O@;r?AiEyBb8#85=|H6j7da3h&LZXlP_?R+jr zSW|_BgZzQ)Cagga)_+KX@nu>mGdAn*L}Z*4TvXrAMfJf&^}Y3yK}mY)?RNZEjooL? zd*z6i{chqto%++~)U&t!T_L0@_8w2CUNpPj6^~QHbm~!^Pn^{%5M&w|OhwzXh#C77&z^eC8~m0u2Ya$R#%HL-T_R&XWOwSi#1 MnBQWAoB;d(0;lyeH2?qr literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e163771b24ba0406743f4814ea61a4896ef4f9e1 GIT binary patch literal 4954 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 CYkIl> literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py new file mode 100644 index 00000000..f3f70ac8 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py @@ -0,0 +1,176 @@ +"""Logic that powers autocompletion installed by ``pip completion``. +""" + +import optparse +import os +import sys +from itertools import chain +from typing import Any, Iterable, List, Optional + +from pip._internal.cli.main_parser import create_main_parser +from pip._internal.commands import commands_dict, create_command +from pip._internal.metadata import get_default_environment + + +def autocomplete() -> None: + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + # Don't complete if autocompletion environment variables + # are not present + if not os.environ.get("COMP_WORDS") or not os.environ.get("COMP_CWORD"): + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name: Optional[str] = None + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + env = get_default_environment() + lc = current.lower() + installed = [ + dist.canonical_name + for dist in env.iter_installed_distributions(local_only=True) + if dist.canonical_name.startswith(lc) + and dist.canonical_name not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + should_list_installables = ( + not current.startswith("-") and subcommand_name == "install" + ) + if should_list_installables: + for path in auto_complete_paths(current, "path"): + print(path) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + options += [ + (opt_str, opt.nargs) for opt_str in opt._long_opts + opt._short_opts + ] + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ```` or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type( + cwords: List[str], cword: int, opts: Iterable[Any] +) -> Optional[str]: + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(``file``, ``path`` or ``dir``) + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/base_command.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 00000000..bc1ab659 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,231 @@ +"""Base Command class, and related routines""" + +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import List, Optional, Tuple + +from pip._vendor.rich import reconfigure +from pip._vendor.rich import traceback as rich_traceback + +from pip._internal.cli import cmdoptions +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.cli.status_codes import ( + ERROR, + PREVIOUS_BUILD_DIR_ERROR, + UNKNOWN_ERROR, + VIRTUALENV_NOT_FOUND, +) +from pip._internal.exceptions import ( + BadCommand, + CommandError, + DiagnosticPipError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, +) +from pip._internal.utils.filesystem import check_path_owner +from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging +from pip._internal.utils.misc import get_prog, normalize_path +from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry +from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = ["Command"] + +logger = logging.getLogger(__name__) + + +class Command(CommandContextMixIn): + usage: str = "" + ignore_require_venv: bool = False + + def __init__(self, name: str, summary: str, isolated: bool = False) -> None: + super().__init__() + + self.name = name + self.summary = summary + self.parser = ConfigOptionParser( + usage=self.usage, + prog=f"{get_prog()} {name}", + formatter=UpdatingDefaultsHelpFormatter(), + add_help_option=False, + name=name, + description=self.__doc__, + isolated=isolated, + ) + + self.tempdir_registry: Optional[TempDirRegistry] = None + + # Commands should add options to this option group + optgroup_name = f"{self.name.capitalize()} Options" + self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) + + # Add the general options + gen_opts = cmdoptions.make_option_group( + cmdoptions.general_group, + self.parser, + ) + self.parser.add_option_group(gen_opts) + + self.add_options() + + def add_options(self) -> None: + pass + + def handle_pip_version_check(self, options: Values) -> None: + """ + This is a no-op so that commands by default do not do the pip version + check. + """ + # Make sure we do the pip version check if the index_group options + # are present. + assert not hasattr(options, "no_index") + + def run(self, options: Values, args: List[str]) -> int: + raise NotImplementedError + + def _run_wrapper(self, level_number: int, options: Values, args: List[str]) -> int: + def _inner_run() -> int: + try: + return self.run(options, args) + finally: + self.handle_pip_version_check(options) + + if options.debug_mode: + rich_traceback.install(show_locals=True) + return _inner_run() + + try: + status = _inner_run() + assert isinstance(status, int) + return status + except DiagnosticPipError as exc: + logger.error("%s", exc, extra={"rich": True}) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except PreviousBuildDirError as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return PREVIOUS_BUILD_DIR_ERROR + except ( + InstallationError, + BadCommand, + NetworkConnectionError, + ) as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except CommandError as exc: + logger.critical("%s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BrokenStdoutLoggingError: + # Bypass our logger and write any remaining messages to + # stderr because stdout no longer works. + print("ERROR: Pipe to stdout was broken", file=sys.stderr) + if level_number <= logging.DEBUG: + traceback.print_exc(file=sys.stderr) + + return ERROR + except KeyboardInterrupt: + logger.critical("Operation cancelled by user") + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BaseException: + logger.critical("Exception:", exc_info=True) + + return UNKNOWN_ERROR + + def parse_args(self, args: List[str]) -> Tuple[Values, List[str]]: + # factored out for testability + return self.parser.parse_args(args) + + def main(self, args: List[str]) -> int: + try: + with self.main_context(): + return self._main(args) + finally: + logging.shutdown() + + def _main(self, args: List[str]) -> int: + # We must initialize this before the tempdir manager, otherwise the + # configuration would not be accessible by the time we clean up the + # tempdir manager. + self.tempdir_registry = self.enter_context(tempdir_registry()) + # Intentionally set as early as possible so globally-managed temporary + # directories are available to the rest of the code. + self.enter_context(global_tempdir_manager()) + + options, args = self.parse_args(args) + + # Set verbosity so that it can be used elsewhere. + self.verbosity = options.verbose - options.quiet + + reconfigure(no_color=options.no_color) + level_number = setup_logging( + verbosity=self.verbosity, + no_color=options.no_color, + user_log_file=options.log, + ) + + always_enabled_features = set(options.features_enabled) & set( + cmdoptions.ALWAYS_ENABLED_FEATURES + ) + if always_enabled_features: + logger.warning( + "The following features are always enabled: %s. ", + ", ".join(sorted(always_enabled_features)), + ) + + # Make sure that the --python argument isn't specified after the + # subcommand. We can tell, because if --python was specified, + # we should only reach this point if we're running in the created + # subprocess, which has the _PIP_RUNNING_IN_SUBPROCESS environment + # variable set. + if options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + logger.critical( + "The --python option must be placed before the pip subcommand name" + ) + sys.exit(ERROR) + + # TODO: Try to get these passing down from the command? + # without resorting to os.environ to hold these. + # This also affects isolated builds and it should. + + if options.no_input: + os.environ["PIP_NO_INPUT"] = "1" + + if options.exists_action: + os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) + + if options.require_venv and not self.ignore_require_venv: + # If a venv is required check if it can really be found + if not running_under_virtualenv(): + logger.critical("Could not find an activated virtualenv (required).") + sys.exit(VIRTUALENV_NOT_FOUND) + + if options.cache_dir: + options.cache_dir = normalize_path(options.cache_dir) + if not check_path_owner(options.cache_dir): + logger.warning( + "The directory '%s' or its parent directory is not owned " + "or is not writable by the current user. The cache " + "has been disabled. Check the permissions and owner of " + "that directory. If executing pip with sudo, you should " + "use sudo's -H flag.", + options.cache_dir, + ) + options.cache_dir = None + + return self._run_wrapper(level_number, options, args) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 00000000..0b7cff77 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1075 @@ +""" +shared options and groups + +The principle here is to define options once, but *not* instantiate them +globally. One reason being that options with action='append' can carry state +between parses. pip parses general options twice internally, and shouldn't +pass on state. To be consistent, all options will follow this design. +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import importlib.util +import logging +import os +import textwrap +from functools import partial +from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values +from textwrap import dedent +from typing import Any, Callable, Dict, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.parser import ConfigOptionParser +from pip._internal.exceptions import CommandError +from pip._internal.locations import USER_CACHE_DIR, get_src_prefix +from pip._internal.models.format_control import FormatControl +from pip._internal.models.index import PyPI +from pip._internal.models.target_python import TargetPython +from pip._internal.utils.hashes import STRONG_HASHES +from pip._internal.utils.misc import strtobool + +logger = logging.getLogger(__name__) + + +def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None: + """ + Raise an option parsing error using parser.error(). + + Args: + parser: an OptionParser instance. + option: an Option instance. + msg: the error text. + """ + msg = f"{option} error: {msg}" + msg = textwrap.fill(" ".join(msg.split())) + parser.error(msg) + + +def make_option_group(group: Dict[str, Any], parser: ConfigOptionParser) -> OptionGroup: + """ + Return an OptionGroup object + group -- assumed to be dict with 'name' and 'options' keys + parser -- an optparse Parser + """ + option_group = OptionGroup(parser, group["name"]) + for option in group["options"]: + option_group.add_option(option()) + return option_group + + +def check_dist_restriction(options: Values, check_target: bool = False) -> None: + """Function for determining if custom platform options are allowed. + + :param options: The OptionParser options. + :param check_target: Whether or not to check if --target is being used. + """ + dist_restriction_set = any( + [ + options.python_version, + options.platforms, + options.abis, + options.implementation, + ] + ) + + binary_only = FormatControl(set(), {":all:"}) + sdist_dependencies_allowed = ( + options.format_control != binary_only and not options.ignore_dependencies + ) + + # Installations or downloads using dist restrictions must not combine + # source distributions and dist-specific wheels, as they are not + # guaranteed to be locally compatible. + if dist_restriction_set and sdist_dependencies_allowed: + raise CommandError( + "When restricting platform and interpreter constraints using " + "--python-version, --platform, --abi, or --implementation, " + "either --no-deps must be set, or --only-binary=:all: must be " + "set and --no-binary must not be set (or must be set to " + ":none:)." + ) + + if check_target: + if not options.dry_run and dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target' or using '--dry-run'" + ) + + +def _path_option_check(option: Option, opt: str, value: str) -> str: + return os.path.expanduser(value) + + +def _package_name_option_check(option: Option, opt: str, value: str) -> str: + return canonicalize_name(value) + + +class PipOption(Option): + TYPES = Option.TYPES + ("path", "package_name") + TYPE_CHECKER = Option.TYPE_CHECKER.copy() + TYPE_CHECKER["package_name"] = _package_name_option_check + TYPE_CHECKER["path"] = _path_option_check + + +########### +# options # +########### + +help_: Callable[..., Option] = partial( + Option, + "-h", + "--help", + dest="help", + action="help", + help="Show help.", +) + +debug_mode: Callable[..., Option] = partial( + Option, + "--debug", + dest="debug_mode", + action="store_true", + default=False, + help=( + "Let unhandled exceptions propagate outside the main subroutine, " + "instead of logging them to stderr." + ), +) + +isolated_mode: Callable[..., Option] = partial( + Option, + "--isolated", + dest="isolated_mode", + action="store_true", + default=False, + help=( + "Run pip in an isolated mode, ignoring environment variables and user " + "configuration." + ), +) + +require_virtualenv: Callable[..., Option] = partial( + Option, + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=( + "Allow pip to only run in a virtual environment; " + "exit with an error otherwise." + ), +) + +override_externally_managed: Callable[..., Option] = partial( + Option, + "--break-system-packages", + dest="override_externally_managed", + action="store_true", + help="Allow pip to modify an EXTERNALLY-MANAGED Python installation", +) + +python: Callable[..., Option] = partial( + Option, + "--python", + dest="python", + help="Run pip with the specified Python interpreter.", +) + +verbose: Callable[..., Option] = partial( + Option, + "-v", + "--verbose", + dest="verbose", + action="count", + default=0, + help="Give more output. Option is additive, and can be used up to 3 times.", +) + +no_color: Callable[..., Option] = partial( + Option, + "--no-color", + dest="no_color", + action="store_true", + default=False, + help="Suppress colored output.", +) + +version: Callable[..., Option] = partial( + Option, + "-V", + "--version", + dest="version", + action="store_true", + help="Show version and exit.", +) + +quiet: Callable[..., Option] = partial( + Option, + "-q", + "--quiet", + dest="quiet", + action="count", + default=0, + help=( + "Give less output. Option is additive, and can be used up to 3" + " times (corresponding to WARNING, ERROR, and CRITICAL logging" + " levels)." + ), +) + +progress_bar: Callable[..., Option] = partial( + Option, + "--progress-bar", + dest="progress_bar", + type="choice", + choices=["on", "off", "raw"], + default="on", + help="Specify whether the progress bar should be used [on, off, raw] (default: on)", +) + +log: Callable[..., Option] = partial( + PipOption, + "--log", + "--log-file", + "--local-log", + dest="log", + metavar="path", + type="path", + help="Path to a verbose appending log.", +) + +no_input: Callable[..., Option] = partial( + Option, + # Don't ask for input + "--no-input", + dest="no_input", + action="store_true", + default=False, + help="Disable prompting for input.", +) + +keyring_provider: Callable[..., Option] = partial( + Option, + "--keyring-provider", + dest="keyring_provider", + choices=["auto", "disabled", "import", "subprocess"], + default="auto", + help=( + "Enable the credential lookup via the keyring library if user input is allowed." + " Specify which mechanism to use [disabled, import, subprocess]." + " (default: disabled)" + ), +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form scheme://[user:passwd@]proxy.server:port.", +) + +retries: Callable[..., Option] = partial( + Option, + "--retries", + dest="retries", + type="int", + default=5, + help="Maximum number of retries each connection should attempt " + "(default %default times).", +) + +timeout: Callable[..., Option] = partial( + Option, + "--timeout", + "--default-timeout", + metavar="sec", + dest="timeout", + type="float", + default=15, + help="Set the socket timeout (default %default seconds).", +) + + +def exists_action() -> Option: + return Option( + # Option when path already exist + "--exists-action", + dest="exists_action", + type="choice", + choices=["s", "i", "w", "b", "a"], + default=[], + action="append", + metavar="action", + help="Default action when a path already exists: " + "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", + ) + + +cert: Callable[..., Option] = partial( + PipOption, + "--cert", + dest="cert", + type="path", + metavar="path", + help=( + "Path to PEM-encoded CA certificate bundle. " + "If provided, overrides the default. " + "See 'SSL Certificate Verification' in pip documentation " + "for more information." + ), +) + +client_cert: Callable[..., Option] = partial( + PipOption, + "--client-cert", + dest="client_cert", + type="path", + default=None, + metavar="path", + help="Path to SSL client certificate, a single file containing the " + "private key and the certificate in PEM format.", +) + +index_url: Callable[..., Option] = partial( + Option, + "-i", + "--index-url", + "--pypi-url", + dest="index_url", + metavar="URL", + default=PyPI.simple_url, + help="Base URL of the Python Package Index (default %default). " + "This should point to a repository compliant with PEP 503 " + "(the simple repository API) or a local directory laid out " + "in the same format.", +) + + +def extra_index_url() -> Option: + return Option( + "--extra-index-url", + dest="extra_index_urls", + metavar="URL", + action="append", + default=[], + help="Extra URLs of package indexes to use in addition to " + "--index-url. Should follow the same rules as " + "--index-url.", + ) + + +no_index: Callable[..., Option] = partial( + Option, + "--no-index", + dest="no_index", + action="store_true", + default=False, + help="Ignore package index (only looking at --find-links URLs instead).", +) + + +def find_links() -> Option: + return Option( + "-f", + "--find-links", + dest="find_links", + action="append", + default=[], + metavar="url", + help="If a URL or path to an html file, then parse for links to " + "archives such as sdist (.tar.gz) or wheel (.whl) files. " + "If a local path or file:// URL that's a directory, " + "then look for archives in the directory listing. " + "Links to VCS project URLs are not supported.", + ) + + +def trusted_host() -> Option: + return Option( + "--trusted-host", + dest="trusted_hosts", + action="append", + metavar="HOSTNAME", + default=[], + help="Mark this host or host:port pair as trusted, even though it " + "does not have valid or any HTTPS.", + ) + + +def constraints() -> Option: + return Option( + "-c", + "--constraint", + dest="constraints", + action="append", + default=[], + metavar="file", + help="Constrain versions using the given constraints file. " + "This option can be used multiple times.", + ) + + +def requirements() -> Option: + return Option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help="Install from the given requirements file. " + "This option can be used multiple times.", + ) + + +def editable() -> Option: + return Option( + "-e", + "--editable", + dest="editables", + action="append", + default=[], + metavar="path/url", + help=( + "Install a project in editable mode (i.e. setuptools " + '"develop mode") from a local project path or a VCS url.' + ), + ) + + +def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None: + value = os.path.abspath(value) + setattr(parser.values, option.dest, value) + + +src: Callable[..., Option] = partial( + PipOption, + "--src", + "--source", + "--source-dir", + "--source-directory", + dest="src_dir", + type="path", + metavar="dir", + default=get_src_prefix(), + action="callback", + callback=_handle_src, + help="Directory to check out editable projects into. " + 'The default in a virtualenv is "/src". ' + 'The default for global installs is "/src".', +) + + +def _get_format_control(values: Values, option: Option) -> Any: + """Get a format_control object.""" + return getattr(values, option.dest) + + +def _handle_no_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.no_binary, + existing.only_binary, + ) + + +def _handle_only_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.only_binary, + existing.no_binary, + ) + + +def no_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--no-binary", + dest="format_control", + action="callback", + callback=_handle_no_binary, + type="str", + default=format_control, + help="Do not use binary packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all binary packages, ":none:" to empty the set (notice ' + "the colons), or one or more package names with commas between " + "them (no colons). Note that some packages are tricky to compile " + "and may fail to install when this option is used on them.", + ) + + +def only_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--only-binary", + dest="format_control", + action="callback", + callback=_handle_only_binary, + type="str", + default=format_control, + help="Do not use source packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all source packages, ":none:" to empty the set, or one ' + "or more package names with commas between them. Packages " + "without binary distributions will fail to install when this " + "option is used on them.", + ) + + +platforms: Callable[..., Option] = partial( + Option, + "--platform", + dest="platforms", + metavar="platform", + action="append", + default=None, + help=( + "Only use wheels compatible with . Defaults to the " + "platform of the running system. Use this option multiple times to " + "specify multiple platforms supported by the target interpreter." + ), +) + + +# This was made a separate function for unit-testing purposes. +def _convert_python_version(value: str) -> Tuple[Tuple[int, ...], Optional[str]]: + """ + Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. + + :return: A 2-tuple (version_info, error_msg), where `error_msg` is + non-None if and only if there was a parsing error. + """ + if not value: + # The empty string is the same as not providing a value. + return (None, None) + + parts = value.split(".") + if len(parts) > 3: + return ((), "at most three version parts are allowed") + + if len(parts) == 1: + # Then we are in the case of "3" or "37". + value = parts[0] + if len(value) > 1: + parts = [value[0], value[1:]] + + try: + version_info = tuple(int(part) for part in parts) + except ValueError: + return ((), "each version part must be an integer") + + return (version_info, None) + + +def _handle_python_version( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """ + Handle a provided --python-version value. + """ + version_info, error_msg = _convert_python_version(value) + if error_msg is not None: + msg = f"invalid --python-version value: {value!r}: {error_msg}" + raise_option_error(parser, option=option, msg=msg) + + parser.values.python_version = version_info + + +python_version: Callable[..., Option] = partial( + Option, + "--python-version", + dest="python_version", + metavar="python_version", + action="callback", + callback=_handle_python_version, + type="str", + default=None, + help=dedent( + """\ + The Python interpreter version to use for wheel and "Requires-Python" + compatibility checks. Defaults to a version derived from the running + interpreter. The version can be specified using up to three dot-separated + integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor + version can also be given as a string without dots (e.g. "37" for 3.7.0). + """ + ), +) + + +implementation: Callable[..., Option] = partial( + Option, + "--implementation", + dest="implementation", + metavar="implementation", + default=None, + help=( + "Only use wheels compatible with Python " + "implementation , e.g. 'pp', 'jy', 'cp', " + " or 'ip'. If not specified, then the current " + "interpreter implementation is used. Use 'py' to force " + "implementation-agnostic wheels." + ), +) + + +abis: Callable[..., Option] = partial( + Option, + "--abi", + dest="abis", + metavar="abi", + action="append", + default=None, + help=( + "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " + "If not specified, then the current interpreter abi tag is used. " + "Use this option multiple times to specify multiple abis supported " + "by the target interpreter. Generally you will need to specify " + "--implementation, --platform, and --python-version when using this " + "option." + ), +) + + +def add_target_python_options(cmd_opts: OptionGroup) -> None: + cmd_opts.add_option(platforms()) + cmd_opts.add_option(python_version()) + cmd_opts.add_option(implementation()) + cmd_opts.add_option(abis()) + + +def make_target_python(options: Values) -> TargetPython: + target_python = TargetPython( + platforms=options.platforms, + py_version_info=options.python_version, + abis=options.abis, + implementation=options.implementation, + ) + + return target_python + + +def prefer_binary() -> Option: + return Option( + "--prefer-binary", + dest="prefer_binary", + action="store_true", + default=False, + help=( + "Prefer binary packages over source packages, even if the " + "source packages are newer." + ), + ) + + +cache_dir: Callable[..., Option] = partial( + PipOption, + "--cache-dir", + dest="cache_dir", + default=USER_CACHE_DIR, + metavar="dir", + type="path", + help="Store the cache data in .", +) + + +def _handle_no_cache_dir( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-cache-dir option. + + This is an optparse.Option callback for the --no-cache-dir option. + """ + # The value argument will be None if --no-cache-dir is passed via the + # command-line, since the option doesn't accept arguments. However, + # the value can be non-None if the option is triggered e.g. by an + # environment variable, like PIP_NO_CACHE_DIR=true. + if value is not None: + # Then parse the string value to get argument error-checking. + try: + strtobool(value) + except ValueError as exc: + raise_option_error(parser, option=option, msg=str(exc)) + + # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() + # converted to 0 (like "false" or "no") caused cache_dir to be disabled + # rather than enabled (logic would say the latter). Thus, we disable + # the cache directory not just on values that parse to True, but (for + # backwards compatibility reasons) also on values that parse to False. + # In other words, always set it to False if the option is provided in + # some (valid) form. + parser.values.cache_dir = False + + +no_cache: Callable[..., Option] = partial( + Option, + "--no-cache-dir", + dest="cache_dir", + action="callback", + callback=_handle_no_cache_dir, + help="Disable the cache.", +) + +no_deps: Callable[..., Option] = partial( + Option, + "--no-deps", + "--no-dependencies", + dest="ignore_dependencies", + action="store_true", + default=False, + help="Don't install package dependencies.", +) + +ignore_requires_python: Callable[..., Option] = partial( + Option, + "--ignore-requires-python", + dest="ignore_requires_python", + action="store_true", + help="Ignore the Requires-Python information.", +) + +no_build_isolation: Callable[..., Option] = partial( + Option, + "--no-build-isolation", + dest="build_isolation", + action="store_false", + default=True, + help="Disable isolation when building a modern source distribution. " + "Build dependencies specified by PEP 518 must be already installed " + "if this option is used.", +) + +check_build_deps: Callable[..., Option] = partial( + Option, + "--check-build-dependencies", + dest="check_build_deps", + action="store_true", + default=False, + help="Check the build dependencies when PEP517 is used.", +) + + +def _handle_no_use_pep517( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-use-pep517 option. + + This is an optparse.Option callback for the no_use_pep517 option. + """ + # Since --no-use-pep517 doesn't accept arguments, the value argument + # will be None if --no-use-pep517 is passed via the command-line. + # However, the value can be non-None if the option is triggered e.g. + # by an environment variable, for example "PIP_NO_USE_PEP517=true". + if value is not None: + msg = """A value was passed for --no-use-pep517, + probably using either the PIP_NO_USE_PEP517 environment variable + or the "no-use-pep517" config file option. Use an appropriate value + of the PIP_USE_PEP517 environment variable or the "use-pep517" + config file option instead. + """ + raise_option_error(parser, option=option, msg=msg) + + # If user doesn't wish to use pep517, we check if setuptools and wheel are installed + # and raise error if it is not. + packages = ("setuptools", "wheel") + if not all(importlib.util.find_spec(package) for package in packages): + msg = ( + f"It is not possible to use --no-use-pep517 " + f"without {' and '.join(packages)} installed." + ) + raise_option_error(parser, option=option, msg=msg) + + # Otherwise, --no-use-pep517 was passed via the command-line. + parser.values.use_pep517 = False + + +use_pep517: Any = partial( + Option, + "--use-pep517", + dest="use_pep517", + action="store_true", + default=None, + help="Use PEP 517 for building source distributions " + "(use --no-use-pep517 to force legacy behaviour).", +) + +no_use_pep517: Any = partial( + Option, + "--no-use-pep517", + dest="use_pep517", + action="callback", + callback=_handle_no_use_pep517, + default=None, + help=SUPPRESS_HELP, +) + + +def _handle_config_settings( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + key, sep, val = value.partition("=") + if sep != "=": + parser.error(f"Arguments to {opt_str} must be of the form KEY=VAL") + dest = getattr(parser.values, option.dest) + if dest is None: + dest = {} + setattr(parser.values, option.dest, dest) + if key in dest: + if isinstance(dest[key], list): + dest[key].append(val) + else: + dest[key] = [dest[key], val] + else: + dest[key] = val + + +config_settings: Callable[..., Option] = partial( + Option, + "-C", + "--config-settings", + dest="config_settings", + type=str, + action="callback", + callback=_handle_config_settings, + metavar="settings", + help="Configuration settings to be passed to the PEP 517 build backend. " + "Settings take the form KEY=VALUE. Use multiple --config-settings options " + "to pass multiple keys to the backend.", +) + +build_options: Callable[..., Option] = partial( + Option, + "--build-option", + dest="build_options", + metavar="options", + action="append", + help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", +) + +global_options: Callable[..., Option] = partial( + Option, + "--global-option", + dest="global_options", + action="append", + metavar="options", + help="Extra global options to be supplied to the setup.py " + "call before the install or bdist_wheel command.", +) + +no_clean: Callable[..., Option] = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) + +pre: Callable[..., Option] = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) + +disable_pip_version_check: Callable[..., Option] = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=False, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + +root_user_action: Callable[..., Option] = partial( + Option, + "--root-user-action", + dest="root_user_action", + default="warn", + choices=["warn", "ignore"], + help="Action if pip is run as a root user [warn, ignore] (default: warn)", +) + + +def _handle_merge_hash( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """Given a value spelled "algo:digest", append the digest to a list + pointed to in a dict by the algo name.""" + if not parser.values.hashes: + parser.values.hashes = {} + try: + algo, digest = value.split(":", 1) + except ValueError: + parser.error( + f"Arguments to {opt_str} must be a hash name " + "followed by a value, like --hash=sha256:" + "abcde..." + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( + opt_str, ", ".join(STRONG_HASHES) + ) + ) + parser.values.hashes.setdefault(algo, []).append(digest) + + +hash: Callable[..., Option] = partial( + Option, + "--hash", + # Hash values eventually end up in InstallRequirement.hashes due to + # __dict__ copying in process_line(). + dest="hashes", + action="callback", + callback=_handle_merge_hash, + type="string", + help="Verify that the package's archive matches this " + "hash before installing. Example: --hash=sha256:abcdef...", +) + + +require_hashes: Callable[..., Option] = partial( + Option, + "--require-hashes", + dest="require_hashes", + action="store_true", + default=False, + help="Require a hash to check each requirement against, for " + "repeatable installs. This option is implied when any package in a " + "requirements file has a --hash option.", +) + + +list_path: Callable[..., Option] = partial( + PipOption, + "--path", + dest="path", + type="path", + action="append", + help="Restrict to the specified installation path for listing " + "packages (can be used multiple times).", +) + + +def check_list_path_option(options: Values) -> None: + if options.path and (options.user or options.local): + raise CommandError("Cannot combine '--path' with '--user' or '--local'") + + +list_exclude: Callable[..., Option] = partial( + PipOption, + "--exclude", + dest="excludes", + action="append", + metavar="package", + type="package_name", + help="Exclude specified package from the output", +) + + +no_python_version_warning: Callable[..., Option] = partial( + Option, + "--no-python-version-warning", + dest="no_python_version_warning", + action="store_true", + default=False, + help="Silence deprecation warnings for upcoming unsupported Pythons.", +) + + +# Features that are now always on. A warning is printed if they are used. +ALWAYS_ENABLED_FEATURES = [ + "truststore", # always on since 24.2 + "no-binary-enable-wheel-cache", # always on since 23.1 +] + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "fast-deps", + ] + + ALWAYS_ENABLED_FEATURES, + help="Enable new functionality, that may be backward incompatible.", +) + +use_deprecated_feature: Callable[..., Option] = partial( + Option, + "--use-deprecated", + dest="deprecated_features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "legacy-resolver", + "legacy-certs", + ], + help=("Enable deprecated functionality, that will be removed in the future."), +) + + +########## +# groups # +########## + +general_group: Dict[str, Any] = { + "name": "General Options", + "options": [ + help_, + debug_mode, + isolated_mode, + require_virtualenv, + python, + verbose, + version, + quiet, + log, + no_input, + keyring_provider, + proxy, + retries, + timeout, + exists_action, + trusted_host, + cert, + client_cert, + cache_dir, + no_cache, + disable_pip_version_check, + no_color, + no_python_version_warning, + use_new_feature, + use_deprecated_feature, + ], +} + +index_group: Dict[str, Any] = { + "name": "Package Index Options", + "options": [ + index_url, + extra_index_url, + no_index, + find_links, + ], +} diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/command_context.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 00000000..139995ac --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,27 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Generator, TypeVar + +_T = TypeVar("_T", covariant=True) + + +class CommandContextMixIn: + def __init__(self) -> None: + super().__init__() + self._in_main_context = False + self._main_context = ExitStack() + + @contextmanager + def main_context(self) -> Generator[None, None, None]: + assert not self._in_main_context + + self._in_main_context = True + try: + with self._main_context: + yield + finally: + self._in_main_context = False + + def enter_context(self, context_provider: ContextManager[_T]) -> _T: + assert self._in_main_context + + return self._main_context.enter_context(context_provider) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/index_command.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/index_command.py new file mode 100644 index 00000000..226f8da1 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/index_command.py @@ -0,0 +1,170 @@ +""" +Contains command classes which may interact with an index / the network. + +Unlike its sister module, req_command, this module still uses lazy imports +so commands which don't always hit the network (e.g. list w/o --outdated or +--uptodate) don't need waste time importing PipSession and friends. +""" + +import logging +import os +import sys +from optparse import Values +from typing import TYPE_CHECKING, List, Optional + +from pip._vendor import certifi + +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn + +if TYPE_CHECKING: + from ssl import SSLContext + + from pip._internal.network.session import PipSession + +logger = logging.getLogger(__name__) + + +def _create_truststore_ssl_context() -> Optional["SSLContext"]: + if sys.version_info < (3, 10): + logger.debug("Disabling truststore because Python version isn't 3.10+") + return None + + try: + import ssl + except ImportError: + logger.warning("Disabling truststore since ssl support is missing") + return None + + try: + from pip._vendor import truststore + except ImportError: + logger.warning("Disabling truststore because platform isn't supported") + return None + + ctx = truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT) + ctx.load_verify_locations(certifi.where()) + return ctx + + +class SessionCommandMixin(CommandContextMixIn): + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self) -> None: + super().__init__() + self._session: Optional["PipSession"] = None + + @classmethod + def _get_index_urls(cls, options: Values) -> Optional[List[str]]: + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options: Values) -> "PipSession": + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session( + self, + options: Values, + retries: Optional[int] = None, + timeout: Optional[int] = None, + ) -> "PipSession": + from pip._internal.network.session import PipSession + + cache_dir = options.cache_dir + assert not cache_dir or os.path.isabs(cache_dir) + + if "legacy-certs" not in options.deprecated_features_enabled: + ssl_context = _create_truststore_ssl_context() + else: + ssl_context = None + + session = PipSession( + cache=os.path.join(cache_dir, "http-v2") if cache_dir else None, + retries=retries if retries is not None else options.retries, + trusted_hosts=options.trusted_hosts, + index_urls=self._get_index_urls(options), + ssl_context=ssl_context, + ) + + # Handle custom ca-bundles from the user + if options.cert: + session.verify = options.cert + + # Handle SSL client certificate + if options.client_cert: + session.cert = options.client_cert + + # Handle timeouts + if options.timeout or timeout: + session.timeout = timeout if timeout is not None else options.timeout + + # Handle configured proxies + if options.proxy: + session.proxies = { + "http": options.proxy, + "https": options.proxy, + } + session.trust_env = False + + # Determine if we can prompt the user for authentication or not + session.auth.prompting = not options.no_input + session.auth.keyring_provider = options.keyring_provider + + return session + + +def _pip_self_version_check(session: "PipSession", options: Values) -> None: + from pip._internal.self_outdated_check import pip_self_version_check as check + + check(session, options) + + +class IndexGroupCommand(Command, SessionCommandMixin): + """ + Abstract base class for commands with the index_group options. + + This also corresponds to the commands that permit the pip version check. + """ + + def handle_pip_version_check(self, options: Values) -> None: + """ + Do the pip version check if not disabled. + + This overrides the default behavior of not doing the check. + """ + # Make sure the index_group options are present. + assert hasattr(options, "no_index") + + if options.disable_pip_version_check or options.no_index: + return + + try: + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, + retries=0, + timeout=min(5, options.timeout), + ) + with session: + _pip_self_version_check(session, options) + except Exception: + logger.warning("There was an error checking the latest version of pip.") + logger.debug("See below for error", exc_info=True) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/main.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/main.py new file mode 100644 index 00000000..563ac79c --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,80 @@ +"""Primary application entrypoint. +""" + +import locale +import logging +import os +import sys +import warnings +from typing import List, Optional + +from pip._internal.cli.autocompletion import autocomplete +from pip._internal.cli.main_parser import parse_command +from pip._internal.commands import create_command +from pip._internal.exceptions import PipError +from pip._internal.utils import deprecation + +logger = logging.getLogger(__name__) + + +# Do not import and use main() directly! Using it directly is actively +# discouraged by pip's maintainers. The name, location and behavior of +# this function is subject to change, so calling it directly is not +# portable across different pip versions. + +# In addition, running pip in-process is unsupported and unsafe. This is +# elaborated in detail at +# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. +# That document also provides suggestions that should work for nearly +# all users that are considering importing and using main() directly. + +# However, we know that certain users will still want to invoke pip +# in-process. If you understand and accept the implications of using pip +# in an unsupported manner, the best approach is to use runpy to avoid +# depending on the exact location of this entry point. + +# The following example shows how to use runpy to invoke pip in that +# case: +# +# sys.argv = ["pip", your, args, here] +# runpy.run_module("pip", run_name="__main__") +# +# Note that this will exit the process after running, unlike a direct +# call to main. As it is not safe to do any processing after calling +# main, this should not be an issue in practice. + + +def main(args: Optional[List[str]] = None) -> int: + if args is None: + args = sys.argv[1:] + + # Suppress the pkg_resources deprecation warning + # Note - we use a module of .*pkg_resources to cover + # the normal case (pip._vendor.pkg_resources) and the + # devendored case (a bare pkg_resources) + warnings.filterwarnings( + action="ignore", category=DeprecationWarning, module=".*pkg_resources" + ) + + # Configure our deprecation warnings to be sent through loggers + deprecation.install_warning_logger() + + autocomplete() + + try: + cmd_name, cmd_args = parse_command(args) + except PipError as exc: + sys.stderr.write(f"ERROR: {exc}") + sys.stderr.write(os.linesep) + sys.exit(1) + + # Needed for locale.getpreferredencoding(False) to work + # in pip._internal.utils.encoding.auto_decode + try: + locale.setlocale(locale.LC_ALL, "") + except locale.Error as e: + # setlocale can apparently crash if locale are uninitialized + logger.debug("Ignoring error %s when setting locale", e) + command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) + + return command.main(cmd_args) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 00000000..5ade356b --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,134 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import subprocess +import sys +from typing import List, Optional, Tuple + +from pip._internal.build_env import get_runnable_pip +from pip._internal.cli import cmdoptions +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.commands import commands_dict, get_similar_commands +from pip._internal.exceptions import CommandError +from pip._internal.utils.misc import get_pip_version, get_prog + +__all__ = ["create_main_parser", "parse_command"] + + +def create_main_parser() -> ConfigOptionParser: + """Creates and returns the main parser for pip's CLI""" + + parser = ConfigOptionParser( + usage="\n%prog [options]", + add_help_option=False, + formatter=UpdatingDefaultsHelpFormatter(), + name="global", + prog=get_prog(), + ) + parser.disable_interspersed_args() + + parser.version = get_pip_version() + + # add the general options + gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) + parser.add_option_group(gen_opts) + + # so the help formatter knows + parser.main = True # type: ignore + + # create command listing for description + description = [""] + [ + f"{name:27} {command_info.summary}" + for name, command_info in commands_dict.items() + ] + parser.description = "\n".join(description) + + return parser + + +def identify_python_interpreter(python: str) -> Optional[str]: + # If the named file exists, use it. + # If it's a directory, assume it's a virtual environment and + # look for the environment's Python executable. + if os.path.exists(python): + if os.path.isdir(python): + # bin/python for Unix, Scripts/python.exe for Windows + # Try both in case of odd cases like cygwin. + for exe in ("bin/python", "Scripts/python.exe"): + py = os.path.join(python, exe) + if os.path.exists(py): + return py + else: + return python + + # Could not find the interpreter specified + return None + + +def parse_command(args: List[str]) -> Tuple[str, List[str]]: + parser = create_main_parser() + + # Note: parser calls disable_interspersed_args(), so the result of this + # call is to split the initial args into the general options before the + # subcommand and everything else. + # For example: + # args: ['--timeout=5', 'install', '--user', 'INITools'] + # general_options: ['--timeout==5'] + # args_else: ['install', '--user', 'INITools'] + general_options, args_else = parser.parse_args(args) + + # --python + if general_options.python and "_PIP_RUNNING_IN_SUBPROCESS" not in os.environ: + # Re-invoke pip using the specified Python interpreter + interpreter = identify_python_interpreter(general_options.python) + if interpreter is None: + raise CommandError( + f"Could not locate Python interpreter {general_options.python}" + ) + + pip_cmd = [ + interpreter, + get_runnable_pip(), + ] + pip_cmd.extend(args) + + # Set a flag so the child doesn't re-invoke itself, causing + # an infinite loop. + os.environ["_PIP_RUNNING_IN_SUBPROCESS"] = "1" + returncode = 0 + try: + proc = subprocess.run(pip_cmd) + returncode = proc.returncode + except (subprocess.SubprocessError, OSError) as exc: + raise CommandError(f"Failed to run pip under {interpreter}: {exc}") + sys.exit(returncode) + + # --version + if general_options.version: + sys.stdout.write(parser.version) + sys.stdout.write(os.linesep) + sys.exit() + + # pip || pip help -> print_help() + if not args_else or (args_else[0] == "help" and len(args_else) == 1): + parser.print_help() + sys.exit() + + # the subcommand name + cmd_name = args_else[0] + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + # all the args without the subcommand + cmd_args = args[:] + cmd_args.remove(cmd_name) + + return cmd_name, cmd_args diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/parser.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 00000000..b7d7c1f6 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,294 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Generator, List, Optional, Tuple + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args: Any, **kwargs: Any) -> None: + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option: optparse.Option) -> str: + return self._format_option_strings(option) + + def _format_option_strings( + self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " + ) -> str: + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading: str) -> str: + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage: str) -> str: + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description: Optional[str]) -> str: + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog: Optional[str]) -> str: + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text: str, indent: str) -> str: + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option: optparse.Option) -> str: + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group( + self, idx: int, *args: Any, **kwargs: Any + ) -> optparse.OptionGroup: + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self) -> List[optparse.Option]: + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args: Any, + name: str, + isolated: bool = False, + **kwargs: Any, + ) -> None: + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items( + self, + ) -> Generator[Tuple[str, Any], None, None]: + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items: Dict[str, List[Tuple[str, Any]]] = { + name: [] for name in override_order + } + for section_key, val in self.config.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as it's value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + for key, val in section_items[section]: + yield key, val + + def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]: + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + f"{val} is not a valid value for {key} option, " + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead." + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + f"{val} is not a valid value for {key} option, " + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0." + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self) -> optparse.Values: + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg: str) -> None: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 00000000..883359c9 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,94 @@ +import functools +import sys +from typing import Callable, Generator, Iterable, Iterator, Optional, Tuple + +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +from pip._internal.cli.spinners import RateLimiter +from pip._internal.utils.logging import get_indentation + +DownloadProgressRenderer = Callable[[Iterable[bytes]], Iterator[bytes]] + + +def _rich_progress_bar( + iterable: Iterable[bytes], + *, + bar_type: str, + size: int, +) -> Generator[bytes, None, None]: + assert bar_type == "on", "This should only be used in the default mode." + + if not size: + total = float("inf") + columns: Tuple[ProgressColumn, ...] = ( + TextColumn("[progress.description]{task.description}"), + SpinnerColumn("line", speed=1.5), + FileSizeColumn(), + TransferSpeedColumn(), + TimeElapsedColumn(), + ) + else: + total = size + columns = ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TextColumn("eta"), + TimeRemainingColumn(), + ) + + progress = Progress(*columns, refresh_per_second=5) + task_id = progress.add_task(" " * (get_indentation() + 2), total=total) + with progress: + for chunk in iterable: + yield chunk + progress.update(task_id, advance=len(chunk)) + + +def _raw_progress_bar( + iterable: Iterable[bytes], + *, + size: Optional[int], +) -> Generator[bytes, None, None]: + def write_progress(current: int, total: int) -> None: + sys.stdout.write("Progress %d of %d\n" % (current, total)) + sys.stdout.flush() + + current = 0 + total = size or 0 + rate_limiter = RateLimiter(0.25) + + write_progress(current, total) + for chunk in iterable: + current += len(chunk) + if rate_limiter.ready() or current == total: + write_progress(current, total) + rate_limiter.reset() + yield chunk + + +def get_download_progress_renderer( + *, bar_type: str, size: Optional[int] = None +) -> DownloadProgressRenderer: + """Get an object that can be used to render the download progress. + + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial(_rich_progress_bar, bar_type=bar_type, size=size) + elif bar_type == "raw": + return functools.partial(_raw_progress_bar, size=size) + else: + return iter # no-op, when passed an iterator diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/req_command.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 00000000..92900f94 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,329 @@ +"""Contains the RequirementCommand base class. + +This class is in a separate module so the commands that do not always +need PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +import logging +from functools import partial +from optparse import Values +from typing import Any, List, Optional, Tuple + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.index_command import IndexGroupCommand +from pip._internal.cli.index_command import SessionCommandMixin as SessionCommandMixin +from pip._internal.exceptions import CommandError, PreviousBuildDirError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, + install_req_from_parsed_requirement, + install_req_from_req_string, +) +from pip._internal.req.req_file import parse_requirements +from pip._internal.req.req_install import InstallRequirement +from pip._internal.resolution.base import BaseResolver +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) + +logger = logging.getLogger(__name__) + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +def with_cleanup(func: Any) -> Any: + """Decorator for common logic related to managing temporary + directories. + """ + + def configure_tempdir_registry(registry: TempDirectoryTypeRegistry) -> None: + for t in KEEPABLE_TEMPDIR_TYPES: + registry.set_delete(t, False) + + def wrapper( + self: RequirementCommand, options: Values, args: List[Any] + ) -> Optional[int]: + assert self.tempdir_registry is not None + if options.no_clean: + configure_tempdir_registry(self.tempdir_registry) + + try: + return func(self, options, args) + except PreviousBuildDirError: + # This kind of conflict can occur when the user passes an explicit + # build directory with a pre-existing folder. In that case we do + # not want to accidentally remove it. + configure_tempdir_registry(self.tempdir_registry) + raise + + return wrapper + + +class RequirementCommand(IndexGroupCommand): + def __init__(self, *args: Any, **kw: Any) -> None: + super().__init__(*args, **kw) + + self.cmd_opts.add_option(cmdoptions.no_clean()) + + @staticmethod + def determine_resolver_variant(options: Values) -> str: + """Determines which resolver should be used, based on the given options.""" + if "legacy-resolver" in options.deprecated_features_enabled: + return "legacy" + + return "resolvelib" + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + build_tracker: BuildTracker, + session: PipSession, + finder: PackageFinder, + use_user_site: bool, + download_dir: Optional[str] = None, + verbosity: int = 0, + ) -> RequirementPreparer: + """ + Create a RequirementPreparer instance for the given parameters. + """ + temp_build_dir_path = temp_build_dir.path + assert temp_build_dir_path is not None + legacy_resolver = False + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "resolvelib": + lazy_wheel = "fast-deps" in options.features_enabled + if lazy_wheel: + logger.warning( + "pip is using lazily downloaded wheels using HTTP " + "range requests to obtain dependency information. " + "This experimental feature is enabled through " + "--use-feature=fast-deps and it is not ready for " + "production." + ) + else: + legacy_resolver = True + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + check_build_deps=options.check_build_deps, + build_tracker=build_tracker, + session=session, + progress_bar=options.progress_bar, + finder=finder, + require_hashes=options.require_hashes, + use_user_site=use_user_site, + lazy_wheel=lazy_wheel, + verbosity=verbosity, + legacy_resolver=legacy_resolver, + ) + + @classmethod + def make_resolver( + cls, + preparer: RequirementPreparer, + finder: PackageFinder, + options: Values, + wheel_cache: Optional[WheelCache] = None, + use_user_site: bool = False, + ignore_installed: bool = True, + ignore_requires_python: bool = False, + force_reinstall: bool = False, + upgrade_strategy: str = "to-satisfy-only", + use_pep517: Optional[bool] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> BaseResolver: + """ + Create a Resolver instance for the given parameters. + """ + make_install_req = partial( + install_req_from_req_string, + isolated=options.isolated_mode, + use_pep517=use_pep517, + ) + resolver_variant = cls.determine_resolver_variant(options) + # The long import name and duplicated invocation is needed to convince + # Mypy into correctly typechecking. Otherwise it would complain the + # "Resolver" class being redefined. + if resolver_variant == "resolvelib": + import pip._internal.resolution.resolvelib.resolver + + return pip._internal.resolution.resolvelib.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + import pip._internal.resolution.legacy.resolver + + return pip._internal.resolution.legacy.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + + def get_requirements( + self, + args: List[str], + options: Values, + finder: PackageFinder, + session: PipSession, + ) -> List[InstallRequirement]: + """ + Parse command-line arguments into the corresponding requirements. + """ + requirements: List[InstallRequirement] = [] + for filename in options.constraints: + for parsed_req in parse_requirements( + filename, + constraint=True, + finder=finder, + options=options, + session=session, + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=False, + ) + requirements.append(req_to_add) + + for req in args: + req_to_add = install_req_from_line( + req, + comes_from=None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + for req in options.editables: + req_to_add = install_req_from_editable( + req, + user_supplied=True, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + config_settings=getattr(options, "config_settings", None), + ) + requirements.append(req_to_add) + + # NOTE: options.require_hashes may be set if --require-hashes is True + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, finder=finder, options=options, session=session + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + config_settings=( + parsed_req.options.get("config_settings") + if parsed_req.options + else None + ), + ) + requirements.append(req_to_add) + + # If any requirement has hash options, enable hash checking. + if any(req.has_hash_options for req in requirements): + options.require_hashes = True + + if not (args or options.editables or options.requirements): + opts = {"name": self.name} + if options.find_links: + raise CommandError( + "You must give at least one requirement to {name} " + '(maybe you meant "pip {name} {links}"?)'.format( + **dict(opts, links=" ".join(options.find_links)) + ) + ) + else: + raise CommandError( + "You must give at least one requirement to {name} " + '(see "pip help {name}")'.format(**opts) + ) + + return requirements + + @staticmethod + def trace_basic_info(finder: PackageFinder) -> None: + """ + Trace basic information about the provided objects. + """ + # Display where finder is looking for packages + search_scope = finder.search_scope + locations = search_scope.get_formatted_locations() + if locations: + logger.info(locations) + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to this requirement command. + + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + link_collector = LinkCollector.create(session, options=options) + selection_prefs = SelectionPreferences( + allow_yanked=True, + format_control=options.format_control, + allow_all_prereleases=options.pre, + prefer_binary=options.prefer_binary, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/spinners.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 00000000..cf2b976f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,159 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Generator, Optional + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation + +logger = logging.getLogger(__name__) + + +class SpinnerInterface: + def spin(self) -> None: + raise NotImplementedError() + + def finish(self, final_status: str) -> None: + raise NotImplementedError() + + +class InteractiveSpinner(SpinnerInterface): + def __init__( + self, + message: str, + file: Optional[IO[str]] = None, + spin_chars: str = "-\\|/", + # Empirically, 8 updates/second looks nice + min_update_interval_seconds: float = 0.125, + ): + self._message = message + if file is None: + file = sys.stdout + self._file = file + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._finished = False + + self._spin_cycle = itertools.cycle(spin_chars) + + self._file.write(" " * get_indentation() + self._message + " ... ") + self._width = 0 + + def _write(self, status: str) -> None: + assert not self._finished + # Erase what we wrote before by backspacing to the beginning, writing + # spaces to overwrite the old text, and then backspacing again + backup = "\b" * self._width + self._file.write(backup + " " * self._width + backup) + # Now we have a blank slate to add our status + self._file.write(status) + self._width = len(status) + self._file.flush() + self._rate_limiter.reset() + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._write(next(self._spin_cycle)) + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._write(final_status) + self._file.write("\n") + self._file.flush() + self._finished = True + + +# Used for dumb terminals, non-interactive installs (no tty), etc. +# We still print updates occasionally (once every 60 seconds by default) to +# act as a keep-alive for systems like Travis-CI that take lack-of-output as +# an indication that a task has frozen. +class NonInteractiveSpinner(SpinnerInterface): + def __init__(self, message: str, min_update_interval_seconds: float = 60.0) -> None: + self._message = message + self._finished = False + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._update("started") + + def _update(self, status: str) -> None: + assert not self._finished + self._rate_limiter.reset() + logger.info("%s: %s", self._message, status) + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._update("still running...") + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._update(f"finished with status '{final_status}'") + self._finished = True + + +class RateLimiter: + def __init__(self, min_update_interval_seconds: float) -> None: + self._min_update_interval_seconds = min_update_interval_seconds + self._last_update: float = 0 + + def ready(self) -> bool: + now = time.time() + delta = now - self._last_update + return delta >= self._min_update_interval_seconds + + def reset(self) -> None: + self._last_update = time.time() + + +@contextlib.contextmanager +def open_spinner(message: str) -> Generator[SpinnerInterface, None, None]: + # Interactive spinner goes directly to sys.stdout rather than being routed + # through the logging system, but it acts like it has level INFO, + # i.e. it's only displayed if we're at level INFO or better. + # Non-interactive spinner goes through the logging system, so it is always + # in sync with logging configuration. + if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: + spinner: SpinnerInterface = InteractiveSpinner(message) + else: + spinner = NonInteractiveSpinner(message) + try: + with hidden_cursor(sys.stdout): + yield spinner + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +HIDE_CURSOR = "\x1b[?25l" +SHOW_CURSOR = "\x1b[?25h" + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Generator[None, None, None]: + # The Windows terminal does not support the hide/show cursor ANSI codes, + # even via colorama. So don't even try. + if WINDOWS: + yield + # We don't want to clutter the output with control characters if we're + # writing to a file, or if the user is running with --quiet. + # See https://github.com/pypa/pip/issues/3418 + elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: + yield + else: + file.write(HIDE_CURSOR) + try: + yield + finally: + file.write(SHOW_CURSOR) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 00000000..5e29502c --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py @@ -0,0 +1,6 @@ +SUCCESS = 0 +ERROR = 1 +UNKNOWN_ERROR = 2 +VIRTUALENV_NOT_FOUND = 3 +PREVIOUS_BUILD_DIR_ERROR = 4 +NO_MATCHES_FOUND = 23 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 00000000..858a4101 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,132 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import namedtuple +from typing import Any, Dict, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple("CommandInfo", "module_path, class_name, summary") + +# This dictionary does a bunch of heavy lifting for help output: +# - Enables avoiding additional (costly) imports for presenting `--help`. +# - The ordering matters for help display. +# +# Even though the module path starts with the same "pip._internal.commands" +# prefix, the full path makes testing easier (specifically when modifying +# `commands_dict` in test setup / teardown). +commands_dict: Dict[str, CommandInfo] = { + "install": CommandInfo( + "pip._internal.commands.install", + "InstallCommand", + "Install packages.", + ), + "download": CommandInfo( + "pip._internal.commands.download", + "DownloadCommand", + "Download packages.", + ), + "uninstall": CommandInfo( + "pip._internal.commands.uninstall", + "UninstallCommand", + "Uninstall packages.", + ), + "freeze": CommandInfo( + "pip._internal.commands.freeze", + "FreezeCommand", + "Output installed packages in requirements format.", + ), + "inspect": CommandInfo( + "pip._internal.commands.inspect", + "InspectCommand", + "Inspect the python environment.", + ), + "list": CommandInfo( + "pip._internal.commands.list", + "ListCommand", + "List installed packages.", + ), + "show": CommandInfo( + "pip._internal.commands.show", + "ShowCommand", + "Show information about installed packages.", + ), + "check": CommandInfo( + "pip._internal.commands.check", + "CheckCommand", + "Verify installed packages have compatible dependencies.", + ), + "config": CommandInfo( + "pip._internal.commands.configuration", + "ConfigurationCommand", + "Manage local and global configuration.", + ), + "search": CommandInfo( + "pip._internal.commands.search", + "SearchCommand", + "Search PyPI for packages.", + ), + "cache": CommandInfo( + "pip._internal.commands.cache", + "CacheCommand", + "Inspect and manage pip's wheel cache.", + ), + "index": CommandInfo( + "pip._internal.commands.index", + "IndexCommand", + "Inspect information available from package indexes.", + ), + "wheel": CommandInfo( + "pip._internal.commands.wheel", + "WheelCommand", + "Build wheels from your requirements.", + ), + "hash": CommandInfo( + "pip._internal.commands.hash", + "HashCommand", + "Compute hashes of package archives.", + ), + "completion": CommandInfo( + "pip._internal.commands.completion", + "CompletionCommand", + "A helper command used for command completion.", + ), + "debug": CommandInfo( + "pip._internal.commands.debug", + "DebugCommand", + "Show information useful for debugging.", + ), + "help": CommandInfo( + "pip._internal.commands.help", + "HelpCommand", + "Show help for commands.", + ), +} + + +def create_command(name: str, **kwargs: Any) -> Command: + """ + Create an instance of the Command class with the given name. + """ + module_path, class_name, summary = commands_dict[name] + module = importlib.import_module(module_path) + command_class = getattr(module, class_name) + command = command_class(name=name, summary=summary, **kwargs) + + return command + + +def get_similar_commands(name: str) -> Optional[str]: + """Command name auto-correct.""" + from difflib import get_close_matches + + name = name.lower() + + close_commands = get_close_matches(name, commands_dict.keys()) + + if close_commands: + return close_commands[0] + else: + return None diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86b39110ecd7952087012bd1c78ef6cb0f2683e6 GIT binary patch literal 4050 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc50050a75b823afaa68d8ef04ff4e2b39bc11ab GIT binary patch literal 2640 zcma)8&2JmW6`$pP@mrLoP+yk3X{=aGZLaMUb=)sBP;L3(x`mbIu!*r)?T*Nm_Jf`o z+MqxIKKQ^xfXe8>KDxIAx}-hzf9NHG44B>0Xn?kd-efRpft>ngmrE&y4;>IQZ{EDG zee>RL_~%k7k6^5C{38%gk%Jt;Lk3?np5SMUjKFEp6Me~$Vp{TK zUon)JmOa(a8d*PQJ<^6(Dh-uX;`X!^}myNPNVNArltXJ_TjmenKd1w47V@g07 zgwfVY8qmp#-`W?Fol(u8HRR+UBd36seR0H{=?Jyrzxd`(O^B3_Ew7C!P||IeGFa8s z(D$vtsbwPh#@)NWx*MtMzgb4i0P=)A~m{)w~vuMe2x(B#Sg?q!7&7B(O)<5r@wUjqiv5hO2vu*ysWg+K-PB`ZR;kuDC0) zu~t`1uQ@)GcNLZvC1UDG4Y6EGrIxk|Dd%KO&sZttrJQ~6%SY;KSMAEbK=&>}G}*4$ zjT5?6PGnBcySc8MoPzWeNaxvPdhQ6_Y&X}Cj=sVmV;S0xIYPW9K(DGzd*O93&6I~nV!rrgjQWu5Sg*}0S`G_A1`@5NYeqs_EV*iMQz7OU@ENW@3R#{H#*fySD^ zZFv^k42i$9cqi00NVtuIG#GA|YMWs@aO$-p;YCDvZAFp?s6luE697pRorOLnC(Ud+ z{MdzPcr%b97f~NzLSajIxkXuGJv0N$$AsSy;iX%fh$M==O;X_;UN}+VG^~_b78nQ` zCUn{cja1*Id>a+)Fxd25o5h>cs8a;VEo`&I5l?%RAGdEO$^so9MFmcc;)_JMiAYWR ze*(0U4j<3o{#I{>KGwHFz&^miCOB{EzvjNS8P@4TwqZ4cOSb3g6caG3Q)25D1#F~x z1HM^j79hzQ4luD;NOV9{-E%keR);mi;QjiQt2%{*UP@!oTW(8->_UzM%hLgjI8swR zhTeLs10lDAoyuuMs{>~qLZ@?pDv!`$`R3vBt%L0MdWF4vgL9X^TsS=U(}V2Up1QX% zsLl_Hi-XFA!%FRC<>o=<=3(X5ptAV8iJ>f(%0p3}$@dDwGFm*}yWOw8{ruuVRexE% zc2K?6Tk9_^KlffNy}y?qRL=INf8L+g`qK;j>7{4)pZxMTCr_SvEuwQjIFdnoIE@xp z-e97B{ZAKP)YlFw@9kxueg8R)Ev=@OX8O}$_}p#)V*-QQkED&}n-Z=%Q)fZ(ANOQ`o7d>4Y{AQ*I*&2{uO^3xyLrh~zef z_m6O-CLG)%5jr3e;nK)5Y`;L{U4C?)PrRn$2{01T%P>7ge~~`?dVc9EY33*+l;$4Y zI8tiz!m}S9Ay_`2{@ngzE+)UE-*8T1jN7TrMyeM!8oc~^v}qT;efxs^cGA+@ rI?f~EL*W&=@^x;$H}f(#e~_Dh_Q7H9{3GQX<+8A_ckLL#5_|eD!bHE$ literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce79fd6541901409898d3247f9a52dcfa7aee0bf GIT binary patch literal 5241 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 Z8i8Wr^g0&zw|8;%vj_f%K*7%He*t}lI)?xN literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ee1a2ffdfb719db1339689f2b51bf4605a8f506 GIT binary patch literal 7551 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cafcb4dcc8a139d60fbb30a4d1ccc9f049f869e2 GIT binary patch literal 3016 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 Rc-|XekDs1>L@D;M{|~7^OKJcB literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe7f207e482696f7ab4dc31a17a1124b10979c4c GIT binary patch literal 7566 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 NEk5vjff3yE{{g|w#$Nyc literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/cache.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/cache.py new file mode 100644 index 00000000..32833615 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/cache.py @@ -0,0 +1,225 @@ +import os +import textwrap +from optparse import Values +from typing import Any, List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, PipError +from pip._internal.utils import filesystem +from pip._internal.utils.logging import getLogger + +logger = getLogger(__name__) + + +class CacheCommand(Command): + """ + Inspect and manage pip's wheel cache. + + Subcommands: + + - dir: Show the cache directory. + - info: Show information about the cache. + - list: List filenames of packages stored in the cache. + - remove: Remove one or more package from the cache. + - purge: Remove all items from the cache. + + ```` can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="human", + choices=("human", "abspath"), + help="Select the output format among: human (default) or abspath", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + if not options.cache_dir: + logger.error("pip cache commands can not function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + logger.info(options.cache_dir) + + def get_cache_info(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, "*")) + + http_cache_location = self._cache_dir(options, "http-v2") + old_http_cache_location = self._cache_dir(options, "http") + wheels_cache_location = self._cache_dir(options, "wheels") + http_cache_size = filesystem.format_size( + filesystem.directory_size(http_cache_location) + + filesystem.directory_size(old_http_cache_location) + ) + wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) + + message = ( + textwrap.dedent( + """ + Package index page cache location (pip v23.3+): {http_cache_location} + Package index page cache location (older pips): {old_http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Locally built wheels location: {wheels_cache_location} + Locally built wheels size: {wheels_cache_size} + Number of locally built wheels: {package_count} + """ # noqa: E501 + ) + .format( + http_cache_location=http_cache_location, + old_http_cache_location=old_http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ) + .strip() + ) + + logger.info(message) + + def list_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if args: + pattern = args[0] + else: + pattern = "*" + + files = self._find_wheels(options, pattern) + if options.list_format == "human": + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files: List[str]) -> None: + if not files: + logger.info("No locally built wheels cached.") + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f" - {wheel} ({size})") + logger.info("Cache contents:\n") + logger.info("\n".join(sorted(results))) + + def format_for_abspath(self, files: List[str]) -> None: + if files: + logger.info("\n".join(sorted(files))) + + def remove_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if not args: + raise CommandError("Please provide a pattern") + + files = self._find_wheels(options, args[0]) + + no_matching_msg = "No matching packages" + if args[0] == "*": + # Only fetch http files if no specific pattern given + files += self._find_http_files(options) + else: + # Add the pattern to the log message + no_matching_msg += f' for pattern "{args[0]}"' + + if not files: + logger.warning(no_matching_msg) + + for filename in files: + os.unlink(filename) + logger.verbose("Removed %s", filename) + logger.info("Files removed: %s", len(files)) + + def purge_cache(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + return self.remove_cache_items(options, ["*"]) + + def _cache_dir(self, options: Values, subdir: str) -> str: + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options: Values) -> List[str]: + old_http_dir = self._cache_dir(options, "http") + new_http_dir = self._cache_dir(options, "http-v2") + return filesystem.find_files(old_http_dir, "*") + filesystem.find_files( + new_http_dir, "*" + ) + + def _find_wheels(self, options: Values, pattern: str) -> List[str]: + wheel_dir = self._cache_dir(options, "wheels") + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/check.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/check.py new file mode 100644 index 00000000..f54a16dc --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,67 @@ +import logging +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import get_default_environment +from pip._internal.operations.check import ( + check_package_set, + check_unsupported, + create_package_set_from_installed, +) +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def run(self, options: Values, args: List[str]) -> int: + package_set, parsing_probs = create_package_set_from_installed() + missing, conflicting = check_package_set(package_set) + unsupported = list( + check_unsupported( + get_default_environment().iter_installed_distributions(), + get_supported(), + ) + ) + + for project_name in missing: + version = package_set[project_name].version + for dependency in missing[project_name]: + write_output( + "%s %s requires %s, which is not installed.", + project_name, + version, + dependency[0], + ) + + for project_name in conflicting: + version = package_set[project_name].version + for dep_name, dep_version, req in conflicting[project_name]: + write_output( + "%s %s has requirement %s, but you have %s %s.", + project_name, + version, + req, + dep_name, + dep_version, + ) + for package in unsupported: + write_output( + "%s %s is not supported on this platform", + package.raw_name, + package.version, + ) + if missing or conflicting or parsing_probs or unsupported: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/completion.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 00000000..9e89e279 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,130 @@ +import sys +import textwrap +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.utils.misc import get_prog + +BASE_COMPLETION = """ +# pip {shell} completion start{script}# pip {shell} completion end +""" + +COMPLETION_SCRIPTS = { + "bash": """ + _pip_completion() + {{ + COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ + COMP_CWORD=$COMP_CWORD \\ + PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) + }} + complete -o default -F _pip_completion {prog} + """, + "zsh": """ + #compdef -P pip[0-9.]# + __pip() {{ + compadd $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$((CURRENT-1)) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null ) + }} + if [[ $zsh_eval_context[-1] == loadautofunc ]]; then + # autoload from fpath, call function directly + __pip "$@" + else + # eval/source/. command, register function for later + compdef __pip -P 'pip[0-9.]#' + fi + """, + "fish": """ + function __fish_complete_pip + set -lx COMP_WORDS (commandline -o) "" + set -lx COMP_CWORD ( \\ + math (contains -i -- (commandline -t) $COMP_WORDS)-1 \\ + ) + set -lx PIP_AUTO_COMPLETE 1 + string split \\ -- (eval $COMP_WORDS[1]) + end + complete -fa "(__fish_complete_pip)" -c {prog} + """, + "powershell": """ + if ((Test-Path Function:\\TabExpansion) -and -not ` + (Test-Path Function:\\_pip_completeBackup)) {{ + Rename-Item Function:\\TabExpansion _pip_completeBackup + }} + function TabExpansion($line, $lastWord) {{ + $lastBlock = [regex]::Split($line, '[|;]')[-1].TrimStart() + if ($lastBlock.StartsWith("{prog} ")) {{ + $Env:COMP_WORDS=$lastBlock + $Env:COMP_CWORD=$lastBlock.Split().Length - 1 + $Env:PIP_AUTO_COMPLETE=1 + (& {prog}).Split() + Remove-Item Env:COMP_WORDS + Remove-Item Env:COMP_CWORD + Remove-Item Env:PIP_AUTO_COMPLETE + }} + elseif (Test-Path Function:\\_pip_completeBackup) {{ + # Fall back on existing tab expansion + _pip_completeBackup $line $lastWord + }} + }} + """, +} + + +class CompletionCommand(Command): + """A helper command to be used for command completion.""" + + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--bash", + "-b", + action="store_const", + const="bash", + dest="shell", + help="Emit completion code for bash", + ) + self.cmd_opts.add_option( + "--zsh", + "-z", + action="store_const", + const="zsh", + dest="shell", + help="Emit completion code for zsh", + ) + self.cmd_opts.add_option( + "--fish", + "-f", + action="store_const", + const="fish", + dest="shell", + help="Emit completion code for fish", + ) + self.cmd_opts.add_option( + "--powershell", + "-p", + action="store_const", + const="powershell", + dest="shell", + help="Emit completion code for powershell", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + """Prints the completion code of the given shell""" + shells = COMPLETION_SCRIPTS.keys() + shell_options = ["--" + shell for shell in sorted(shells)] + if options.shell in shells: + script = textwrap.dedent( + COMPLETION_SCRIPTS.get(options.shell, "").format(prog=get_prog()) + ) + print(BASE_COMPLETION.format(script=script, shell=options.shell)) + return SUCCESS + else: + sys.stderr.write( + "ERROR: You must pass {}\n".format(" or ".join(shell_options)) + ) + return SUCCESS diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/configuration.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 00000000..1a1dc6b6 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,280 @@ +import logging +import os +import subprocess +from optparse import Values +from typing import Any, List, Optional + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.configuration import ( + Configuration, + Kind, + get_configuration_files, + kinds, +) +from pip._internal.exceptions import PipError +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_prog, write_output + +logger = logging.getLogger(__name__) + + +class ConfigurationCommand(Command): + """ + Manage local and global configuration. + + Subcommands: + + - list: List the active configuration (or from the file specified) + - edit: Edit the configuration file in an editor + - get: Get the value associated with command.option + - set: Set the command.option=value + - unset: Unset the value associated with command.option + - debug: List the configuration files and values defined under them + + Configuration keys should be dot separated command and option name, + with the special prefix "global" affecting any command. For example, + "pip config set global.index-url https://example.org/" would configure + the index url for all commands, but "pip config set download.timeout 10" + would configure a 10 second timeout only for "pip download" commands. + + If none of --user, --global and --site are passed, a virtual + environment configuration file is used if one is active and the file + exists. Otherwise, all modifications happen to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get command.option + %prog [] set command.option value + %prog [] unset command.option + %prog [] debug + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--editor", + dest="editor", + action="store", + default=None, + help=( + "Editor to use to edit the file. Uses VISUAL or EDITOR " + "environment variables if not provided." + ), + ) + + self.cmd_opts.add_option( + "--global", + dest="global_file", + action="store_true", + default=False, + help="Use the system-wide configuration file only", + ) + + self.cmd_opts.add_option( + "--user", + dest="user_file", + action="store_true", + default=False, + help="Use the user configuration file only", + ) + + self.cmd_opts.add_option( + "--site", + dest="site_file", + action="store_true", + default=False, + help="Use the current environment configuration file only", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "list": self.list_values, + "edit": self.open_in_editor, + "get": self.get_name, + "set": self.set_name_value, + "unset": self.unset_name, + "debug": self.list_config_values, + } + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Determine which configuration files are to be loaded + # Depends on whether the command is modifying. + try: + load_only = self._determine_file( + options, need_value=(action in ["get", "set", "unset", "edit"]) + ) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + # Load a new configuration + self.configuration = Configuration( + isolated=options.isolated_mode, load_only=load_only + ) + self.configuration.load() + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _determine_file(self, options: Values, need_value: bool) -> Optional[Kind]: + file_options = [ + key + for key, value in ( + (kinds.USER, options.user_file), + (kinds.GLOBAL, options.global_file), + (kinds.SITE, options.site_file), + ) + if value + ] + + if not file_options: + if not need_value: + return None + # Default to user, unless there's a site file. + elif any( + os.path.exists(site_config_file) + for site_config_file in get_configuration_files()[kinds.SITE] + ): + return kinds.SITE + else: + return kinds.USER + elif len(file_options) == 1: + return file_options[0] + + raise PipError( + "Need exactly one file to operate upon " + "(--user, --site, --global) to perform." + ) + + def list_values(self, options: Values, args: List[str]) -> None: + self._get_n_args(args, "list", n=0) + + for key, value in sorted(self.configuration.items()): + write_output("%s=%r", key, value) + + def get_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "get [name]", n=1) + value = self.configuration.get_value(key) + + write_output("%s", value) + + def set_name_value(self, options: Values, args: List[str]) -> None: + key, value = self._get_n_args(args, "set [name] [value]", n=2) + self.configuration.set_value(key, value) + + self._save_configuration() + + def unset_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "unset [name]", n=1) + self.configuration.unset_value(key) + + self._save_configuration() + + def list_config_values(self, options: Values, args: List[str]) -> None: + """List config key-value pairs across different config files""" + self._get_n_args(args, "debug", n=0) + + self.print_env_var_values() + # Iterate over config files and print if they exist, and the + # key-value pairs present in them if they do + for variant, files in sorted(self.configuration.iter_config_files()): + write_output("%s:", variant) + for fname in files: + with indent_log(): + file_exists = os.path.exists(fname) + write_output("%s, exists: %r", fname, file_exists) + if file_exists: + self.print_config_file_values(variant) + + def print_config_file_values(self, variant: Kind) -> None: + """Get key-value pairs from the file of a variant""" + for name, value in self.configuration.get_values_in_config(variant).items(): + with indent_log(): + write_output("%s: %s", name, value) + + def print_env_var_values(self) -> None: + """Get key-values pairs present as environment variables""" + write_output("%s:", "env_var") + with indent_log(): + for key, value in sorted(self.configuration.get_environ_vars()): + env_var = f"PIP_{key.upper()}" + write_output("%s=%r", env_var, value) + + def open_in_editor(self, options: Values, args: List[str]) -> None: + editor = self._determine_editor(options) + + fname = self.configuration.get_file_to_edit() + if fname is None: + raise PipError("Could not determine appropriate file.") + elif '"' in fname: + # This shouldn't happen, unless we see a username like that. + # If that happens, we'd appreciate a pull request fixing this. + raise PipError( + f'Can not open an editor for a file name containing "\n{fname}' + ) + + try: + subprocess.check_call(f'{editor} "{fname}"', shell=True) + except FileNotFoundError as e: + if not e.filename: + e.filename = editor + raise + except subprocess.CalledProcessError as e: + raise PipError(f"Editor Subprocess exited with exit code {e.returncode}") + + def _get_n_args(self, args: List[str], example: str, n: int) -> Any: + """Helper to make sure the command got the right number of arguments""" + if len(args) != n: + msg = ( + f"Got unexpected number of arguments, expected {n}. " + f'(example: "{get_prog()} config {example}")' + ) + raise PipError(msg) + + if n == 1: + return args[0] + else: + return args + + def _save_configuration(self) -> None: + # We successfully ran a modifying command. Need to save the + # configuration. + try: + self.configuration.save() + except Exception: + logger.exception( + "Unable to save configuration. Please report this as a bug." + ) + raise PipError("Internal Error.") + + def _determine_editor(self, options: Values) -> str: + if options.editor is not None: + return options.editor + elif "VISUAL" in os.environ: + return os.environ["VISUAL"] + elif "EDITOR" in os.environ: + return os.environ["EDITOR"] + else: + raise PipError("Could not determine editor to use.") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/debug.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 00000000..567ca967 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,201 @@ +import locale +import logging +import os +import sys +from optparse import Values +from types import ModuleType +from typing import Any, Dict, List, Optional + +import pip._vendor +from pip._vendor.certifi import where +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.configuration import Configuration +from pip._internal.metadata import get_environment +from pip._internal.utils.compat import open_text_resource +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_pip_version + +logger = logging.getLogger(__name__) + + +def show_value(name: str, value: Any) -> None: + logger.info("%s: %s", name, value) + + +def show_sys_implementation() -> None: + logger.info("sys.implementation:") + implementation_name = sys.implementation.name + with indent_log(): + show_value("name", implementation_name) + + +def create_vendor_txt_map() -> Dict[str, str]: + with open_text_resource("pip._vendor", "vendor.txt") as f: + # Purge non version specifying lines. + # Also, remove any space prefix or suffixes (including comments). + lines = [ + line.strip().split(" ", 1)[0] for line in f.readlines() if "==" in line + ] + + # Transform into "module" -> version dict. + return dict(line.split("==", 1) for line in lines) + + +def get_module_from_module_name(module_name: str) -> Optional[ModuleType]: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower().replace("-", "_") + # PATCH: setuptools is actually only pkg_resources. + if module_name == "setuptools": + module_name = "pkg_resources" + + try: + __import__(f"pip._vendor.{module_name}", globals(), locals(), level=0) + return getattr(pip._vendor, module_name) + except ImportError: + # We allow 'truststore' to fail to import due + # to being unavailable on Python 3.9 and earlier. + if module_name == "truststore" and sys.version_info < (3, 10): + return None + raise + + +def get_vendor_version_from_module(module_name: str) -> Optional[str]: + module = get_module_from_module_name(module_name) + version = getattr(module, "__version__", None) + + if module and not version: + # Try to find version in debundled module info. + assert module.__file__ is not None + env = get_environment([os.path.dirname(module.__file__)]) + dist = env.get_distribution(module_name) + if dist: + version = str(dist.version) + + return version + + +def show_actual_vendor_versions(vendor_txt_versions: Dict[str, str]) -> None: + """Log the actual version and print extra info if there is + a conflict or if the actual version could not be imported. + """ + for module_name, expected_version in vendor_txt_versions.items(): + extra_message = "" + actual_version = get_vendor_version_from_module(module_name) + if not actual_version: + extra_message = ( + " (Unable to locate actual module version, using" + " vendor.txt specified version)" + ) + actual_version = expected_version + elif parse_version(actual_version) != parse_version(expected_version): + extra_message = ( + " (CONFLICT: vendor.txt suggests version should" + f" be {expected_version})" + ) + logger.info("%s==%s%s", module_name, actual_version, extra_message) + + +def show_vendor_versions() -> None: + logger.info("vendored library versions:") + + vendor_txt_versions = create_vendor_txt_map() + with indent_log(): + show_actual_vendor_versions(vendor_txt_versions) + + +def show_tags(options: Values) -> None: + tag_limit = 10 + + target_python = make_target_python(options) + tags = target_python.get_sorted_tags() + + # Display the target options that were explicitly provided. + formatted_target = target_python.format_given() + suffix = "" + if formatted_target: + suffix = f" (target: {formatted_target})" + + msg = f"Compatible tags: {len(tags)}{suffix}" + logger.info(msg) + + if options.verbose < 1 and len(tags) > tag_limit: + tags_limited = True + tags = tags[:tag_limit] + else: + tags_limited = False + + with indent_log(): + for tag in tags: + logger.info(str(tag)) + + if tags_limited: + msg = f"...\n[First {tag_limit} tags shown. Pass --verbose to show all.]" + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = {key.split(".", 1)[0] for key, _ in config.items()} + if not levels: + return "Not specified" + + levels_that_override_global = ["install", "wheel", "download"] + global_overriding_level = [ + level for level in levels if level in levels_that_override_global + ] + if not global_overriding_level: + return "global" + + if "global" in levels: + levels.remove("global") + return ", ".join(levels) + + +class DebugCommand(Command): + """ + Display debug information. + """ + + usage = """ + %prog """ + ignore_require_venv = True + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + self.parser.insert_option_group(0, self.cmd_opts) + self.parser.config.load() + + def run(self, options: Values, args: List[str]) -> int: + logger.warning( + "This command is only meant for debugging. " + "Do not use this with automation for parsing and getting these " + "details, since the output and options of this command may " + "change without notice." + ) + show_value("pip version", get_pip_version()) + show_value("sys.version", sys.version) + show_value("sys.executable", sys.executable) + show_value("sys.getdefaultencoding", sys.getdefaultencoding()) + show_value("sys.getfilesystemencoding", sys.getfilesystemencoding()) + show_value( + "locale.getpreferredencoding", + locale.getpreferredencoding(), + ) + show_value("sys.platform", sys.platform) + show_sys_implementation() + + show_value("'cert' config value", ca_bundle_info(self.parser.config)) + show_value("REQUESTS_CA_BUNDLE", os.environ.get("REQUESTS_CA_BUNDLE")) + show_value("CURL_CA_BUNDLE", os.environ.get("CURL_CA_BUNDLE")) + show_value("pip._vendor.certifi.where()", where()) + show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) + + show_vendor_versions() + + show_tags(options) + + return SUCCESS diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/download.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/download.py new file mode 100644 index 00000000..917bbb91 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,146 @@ +import logging +import os +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import check_legacy_setup_py_options +from pip._internal.utils.misc import ensure_dir, normalize_path, write_output +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class DownloadCommand(RequirementCommand): + """ + Download packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports downloading from "requirements files", which provide + an easy way to specify a whole environment to be downloaded. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ... + %prog [options] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.global_options()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + + self.cmd_opts.add_option( + "-d", + "--dest", + "--destination-dir", + "--destination-directory", + dest="download_dir", + metavar="dir", + default=os.curdir, + help="Download packages into

.", + ) + + cmdoptions.add_target_python_options(self.cmd_opts) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + options.ignore_installed = True + # editable doesn't really make sense for `pip download`, but the bowels + # of the RequirementSet code require that property. + options.editables = [] + + cmdoptions.check_dist_restriction(options) + + options.download_dir = normalize_path(options.download_dir) + ensure_dir(options.download_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + downloaded: List[str] = [] + for req in requirement_set.requirements.values(): + if req.satisfied_by is None: + assert req.name is not None + preparer.save_linked_requirement(req) + downloaded.append(req.name) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + + if downloaded: + write_output("Successfully downloaded %s", " ".join(downloaded)) + + return SUCCESS diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/freeze.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 00000000..885fdfeb --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,109 @@ +import sys +from optparse import Values +from typing import AbstractSet, List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.freeze import freeze +from pip._internal.utils.compat import stdlib_pkgs + + +def _should_suppress_build_backends() -> bool: + return sys.version_info < (3, 12) + + +def _dev_pkgs() -> AbstractSet[str]: + pkgs = {"pip"} + + if _should_suppress_build_backends(): + pkgs |= {"setuptools", "distribute", "wheel"} + + return pkgs + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + log_streams = ("ext://sys.stderr", "ext://sys.stderr") + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Use the order in the given requirements file and its " + "comments when generating output. This option can be " + "used multiple times." + ), + ) + self.cmd_opts.add_option( + "-l", + "--local", + dest="local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not output " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--all", + dest="freeze_all", + action="store_true", + help=( + "Do not skip these packages in the output:" + " {}".format(", ".join(_dev_pkgs())) + ), + ) + self.cmd_opts.add_option( + "--exclude-editable", + dest="exclude_editable", + action="store_true", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + skip = set(stdlib_pkgs) + if not options.freeze_all: + skip.update(_dev_pkgs()) + + if options.excludes: + skip.update(options.excludes) + + cmdoptions.check_list_path_option(options) + + for line in freeze( + requirement=options.requirements, + local_only=options.local, + user_only=options.user, + paths=options.path, + isolated=options.isolated_mode, + skip=skip, + exclude_editable=options.exclude_editable, + ): + sys.stdout.write(line + "\n") + return SUCCESS diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/hash.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 00000000..042dac81 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,59 @@ +import hashlib +import logging +import sys +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES +from pip._internal.utils.misc import read_chunks, write_output + +logger = logging.getLogger(__name__) + + +class HashCommand(Command): + """ + Compute a hash of a local package archive. + + These can be used with --hash in a requirements file to do repeatable + installs. + """ + + usage = "%prog [options] ..." + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-a", + "--algorithm", + dest="algorithm", + choices=STRONG_HASHES, + action="store", + default=FAVORITE_HASH, + help="The hash algorithm to use: one of {}".format( + ", ".join(STRONG_HASHES) + ), + ) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + self.parser.print_usage(sys.stderr) + return ERROR + + algorithm = options.algorithm + for path in args: + write_output( + "%s:\n--hash=%s:%s", path, algorithm, _hash_of_file(path, algorithm) + ) + return SUCCESS + + +def _hash_of_file(path: str, algorithm: str) -> str: + """Return the hash digest of a file.""" + with open(path, "rb") as archive: + hash = hashlib.new(algorithm) + for chunk in read_chunks(archive): + hash.update(chunk) + return hash.hexdigest() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/help.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/help.py new file mode 100644 index 00000000..62066318 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/help.py @@ -0,0 +1,41 @@ +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError + + +class HelpCommand(Command): + """Show help for commands""" + + usage = """ + %prog """ + ignore_require_venv = True + + def run(self, options: Values, args: List[str]) -> int: + from pip._internal.commands import ( + commands_dict, + create_command, + get_similar_commands, + ) + + try: + # 'pip help' with no args is handled by pip.__init__.parseopt() + cmd_name = args[0] # the command we need help for + except IndexError: + return SUCCESS + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + command = create_command(cmd_name) + command.parser.print_help() + + return SUCCESS diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/index.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/index.py new file mode 100644 index 00000000..2e2661bb --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/index.py @@ -0,0 +1,139 @@ +import logging +from optparse import Values +from typing import Any, Iterable, List, Optional + +from pip._vendor.packaging.version import Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.commands.search import print_dist_installation_info +from pip._internal.exceptions import CommandError, DistributionNotFound, PipError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class IndexCommand(IndexGroupCommand): + """ + Inspect information available from package indexes. + """ + + ignore_require_venv = True + usage = """ + %prog versions + """ + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "versions": self.get_available_package_versions, + } + + logger.warning( + "pip index is currently an experimental command. " + "It may be removed/changed in a future release " + "without prior warning." + ) + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to the index command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + ) + + def get_available_package_versions(self, options: Values, args: List[Any]) -> None: + if len(args) != 1: + raise CommandError("You need to specify exactly one argument") + + target_python = cmdoptions.make_target_python(options) + query = args[0] + + with self._build_session(options) as session: + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + versions: Iterable[Version] = ( + candidate.version for candidate in finder.find_all_candidates(query) + ) + + if not options.pre: + # Remove prereleases + versions = ( + version for version in versions if not version.is_prerelease + ) + versions = set(versions) + + if not versions: + raise DistributionNotFound( + f"No matching distribution found for {query}" + ) + + formatted_versions = [str(ver) for ver in sorted(versions, reverse=True)] + latest = formatted_versions[0] + + write_output(f"{query} ({latest})") + write_output("Available versions: {}".format(", ".join(formatted_versions))) + print_dist_installation_info(query, latest) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/inspect.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/inspect.py new file mode 100644 index 00000000..e810c131 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/inspect.py @@ -0,0 +1,92 @@ +import logging +from optparse import Values +from typing import Any, Dict, List + +from pip._vendor.packaging.markers import default_environment +from pip._vendor.rich import print_json + +from pip import __version__ +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + + +class InspectCommand(Command): + """ + Inspect the content of a Python environment and produce a report in JSON format. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + cmdoptions.check_list_path_option(options) + dists = get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + skip=set(stdlib_pkgs), + ) + output = { + "version": "1", + "pip_version": __version__, + "installed": [self._dist_to_dict(dist) for dist in dists], + "environment": default_environment(), + # TODO tags? scheme? + } + print_json(data=output) + return SUCCESS + + def _dist_to_dict(self, dist: BaseDistribution) -> Dict[str, Any]: + res: Dict[str, Any] = { + "metadata": dist.metadata_dict, + "metadata_location": dist.info_location, + } + # direct_url. Note that we don't have download_info (as in the installation + # report) since it is not recorded in installed metadata. + direct_url = dist.direct_url + if direct_url is not None: + res["direct_url"] = direct_url.to_dict() + else: + # Emulate direct_url for legacy editable installs. + editable_project_location = dist.editable_project_location + if editable_project_location is not None: + res["direct_url"] = { + "url": path_to_url(editable_project_location), + "dir_info": { + "editable": True, + }, + } + # installer + installer = dist.installer + if dist.installer: + res["installer"] = installer + # requested + if dist.installed_with_dist_info: + res["requested"] = dist.requested + return res diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/install.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/install.py new file mode 100644 index 00000000..ad45a2f2 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,783 @@ +import errno +import json +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import List, Optional + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.rich import print_json + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import ( + RequirementCommand, + with_cleanup, +) +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, InstallationError +from pip._internal.locations import get_scheme +from pip._internal.metadata import get_environment +from pip._internal.models.installation_report import InstallationReport +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.operations.check import ConflictDetails, check_install_conflicts +from pip._internal.req import install_given_reqs +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + check_externally_managed, + ensure_dir, + get_pip_version, + protect_pip_from_modification_on_windows, + warn_if_run_as_root, + write_output, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) +from pip._internal.wheel_builder import build, should_build_for_install_command + +logger = getLogger(__name__) + + +class InstallCommand(RequirementCommand): + """ + Install packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports installing from "requirements files", which provide + an easy way to specify a whole environment to be installed. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option( + "--dry-run", + action="store_true", + dest="dry_run", + default=False, + help=( + "Don't actually install anything, just print what would be. " + "Can be used in combination with --ignore-installed " + "to 'resolve' the requirements." + ), + ) + self.cmd_opts.add_option( + "-t", + "--target", + dest="target_dir", + metavar="dir", + default=None, + help=( + "Install packages into . " + "By default this will not replace existing files/folders in " + ". Use --upgrade to replace existing packages in " + "with new versions." + ), + ) + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option( + "--user", + dest="use_user_site", + action="store_true", + help=( + "Install to the Python user install directory for your " + "platform. Typically ~/.local/, or %APPDATA%\\Python on " + "Windows. (See the Python documentation for site.USER_BASE " + "for full details.)" + ), + ) + self.cmd_opts.add_option( + "--no-user", + dest="use_user_site", + action="store_false", + help=SUPPRESS_HELP, + ) + self.cmd_opts.add_option( + "--root", + dest="root_path", + metavar="dir", + default=None, + help="Install everything relative to this alternate root directory.", + ) + self.cmd_opts.add_option( + "--prefix", + dest="prefix_path", + metavar="dir", + default=None, + help=( + "Installation prefix where lib, bin and other top-level " + "folders are placed. Note that the resulting installation may " + "contain scripts and other resources which reference the " + "Python interpreter of pip, and not that of ``--prefix``. " + "See also the ``--python`` option if the intention is to " + "install packages into another (possibly pip-free) " + "environment." + ), + ) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option( + "-U", + "--upgrade", + dest="upgrade", + action="store_true", + help=( + "Upgrade all specified packages to the newest available " + "version. The handling of dependencies depends on the " + "upgrade-strategy used." + ), + ) + + self.cmd_opts.add_option( + "--upgrade-strategy", + dest="upgrade_strategy", + default="only-if-needed", + choices=["only-if-needed", "eager"], + help=( + "Determines how dependency upgrading should be handled " + "[default: %default]. " + '"eager" - dependencies are upgraded regardless of ' + "whether the currently installed version satisfies the " + "requirements of the upgraded package(s). " + '"only-if-needed" - are upgraded only when they do not ' + "satisfy the requirements of the upgraded package(s)." + ), + ) + + self.cmd_opts.add_option( + "--force-reinstall", + dest="force_reinstall", + action="store_true", + help="Reinstall all packages even if they are already up-to-date.", + ) + + self.cmd_opts.add_option( + "-I", + "--ignore-installed", + dest="ignore_installed", + action="store_true", + help=( + "Ignore the installed packages, overwriting them. " + "This can break your system if the existing package " + "is of a different version or was installed " + "with a different package manager!" + ), + ) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--compile", + action="store_true", + dest="compile", + default=True, + help="Compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-compile", + action="store_false", + dest="compile", + help="Do not compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-warn-script-location", + action="store_false", + dest="warn_script_location", + default=True, + help="Do not warn when installing scripts outside PATH", + ) + self.cmd_opts.add_option( + "--no-warn-conflicts", + action="store_false", + dest="warn_about_conflicts", + default=True, + help="Do not warn about broken dependencies", + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + self.cmd_opts.add_option( + "--report", + dest="json_report_file", + metavar="file", + default=None, + help=( + "Generate a JSON file describing what pip did to install " + "the provided requirements. " + "Can be used in combination with --dry-run and --ignore-installed " + "to 'resolve' the requirements. " + "When - is used as file name it writes to stdout. " + "When writing to stdout, please combine with the --quiet option " + "to avoid mixing pip logging output with JSON output." + ), + ) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + # Check whether the environment we're installing into is externally + # managed, as specified in PEP 668. Specifying --root, --target, or + # --prefix disables the check, since there's no reliable way to locate + # the EXTERNALLY-MANAGED file for those cases. An exception is also + # made specifically for "--dry-run --report" for convenience. + installing_into_current_environment = ( + not (options.dry_run and options.json_report_file) + and options.root_path is None + and options.target_dir is None + and options.prefix_path is None + ) + if ( + installing_into_current_environment + and not options.override_externally_managed + ): + check_externally_managed() + + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + logger.verbose("Using %s", get_pip_version()) + options.use_user_site = decide_user_install( + options.use_user_site, + prefix_path=options.prefix_path, + target_dir=options.target_dir, + root_path=options.root_path, + isolated_mode=options.isolated_mode, + ) + + target_temp_dir: Optional[TempDirectory] = None + target_temp_dir_path: Optional[str] = None + if options.target_dir: + options.ignore_installed = True + options.target_dir = os.path.abspath(options.target_dir) + if ( + # fmt: off + os.path.exists(options.target_dir) and + not os.path.isdir(options.target_dir) + # fmt: on + ): + raise CommandError( + "Target path exists but is not a directory, will not continue." + ) + + # Create a target directory for using with the target option + target_temp_dir = TempDirectory(kind="target") + target_temp_dir_path = target_temp_dir.path + self.enter_context(target_temp_dir) + + global_options = options.global_options or [] + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + # Only when installing is it permitted to use PEP 660. + # In other circumstances (pip wheel, pip download) we generate + # regular (i.e. non editable) metadata and wheels. + for req in reqs: + req.permit_editable_wheels = True + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + verbosity=self.verbosity, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=options.use_user_site, + ignore_installed=options.ignore_installed, + ignore_requires_python=options.ignore_requires_python, + force_reinstall=options.force_reinstall, + upgrade_strategy=upgrade_strategy, + use_pep517=options.use_pep517, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=not options.target_dir + ) + + if options.json_report_file: + report = InstallationReport(requirement_set.requirements_to_install) + if options.json_report_file == "-": + print_json(data=report.to_dict()) + else: + with open(options.json_report_file, "w", encoding="utf-8") as f: + json.dump(report.to_dict(), f, indent=2, ensure_ascii=False) + + if options.dry_run: + would_install_items = sorted( + (r.metadata["name"], r.metadata["version"]) + for r in requirement_set.requirements_to_install + ) + if would_install_items: + write_output( + "Would install %s", + " ".join("-".join(item) for item in would_install_items), + ) + return SUCCESS + + try: + pip_req = requirement_set.get_requirement("pip") + except KeyError: + modifying_pip = False + else: + # If we're not replacing an already installed pip, + # we're not modifying it. + modifying_pip = pip_req.satisfied_by is None + if modifying_pip: + # Eagerly import this module to avoid crashes. Otherwise, this + # module would be imported *after* pip was replaced, resulting in + # crashes if the new self_outdated_check module was incompatible + # with the rest of pip that's already imported. + import pip._internal.self_outdated_check # noqa: F401 + protect_pip_from_modification_on_windows(modifying_pip=modifying_pip) + + reqs_to_build = [ + r + for r in requirement_set.requirements.values() + if should_build_for_install_command(r) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=global_options, + ) + + if build_failures: + raise InstallationError( + "ERROR: Failed to build installable wheels for some " + "pyproject.toml based projects ({})".format( + ", ".join(r.name for r in build_failures) # type: ignore + ) + ) + + to_install = resolver.get_installation_order(requirement_set) + + # Check for conflicts in the package set we're installing. + conflicts: Optional[ConflictDetails] = None + should_warn_about_conflicts = ( + not options.ignore_dependencies and options.warn_about_conflicts + ) + if should_warn_about_conflicts: + conflicts = self._determine_conflicts(to_install) + + # Don't warn about script install locations if + # --target or --prefix has been specified + warn_script_location = options.warn_script_location + if options.target_dir or options.prefix_path: + warn_script_location = False + + installed = install_given_reqs( + to_install, + global_options, + root=options.root_path, + home=target_temp_dir_path, + prefix=options.prefix_path, + warn_script_location=warn_script_location, + use_user_site=options.use_user_site, + pycompile=options.compile, + ) + + lib_locations = get_lib_location_guesses( + user=options.use_user_site, + home=target_temp_dir_path, + root=options.root_path, + prefix=options.prefix_path, + isolated=options.isolated_mode, + ) + env = get_environment(lib_locations) + + # Display a summary of installed packages, with extra care to + # display a package name as it was requested by the user. + installed.sort(key=operator.attrgetter("name")) + summary = [] + installed_versions = {} + for distribution in env.iter_all_distributions(): + installed_versions[distribution.canonical_name] = distribution.version + for package in installed: + display_name = package.name + version = installed_versions.get(canonicalize_name(display_name), None) + if version: + text = f"{display_name}-{version}" + else: + text = display_name + summary.append(text) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = " ".join(summary) + if installed_desc: + write_output( + "Successfully installed %s", + installed_desc, + ) + except OSError as error: + show_traceback = self.verbosity >= 1 + + message = create_os_error_message( + error, + show_traceback, + options.use_user_site, + ) + logger.error(message, exc_info=show_traceback) + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS + + def _handle_target_dir( + self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool + ) -> None: + ensure_dir(target_dir) + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + lib_dir_list = [] + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + scheme = get_scheme("", home=target_temp_dir.path) + purelib_dir = scheme.purelib + platlib_dir = scheme.platlib + data_dir = scheme.data + + if os.path.exists(purelib_dir): + lib_dir_list.append(purelib_dir) + if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: + lib_dir_list.append(platlib_dir) + if os.path.exists(data_dir): + lib_dir_list.append(data_dir) + + for lib_dir in lib_dir_list: + for item in os.listdir(lib_dir): + if lib_dir == data_dir: + ddir = os.path.join(data_dir, item) + if any(s.startswith(ddir) for s in lib_dir_list[:-1]): + continue + target_item_dir = os.path.join(target_dir, item) + if os.path.exists(target_item_dir): + if not upgrade: + logger.warning( + "Target directory %s already exists. Specify " + "--upgrade to force replacement.", + target_item_dir, + ) + continue + if os.path.islink(target_item_dir): + logger.warning( + "Target directory %s already exists and is " + "a link. pip will not automatically replace " + "links, please remove if replacement is " + "desired.", + target_item_dir, + ) + continue + if os.path.isdir(target_item_dir): + shutil.rmtree(target_item_dir) + else: + os.remove(target_item_dir) + + shutil.move(os.path.join(lib_dir, item), target_item_dir) + + def _determine_conflicts( + self, to_install: List[InstallRequirement] + ) -> Optional[ConflictDetails]: + try: + return check_install_conflicts(to_install) + except Exception: + logger.exception( + "Error while checking for conflicts. Please file an issue on " + "pip's issue tracker: https://github.com/pypa/pip/issues/new" + ) + return None + + def _warn_about_conflicts( + self, conflict_details: ConflictDetails, resolver_variant: str + ) -> None: + package_set, (missing, conflicting) = conflict_details + if not missing and not conflicting: + return + + parts: List[str] = [] + if resolver_variant == "legacy": + parts.append( + "pip's legacy dependency resolver does not consider dependency " + "conflicts when selecting packages. This behaviour is the " + "source of the following dependency conflicts." + ) + else: + assert resolver_variant == "resolvelib" + parts.append( + "pip's dependency resolver does not currently take into account " + "all the packages that are installed. This behaviour is the " + "source of the following dependency conflicts." + ) + + # NOTE: There is some duplication here, with commands/check.py + for project_name in missing: + version = package_set[project_name][0] + for dependency in missing[project_name]: + message = ( + f"{project_name} {version} requires {dependency[1]}, " + "which is not installed." + ) + parts.append(message) + + for project_name in conflicting: + version = package_set[project_name][0] + for dep_name, dep_version, req in conflicting[project_name]: + message = ( + "{name} {version} requires {requirement}, but {you} have " + "{dep_name} {dep_version} which is incompatible." + ).format( + name=project_name, + version=version, + requirement=req, + dep_name=dep_name, + dep_version=dep_version, + you=("you" if resolver_variant == "resolvelib" else "you'll"), + ) + parts.append(message) + + logger.critical("\n".join(parts)) + + +def get_lib_location_guesses( + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> List[str]: + scheme = get_scheme( + "", + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + return [scheme.purelib, scheme.platlib] + + +def site_packages_writable(root: Optional[str], isolated: bool) -> bool: + return all( + test_writable_dir(d) + for d in set(get_lib_location_guesses(root=root, isolated=isolated)) + ) + + +def decide_user_install( + use_user_site: Optional[bool], + prefix_path: Optional[str] = None, + target_dir: Optional[str] = None, + root_path: Optional[str] = None, + isolated_mode: bool = False, +) -> bool: + """Determine whether to do a user install based on the input options. + + If use_user_site is False, no additional checks are done. + If use_user_site is True, it is checked for compatibility with other + options. + If use_user_site is None, the default behaviour depends on the environment, + which is provided by the other arguments. + """ + # In some cases (config from tox), use_user_site can be set to an integer + # rather than a bool, which 'use_user_site is False' wouldn't catch. + if (use_user_site is not None) and (not use_user_site): + logger.debug("Non-user install by explicit request") + return False + + if use_user_site: + if prefix_path: + raise CommandError( + "Can not combine '--user' and '--prefix' as they imply " + "different installation locations" + ) + if virtualenv_no_global(): + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are not visible in this virtualenv." + ) + logger.debug("User install by explicit request") + return True + + # If we are here, user installs have not been explicitly requested/avoided + assert use_user_site is None + + # user install incompatible with --prefix/--target + if prefix_path or target_dir: + logger.debug("Non-user install due to --prefix or --target option") + return False + + # If user installs are not enabled, choose a non-user install + if not site.ENABLE_USER_SITE: + logger.debug("Non-user install because user site-packages disabled") + return False + + # If we have permission for a non-user install, do that, + # otherwise do a user install. + if site_packages_writable(root=root_path, isolated=isolated_mode): + logger.debug("Non-user install because site-packages writeable") + return False + + logger.info( + "Defaulting to user installation because normal site-packages " + "is not writeable" + ) + return True + + +def create_os_error_message( + error: OSError, show_traceback: bool, using_user_site: bool +) -> str: + """Format an error message for an OSError + + It may occur anytime during the execution of the install command. + """ + parts = [] + + # Mention the error if we are not going to show a traceback + parts.append("Could not install packages due to an OSError") + if not show_traceback: + parts.append(": ") + parts.append(str(error)) + else: + parts.append(".") + + # Spilt the error indication from a helper message (if any) + parts[-1] += "\n" + + # Suggest useful actions to the user: + # (1) using user site-packages or (2) verifying the permissions + if error.errno == errno.EACCES: + user_option_part = "Consider using the `--user` option" + permissions_part = "Check the permissions" + + if not running_under_virtualenv() and not using_user_site: + parts.extend( + [ + user_option_part, + " or ", + permissions_part.lower(), + ] + ) + else: + parts.append(permissions_part) + parts.append(".\n") + + # Suggest the user to enable Long Paths if path length is + # more than 260 + if ( + WINDOWS + and error.errno == errno.ENOENT + and error.filename + and len(error.filename) > 260 + ): + parts.append( + "HINT: This error might have occurred since " + "this system does not have Windows Long Path " + "support enabled. You can find information on " + "how to enable this at " + "https://pip.pypa.io/warnings/enable-long-paths\n" + ) + + return "".join(parts).strip() + "\n" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/list.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/list.py new file mode 100644 index 00000000..82fc46a1 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,375 @@ +import json +import logging +from optparse import Values +from typing import TYPE_CHECKING, Generator, List, Optional, Sequence, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.index_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.misc import tabulate, write_output + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + from pip._internal.network.session import PipSession + + class _DistWithLatestInfo(BaseDistribution): + """Give the distribution object a couple of extra fields. + + These will be populated during ``get_outdated()``. This is dirty but + makes the rest of the code much cleaner. + """ + + latest_version: Version + latest_filetype: str + + _ProcessedDists = Sequence[_DistWithLatestInfo] + + +logger = logging.getLogger(__name__) + + +class ListCommand(IndexGroupCommand): + """ + List installed packages, including editables. + + Packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-o", + "--outdated", + action="store_true", + default=False, + help="List outdated packages", + ) + self.cmd_opts.add_option( + "-u", + "--uptodate", + action="store_true", + default=False, + help="List uptodate packages", + ) + self.cmd_opts.add_option( + "-e", + "--editable", + action="store_true", + default=False, + help="List editable projects.", + ) + self.cmd_opts.add_option( + "-l", + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="columns", + choices=("columns", "freeze", "json"), + help=( + "Select the output format among: columns (default), freeze, or json. " + "The 'freeze' format cannot be used with the --outdated option." + ), + ) + + self.cmd_opts.add_option( + "--not-required", + action="store_true", + dest="not_required", + help="List packages that are not dependencies of installed packages.", + ) + + self.cmd_opts.add_option( + "--exclude-editable", + action="store_false", + dest="include_editable", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option( + "--include-editable", + action="store_true", + dest="include_editable", + help="Include editable package from output.", + default=True, + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + index_opts = cmdoptions.make_option_group(cmdoptions.index_group, self.parser) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def handle_pip_version_check(self, options: Values) -> None: + if options.outdated or options.uptodate: + super().handle_pip_version_check(options) + + def _build_package_finder( + self, options: Values, session: "PipSession" + ) -> "PackageFinder": + """ + Create a package finder appropriate to this list command. + """ + # Lazy import the heavy index modules as most list invocations won't need 'em. + from pip._internal.index.collector import LinkCollector + from pip._internal.index.package_finder import PackageFinder + + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + + def run(self, options: Values, args: List[str]) -> int: + if options.outdated and options.uptodate: + raise CommandError("Options --outdated and --uptodate cannot be combined.") + + if options.outdated and options.list_format == "freeze": + raise CommandError( + "List format 'freeze' cannot be used with the --outdated option." + ) + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(canonicalize_name(n) for n in options.excludes) + + packages: "_ProcessedDists" = [ + cast("_DistWithLatestInfo", d) + for d in get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + skip=skip, + ) + ] + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version > dist.version + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if dist.latest_version == dist.version + ] + + def get_not_required( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + dep_keys = { + canonicalize_name(dep.name) + for dist in packages + for dep in (dist.iter_dependencies() or ()) + } + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) + + def iter_packages_latest_infos( + self, packages: "_ProcessedDists", options: Values + ) -> Generator["_DistWithLatestInfo", None, None]: + with self._build_session(options) as session: + finder = self._build_package_finder(options, session) + + def latest_info( + dist: "_DistWithLatestInfo", + ) -> Optional["_DistWithLatestInfo"]: + all_candidates = finder.find_all_candidates(dist.canonical_name) + if not options.pre: + # Remove prereleases + all_candidates = [ + candidate + for candidate in all_candidates + if not candidate.version.is_prerelease + ] + + evaluator = finder.make_candidate_evaluator( + project_name=dist.canonical_name, + ) + best_candidate = evaluator.sort_best_candidate(all_candidates) + if best_candidate is None: + return None + + remote_version = best_candidate.version + if best_candidate.link.is_wheel: + typ = "wheel" + else: + typ = "sdist" + dist.latest_version = remote_version + dist.latest_filetype = typ + return dist + + for dist in map(latest_info, packages): + if dist is not None: + yield dist + + def output_package_listing( + self, packages: "_ProcessedDists", options: Values + ) -> None: + packages = sorted( + packages, + key=lambda dist: dist.canonical_name, + ) + if options.list_format == "columns" and packages: + data, header = format_for_columns(packages, options) + self.output_package_listing_columns(data, header) + elif options.list_format == "freeze": + for dist in packages: + if options.verbose >= 1: + write_output( + "%s==%s (%s)", dist.raw_name, dist.version, dist.location + ) + else: + write_output("%s==%s", dist.raw_name, dist.version) + elif options.list_format == "json": + write_output(format_for_json(packages, options)) + + def output_package_listing_columns( + self, data: List[List[str]], header: List[str] + ) -> None: + # insert the header first: we need to know the size of column names + if len(data) > 0: + data.insert(0, header) + + pkg_strings, sizes = tabulate(data) + + # Create and add a separator. + if len(data) > 0: + pkg_strings.insert(1, " ".join("-" * x for x in sizes)) + + for val in pkg_strings: + write_output(val) + + +def format_for_columns( + pkgs: "_ProcessedDists", options: Values +) -> Tuple[List[List[str]], List[str]]: + """ + Convert the package data into something usable + by output_package_listing_columns. + """ + header = ["Package", "Version"] + + running_outdated = options.outdated + if running_outdated: + header.extend(["Latest", "Type"]) + + has_editables = any(x.editable for x in pkgs) + if has_editables: + header.append("Editable project location") + + if options.verbose >= 1: + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + data = [] + for proj in pkgs: + # if we're working on the 'outdated' list, separate out the + # latest_version and type + row = [proj.raw_name, proj.raw_version] + + if running_outdated: + row.append(str(proj.latest_version)) + row.append(proj.latest_filetype) + + if has_editables: + row.append(proj.editable_project_location or "") + + if options.verbose >= 1: + row.append(proj.location or "") + if options.verbose >= 1: + row.append(proj.installer) + + data.append(row) + + return data, header + + +def format_for_json(packages: "_ProcessedDists", options: Values) -> str: + data = [] + for dist in packages: + info = { + "name": dist.raw_name, + "version": str(dist.version), + } + if options.verbose >= 1: + info["location"] = dist.location or "" + info["installer"] = dist.installer + if options.outdated: + info["latest_version"] = str(dist.latest_version) + info["latest_filetype"] = dist.latest_filetype + editable_project_location = dist.editable_project_location + if editable_project_location: + info["editable_project_location"] = editable_project_location + data.append(info) + return json.dumps(data) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/search.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/search.py new file mode 100644 index 00000000..e0d329d5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,172 @@ +import logging +import shutil +import sys +import textwrap +import xmlrpc.client +from collections import OrderedDict +from optparse import Values +from typing import TYPE_CHECKING, Dict, List, Optional, TypedDict + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin +from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import get_default_environment +from pip._internal.models.index import PyPI +from pip._internal.network.xmlrpc import PipXmlrpcTransport +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import write_output + +if TYPE_CHECKING: + + class TransformedHit(TypedDict): + name: str + summary: str + versions: List[str] + + +logger = logging.getLogger(__name__) + + +class SearchCommand(Command, SessionCommandMixin): + """Search for PyPI packages whose name or summary contains .""" + + usage = """ + %prog [options] """ + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-i", + "--index", + dest="index", + metavar="URL", + default=PyPI.pypi_url, + help="Base URL of Python Package Index (default %default)", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + raise CommandError("Missing required argument (search query).") + query = args + pypi_hits = self.search(query, options) + hits = transform_hits(pypi_hits) + + terminal_width = None + if sys.stdout.isatty(): + terminal_width = shutil.get_terminal_size()[0] + + print_results(hits, terminal_width=terminal_width) + if pypi_hits: + return SUCCESS + return NO_MATCHES_FOUND + + def search(self, query: List[str], options: Values) -> List[Dict[str, str]]: + index_url = options.index + + session = self.get_default_session(options) + + transport = PipXmlrpcTransport(index_url, session) + pypi = xmlrpc.client.ServerProxy(index_url, transport) + try: + hits = pypi.search({"name": query, "summary": query}, "or") + except xmlrpc.client.Fault as fault: + message = ( + f"XMLRPC request failed [code: {fault.faultCode}]\n{fault.faultString}" + ) + raise CommandError(message) + assert isinstance(hits, list) + return hits + + +def transform_hits(hits: List[Dict[str, str]]) -> List["TransformedHit"]: + """ + The list from pypi is really a list of versions. We want a list of + packages with the list of versions stored inline. This converts the + list from pypi into one we can use. + """ + packages: Dict[str, "TransformedHit"] = OrderedDict() + for hit in hits: + name = hit["name"] + summary = hit["summary"] + version = hit["version"] + + if name not in packages.keys(): + packages[name] = { + "name": name, + "summary": summary, + "versions": [version], + } + else: + packages[name]["versions"].append(version) + + # if this is the highest version, replace summary and score + if version == highest_version(packages[name]["versions"]): + packages[name]["summary"] = summary + + return list(packages.values()) + + +def print_dist_installation_info(name: str, latest: str) -> None: + env = get_default_environment() + dist = env.get_distribution(name) + if dist is not None: + with indent_log(): + if dist.version == latest: + write_output("INSTALLED: %s (latest)", dist.version) + else: + write_output("INSTALLED: %s", dist.version) + if parse_version(latest).pre: + write_output( + "LATEST: %s (pre-release; install" + " with `pip install --pre`)", + latest, + ) + else: + write_output("LATEST: %s", latest) + + +def print_results( + hits: List["TransformedHit"], + name_column_width: Optional[int] = None, + terminal_width: Optional[int] = None, +) -> None: + if not hits: + return + if name_column_width is None: + name_column_width = ( + max( + [ + len(hit["name"]) + len(highest_version(hit.get("versions", ["-"]))) + for hit in hits + ] + ) + + 4 + ) + + for hit in hits: + name = hit["name"] + summary = hit["summary"] or "" + latest = highest_version(hit.get("versions", ["-"])) + if terminal_width is not None: + target_width = terminal_width - name_column_width - 5 + if target_width > 10: + # wrap and indent summary to fit terminal + summary_lines = textwrap.wrap(summary, target_width) + summary = ("\n" + " " * (name_column_width + 3)).join(summary_lines) + + name_latest = f"{name} ({latest})" + line = f"{name_latest:{name_column_width}} - {summary}" + try: + write_output(line) + print_dist_installation_info(name, latest) + except UnicodeEncodeError: + pass + + +def highest_version(versions: List[str]) -> str: + return max(versions, key=parse_version) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/show.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/show.py new file mode 100644 index 00000000..c54d548f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,217 @@ +import logging +from optparse import Values +from typing import Generator, Iterable, Iterator, List, NamedTuple, Optional + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class ShowCommand(Command): + """ + Show information about one or more installed packages. + + The output is in RFC-compliant mail header format. + """ + + usage = """ + %prog [options] ...""" + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-f", + "--files", + dest="files", + action="store_true", + default=False, + help="Show the full list of installed files for each package.", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + logger.warning("ERROR: Please provide a package name or names.") + return ERROR + query = args + + results = search_packages_info(query) + if not print_results( + results, list_files=options.files, verbose=options.verbose + ): + return ERROR + return SUCCESS + + +class _PackageInfo(NamedTuple): + name: str + version: str + location: str + editable_project_location: Optional[str] + requires: List[str] + required_by: List[str] + installer: str + metadata_version: str + classifiers: List[str] + summary: str + homepage: str + project_urls: List[str] + author: str + author_email: str + license: str + entry_points: List[str] + files: Optional[List[str]] + + +def search_packages_info(query: List[str]) -> Generator[_PackageInfo, None, None]: + """ + Gather details from installed distributions. Print distribution name, + version, location, and installed files. Installed files requires a + pip generated 'installed-files.txt' in the distributions '.egg-info' + directory. + """ + env = get_default_environment() + + installed = {dist.canonical_name: dist for dist in env.iter_all_distributions()} + query_names = [canonicalize_name(name) for name in query] + missing = sorted( + [name for name, pkg in zip(query, query_names) if pkg not in installed] + ) + if missing: + logger.warning("Package(s) not found: %s", ", ".join(missing)) + + def _get_requiring_packages(current_dist: BaseDistribution) -> Iterator[str]: + return ( + dist.metadata["Name"] or "UNKNOWN" + for dist in installed.values() + if current_dist.canonical_name + in {canonicalize_name(d.name) for d in dist.iter_dependencies()} + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + try: + requires = sorted( + # Avoid duplicates in requirements (e.g. due to environment markers). + {req.name for req in dist.iter_dependencies()}, + key=str.lower, + ) + except InvalidRequirement: + requires = sorted(dist.iter_raw_dependencies(), key=str.lower) + + try: + required_by = sorted(_get_requiring_packages(dist), key=str.lower) + except InvalidRequirement: + required_by = ["#N/A"] + + try: + entry_points_text = dist.read_text("entry_points.txt") + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = dist.iter_declared_entries() + if files_iter is None: + files: Optional[List[str]] = None + else: + files = sorted(files_iter) + + metadata = dist.metadata + + project_urls = metadata.get_all("Project-URL", []) + homepage = metadata.get("Home-page", "") + if not homepage: + # It's common that there is a "homepage" Project-URL, but Home-page + # remains unset (especially as PEP 621 doesn't surface the field). + # + # This logic was taken from PyPI's codebase. + for url in project_urls: + url_label, url = url.split(",", maxsplit=1) + normalized_label = ( + url_label.casefold().replace("-", "").replace("_", "").strip() + ) + if normalized_label == "homepage": + homepage = url.strip() + break + + yield _PackageInfo( + name=dist.raw_name, + version=dist.raw_version, + location=dist.location or "", + editable_project_location=dist.editable_project_location, + requires=requires, + required_by=required_by, + installer=dist.installer, + metadata_version=dist.metadata_version or "", + classifiers=metadata.get_all("Classifier", []), + summary=metadata.get("Summary", ""), + homepage=homepage, + project_urls=project_urls, + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterable[_PackageInfo], + list_files: bool, + verbose: bool, +) -> bool: + """ + Print the information from installed distributions found. + """ + results_printed = False + for i, dist in enumerate(distributions): + results_printed = True + if i > 0: + write_output("---") + + write_output("Name: %s", dist.name) + write_output("Version: %s", dist.version) + write_output("Summary: %s", dist.summary) + write_output("Home-page: %s", dist.homepage) + write_output("Author: %s", dist.author) + write_output("Author-email: %s", dist.author_email) + write_output("License: %s", dist.license) + write_output("Location: %s", dist.location) + if dist.editable_project_location is not None: + write_output( + "Editable project location: %s", dist.editable_project_location + ) + write_output("Requires: %s", ", ".join(dist.requires)) + write_output("Required-by: %s", ", ".join(dist.required_by)) + + if verbose: + write_output("Metadata-Version: %s", dist.metadata_version) + write_output("Installer: %s", dist.installer) + write_output("Classifiers:") + for classifier in dist.classifiers: + write_output(" %s", classifier) + write_output("Entry-points:") + for entry in dist.entry_points: + write_output(" %s", entry.strip()) + write_output("Project-URLs:") + for project_url in dist.project_urls: + write_output(" %s", project_url) + if list_files: + write_output("Files:") + if dist.files is None: + write_output("Cannot locate RECORD or installed-files.txt") + else: + for line in dist.files: + write_output(" %s", line.strip()) + return results_printed diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 00000000..bc0edeac --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,114 @@ +import logging +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.index_command import SessionCommandMixin +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import InstallationError +from pip._internal.req import parse_requirements +from pip._internal.req.constructors import ( + install_req_from_line, + install_req_from_parsed_requirement, +) +from pip._internal.utils.misc import ( + check_externally_managed, + protect_pip_from_modification_on_windows, + warn_if_run_as_root, +) + +logger = logging.getLogger(__name__) + + +class UninstallCommand(Command, SessionCommandMixin): + """ + Uninstall packages. + + pip is able to uninstall most installed packages. Known exceptions are: + + - Pure distutils packages installed with ``python setup.py install``, which + leave behind no metadata to determine what files were installed. + - Script wrappers installed by ``python setup.py develop``. + """ + + usage = """ + %prog [options] ... + %prog [options] -r ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Uninstall all the packages listed in the given requirements " + "file. This option can be used multiple times." + ), + ) + self.cmd_opts.add_option( + "-y", + "--yes", + dest="yes", + action="store_true", + help="Don't ask for confirmation of uninstall deletions.", + ) + self.cmd_opts.add_option(cmdoptions.root_user_action()) + self.cmd_opts.add_option(cmdoptions.override_externally_managed()) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + reqs_to_uninstall = {} + for name in args: + req = install_req_from_line( + name, + isolated=options.isolated_mode, + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + else: + logger.warning( + "Invalid requirement: %r ignored -" + " the uninstall command expects named" + " requirements.", + name, + ) + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, options=options, session=session + ): + req = install_req_from_parsed_requirement( + parsed_req, isolated=options.isolated_mode + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + if not reqs_to_uninstall: + raise InstallationError( + f"You must give at least one requirement to {self.name} (see " + f'"pip help {self.name}")' + ) + + if not options.override_externally_managed: + check_externally_managed() + + protect_pip_from_modification_on_windows( + modifying_pip="pip" in reqs_to_uninstall + ) + + for req in reqs_to_uninstall.values(): + uninstall_pathset = req.uninstall( + auto_confirm=options.yes, + verbose=self.verbosity > 0, + ) + if uninstall_pathset: + uninstall_pathset.commit() + if options.root_user_action == "warn": + warn_if_run_as_root() + return SUCCESS diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/wheel.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 00000000..278719f4 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,182 @@ +import logging +import os +import shutil +from optparse import Values +from typing import List + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.operations.build.build_tracker import get_build_tracker +from pip._internal.req.req_install import ( + InstallRequirement, + check_legacy_setup_py_options, +) +from pip._internal.utils.misc import ensure_dir, normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.wheel_builder import build, should_build_for_wheel_command + +logger = logging.getLogger(__name__) + + +class WheelCommand(RequirementCommand): + """ + Build Wheel archives for your requirements and dependencies. + + Wheel is a built-package format, and offers the advantage of not + recompiling your software during every install. For more details, see the + wheel docs: https://wheel.readthedocs.io/en/latest/ + + 'pip wheel' uses the build system interface as described here: + https://pip.pypa.io/en/stable/reference/build-system/ + + """ + + usage = """ + %prog [options] ... + %prog [options] -r ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-w", + "--wheel-dir", + dest="wheel_dir", + metavar="dir", + default=os.curdir, + help=( + "Build wheels into , where the default is the " + "current working directory." + ), + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.check_build_deps()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + self.cmd_opts.add_option( + "--no-verify", + dest="no_verify", + action="store_true", + default=False, + help="Don't verify if built wheel is valid.", + ) + + self.cmd_opts.add_option(cmdoptions.config_settings()) + self.cmd_opts.add_option(cmdoptions.build_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option(cmdoptions.require_hashes()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + build_tracker = self.enter_context(get_build_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + check_legacy_setup_py_options(options, reqs) + + wheel_cache = WheelCache(options.cache_dir) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + build_tracker=build_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + reqs_to_build: List[InstallRequirement] = [] + for req in requirement_set.requirements.values(): + if req.is_wheel: + preparer.save_linked_requirement(req) + elif should_build_for_wheel_command(req): + reqs_to_build.append(req) + + preparer.prepare_linked_requirements_more(requirement_set.requirements.values()) + + # build wheels + build_successes, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=(not options.no_verify), + build_options=options.build_options or [], + global_options=options.global_options or [], + ) + for req in build_successes: + assert req.link and req.link.is_wheel + assert req.local_file_path + # copy from cache to target directory + try: + shutil.copy(req.local_file_path, options.wheel_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + build_failures.append(req) + if len(build_failures) != 0: + raise CommandError("Failed to build one or more wheels") + + return SUCCESS diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/configuration.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/configuration.py new file mode 100644 index 00000000..c25273d5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/configuration.py @@ -0,0 +1,383 @@ +"""Configuration management setup + +Some terminology: +- name + As written in config files. +- value + Value associated with a name +- key + Name combined with it's section (section.name) +- variant + A single word describing where the configuration key-value pair came from +""" + +import configparser +import locale +import os +import sys +from typing import Any, Dict, Iterable, List, NewType, Optional, Tuple + +from pip._internal.exceptions import ( + ConfigurationError, + ConfigurationFileCouldNotBeLoaded, +) +from pip._internal.utils import appdirs +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ensure_dir, enum + +RawConfigParser = configparser.RawConfigParser # Shorthand +Kind = NewType("Kind", str) + +CONFIG_BASENAME = "pip.ini" if WINDOWS else "pip.conf" +ENV_NAMES_IGNORED = "version", "help" + +# The kinds of configurations there are. +kinds = enum( + USER="user", # User Specific + GLOBAL="global", # System Wide + SITE="site", # [Virtual] Environment Specific + ENV="env", # from PIP_CONFIG_FILE + ENV_VAR="env-var", # from Environment Variables +) +OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR +VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE + +logger = getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name: str) -> str: + """Make a name consistent regardless of source (environment or file)""" + name = name.lower().replace("_", "-") + if name.startswith("--"): + name = name[2:] # only prefer long opts + return name + + +def _disassemble_key(name: str) -> List[str]: + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + f"Perhaps you wanted to use 'global.{name}' instead?" + ) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files() -> Dict[Kind, List[str]]: + global_config_files = [ + os.path.join(path, CONFIG_BASENAME) for path in appdirs.site_config_dirs("pip") + ] + + site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) + legacy_config_file = os.path.join( + os.path.expanduser("~"), + "pip" if WINDOWS else ".pip", + CONFIG_BASENAME, + ) + new_config_file = os.path.join(appdirs.user_config_dir("pip"), CONFIG_BASENAME) + return { + kinds.GLOBAL: global_config_files, + kinds.SITE: [site_config_file], + kinds.USER: [legacy_config_file, new_config_file], + } + + +class Configuration: + """Handles management of configuration. + + Provides an interface to accessing and managing configuration files. + + This class converts provides an API that takes "section.key-name" style + keys and stores the value associated with it as "key-name" under the + section "section". + + This allows for a clean interface wherein the both the section and the + key-name are preserved in an easy to manage form in the configuration files + and the data stored is also nice. + """ + + def __init__(self, isolated: bool, load_only: Optional[Kind] = None) -> None: + super().__init__() + + if load_only is not None and load_only not in VALID_LOAD_ONLY: + raise ConfigurationError( + "Got invalid value for load_only - should be one of {}".format( + ", ".join(map(repr, VALID_LOAD_ONLY)) + ) + ) + self.isolated = isolated + self.load_only = load_only + + # Because we keep track of where we got the data from + self._parsers: Dict[Kind, List[Tuple[str, RawConfigParser]]] = { + variant: [] for variant in OVERRIDE_ORDER + } + self._config: Dict[Kind, Dict[str, Any]] = { + variant: {} for variant in OVERRIDE_ORDER + } + self._modified_parsers: List[Tuple[str, RawConfigParser]] = [] + + def load(self) -> None: + """Loads configuration from configuration files and environment""" + self._load_config_files() + if not self.isolated: + self._load_environment_vars() + + def get_file_to_edit(self) -> Optional[str]: + """Returns the file with highest priority in configuration""" + assert self.load_only is not None, "Need to be specified a file to be editing" + + try: + return self._get_parser_to_modify()[0] + except IndexError: + return None + + def items(self) -> Iterable[Tuple[str, Any]]: + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key: str) -> Any: + """Get a value from the configuration.""" + orig_key = key + key = _normalize_name(key) + try: + return self._dictionary[key] + except KeyError: + # disassembling triggers a more useful error message than simply + # "No such key" in the case that the key isn't in the form command.option + _disassemble_key(key) + raise ConfigurationError(f"No such key - {orig_key}") + + def set_value(self, key: str, value: Any) -> None: + """Modify a value in the configuration.""" + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + + # Modify the parser and the configuration + if not parser.has_section(section): + parser.add_section(section) + parser.set(section, name, value) + + self._config[self.load_only][key] = value + self._mark_as_modified(fname, parser) + + def unset_value(self, key: str) -> None: + """Unset a value in the configuration.""" + orig_key = key + key = _normalize_name(key) + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {orig_key}") + + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + if not ( + parser.has_section(section) and parser.remove_option(section, name) + ): + # The option was not removed. + raise ConfigurationError( + "Fatal Internal error [id=1]. Please report as a bug." + ) + + # The section may be empty after the option was removed. + if not parser.items(section): + parser.remove_section(section) + self._mark_as_modified(fname, parser) + + del self._config[self.load_only][key] + + def save(self) -> None: + """Save the current in-memory state.""" + self._ensure_have_load_only() + + for fname, parser in self._modified_parsers: + logger.info("Writing to %s", fname) + + # Ensure directory exists. + ensure_dir(os.path.dirname(fname)) + + # Ensure directory's permission(need to be writeable) + try: + with open(fname, "w") as f: + parser.write(f) + except OSError as error: + raise ConfigurationError( + f"An error occurred while writing to the configuration file " + f"{fname}: {error}" + ) + + # + # Private routines + # + + def _ensure_have_load_only(self) -> None: + if self.load_only is None: + raise ConfigurationError("Needed a specific file to be modifying.") + logger.debug("Will be working with %s variant only", self.load_only) + + @property + def _dictionary(self) -> Dict[str, Any]: + """A dictionary representing the loaded configuration.""" + # NOTE: Dictionaries are not populated if not loaded. So, conditionals + # are not needed here. + retval = {} + + for variant in OVERRIDE_ORDER: + retval.update(self._config[variant]) + + return retval + + def _load_config_files(self) -> None: + """Loads configuration from configuration files""" + config_files = dict(self.iter_config_files()) + if config_files[kinds.ENV][0:1] == [os.devnull]: + logger.debug( + "Skipping loading configuration files due to " + "environment's PIP_CONFIG_FILE being os.devnull" + ) + return + + for variant, files in config_files.items(): + for fname in files: + # If there's specific variant set in `load_only`, load only + # that variant, not the others. + if self.load_only is not None and variant != self.load_only: + logger.debug("Skipping file '%s' (variant: %s)", fname, variant) + continue + + parser = self._load_file(variant, fname) + + # Keeping track of the parsers used + self._parsers[variant].append((fname, parser)) + + def _load_file(self, variant: Kind, fname: str) -> RawConfigParser: + logger.verbose("For variant '%s', will try loading '%s'", variant, fname) + parser = self._construct_parser(fname) + + for section in parser.sections(): + items = parser.items(section) + self._config[variant].update(self._normalized_keys(section, items)) + + return parser + + def _construct_parser(self, fname: str) -> RawConfigParser: + parser = configparser.RawConfigParser() + # If there is no such file, don't bother reading it but create the + # parser anyway, to hold the data. + # Doing this is useful when modifying and saving files, where we don't + # need to construct a parser. + if os.path.exists(fname): + locale_encoding = locale.getpreferredencoding(False) + try: + parser.read(fname, encoding=locale_encoding) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason=f"contains invalid {locale_encoding} characters", + fname=fname, + ) + except configparser.Error as error: + # See https://github.com/pypa/pip/issues/4893 + raise ConfigurationFileCouldNotBeLoaded(error=error) + return parser + + def _load_environment_vars(self) -> None: + """Loads configuration from environment variables""" + self._config[kinds.ENV_VAR].update( + self._normalized_keys(":env:", self.get_environ_vars()) + ) + + def _normalized_keys( + self, section: str, items: Iterable[Tuple[str, Any]] + ) -> Dict[str, Any]: + """Normalizes items to construct a dictionary with normalized keys. + + This routine is where the names become keys and are made the same + regardless of source - configuration files or environment. + """ + normalized = {} + for name, val in items: + key = section + "." + _normalize_name(name) + normalized[key] = val + return normalized + + def get_environ_vars(self) -> Iterable[Tuple[str, str]]: + """Returns a generator with all environmental vars with prefix PIP_""" + for key, val in os.environ.items(): + if key.startswith("PIP_"): + name = key[4:].lower() + if name not in ENV_NAMES_IGNORED: + yield name, val + + # XXX: This is patched in the tests. + def iter_config_files(self) -> Iterable[Tuple[Kind, List[str]]]: + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. The order + here doesn't affect what gets overridden. That is controlled + by OVERRIDE_ORDER. However this does control the order they are + displayed to the user. It's probably most ergononmic to display + things in the same order as OVERRIDE_ORDER + """ + # SMELL: Move the conditions out of this function + + env_config_file = os.environ.get("PIP_CONFIG_FILE", None) + config_files = get_configuration_files() + + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user config is not loaded when env_config_file exists + should_load_user_config = not self.isolated and not ( + env_config_file and os.path.exists(env_config_file) + ) + if should_load_user_config: + # The legacy config file is overridden by the new config file + yield kinds.USER, config_files[kinds.USER] + + # virtualenv config + yield kinds.SITE, config_files[kinds.SITE] + + if env_config_file is not None: + yield kinds.ENV, [env_config_file] + else: + yield kinds.ENV, [] + + def get_values_in_config(self, variant: Kind) -> Dict[str, Any]: + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self) -> Tuple[str, RawConfigParser]: + # Determine which parser to modify + assert self.load_only + parsers = self._parsers[self.load_only] + if not parsers: + # This should not happen if everything works correctly. + raise ConfigurationError( + "Fatal Internal error [id=2]. Please report as a bug." + ) + + # Use the highest priority parser. + return parsers[-1] + + # XXX: This is patched in the tests. + def _mark_as_modified(self, fname: str, parser: RawConfigParser) -> None: + file_parser_tuple = (fname, parser) + if file_parser_tuple not in self._modified_parsers: + self._modified_parsers.append(file_parser_tuple) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 00000000..9a89a838 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py @@ -0,0 +1,21 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.distributions.sdist import SourceDistribution +from pip._internal.distributions.wheel import WheelDistribution +from pip._internal.req.req_install import InstallRequirement + + +def make_distribution_for_install_requirement( + install_req: InstallRequirement, +) -> AbstractDistribution: + """Returns a Distribution for the given InstallRequirement""" + # Editable requirements will always be source distributions. They use the + # legacy logic until we create a modern standard for them. + if install_req.editable: + return SourceDistribution(install_req) + + # If it's a wheel, it's a WheelDistribution + if install_req.is_wheel: + return WheelDistribution(install_req) + + # Otherwise, a SourceDistribution + return SourceDistribution(install_req) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d6d951bac3eaeeb7d1c473409beb38d3963eff3 GIT binary patch literal 989 zcmaJ;&ui2`6rOamNos%5+KUt=MUbXtGpGj-7PU|iFCy(h*h`pAUN^HlNwzbyEtMWT z_&?NRui~HLrPzZKTo62YTWC+7d=tC6R_TMu``(-PUcPVMhnbmc1Z`!7wVO3UzL{WT z_60cGL~ukBl30RdR@1T!o)8mRty!yZP1sqzS+B4yoXl;yi0j}c4p=*O;=Zw)-hmfP zem5fnt6bb@DJ@y7H#vIV>T6!)m|xf~`Z9(~+4+|#fVh-gc$O>8gxG@JK9`U|uFEO@ zD;G)FEgcEEFZ0;CkYOB3tj?K6a6}GC$7C;=oYJPQvP1IzqJP^|kDg?7jUKDrQ8-@x z{~3Yx>cLjUOZm(nm*nph($^{YZN3M&|F62hE# zzW$FRnid(*P7$Y&XOIdWr}Tv^I?&ZX)xK`AG;hR$Qw4GlBvmq|OexTcwi$L-|9J{I zNTv%(A>X5dw`lJ`r$v50ynBx-uA$LmahJ70(H`&7i02w)&IC=y_Nr)v7hFeC*gGhL zjCCOzzmHHk7F63bn;WfD&Y+S?(nAEV$#9x@*FU*SAKj%dbIZqTr*q+n7Y?1Vtbe?8 zI@dVy8s`p~zV)_yI<<*Uk6)m6R!m34m> zQ{Mc09!d=Hj3i43|5<5$N93%*(}sk%o)t-7z$3Ycp;@ZBgP&o|vaA8w7?39e@_0bj Xht90E_IdvHu!jC?{l`2#}!y1RS`9Zh?vuZ|pdmv}pyFJoDzwdo%Cj z_n!S_p^!)LOikg1zcUE^A{WV{b&2%=h#QC?qPVCkXVq1jYE^BfswqXTQ*OGcRkest zyP0OTnpF^0SqAnrS8wL3IR&ZcG$NTRh-4{R+?rgnF@L7tPQ|P0NLwlAewT~6vKki7 zy?f@Ab@GiyAe#vp23qDA!%Ae*wh%;3-8_g`lcRlxm8oG)+<@T~A*{b%khGMyndl zEEf9@h-s3dI?av4qOO9U>DyhAY98db4V51S$!wow;R%vD$&oxQk`Z{NEjk(P(;B;q zE-BU0SyV2BTW4wz3~Y=3px}>Hgl3Ey#LBQ;%(+qbnbE)=aUE~LaN>C3noAALgi{A~ zUdiVTc+NGb!8QUJYhtf08jov&w%m7Jf0@4&s~gkCGBuhlE{qy%%NvAm5Gp8ZIvy+r zk2gHrq|v=_^%U3$$~N{62*dUnqqcC{vDvYv=X=wwV1Z#G#W*c@jfPvLgF&2eZY(>Z zVQ?y1!GJG^dbVMg`-y?c^^e-=umR=hP`@RT=*e(kLYx?y$ss)xrldjATMiz=L74lV z3>Ry8)4~B3p#cSCdbUG(`DwwkL0Ld7js6T9er*xLW6(>1&!s7FRbm6K`4=GvRA7Py z-UyLXm;QT{k|-y>vFx)Ya3?ae)^c3n1Co{~+Xz%&5*MgPS!_wmb1t-c_sL?E7Wjq( z{s5fXkEMCoC6&nDFa>A}GYpc&yg3_i+k0elknj3o7(P^PAko{prd~$Zpl5E?*>*L3U0;U{WGiy)J~CWUfMv6S@b>nSu)e31m6dO1 zj3mPiEQ~n!P?z0g1AHOf4j_A@Ye+0e><@q{0U}iTY~7giJ$gtAN%(=bbQ(&X8(tTe zvK#?XL(vJ1ECIVQKVJzL4KSltf8eYH|5N4pd8l32g_EPEWW%R|lFFJAZkhANY%_49 zPX;BY81vbh!b%VgE@NS^%`k?g$PKGo8o*SBmN5%HZa|$r5q6edBY~NSK{de^J zYzuJyZyK09hRM{j?J)FPH@-kc&)IUdD+;_2Teqjm9#9p#uHncTvr$H`x{sYK1yep@p=(C-m&34IQHw;{!2e9epWA{_@ zy>fJ@*H6`{$VvkrmkyQ zWrb}5ZUlnk5k#5%qlpHYKK>C553is<)RLxmCRJ_won4g=YxR?RP<5RkX=F&%b;h!7L?qM4V2hPa>mD{#4rA z(O?Gt#GX!8QaakXx091p9_5SoM}Ug-AE-b@l@M7CziT;JuTdi|kFrT{Ak2t%0N)iR zJ5(ICozN#My*^n`WN~YG$a53 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e9dd9e7425b26233ac05ef35933149e8825eb3c GIT binary patch literal 1748 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/base.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/base.py new file mode 100644 index 00000000..6e4d0c91 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/base.py @@ -0,0 +1,53 @@ +import abc +from typing import TYPE_CHECKING, Optional + +from pip._internal.metadata.base import BaseDistribution +from pip._internal.req import InstallRequirement + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + + +class AbstractDistribution(metaclass=abc.ABCMeta): + """A base class for handling installable artifacts. + + The requirements for anything installable are as follows: + + - we must be able to determine the requirement name + (or we can't correctly handle the non-upgrade case). + + - for packages with setup requirements, we must also be able + to determine their requirements without installing additional + packages (for the same reason as run-time dependencies) + + - we must be able to create a Distribution object exposing the + above metadata. + + - if we need to do work in the build tracker, we must be able to generate a unique + string to identify the requirement in the build tracker. + """ + + def __init__(self, req: InstallRequirement) -> None: + super().__init__() + self.req = req + + @abc.abstractproperty + def build_tracker_id(self) -> Optional[str]: + """A string that uniquely identifies this requirement to the build tracker. + + If None, then this dist has no work to do in the build tracker, and + ``.prepare_distribution_metadata()`` will not be called.""" + raise NotImplementedError() + + @abc.abstractmethod + def get_metadata_distribution(self) -> BaseDistribution: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, + finder: "PackageFinder", + build_isolation: bool, + check_build_deps: bool, + ) -> None: + raise NotImplementedError() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/installed.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 00000000..ab8d53be --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,29 @@ +from typing import Optional + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + assert self.req.satisfied_by is not None, "not actually installed" + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 00000000..28ea5cea --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,158 @@ +import logging +from typing import TYPE_CHECKING, Iterable, Optional, Set, Tuple + +from pip._internal.build_env import BuildEnvironment +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.exceptions import InstallationError +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.subprocess import runner_with_spinner_message + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + +logger = logging.getLogger(__name__) + + +class SourceDistribution(AbstractDistribution): + """Represents a source distribution. + + The preparation step for these needs metadata for the packages to be + generated, either using PEP 517 or using the legacy `setup.py egg_info`. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + """Identify this requirement uniquely by its link.""" + assert self.req.link + return self.req.link.url_without_fragment + + def get_metadata_distribution(self) -> BaseDistribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, + finder: "PackageFinder", + build_isolation: bool, + check_build_deps: bool, + ) -> None: + # Load pyproject.toml, to determine whether PEP 517 is to be used + self.req.load_pyproject_toml() + + # Set up the build isolation, if this requirement should be isolated + should_isolate = self.req.use_pep517 and build_isolation + if should_isolate: + # Setup an isolated environment and install the build backend static + # requirements in it. + self._prepare_build_backend(finder) + # Check that if the requirement is editable, it either supports PEP 660 or + # has a setup.py or a setup.cfg. This cannot be done earlier because we need + # to setup the build backend to verify it supports build_editable, nor can + # it be done later, because we want to avoid installing build requirements + # needlessly. Doing it here also works around setuptools generating + # UNKNOWN.egg-info when running get_requires_for_build_wheel on a directory + # without setup.py nor setup.cfg. + self.req.isolated_editable_sanity_check() + # Install the dynamic build requirements. + self._install_build_reqs(finder) + # Check if the current environment provides build dependencies + should_check_deps = self.req.use_pep517 and check_build_deps + if should_check_deps: + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + conflicting, missing = self.req.build_env.check_requirements( + pyproject_requires + ) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + if missing: + self._raise_missing_reqs(missing) + self.req.prepare_metadata() + + def _prepare_build_backend(self, finder: "PackageFinder") -> None: + # Isolate in a BuildEnvironment and install the build-time + # requirements. + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + + self.req.build_env = BuildEnvironment() + self.req.build_env.install_requirements( + finder, pyproject_requires, "overlay", kind="build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + self._raise_conflicts("PEP 517/518 supported requirements", conflicting) + if missing: + logger.warning( + "Missing build requirements in pyproject.toml for %s.", + self.req, + ) + logger.warning( + "The project does not specify a build backend, and " + "pip cannot fall back to setuptools without %s.", + " and ".join(map(repr, sorted(missing))), + ) + + def _get_build_requires_wheel(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message("Getting requirements to build wheel") + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_wheel() + + def _get_build_requires_editable(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message( + "Getting requirements to build editable" + ) + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_editable() + + def _install_build_reqs(self, finder: "PackageFinder") -> None: + # Install any extra build dependencies that the backend requests. + # This must be done in a second pass, as the pyproject.toml + # dependencies must be installed before we can call the backend. + if ( + self.req.editable + and self.req.permit_editable_wheels + and self.req.supports_pyproject_editable + ): + build_reqs = self._get_build_requires_editable() + else: + build_reqs = self._get_build_requires_wheel() + conflicting, missing = self.req.build_env.check_requirements(build_reqs) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", kind="backend dependencies" + ) + + def _raise_conflicts( + self, conflicting_with: str, conflicting_reqs: Set[Tuple[str, str]] + ) -> None: + format_string = ( + "Some build dependencies for {requirement} " + "conflict with {conflicting_with}: {description}." + ) + error_message = format_string.format( + requirement=self.req, + conflicting_with=conflicting_with, + description=", ".join( + f"{installed} is incompatible with {wanted}" + for installed, wanted in sorted(conflicting_reqs) + ), + ) + raise InstallationError(error_message) + + def _raise_missing_reqs(self, missing: Set[str]) -> None: + format_string = ( + "Some build dependencies for {requirement} are missing: {missing}." + ) + error_message = format_string.format( + requirement=self.req, missing=", ".join(map(repr, sorted(missing))) + ) + raise InstallationError(error_message) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 00000000..bfadd39d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,42 @@ +from typing import TYPE_CHECKING, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + @property + def build_tracker_id(self) -> Optional[str]: + return None + + def get_metadata_distribution(self) -> BaseDistribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + assert self.req.local_file_path, "Set as part of preparation during download" + assert self.req.name, "Wheels are never unnamed" + wheel = FilesystemWheel(self.req.local_file_path) + return get_wheel_distribution(wheel, canonicalize_name(self.req.name)) + + def prepare_distribution_metadata( + self, + finder: "PackageFinder", + build_isolation: bool, + check_build_deps: bool, + ) -> None: + pass diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/exceptions.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/exceptions.py new file mode 100644 index 00000000..2587740f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,777 @@ +"""Exceptions used throughout package. + +This module MUST NOT try to import from anything within `pip._internal` to +operate. This is expected to be importable from any/all files within the +subpackage and, thus, should not depend on them. +""" + +import configparser +import contextlib +import locale +import logging +import pathlib +import re +import sys +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, Iterator, List, Literal, Optional, Union + +from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +if TYPE_CHECKING: + from hashlib import _Hash + + from pip._vendor.requests.models import Request, Response + + from pip._internal.metadata import BaseDistribution + from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +# +# Scaffolding +# +def _is_kebab_case(s: str) -> bool: + return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None + + +def _prefix_with_indent( + s: Union[Text, str], + console: Console, + *, + prefix: str, + indent: str, +) -> Text: + if isinstance(s, Text): + text = s + else: + text = console.render_str(s) + + return console.render_str(prefix, overflow="ignore") + console.render_str( + f"\n{indent}", overflow="ignore" + ).join(text.split(allow_blank=True)) + + +class PipError(Exception): + """The base pip error.""" + + +class DiagnosticPipError(PipError): + """An error, that presents diagnostic information to the user. + + This contains a bunch of logic, to enable pretty presentation of our error + messages. Each error gets a unique reference. Each error can also include + additional context, a hint and/or a note -- which are presented with the + main error message in a consistent style. + + This is adapted from the error output styling in `sphinx-theme-builder`. + """ + + reference: str + + def __init__( + self, + *, + kind: 'Literal["error", "warning"]' = "error", + reference: Optional[str] = None, + message: Union[str, Text], + context: Optional[Union[str, Text]], + hint_stmt: Optional[Union[str, Text]], + note_stmt: Optional[Union[str, Text]] = None, + link: Optional[str] = None, + ) -> None: + # Ensure a proper reference is provided. + if reference is None: + assert hasattr(self, "reference"), "error reference not provided!" + reference = self.reference + assert _is_kebab_case(reference), "error reference must be kebab-case!" + + self.kind = kind + self.reference = reference + + self.message = message + self.context = context + + self.note_stmt = note_stmt + self.hint_stmt = hint_stmt + + self.link = link + + super().__init__(f"<{self.__class__.__name__}: {self.reference}>") + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__}(" + f"reference={self.reference!r}, " + f"message={self.message!r}, " + f"context={self.context!r}, " + f"note_stmt={self.note_stmt!r}, " + f"hint_stmt={self.hint_stmt!r}" + ")>" + ) + + def __rich_console__( + self, + console: Console, + options: ConsoleOptions, + ) -> RenderResult: + colour = "red" if self.kind == "error" else "yellow" + + yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" + yield "" + + if not options.ascii_only: + # Present the main message, with relevant context indented. + if self.context is not None: + yield _prefix_with_indent( + self.message, + console, + prefix=f"[{colour}]×[/] ", + indent=f"[{colour}]│[/] ", + ) + yield _prefix_with_indent( + self.context, + console, + prefix=f"[{colour}]╰─>[/] ", + indent=f"[{colour}] [/] ", + ) + else: + yield _prefix_with_indent( + self.message, + console, + prefix="[red]×[/] ", + indent=" ", + ) + else: + yield self.message + if self.context is not None: + yield "" + yield self.context + + if self.note_stmt is not None or self.hint_stmt is not None: + yield "" + + if self.note_stmt is not None: + yield _prefix_with_indent( + self.note_stmt, + console, + prefix="[magenta bold]note[/]: ", + indent=" ", + ) + if self.hint_stmt is not None: + yield _prefix_with_indent( + self.hint_stmt, + console, + prefix="[cyan bold]hint[/]: ", + indent=" ", + ) + + if self.link is not None: + yield "" + yield f"Link: {self.link}" + + +# +# Actual Errors +# +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class MissingPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" + + reference = "missing-pyproject-build-system-requires" + + def __init__(self, *, package: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid pyproject.toml file.\n" + "The [build-system] table is missing the mandatory `requires` key." + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class InvalidPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml an invalid `build-system.requires`.""" + + reference = "invalid-pyproject-build-system-requires" + + def __init__(self, *, package: str, reason: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid `build-system.requires` key in " + f"pyproject.toml.\n{reason}" + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class NoneMetadataError(PipError): + """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". + + This signifies an inconsistency, when the Distribution claims to have + the metadata file (if not, raise ``FileNotFoundError`` instead), but is + not actually able to produce its content. This may be due to permission + errors. + """ + + def __init__( + self, + dist: "BaseDistribution", + metadata_name: str, + ) -> None: + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self) -> str: + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return f"None {self.metadata_name} metadata found for distribution: {self.dist}" + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self) -> str: + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self) -> str: + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__( + self, + error_msg: str, + response: Optional["Response"] = None, + request: Optional["Request"] = None, + ) -> None: + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if ( + self.response is not None + and not self.request + and hasattr(response, "request") + ): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self) -> str: + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class InvalidWheel(InstallationError): + """Invalid (e.g. corrupt) wheel.""" + + def __init__(self, location: str, name: str): + self.location = location + self.name = name + + def __str__(self) -> str: + return f"Wheel '{self.name}' located at {self.location} is invalid." + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename, + user-supplied ``#egg=`` value, or an install requirement name. + """ + + def __init__( + self, ireq: "InstallRequirement", field: str, f_val: str, m_val: str + ) -> None: + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self) -> str: + return ( + f"Requested {self.ireq} has inconsistent {self.field}: " + f"expected {self.f_val!r}, but metadata has {self.m_val!r}" + ) + + +class MetadataInvalid(InstallationError): + """Metadata is invalid.""" + + def __init__(self, ireq: "InstallRequirement", error: str) -> None: + self.ireq = ireq + self.error = error + + def __str__(self) -> str: + return f"Requested {self.ireq} has invalid metadata: {self.error}" + + +class InstallationSubprocessError(DiagnosticPipError, InstallationError): + """A subprocess call failed.""" + + reference = "subprocess-exited-with-error" + + def __init__( + self, + *, + command_description: str, + exit_code: int, + output_lines: Optional[List[str]], + ) -> None: + if output_lines is None: + output_prompt = Text("See above for output.") + else: + output_prompt = ( + Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") + + Text("".join(output_lines)) + + Text.from_markup(R"[red]\[end of output][/]") + ) + + super().__init__( + message=( + f"[green]{escape(command_description)}[/] did not run successfully.\n" + f"exit code: {exit_code}" + ), + context=output_prompt, + hint_stmt=None, + note_stmt=( + "This error originates from a subprocess, and is likely not a " + "problem with pip." + ), + ) + + self.command_description = command_description + self.exit_code = exit_code + + def __str__(self) -> str: + return f"{self.command_description} exited with {self.exit_code}" + + +class MetadataGenerationFailed(InstallationSubprocessError, InstallationError): + reference = "metadata-generation-failed" + + def __init__( + self, + *, + package_details: str, + ) -> None: + super(InstallationSubprocessError, self).__init__( + message="Encountered error while generating package metadata.", + context=escape(package_details), + hint_stmt="See above for details.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + def __str__(self) -> str: + return "metadata generation failed" + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self) -> None: + self.errors: List["HashError"] = [] + + def append(self, error: "HashError") -> None: + self.errors.append(error) + + def __str__(self) -> str: + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return "\n".join(lines) + return "" + + def __bool__(self) -> bool: + return bool(self.errors) + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + + req: Optional["InstallRequirement"] = None + head = "" + order: int = -1 + + def body(self) -> str: + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f" {self._requirement_name()}" + + def __str__(self) -> str: + return f"{self.head}\n{self.body()}" + + def _requirement_name(self) -> str: + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else "unknown package" + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ( + "Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:" + ) + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ( + "Can't verify hashes for these file:// requirements because they " + "point to directories:" + ) + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ( + "Hashes are required in --require-hashes mode, but they are " + "missing from some requirements. Here is a list of those " + "requirements along with the hashes their downloaded archives " + "actually had. Add lines like these to your requirements files to " + "prevent tampering. (If you did not enable --require-hashes " + "manually, note that it turns on automatically when any package " + "has a hash.)" + ) + + def __init__(self, gotten_hash: str) -> None: + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self) -> str: + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = ( + self.req.original_link + if self.req.is_direct + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, "req", None) + ) + return " {} --hash={}:{}".format( + package or "unknown package", FAVORITE_HASH, self.gotten_hash + ) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ( + "In --require-hashes mode, all requirements must have their " + "versions pinned with ==. These do not:" + ) + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + + order = 4 + head = ( + "THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS " + "FILE. If you have updated the package versions, please update " + "the hashes. Otherwise, examine the package contents carefully; " + "someone may have tampered with them." + ) + + def __init__(self, allowed: Dict[str, List[str]], gots: Dict[str, "_Hash"]) -> None: + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self) -> str: + return f" {self._requirement_name()}:\n{self._hash_comparison()}" + + def _hash_comparison(self) -> str: + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + + def hash_then_or(hash_name: str) -> "chain[str]": + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(" or")) + + lines: List[str] = [] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend((f" Expected {next(prefix)} {e}") for e in expecteds) + lines.append( + f" Got {self.gots[hash_name].hexdigest()}\n" + ) + return "\n".join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file""" + + def __init__( + self, + reason: str = "could not be loaded", + fname: Optional[str] = None, + error: Optional[configparser.Error] = None, + ) -> None: + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self) -> str: + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" + + +_DEFAULT_EXTERNALLY_MANAGED_ERROR = f"""\ +The Python environment under {sys.prefix} is managed externally, and may not be +manipulated by the user. Please use specific tooling from the distributor of +the Python installation to interact with this environment instead. +""" + + +class ExternallyManagedEnvironment(DiagnosticPipError): + """The current environment is externally managed. + + This is raised when the current environment is externally managed, as + defined by `PEP 668`_. The ``EXTERNALLY-MANAGED`` configuration is checked + and displayed when the error is bubbled up to the user. + + :param error: The error message read from ``EXTERNALLY-MANAGED``. + """ + + reference = "externally-managed-environment" + + def __init__(self, error: Optional[str]) -> None: + if error is None: + context = Text(_DEFAULT_EXTERNALLY_MANAGED_ERROR) + else: + context = Text(error) + super().__init__( + message="This environment is externally managed", + context=context, + note_stmt=( + "If you believe this is a mistake, please contact your " + "Python installation or OS distribution provider. " + "You can override this, at the risk of breaking your Python " + "installation or OS, by passing --break-system-packages." + ), + hint_stmt=Text("See PEP 668 for the detailed specification."), + ) + + @staticmethod + def _iter_externally_managed_error_keys() -> Iterator[str]: + # LC_MESSAGES is in POSIX, but not the C standard. The most common + # platform that does not implement this category is Windows, where + # using other categories for console message localization is equally + # unreliable, so we fall back to the locale-less vendor message. This + # can always be re-evaluated when a vendor proposes a new alternative. + try: + category = locale.LC_MESSAGES + except AttributeError: + lang: Optional[str] = None + else: + lang, _ = locale.getlocale(category) + if lang is not None: + yield f"Error-{lang}" + for sep in ("-", "_"): + before, found, _ = lang.partition(sep) + if not found: + continue + yield f"Error-{before}" + yield "Error" + + @classmethod + def from_config( + cls, + config: Union[pathlib.Path, str], + ) -> "ExternallyManagedEnvironment": + parser = configparser.ConfigParser(interpolation=None) + try: + parser.read(config, encoding="utf-8") + section = parser["externally-managed"] + for key in cls._iter_externally_managed_error_keys(): + with contextlib.suppress(KeyError): + return cls(section[key]) + except KeyError: + pass + except (OSError, UnicodeDecodeError, configparser.ParsingError): + from pip._internal.utils._log import VERBOSE + + exc_info = logger.isEnabledFor(VERBOSE) + logger.warning("Failed to read %s", config, exc_info=exc_info) + return cls(None) + + +class UninstallMissingRecord(DiagnosticPipError): + reference = "uninstall-no-record-file" + + def __init__(self, *, distribution: "BaseDistribution") -> None: + installer = distribution.installer + if not installer or installer == "pip": + dep = f"{distribution.raw_name}=={distribution.version}" + hint = Text.assemble( + "You might be able to recover from this via: ", + (f"pip install --force-reinstall --no-deps {dep}", "green"), + ) + else: + hint = Text( + f"The package was installed by {installer}. " + "You should check if it can uninstall the package." + ) + + super().__init__( + message=Text(f"Cannot uninstall {distribution}"), + context=( + "The package's contents are unknown: " + f"no RECORD file was found for {distribution.raw_name}." + ), + hint_stmt=hint, + ) + + +class LegacyDistutilsInstall(DiagnosticPipError): + reference = "uninstall-distutils-installed-package" + + def __init__(self, *, distribution: "BaseDistribution") -> None: + super().__init__( + message=Text(f"Cannot uninstall {distribution}"), + context=( + "It is a distutils installed project and thus we cannot accurately " + "determine which files belong to it which would lead to only a partial " + "uninstall." + ), + hint_stmt=None, + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 00000000..7a17b7b3 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..be53183fdc0349cf4303cc4ab354e494c3a57e6e GIT binary patch literal 280 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..395503482ba1fb719bcc137d0f39ab0a2c5eb636 GIT binary patch literal 12636 zcmc&)Yj7Lab>0OQZx8?wt+#F=tMTq$?No$^FH{JoU)rs^Vf zDPP2w@<;rsKqQc=kJP6cA`Se#E!miAiZpTBo(!g%Bh8$4BwJFuBD+$pkyiffOtz)k zBkiJK5fowi(c+-XsnYo-#!Vs8r8t$QR-(E=HFGMY*p=psV)4zSh3EE|xx3BhUW@QK zL3X_;$nG~SyfGotCwr8B*{kfHl;pY>rN{s;<3kyLsmvap7eHRU()Xs-thtxxHXygL zA~(!)n~)o<$lb?tn~~d6k^6wW3w^gLJ#w4UE4M4V)^GSr%7xJ5#h-mX4d;$QvMDBCgnMMs!oq zO7Dv8Ul+sT{NU5PrW(?wl+bKiR#W8HQ|0Rg#k`brJgL8zWPhlrl1%iBBo%lroh}#HU7{Vwq{>lBSHPSF{VU zsq|1hnHW(Oc3EK~DvOWAR8`T`k&D>j5sld5b4nWgp=H>JlD<5WOk5b5nbW2+>4%5+ zKQy8yG-YTe7QYm`sHh_|iJ6gT0>fcopOFM6adkxH3!@It%;^%%W!_(2u3^gP!dTTh zL<_=}UGVR|>+4;0_HH6W_zjlvP>Dm-&}0Vd7`iYQB7UQ_jHN>{7N1I7RUf z_r#eH@!&9{jc4tMjOAmUAa(x?W)=kx8*Hb}w^aRm4?YWFM zF-YB1OhKJd;)zMl5#|)skepyjTuaW~W9V+0R+N@loex%wx}3cSV`IB1qESwSJ-Rc> zk7zWiyQ9%mMxI3rQQaGjeq}b6q{E9R=M2ltC`_AUPO3_(gV84H{*$!eE+W~MDrQ&mUJhdAWl7NL3`WQo{m00ibp_H9>r->;3K;fvQUDzEk!XeTZunp>C#?7 zI4gv06DLW$s2YO|WmJ3Kr72gnktr>egivy&5-CNSn^9EVeQ{P%)hIoLMK*|{l?+xF zg@~d`T;{R;c+HE@jw}cpo~CtAch1wj;(RN(<~evr%y~xdT*`S)txBg1-a@%ju$$E8 zG>Ecjlf{TtwkVQpl_e-L8$_2)cFA_6cEurEp%^7o>^UmLo{PV8LnxNso28r;r95*| z*sV83PeMYEbB@fgxpSE>vZOk{`z%gQkx`M26DWt`F~}n|#1s`uN!2A1)qJZa;+4BV z`^5L^89tY+m=&Vt^aSCefTxlm)ojHVT5$!0A|OCH+I1deYNJ$kP6%7Di+0_{wS^u) zvhA!h>Yk()v|=y{uAjznGtP&hZB)G>s$zy|MUEPW5pxV%SO@B{1Bg_bP$*=G5}d6> zI-y0Q^PRO8Yqfa?`U@qpP`4{`Q3XKrJp*x zcS;yq1HN+qh!wg&mrs}02ldQQT)lDO%d>)TP1GF4H(7C-j(t@qmcM4vNC5JXwG?w% zM^>2j7W2#Lw7*Ojsd6n*c=<7xpcSF1fSwzQrOIis4_PGMyk-N~pjFOfaEuk)v%3!qfjM#$t zC?YF_9inIyQCQ-~MYjRQusPidxvd9^LnKK~O{m18GzC*B^HWzoa`Sz)4-^fyT#C9> z-$ewV;S`#8-Hd!QvLb!Q{kr>KgAXj8*l6fnR$iNab^2~YcyVmQ-?4ml&EJy`G_42v zbAkT#z+f&g_{Q0_!2Wz-SHWqo>)hx)c*phw_xId)d&howEZ2K-H4rNJgu425??BEw zu)619&im-P_pzM!u^(E0>K%vG)jU|(E%X`(_t#r~AsD_ryxMr^SAta6S+H2^J2&19@*?-5bhzLu=mMJhLz7?^|^m_~7?BS9THu+csOy^40jVsmSUaT$yTR zK3tQZYZZO=ldM5F=MS$s!(3B9JrOLL2zyySQbvk~5fIcJ(Wsn>1K?SKYS>}Q=eq>J zBQTQxd}|o#Pxg6=9-xSDih<=wZ!wA<#7~tGy(s)l8Z1bXZSV5gf`DY@+$JTP-k@zy zVVGk&$=1Kpv=V>46=%TKZvs6~1+V#f--`Uk!*5A%o&B!sjnC!=MycFBUhV@6C}RNB zZ5+Q+DC(%q%g8Dtp)Uf{MXU)S0z(hxKa4sO--=VV5F!K;a>45Slr zD<0Xdc$GRT3)9b4fqr~=<42ww(Clqd| zoIgJ_Gzq(Dh@yeRfp*O`Oy#u=iDU1Ff!?o0)$q!j6#Vt@2G@uhWRk4EsnIg zMj)G9rM8Y429|n{TDp&eEx=)Jud8}fxq5VxWl|i3aiyYrD;eHIh!VD-7)S=uZ}XoK zL0WA?h#I}&A!~ipM2gVtC4`xUo}VV9R241@ELi(Zmh(y_o}3dZ(avqLqMy<@(N>Wc zD|)(D55$EWm%>sY010#&tgt>SR){QSy>1&SWlxxSWq*ju52UGM*#zDj`ua&w+m$Lm z@YTrFVAv8eC2gP*2wxCzJO@TO4&CS+ej|Ig^9Vh(73_jHuykO(aUh3(&p^JXf4%2G zuIIp8=W;!xi{n4_cKx#Fkvj+0dLCaKU-Ne5_YSV_9nI~=$Rcfw8l@$0IRVDoPpTe(Ub~LuEH}>Zm`_~&ES!;Y` zaV+1`zTUDw*Rua_`rcCiI()a~$h!AP&U*w9r0Fwx?~#vGf_v8w9npw@DsViPpmag08TbEFR6bX{<9}(#hw)Zho8Oc z2M>wi#ws<;PN6-1k_}CJnjT5L>HcUGre;Rtj!+ePx?!y3mO2T^`4lj}p|Oe~ErH?DR)wA%VmuIb^s z(xU~*XFL3U*MkKcQk;B$L%~6mQ)p=`xQKEKZr`Sds1VoYqOGau)d6WLdr$?t#dg&2 z>KrAnPKV*u=`fT#4JnRaDHO%_<{u)ftlZ0P4#g(J%`pijZn`+gg;DhEZgX)!-MgW( zNzHpedkys-se@?=dVTBmSCN>65Qd3E1*bpoiDCtm!K`{;ueF@GW79099 z_kz+pQ=69xn%ex-WGEK;;?rkBQ0nUJ%uEtc0RCPrl$uqw&;?j`rk))|+bB02;xz~v zR8|RT88;b7ga|U+fzKO3qreC7?ZQQjB4$^U38repAr2&dBY*%$YT0qh`@IJmIEUfD z{XbMy+R#MgG&I$^wY0YaKJu8dJ_Mp#t&`d=JAO<(00BtC5RM!Y@VBgn1BPom?p>zV zu{H)wC14BnP_?rq9rsPV-fTn!9p^6UIPQn}x_hUxAYehQZ<0lSFN5i-Yxye!gl7r#;I$cQ3DlzC zRK+;zoN`o(Hd)KD5**XWi^~BoK^T5RpT43n%Z|PPgyN}n^uPS zfvcqr&#vXB*Vcvxis-?I#9O|ais(5sV`vd>5SBFy zaqTBjDqo^<6upEW2ahj8sW_li8tk?F_Gm0Ph;ow7a1j+Sbw*oRXS9`c2C7(X zqogyC6x>!@E9nd*hR&cKVsY42ze}w2>I)h9<*$%T0IwInLS!h#SirqB(DxKbL zyz!X2!V9_%G?{?DIXk|h)JLCIQW;GtD~|a))mr1e+QKMMY4iR6iE7=)4Z|X4cn}k1Ty$2YFRODJJ!D> z-oJ}_YCEDz6DHry{p%gS6EV*&(9oz0m9&GYb-0jk-Z?Ik^53Tl#H=49*}s9;CD=^u zR)vq3%%()IVUm1&z57daE4ze|7!v*7!n|ka#H*zF573HAFxP<6~yPHai?aFfJWX%#_NhaJ+m_GWSk+_7^`WfA-i zT2=#yjOkR%+dzXD_TN+9>UB>6%0Gh}6Y#3wu#vi|2KJv+{F44+6up6;N~eazFURyw zQ~V-@_-!31IEZqRAa)UDfOn#rK7}9_4MB{=5X98?HbMOR0`I}-DY}3#Ui>6!Ao%&e z{Wx%LxZ3cQ5B{?%hZ~Tz#uRwDWH`z$5iDn1#uFw#42WLKjRnL`-nm!;-$0X@i-|ag z%9F4VH1gr$W`gmtgf1eSKhG_NVfqw|dcf)g$J<_-B;q5{V?+jflfq+X)#Mf-Y zqUV13>fv#j6{2Brf44fhKu}^Q{7Yw*52pGX{{;(%esKltG z2A%j3zieKGa-a*3*X;N?G-Mf}mZ4M2rB*6mZcD||w{68Mjn`aRM;2G#&IF4E%uL(;zRwMet+y8&JA5BANk)MT0AU zBMJxDQEHf4*X?}3D!(wGyK$Y9Y3dbBh!G32CSC*z68=lwaV5smP>39~aOk7k61XbL zxMz~f9JeR8uh>}KRru9({udZZciNg3Zej#C%blzI_Ywu}pjZsb7gnZdYM;Jq-L zNXk*81iOwB|Bj#f6jTVzg$AL$dtp4^+PN^c;c&fl<%KIReeH#>ElsUCx;K2S%X@L* zZ_%3fx7?8OuKIOXN6yu;{Op>mKksW^v~Kv@mLI+A@4F#wxcp1bHCHRoe&69<_-a8C z>%Jfstb)sniwQ3OE4~}PC3X4pYtH_>zx{oOXCaG^Ecu>C^6lY``ruN0b@=hM`eR!T zsmr}+2TrSRT6$*j+N!hTm*%*xy>M;m+?u29XP)3jFr4o{1j{Dh8Agp}-{MK&xl)ZS zm(ctG3Ty;hmwQ(q8ea>Z*s@u9DQCIVhRgFx%Z-*-x^8qWOKYyqjrtx8r*bSdYXgm? zvX10_Y2t;6yz^Av89ReYAkz3IO@f?}WYybo{d72b8JABoY}mMyib}(?S|X_$mrguXmXsSn&qib5_^ux0ksb zR}JoWT~xF)`~VnML6*iBrigp%$qS=P7c!Y7%TQ)BMf}Uaexk^3GLFZWh$6_%4+>}D zD%Gt!j~MqlKg+(3a)gf5M-k&ri737&_}&u&?+LD-3%$P(j;{;HKa?DzVvD zwDWUe-!FutKNtGmceO3Hth?HBE@Es~--7-9hPKuA2XhVk7yS9U;F5gf`2}}A*tx7N zPp(X@j*RC9PONsF$OTWX3JthIv)s4bywbGXkqZng)O~38ihUmlhzebzcv@T@D+rXX zjBoPvL+7Bl?*jqR*7IV&*s(miB_P>)O6(F_m*%$wBwNSDPO){_y(J*odR%M~Ie0)) zIB-~O$@}UHR-~|X+J_1bqMSl-cfmyz&QP%6A<8SXb{6W0@(GR21wT=6M0pk;T^hS_ Ybb0T}Xs&H|)ia#4jcnE9C1>RS13?1!g8%>k literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/collector.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/collector.py new file mode 100644 index 00000000..5f8fdee3 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/collector.py @@ -0,0 +1,494 @@ +""" +The main purpose of this module is to expose LinkCollector.collect_sources(). +""" + +import collections +import email.message +import functools +import itertools +import json +import logging +import os +import urllib.parse +import urllib.request +from dataclasses import dataclass +from html.parser import HTMLParser +from optparse import Values +from typing import ( + Callable, + Dict, + Iterable, + List, + MutableMapping, + NamedTuple, + Optional, + Protocol, + Sequence, + Tuple, + Union, +) + +from pip._vendor import requests +from pip._vendor.requests import Response +from pip._vendor.requests.exceptions import RetryError, SSLError + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import redact_auth_from_url +from pip._internal.vcs import vcs + +from .sources import CandidatesFromPage, LinkSource, build_source + +logger = logging.getLogger(__name__) + +ResponseHeaders = MutableMapping[str, str] + + +def _match_vcs_scheme(url: str) -> Optional[str]: + """Look for VCS schemes in the URL. + + Returns the matched VCS scheme, or None if there's no match. + """ + for scheme in vcs.schemes: + if url.lower().startswith(scheme) and url[len(scheme)] in "+:": + return scheme + return None + + +class _NotAPIContent(Exception): + def __init__(self, content_type: str, request_desc: str) -> None: + super().__init__(content_type, request_desc) + self.content_type = content_type + self.request_desc = request_desc + + +def _ensure_api_header(response: Response) -> None: + """ + Check the Content-Type header to ensure the response contains a Simple + API Response. + + Raises `_NotAPIContent` if the content type is not a valid content-type. + """ + content_type = response.headers.get("Content-Type", "Unknown") + + content_type_l = content_type.lower() + if content_type_l.startswith( + ( + "text/html", + "application/vnd.pypi.simple.v1+html", + "application/vnd.pypi.simple.v1+json", + ) + ): + return + + raise _NotAPIContent(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_api_response(url: str, session: PipSession) -> None: + """ + Send a HEAD request to the URL, and ensure the response contains a simple + API Response. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotAPIContent` if the content type is not a valid content type. + """ + scheme, netloc, path, query, fragment = urllib.parse.urlsplit(url) + if scheme not in {"http", "https"}: + raise _NotHTTP() + + resp = session.head(url, allow_redirects=True) + raise_for_status(resp) + + _ensure_api_header(resp) + + +def _get_simple_response(url: str, session: PipSession) -> Response: + """Access an Simple API response with GET, and return the response. + + This consists of three parts: + + 1. If the URL looks suspiciously like an archive, send a HEAD first to + check the Content-Type is HTML or Simple API, to avoid downloading a + large file. Raise `_NotHTTP` if the content type cannot be determined, or + `_NotAPIContent` if it is not HTML or a Simple API. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got a Simple API response, + and raise `_NotAPIContent` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_api_response(url, session=session) + + logger.debug("Getting page %s", redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": ", ".join( + [ + "application/vnd.pypi.simple.v1+json", + "application/vnd.pypi.simple.v1+html; q=0.1", + "text/html; q=0.01", + ] + ), + # We don't want to blindly returned cached data for + # /simple/, because authors generally expecting that + # twine upload && pip install will function, but if + # they've done a pip install in the last ~10 minutes + # it won't. Thus by setting this to zero we will not + # blindly use any cached data, however the benefit of + # using max-age=0 instead of no-cache, is that we will + # still support conditional requests, so we will still + # minimize traffic sent in cases where the page hasn't + # changed at all, we will just always incur the round + # trip for the conditional GET now instead of only + # once per 10 minutes. + # For more information, please see pypa/pip#5670. + "Cache-Control": "max-age=0", + }, + ) + raise_for_status(resp) + + # The check for archives above only works if the url ends with + # something that looks like an archive. However that is not a + # requirement of an url. Unless we issue a HEAD request on every + # url we cannot know ahead of time for sure if something is a + # Simple API response or not. However we can check after we've + # downloaded it. + _ensure_api_header(resp) + + logger.debug( + "Fetched page %s as %s", + redact_auth_from_url(url), + resp.headers.get("Content-Type", "Unknown"), + ) + + return resp + + +def _get_encoding_from_headers(headers: ResponseHeaders) -> Optional[str]: + """Determine if we have any encoding information in our headers.""" + if headers and "Content-Type" in headers: + m = email.message.Message() + m["content-type"] = headers["Content-Type"] + charset = m.get_param("charset") + if charset: + return str(charset) + return None + + +class CacheablePageContent: + def __init__(self, page: "IndexContent") -> None: + assert page.cache_link_parsing + self.page = page + + def __eq__(self, other: object) -> bool: + return isinstance(other, type(self)) and self.page.url == other.page.url + + def __hash__(self) -> int: + return hash(self.page.url) + + +class ParseLinks(Protocol): + def __call__(self, page: "IndexContent") -> Iterable[Link]: ... + + +def with_cached_index_content(fn: ParseLinks) -> ParseLinks: + """ + Given a function that parses an Iterable[Link] from an IndexContent, cache the + function's result (keyed by CacheablePageContent), unless the IndexContent + `page` has `page.cache_link_parsing == False`. + """ + + @functools.lru_cache(maxsize=None) + def wrapper(cacheable_page: CacheablePageContent) -> List[Link]: + return list(fn(cacheable_page.page)) + + @functools.wraps(fn) + def wrapper_wrapper(page: "IndexContent") -> List[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page)) + return list(fn(page)) + + return wrapper_wrapper + + +@with_cached_index_content +def parse_links(page: "IndexContent") -> Iterable[Link]: + """ + Parse a Simple API's Index Content, and yield its anchor elements as Link objects. + """ + + content_type_l = page.content_type.lower() + if content_type_l.startswith("application/vnd.pypi.simple.v1+json"): + data = json.loads(page.content) + for file in data.get("files", []): + link = Link.from_json(file, page.url) + if link is None: + continue + yield link + return + + parser = HTMLLinkParser(page.url) + encoding = page.encoding or "utf-8" + parser.feed(page.content.decode(encoding)) + + url = page.url + base_url = parser.base_url or url + for anchor in parser.anchors: + link = Link.from_element(anchor, page_url=url, base_url=base_url) + if link is None: + continue + yield link + + +@dataclass(frozen=True) +class IndexContent: + """Represents one response (or page), along with its URL. + + :param encoding: the encoding to decode the given content. + :param url: the URL from which the HTML was downloaded. + :param cache_link_parsing: whether links parsed from this page's url + should be cached. PyPI index urls should + have this set to False, for example. + """ + + content: bytes + content_type: str + encoding: Optional[str] + url: str + cache_link_parsing: bool = True + + def __str__(self) -> str: + return redact_auth_from_url(self.url) + + +class HTMLLinkParser(HTMLParser): + """ + HTMLParser that keeps the first base HREF and a list of all anchor + elements' attributes. + """ + + def __init__(self, url: str) -> None: + super().__init__(convert_charrefs=True) + + self.url: str = url + self.base_url: Optional[str] = None + self.anchors: List[Dict[str, Optional[str]]] = [] + + def handle_starttag(self, tag: str, attrs: List[Tuple[str, Optional[str]]]) -> None: + if tag == "base" and self.base_url is None: + href = self.get_href(attrs) + if href is not None: + self.base_url = href + elif tag == "a": + self.anchors.append(dict(attrs)) + + def get_href(self, attrs: List[Tuple[str, Optional[str]]]) -> Optional[str]: + for name, value in attrs: + if name == "href": + return value + return None + + +def _handle_get_simple_fail( + link: Link, + reason: Union[str, Exception], + meth: Optional[Callable[..., None]] = None, +) -> None: + if meth is None: + meth = logger.debug + meth("Could not fetch URL %s: %s - skipping", link, reason) + + +def _make_index_content( + response: Response, cache_link_parsing: bool = True +) -> IndexContent: + encoding = _get_encoding_from_headers(response.headers) + return IndexContent( + response.content, + response.headers["Content-Type"], + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing, + ) + + +def _get_index_content(link: Link, *, session: PipSession) -> Optional["IndexContent"]: + url = link.url.split("#", 1)[0] + + # Check for VCS schemes that do not support lookup as web pages. + vcs_scheme = _match_vcs_scheme(url) + if vcs_scheme: + logger.warning( + "Cannot look at %s URL %s because it does not support lookup as web pages.", + vcs_scheme, + link, + ) + return None + + # Tack index.html onto file:// URLs that point to directories + scheme, _, path, _, _, _ = urllib.parse.urlparse(url) + if scheme == "file" and os.path.isdir(urllib.request.url2pathname(path)): + # add trailing slash if not present so urljoin doesn't trim + # final segment + if not url.endswith("/"): + url += "/" + # TODO: In the future, it would be nice if pip supported PEP 691 + # style responses in the file:// URLs, however there's no + # standard file extension for application/vnd.pypi.simple.v1+json + # so we'll need to come up with something on our own. + url = urllib.parse.urljoin(url, "index.html") + logger.debug(" file: URL is directory, getting %s", url) + + try: + resp = _get_simple_response(url, session=session) + except _NotHTTP: + logger.warning( + "Skipping page %s because it looks like an archive, and cannot " + "be checked by a HTTP HEAD request.", + link, + ) + except _NotAPIContent as exc: + logger.warning( + "Skipping page %s because the %s request got Content-Type: %s. " + "The only supported Content-Types are application/vnd.pypi.simple.v1+json, " + "application/vnd.pypi.simple.v1+html, and text/html", + link, + exc.request_desc, + exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_simple_fail(link, exc) + except RetryError as exc: + _handle_get_simple_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_simple_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_simple_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_simple_fail(link, "timed out") + else: + return _make_index_content(resp, cache_link_parsing=link.cache_link_parsing) + return None + + +class CollectedSources(NamedTuple): + find_links: Sequence[Optional[LinkSource]] + index_urls: Sequence[Optional[LinkSource]] + + +class LinkCollector: + """ + Responsible for collecting Link objects from all configured locations, + making network requests as needed. + + The class's main method is its collect_sources() method. + """ + + def __init__( + self, + session: PipSession, + search_scope: SearchScope, + ) -> None: + self.search_scope = search_scope + self.session = session + + @classmethod + def create( + cls, + session: PipSession, + options: Values, + suppress_no_index: bool = False, + ) -> "LinkCollector": + """ + :param session: The Session to use to make requests. + :param suppress_no_index: Whether to ignore the --no-index option + when constructing the SearchScope object. + """ + index_urls = [options.index_url] + options.extra_index_urls + if options.no_index and not suppress_no_index: + logger.debug( + "Ignoring indexes: %s", + ",".join(redact_auth_from_url(url) for url in index_urls), + ) + index_urls = [] + + # Make sure find_links is a list before passing to create(). + find_links = options.find_links or [] + + search_scope = SearchScope.create( + find_links=find_links, + index_urls=index_urls, + no_index=options.no_index, + ) + link_collector = LinkCollector( + session=session, + search_scope=search_scope, + ) + return link_collector + + @property + def find_links(self) -> List[str]: + return self.search_scope.find_links + + def fetch_response(self, location: Link) -> Optional[IndexContent]: + """ + Fetch an HTML page containing package links. + """ + return _get_index_content(location, session=self.session) + + def collect_sources( + self, + project_name: str, + candidates_from_page: CandidatesFromPage, + ) -> CollectedSources: + # The OrderedDict calls deduplicate sources by URL. + index_url_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=False, + cache_link_parsing=False, + project_name=project_name, + ) + for loc in self.search_scope.get_index_urls_locations(project_name) + ).values() + find_links_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=True, + cache_link_parsing=True, + project_name=project_name, + ) + for loc in self.find_links + ).values() + + if logger.isEnabledFor(logging.DEBUG): + lines = [ + f"* {s.link}" + for s in itertools.chain(find_links_sources, index_url_sources) + if s is not None and s.link is not None + ] + lines = [ + f"{len(lines)} location(s) to search " + f"for versions of {project_name}:" + ] + lines + logger.debug("\n".join(lines)) + + return CollectedSources( + find_links=list(find_links_sources), + index_urls=list(index_url_sources), + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/package_finder.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 00000000..0d65ce35 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1020 @@ +"""Routines related to PyPI, indexes""" + +import enum +import functools +import itertools +import logging +import re +from dataclasses import dataclass +from typing import TYPE_CHECKING, FrozenSet, Iterable, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import InvalidVersion, _BaseVersion +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + InvalidWheelFilename, + UnsupportedWheel, +) +from pip._internal.index.collector import LinkCollector, parse_links +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.models.wheel import Wheel +from pip._internal.req import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import build_netloc +from pip._internal.utils.packaging import check_requires_python +from pip._internal.utils.unpacking import SUPPORTED_EXTENSIONS + +if TYPE_CHECKING: + from pip._vendor.typing_extensions import TypeGuard + +__all__ = ["FormatControl", "BestCandidateResult", "PackageFinder"] + + +logger = getLogger(__name__) + +BuildTag = Union[Tuple[()], Tuple[int, str]] +CandidateSortingKey = Tuple[int, int, int, _BaseVersion, Optional[int], BuildTag] + + +def _check_link_requires_python( + link: Link, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> bool: + """ + Return whether the given Python version is compatible with a link's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + """ + try: + is_compatible = check_requires_python( + link.requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier: + logger.debug( + "Ignoring invalid Requires-Python (%r) for link: %s", + link.requires_python, + link, + ) + else: + if not is_compatible: + version = ".".join(map(str, version_info)) + if not ignore_requires_python: + logger.verbose( + "Link requires a different Python (%s not in: %r): %s", + version, + link.requires_python, + link, + ) + return False + + logger.debug( + "Ignoring failed Requires-Python check (%s not in: %r) for link: %s", + version, + link.requires_python, + link, + ) + + return True + + +class LinkType(enum.Enum): + candidate = enum.auto() + different_project = enum.auto() + yanked = enum.auto() + format_unsupported = enum.auto() + format_invalid = enum.auto() + platform_mismatch = enum.auto() + requires_python_mismatch = enum.auto() + + +class LinkEvaluator: + """ + Responsible for evaluating links for a particular project. + """ + + _py_version_re = re.compile(r"-py([123]\.?[0-9]?)$") + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + project_name: str, + canonical_name: str, + formats: FrozenSet[str], + target_python: TargetPython, + allow_yanked: bool, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + :param project_name: The user supplied package name. + :param canonical_name: The canonical package name. + :param formats: The formats allowed for this package. Should be a set + with 'binary' or 'source' or both in it. + :param target_python: The target Python interpreter to use when + evaluating link compatibility. This is used, for example, to + check wheel compatibility, as well as when checking the Python + version, e.g. the Python version embedded in a link filename + (or egg fragment) and against an HTML link's optional PEP 503 + "data-requires-python" attribute. + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param ignore_requires_python: Whether to ignore incompatible + PEP 503 "data-requires-python" values in HTML links. Defaults + to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self._allow_yanked = allow_yanked + self._canonical_name = canonical_name + self._ignore_requires_python = ignore_requires_python + self._formats = formats + self._target_python = target_python + + self.project_name = project_name + + def evaluate_link(self, link: Link) -> Tuple[LinkType, str]: + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (result, detail), where *result* is an enum + representing whether the evaluation found a candidate, or the reason + why one is not found. If a candidate is found, *detail* will be the + candidate's version string; if one is not found, it contains the + reason the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or "" + return (LinkType.yanked, f"yanked for reason: {reason}") + + if link.egg_fragment: + egg_info = link.egg_fragment + ext = link.ext + else: + egg_info, ext = link.splitext() + if not ext: + return (LinkType.format_unsupported, "not a file") + if ext not in SUPPORTED_EXTENSIONS: + return ( + LinkType.format_unsupported, + f"unsupported archive format: {ext}", + ) + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = f"No binaries permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + if "macosx10" in link.path and ext == ".zip": + return (LinkType.format_unsupported, "macosx10 one") + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return ( + LinkType.format_invalid, + "invalid wheel filename", + ) + if canonicalize_name(wheel.name) != self._canonical_name: + reason = f"wrong project name (not {self.project_name})" + return (LinkType.different_project, reason) + + supported_tags = self._target_python.get_unsorted_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = ", ".join(wheel.get_formatted_file_tags()) + reason = ( + f"none of the wheel's tags ({file_tags}) are compatible " + f"(run pip debug --verbose to show compatible tags)" + ) + return (LinkType.platform_mismatch, reason) + + version = wheel.version + + # This should be up by the self.ok_binary check, but see issue 2700. + if "source" not in self._formats and ext != WHEEL_EXTENSION: + reason = f"No sources permitted for {self.project_name}" + return (LinkType.format_unsupported, reason) + + if not version: + version = _extract_version_from_fragment( + egg_info, + self._canonical_name, + ) + if not version: + reason = f"Missing project version for {self.project_name}" + return (LinkType.format_invalid, reason) + + match = self._py_version_re.search(version) + if match: + version = version[: match.start()] + py_version = match.group(1) + if py_version != self._target_python.py_version: + return ( + LinkType.platform_mismatch, + "Python version is incorrect", + ) + + supports_python = _check_link_requires_python( + link, + version_info=self._target_python.py_version_info, + ignore_requires_python=self._ignore_requires_python, + ) + if not supports_python: + reason = f"{version} Requires-Python {link.requires_python}" + return (LinkType.requires_python_mismatch, reason) + + logger.debug("Found link %s, version: %s", link, version) + + return (LinkType.candidate, version) + + +def filter_unallowed_hashes( + candidates: List[InstallationCandidate], + hashes: Optional[Hashes], + project_name: str, +) -> List[InstallationCandidate]: + """ + Filter out candidates whose hashes aren't allowed, and return a new + list of candidates. + + If at least one candidate has an allowed hash, then all candidates with + either an allowed hash or no hash specified are returned. Otherwise, + the given candidates are returned. + + Including the candidates with no hash specified when there is a match + allows a warning to be logged if there is a more preferred candidate + with no hash specified. Returning all candidates in the case of no + matches lets pip report the hash of the candidate that would otherwise + have been installed (e.g. permitting the user to more easily update + their requirements file with the desired hash). + """ + if not hashes: + logger.debug( + "Given no hashes to check %s links for project %r: " + "discarding no candidates", + len(candidates), + project_name, + ) + # Make sure we're not returning back the given value. + return list(candidates) + + matches_or_no_digest = [] + # Collect the non-matches for logging purposes. + non_matches = [] + match_count = 0 + for candidate in candidates: + link = candidate.link + if not link.has_hash: + pass + elif link.is_hash_allowed(hashes=hashes): + match_count += 1 + else: + non_matches.append(candidate) + continue + + matches_or_no_digest.append(candidate) + + if match_count: + filtered = matches_or_no_digest + else: + # Make sure we're not returning back the given value. + filtered = list(candidates) + + if len(filtered) == len(candidates): + discard_message = "discarding no candidates" + else: + discard_message = "discarding {} non-matches:\n {}".format( + len(non_matches), + "\n ".join(str(candidate.link) for candidate in non_matches), + ) + + logger.debug( + "Checked %s links for project %r against %s hashes " + "(%s matches, %s no digest): %s", + len(candidates), + project_name, + hashes.digest_count, + match_count, + len(matches_or_no_digest) - match_count, + discard_message, + ) + + return filtered + + +@dataclass +class CandidatePreferences: + """ + Encapsulates some of the preferences for filtering and sorting + InstallationCandidate objects. + """ + + prefer_binary: bool = False + allow_all_prereleases: bool = False + + +class BestCandidateResult: + """A collection of candidates, returned by `PackageFinder.find_best_candidate`. + + This class is only intended to be instantiated by CandidateEvaluator's + `compute_best_candidate()` method. + """ + + def __init__( + self, + candidates: List[InstallationCandidate], + applicable_candidates: List[InstallationCandidate], + best_candidate: Optional[InstallationCandidate], + ) -> None: + """ + :param candidates: A sequence of all available candidates found. + :param applicable_candidates: The applicable candidates. + :param best_candidate: The most preferred candidate found, or None + if no applicable candidates were found. + """ + assert set(applicable_candidates) <= set(candidates) + + if best_candidate is None: + assert not applicable_candidates + else: + assert best_candidate in applicable_candidates + + self._applicable_candidates = applicable_candidates + self._candidates = candidates + + self.best_candidate = best_candidate + + def iter_all(self) -> Iterable[InstallationCandidate]: + """Iterate through all candidates.""" + return iter(self._candidates) + + def iter_applicable(self) -> Iterable[InstallationCandidate]: + """Iterate through the applicable candidates.""" + return iter(self._applicable_candidates) + + +class CandidateEvaluator: + """ + Responsible for filtering and sorting candidates for installation based + on what tags are valid. + """ + + @classmethod + def create( + cls, + project_name: str, + target_python: Optional[TargetPython] = None, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> "CandidateEvaluator": + """Create a CandidateEvaluator object. + + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + :param hashes: An optional collection of allowed hashes. + """ + if target_python is None: + target_python = TargetPython() + if specifier is None: + specifier = specifiers.SpecifierSet() + + supported_tags = target_python.get_sorted_tags() + + return cls( + project_name=project_name, + supported_tags=supported_tags, + specifier=specifier, + prefer_binary=prefer_binary, + allow_all_prereleases=allow_all_prereleases, + hashes=hashes, + ) + + def __init__( + self, + project_name: str, + supported_tags: List[Tag], + specifier: specifiers.BaseSpecifier, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + hashes: Optional[Hashes] = None, + ) -> None: + """ + :param supported_tags: The PEP 425 tags supported by the target + Python in order of preference (most preferred first). + """ + self._allow_all_prereleases = allow_all_prereleases + self._hashes = hashes + self._prefer_binary = prefer_binary + self._project_name = project_name + self._specifier = specifier + self._supported_tags = supported_tags + # Since the index of the tag in the _supported_tags list is used + # as a priority, precompute a map from tag to index/priority to be + # used in wheel.find_most_preferred_tag. + self._wheel_tag_preferences = { + tag: idx for idx, tag in enumerate(supported_tags) + } + + def get_applicable_candidates( + self, + candidates: List[InstallationCandidate], + ) -> List[InstallationCandidate]: + """ + Return the applicable candidates from a list of candidates. + """ + # Using None infers from the specifier instead. + allow_prereleases = self._allow_all_prereleases or None + specifier = self._specifier + + # We turn the version object into a str here because otherwise + # when we're debundled but setuptools isn't, Python will see + # packaging.version.Version and + # pkg_resources._vendor.packaging.version.Version as different + # types. This way we'll use a str as a common data interchange + # format. If we stop using the pkg_resources provided specifier + # and start using our own, we can drop the cast to str(). + candidates_and_versions = [(c, str(c.version)) for c in candidates] + versions = set( + specifier.filter( + (v for _, v in candidates_and_versions), + prereleases=allow_prereleases, + ) + ) + + applicable_candidates = [c for c, v in candidates_and_versions if v in versions] + filtered_applicable_candidates = filter_unallowed_hashes( + candidates=applicable_candidates, + hashes=self._hashes, + project_name=self._project_name, + ) + + return sorted(filtered_applicable_candidates, key=self._sort_key) + + def _sort_key(self, candidate: InstallationCandidate) -> CandidateSortingKey: + """ + Function to pass as the `key` argument to a call to sorted() to sort + InstallationCandidates by preference. + + Returns a tuple such that tuples sorting as greater using Python's + default comparison operator are more preferred. + + The preference is as follows: + + First and foremost, candidates with allowed (matching) hashes are + always preferred over candidates without matching hashes. This is + because e.g. if the only candidate with an allowed hash is yanked, + we still want to use that candidate. + + Second, excepting hash considerations, candidates that have been + yanked (in the sense of PEP 592) are always less preferred than + candidates that haven't been yanked. Then: + + If not finding wheels, they are sorted by version only. + If finding wheels, then the sort order is by version, then: + 1. existing installs + 2. wheels ordered via Wheel.support_index_min(self._supported_tags) + 3. source archives + If prefer_binary was set, then all wheels are sorted above sources. + + Note: it was considered to embed this logic into the Link + comparison operators, but then different sdist links + with the same version, would have to be considered equal + """ + valid_tags = self._supported_tags + support_num = len(valid_tags) + build_tag: BuildTag = () + binary_preference = 0 + link = candidate.link + if link.is_wheel: + # can raise InvalidWheelFilename + wheel = Wheel(link.filename) + try: + pri = -( + wheel.find_most_preferred_tag( + valid_tags, self._wheel_tag_preferences + ) + ) + except ValueError: + raise UnsupportedWheel( + f"{wheel.filename} is not a supported wheel for this platform. It " + "can't be sorted." + ) + if self._prefer_binary: + binary_preference = 1 + if wheel.build_tag is not None: + match = re.match(r"^(\d+)(.*)$", wheel.build_tag) + assert match is not None, "guaranteed by filename validation" + build_tag_groups = match.groups() + build_tag = (int(build_tag_groups[0]), build_tag_groups[1]) + else: # sdist + pri = -(support_num) + has_allowed_hash = int(link.is_hash_allowed(self._hashes)) + yank_value = -1 * int(link.is_yanked) # -1 for yanked. + return ( + has_allowed_hash, + yank_value, + binary_preference, + candidate.version, + pri, + build_tag, + ) + + def sort_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> Optional[InstallationCandidate]: + """ + Return the best candidate per the instance's sort order, or None if + no candidate is acceptable. + """ + if not candidates: + return None + best_candidate = max(candidates, key=self._sort_key) + return best_candidate + + def compute_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> BestCandidateResult: + """ + Compute and return a `BestCandidateResult` instance. + """ + applicable_candidates = self.get_applicable_candidates(candidates) + + best_candidate = self.sort_best_candidate(applicable_candidates) + + return BestCandidateResult( + candidates, + applicable_candidates=applicable_candidates, + best_candidate=best_candidate, + ) + + +class PackageFinder: + """This finds packages. + + This is meant to match easy_install's technique for looking for + packages, by reading pages and looking for appropriate links. + """ + + def __init__( + self, + link_collector: LinkCollector, + target_python: TargetPython, + allow_yanked: bool, + format_control: Optional[FormatControl] = None, + candidate_prefs: Optional[CandidatePreferences] = None, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + This constructor is primarily meant to be used by the create() class + method and from tests. + + :param format_control: A FormatControl object, used to control + the selection of source packages / binary packages when consulting + the index and links. + :param candidate_prefs: Options to use when creating a + CandidateEvaluator object. + """ + if candidate_prefs is None: + candidate_prefs = CandidatePreferences() + + format_control = format_control or FormatControl(set(), set()) + + self._allow_yanked = allow_yanked + self._candidate_prefs = candidate_prefs + self._ignore_requires_python = ignore_requires_python + self._link_collector = link_collector + self._target_python = target_python + + self.format_control = format_control + + # These are boring links that have already been logged somehow. + self._logged_links: Set[Tuple[Link, LinkType, str]] = set() + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + @classmethod + def create( + cls, + link_collector: LinkCollector, + selection_prefs: SelectionPreferences, + target_python: Optional[TargetPython] = None, + ) -> "PackageFinder": + """Create a PackageFinder. + + :param selection_prefs: The candidate selection preferences, as a + SelectionPreferences object. + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + """ + if target_python is None: + target_python = TargetPython() + + candidate_prefs = CandidatePreferences( + prefer_binary=selection_prefs.prefer_binary, + allow_all_prereleases=selection_prefs.allow_all_prereleases, + ) + + return cls( + candidate_prefs=candidate_prefs, + link_collector=link_collector, + target_python=target_python, + allow_yanked=selection_prefs.allow_yanked, + format_control=selection_prefs.format_control, + ignore_requires_python=selection_prefs.ignore_requires_python, + ) + + @property + def target_python(self) -> TargetPython: + return self._target_python + + @property + def search_scope(self) -> SearchScope: + return self._link_collector.search_scope + + @search_scope.setter + def search_scope(self, search_scope: SearchScope) -> None: + self._link_collector.search_scope = search_scope + + @property + def find_links(self) -> List[str]: + return self._link_collector.find_links + + @property + def index_urls(self) -> List[str]: + return self.search_scope.index_urls + + @property + def trusted_hosts(self) -> Iterable[str]: + for host_port in self._link_collector.session.pip_trusted_origins: + yield build_netloc(*host_port) + + @property + def allow_all_prereleases(self) -> bool: + return self._candidate_prefs.allow_all_prereleases + + def set_allow_all_prereleases(self) -> None: + self._candidate_prefs.allow_all_prereleases = True + + @property + def prefer_binary(self) -> bool: + return self._candidate_prefs.prefer_binary + + def set_prefer_binary(self) -> None: + self._candidate_prefs.prefer_binary = True + + def requires_python_skipped_reasons(self) -> List[str]: + reasons = { + detail + for _, result, detail in self._logged_links + if result == LinkType.requires_python_mismatch + } + return sorted(reasons) + + def make_link_evaluator(self, project_name: str) -> LinkEvaluator: + canonical_name = canonicalize_name(project_name) + formats = self.format_control.get_allowed_formats(canonical_name) + + return LinkEvaluator( + project_name=project_name, + canonical_name=canonical_name, + formats=formats, + target_python=self._target_python, + allow_yanked=self._allow_yanked, + ignore_requires_python=self._ignore_requires_python, + ) + + def _sort_links(self, links: Iterable[Link]) -> List[Link]: + """ + Returns elements of links in order, non-egg links first, egg links + second, while eliminating duplicates + """ + eggs, no_eggs = [], [] + seen: Set[Link] = set() + for link in links: + if link not in seen: + seen.add(link) + if link.egg_fragment: + eggs.append(link) + else: + no_eggs.append(link) + return no_eggs + eggs + + def _log_skipped_link(self, link: Link, result: LinkType, detail: str) -> None: + entry = (link, result, detail) + if entry not in self._logged_links: + # Put the link at the end so the reason is more visible and because + # the link string is usually very long. + logger.debug("Skipping link: %s: %s", detail, link) + self._logged_links.add(entry) + + def get_install_candidate( + self, link_evaluator: LinkEvaluator, link: Link + ) -> Optional[InstallationCandidate]: + """ + If the link is a candidate for install, convert it to an + InstallationCandidate and return it. Otherwise, return None. + """ + result, detail = link_evaluator.evaluate_link(link) + if result != LinkType.candidate: + self._log_skipped_link(link, result, detail) + return None + + try: + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=detail, + ) + except InvalidVersion: + return None + + def evaluate_links( + self, link_evaluator: LinkEvaluator, links: Iterable[Link] + ) -> List[InstallationCandidate]: + """ + Convert links that are candidates to InstallationCandidate objects. + """ + candidates = [] + for link in self._sort_links(links): + candidate = self.get_install_candidate(link_evaluator, link) + if candidate is not None: + candidates.append(candidate) + + return candidates + + def process_project_url( + self, project_url: Link, link_evaluator: LinkEvaluator + ) -> List[InstallationCandidate]: + logger.debug( + "Fetching project page and analyzing links: %s", + project_url, + ) + index_response = self._link_collector.fetch_response(project_url) + if index_response is None: + return [] + + page_links = list(parse_links(index_response)) + + with indent_log(): + package_links = self.evaluate_links( + link_evaluator, + links=page_links, + ) + + return package_links + + @functools.lru_cache(maxsize=None) + def find_all_candidates(self, project_name: str) -> List[InstallationCandidate]: + """Find all available InstallationCandidate for project_name + + This checks index_urls and find_links. + All versions found are returned as an InstallationCandidate list. + + See LinkEvaluator.evaluate_link() for details on which files + are accepted. + """ + link_evaluator = self.make_link_evaluator(project_name) + + collected_sources = self._link_collector.collect_sources( + project_name=project_name, + candidates_from_page=functools.partial( + self.process_project_url, + link_evaluator=link_evaluator, + ), + ) + + page_candidates_it = itertools.chain.from_iterable( + source.page_candidates() + for sources in collected_sources + for source in sources + if source is not None + ) + page_candidates = list(page_candidates_it) + + file_links_it = itertools.chain.from_iterable( + source.file_links() + for sources in collected_sources + for source in sources + if source is not None + ) + file_candidates = self.evaluate_links( + link_evaluator, + sorted(file_links_it, reverse=True), + ) + + if logger.isEnabledFor(logging.DEBUG) and file_candidates: + paths = [] + for candidate in file_candidates: + assert candidate.link.url # we need to have a URL + try: + paths.append(candidate.link.file_path) + except Exception: + paths.append(candidate.link.url) # it's not a local file + + logger.debug("Local files found: %s", ", ".join(paths)) + + # This is an intentional priority ordering + return file_candidates + page_candidates + + def make_candidate_evaluator( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> CandidateEvaluator: + """Create a CandidateEvaluator object to use.""" + candidate_prefs = self._candidate_prefs + return CandidateEvaluator.create( + project_name=project_name, + target_python=self._target_python, + prefer_binary=candidate_prefs.prefer_binary, + allow_all_prereleases=candidate_prefs.allow_all_prereleases, + specifier=specifier, + hashes=hashes, + ) + + @functools.lru_cache(maxsize=None) + def find_best_candidate( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> BestCandidateResult: + """Find matches for the given project and specifier. + + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + + :return: A `BestCandidateResult` instance. + """ + candidates = self.find_all_candidates(project_name) + candidate_evaluator = self.make_candidate_evaluator( + project_name=project_name, + specifier=specifier, + hashes=hashes, + ) + return candidate_evaluator.compute_best_candidate(candidates) + + def find_requirement( + self, req: InstallRequirement, upgrade: bool + ) -> Optional[InstallationCandidate]: + """Try to find a Link matching req + + Expects req, an InstallRequirement and upgrade, a boolean + Returns a InstallationCandidate if found, + Raises DistributionNotFound or BestVersionAlreadyInstalled otherwise + """ + hashes = req.hashes(trust_internet=False) + best_candidate_result = self.find_best_candidate( + req.name, + specifier=req.specifier, + hashes=hashes, + ) + best_candidate = best_candidate_result.best_candidate + + installed_version: Optional[_BaseVersion] = None + if req.satisfied_by is not None: + installed_version = req.satisfied_by.version + + def _format_versions(cand_iter: Iterable[InstallationCandidate]) -> str: + # This repeated parse_version and str() conversion is needed to + # handle different vendoring sources from pip and pkg_resources. + # If we stop using the pkg_resources provided specifier and start + # using our own, we can drop the cast to str(). + return ( + ", ".join( + sorted( + {str(c.version) for c in cand_iter}, + key=parse_version, + ) + ) + or "none" + ) + + if installed_version is None and best_candidate is None: + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req, + _format_versions(best_candidate_result.iter_all()), + ) + + raise DistributionNotFound(f"No matching distribution found for {req}") + + def _should_install_candidate( + candidate: Optional[InstallationCandidate], + ) -> "TypeGuard[InstallationCandidate]": + if installed_version is None: + return True + if best_candidate is None: + return False + return best_candidate.version > installed_version + + if not upgrade and installed_version is not None: + if _should_install_candidate(best_candidate): + logger.debug( + "Existing installed version (%s) satisfies requirement " + "(most up-to-date version is %s)", + installed_version, + best_candidate.version, + ) + else: + logger.debug( + "Existing installed version (%s) is most up-to-date and " + "satisfies requirement", + installed_version, + ) + return None + + if _should_install_candidate(best_candidate): + logger.debug( + "Using version %s (newest of versions: %s)", + best_candidate.version, + _format_versions(best_candidate_result.iter_applicable()), + ) + return best_candidate + + # We have an existing version, and its the best version + logger.debug( + "Installed version (%s) is most up-to-date (past versions: %s)", + installed_version, + _format_versions(best_candidate_result.iter_applicable()), + ) + raise BestVersionAlreadyInstalled + + +def _find_name_version_sep(fragment: str, canonical_name: str) -> int: + """Find the separator's index based on the package's canonical name. + + :param fragment: A + filename "fragment" (stem) or + egg fragment. + :param canonical_name: The package's canonical name. + + This function is needed since the canonicalized name does not necessarily + have the same length as the egg info's name part. An example:: + + >>> fragment = 'foo__bar-1.0' + >>> canonical_name = 'foo-bar' + >>> _find_name_version_sep(fragment, canonical_name) + 8 + """ + # Project name and version must be separated by one single dash. Find all + # occurrences of dashes; if the string in front of it matches the canonical + # name, this is the one separating the name and version parts. + for i, c in enumerate(fragment): + if c != "-": + continue + if canonicalize_name(fragment[:i]) == canonical_name: + return i + raise ValueError(f"{fragment} does not match {canonical_name}") + + +def _extract_version_from_fragment(fragment: str, canonical_name: str) -> Optional[str]: + """Parse the version string from a + filename + "fragment" (stem) or egg fragment. + + :param fragment: The string to parse. E.g. foo-2.1 + :param canonical_name: The canonicalized name of the package this + belongs to. + """ + try: + version_start = _find_name_version_sep(fragment, canonical_name) + 1 + except ValueError: + return None + version = fragment[version_start:] + if not version: + return None + return version diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/sources.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/sources.py new file mode 100644 index 00000000..f4626d71 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,285 @@ +import logging +import mimetypes +import os +from collections import defaultdict +from typing import Callable, Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import ( + InvalidSdistFilename, + InvalidVersion, + InvalidWheelFilename, + canonicalize_name, + parse_sdist_filename, + parse_wheel_filename, +) + +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url, url_to_path +from pip._internal.vcs import is_url + +logger = logging.getLogger(__name__) + +FoundCandidates = Iterable[InstallationCandidate] +FoundLinks = Iterable[Link] +CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] +PageValidator = Callable[[Link], bool] + + +class LinkSource: + @property + def link(self) -> Optional[Link]: + """Returns the underlying link, if there's one.""" + raise NotImplementedError() + + def page_candidates(self) -> FoundCandidates: + """Candidates found by parsing an archive listing HTML file.""" + raise NotImplementedError() + + def file_links(self) -> FoundLinks: + """Links found by specifying archives directly.""" + raise NotImplementedError() + + +def _is_html_file(file_url: str) -> bool: + return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" + + +class _FlatDirectoryToUrls: + """Scans directory and caches results""" + + def __init__(self, path: str) -> None: + self._path = path + self._page_candidates: List[str] = [] + self._project_name_to_urls: Dict[str, List[str]] = defaultdict(list) + self._scanned_directory = False + + def _scan_directory(self) -> None: + """Scans directory once and populates both page_candidates + and project_name_to_urls at the same time + """ + for entry in os.scandir(self._path): + url = path_to_url(entry.path) + if _is_html_file(url): + self._page_candidates.append(url) + continue + + # File must have a valid wheel or sdist name, + # otherwise not worth considering as a package + try: + project_filename = parse_wheel_filename(entry.name)[0] + except (InvalidWheelFilename, InvalidVersion): + try: + project_filename = parse_sdist_filename(entry.name)[0] + except (InvalidSdistFilename, InvalidVersion): + continue + + self._project_name_to_urls[project_filename].append(url) + self._scanned_directory = True + + @property + def page_candidates(self) -> List[str]: + if not self._scanned_directory: + self._scan_directory() + + return self._page_candidates + + @property + def project_name_to_urls(self) -> Dict[str, List[str]]: + if not self._scanned_directory: + self._scan_directory() + + return self._project_name_to_urls + + +class _FlatDirectorySource(LinkSource): + """Link source specified by ``--find-links=``. + + This looks the content of the directory, and returns: + + * ``page_candidates``: Links listed on each HTML file in the directory. + * ``file_candidates``: Archives in the directory. + """ + + _paths_to_urls: Dict[str, _FlatDirectoryToUrls] = {} + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + project_name: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._project_name = canonicalize_name(project_name) + + # Get existing instance of _FlatDirectoryToUrls if it exists + if path in self._paths_to_urls: + self._path_to_urls = self._paths_to_urls[path] + else: + self._path_to_urls = _FlatDirectoryToUrls(path=path) + self._paths_to_urls[path] = self._path_to_urls + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for url in self._path_to_urls.page_candidates: + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for url in self._path_to_urls.project_name_to_urls[self._project_name]: + yield Link(url) + + +class _LocalFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to + the option, it is converted to a URL first. This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not _is_html_file(self._link.url): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + if _is_html_file(self._link.url): + return + yield self._link + + +class _RemoteFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._page_validator = page_validator + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not self._page_validator(self._link): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + yield self._link + + +class _IndexDirectorySource(LinkSource): + """``--[extra-]index-url=``. + + This is treated like a remote URL; ``candidates_from_page`` contains logic + for this by appending ``index.html`` to the link. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + return () + + +def build_source( + location: str, + *, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + expand_dir: bool, + cache_link_parsing: bool, + project_name: str, +) -> Tuple[Optional[str], Optional[LinkSource]]: + path: Optional[str] = None + url: Optional[str] = None + if os.path.exists(location): # Is a local path. + url = path_to_url(location) + path = location + elif location.startswith("file:"): # A file: URL. + url = location + path = url_to_path(location) + elif is_url(location): + url = location + + if url is None: + msg = ( + "Location '%s' is ignored: " + "it is either a non-existing path or lacks a specific scheme." + ) + logger.warning(msg, location) + return (None, None) + + if path is None: + source: LinkSource = _RemoteFileSource( + candidates_from_page=candidates_from_page, + page_validator=page_validator, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + + if os.path.isdir(path): + if expand_dir: + source = _FlatDirectorySource( + candidates_from_page=candidates_from_page, + path=path, + project_name=project_name, + ) + else: + source = _IndexDirectorySource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + elif os.path.isfile(path): + source = _LocalFileSource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + logger.warning( + "Location '%s' is ignored: it is neither a file nor a directory.", + location, + ) + return (url, None) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 00000000..32382be7 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,456 @@ +import functools +import logging +import os +import pathlib +import sys +import sysconfig +from typing import Any, Dict, Generator, Optional, Tuple + +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.virtualenv import running_under_virtualenv + +from . import _sysconfig +from .base import ( + USER_CACHE_DIR, + get_major_minor_version, + get_src_prefix, + is_osx_framework, + site_packages, + user_site, +) + +__all__ = [ + "USER_CACHE_DIR", + "get_bin_prefix", + "get_bin_user", + "get_major_minor_version", + "get_platlib", + "get_purelib", + "get_scheme", + "get_src_prefix", + "site_packages", + "user_site", +] + + +logger = logging.getLogger(__name__) + + +_PLATLIBDIR: str = getattr(sys, "platlibdir", "lib") + +_USE_SYSCONFIG_DEFAULT = sys.version_info >= (3, 10) + + +def _should_use_sysconfig() -> bool: + """This function determines the value of _USE_SYSCONFIG. + + By default, pip uses sysconfig on Python 3.10+. + But Python distributors can override this decision by setting: + sysconfig._PIP_USE_SYSCONFIG = True / False + Rationale in https://github.com/pypa/pip/issues/10647 + + This is a function for testability, but should be constant during any one + run. + """ + return bool(getattr(sysconfig, "_PIP_USE_SYSCONFIG", _USE_SYSCONFIG_DEFAULT)) + + +_USE_SYSCONFIG = _should_use_sysconfig() + +if not _USE_SYSCONFIG: + # Import distutils lazily to avoid deprecation warnings, + # but import it soon enough that it is in memory and available during + # a pip reinstall. + from . import _distutils + +# Be noisy about incompatibilities if this platforms "should" be using +# sysconfig, but is explicitly opting out and using distutils instead. +if _USE_SYSCONFIG_DEFAULT and not _USE_SYSCONFIG: + _MISMATCH_LEVEL = logging.WARNING +else: + _MISMATCH_LEVEL = logging.DEBUG + + +def _looks_like_bpo_44860() -> bool: + """The resolution to bpo-44860 will change this incorrect platlib. + + See . + """ + from distutils.command.install import INSTALL_SCHEMES + + try: + unix_user_platlib = INSTALL_SCHEMES["unix_user"]["platlib"] + except KeyError: + return False + return unix_user_platlib == "$usersite" + + +def _looks_like_red_hat_patched_platlib_purelib(scheme: Dict[str, str]) -> bool: + platlib = scheme["platlib"] + if "/$platlibdir/" in platlib: + platlib = platlib.replace("/$platlibdir/", f"/{_PLATLIBDIR}/") + if "/lib64/" not in platlib: + return False + unpatched = platlib.replace("/lib64/", "/lib/") + return unpatched.replace("$platbase/", "$base/") == scheme["purelib"] + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_lib() -> bool: + """Red Hat patches platlib in unix_prefix and unix_home, but not purelib. + + This is the only way I can see to tell a Red Hat-patched Python. + """ + from distutils.command.install import INSTALL_SCHEMES + + return all( + k in INSTALL_SCHEMES + and _looks_like_red_hat_patched_platlib_purelib(INSTALL_SCHEMES[k]) + for k in ("unix_prefix", "unix_home") + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_debian_scheme() -> bool: + """Debian adds two additional schemes.""" + from distutils.command.install import INSTALL_SCHEMES + + return "deb_system" in INSTALL_SCHEMES and "unix_local" in INSTALL_SCHEMES + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_scheme() -> bool: + """Red Hat patches ``sys.prefix`` and ``sys.exec_prefix``. + + Red Hat's ``00251-change-user-install-location.patch`` changes the install + command's ``prefix`` and ``exec_prefix`` to append ``"/local"``. This is + (fortunately?) done quite unconditionally, so we create a default command + object without any configuration to detect this. + """ + from distutils.command.install import install + from distutils.dist import Distribution + + cmd: Any = install(Distribution()) + cmd.finalize_options() + return ( + cmd.exec_prefix == f"{os.path.normpath(sys.exec_prefix)}/local" + and cmd.prefix == f"{os.path.normpath(sys.prefix)}/local" + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_slackware_scheme() -> bool: + """Slackware patches sysconfig but fails to patch distutils and site. + + Slackware changes sysconfig's user scheme to use ``"lib64"`` for the lib + path, but does not do the same to the site module. + """ + if user_site is None: # User-site not available. + return False + try: + paths = sysconfig.get_paths(scheme="posix_user", expand=False) + except KeyError: # User-site not available. + return False + return "/lib64/" in paths["purelib"] and "/lib64/" not in user_site + + +@functools.lru_cache(maxsize=None) +def _looks_like_msys2_mingw_scheme() -> bool: + """MSYS2 patches distutils and sysconfig to use a UNIX-like scheme. + + However, MSYS2 incorrectly patches sysconfig ``nt`` scheme. The fix is + likely going to be included in their 3.10 release, so we ignore the warning. + See msys2/MINGW-packages#9319. + + MSYS2 MINGW's patch uses lowercase ``"lib"`` instead of the usual uppercase, + and is missing the final ``"site-packages"``. + """ + paths = sysconfig.get_paths("nt", expand=False) + return all( + "Lib" not in p and "lib" in p and not p.endswith("site-packages") + for p in (paths[key] for key in ("platlib", "purelib")) + ) + + +def _fix_abiflags(parts: Tuple[str]) -> Generator[str, None, None]: + ldversion = sysconfig.get_config_var("LDVERSION") + abiflags = getattr(sys, "abiflags", None) + + # LDVERSION does not end with sys.abiflags. Just return the path unchanged. + if not ldversion or not abiflags or not ldversion.endswith(abiflags): + yield from parts + return + + # Strip sys.abiflags from LDVERSION-based path components. + for part in parts: + if part.endswith(ldversion): + part = part[: (0 - len(abiflags))] + yield part + + +@functools.lru_cache(maxsize=None) +def _warn_mismatched(old: pathlib.Path, new: pathlib.Path, *, key: str) -> None: + issue_url = "https://github.com/pypa/pip/issues/10151" + message = ( + "Value for %s does not match. Please report this to <%s>" + "\ndistutils: %s" + "\nsysconfig: %s" + ) + logger.log(_MISMATCH_LEVEL, message, key, issue_url, old, new) + + +def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool: + if old == new: + return False + _warn_mismatched(old, new, key=key) + return True + + +@functools.lru_cache(maxsize=None) +def _log_context( + *, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + prefix: Optional[str] = None, +) -> None: + parts = [ + "Additional context:", + "user = %r", + "home = %r", + "root = %r", + "prefix = %r", + ] + + logger.log(_MISMATCH_LEVEL, "\n".join(parts), user, home, root, prefix) + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + new = _sysconfig.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + if _USE_SYSCONFIG: + return new + + old = _distutils.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + + warning_contexts = [] + for k in SCHEME_KEYS: + old_v = pathlib.Path(getattr(old, k)) + new_v = pathlib.Path(getattr(new, k)) + + if old_v == new_v: + continue + + # distutils incorrectly put PyPy packages under ``site-packages/python`` + # in the ``posix_home`` scheme, but PyPy devs said they expect the + # directory name to be ``pypy`` instead. So we treat this as a bug fix + # and not warn about it. See bpo-43307 and python/cpython#24628. + skip_pypy_special_case = ( + sys.implementation.name == "pypy" + and home is not None + and k in ("platlib", "purelib") + and old_v.parent == new_v.parent + and old_v.name.startswith("python") + and new_v.name.startswith("pypy") + ) + if skip_pypy_special_case: + continue + + # sysconfig's ``osx_framework_user`` does not include ``pythonX.Y`` in + # the ``include`` value, but distutils's ``headers`` does. We'll let + # CPython decide whether this is a bug or feature. See bpo-43948. + skip_osx_framework_user_special_case = ( + user + and is_osx_framework() + and k == "headers" + and old_v.parent.parent == new_v.parent + and old_v.parent.name.startswith("python") + ) + if skip_osx_framework_user_special_case: + continue + + # On Red Hat and derived Linux distributions, distutils is patched to + # use "lib64" instead of "lib" for platlib. + if k == "platlib" and _looks_like_red_hat_lib(): + continue + + # On Python 3.9+, sysconfig's posix_user scheme sets platlib against + # sys.platlibdir, but distutils's unix_user incorrectly coninutes + # using the same $usersite for both platlib and purelib. This creates a + # mismatch when sys.platlibdir is not "lib". + skip_bpo_44860 = ( + user + and k == "platlib" + and not WINDOWS + and sys.version_info >= (3, 9) + and _PLATLIBDIR != "lib" + and _looks_like_bpo_44860() + ) + if skip_bpo_44860: + continue + + # Slackware incorrectly patches posix_user to use lib64 instead of lib, + # but not usersite to match the location. + skip_slackware_user_scheme = ( + user + and k in ("platlib", "purelib") + and not WINDOWS + and _looks_like_slackware_scheme() + ) + if skip_slackware_user_scheme: + continue + + # Both Debian and Red Hat patch Python to place the system site under + # /usr/local instead of /usr. Debian also places lib in dist-packages + # instead of site-packages, but the /usr/local check should cover it. + skip_linux_system_special_case = ( + not (user or home or prefix or running_under_virtualenv()) + and old_v.parts[1:3] == ("usr", "local") + and len(new_v.parts) > 1 + and new_v.parts[1] == "usr" + and (len(new_v.parts) < 3 or new_v.parts[2] != "local") + and (_looks_like_red_hat_scheme() or _looks_like_debian_scheme()) + ) + if skip_linux_system_special_case: + continue + + # MSYS2 MINGW's sysconfig patch does not include the "site-packages" + # part of the path. This is incorrect and will be fixed in MSYS. + skip_msys2_mingw_bug = ( + WINDOWS and k in ("platlib", "purelib") and _looks_like_msys2_mingw_scheme() + ) + if skip_msys2_mingw_bug: + continue + + # CPython's POSIX install script invokes pip (via ensurepip) against the + # interpreter located in the source tree, not the install site. This + # triggers special logic in sysconfig that's not present in distutils. + # https://github.com/python/cpython/blob/8c21941ddaf/Lib/sysconfig.py#L178-L194 + skip_cpython_build = ( + sysconfig.is_python_build(check_home=True) + and not WINDOWS + and k in ("headers", "include", "platinclude") + ) + if skip_cpython_build: + continue + + warning_contexts.append((old_v, new_v, f"scheme.{k}")) + + if not warning_contexts: + return old + + # Check if this path mismatch is caused by distutils config files. Those + # files will no longer work once we switch to sysconfig, so this raises a + # deprecation message for them. + default_old = _distutils.distutils_scheme( + dist_name, + user, + home, + root, + isolated, + prefix, + ignore_config_files=True, + ) + if any(default_old[k] != getattr(old, k) for k in SCHEME_KEYS): + deprecated( + reason=( + "Configuring installation scheme with distutils config files " + "is deprecated and will no longer work in the near future. If you " + "are using a Homebrew or Linuxbrew Python, please see discussion " + "at https://github.com/Homebrew/homebrew-core/issues/76621" + ), + replacement=None, + gone_in=None, + ) + return old + + # Post warnings about this mismatch so user can report them back. + for old_v, new_v, key in warning_contexts: + _warn_mismatched(old_v, new_v, key=key) + _log_context(user=user, home=home, root=root, prefix=prefix) + + return old + + +def get_bin_prefix() -> str: + new = _sysconfig.get_bin_prefix() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_bin_prefix() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="bin_prefix"): + _log_context() + return old + + +def get_bin_user() -> str: + return _sysconfig.get_scheme("", user=True).scripts + + +def _looks_like_deb_system_dist_packages(value: str) -> bool: + """Check if the value is Debian's APT-controlled dist-packages. + + Debian's ``distutils.sysconfig.get_python_lib()`` implementation returns the + default package path controlled by APT, but does not patch ``sysconfig`` to + do the same. This is similar to the bug worked around in ``get_scheme()``, + but here the default is ``deb_system`` instead of ``unix_local``. Ultimately + we can't do anything about this Debian bug, and this detection allows us to + skip the warning when needed. + """ + if not _looks_like_debian_scheme(): + return False + if value == "/usr/lib/python3/dist-packages": + return True + return False + + +def get_purelib() -> str: + """Return the default pure-Python lib location.""" + new = _sysconfig.get_purelib() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_purelib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="purelib"): + _log_context() + return old + + +def get_platlib() -> str: + """Return the default platform-shared lib location.""" + new = _sysconfig.get_platlib() + if _USE_SYSCONFIG: + return new + + from . import _distutils + + old = _distutils.get_platlib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="platlib"): + _log_context() + return old diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a3fddf5e054e3465fa99e4270a7843f3a2dc105 GIT binary patch literal 16488 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 Cu|SFd literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ab210d1357734a4fc6b31a71d6f8c1e57178e66 GIT binary patch literal 6900 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 Tx19@fQCC$eUtiAG%L_ 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6703312d4846e8ab0f56e375ae7b1c6b829d36b9 GIT binary patch literal 3829 zcmbVPT})fa6`t$s|9>FFkYtzJu)>%)_J(9jnzFD7NgG;iNCRmaE0TNdJHR#OUU%ji z0~-{&T6OWNDnzOTQClTZBZX@FkoP_{>RVr+j!JaHJ~geheR7vPtfD^j%-9zQL5;K{ ze9z38nRCvZIp>?hUjqRzg4Wq7kNww!&_CF~YR-CR>lXq-%jhankRs$!sz!yBz{j?f zjZ-lta%xZ6Id!BQKy7*Fq$}kT*d8(Op7f+Vyl>BYCw(cOfNThRaxIq19jZ7!2d%87 z0BUb2S3JhDt_QK)#n4yKj2~d zZMm-9QfvLs>#Wp4?8qfvpU2@=V1mvd(+N^g?$qn66yc8{%SO<980-pvV&9g1WJYL5 zxaA#0LISg+`*jJagV)h7-z}kO@j5CAv4$_%l1nkcY#7w2A?Ne5q3YTNLUaO5ms}_) zDxuJAAw^A7wXt+jQ!q(Ssl+JCd8|#DVnHpKu0oOEyqYlsR5ftAAZI7!F-%P-!A6m2 z+1-|iFkrtecGP7!tRm!g&)55g&0^;4R&R&?3Js%}Z5DeaXjixr$r#7dq@2^q@kv$F zi8O@?h0{p-D4)s}3Bj5nU7j(#Nu$;(8~ z;RypLY01dQy+N06uce4tT8FF~Aa~9-C*Bkl2ZIU4$z?iV%x#$y-ynT|Pl&tD z5U}(su3fVBInQqZ5Pv6HmVGS5Jo1mg%z6e!tRVo2~K;%y0I3z0!;Sc|;s7^7EF(gBmbedq&6FFVgIxV?z$y z#Ha?y1Q7&NfQ1Rj^W7RPb&{+p3?4Lz31*96z%4XNdR!`vL;f;j04TB(GZFyD`Jv(D zHC0pe5+Dd{{!q?JL&NoBjnr+==zyUmtVp9opR7Yplmgzs4w)ztq%@Jq46qcH8bw3R zgOR#Y%;VZQOh-Yd>hzZ^1TL92%^>VDOyS0C<5g`!(@UCE0Dmz!IwQ@#=N*tWNz)A} zJ1%QuSYnCFUBmo7s!lVzi+lDZVlLCBQ`63J*|al9nhur98DKGAm|j}QtA;}0QV2`! zn4L5NAq+H3M~%<0gRk(sXjofAaaO%tt34b+5)NO+9P=p64Fl zVx$~dI{#VQX3L?wt~;)cmag@duGQ0(mQ&@xLi3XSsV}r7lzWzx&-$M>MOK6r+tTTU z^OoY9<(n%P?+CoSWxU~w~&Ps!>An@L2DWclokOQ+o+UdVY8F@ z;*-3^KFk%Svz9WZ6CTcNNikhR!@M9e?RZ)>peV{vmMc&cdBKo$Z8c@LUQd7^dvSNB zNDQWW;75z_nMa$hwkNJ{Z8k@iuid`3eB<_w2kj5L?su)?O7p3*x9YTeek^RZ9=;p7 z6S;fj&XEV1hw6Rx_Y;ratF(S+;Ri2*$RAwnDfcY)m-|=FRD2z4_KvS#1W-8g6|%wB z=l;;*#q!0q=8?bquT~w5^^&r;{!iWK{OGa&?Q_S)$8iC^rl$xsNSc)stk|2Br>Q!N zUx{tzBp%y+&{;;tc5E9v@x$VOPlLFrue2zu)-IW$%hyLP4qf`*m9rmSxHfdGUW8)GFy@f}DT_L-3>QGUw5A zU+CAKjd16BxN|LbrV{>c#n-!L@8u$5Z<(IaqLwv4C*_xK+S&2>#gioLH=V{z0V2q3 zfe=b;*HsBToy7%K8&eL2X49+F9KZ?lg!%S9Gl`vgna7eug~Hknb7tK4bmBKhd|pK+!MIK-GyFJC`CG4bk<6=&GaAkeCkw?_lTB z^^NA}dUJHuQ)%v=4=m6M>aIE+!tr}eTL?%s+$wli+N%i2Y7-}qU Dict[str, str]: + """ + Return a distutils install scheme + """ + from distutils.dist import Distribution + + dist_args: Dict[str, Union[str, List[str]]] = {"name": dist_name} + if isolated: + dist_args["script_args"] = ["--no-user-cfg"] + + d = Distribution(dist_args) + if not ignore_config_files: + try: + d.parse_config_files() + except UnicodeDecodeError: + paths = d.find_config_files() + logger.warning( + "Ignore distutils configs in %s due to encoding errors.", + ", ".join(os.path.basename(p) for p in paths), + ) + obj: Optional[DistutilsCommand] = None + obj = d.get_command_obj("install", create=True) + assert obj is not None + i = cast(distutils_install_command, obj) + # NOTE: setting user or home has the side-effect of creating the home dir + # or user base for installations during finalize_options() + # ideally, we'd prefer a scheme class that has no side-effects. + assert not (user and prefix), f"user={user} prefix={prefix}" + assert not (home and prefix), f"home={home} prefix={prefix}" + i.user = user or i.user + if user or home: + i.prefix = "" + i.prefix = prefix or i.prefix + i.home = home or i.home + i.root = root or i.root + i.finalize_options() + + scheme = {} + for key in SCHEME_KEYS: + scheme[key] = getattr(i, "install_" + key) + + # install_lib specified in setup.cfg should install *everything* + # into there (i.e. it takes precedence over both purelib and + # platlib). Note, i.install_lib is *always* set after + # finalize_options(); we only want to override here if the user + # has explicitly requested it hence going back to the config + if "install_lib" in d.get_option_dict("install"): + scheme.update({"purelib": i.install_lib, "platlib": i.install_lib}) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase + else: + prefix = i.prefix + scheme["headers"] = os.path.join( + prefix, + "include", + "site", + f"python{get_major_minor_version()}", + dist_name, + ) + + if root is not None: + path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] + scheme["headers"] = os.path.join(root, path_no_drive[1:]) + + return scheme + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. The distutils + documentation provides the context for the available schemes: + https://docs.python.org/3/install/index.html#alternate-installation + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme and provides the base + directory for the same + :param root: root under which other directories are re-based + :param isolated: equivalent to --no-user-cfg, i.e. do not consider + ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for + scheme paths + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix) + return Scheme( + platlib=scheme["platlib"], + purelib=scheme["purelib"], + headers=scheme["headers"], + scripts=scheme["scripts"], + data=scheme["data"], + ) + + +def get_bin_prefix() -> str: + # XXX: In old virtualenv versions, sys.prefix can contain '..' components, + # so we need to call normpath to eliminate them. + prefix = os.path.normpath(sys.prefix) + if WINDOWS: + bin_py = os.path.join(prefix, "Scripts") + # buildout uses 'bin' on Windows too? + if not os.path.exists(bin_py): + bin_py = os.path.join(prefix, "bin") + return bin_py + # Forcing to use /usr/local/bin for standard macOS framework installs + # Also log to ~/Library/Logs/ for use with the Console.app log viewer + if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return os.path.join(prefix, "bin") + + +def get_purelib() -> str: + return get_python_lib(plat_specific=False) + + +def get_platlib() -> str: + return get_python_lib(plat_specific=True) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 00000000..ca860ea5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,214 @@ +import logging +import os +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import change_root, get_major_minor_version, is_osx_framework + +logger = logging.getLogger(__name__) + + +# Notes on _infer_* functions. +# Unfortunately ``get_default_scheme()`` didn't exist before 3.10, so there's no +# way to ask things like "what is the '_prefix' scheme on this platform". These +# functions try to answer that with some heuristics while accounting for ad-hoc +# platforms not covered by CPython's default sysconfig implementation. If the +# ad-hoc implementation does not fully implement sysconfig, we'll fall back to +# a POSIX scheme. + +_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names()) + +_PREFERRED_SCHEME_API = getattr(sysconfig, "get_preferred_scheme", None) + + +def _should_use_osx_framework_prefix() -> bool: + """Check for Apple's ``osx_framework_library`` scheme. + + Python distributed by Apple's Command Line Tools has this special scheme + that's used when: + + * This is a framework build. + * We are installing into the system prefix. + + This does not account for ``pip install --prefix`` (also means we're not + installing to the system prefix), which should use ``posix_prefix``, but + logic here means ``_infer_prefix()`` outputs ``osx_framework_library``. But + since ``prefix`` is not available for ``sysconfig.get_default_scheme()``, + which is the stdlib replacement for ``_infer_prefix()``, presumably Apple + wouldn't be able to magically switch between ``osx_framework_library`` and + ``posix_prefix``. ``_infer_prefix()`` returning ``osx_framework_library`` + means its behavior is consistent whether we use the stdlib implementation + or our own, and we deal with this special case in ``get_scheme()`` instead. + """ + return ( + "osx_framework_library" in _AVAILABLE_SCHEMES + and not running_under_virtualenv() + and is_osx_framework() + ) + + +def _infer_prefix() -> str: + """Try to find a prefix scheme for the current platform. + + This tries: + + * A special ``osx_framework_library`` for Python distributed by Apple's + Command Line Tools, when not running in a virtual environment. + * Implementation + OS, used by PyPy on Windows (``pypy_nt``). + * Implementation without OS, used by PyPy on POSIX (``pypy``). + * OS + "prefix", used by CPython on POSIX (``posix_prefix``). + * Just the OS name, used by CPython on Windows (``nt``). + + If none of the above works, fall back to ``posix_prefix``. + """ + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("prefix") + if _should_use_osx_framework_prefix(): + return "osx_framework_library" + implementation_suffixed = f"{sys.implementation.name}_{os.name}" + if implementation_suffixed in _AVAILABLE_SCHEMES: + return implementation_suffixed + if sys.implementation.name in _AVAILABLE_SCHEMES: + return sys.implementation.name + suffixed = f"{os.name}_prefix" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt". + return os.name + return "posix_prefix" + + +def _infer_user() -> str: + """Try to find a user scheme for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("user") + if is_osx_framework() and not running_under_virtualenv(): + suffixed = "osx_framework_user" + else: + suffixed = f"{os.name}_user" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable. + raise UserInstallationInvalid() + return "posix_user" + + +def _infer_home() -> str: + """Try to find a home for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("home") + suffixed = f"{os.name}_home" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + return "posix_home" + + +# Update these keys if the user sets a custom home. +_HOME_KEYS = [ + "installed_base", + "base", + "installed_platbase", + "platbase", + "prefix", + "exec_prefix", +] +if sysconfig.get_config_var("userbase") is not None: + _HOME_KEYS.append("userbase") + + +def get_scheme( + dist_name: str, + user: bool = False, + home: typing.Optional[str] = None, + root: typing.Optional[str] = None, + isolated: bool = False, + prefix: typing.Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme + :param root: root under which other directories are re-based + :param isolated: ignored, but kept for distutils compatibility (where + this controls whether the user-site pydistutils.cfg is honored) + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + if user and prefix: + raise InvalidSchemeCombination("--user", "--prefix") + if home and prefix: + raise InvalidSchemeCombination("--home", "--prefix") + + if home is not None: + scheme_name = _infer_home() + elif user: + scheme_name = _infer_user() + else: + scheme_name = _infer_prefix() + + # Special case: When installing into a custom prefix, use posix_prefix + # instead of osx_framework_library. See _should_use_osx_framework_prefix() + # docstring for details. + if prefix is not None and scheme_name == "osx_framework_library": + scheme_name = "posix_prefix" + + if home is not None: + variables = {k: home for k in _HOME_KEYS} + elif prefix is not None: + variables = {k: prefix for k in _HOME_KEYS} + else: + variables = {} + + paths = sysconfig.get_paths(scheme=scheme_name, vars=variables) + + # Logic here is very arbitrary, we're doing it for compatibility, don't ask. + # 1. Pip historically uses a special header path in virtual environments. + # 2. If the distribution name is not known, distutils uses 'UNKNOWN'. We + # only do the same when not running in a virtual environment because + # pip's historical header path logic (see point 1) did not do this. + if running_under_virtualenv(): + if user: + base = variables.get("userbase", sys.prefix) + else: + base = variables.get("base", sys.prefix) + python_xy = f"python{get_major_minor_version()}" + paths["include"] = os.path.join(base, "include", "site", python_xy) + elif not dist_name: + dist_name = "UNKNOWN" + + scheme = Scheme( + platlib=paths["platlib"], + purelib=paths["purelib"], + headers=os.path.join(paths["include"], dist_name), + scripts=paths["scripts"], + data=paths["data"], + ) + if root is not None: + converted_keys = {} + for key in SCHEME_KEYS: + converted_keys[key] = change_root(root, getattr(scheme, key)) + scheme = Scheme(**converted_keys) + return scheme + + +def get_bin_prefix() -> str: + # Forcing to use /usr/local/bin for standard macOS framework installs. + if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return sysconfig.get_paths()["scripts"] + + +def get_purelib() -> str: + return sysconfig.get_paths()["purelib"] + + +def get_platlib() -> str: + return sysconfig.get_paths()["platlib"] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/base.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/base.py new file mode 100644 index 00000000..3f9f896e --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,81 @@ +import functools +import os +import site +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InstallationError +from pip._internal.utils import appdirs +from pip._internal.utils.virtualenv import running_under_virtualenv + +# Application Directories +USER_CACHE_DIR = appdirs.user_cache_dir("pip") + +# FIXME doesn't account for venv linked to global site-packages +site_packages: str = sysconfig.get_path("purelib") + + +def get_major_minor_version() -> str: + """ + Return the major-minor version of the current Python as a string, e.g. + "3.7" or "3.10". + """ + return "{}.{}".format(*sys.version_info) + + +def change_root(new_root: str, pathname: str) -> str: + """Return 'pathname' with 'new_root' prepended. + + If 'pathname' is relative, this is equivalent to os.path.join(new_root, pathname). + Otherwise, it requires making 'pathname' relative and then joining the + two, which is tricky on DOS/Windows and Mac OS. + + This is borrowed from Python's standard library's distutils module. + """ + if os.name == "posix": + if not os.path.isabs(pathname): + return os.path.join(new_root, pathname) + else: + return os.path.join(new_root, pathname[1:]) + + elif os.name == "nt": + (drive, path) = os.path.splitdrive(pathname) + if path[0] == "\\": + path = path[1:] + return os.path.join(new_root, path) + + else: + raise InstallationError( + f"Unknown platform: {os.name}\n" + "Can not change root path prefix on unknown platform." + ) + + +def get_src_prefix() -> str: + if running_under_virtualenv(): + src_prefix = os.path.join(sys.prefix, "src") + else: + # FIXME: keep src in cwd for now (it is not a temporary folder) + try: + src_prefix = os.path.join(os.getcwd(), "src") + except OSError: + # In case the current working directory has been renamed or deleted + sys.exit("The folder you are executing pip from can no longer be found.") + + # under macOS + virtualenv sys.prefix is not properly resolved + # it is something like /path/to/python/bin/.. + return os.path.abspath(src_prefix) + + +try: + # Use getusersitepackages if this is present, as it ensures that the + # value is initialised properly. + user_site: typing.Optional[str] = site.getusersitepackages() +except AttributeError: + user_site = site.USER_SITE + + +@functools.lru_cache(maxsize=None) +def is_osx_framework() -> bool: + return bool(sysconfig.get_config_var("PYTHONFRAMEWORK")) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/main.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/main.py new file mode 100644 index 00000000..33c6d24c --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/main.py @@ -0,0 +1,12 @@ +from typing import List, Optional + + +def main(args: Optional[List[str]] = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 00000000..aa232b6c --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,128 @@ +import contextlib +import functools +import os +import sys +from typing import TYPE_CHECKING, List, Optional, Type, cast + +from pip._internal.utils.misc import strtobool + +from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel + +if TYPE_CHECKING: + from typing import Literal, Protocol +else: + Protocol = object + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "FilesystemWheel", + "MemoryWheel", + "Wheel", + "get_default_environment", + "get_environment", + "get_wheel_distribution", + "select_backend", +] + + +def _should_use_importlib_metadata() -> bool: + """Whether to use the ``importlib.metadata`` or ``pkg_resources`` backend. + + By default, pip uses ``importlib.metadata`` on Python 3.11+, and + ``pkg_resourcess`` otherwise. This can be overridden by a couple of ways: + + * If environment variable ``_PIP_USE_IMPORTLIB_METADATA`` is set, it + dictates whether ``importlib.metadata`` is used, regardless of Python + version. + * On Python 3.11+, Python distributors can patch ``importlib.metadata`` + to add a global constant ``_PIP_USE_IMPORTLIB_METADATA = False``. This + makes pip use ``pkg_resources`` (unless the user set the aforementioned + environment variable to *True*). + """ + with contextlib.suppress(KeyError, ValueError): + return bool(strtobool(os.environ["_PIP_USE_IMPORTLIB_METADATA"])) + if sys.version_info < (3, 11): + return False + import importlib.metadata + + return bool(getattr(importlib.metadata, "_PIP_USE_IMPORTLIB_METADATA", True)) + + +class Backend(Protocol): + NAME: 'Literal["importlib", "pkg_resources"]' + Distribution: Type[BaseDistribution] + Environment: Type[BaseEnvironment] + + +@functools.lru_cache(maxsize=None) +def select_backend() -> Backend: + if _should_use_importlib_metadata(): + from . import importlib + + return cast(Backend, importlib) + from . import pkg_resources + + return cast(Backend, pkg_resources) + + +def get_default_environment() -> BaseEnvironment: + """Get the default representation for the current environment. + + This returns an Environment instance from the chosen backend. The default + Environment instance should be built from ``sys.path`` and may use caching + to share instance state accorss calls. + """ + return select_backend().Environment.default() + + +def get_environment(paths: Optional[List[str]]) -> BaseEnvironment: + """Get a representation of the environment specified by ``paths``. + + This returns an Environment instance from the chosen backend based on the + given import paths. The backend must build a fresh instance representing + the state of installed distributions when this function is called. + """ + return select_backend().Environment.from_paths(paths) + + +def get_directory_distribution(directory: str) -> BaseDistribution: + """Get the distribution metadata representation in the specified directory. + + This returns a Distribution instance from the chosen backend based on + the given on-disk ``.dist-info`` directory. + """ + return select_backend().Distribution.from_directory(directory) + + +def get_wheel_distribution(wheel: Wheel, canonical_name: str) -> BaseDistribution: + """Get the representation of the specified wheel's distribution metadata. + + This returns a Distribution instance from the chosen backend based on + the given wheel's ``.dist-info`` directory. + + :param canonical_name: Normalized project name of the given wheel. + """ + return select_backend().Distribution.from_wheel(wheel, canonical_name) + + +def get_metadata_distribution( + metadata_contents: bytes, + filename: str, + canonical_name: str, +) -> BaseDistribution: + """Get the dist representation of the specified METADATA file contents. + + This returns a Distribution instance from the chosen backend sourced from the data + in `metadata_contents`. + + :param metadata_contents: Contents of a METADATA file within a dist, or one served + via PEP 658. + :param filename: Filename for the dist this metadata represents. + :param canonical_name: Normalized project name of the given dist. + """ + return select_backend().Distribution.from_metadata_file_contents( + metadata_contents, + filename, + canonical_name, + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac96e523b4a5880bdf35fb1f227b4934647f0a9d GIT binary patch literal 5917 zcmcgwTWlQF89uW+yR#SH?buG@B!|#oZ*X>H2MV|;m7O?_A#n^bE!nCXk7tg(o2HBbvLDf`M-c~qLB_68&|CyQf+Ht6= zs6Cd?ZO-LC|My?_v-b83fig0pt!#G@@;4krB^7qIFGz&EOAKO27AXd;RFuRxR*Z=@ zUW`K~k$#7=8Se`>n}FTnz*48kexZ^?Ip2~s=+a~&|(0Vf|eI+?I+`;>J z<6JJ`w=Z0spH|Oam_GaR?A(kmUo>6MPhGBfrc>4|UtXwHm@n&^>*XXr?RwmEmK?{r zk8gnOT~nIN&cPmTE>&@l--$ER19Vs6d#nEkU7W0s%2#B7Jxf~NXIbWdH<^lPka_({&ZDlhABdb23dLrAxOAcW5gfg@x!)?Cx;j~U`GI$I)F$dhD@xYAloB3I!i5ZCw{ z@vCG_@<5$}vf2~%c3LBT4d~-i4U_@YCi7-1jRVoTn`Ct`>hH9MWF#YTk0`rBa*Fmg z90{0uCB~`e(5lNQ^y%WFX;&QXS>{sSW}aqfp0>D19S&bA*H%={T&K!)=E7tMNj{UI zP^M}$1bUQK%nF|9KJvISov(Q%r%X@h$Htx>rCQk#hwQloZ*h>sHPdBzx==D*s%vGs z#He$fac&w0gHerYRClTs3#OOpnpSfs0-8?J*=5=yW%RnnO>GI*EiS6_v-9d}SEkk3 zOY@gsUAQ!<*$f#i2BRB;c;pN6CeEvYuDhxA((K&UI7@Xmc{!}aNyA#Stg`NTXr}@s{*fN z0kU*|9Dv@F3%trs<^pc`hrb7xxm@f%>iKK1u0L^6Gw>7jah=)Kqf zc;n0T_+L7E-HXE;t*+VRV$YrkQUGZS5-MWn;l2_5!r?@;Uic*9aYaj$2|tsugF$rY(pN~>git}7_Rq> zY{(;9-3NZ-)VrVhLVk+lLa`0Jy<%%`xaJMEi+$+ikcHc2sNN+zF7XbGvG9Iy4KYiy zV{f9MTbIYgMn8cxx_UFfgG~sffb#-$9tTd4_wZZ+=x_+Awiib5=IHRiC`Yj~ zbt_CamrZ71ECPNKi3DF71R;+DDu4^Y1cg8et`sP&nAZXGz=Tn85xQ(ZGca@1uDYIp z7K4Cg5Wmt6UQKyyLJAuL5aCfmz$^={YX%-@x-j6u>mjgNu9kH)XBZtJ+RWGo?hMMO zDk#fI{6_#v;1vT!#_*P7bs0Y#h3a9@$LrbgkDuMhzOXL85Wt=`Ob$r^WF!9%=x==5 zROFUSghsA%uRNFnoE8~q61%Se&{o&7gUutfx+wsG3Ibk%0667SfYLP(wmhPB3L_TK z-Il8{CXe*+6!6*a5WqB705~rq1}O7^mGuu{4%S?-D-Yw7u4zXRfRr)+|_2%o8=^^Ho?NxcL!kEgmfTOE+3b%e@`irSR= zzzT=zyQ8v#&S7_#)HlKYA3_-2`)CLS<`Wf-Yc{4mEo_{ia}KvP3*5dzD;Qbo9>vH5 za}9iSASL38-8w2nA<$9r6Zj}3(;rWN^5RDJ zrFHqG0Qc@lPgD_>mpur@m*J-cq)tae9ToJb!f;=N&f}tgGZtmJ!gznyf2q98X@cteV?FbL*fu>jqWCV z%>+YThG~5CD5mX@fI(UYSw@tGp`0Vq6#Do+?*iBIUfk?<$6vzn9 z3eOOcxx?o$5_lZx#pCx8-owIe@>6Z!27x1Iyf3Uj&dJl0~q}JgOI%Co5@=qew~9T$~Ij+$WmpD0Cw_*JwLGV zPCN{MJ@S*z5?TRYfyBeIAmKnmEn;mEU;Al`S5=JXSP+|GAp+4?vnIflKGmP`I4OZJIVipy#6J5 z{jc$^ujP?-dE}eU1Gg@GD`&E?TT0_lpY*Eqp}bA7eUOh!!@n*)AkZ}0NbJC^gPT%c zUFy5N@P%}|5mTg*+sd~Dn(a7=Jt-y{eTp>x!Le&PpFX*&x`ik56rjPNOF!y)1ojqCv3zq&H~SCtukX6OH~}DY-Q;)QCg- bO-FYl0c|5m4h%LF?4?Mu|3MmhLI(Z~I&>wC literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce2539342d0d122992f24892f0b66f36a0674227 GIT binary patch literal 2974 zcmZt|TTC3+_0Dq_W|!q>;Cq~1iQr}SFzNu{%wqtgvpZg5 z+;h%7_sn_D-{bLS1ncx^ZD|g$f3r=v6`10>@~)CE8L} z3UI-a?MOCaN3&78DcfW>XPa#$t8i!u8RDmj6Q8Xg&h}jk+iY3@baU4e$ z`6F--aGHRVC^n~*|1bkmf-k?0H3JhrZeZOt@O-YeRcvh~+@v@^GL1b?Tf!;H7cx%K z7bi@e`r-xCqrP;>F$QP;8_Rkp0MP!L~J0WO|ed?CHeJ)7k~=-3RvRao3^P zq3O9|KDabGg^O!0F+4cA-t@X_<8&TAhwWk$?wVt{nvuTr<^`r$&J<|QB>}I7rm?M= z7UMNfYo_s#UZt2gn#ClQi^N^VI%Q_EeGBYYO#^g+6ww0p&q<;BmNynW*TOWs(U-s! z%kX7_X@NL8$FiWlM1TT3`>(<4CMu!jgWS5%-8x)mk}oWSGx)oFjW`RrHRE$>pPL7_ zNtU|?ITj%}Z)rMCaij~xJf=VS<#ja&@lcmtJ%=3|=PXmtslmstP^@}ubV18GY27ka z50h0)RFCK?cokDmU4o=iskUI@^B7{HQJ1LLSye4_LCpsa9T^;cS@lfH0%sn-4 z=GA!!W8hlVt|zNHzwEirV7}-#F=QSR6O(U%g{PRQJ@DEPW z(oxZOmA?C8-#)OBFWBDFS6mtaYT(i;d@58qN10r(Xx&i=QRety)vDCs4^Tuyct=|eRUHKJ4KL!nDp)8h!5?bX5cTJ&9p{9~>w;sH*R1(Q42&NM98n7WXfv(Fs zzl3!D3UsQn%%c)ll0zLg_-io{l_O=@xe{>Da=f7>#2VVdbLB`$GQ^eB2$75-l_IN% zq)U;=mNl9LAYsiIIn1*0kXWg>auh$$(f-R8}Uy?>a#kGovXh*24 z;cf8Jp^(~up@uNE%h6JlNTq0rH)N)*#Lt4?IC#qP+5s#TSw91P2r`x?wPd}4Cfx;A z#7Rg$7pOm&ePbrAyLMiqCM0pvfVK+#3|icv&*exrsQ*erNkCwR?~6e~(Rz@<2-HZZ z&`@$|36(j@&IGH38cx14Tu&grER+O;3xd?y1Rt}^lJ8VyZ3i3l5nLRokVUCXSYs{q%ylsK~y3- zH1YJS3npEc3Uo33sxQMdF`eO5)NeLD)A6Y0=$No#B&^pl@J$5cZ;}v~ z__CJIW5@6Xj}pS%ml8>Da7fR=U7jy36rrX1QS87`(^>ME$|NjuoQWko%`vIzg#&c` zBs7M3>ef2UsO9RK<&6!#ATre-N!ofPLw) zvip5UW|+S>tYp3?-5cZJ?MGMYlho%1dy7xw|?C#EOoG837(%>23U zPhOaq4Z5ixS;BN)vn*c##FxChWimivloQsYe1!?*wIZ9zsU~uQDIH`C7+PMzqQUI& zB^yxF7r-2!TlJ+?%_?9&Qa|UhPRIfhtXfo*13@5Tz)!*B$&lC^s4BNehd+Gfw}=1G zQR&&~Nmmi<|I)k9KsAY4S~t#p*8S4Eu}x{S07GC~*im}+Vx5m$y0)d=mgAekBc=7p zfcnR&kEcG79t@1_3;aOKqk*x?+cy#w?qTaU?+=Vs1r%@p90B9=C^~eqGXA^sADzE5 z`J0*D&XLW@J&4Bgr-@`$hB$4Xx-q&p^vYkAKP#V%KNvc@do;5%boS2h_787gzIFMR zZ`~g{yEVCUH1p)>iQ7}RrhYNKHMw`VXH(wvey&t|(UH^7zJ(GU?~iN?w-dJ#yWOeX zmcEVik0LF5$(KN?yc0e4L}}ZY{^IE=Fz1V>?daHRoEHOs+-pmW56XW#+%-NT&!k%Y zSn%sJSooV%a0%(fDB-M literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7503d174d4b38ac6e65edc9c1d6b7b5cd50d5e5e GIT binary patch literal 35246 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e39fd4b4a2e58fd456f73620d244d2450d18badd GIT binary patch literal 16132 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]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 KZy0z`TK#{-asojB literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/_json.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/_json.py new file mode 100644 index 00000000..9097dd58 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/_json.py @@ -0,0 +1,84 @@ +# Extracted from https://github.com/pfmoore/pkg_metadata + +from email.header import Header, decode_header, make_header +from email.message import Message +from typing import Any, Dict, List, Union, cast + +METADATA_FIELDS = [ + # Name, Multiple-Use + ("Metadata-Version", False), + ("Name", False), + ("Version", False), + ("Dynamic", True), + ("Platform", True), + ("Supported-Platform", True), + ("Summary", False), + ("Description", False), + ("Description-Content-Type", False), + ("Keywords", False), + ("Home-page", False), + ("Download-URL", False), + ("Author", False), + ("Author-email", False), + ("Maintainer", False), + ("Maintainer-email", False), + ("License", False), + ("Classifier", True), + ("Requires-Dist", True), + ("Requires-Python", False), + ("Requires-External", True), + ("Project-URL", True), + ("Provides-Extra", True), + ("Provides-Dist", True), + ("Obsoletes-Dist", True), +] + + +def json_name(field: str) -> str: + return field.lower().replace("-", "_") + + +def msg_to_json(msg: Message) -> Dict[str, Any]: + """Convert a Message object into a JSON-compatible dictionary.""" + + def sanitise_header(h: Union[Header, str]) -> str: + if isinstance(h, Header): + chunks = [] + for bytes, encoding in decode_header(h): + if encoding == "unknown-8bit": + try: + # See if UTF-8 works + bytes.decode("utf-8") + encoding = "utf-8" + except UnicodeDecodeError: + # If not, latin1 at least won't fail + encoding = "latin1" + chunks.append((bytes, encoding)) + return str(make_header(chunks)) + return str(h) + + result = {} + for field, multi in METADATA_FIELDS: + if field not in msg: + continue + key = json_name(field) + if multi: + value: Union[str, List[str]] = [ + sanitise_header(v) for v in msg.get_all(field) # type: ignore + ] + else: + value = sanitise_header(msg.get(field)) # type: ignore + if key == "keywords": + # Accept both comma-separated and space-separated + # forms, for better compatibility with old data. + if "," in value: + value = [v.strip() for v in value.split(",")] + else: + value = value.split() + result[key] = value + + payload = cast(str, msg.get_payload()) + if payload: + result["description"] = payload + + return result diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/base.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 00000000..9eabcdb2 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,688 @@ +import csv +import email.message +import functools +import json +import logging +import pathlib +import re +import zipfile +from typing import ( + IO, + Any, + Collection, + Container, + Dict, + Iterable, + Iterator, + List, + NamedTuple, + Optional, + Protocol, + Tuple, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.locations import site_packages, user_site +from pip._internal.models.direct_url import ( + DIRECT_URL_METADATA_NAME, + DirectUrl, + DirectUrlValidationError, +) +from pip._internal.utils.compat import stdlib_pkgs # TODO: Move definition here. +from pip._internal.utils.egg_link import egg_link_path_from_sys_path +from pip._internal.utils.misc import is_local, normalize_path +from pip._internal.utils.urls import url_to_path + +from ._json import msg_to_json + +InfoPath = Union[str, pathlib.PurePath] + +logger = logging.getLogger(__name__) + + +class BaseEntryPoint(Protocol): + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def value(self) -> str: + raise NotImplementedError() + + @property + def group(self) -> str: + raise NotImplementedError() + + +def _convert_installed_files_path( + entry: Tuple[str, ...], + info: Tuple[str, ...], +) -> str: + """Convert a legacy installed-files.txt path into modern RECORD path. + + The legacy format stores paths relative to the info directory, while the + modern format stores paths relative to the package root, e.g. the + site-packages directory. + + :param entry: Path parts of the installed-files.txt entry. + :param info: Path parts of the egg-info directory relative to package root. + :returns: The converted entry. + + For best compatibility with symlinks, this does not use ``abspath()`` or + ``Path.resolve()``, but tries to work with path parts: + + 1. While ``entry`` starts with ``..``, remove the equal amounts of parts + from ``info``; if ``info`` is empty, start appending ``..`` instead. + 2. Join the two directly. + """ + while entry and entry[0] == "..": + if not info or info[-1] == "..": + info += ("..",) + else: + info = info[:-1] + entry = entry[1:] + return str(pathlib.Path(*info, *entry)) + + +class RequiresEntry(NamedTuple): + requirement: str + extra: str + marker: str + + +class BaseDistribution(Protocol): + @classmethod + def from_directory(cls, directory: str) -> "BaseDistribution": + """Load the distribution from a metadata directory. + + :param directory: Path to a metadata directory, e.g. ``.dist-info``. + """ + raise NotImplementedError() + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> "BaseDistribution": + """Load the distribution from the contents of a METADATA file. + + This is used to implement PEP 658 by generating a "shallow" dist object that can + be used for resolution without downloading or building the actual dist yet. + + :param metadata_contents: The contents of a METADATA file. + :param filename: File name for the dist with this metadata. + :param project_name: Name of the project this dist represents. + """ + raise NotImplementedError() + + @classmethod + def from_wheel(cls, wheel: "Wheel", name: str) -> "BaseDistribution": + """Load the distribution from a given wheel. + + :param wheel: A concrete wheel definition. + :param name: File name of the wheel. + + :raises InvalidWheel: Whenever loading of the wheel causes a + :py:exc:`zipfile.BadZipFile` exception to be thrown. + :raises UnsupportedWheel: If the wheel is a valid zip, but malformed + internally. + """ + raise NotImplementedError() + + def __repr__(self) -> str: + return f"{self.raw_name} {self.raw_version} ({self.location})" + + def __str__(self) -> str: + return f"{self.raw_name} {self.raw_version}" + + @property + def location(self) -> Optional[str]: + """Where the distribution is loaded from. + + A string value is not necessarily a filesystem path, since distributions + can be loaded from other sources, e.g. arbitrary zip archives. ``None`` + means the distribution is created in-memory. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and files in the distribution. + """ + raise NotImplementedError() + + @property + def editable_project_location(self) -> Optional[str]: + """The project location for editable distributions. + + This is the directory where pyproject.toml or setup.py is located. + None if the distribution is not installed in editable mode. + """ + # TODO: this property is relatively costly to compute, memoize it ? + direct_url = self.direct_url + if direct_url: + if direct_url.is_local_editable(): + return url_to_path(direct_url.url) + else: + # Search for an .egg-link file by walking sys.path, as it was + # done before by dist_is_editable(). + egg_link_path = egg_link_path_from_sys_path(self.raw_name) + if egg_link_path: + # TODO: get project location from second line of egg_link file + # (https://github.com/pypa/pip/issues/10243) + return self.location + return None + + @property + def installed_location(self) -> Optional[str]: + """The distribution's "installed" location. + + This should generally be a ``site-packages`` directory. This is + usually ``dist.location``, except for legacy develop-installed packages, + where ``dist.location`` is the source code location, and this is where + the ``.egg-link`` file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + raise NotImplementedError() + + @property + def info_location(self) -> Optional[str]: + """Location of the .[egg|dist]-info directory or file. + + Similarly to ``location``, a string value is not necessarily a + filesystem path. ``None`` means the distribution is created in-memory. + + For a modern .dist-info installation on disk, this should be something + like ``{location}/{raw_name}-{version}.dist-info``. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and other files in the distribution. + """ + raise NotImplementedError() + + @property + def installed_by_distutils(self) -> bool: + """Whether this distribution is installed with legacy distutils format. + + A distribution installed with "raw" distutils not patched by setuptools + uses one single file at ``info_location`` to store metadata. We need to + treat this specially on uninstallation. + """ + info_location = self.info_location + if not info_location: + return False + return pathlib.Path(info_location).is_file() + + @property + def installed_as_egg(self) -> bool: + """Whether this distribution is installed as an egg. + + This usually indicates the distribution was installed by (older versions + of) easy_install. + """ + location = self.location + if not location: + return False + return location.endswith(".egg") + + @property + def installed_with_setuptools_egg_info(self) -> bool: + """Whether this distribution is installed with the ``.egg-info`` format. + + This usually indicates the distribution was installed with setuptools + with an old pip version or with ``single-version-externally-managed``. + + Note that this ensure the metadata store is a directory. distutils can + also installs an ``.egg-info``, but as a file, not a directory. This + property is *False* for that case. Also see ``installed_by_distutils``. + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".egg-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def installed_with_dist_info(self) -> bool: + """Whether this distribution is installed with the "modern format". + + This indicates a "modern" installation, e.g. storing metadata in the + ``.dist-info`` directory. This applies to installations made by + setuptools (but through pip, not directly), or anything using the + standardized build backend interface (PEP 517). + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".dist-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def canonical_name(self) -> NormalizedName: + raise NotImplementedError() + + @property + def version(self) -> Version: + raise NotImplementedError() + + @property + def raw_version(self) -> str: + raise NotImplementedError() + + @property + def setuptools_filename(self) -> str: + """Convert a project name to its setuptools-compatible filename. + + This is a copy of ``pkg_resources.to_filename()`` for compatibility. + """ + return self.raw_name.replace("-", "_") + + @property + def direct_url(self) -> Optional[DirectUrl]: + """Obtain a DirectUrl from this distribution. + + Returns None if the distribution has no `direct_url.json` metadata, + or if `direct_url.json` is invalid. + """ + try: + content = self.read_text(DIRECT_URL_METADATA_NAME) + except FileNotFoundError: + return None + try: + return DirectUrl.from_json(content) + except ( + UnicodeDecodeError, + json.JSONDecodeError, + DirectUrlValidationError, + ) as e: + logger.warning( + "Error parsing %s for %s: %s", + DIRECT_URL_METADATA_NAME, + self.canonical_name, + e, + ) + return None + + @property + def installer(self) -> str: + try: + installer_text = self.read_text("INSTALLER") + except (OSError, ValueError, NoneMetadataError): + return "" # Fail silently if the installer file cannot be read. + for line in installer_text.splitlines(): + cleaned_line = line.strip() + if cleaned_line: + return cleaned_line + return "" + + @property + def requested(self) -> bool: + return self.is_file("REQUESTED") + + @property + def editable(self) -> bool: + return bool(self.editable_project_location) + + @property + def local(self) -> bool: + """If distribution is installed in the current virtual environment. + + Always True if we're not in a virtualenv. + """ + if self.installed_location is None: + return False + return is_local(self.installed_location) + + @property + def in_usersite(self) -> bool: + if self.installed_location is None or user_site is None: + return False + return self.installed_location.startswith(normalize_path(user_site)) + + @property + def in_site_packages(self) -> bool: + if self.installed_location is None or site_packages is None: + return False + return self.installed_location.startswith(normalize_path(site_packages)) + + def is_file(self, path: InfoPath) -> bool: + """Check whether an entry in the info directory is a file.""" + raise NotImplementedError() + + def iter_distutils_script_names(self) -> Iterator[str]: + """Find distutils 'scripts' entries metadata. + + If 'scripts' is supplied in ``setup.py``, distutils records those in the + installed distribution's ``scripts`` directory, a file for each script. + """ + raise NotImplementedError() + + def read_text(self, path: InfoPath) -> str: + """Read a file in the info directory. + + :raise FileNotFoundError: If ``path`` does not exist in the directory. + :raise NoneMetadataError: If ``path`` exists in the info directory, but + cannot be read. + """ + raise NotImplementedError() + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + raise NotImplementedError() + + def _metadata_impl(self) -> email.message.Message: + raise NotImplementedError() + + @functools.cached_property + def metadata(self) -> email.message.Message: + """Metadata of distribution parsed from e.g. METADATA or PKG-INFO. + + This should return an empty message if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + metadata = self._metadata_impl() + self._add_egg_info_requires(metadata) + return metadata + + @property + def metadata_dict(self) -> Dict[str, Any]: + """PEP 566 compliant JSON-serializable representation of METADATA or PKG-INFO. + + This should return an empty dict if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + return msg_to_json(self.metadata) + + @property + def metadata_version(self) -> Optional[str]: + """Value of "Metadata-Version:" in distribution metadata, if available.""" + return self.metadata.get("Metadata-Version") + + @property + def raw_name(self) -> str: + """Value of "Name:" in distribution metadata.""" + # The metadata should NEVER be missing the Name: key, but if it somehow + # does, fall back to the known canonical name. + return self.metadata.get("Name", self.canonical_name) + + @property + def requires_python(self) -> SpecifierSet: + """Value of "Requires-Python:" in distribution metadata. + + If the key does not exist or contains an invalid value, an empty + SpecifierSet should be returned. + """ + value = self.metadata.get("Requires-Python") + if value is None: + return SpecifierSet() + try: + # Convert to str to satisfy the type checker; this can be a Header object. + spec = SpecifierSet(str(value)) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.raw_name, e) + return SpecifierSet() + return spec + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + """Dependencies of this distribution. + + For modern .dist-info distributions, this is the collection of + "Requires-Dist:" entries in distribution metadata. + """ + raise NotImplementedError() + + def iter_raw_dependencies(self) -> Iterable[str]: + """Raw Requires-Dist metadata.""" + return self.metadata.get_all("Requires-Dist", []) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + """Extras provided by this distribution. + + For modern .dist-info distributions, this is the collection of + "Provides-Extra:" entries in distribution metadata. + + The return value of this function is expected to be normalised names, + per PEP 685, with the returned value being handled appropriately by + `iter_dependencies`. + """ + raise NotImplementedError() + + def _iter_declared_entries_from_record(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("RECORD") + except FileNotFoundError: + return None + # This extra Path-str cast normalizes entries. + return (str(pathlib.Path(row[0])) for row in csv.reader(text.splitlines())) + + def _iter_declared_entries_from_legacy(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("installed-files.txt") + except FileNotFoundError: + return None + paths = (p for p in text.splitlines(keepends=False) if p) + root = self.location + info = self.info_location + if root is None or info is None: + return paths + try: + info_rel = pathlib.Path(info).relative_to(root) + except ValueError: # info is not relative to root. + return paths + if not info_rel.parts: # info *is* root. + return paths + return ( + _convert_installed_files_path(pathlib.Path(p).parts, info_rel.parts) + for p in paths + ) + + def iter_declared_entries(self) -> Optional[Iterator[str]]: + """Iterate through file entries declared in this distribution. + + For modern .dist-info distributions, this is the files listed in the + ``RECORD`` metadata file. For legacy setuptools distributions, this + comes from ``installed-files.txt``, with entries normalized to be + compatible with the format used by ``RECORD``. + + :return: An iterator for listed entries, or None if the distribution + contains neither ``RECORD`` nor ``installed-files.txt``. + """ + return ( + self._iter_declared_entries_from_record() + or self._iter_declared_entries_from_legacy() + ) + + def _iter_requires_txt_entries(self) -> Iterator[RequiresEntry]: + """Parse a ``requires.txt`` in an egg-info directory. + + This is an INI-ish format where an egg-info stores dependencies. A + section name describes extra other environment markers, while each entry + is an arbitrary string (not a key-value pair) representing a dependency + as a requirement string (no markers). + + There is a construct in ``importlib.metadata`` called ``Sectioned`` that + does mostly the same, but the format is currently considered private. + """ + try: + content = self.read_text("requires.txt") + except FileNotFoundError: + return + extra = marker = "" # Section-less entries don't have markers. + for line in content.splitlines(): + line = line.strip() + if not line or line.startswith("#"): # Comment; ignored. + continue + if line.startswith("[") and line.endswith("]"): # A section header. + extra, _, marker = line.strip("[]").partition(":") + continue + yield RequiresEntry(requirement=line, extra=extra, marker=marker) + + def _iter_egg_info_extras(self) -> Iterable[str]: + """Get extras from the egg-info directory.""" + known_extras = {""} + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra in known_extras: + continue + known_extras.add(extra) + yield extra + + def _iter_egg_info_dependencies(self) -> Iterable[str]: + """Get distribution dependencies from the egg-info directory. + + To ease parsing, this converts a legacy dependency entry into a PEP 508 + requirement string. Like ``_iter_requires_txt_entries()``, there is code + in ``importlib.metadata`` that does mostly the same, but not do exactly + what we need. + + Namely, ``importlib.metadata`` does not normalize the extra name before + putting it into the requirement string, which causes marker comparison + to fail because the dist-info format do normalize. This is consistent in + all currently available PEP 517 backends, although not standardized. + """ + for entry in self._iter_requires_txt_entries(): + extra = canonicalize_name(entry.extra) + if extra and entry.marker: + marker = f'({entry.marker}) and extra == "{extra}"' + elif extra: + marker = f'extra == "{extra}"' + elif entry.marker: + marker = entry.marker + else: + marker = "" + if marker: + yield f"{entry.requirement} ; {marker}" + else: + yield entry.requirement + + def _add_egg_info_requires(self, metadata: email.message.Message) -> None: + """Add egg-info requires.txt information to the metadata.""" + if not metadata.get_all("Requires-Dist"): + for dep in self._iter_egg_info_dependencies(): + metadata["Requires-Dist"] = dep + if not metadata.get_all("Provides-Extra"): + for extra in self._iter_egg_info_extras(): + metadata["Provides-Extra"] = extra + + +class BaseEnvironment: + """An environment containing distributions to introspect.""" + + @classmethod + def default(cls) -> "BaseEnvironment": + raise NotImplementedError() + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> "BaseEnvironment": + raise NotImplementedError() + + def get_distribution(self, name: str) -> Optional["BaseDistribution"]: + """Given a requirement name, return the installed distributions. + + The name may not be normalized. The implementation must canonicalize + it for lookup. + """ + raise NotImplementedError() + + def _iter_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions. + + This function should be implemented by subclass, but never called + directly. Use the public ``iter_distribution()`` instead, which + implements additional logic to make sure the distributions are valid. + """ + raise NotImplementedError() + + def iter_all_distributions(self) -> Iterator[BaseDistribution]: + """Iterate through all installed distributions without any filtering.""" + for dist in self._iter_distributions(): + # Make sure the distribution actually comes from a valid Python + # packaging distribution. Pip's AdjacentTempDirectory leaves folders + # e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The + # valid project name pattern is taken from PEP 508. + project_name_valid = re.match( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", + dist.canonical_name, + flags=re.IGNORECASE, + ) + if not project_name_valid: + logger.warning( + "Ignoring invalid distribution %s (%s)", + dist.canonical_name, + dist.location, + ) + continue + yield dist + + def iter_installed_distributions( + self, + local_only: bool = True, + skip: Container[str] = stdlib_pkgs, + include_editables: bool = True, + editables_only: bool = False, + user_only: bool = False, + ) -> Iterator[BaseDistribution]: + """Return a list of installed distributions. + + This is based on ``iter_all_distributions()`` with additional filtering + options. Note that ``iter_installed_distributions()`` without arguments + is *not* equal to ``iter_all_distributions()``, since some of the + configurations exclude packages by default. + + :param local_only: If True (default), only return installations + local to the current virtualenv, if in a virtualenv. + :param skip: An iterable of canonicalized project names to ignore; + defaults to ``stdlib_pkgs``. + :param include_editables: If False, don't report editables. + :param editables_only: If True, only report editables. + :param user_only: If True, only report installations in the user + site directory. + """ + it = self.iter_all_distributions() + if local_only: + it = (d for d in it if d.local) + if not include_editables: + it = (d for d in it if not d.editable) + if editables_only: + it = (d for d in it if d.editable) + if user_only: + it = (d for d in it if d.in_usersite) + return (d for d in it if d.canonical_name not in skip) + + +class Wheel(Protocol): + location: str + + def as_zipfile(self) -> zipfile.ZipFile: + raise NotImplementedError() + + +class FilesystemWheel(Wheel): + def __init__(self, location: str) -> None: + self.location = location + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.location, allowZip64=True) + + +class MemoryWheel(Wheel): + def __init__(self, location: str, stream: IO[bytes]) -> None: + self.location = location + self.stream = stream + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.stream, allowZip64=True) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py new file mode 100644 index 00000000..a779138d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py @@ -0,0 +1,6 @@ +from ._dists import Distribution +from ._envs import Environment + +__all__ = ["NAME", "Distribution", "Environment"] + +NAME = "importlib" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7af27982d5fdaef49c30480eb70a14944f57566b GIT binary patch literal 406 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2af1e3de7c4c608f3a4667e48f0aa14cc466c3eb GIT binary patch literal 12613 zcmb_CZEzdMb$h@aaQGlV0w4iWA_bBXNst0zNtEsAn-V2|#gt2^}g%9TL zXo?8wD6%r4Qco?%PDG_iMNiy>iqo2%>2x&xC1pC3%rw&h3MHT~^2C{Drp-UdRK{`q zqkV7h4gf*K@l1OX-#zTU-P?Wp_I>UCTT_#rz%wuqKl{0Dg#0J|Fdj}v*2fq^t`dO= zOo~Jq`Zh()^vyyiF-f+8VW{`6!>ZMQv$&)Sh-k9cgFOnQn?UrCm`MgZ-FO z?sRjsnc{4!CGClN(%z_-{^nA?bZfMg;ugT$qJD~7Q-O4Qv_0Js?V!K;)Ry$t=+<;+ zv@_im?MiQpZlmS4R50Bg?WVXr)syax_EOxD+MeDK-9d3@sxRFi?N1Lx2jF*;;7Wzk zgVDkCP;@B0GrE%@Ch`ao+?R;ZESjgH21BavsV`P>1AE)7VbKU}-2$yW;?_#(@EjBJ z{tijTL%eD~mQAI^gp$l=RCX+xP*nagMU>)aQlgG2SxL1%8K0g`X3nbo$!R2wr&Ruw z_@x;!lMq!l5to$^qdK03lB6W2#f%a%sjl&?l#Zv8IZ+sor$x0T5zk~Z$pkHmWuOS! zSic}jGIR(iHyxK`5gIxl%e)9g!ZVYim{OZRpOI&#r?ZkGY9%37Z9W>8#j&KUNXauZ zbm%TDIi69Zxu>$p3{E05k$ozzOsX912KskpjPb;#p#n&LzY7-Fn4Z8~Rl zQ0oxqAB$&%*oztiViQs}9ZSNfp_Tsmgtm?vwCO+Ae-6l1BGL^IH3_Kc1oqDMYNKCZ|t8zqG$eSpAe3%ub6L+7#EYQF{tgB1}A!e+@L2^~^eOoP-znXCX$cLrgEI6f(^ zh_c3EWiqY|Q(Bcn4#{d0mDyA_L0O_&BvF}>GUEwd2~j~Y0mR?yK>%0DJTp&XfN9UX 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6112dc334285bbbfea3b6ddb0badf0675f85b8dd GIT binary patch literal 11127 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py new file mode 100644 index 00000000..ec1e815c --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py @@ -0,0 +1,85 @@ +import importlib.metadata +import os +from typing import Any, Optional, Protocol, Tuple, cast + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + + +class BadMetadata(ValueError): + def __init__(self, dist: importlib.metadata.Distribution, *, reason: str) -> None: + self.dist = dist + self.reason = reason + + def __str__(self) -> str: + return f"Bad metadata in {self.dist} ({self.reason})" + + +class BasePath(Protocol): + """A protocol that various path objects conform. + + This exists because importlib.metadata uses both ``pathlib.Path`` and + ``zipfile.Path``, and we need a common base for type hints (Union does not + work well since ``zipfile.Path`` is too new for our linter setup). + + This does not mean to be exhaustive, but only contains things that present + in both classes *that we need*. + """ + + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def parent(self) -> "BasePath": + raise NotImplementedError() + + +def get_info_location(d: importlib.metadata.Distribution) -> Optional[BasePath]: + """Find the path to the distribution's metadata directory. + + HACK: This relies on importlib.metadata's private ``_path`` attribute. Not + all distributions exist on disk, so importlib.metadata is correct to not + expose the attribute as public. But pip's code base is old and not as clean, + so we do this to avoid having to rewrite too many things. Hopefully we can + eliminate this some day. + """ + return getattr(d, "_path", None) + + +def parse_name_and_version_from_info_directory( + dist: importlib.metadata.Distribution, +) -> Tuple[Optional[str], Optional[str]]: + """Get a name and version from the metadata directory name. + + This is much faster than reading distribution metadata. + """ + info_location = get_info_location(dist) + if info_location is None: + return None, None + + stem, suffix = os.path.splitext(info_location.name) + if suffix == ".dist-info": + name, sep, version = stem.partition("-") + if sep: + return name, version + + if suffix == ".egg-info": + name = stem.split("-", 1)[0] + return name, None + + return None, None + + +def get_dist_canonical_name(dist: importlib.metadata.Distribution) -> NormalizedName: + """Get the distribution's normalized name. + + The ``name`` attribute is only available in Python 3.10 or later. We are + targeting exactly that, but Mypy does not know this. + """ + if name := parse_name_and_version_from_info_directory(dist)[0]: + return canonicalize_name(name) + + name = cast(Any, dist).name + if not isinstance(name, str): + raise BadMetadata(dist, reason="invalid metadata entry 'name'") + return canonicalize_name(name) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py new file mode 100644 index 00000000..36cd3262 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py @@ -0,0 +1,221 @@ +import email.message +import importlib.metadata +import pathlib +import zipfile +from typing import ( + Collection, + Dict, + Iterable, + Iterator, + Mapping, + Optional, + Sequence, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, UnsupportedWheel +from pip._internal.metadata.base import ( + BaseDistribution, + BaseEntryPoint, + InfoPath, + Wheel, +) +from pip._internal.utils.misc import normalize_path +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from ._compat import ( + BasePath, + get_dist_canonical_name, + parse_name_and_version_from_info_directory, +) + + +class WheelDistribution(importlib.metadata.Distribution): + """An ``importlib.metadata.Distribution`` read from a wheel. + + Although ``importlib.metadata.PathDistribution`` accepts ``zipfile.Path``, + its implementation is too "lazy" for pip's needs (we can't keep the ZipFile + handle open for the entire lifetime of the distribution object). + + This implementation eagerly reads the entire metadata directory into the + memory instead, and operates from that. + """ + + def __init__( + self, + files: Mapping[pathlib.PurePosixPath, bytes], + info_location: pathlib.PurePosixPath, + ) -> None: + self._files = files + self.info_location = info_location + + @classmethod + def from_zipfile( + cls, + zf: zipfile.ZipFile, + name: str, + location: str, + ) -> "WheelDistribution": + info_dir, _ = parse_wheel(zf, name) + paths = ( + (name, pathlib.PurePosixPath(name.split("/", 1)[-1])) + for name in zf.namelist() + if name.startswith(f"{info_dir}/") + ) + files = { + relpath: read_wheel_metadata_file(zf, fullpath) + for fullpath, relpath in paths + } + info_location = pathlib.PurePosixPath(location, info_dir) + return cls(files, info_location) + + def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + # Only allow iterating through the metadata directory. + if pathlib.PurePosixPath(str(path)) in self._files: + return iter(self._files) + raise FileNotFoundError(path) + + def read_text(self, filename: str) -> Optional[str]: + try: + data = self._files[pathlib.PurePosixPath(filename)] + except KeyError: + return None + try: + text = data.decode("utf-8") + except UnicodeDecodeError as e: + wheel = self.info_location.parent + error = f"Error decoding metadata for {wheel}: {e} in {filename} file" + raise UnsupportedWheel(error) + return text + + +class Distribution(BaseDistribution): + def __init__( + self, + dist: importlib.metadata.Distribution, + info_location: Optional[BasePath], + installed_location: Optional[BasePath], + ) -> None: + self._dist = dist + self._info_location = info_location + self._installed_location = installed_location + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + info_location = pathlib.Path(directory) + dist = importlib.metadata.Distribution.at(info_location) + return cls(dist, info_location, info_location.parent) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + # Generate temp dir to contain the metadata file, and write the file contents. + temp_dir = pathlib.Path( + TempDirectory(kind="metadata", globally_managed=True).path + ) + metadata_path = temp_dir / "METADATA" + metadata_path.write_bytes(metadata_contents) + # Construct dist pointing to the newly created directory. + dist = importlib.metadata.Distribution.at(metadata_path.parent) + return cls(dist, metadata_path.parent, None) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + dist = WheelDistribution.from_zipfile(zf, name, wheel.location) + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + return cls(dist, dist.info_location, pathlib.PurePosixPath(wheel.location)) + + @property + def location(self) -> Optional[str]: + if self._info_location is None: + return None + return str(self._info_location.parent) + + @property + def info_location(self) -> Optional[str]: + if self._info_location is None: + return None + return str(self._info_location) + + @property + def installed_location(self) -> Optional[str]: + if self._installed_location is None: + return None + return normalize_path(str(self._installed_location)) + + @property + def canonical_name(self) -> NormalizedName: + return get_dist_canonical_name(self._dist) + + @property + def version(self) -> Version: + if version := parse_name_and_version_from_info_directory(self._dist)[1]: + return parse_version(version) + return parse_version(self._dist.version) + + @property + def raw_version(self) -> str: + return self._dist.version + + def is_file(self, path: InfoPath) -> bool: + return self._dist.read_text(str(path)) is not None + + def iter_distutils_script_names(self) -> Iterator[str]: + # A distutils installation is always "flat" (not in e.g. egg form), so + # if this distribution's info location is NOT a pathlib.Path (but e.g. + # zipfile.Path), it can never contain any distutils scripts. + if not isinstance(self._info_location, pathlib.Path): + return + for child in self._info_location.joinpath("scripts").iterdir(): + yield child.name + + def read_text(self, path: InfoPath) -> str: + content = self._dist.read_text(str(path)) + if content is None: + raise FileNotFoundError(path) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + # importlib.metadata's EntryPoint structure sasitfies BaseEntryPoint. + return self._dist.entry_points + + def _metadata_impl(self) -> email.message.Message: + # From Python 3.10+, importlib.metadata declares PackageMetadata as the + # return type. This protocol is unfortunately a disaster now and misses + # a ton of fields that we need, including get() and get_payload(). We + # rely on the implementation that the object is actually a Message now, + # until upstream can improve the protocol. (python/cpython#94952) + return cast(email.message.Message, self._dist.metadata) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + return [ + canonicalize_name(extra) + for extra in self.metadata.get_all("Provides-Extra", []) + ] + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + contexts: Sequence[Dict[str, str]] = [{"extra": e} for e in extras] + for req_string in self.metadata.get_all("Requires-Dist", []): + # strip() because email.message.Message.get_all() may return a leading \n + # in case a long header was wrapped. + req = get_requirement(req_string.strip()) + if not req.marker: + yield req + elif not extras and req.marker.evaluate({"extra": ""}): + yield req + elif any(req.marker.evaluate(context) for context in contexts): + yield req diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py new file mode 100644 index 00000000..70cb7a60 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py @@ -0,0 +1,189 @@ +import functools +import importlib.metadata +import logging +import os +import pathlib +import sys +import zipfile +import zipimport +from typing import Iterator, List, Optional, Sequence, Set, Tuple + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.metadata.base import BaseDistribution, BaseEnvironment +from pip._internal.models.wheel import Wheel +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION + +from ._compat import BadMetadata, BasePath, get_dist_canonical_name, get_info_location +from ._dists import Distribution + +logger = logging.getLogger(__name__) + + +def _looks_like_wheel(location: str) -> bool: + if not location.endswith(WHEEL_EXTENSION): + return False + if not os.path.isfile(location): + return False + if not Wheel.wheel_file_re.match(os.path.basename(location)): + return False + return zipfile.is_zipfile(location) + + +class _DistributionFinder: + """Finder to locate distributions. + + The main purpose of this class is to memoize found distributions' names, so + only one distribution is returned for each package name. At lot of pip code + assumes this (because it is setuptools's behavior), and not doing the same + can potentially cause a distribution in lower precedence path to override a + higher precedence one if the caller is not careful. + + Eventually we probably want to make it possible to see lower precedence + installations as well. It's useful feature, after all. + """ + + FoundResult = Tuple[importlib.metadata.Distribution, Optional[BasePath]] + + def __init__(self) -> None: + self._found_names: Set[NormalizedName] = set() + + def _find_impl(self, location: str) -> Iterator[FoundResult]: + """Find distributions in a location.""" + # Skip looking inside a wheel. Since a package inside a wheel is not + # always valid (due to .data directories etc.), its .dist-info entry + # should not be considered an installed distribution. + if _looks_like_wheel(location): + return + # To know exactly where we find a distribution, we have to feed in the + # paths one by one, instead of dumping the list to importlib.metadata. + for dist in importlib.metadata.distributions(path=[location]): + info_location = get_info_location(dist) + try: + name = get_dist_canonical_name(dist) + except BadMetadata as e: + logger.warning("Skipping %s due to %s", info_location, e.reason) + continue + if name in self._found_names: + continue + self._found_names.add(name) + yield dist, info_location + + def find(self, location: str) -> Iterator[BaseDistribution]: + """Find distributions in a location. + + The path can be either a directory, or a ZIP archive. + """ + for dist, info_location in self._find_impl(location): + if info_location is None: + installed_location: Optional[BasePath] = None + else: + installed_location = info_location.parent + yield Distribution(dist, info_location, installed_location) + + def find_linked(self, location: str) -> Iterator[BaseDistribution]: + """Read location in egg-link files and return distributions in there. + + The path should be a directory; otherwise this returns nothing. This + follows how setuptools does this for compatibility. The first non-empty + line in the egg-link is read as a path (resolved against the egg-link's + containing directory if relative). Distributions found at that linked + location are returned. + """ + path = pathlib.Path(location) + if not path.is_dir(): + return + for child in path.iterdir(): + if child.suffix != ".egg-link": + continue + with child.open() as f: + lines = (line.strip() for line in f) + target_rel = next((line for line in lines if line), "") + if not target_rel: + continue + target_location = str(path.joinpath(target_rel)) + for dist, info_location in self._find_impl(target_location): + yield Distribution(dist, info_location, path) + + def _find_eggs_in_dir(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_distributions + + from pip._internal.metadata import pkg_resources as legacy + + with os.scandir(location) as it: + for entry in it: + if not entry.name.endswith(".egg"): + continue + for dist in find_distributions(entry.path): + yield legacy.Distribution(dist) + + def _find_eggs_in_zip(self, location: str) -> Iterator[BaseDistribution]: + from pip._vendor.pkg_resources import find_eggs_in_zip + + from pip._internal.metadata import pkg_resources as legacy + + try: + importer = zipimport.zipimporter(location) + except zipimport.ZipImportError: + return + for dist in find_eggs_in_zip(importer, location): + yield legacy.Distribution(dist) + + def find_eggs(self, location: str) -> Iterator[BaseDistribution]: + """Find eggs in a location. + + This actually uses the old *pkg_resources* backend. We likely want to + deprecate this so we can eventually remove the *pkg_resources* + dependency entirely. Before that, this should first emit a deprecation + warning for some versions when using the fallback since importing + *pkg_resources* is slow for those who don't need it. + """ + if os.path.isdir(location): + yield from self._find_eggs_in_dir(location) + if zipfile.is_zipfile(location): + yield from self._find_eggs_in_zip(location) + + +@functools.lru_cache(maxsize=None) # Warn a distribution exactly once. +def _emit_egg_deprecation(location: Optional[str]) -> None: + deprecated( + reason=f"Loading egg at {location} is deprecated.", + replacement="to use pip for package installation", + gone_in="24.3", + issue=12330, + ) + + +class Environment(BaseEnvironment): + def __init__(self, paths: Sequence[str]) -> None: + self._paths = paths + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(sys.path) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + if paths is None: + return cls(sys.path) + return cls(paths) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + finder = _DistributionFinder() + for location in self._paths: + yield from finder.find(location) + for dist in finder.find_eggs(location): + _emit_egg_deprecation(dist.location) + yield dist + # This must go last because that's how pkg_resources tie-breaks. + yield from finder.find_linked(location) + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + canonical_name = canonicalize_name(name) + matches = ( + distribution + for distribution in self.iter_all_distributions() + if distribution.canonical_name == canonical_name + ) + return next(matches, None) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 00000000..4ea84f93 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,301 @@ +import email.message +import email.parser +import logging +import os +import zipfile +from typing import ( + Collection, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, +) + +from pip._vendor import pkg_resources +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, NoneMetadataError, UnsupportedWheel +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.misc import display_path, normalize_path +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from .base import ( + BaseDistribution, + BaseEntryPoint, + BaseEnvironment, + InfoPath, + Wheel, +) + +__all__ = ["NAME", "Distribution", "Environment"] + +logger = logging.getLogger(__name__) + +NAME = "pkg_resources" + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class InMemoryMetadata: + """IMetadataProvider that reads metadata files from a dictionary. + + This also maps metadata decoding exceptions to our internal exception type. + """ + + def __init__(self, metadata: Mapping[str, bytes], wheel_name: str) -> None: + self._metadata = metadata + self._wheel_name = wheel_name + + def has_metadata(self, name: str) -> bool: + return name in self._metadata + + def get_metadata(self, name: str) -> str: + try: + return self._metadata[name].decode() + except UnicodeDecodeError as e: + # Augment the default error with the origin of the file. + raise UnsupportedWheel( + f"Error decoding metadata for {self._wheel_name}: {e} in {name} file" + ) + + def get_metadata_lines(self, name: str) -> Iterable[str]: + return pkg_resources.yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name: str) -> bool: + return False + + def metadata_listdir(self, name: str) -> List[str]: + return [] + + def run_script(self, script_name: str, namespace: str) -> None: + pass + + +class Distribution(BaseDistribution): + def __init__(self, dist: pkg_resources.Distribution) -> None: + self._dist = dist + # This is populated lazily, to avoid loading metadata for all possible + # distributions eagerly. + self.__extra_mapping: Optional[Mapping[NormalizedName, str]] = None + + @property + def _extra_mapping(self) -> Mapping[NormalizedName, str]: + if self.__extra_mapping is None: + self.__extra_mapping = { + canonicalize_name(extra): extra for extra in self._dist.extras + } + + return self.__extra_mapping + + @classmethod + def from_directory(cls, directory: str) -> BaseDistribution: + dist_dir = directory.rstrip(os.sep) + + # Build a PathMetadata object, from path to metadata. :wink: + base_dir, dist_dir_name = os.path.split(dist_dir) + metadata = pkg_resources.PathMetadata(base_dir, dist_dir) + + # Determine the correct Distribution object type. + if dist_dir.endswith(".egg-info"): + dist_cls = pkg_resources.Distribution + dist_name = os.path.splitext(dist_dir_name)[0] + else: + assert dist_dir.endswith(".dist-info") + dist_cls = pkg_resources.DistInfoDistribution + dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0] + + dist = dist_cls(base_dir, project_name=dist_name, metadata=metadata) + return cls(dist) + + @classmethod + def from_metadata_file_contents( + cls, + metadata_contents: bytes, + filename: str, + project_name: str, + ) -> BaseDistribution: + metadata_dict = { + "METADATA": metadata_contents, + } + dist = pkg_resources.DistInfoDistribution( + location=filename, + metadata=InMemoryMetadata(metadata_dict, filename), + project_name=project_name, + ) + return cls(dist) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> BaseDistribution: + try: + with wheel.as_zipfile() as zf: + info_dir, _ = parse_wheel(zf, name) + metadata_dict = { + path.split("/", 1)[-1]: read_wheel_metadata_file(zf, path) + for path in zf.namelist() + if path.startswith(f"{info_dir}/") + } + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + dist = pkg_resources.DistInfoDistribution( + location=wheel.location, + metadata=InMemoryMetadata(metadata_dict, wheel.location), + project_name=name, + ) + return cls(dist) + + @property + def location(self) -> Optional[str]: + return self._dist.location + + @property + def installed_location(self) -> Optional[str]: + egg_link = egg_link_path_from_location(self.raw_name) + if egg_link: + location = egg_link + elif self.location: + location = self.location + else: + return None + return normalize_path(location) + + @property + def info_location(self) -> Optional[str]: + return self._dist.egg_info + + @property + def installed_by_distutils(self) -> bool: + # A distutils-installed distribution is provided by FileMetadata. This + # provider has a "path" attribute not present anywhere else. Not the + # best introspection logic, but pip has been doing this for a long time. + try: + return bool(self._dist._provider.path) + except AttributeError: + return False + + @property + def canonical_name(self) -> NormalizedName: + return canonicalize_name(self._dist.project_name) + + @property + def version(self) -> Version: + return parse_version(self._dist.version) + + @property + def raw_version(self) -> str: + return self._dist.version + + def is_file(self, path: InfoPath) -> bool: + return self._dist.has_metadata(str(path)) + + def iter_distutils_script_names(self) -> Iterator[str]: + yield from self._dist.metadata_listdir("scripts") + + def read_text(self, path: InfoPath) -> str: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + content = self._dist.get_metadata(name) + if content is None: + raise NoneMetadataError(self, name) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + for group, entries in self._dist.get_entry_map().items(): + for name, entry_point in entries.items(): + name, _, value = str(entry_point).partition("=") + yield EntryPoint(name=name.strip(), value=value.strip(), group=group) + + def _metadata_impl(self) -> email.message.Message: + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + if isinstance(self._dist, pkg_resources.DistInfoDistribution): + metadata_name = "METADATA" + else: + metadata_name = "PKG-INFO" + try: + metadata = self.read_text(metadata_name) + except FileNotFoundError: + if self.location: + displaying_path = display_path(self.location) + else: + displaying_path = repr(self.location) + logger.warning("No metadata found in %s", displaying_path) + metadata = "" + feed_parser = email.parser.FeedParser() + feed_parser.feed(metadata) + return feed_parser.close() + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + if extras: + relevant_extras = set(self._extra_mapping) & set( + map(canonicalize_name, extras) + ) + extras = [self._extra_mapping[extra] for extra in relevant_extras] + return self._dist.requires(extras) + + def iter_provided_extras(self) -> Iterable[NormalizedName]: + return self._extra_mapping.keys() + + +class Environment(BaseEnvironment): + def __init__(self, ws: pkg_resources.WorkingSet) -> None: + self._ws = ws + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(pkg_resources.working_set) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + return cls(pkg_resources.WorkingSet(paths)) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + for dist in self._ws: + yield Distribution(dist) + + def _search_distribution(self, name: str) -> Optional[BaseDistribution]: + """Find a distribution matching the ``name`` in the environment. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + """ + canonical_name = canonicalize_name(name) + for dist in self.iter_all_distributions(): + if dist.canonical_name == canonical_name: + return dist + return None + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + # Search the distribution by looking through the working set. + dist = self._search_distribution(name) + if dist: + return dist + + # If distribution could not be found, call working_set.require to + # update the working set, and try to find the distribution again. + # This might happen for e.g. when you install a package twice, once + # using setup.py develop and again using setup.py install. Now when + # running pip uninstall twice, the package gets removed from the + # working set in the first uninstall, so we have to populate the + # working set again so that pip knows about it and the packages gets + # picked up and is successfully uninstalled the second time too. + try: + # We didn't pass in any version specifiers, so this can never + # raise pkg_resources.VersionConflict. + self._ws.require(name) + except pkg_resources.DistributionNotFound: + return None + return self._search_distribution(name) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 00000000..7855226e --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..24e03623464c903c1a686243865b9738dd103b60 GIT binary patch literal 314 zcmXv~F-`+95IiRlM3M4`E0ZF(0-6*EL`8?FX)K>_b#~&jE$E5@D_fMmJcA( zQQ=dQ#y;zQ3*LP)9daGJ2*(fe` z@T{z-vI`A5I+_V%LPF1F9?KS~nmsJV{#?o?XemF6!|?w14NT||HbEQo9U5n~fyWd! zxMc)-;aVBL(#`^5+F=4p8Wa&SL96m5tJ>i`dQ6H#0`xm@wuacV3I3|OxCF9{t5afv vXd_7L8IxBIj*&rT$Fh`F?Dx~_Y(6`@NoP6WPy!7deUF6@KO-R~X_Dn1Jj!4* literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21b6a19bb8ee1dd95fbb752582e7cdc3cd9fa9a3 GIT binary patch literal 1652 zcmb7EO=#Rk6rR!FYS-DgB#s*g9F)*ft8FCW_~?ex9D@5}8pkbUDX3%3*sHZx+RTho zcG-g=={-5w5DKBE1n1zMnxlJap%<69)QAT9Lk_*!Y@yIo-)Ob2F)gJJ^yZuQo@Uhd8ZN0*XlNoDT;k=bgorJJF%Py+?XxB&5l*(ye~PnGr*ndU-G85_4Yn+qFFuhAq@G*|u>GYR}PE8 z@O#_qsZxi&GgUMtj~(Lb}Ut7>*e zoP(g9iK1Fg$8d;rGVF5oz_^&_Au8V-J_0-|L8(=lJLCVBnp}MvY{dkyRkV9zbj`iz z-W}gQJGnXa<@6WRo8FeOHUIUEuWoF;^Ucle;cMIWH9iW)?vTp8nkVR^N)SMCR$_&Z z1;Nb~5*Hfqfu&OIGrOn2n4?UQYgr?l@v|LLf1OrZI#B3T-KmmO#>$4wyay(>1iN@x4hL{7CP;0pdC% zw`EkP+Yw=>5=QN8!w9Kii`2|$q+z9%rn7%`r2S*p?Bd>GcaWxk=ATQDW@mow_nrH& zlbE(MNAh>S^Sbw(?|kp$|8%<@6qLTc==d)?DC&<`F^Wq^mWwn+U7-XjObN8WB`c1CuB1EcPBw*`lAf@Krp76O z|2ZA@GL+aPSU!VqUlsBoK|61oMa z=n&V5wlM~_L7{ToPl-2`Qnro9M}CA`V}H5hIe6mQ*YB97&C(Rp*ctn~0wiNyU0HCKH4n z&3FXzn#i=27?_mPsm#FZr?;Gb>(tQpaCCcS$M&bTM_$`@dbV$Gqt@UvTVgs{$wOx| zY8kov3MEp&%v6|}p@WR%CRAWmTO^W-CdEiZbwnb`v@o4O+!cwuIUP-CJvXRjeBEFF zX>cN)6bC2Mu?aDi6ekk#*u>zAQhHK6tB8a0dF4!WBDFo1h!4u5bWW58WhpiY1Qiu| za2&ods30w$6H`D`B`pn#sdIyg_?f|}8D%1!+BLBAu|YYmh});4v9r-}Q68L%PYp)m zDL4e6{2(k&OvratWf3wT%;UN+`&MmBQOz_1JkJ$&4IDB6v#LOeP*jl2ZN02h|BSmtVB~Wk&xsD zFX0ZP^$0oCV&S#h&TV&_dMh4(K3-h6W2t3{Upn>0#xFd-d$Z_zX_;j_jw;329aRhE z^5u?_qgp|I3w(o6{}3Qos5&}RS)gW?{Y*crSuV@vn(F9{l%{{i7MgyGUyd}pazMVEClbwO_6PX z2naA8HB4QiW6U@eV_vfY!_iqfM}J_+(wCVJ>>M?VEtKr6kw>6w8?Pe@WwZ*+* ziloP+e&~D*e)3rWIqIvfp0aDtRdHTeP)d(J`Tl4@%#9RXd%kjdkxg9(YAgwdYIEiv ze>XEf^v;h+=QFiV!msnbxjjW^caiG`2q%m6-0{EMZ>8K%$>?7E*gC{>Kj8qVmb2%h z(zqOhR zxbXUy&I3j6z+cMF12U@A4;_7$PxwB|8j3(4wfsJSnvpsIk{o75PUHnQ*}5RV0X68lBYpm5j)J#}Np7{LJ^i+hF- zIwdbmRBZ+)s~lQGm4&)$kEN5zxDtsAA+;GbgeaqRk;HSLYSSrAy>5i*F=SMu*a0B| zegO~=a1iGiiUC2diEx%y%o!lgI2y`B`Wdqy?H(yB=CelsP0ql;;_xBq2^cFqiC_-^ zIQ%sYsO(f$RwSY$Z!jtwOUPtfGOo`MJx2shRs>B}rdju525N1`V5p3T0-WM><)5mw ztozE-eAm0N5WU{AAeO!TciVavhOWztKPb2Dx!X*=g`{a0+4ZI$kxJKax|x}T`Dt-q4GoLWVI zV3X8>i|`|8MesNRB!%jUM53uwS|N_69EnJKv5Tw@rA~DcCpRgAmnBHJX$k2e9Y8RI zpbY`>nA#CTz9(P=5TZnXOx1Ewo&9m%09X zytm3&c}HQ-!ti3tVr;SfTBy{yt4cxJE!!6zr9D5mkN7f6S$t$21$npDX#=}xpF|3;Dxf3u@dCbQr3SH!PKe61FS_c#C~~I8an^mq4PVFA>0@C9 zF3>nl5T!Ip9{8~8s<){jl><+2LbV_iWr-*iT`iDRBEu752mqqFsu9wG089iGF-2#F zx2VXHS7}OEX)>4g4~2+u2NtjN@42# z=kwGB_8+M8bdU?F^Z^O|-^}KC3jBw-u)_Bnz=Oa5BpFrq27(rqm!}eOMRlCS$c99} znx~D-r*g40#BN6c1%-ML9ugjuYR8w5a8z{=RP$3%TY*2KDb|PZKpMu#KL>!O##?l5 zs9Jb;bER+l=gu3>rNg&;<-UC-?<4c}!rrQb^7=2mHTPE0v$@jUx45;~_4qvZp%a3d zwoc$)N7YI-cP?!CblbIUCExZ+*XB>oUOjuKYoOFMQ104+Lo2~u^V}8ZWoO|?$=h3L zU60fL??DUY@48R1?&iB~1C_Qtw_0!6i~d94L9T0th{xAlWufn{GI(;-#nz#{)Nl8; zA8KZaSzW=TX88FkjQqPD1tc3Oz{WaT-ee7i#?UiFXh{VB22;a9EA+rTVntLAZM(D& z>h*@7*p5tFy&%@C{@XYhIc0^_|ClShbe&x|S#IzD)#$BF|2F!?p7P^IZ+ngvZO7KC z3tT%<7sG)3y(S)vIRn$75MwT#01P&VK5T8bYjn&Ibgxo)y4`*cdSo<{#BMM6Kkc~I zv9$Zw`+l+Sw&$6m?HRHS@ESrvPeWsk$Ew+8VuW9Ss%o2((o>?O%#anS7D$$Wvn?IQ zp-6;>TWPcv#9*Mhmn#4u^Wp5s4Fex{_f)nGeq*)r9rv2r=HcyH?=18! z?7F(WN&&h!d>lNkbxL~JGlIi#;h~e7SV1R>w1U4Em-Qug0Z#{ zV{H#Qq$c>RYBNG!;*UM6+C(8v(p(RT0Zh?GxA^;rw!nbUA}2rrKOXHU6wQx64cN0m znxt=T&=OX`ygvdDl{=G8CmtfV&BIz2vd&Y#40GfFfR!?PY;n`g(WSj#OyAyc?6xOV zw1vJ!R56J7Zc)8J%aBkIC=kxtUYL;dI?RT}6XC>-G?q)RxpZA7ufR|l{Z~yUM?Zb- z+G}4vvUf?i?b%nf?IX*5m^`B0lMW#uA4ECQ1dj+Rkx}AFf4dwa8xUUjM?mB^0Icwq zTi55F&kJR4J#mj&{&*vaIF1sbImkG|l!)U*BKEHoi2a&8;CENZgJH&(i_lXq4d8o&XU4XoIt z$&p|YD41FA>Uv;)-3Z;)^}B*vv} zfQ3|-JbebF4-&g+X-2iAL?w}qX%4ck_F-6ETJ3+K0yjI5MkBdg$d`P7zpp->)+m}( z3}r+aCPxZ@SEtJ@S%(fLk-1hCfj!#?Ok~Y6ItJO|S11M3Nu*3-vVK*`npsZBOXFT3 zH%+{>gTzZy+3~m%v`WWeniN2QMAJe$6jaqQ5;_?2*o8M#9A;`8x%0q)<{{T!X3k>1V;zmyf}TXhu&O|KLQi^E zH9{3yF@RfDptV5|JjR>rVhOX+na@EO1Lxz)L;x9MFLKNIv?K(kqLLEOI6{C+ii9Z3 zfw&Tg%OpS$1v1Bh?1Kfaf#OmcE|gMu4Z2}^<94e?l`n} zz3~RH_#1DS?}0(egcyiLWi2xufbPJFmyZsZBZ5xV0!xNFCzXda%5bj-RT8L3XMhM& z0s-NF2XsuQv>3)B!-W^5{&Bw%IS5C* zjywm>oY$Xst`!AbHgUbtGLlGLx6@EH3$QbeSyc=pVK53!&FB$5quR|(p=#A__i7Ul zxmNAIRLr1@qN@#~?Kki-8Tk^_gw1uSX|4(MK=yL>r$72HTd!skF{860kV2o4?B!`q ztj(R&>2q4a9g|X*aYcnd3S?Ak{bnGgn6de{YiXtaJ*Hp^W@gr)lwt~JBVGTHx0qR7 z^DU+@{|#^9jo{FD%eZ+dbkkz=fo-vdG#NpkLmEMF3c+pw5L6NIAzf%^z&l23O!WeaFAGu+!LonoAN1>Dp21+EMO$EYIeLFCCdX zaw#+yD%mz>{9&SfPQ$0x?A8~TBM?tS6A>e#&ve$shKdTh988z!UxHo{bXDA>9>RYXG0L%5_z5fC9H z0V#1#Fe4}t>C7T_7y*e?ImD1#wZprJSRMfhYu`r#cGwzGqRcQt()km+?{EK=MKk9ui9TDR}6KBE;Hh{!z>p z!8MPw{)VSYL3Q!eeSGLaE@0L57QUsHms+NvTJ@6IG~Zw7sX`j6e_(uK&Dc9oR~boEUEqa*A2>kVKq-aI zPV@g@aL2#0?ZZc29yvT3 z0T(oKY-Dt3cxZGe5*j)-qFUklcq*O{r3oBoAGr_{$=}Pg3^`$d9(?H|2>KC_v_9JEY3pvLF3r*V#GeBwD z4w>|q=o9oetdsUttj_%5`Ih|iZ~v%D>b+YRcU~LU@ZC>p&qFW#Zs%{e5&RzS&PU%q zwamlZYM1^V%c}Qa-FOe;_#S*3?*aTCZ&~KyS#5UGen>VxzZfoU*;DF#3V4n7- literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2a08ca3198388e05a8f6e04294e711d0f4fdede0 GIT binary patch literal 4271 zcmai1TWnLw8J=_VJ+@P^~K(R;vPk6q;{q5n|HHSclW9P9A9$5 zz{sBKfByOBzkKu0-Qh9!L`=)|)|i>q zwUlZJFpO|kb2_EzS~i_hvr|OTQaJ*Xz7u*bm(uVXl*y@d{T5HH^M>86Nxy8b34$nKNhx(B`gj(u;aRvbYUlPV~Kc%MC`gQCcV&i z4)NFxeIIGU9^%B_8ZV%&a>a~;3;V8%4{VVTO8RjV&`Kmw*%$cvfkzNG;{deHlVT)f zHJ#FFE@ht3HIwS<)KAV3b&ODXNT)I!IW?TshS>l}40(v^Ie8+JO=skkJeEq2riO_O z3X=zkoYf37rK$wSEVrgBgIO&_CoQk8sgu<~!g5ezj#DiyR0U)Wvk)7vy$#g@n&xIa zCI?-+)J}4Zo8}wN^V8fkQtI^6JdCO~M`#k==MrFV!5}7Oo<_Y;!GvfKb!dIYVEfCm z{N2a#jGiO$5j~wDT8?B?IBEQCs*jLSlf;b)b1;?BqG>f7Hwe8#XxyObc*+3wMtm4t zC2pn$RdSkWgr-cL#))<%u4V`0W0Ph^*AB%F9E=-TlSHekGvZ^}vAB}eOhUm0<2fA@ z)reQLt)wd!iH%KKE(M6PrlL%>Zn9RaHs1sXFrrY+pt1+~wiUeXD{VXPNV8{4-qwP* zV`ay#J3X`KR=2-4E6)2%JNL|r&s=S5@By+U-OLc0u4@hESnSz0c?g{k(TCguTDQp@ zH-|$-}s?aPqi@@{w>#oLpPNJHJ zJgEA>C9rSeRJ!gFuq)gD5d3Wq`z3!4am>%qd%F<2#%(y4FwND@uwfQFtTsE^i_pj1 z0>`2G-6D9`?}Z7D`hhb*gmajfDbu78(c)vTTihsZfdv|b%3$h{<(V1U3?0jTY#1Em z>KN^x+Pl@7&TYJBsb?xCIlI6)7c3^60V!0J1t%A2Iiset}=GoksN^%6853?mh z)lIe}KoCcGTX6db1~c{h?^k4ZC<+sCs-=f)T;ONsAfgrWDAvQCAiDOmeCe;i>4$i)GWKoVd}$jx7z7EYq~-hhA?r$y{wflQlU zCD;6Rli{jert8uG2Yw__n_q9&DeMzBIMGIm`O^$QB2I9z=+xn8RMVrC8&i(U(I~q# zYh&F`P-IFjk7p?{$DXo$eg&4=!lCl~mS1ChB%Zal_Iz@3rqI+RXK|jcjeoN5Ege5YcH<&xX zEh$%>yfp(EkxG=@xH+Cu6>>GLj$>j>b#KOo##DQNm+=WyGicQtT=woPdUxheJoU;e zp^j4U?3%!b{bj^A`O6LzXt^;uH=6HS@^{P%CI7a3cup(%ns1z&J2!u!0@wS%M8LleHPmh~XzkXaAB z>3Zm1f`Ds`c`xBvhl3aK!~*cFiLjx43D3GjFXh<)n}KKZ3(o#ZIT>m@s>!Fr(8p<- z&_0kC0Gz=GWr=`|-Ig1&S$G9N@)i*)*BzuEh~=opxN6pN!U~{=0b~^jG<||#WvG%3 zPjzl~^adoyfuV5^DhBgA@@ERoJ+qFIcYFSwW2b_t$LeqHj=p!M1;89)?0*MQ|~5zj*WzpO?cOT+h1(jvyp5i z&{o^@`Kz~nn_Prry!bW&=V*`;Hg>}YRj1|{0`iH9c?9|c*kJuur9Dh{4A!b}(+m)0 zTcGlq$O6*r-fV#92+lGVT~LAgUA|>kSJBl~@`X#jAX7Os%f9xaul>JH(e1HM4$>qb z_wm6eiAaccLu+{y1@iK706N9;DavKQx=IFMITZ!#X}Ib;fQ~Xhrc7J#+%PE(v7SR8 z93g4b5(jl%r81*nz-RdYp3Q7JN8nk2D+gyfq0C<>%b@NfTOQl_D7#AR$^{+cZ%|!F z{}9iwHn-<L-VUd9k;|VdBi1gOYj#@>acs704Y3v&I6`H5H literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5162443c95fb61d4d1932ddf2e54ff13e0703128 GIT binary patch literal 1742 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d0d6b341274e4ca78eee768570c6a5f3c89d6b6 GIT binary patch literal 5001 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 None: + object.__setattr__(self, "name", name) + object.__setattr__(self, "version", parse_version(version)) + object.__setattr__(self, "link", link) + + def __str__(self) -> str: + return f"{self.name!r} candidate (version {self.version} at {self.link})" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/direct_url.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 00000000..fc5ec8d4 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,224 @@ +""" PEP 610 """ + +import json +import re +import urllib.parse +from dataclasses import dataclass +from typing import Any, ClassVar, Dict, Iterable, Optional, Type, TypeVar, Union + +__all__ = [ + "DirectUrl", + "DirectUrlValidationError", + "DirInfo", + "ArchiveInfo", + "VcsInfo", +] + +T = TypeVar("T") + +DIRECT_URL_METADATA_NAME = "direct_url.json" +ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$") + + +class DirectUrlValidationError(Exception): + pass + + +def _get( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> Optional[T]: + """Get value from dictionary and verify expected type.""" + if key not in d: + return default + value = d[key] + if not isinstance(value, expected_type): + raise DirectUrlValidationError( + f"{value!r} has unexpected type for {key} (expected {expected_type})" + ) + return value + + +def _get_required( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> T: + value = _get(d, expected_type, key, default) + if value is None: + raise DirectUrlValidationError(f"{key} must have a value") + return value + + +def _exactly_one_of(infos: Iterable[Optional["InfoType"]]) -> "InfoType": + infos = [info for info in infos if info is not None] + if not infos: + raise DirectUrlValidationError( + "missing one of archive_info, dir_info, vcs_info" + ) + if len(infos) > 1: + raise DirectUrlValidationError( + "more than one of archive_info, dir_info, vcs_info" + ) + assert infos[0] is not None + return infos[0] + + +def _filter_none(**kwargs: Any) -> Dict[str, Any]: + """Make dict excluding None values.""" + return {k: v for k, v in kwargs.items() if v is not None} + + +@dataclass +class VcsInfo: + name: ClassVar = "vcs_info" + + vcs: str + commit_id: str + requested_revision: Optional[str] = None + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["VcsInfo"]: + if d is None: + return None + return cls( + vcs=_get_required(d, str, "vcs"), + commit_id=_get_required(d, str, "commit_id"), + requested_revision=_get(d, str, "requested_revision"), + ) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash: Optional[str] = None, + hashes: Optional[Dict[str, str]] = None, + ) -> None: + # set hashes before hash, since the hash setter will further populate hashes + self.hashes = hashes + self.hash = hash + + @property + def hash(self) -> Optional[str]: + return self._hash + + @hash.setter + def hash(self, value: Optional[str]) -> None: + if value is not None: + # Auto-populate the hashes key to upgrade to the new format automatically. + # We don't back-populate the legacy hash key from hashes. + try: + hash_name, hash_value = value.split("=", 1) + except ValueError: + raise DirectUrlValidationError( + f"invalid archive_info.hash format: {value!r}" + ) + if self.hashes is None: + self.hashes = {hash_name: hash_value} + elif hash_name not in self.hashes: + self.hashes = self.hashes.copy() + self.hashes[hash_name] = hash_value + self._hash = value + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["ArchiveInfo"]: + if d is None: + return None + return cls(hash=_get(d, str, "hash"), hashes=_get(d, dict, "hashes")) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(hash=self.hash, hashes=self.hashes) + + +@dataclass +class DirInfo: + name: ClassVar = "dir_info" + + editable: bool = False + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["DirInfo"]: + if d is None: + return None + return cls(editable=_get_required(d, bool, "editable", default=False)) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(editable=self.editable or None) + + +InfoType = Union[ArchiveInfo, DirInfo, VcsInfo] + + +@dataclass +class DirectUrl: + url: str + info: InfoType + subdirectory: Optional[str] = None + + def _remove_auth_from_netloc(self, netloc: str) -> str: + if "@" not in netloc: + return netloc + user_pass, netloc_no_user_pass = netloc.split("@", 1) + if ( + isinstance(self.info, VcsInfo) + and self.info.vcs == "git" + and user_pass == "git" + ): + return netloc + if ENV_VAR_RE.match(user_pass): + return netloc + return netloc_no_user_pass + + @property + def redacted_url(self) -> str: + """url with user:password part removed unless it is formed with + environment variables as specified in PEP 610, or it is ``git`` + in the case of a git URL. + """ + purl = urllib.parse.urlsplit(self.url) + netloc = self._remove_auth_from_netloc(purl.netloc) + surl = urllib.parse.urlunsplit( + (purl.scheme, netloc, purl.path, purl.query, purl.fragment) + ) + return surl + + def validate(self) -> None: + self.from_dict(self.to_dict()) + + @classmethod + def from_dict(cls, d: Dict[str, Any]) -> "DirectUrl": + return DirectUrl( + url=_get_required(d, str, "url"), + subdirectory=_get(d, str, "subdirectory"), + info=_exactly_one_of( + [ + ArchiveInfo._from_dict(_get(d, dict, "archive_info")), + DirInfo._from_dict(_get(d, dict, "dir_info")), + VcsInfo._from_dict(_get(d, dict, "vcs_info")), + ] + ), + ) + + def to_dict(self) -> Dict[str, Any]: + res = _filter_none( + url=self.redacted_url, + subdirectory=self.subdirectory, + ) + res[self.info.name] = self.info._to_dict() + return res + + @classmethod + def from_json(cls, s: str) -> "DirectUrl": + return cls.from_dict(json.loads(s)) + + def to_json(self) -> str: + return json.dumps(self.to_dict(), sort_keys=True) + + def is_local_editable(self) -> bool: + return isinstance(self.info, DirInfo) and self.info.editable diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/format_control.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 00000000..ccd11272 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,78 @@ +from typing import FrozenSet, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import CommandError + + +class FormatControl: + """Helper for managing formats from which a package can be installed.""" + + __slots__ = ["no_binary", "only_binary"] + + def __init__( + self, + no_binary: Optional[Set[str]] = None, + only_binary: Optional[Set[str]] = None, + ) -> None: + if no_binary is None: + no_binary = set() + if only_binary is None: + only_binary = set() + + self.no_binary = no_binary + self.only_binary = only_binary + + def __eq__(self, other: object) -> bool: + if not isinstance(other, self.__class__): + return NotImplemented + + if self.__slots__ != other.__slots__: + return False + + return all(getattr(self, k) == getattr(other, k) for k in self.__slots__) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.no_binary}, {self.only_binary})" + + @staticmethod + def handle_mutual_excludes(value: str, target: Set[str], other: Set[str]) -> None: + if value.startswith("-"): + raise CommandError( + "--no-binary / --only-binary option requires 1 argument." + ) + new = value.split(",") + while ":all:" in new: + other.clear() + target.clear() + target.add(":all:") + del new[: new.index(":all:") + 1] + # Without a none, we want to discard everything as :all: covers it + if ":none:" not in new: + return + for name in new: + if name == ":none:": + target.clear() + continue + name = canonicalize_name(name) + other.discard(name) + target.add(name) + + def get_allowed_formats(self, canonical_name: str) -> FrozenSet[str]: + result = {"binary", "source"} + if canonical_name in self.only_binary: + result.discard("source") + elif canonical_name in self.no_binary: + result.discard("binary") + elif ":all:" in self.only_binary: + result.discard("source") + elif ":all:" in self.no_binary: + result.discard("binary") + return frozenset(result) + + def disallow_binaries(self) -> None: + self.handle_mutual_excludes( + ":all:", + self.no_binary, + self.only_binary, + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/index.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/index.py new file mode 100644 index 00000000..b94c3251 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/index.py @@ -0,0 +1,28 @@ +import urllib.parse + + +class PackageIndex: + """Represents a Package Index and provides easier access to endpoints""" + + __slots__ = ["url", "netloc", "simple_url", "pypi_url", "file_storage_domain"] + + def __init__(self, url: str, file_storage_domain: str) -> None: + super().__init__() + self.url = url + self.netloc = urllib.parse.urlsplit(url).netloc + self.simple_url = self._url_for_path("simple") + self.pypi_url = self._url_for_path("pypi") + + # This is part of a temporary hack used to block installs of PyPI + # packages which depend on external urls only necessary until PyPI can + # block such packages themselves + self.file_storage_domain = file_storage_domain + + def _url_for_path(self, path: str) -> str: + return urllib.parse.urljoin(self.url, path) + + +PyPI = PackageIndex("https://pypi.org/", file_storage_domain="files.pythonhosted.org") +TestPyPI = PackageIndex( + "https://test.pypi.org/", file_storage_domain="test-files.pythonhosted.org" +) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/installation_report.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/installation_report.py new file mode 100644 index 00000000..b9c6330d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/installation_report.py @@ -0,0 +1,56 @@ +from typing import Any, Dict, Sequence + +from pip._vendor.packaging.markers import default_environment + +from pip import __version__ +from pip._internal.req.req_install import InstallRequirement + + +class InstallationReport: + def __init__(self, install_requirements: Sequence[InstallRequirement]): + self._install_requirements = install_requirements + + @classmethod + def _install_req_to_dict(cls, ireq: InstallRequirement) -> Dict[str, Any]: + assert ireq.download_info, f"No download_info for {ireq}" + res = { + # PEP 610 json for the download URL. download_info.archive_info.hashes may + # be absent when the requirement was installed from the wheel cache + # and the cache entry was populated by an older pip version that did not + # record origin.json. + "download_info": ireq.download_info.to_dict(), + # is_direct is true if the requirement was a direct URL reference (which + # includes editable requirements), and false if the requirement was + # downloaded from a PEP 503 index or --find-links. + "is_direct": ireq.is_direct, + # is_yanked is true if the requirement was yanked from the index, but + # was still selected by pip to conform to PEP 592. + "is_yanked": ireq.link.is_yanked if ireq.link else False, + # requested is true if the requirement was specified by the user (aka + # top level requirement), and false if it was installed as a dependency of a + # requirement. https://peps.python.org/pep-0376/#requested + "requested": ireq.user_supplied, + # PEP 566 json encoding for metadata + # https://www.python.org/dev/peps/pep-0566/#json-compatible-metadata + "metadata": ireq.get_dist().metadata_dict, + } + if ireq.user_supplied and ireq.extras: + # For top level requirements, the list of requested extras, if any. + res["requested_extras"] = sorted(ireq.extras) + return res + + def to_dict(self) -> Dict[str, Any]: + return { + "version": "1", + "pip_version": __version__, + "install": [ + self._install_req_to_dict(ireq) for ireq in self._install_requirements + ], + # https://peps.python.org/pep-0508/#environment-markers + # TODO: currently, the resolver uses the default environment to evaluate + # environment markers, so that is what we report here. In the future, it + # should also take into account options such as --python-version or + # --platform, perhaps under the form of an environment_override field? + # https://github.com/pypa/pip/issues/11198 + "environment": default_environment(), + } diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/link.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/link.py new file mode 100644 index 00000000..2f41f2f6 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/link.py @@ -0,0 +1,590 @@ +import functools +import itertools +import logging +import os +import posixpath +import re +import urllib.parse +from dataclasses import dataclass +from typing import ( + TYPE_CHECKING, + Any, + Dict, + List, + Mapping, + NamedTuple, + Optional, + Tuple, + Union, +) + +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + pairwise, + redact_auth_from_url, + split_auth_from_netloc, + splitext, +) +from pip._internal.utils.urls import path_to_url, url_to_path + +if TYPE_CHECKING: + from pip._internal.index.collector import IndexContent + +logger = logging.getLogger(__name__) + + +# Order matters, earlier hashes have a precedence over later hashes for what +# we will pick to use. +_SUPPORTED_HASHES = ("sha512", "sha384", "sha256", "sha224", "sha1", "md5") + + +@dataclass(frozen=True) +class LinkHash: + """Links to content may have embedded hash values. This class parses those. + + `name` must be any member of `_SUPPORTED_HASHES`. + + This class can be converted to and from `ArchiveInfo`. While ArchiveInfo intends to + be JSON-serializable to conform to PEP 610, this class contains the logic for + parsing a hash name and value for correctness, and then checking whether that hash + conforms to a schema with `.is_hash_allowed()`.""" + + name: str + value: str + + _hash_url_fragment_re = re.compile( + # NB: we do not validate that the second group (.*) is a valid hex + # digest. Instead, we simply keep that string in this class, and then check it + # against Hashes when hash-checking is needed. This is easier to debug than + # proactively discarding an invalid hex digest, as we handle incorrect hashes + # and malformed hashes in the same place. + r"[#&]({choices})=([^&]*)".format( + choices="|".join(re.escape(hash_name) for hash_name in _SUPPORTED_HASHES) + ), + ) + + def __post_init__(self) -> None: + assert self.name in _SUPPORTED_HASHES + + @classmethod + @functools.lru_cache(maxsize=None) + def find_hash_url_fragment(cls, url: str) -> Optional["LinkHash"]: + """Search a string for a checksum algorithm name and encoded output value.""" + match = cls._hash_url_fragment_re.search(url) + if match is None: + return None + name, value = match.groups() + return cls(name=name, value=value) + + def as_dict(self) -> Dict[str, str]: + return {self.name: self.value} + + def as_hashes(self) -> Hashes: + """Return a Hashes instance which checks only for the current hash.""" + return Hashes({self.name: [self.value]}) + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the current hash is allowed by `hashes`. + """ + if hashes is None: + return False + return hashes.is_hash_allowed(self.name, hex_digest=self.value) + + +@dataclass(frozen=True) +class MetadataFile: + """Information about a core metadata file associated with a distribution.""" + + hashes: Optional[Dict[str, str]] + + def __post_init__(self) -> None: + if self.hashes is not None: + assert all(name in _SUPPORTED_HASHES for name in self.hashes) + + +def supported_hashes(hashes: Optional[Dict[str, str]]) -> Optional[Dict[str, str]]: + # Remove any unsupported hash types from the mapping. If this leaves no + # supported hashes, return None + if hashes is None: + return None + hashes = {n: v for n, v in hashes.items() if n in _SUPPORTED_HASHES} + if not hashes: + return None + return hashes + + +def _clean_url_path_part(part: str) -> str: + """ + Clean a "part" of a URL path (i.e. after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + return urllib.parse.quote(urllib.parse.unquote(part)) + + +def _clean_file_url_path(part: str) -> str: + """ + Clean the first part of a URL path that corresponds to a local + filesystem path (i.e. the first part after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + # Also, on Windows the path part might contain a drive letter which + # should not be quoted. On Linux where drive letters do not + # exist, the colon should be quoted. We rely on urllib.request + # to do the right thing here. + return urllib.request.pathname2url(urllib.request.url2pathname(part)) + + +# percent-encoded: / +_reserved_chars_re = re.compile("(@|%2F)", re.IGNORECASE) + + +def _clean_url_path(path: str, is_local_path: bool) -> str: + """ + Clean the path portion of a URL. + """ + if is_local_path: + clean_func = _clean_file_url_path + else: + clean_func = _clean_url_path_part + + # Split on the reserved characters prior to cleaning so that + # revision strings in VCS URLs are properly preserved. + parts = _reserved_chars_re.split(path) + + cleaned_parts = [] + for to_clean, reserved in pairwise(itertools.chain(parts, [""])): + cleaned_parts.append(clean_func(to_clean)) + # Normalize %xx escapes (e.g. %2f -> %2F) + cleaned_parts.append(reserved.upper()) + + return "".join(cleaned_parts) + + +def _ensure_quoted_url(url: str) -> str: + """ + Make sure a link is fully quoted. + For example, if ' ' occurs in the URL, it will be replaced with "%20", + and without double-quoting other characters. + """ + # Split the URL into parts according to the general structure + # `scheme://netloc/path;parameters?query#fragment`. + result = urllib.parse.urlparse(url) + # If the netloc is empty, then the URL refers to a local filesystem path. + is_local_path = not result.netloc + path = _clean_url_path(result.path, is_local_path=is_local_path) + return urllib.parse.urlunparse(result._replace(path=path)) + + +@functools.total_ordering +class Link: + """Represents a parsed link from a Package Index's simple URL""" + + __slots__ = [ + "_parsed_url", + "_url", + "_hashes", + "comes_from", + "requires_python", + "yanked_reason", + "metadata_file_data", + "cache_link_parsing", + "egg_fragment", + ] + + def __init__( + self, + url: str, + comes_from: Optional[Union[str, "IndexContent"]] = None, + requires_python: Optional[str] = None, + yanked_reason: Optional[str] = None, + metadata_file_data: Optional[MetadataFile] = None, + cache_link_parsing: bool = True, + hashes: Optional[Mapping[str, str]] = None, + ) -> None: + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of IndexContent where the link was found, + or string. + :param requires_python: String containing the `Requires-Python` + metadata field, specified in PEP 345. This may be specified by + a data-requires-python attribute in the HTML link tag, as + described in PEP 503. + :param yanked_reason: the reason the file has been yanked, if the + file has been yanked, or None if the file hasn't been yanked. + This is the value of the "data-yanked" attribute, if present, in + a simple repository HTML link. If the file has been yanked but + no reason was provided, this should be the empty string. See + PEP 592 for more information and the specification. + :param metadata_file_data: the metadata attached to the file, or None if + no such metadata is provided. This argument, if not None, indicates + that a separate metadata file exists, and also optionally supplies + hashes for that file. + :param cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link should be cached. PyPI + URLs should generally have this set to False, for example. + :param hashes: A mapping of hash names to digests to allow us to + determine the validity of a download. + """ + + # The comes_from, requires_python, and metadata_file_data arguments are + # only used by classmethods of this class, and are not used in client + # code directly. + + # url can be a UNC windows share + if url.startswith("\\\\"): + url = path_to_url(url) + + self._parsed_url = urllib.parse.urlsplit(url) + # Store the url as a private attribute to prevent accidentally + # trying to set a new value. + self._url = url + + link_hash = LinkHash.find_hash_url_fragment(url) + hashes_from_link = {} if link_hash is None else link_hash.as_dict() + if hashes is None: + self._hashes = hashes_from_link + else: + self._hashes = {**hashes, **hashes_from_link} + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + self.metadata_file_data = metadata_file_data + + self.cache_link_parsing = cache_link_parsing + self.egg_fragment = self._egg_fragment() + + @classmethod + def from_json( + cls, + file_data: Dict[str, Any], + page_url: str, + ) -> Optional["Link"]: + """ + Convert an pypi json document from a simple repository page into a Link. + """ + file_url = file_data.get("url") + if file_url is None: + return None + + url = _ensure_quoted_url(urllib.parse.urljoin(page_url, file_url)) + pyrequire = file_data.get("requires-python") + yanked_reason = file_data.get("yanked") + hashes = file_data.get("hashes", {}) + + # PEP 714: Indexes must use the name core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = file_data.get("core-metadata") + if metadata_info is None: + metadata_info = file_data.get("dist-info-metadata") + + # The metadata info value may be a boolean, or a dict of hashes. + if isinstance(metadata_info, dict): + # The file exists, and hashes have been supplied + metadata_file_data = MetadataFile(supported_hashes(metadata_info)) + elif metadata_info: + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + else: + # False or not present: the file does not exist + metadata_file_data = None + + # The Link.yanked_reason expects an empty string instead of a boolean. + if yanked_reason and not isinstance(yanked_reason, str): + yanked_reason = "" + # The Link.yanked_reason expects None instead of False. + elif not yanked_reason: + yanked_reason = None + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + hashes=hashes, + metadata_file_data=metadata_file_data, + ) + + @classmethod + def from_element( + cls, + anchor_attribs: Dict[str, Optional[str]], + page_url: str, + base_url: str, + ) -> Optional["Link"]: + """ + Convert an anchor element's attributes in a simple repository page to a Link. + """ + href = anchor_attribs.get("href") + if not href: + return None + + url = _ensure_quoted_url(urllib.parse.urljoin(base_url, href)) + pyrequire = anchor_attribs.get("data-requires-python") + yanked_reason = anchor_attribs.get("data-yanked") + + # PEP 714: Indexes must use the name data-core-metadata, but + # clients should support the old name as a fallback for compatibility. + metadata_info = anchor_attribs.get("data-core-metadata") + if metadata_info is None: + metadata_info = anchor_attribs.get("data-dist-info-metadata") + # The metadata info value may be the string "true", or a string of + # the form "hashname=hashval" + if metadata_info == "true": + # The file exists, but there are no hashes + metadata_file_data = MetadataFile(None) + elif metadata_info is None: + # The file does not exist + metadata_file_data = None + else: + # The file exists, and hashes have been supplied + hashname, sep, hashval = metadata_info.partition("=") + if sep == "=": + metadata_file_data = MetadataFile(supported_hashes({hashname: hashval})) + else: + # Error - data is wrong. Treat as no hashes supplied. + logger.debug( + "Index returned invalid data-dist-info-metadata value: %s", + metadata_info, + ) + metadata_file_data = MetadataFile(None) + + return cls( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + metadata_file_data=metadata_file_data, + ) + + def __str__(self) -> str: + if self.requires_python: + rp = f" (requires-python:{self.requires_python})" + else: + rp = "" + if self.comes_from: + return f"{redact_auth_from_url(self._url)} (from {self.comes_from}){rp}" + else: + return redact_auth_from_url(str(self._url)) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash(self.url) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Link): + return NotImplemented + return self.url == other.url + + def __lt__(self, other: Any) -> bool: + if not isinstance(other, Link): + return NotImplemented + return self.url < other.url + + @property + def url(self) -> str: + return self._url + + @property + def filename(self) -> str: + path = self.path.rstrip("/") + name = posixpath.basename(path) + if not name: + # Make sure we don't leak auth information if the netloc + # includes a username and password. + netloc, user_pass = split_auth_from_netloc(self.netloc) + return netloc + + name = urllib.parse.unquote(name) + assert name, f"URL {self._url!r} produced no filename" + return name + + @property + def file_path(self) -> str: + return url_to_path(self.url) + + @property + def scheme(self) -> str: + return self._parsed_url.scheme + + @property + def netloc(self) -> str: + """ + This can contain auth information. + """ + return self._parsed_url.netloc + + @property + def path(self) -> str: + return urllib.parse.unquote(self._parsed_url.path) + + def splitext(self) -> Tuple[str, str]: + return splitext(posixpath.basename(self.path.rstrip("/"))) + + @property + def ext(self) -> str: + return self.splitext()[1] + + @property + def url_without_fragment(self) -> str: + scheme, netloc, path, query, fragment = self._parsed_url + return urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + + _egg_fragment_re = re.compile(r"[#&]egg=([^&]*)") + + # Per PEP 508. + _project_name_re = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE + ) + + def _egg_fragment(self) -> Optional[str]: + match = self._egg_fragment_re.search(self._url) + if not match: + return None + + # An egg fragment looks like a PEP 508 project name, along with + # an optional extras specifier. Anything else is invalid. + project_name = match.group(1) + if not self._project_name_re.match(project_name): + deprecated( + reason=f"{self} contains an egg fragment with a non-PEP 508 name", + replacement="to use the req @ url syntax, and remove the egg fragment", + gone_in="25.0", + issue=11617, + ) + + return project_name + + _subdirectory_fragment_re = re.compile(r"[#&]subdirectory=([^&]*)") + + @property + def subdirectory_fragment(self) -> Optional[str]: + match = self._subdirectory_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + def metadata_link(self) -> Optional["Link"]: + """Return a link to the associated core metadata file (if any).""" + if self.metadata_file_data is None: + return None + metadata_url = f"{self.url_without_fragment}.metadata" + if self.metadata_file_data.hashes is None: + return Link(metadata_url) + return Link(metadata_url, hashes=self.metadata_file_data.hashes) + + def as_hashes(self) -> Hashes: + return Hashes({k: [v] for k, v in self._hashes.items()}) + + @property + def hash(self) -> Optional[str]: + return next(iter(self._hashes.values()), None) + + @property + def hash_name(self) -> Optional[str]: + return next(iter(self._hashes), None) + + @property + def show_url(self) -> str: + return posixpath.basename(self._url.split("#", 1)[0].split("?", 1)[0]) + + @property + def is_file(self) -> bool: + return self.scheme == "file" + + def is_existing_dir(self) -> bool: + return self.is_file and os.path.isdir(self.file_path) + + @property + def is_wheel(self) -> bool: + return self.ext == WHEEL_EXTENSION + + @property + def is_vcs(self) -> bool: + from pip._internal.vcs import vcs + + return self.scheme in vcs.all_schemes + + @property + def is_yanked(self) -> bool: + return self.yanked_reason is not None + + @property + def has_hash(self) -> bool: + return bool(self._hashes) + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the link has a hash and it is allowed by `hashes`. + """ + if hashes is None: + return False + return any(hashes.is_hash_allowed(k, v) for k, v in self._hashes.items()) + + +class _CleanResult(NamedTuple): + """Convert link for equivalency check. + + This is used in the resolver to check whether two URL-specified requirements + likely point to the same distribution and can be considered equivalent. This + equivalency logic avoids comparing URLs literally, which can be too strict + (e.g. "a=1&b=2" vs "b=2&a=1") and produce conflicts unexpecting to users. + + Currently this does three things: + + 1. Drop the basic auth part. This is technically wrong since a server can + serve different content based on auth, but if it does that, it is even + impossible to guarantee two URLs without auth are equivalent, since + the user can input different auth information when prompted. So the + practical solution is to assume the auth doesn't affect the response. + 2. Parse the query to avoid the ordering issue. Note that ordering under the + same key in the query are NOT cleaned; i.e. "a=1&a=2" and "a=2&a=1" are + still considered different. + 3. Explicitly drop most of the fragment part, except ``subdirectory=`` and + hash values, since it should have no impact the downloaded content. Note + that this drops the "egg=" part historically used to denote the requested + project (and extras), which is wrong in the strictest sense, but too many + people are supplying it inconsistently to cause superfluous resolution + conflicts, so we choose to also ignore them. + """ + + parsed: urllib.parse.SplitResult + query: Dict[str, List[str]] + subdirectory: str + hashes: Dict[str, str] + + +def _clean_link(link: Link) -> _CleanResult: + parsed = link._parsed_url + netloc = parsed.netloc.rsplit("@", 1)[-1] + # According to RFC 8089, an empty host in file: means localhost. + if parsed.scheme == "file" and not netloc: + netloc = "localhost" + fragment = urllib.parse.parse_qs(parsed.fragment) + if "egg" in fragment: + logger.debug("Ignoring egg= fragment in %s", link) + try: + # If there are multiple subdirectory values, use the first one. + # This matches the behavior of Link.subdirectory_fragment. + subdirectory = fragment["subdirectory"][0] + except (IndexError, KeyError): + subdirectory = "" + # If there are multiple hash values under the same algorithm, use the + # first one. This matches the behavior of Link.hash_value. + hashes = {k: fragment[k][0] for k in _SUPPORTED_HASHES if k in fragment} + return _CleanResult( + parsed=parsed._replace(netloc=netloc, query="", fragment=""), + query=urllib.parse.parse_qs(parsed.query), + subdirectory=subdirectory, + hashes=hashes, + ) + + +@functools.lru_cache(maxsize=None) +def links_equivalent(link1: Link, link2: Link) -> bool: + return _clean_link(link1) == _clean_link(link2) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/scheme.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 00000000..06a9a550 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/scheme.py @@ -0,0 +1,25 @@ +""" +For types associated with installation schemes. + +For a general overview of available schemes and their context, see +https://docs.python.org/3/install/index.html#alternate-installation. +""" + +from dataclasses import dataclass + +SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] + + +@dataclass(frozen=True) +class Scheme: + """A Scheme holds paths which are used as the base directories for + artifacts associated with a Python package. + """ + + __slots__ = SCHEME_KEYS + + platlib: str + purelib: str + headers: str + scripts: str + data: str diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/search_scope.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 00000000..ee7bc862 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,127 @@ +import itertools +import logging +import os +import posixpath +import urllib.parse +from dataclasses import dataclass +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.models.index import PyPI +from pip._internal.utils.compat import has_tls +from pip._internal.utils.misc import normalize_path, redact_auth_from_url + +logger = logging.getLogger(__name__) + + +@dataclass(frozen=True) +class SearchScope: + """ + Encapsulates the locations that pip is configured to search. + """ + + __slots__ = ["find_links", "index_urls", "no_index"] + + find_links: List[str] + index_urls: List[str] + no_index: bool + + @classmethod + def create( + cls, + find_links: List[str], + index_urls: List[str], + no_index: bool, + ) -> "SearchScope": + """ + Create a SearchScope object after normalizing the `find_links`. + """ + # Build find_links. If an argument starts with ~, it may be + # a local file relative to a home directory. So try normalizing + # it and if it exists, use the normalized version. + # This is deliberately conservative - it might be fine just to + # blindly normalize anything starting with a ~... + built_find_links: List[str] = [] + for link in find_links: + if link.startswith("~"): + new_link = normalize_path(link) + if os.path.exists(new_link): + link = new_link + built_find_links.append(link) + + # If we don't have TLS enabled, then WARN if anyplace we're looking + # relies on TLS. + if not has_tls(): + for link in itertools.chain(index_urls, built_find_links): + parsed = urllib.parse.urlparse(link) + if parsed.scheme == "https": + logger.warning( + "pip is configured with locations that require " + "TLS/SSL, however the ssl module in Python is not " + "available." + ) + break + + return cls( + find_links=built_find_links, + index_urls=index_urls, + no_index=no_index, + ) + + def get_formatted_locations(self) -> str: + lines = [] + redacted_index_urls = [] + if self.index_urls and self.index_urls != [PyPI.simple_url]: + for url in self.index_urls: + redacted_index_url = redact_auth_from_url(url) + + # Parse the URL + purl = urllib.parse.urlsplit(redacted_index_url) + + # URL is generally invalid if scheme and netloc is missing + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not purl.scheme and not purl.netloc: + logger.warning( + 'The index url "%s" seems invalid, please provide a scheme.', + redacted_index_url, + ) + + redacted_index_urls.append(redacted_index_url) + + lines.append( + "Looking in indexes: {}".format(", ".join(redacted_index_urls)) + ) + + if self.find_links: + lines.append( + "Looking in links: {}".format( + ", ".join(redact_auth_from_url(url) for url in self.find_links) + ) + ) + return "\n".join(lines) + + def get_index_urls_locations(self, project_name: str) -> List[str]: + """Returns the locations found via self.index_urls + + Checks the url_name on the main (first in the list) index and + use this url_name to produce all locations + """ + + def mkurl_pypi_url(url: str) -> str: + loc = posixpath.join( + url, urllib.parse.quote(canonicalize_name(project_name)) + ) + # For maximum compatibility with easy_install, ensure the path + # ends in a trailing slash. Although this isn't in the spec + # (and PyPI can handle it without the slash) some other index + # implementations might break if they relied on easy_install's + # behavior. + if not loc.endswith("/"): + loc = loc + "/" + return loc + + return [mkurl_pypi_url(url) for url in self.index_urls] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 00000000..e9b50aa5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,53 @@ +from typing import Optional + +from pip._internal.models.format_control import FormatControl + + +# TODO: This needs Python 3.10's improved slots support for dataclasses +# to be converted into a dataclass. +class SelectionPreferences: + """ + Encapsulates the candidate selection preferences for downloading + and installing files. + """ + + __slots__ = [ + "allow_yanked", + "allow_all_prereleases", + "format_control", + "prefer_binary", + "ignore_requires_python", + ] + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + allow_yanked: bool, + allow_all_prereleases: bool = False, + format_control: Optional[FormatControl] = None, + prefer_binary: bool = False, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """Create a SelectionPreferences object. + + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param format_control: A FormatControl object or None. Used to control + the selection of source packages / binary packages when consulting + the index and links. + :param prefer_binary: Whether to prefer an old, but valid, binary + dist over a new source dist. + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self.allow_yanked = allow_yanked + self.allow_all_prereleases = allow_all_prereleases + self.format_control = format_control + self.prefer_binary = prefer_binary + self.ignore_requires_python = ignore_requires_python diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/target_python.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 00000000..88925a9f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,121 @@ +import sys +from typing import List, Optional, Set, Tuple + +from pip._vendor.packaging.tags import Tag + +from pip._internal.utils.compatibility_tags import get_supported, version_info_to_nodot +from pip._internal.utils.misc import normalize_version_info + + +class TargetPython: + """ + Encapsulates the properties of a Python interpreter one is targeting + for a package install, download, etc. + """ + + __slots__ = [ + "_given_py_version_info", + "abis", + "implementation", + "platforms", + "py_version", + "py_version_info", + "_valid_tags", + "_valid_tags_set", + ] + + def __init__( + self, + platforms: Optional[List[str]] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + abis: Optional[List[str]] = None, + implementation: Optional[str] = None, + ) -> None: + """ + :param platforms: A list of strings or None. If None, searches for + packages that are supported by the current system. Otherwise, will + find packages that can be built on the platforms passed in. These + packages will only be downloaded for distribution: they will + not be built locally. + :param py_version_info: An optional tuple of ints representing the + Python version information to use (e.g. `sys.version_info[:3]`). + This can have length 1, 2, or 3 when provided. + :param abis: A list of strings or None. This is passed to + compatibility_tags.py's get_supported() function as is. + :param implementation: A string or None. This is passed to + compatibility_tags.py's get_supported() function as is. + """ + # Store the given py_version_info for when we call get_supported(). + self._given_py_version_info = py_version_info + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + py_version = ".".join(map(str, py_version_info[:2])) + + self.abis = abis + self.implementation = implementation + self.platforms = platforms + self.py_version = py_version + self.py_version_info = py_version_info + + # This is used to cache the return value of get_(un)sorted_tags. + self._valid_tags: Optional[List[Tag]] = None + self._valid_tags_set: Optional[Set[Tag]] = None + + def format_given(self) -> str: + """ + Format the given, non-None attributes for display. + """ + display_version = None + if self._given_py_version_info is not None: + display_version = ".".join( + str(part) for part in self._given_py_version_info + ) + + key_values = [ + ("platforms", self.platforms), + ("version_info", display_version), + ("abis", self.abis), + ("implementation", self.implementation), + ] + return " ".join( + f"{key}={value!r}" for key, value in key_values if value is not None + ) + + def get_sorted_tags(self) -> List[Tag]: + """ + Return the supported PEP 425 tags to check wheel candidates against. + + The tags are returned in order of preference (most preferred first). + """ + if self._valid_tags is None: + # Pass versions=None if no py_version_info was given since + # versions=None uses special default logic. + py_version_info = self._given_py_version_info + if py_version_info is None: + version = None + else: + version = version_info_to_nodot(py_version_info) + + tags = get_supported( + version=version, + platforms=self.platforms, + abis=self.abis, + impl=self.implementation, + ) + self._valid_tags = tags + + return self._valid_tags + + def get_unsorted_tags(self) -> Set[Tag]: + """Exactly the same as get_sorted_tags, but returns a set. + + This is important for performance. + """ + if self._valid_tags_set is None: + self._valid_tags_set = set(self.get_sorted_tags()) + + return self._valid_tags_set diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/wheel.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 00000000..36d4d2e7 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,93 @@ +"""Represents a wheel file and provides access to the various parts of the +name that have meaning. +""" + +import re +from typing import Dict, Iterable, List + +from pip._vendor.packaging.tags import Tag + +from pip._internal.exceptions import InvalidWheelFilename + + +class Wheel: + """A wheel file""" + + wheel_file_re = re.compile( + r"""^(?P(?P[^\s-]+?)-(?P[^\s-]*?)) + ((-(?P\d[^-]*?))?-(?P[^\s-]+?)-(?P[^\s-]+?)-(?P[^\s-]+?) + \.whl|\.dist-info)$""", + re.VERBOSE, + ) + + def __init__(self, filename: str) -> None: + """ + :raises InvalidWheelFilename: when the filename is invalid for a wheel + """ + wheel_info = self.wheel_file_re.match(filename) + if not wheel_info: + raise InvalidWheelFilename(f"{filename} is not a valid wheel filename.") + self.filename = filename + self.name = wheel_info.group("name").replace("_", "-") + # we'll assume "_" means "-" due to wheel naming scheme + # (https://github.com/pypa/pip/issues/1150) + self.version = wheel_info.group("ver").replace("_", "-") + self.build_tag = wheel_info.group("build") + self.pyversions = wheel_info.group("pyver").split(".") + self.abis = wheel_info.group("abi").split(".") + self.plats = wheel_info.group("plat").split(".") + + # All the tag combinations from this file + self.file_tags = { + Tag(x, y, z) for x in self.pyversions for y in self.abis for z in self.plats + } + + def get_formatted_file_tags(self) -> List[str]: + """Return the wheel's tags as a sorted list of strings.""" + return sorted(str(tag) for tag in self.file_tags) + + def support_index_min(self, tags: List[Tag]) -> int: + """Return the lowest index that one of the wheel's file_tag combinations + achieves in the given list of supported tags. + + For example, if there are 8 supported tags and one of the file tags + is first in the list, then return 0. + + :param tags: the PEP 425 tags to check the wheel against, in order + with most preferred first. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + try: + return next(i for i, t in enumerate(tags) if t in self.file_tags) + except StopIteration: + raise ValueError() + + def find_most_preferred_tag( + self, tags: List[Tag], tag_to_priority: Dict[Tag, int] + ) -> int: + """Return the priority of the most preferred tag that one of the wheel's file + tag combinations achieves in the given list of supported tags using the given + tag_to_priority mapping, where lower priorities are more-preferred. + + This is used in place of support_index_min in some cases in order to avoid + an expensive linear scan of a large list of tags. + + :param tags: the PEP 425 tags to check the wheel against. + :param tag_to_priority: a mapping from tag to priority of that tag, where + lower is more preferred. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min( + tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority + ) + + def supported(self, tags: Iterable[Tag]) -> bool: + """Return whether the wheel is compatible with one of the given tags. + + :param tags: the PEP 425 tags to check the wheel against. + """ + return not self.file_tags.isdisjoint(tags) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 00000000..b51bde91 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b4ca5587e3d81f0b879257332f7c320ab49f3d3 GIT binary patch literal 302 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 JqnJVN{{urd(MtdT literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2809cbf09bde3ab1707b9b0e7f39095e4a4232b2 GIT binary patch literal 6499 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9c672cf9027f9b4c329253809fc81b5038efd1af GIT binary patch literal 18922 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b61fca3b4411ab2f6b06a87f0b7e6e4d54ecfbcc GIT binary patch literal 2303 zcmb7FT}&HC5Z=4<`43|gz~(Q33o$fJ4YDF z1#9KlB{?vQ%OxjhIm2(nD!Fg*5qHKJ@cadH6kv5rSdLNMaRDosh*Tv3Mz>$aT1r(k z46<(s(@B+#_o<44V^mg^enM1|_4LMKI7K`Am6$5Y%BXIaC9F`HW^~)d{@!r^ZdqDb(i9$T2ze&{@jlO(uhm zA!;va{fIO&|0lQHer~U!yWdZuDefAYWCCSFI?D2CI?~ybb;_FB+0%3KbZ3`53s)g; z0m*uVzJv_rBbdc?M#wsa5tRsOk~kyCpF*a=;tD1cn3ODxGBqm8EK|D<+scYYMJ0xf zS`#%@(fQ#F#hPxFFqA0PE3YcDA%xAT8AvY!7n;_hrU3`xh!y@mz!3*9-5sYi6~#uq zN0ZtpG4iGv1uF=`>#ss_HHkxGYAlYGB#tNKSUmJGQOEE&#UX8y4vTT6GnSA;ntAY$ zMq(jR(=gRSqat`xaX5kZU>Cy5L?|H-hf*0DSC#Hy*ZUz&rnoaD#>T}_tc6l?DioC! ziisj7Ldp&-Luo1}v|uWuR}fLwa1_!O-T5g}11D`Vj{FkH3|jNn%nZG-9h&tQI_5gQ zNw3&iicZdPYRy|$xITA%)!Vk@ZCkJ{dr#axU$mo2U!h^HA#Yu`IrGx0yK%|gxMK6q zS3R@&*F9CMo~9*F)1q6L_dK#LOg+jz_W#=cr2TRIqHA!2Lyj8Q!C5|QS*;M3DufkB z>wNb!N9#Kri-zNd9oc;^-2VB`f0kCePGwJ_vD@PMGh3N zwL|cy-!=4c=qcy#JI*}~FhEH;tm@8KJgtmJH93o8Z#EXAp&Wy6^A{ikh=E3AHWZk> zJ;sc?e{19ziFwGDAQVQQK>RI?S7091xdj=Kl$N1WH?~%fdxf`qA_9buon#)%VqQggvUC0;s8`b%o z`TpVusH*nMfsKYiv+ zR1_6jkD-l5^{VitPlg6B^@gK;7q1QtM6Y}l={Mo4bFdw$Fb*LA`2lSLMLWs0pM&7( z1pbg5hc)9>(k`{nio;?OLXETI$J!B4tFk$E!Ll&vE{4tvDxl?{C49qI=$`_ z7Ex8vTE~Q$dp$*D@CD1J$%|)D$A=qS8&kXH_7zR;Z!`Hi@6M-ZrF-E;kFdla-QvN9 H1R(IgxC=1E literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2df515781f60119daf185e64e76d60cf2bfc58a0 GIT binary patch literal 2997 zcmZuzO>7&-6`tk(^WT(3{aCUYTT;X(CY{s`jMQkFD30YeRg73blRb33;*P|nm%Gf& z()z)wFaiUmfdsAt1X53RfdWb49(wGtO^>}uuu%~k2XRs4&>LMjsF7a!W|vE)t_R?o z_h#Na&b;~FH~ZI2CW)ZU&KfHf8KHkLBW_|}+5a0TTgXHjGC4D0a~c=+35^eXK@*|p zZK)}1a#PV1j`<0;+DvN6P#5h~Gp(gVU9vOHtd`{vmPr=;WLs$Fv|KZ<<->W!KGZB| z1r8+;<{C5cW)6CM_zo9Y+HeA$N2YomnMo`*o2vev=6-x(;d~%2w!yE= z1;qvIt-9pOoa;Ea#@3u8#3eA3ylAy9VM<{LtUNI+iuGle=oDhNDa2Iud6#;N>n$8) z^q&}n)(zV>mcqEHOV$Q9Uu!QfV^TXf0z&D&vHvqregU_G5!?#W5+=$tYcZN(wJOk;Bqe%V4et>A0LML35WHkg!Uq2dd?mcuj8; zJCJFVv>@GvgqeniJ*$ZWiD0iyoQ0b3t!%IhWxxH8Kzz(?A#X5wL-f&y0A!z!LBk<$ zu(lx$90y869jF7v=i=3yf-f|}k{L{fijVX`EI$Dj6jRjJQJGsPD}hMcEldJM*Dc5L zbUl#Zn1H%KY{8x5Kmjw-BwDKj_ySq)D~jGvMp+63itS~Rf!HL=L=Hrdit+}_Jqmcz zYqmkDu2Z%pmgLg4Z*ErWZWC7{xlqwbu9GN@8au3}Q9 zq*jF}*rU}I16FzrlIO95iQ&1Vik+)f*nPFN?$urAyOkGStWwLvCtF7Cim`%ewPm%c za8wTy$FQqTR3Fs{DV5eb8G^lS9Ql7>RpJDVg9CjT#N%t|k%ZLj4S81?-JZCo%-kHn=<@Y z%n09F(qQ0tqWO}~`?AUZUbxfW-KOFlik*BVj?N)p02mL70sdh)_B!Z&rBOVvVl9qw z37tURXgoTF$Sa$wuQu4lKGC9#c@yz)<5;X6^rraqwT;q&PptV;%<>$1A9B5^{#;$< zR?!;&E?VWv(!xd>sM-U9Kgo!9L-FvM$H2K*<^uuP#sH{b!^DIJ5`YIA&5fh;i;EXa znDKgPnwD1UmW@j**z+uB1qOg7lNPlc;B}{l10Gfpc6M@@36{Gc2_@ck!XhV(X#=6f zkjbcm9A|bmoYM)0SI7ZQ;EAzH7z_htFecgV$_gWr8nHa9X4pY0dP?+~YvOW}u=Em^ zKT=}i879K$jA(!#c-RG*W}_!T1Uz1=QC0vUQG|j_vI)6gA{*mRDboHNi%Yv8phUAM zKfXQnTmD{dYDbyc$xU?+4R1}{n%MSk|MXMy53m1mYA63nN4%dseAB*R?`5ZVv(vZn z-R$!nzLzMdh3?4o?Tww{i=Fe`kt181w>G14?&gQO!_PoL!)Q-Mqu<#_;%K%r|0se->ZOy*7+K z8&>Bg`Ol8NJU7b!WmE*c%)L=gF-muUA%W79y54lnw$1dkuD{nd?EZ|b>!w@NbutU_ z2&?))SaMxEq(QT>l^kHg3EIi1L^+f1<5-JS$WTq)- zWU8k!Er|-n9`ov@Q8KraJF%-y{W}9TIT~-HJVwrd9>@%qPzmr}htFCif;j_!km<8N zye?32ffSj6z+`|ON3HuV_a-XB2&(Yy8(X(Hn?|*?#e}T^YozH(My!4eY{XiY> qjO?l7yXyG%nY-%LHR+L5<_g=zUr+vOa&PR^?%1iX;X5MA`+os@%j;MG literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/auth.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/auth.py new file mode 100644 index 00000000..1a2606ed --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/auth.py @@ -0,0 +1,566 @@ +"""Network Authentication Helpers + +Contains interface (MultiDomainBasicAuth) and associated glue code for +providing credentials in the context of network requests. +""" + +import logging +import os +import shutil +import subprocess +import sysconfig +import typing +import urllib.parse +from abc import ABC, abstractmethod +from functools import lru_cache +from os.path import commonprefix +from pathlib import Path +from typing import Any, Dict, List, NamedTuple, Optional, Tuple + +from pip._vendor.requests.auth import AuthBase, HTTPBasicAuth +from pip._vendor.requests.models import Request, Response +from pip._vendor.requests.utils import get_netrc_auth + +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + ask, + ask_input, + ask_password, + remove_auth_from_url, + split_auth_netloc_from_url, +) +from pip._internal.vcs.versioncontrol import AuthInfo + +logger = getLogger(__name__) + +KEYRING_DISABLED = False + + +class Credentials(NamedTuple): + url: str + username: str + password: str + + +class KeyRingBaseProvider(ABC): + """Keyring base provider interface""" + + has_keyring: bool + + @abstractmethod + def get_auth_info( + self, url: str, username: Optional[str] + ) -> Optional[AuthInfo]: ... + + @abstractmethod + def save_auth_info(self, url: str, username: str, password: str) -> None: ... + + +class KeyRingNullProvider(KeyRingBaseProvider): + """Keyring null provider""" + + has_keyring = False + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return None + + +class KeyRingPythonProvider(KeyRingBaseProvider): + """Keyring interface which uses locally imported `keyring`""" + + has_keyring = True + + def __init__(self) -> None: + import keyring + + self.keyring = keyring + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + # Support keyring's get_credential interface which supports getting + # credentials without a username. This is only available for + # keyring>=15.2.0. + if hasattr(self.keyring, "get_credential"): + logger.debug("Getting credentials from keyring for %s", url) + cred = self.keyring.get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username is not None: + logger.debug("Getting password from keyring for %s", url) + password = self.keyring.get_password(url, username) + if password: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + self.keyring.set_password(url, username, password) + + +class KeyRingCliProvider(KeyRingBaseProvider): + """Provider which uses `keyring` cli + + Instead of calling the keyring package installed alongside pip + we call keyring on the command line which will enable pip to + use which ever installation of keyring is available first in + PATH. + """ + + has_keyring = True + + def __init__(self, cmd: str) -> None: + self.keyring = cmd + + def get_auth_info(self, url: str, username: Optional[str]) -> Optional[AuthInfo]: + # This is the default implementation of keyring.get_credential + # https://github.com/jaraco/keyring/blob/97689324abcf01bd1793d49063e7ca01e03d7d07/keyring/backend.py#L134-L139 + if username is not None: + password = self._get_password(url, username) + if password is not None: + return username, password + return None + + def save_auth_info(self, url: str, username: str, password: str) -> None: + return self._set_password(url, username, password) + + def _get_password(self, service_name: str, username: str) -> Optional[str]: + """Mirror the implementation of keyring.get_password using cli""" + if self.keyring is None: + return None + + cmd = [self.keyring, "get", service_name, username] + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + res = subprocess.run( + cmd, + stdin=subprocess.DEVNULL, + stdout=subprocess.PIPE, + env=env, + ) + if res.returncode: + return None + return res.stdout.decode("utf-8").strip(os.linesep) + + def _set_password(self, service_name: str, username: str, password: str) -> None: + """Mirror the implementation of keyring.set_password using cli""" + if self.keyring is None: + return None + env = os.environ.copy() + env["PYTHONIOENCODING"] = "utf-8" + subprocess.run( + [self.keyring, "set", service_name, username], + input=f"{password}{os.linesep}".encode(), + env=env, + check=True, + ) + return None + + +@lru_cache(maxsize=None) +def get_keyring_provider(provider: str) -> KeyRingBaseProvider: + logger.verbose("Keyring provider requested: %s", provider) + + # keyring has previously failed and been disabled + if KEYRING_DISABLED: + provider = "disabled" + if provider in ["import", "auto"]: + try: + impl = KeyRingPythonProvider() + logger.verbose("Keyring provider set: import") + return impl + except ImportError: + pass + except Exception as exc: + # In the event of an unexpected exception + # we should warn the user + msg = "Installed copy of keyring fails with exception %s" + if provider == "auto": + msg = msg + ", trying to find a keyring executable as a fallback" + logger.warning(msg, exc, exc_info=logger.isEnabledFor(logging.DEBUG)) + if provider in ["subprocess", "auto"]: + cli = shutil.which("keyring") + if cli and cli.startswith(sysconfig.get_path("scripts")): + # all code within this function is stolen from shutil.which implementation + @typing.no_type_check + def PATH_as_shutil_which_determines_it() -> str: + path = os.environ.get("PATH", None) + if path is None: + try: + path = os.confstr("CS_PATH") + except (AttributeError, ValueError): + # os.confstr() or CS_PATH is not available + path = os.defpath + # bpo-35755: Don't use os.defpath if the PATH environment variable is + # set to an empty string + + return path + + scripts = Path(sysconfig.get_path("scripts")) + + paths = [] + for path in PATH_as_shutil_which_determines_it().split(os.pathsep): + p = Path(path) + try: + if not p.samefile(scripts): + paths.append(path) + except FileNotFoundError: + pass + + path = os.pathsep.join(paths) + + cli = shutil.which("keyring", path=path) + + if cli: + logger.verbose("Keyring provider set: subprocess with executable %s", cli) + return KeyRingCliProvider(cli) + + logger.verbose("Keyring provider set: disabled") + return KeyRingNullProvider() + + +class MultiDomainBasicAuth(AuthBase): + def __init__( + self, + prompting: bool = True, + index_urls: Optional[List[str]] = None, + keyring_provider: str = "auto", + ) -> None: + self.prompting = prompting + self.index_urls = index_urls + self.keyring_provider = keyring_provider # type: ignore[assignment] + self.passwords: Dict[str, AuthInfo] = {} + # When the user is prompted to enter credentials and keyring is + # available, we will offer to save them. If the user accepts, + # this value is set to the credentials they entered. After the + # request authenticates, the caller should call + # ``save_credentials`` to save these. + self._credentials_to_save: Optional[Credentials] = None + + @property + def keyring_provider(self) -> KeyRingBaseProvider: + return get_keyring_provider(self._keyring_provider) + + @keyring_provider.setter + def keyring_provider(self, provider: str) -> None: + # The free function get_keyring_provider has been decorated with + # functools.cache. If an exception occurs in get_keyring_auth that + # cache will be cleared and keyring disabled, take that into account + # if you want to remove this indirection. + self._keyring_provider = provider + + @property + def use_keyring(self) -> bool: + # We won't use keyring when --no-input is passed unless + # a specific provider is requested because it might require + # user interaction + return self.prompting or self._keyring_provider not in ["auto", "disabled"] + + def _get_keyring_auth( + self, + url: Optional[str], + username: Optional[str], + ) -> Optional[AuthInfo]: + """Return the tuple auth for a given url from keyring.""" + # Do nothing if no url was provided + if not url: + return None + + try: + return self.keyring_provider.get_auth_info(url, username) + except Exception as exc: + # Log the full exception (with stacktrace) at debug, so it'll only + # show up when running in verbose mode. + logger.debug("Keyring is skipped due to an exception", exc_info=True) + # Always log a shortened version of the exception. + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + global KEYRING_DISABLED + KEYRING_DISABLED = True + get_keyring_provider.cache_clear() + return None + + def _get_index_url(self, url: str) -> Optional[str]: + """Return the original index URL matching the requested URL. + + Cached or dynamically generated credentials may work against + the original index URL rather than just the netloc. + + The provided url should have had its username and password + removed already. If the original index url had credentials then + they will be included in the return value. + + Returns None if no matching index was found, or if --no-index + was specified by the user. + """ + if not url or not self.index_urls: + return None + + url = remove_auth_from_url(url).rstrip("/") + "/" + parsed_url = urllib.parse.urlsplit(url) + + candidates = [] + + for index in self.index_urls: + index = index.rstrip("/") + "/" + parsed_index = urllib.parse.urlsplit(remove_auth_from_url(index)) + if parsed_url == parsed_index: + return index + + if parsed_url.netloc != parsed_index.netloc: + continue + + candidate = urllib.parse.urlsplit(index) + candidates.append(candidate) + + if not candidates: + return None + + candidates.sort( + reverse=True, + key=lambda candidate: commonprefix( + [ + parsed_url.path, + candidate.path, + ] + ).rfind("/"), + ) + + return urllib.parse.urlunsplit(candidates[0]) + + def _get_new_credentials( + self, + original_url: str, + *, + allow_netrc: bool = True, + allow_keyring: bool = False, + ) -> AuthInfo: + """Find and return credentials for the specified URL.""" + # Split the credentials and netloc from the url. + url, netloc, url_user_password = split_auth_netloc_from_url( + original_url, + ) + + # Start with the credentials embedded in the url + username, password = url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in url for %s", netloc) + return url_user_password + + # Find a matching index url for this request + index_url = self._get_index_url(url) + if index_url: + # Split the credentials from the url. + index_info = split_auth_netloc_from_url(index_url) + if index_info: + index_url, _, index_url_user_password = index_info + logger.debug("Found index url %s", index_url) + + # If an index URL was found, try its embedded credentials + if index_url and index_url_user_password[0] is not None: + username, password = index_url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in index url for %s", netloc) + return index_url_user_password + + # Get creds from netrc if we still don't have them + if allow_netrc: + netrc_auth = get_netrc_auth(original_url) + if netrc_auth: + logger.debug("Found credentials in netrc for %s", netloc) + return netrc_auth + + # If we don't have a password and keyring is available, use it. + if allow_keyring: + # The index url is more specific than the netloc, so try it first + # fmt: off + kr_auth = ( + self._get_keyring_auth(index_url, username) or + self._get_keyring_auth(netloc, username) + ) + # fmt: on + if kr_auth: + logger.debug("Found credentials in keyring for %s", netloc) + return kr_auth + + return username, password + + def _get_url_and_credentials( + self, original_url: str + ) -> Tuple[str, Optional[str], Optional[str]]: + """Return the credentials to use for the provided URL. + + If allowed, netrc and keyring may be used to obtain the + correct credentials. + + Returns (url_without_credentials, username, password). Note + that even if the original URL contains credentials, this + function may return a different username and password. + """ + url, netloc, _ = split_auth_netloc_from_url(original_url) + + # Try to get credentials from original url + username, password = self._get_new_credentials(original_url) + + # If credentials not found, use any stored credentials for this netloc. + # Do this if either the username or the password is missing. + # This accounts for the situation in which the user has specified + # the username in the index url, but the password comes from keyring. + if (username is None or password is None) and netloc in self.passwords: + un, pw = self.passwords[netloc] + # It is possible that the cached credentials are for a different username, + # in which case the cache should be ignored. + if username is None or username == un: + username, password = un, pw + + if username is not None or password is not None: + # Convert the username and password if they're None, so that + # this netloc will show up as "cached" in the conditional above. + # Further, HTTPBasicAuth doesn't accept None, so it makes sense to + # cache the value that is going to be used. + username = username or "" + password = password or "" + + # Store any acquired credentials. + self.passwords[netloc] = (username, password) + + assert ( + # Credentials were found + (username is not None and password is not None) + # Credentials were not found + or (username is None and password is None) + ), f"Could not load credentials from url: {original_url}" + + return url, username, password + + def __call__(self, req: Request) -> Request: + # Get credentials for this request + url, username, password = self._get_url_and_credentials(req.url) + + # Set the url of the request to the url without any credentials + req.url = url + + if username is not None and password is not None: + # Send the basic auth with this request + req = HTTPBasicAuth(username, password)(req) + + # Attach a hook to handle 401 responses + req.register_hook("response", self.handle_401) + + return req + + # Factored out to allow for easy patching in tests + def _prompt_for_password( + self, netloc: str + ) -> Tuple[Optional[str], Optional[str], bool]: + username = ask_input(f"User for {netloc}: ") if self.prompting else None + if not username: + return None, None, False + if self.use_keyring: + auth = self._get_keyring_auth(netloc, username) + if auth and auth[0] is not None and auth[1] is not None: + return auth[0], auth[1], False + password = ask_password("Password: ") + return username, password, True + + # Factored out to allow for easy patching in tests + def _should_save_password_to_keyring(self) -> bool: + if ( + not self.prompting + or not self.use_keyring + or not self.keyring_provider.has_keyring + ): + return False + return ask("Save credentials to keyring [y/N]: ", ["y", "n"]) == "y" + + def handle_401(self, resp: Response, **kwargs: Any) -> Response: + # We only care about 401 responses, anything else we want to just + # pass through the actual response + if resp.status_code != 401: + return resp + + username, password = None, None + + # Query the keyring for credentials: + if self.use_keyring: + username, password = self._get_new_credentials( + resp.url, + allow_netrc=False, + allow_keyring=True, + ) + + # We are not able to prompt the user so simply return the response + if not self.prompting and not username and not password: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Prompt the user for a new username and password + save = False + if not username and not password: + username, password, save = self._prompt_for_password(parsed.netloc) + + # Store the new username and password to use for future requests + self._credentials_to_save = None + if username is not None and password is not None: + self.passwords[parsed.netloc] = (username, password) + + # Prompt to save the password to keyring + if save and self._should_save_password_to_keyring(): + self._credentials_to_save = Credentials( + url=parsed.netloc, + username=username, + password=password, + ) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + # The result of the assignment isn't used, it's just needed to consume + # the content. + _ = resp.content + resp.raw.release_conn() + + # Add our new username and password to the request + req = HTTPBasicAuth(username or "", password or "")(resp.request) + req.register_hook("response", self.warn_on_401) + + # On successful request, save the credentials that were used to + # keyring. (Note that if the user responded "no" above, this member + # is not set and nothing will be saved.) + if self._credentials_to_save: + req.register_hook("response", self.save_credentials) + + # Send our new request + new_resp = resp.connection.send(req, **kwargs) + new_resp.history.append(resp) + + return new_resp + + def warn_on_401(self, resp: Response, **kwargs: Any) -> None: + """Response callback to warn about incorrect credentials.""" + if resp.status_code == 401: + logger.warning( + "401 Error, Credentials not correct for %s", + resp.request.url, + ) + + def save_credentials(self, resp: Response, **kwargs: Any) -> None: + """Response callback to save credentials on success.""" + assert ( + self.keyring_provider.has_keyring + ), "should never reach here without keyring" + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info("Saving credentials to keyring") + self.keyring_provider.save_auth_info( + creds.url, creds.username, creds.password + ) + except Exception: + logger.exception("Failed to save credentials") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/cache.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/cache.py new file mode 100644 index 00000000..4d0fb545 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,106 @@ +"""HTTP cache implementation. +""" + +import os +from contextlib import contextmanager +from datetime import datetime +from typing import BinaryIO, Generator, Optional, Union + +from pip._vendor.cachecontrol.cache import SeparateBodyBaseCache +from pip._vendor.cachecontrol.caches import SeparateBodyFileCache +from pip._vendor.requests.models import Response + +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import ensure_dir + + +def is_from_cache(response: Response) -> bool: + return getattr(response, "from_cache", False) + + +@contextmanager +def suppressed_cache_errors() -> Generator[None, None, None]: + """If we can't access the cache then we can just skip caching and process + requests as if caching wasn't enabled. + """ + try: + yield + except OSError: + pass + + +class SafeFileCache(SeparateBodyBaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + + There is a race condition when two processes try to write and/or read the + same entry at the same time, since each entry consists of two separate + files (https://github.com/psf/cachecontrol/issues/324). We therefore have + additional logic that makes sure that both files to be present before + returning an entry; this fixes the read side of the race condition. + + For the write side, we assume that the server will only ever return the + same data for the same URL, which ought to be the case for files pip is + downloading. PyPI does not have a mechanism to swap out a wheel for + another wheel, for example. If this assumption is not true, the + CacheControl issue will need to be fixed. + """ + + def __init__(self, directory: str) -> None: + assert directory is not None, "Cache directory must not be None." + super().__init__() + self.directory = directory + + def _get_cache_path(self, name: str) -> str: + # From cachecontrol.caches.file_cache.FileCache._fn, brought into our + # class for backwards-compatibility and to avoid using a non-public + # method. + hashed = SeparateBodyFileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> Optional[bytes]: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + with open(metadata_path, "rb") as f: + return f.read() + + def _write(self, path: str, data: bytes) -> None: + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + f.write(data) + + replace(f.name, path) + + def set( + self, key: str, value: bytes, expires: Union[int, datetime, None] = None + ) -> None: + path = self._get_cache_path(key) + self._write(path, value) + + def delete(self, key: str) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) + with suppressed_cache_errors(): + os.remove(path + ".body") + + def get_body(self, key: str) -> Optional[BinaryIO]: + # The cache entry is only valid if both metadata and body exist. + metadata_path = self._get_cache_path(key) + body_path = metadata_path + ".body" + if not (os.path.exists(metadata_path) and os.path.exists(body_path)): + return None + with suppressed_cache_errors(): + return open(body_path, "rb") + + def set_body(self, key: str, body: bytes) -> None: + path = self._get_cache_path(key) + ".body" + self._write(path, body) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/download.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/download.py new file mode 100644 index 00000000..5c3bce3d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/download.py @@ -0,0 +1,187 @@ +"""Download files with progress indicators. +""" + +import email.message +import logging +import mimetypes +import os +from typing import Iterable, Optional, Tuple + +from pip._vendor.requests.models import Response + +from pip._internal.cli.progress_bars import get_download_progress_renderer +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.index import PyPI +from pip._internal.models.link import Link +from pip._internal.network.cache import is_from_cache +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.misc import format_size, redact_auth_from_url, splitext + +logger = logging.getLogger(__name__) + + +def _get_http_response_size(resp: Response) -> Optional[int]: + try: + return int(resp.headers["content-length"]) + except (ValueError, KeyError, TypeError): + return None + + +def _prepare_download( + resp: Response, + link: Link, + progress_bar: str, +) -> Iterable[bytes]: + total_length = _get_http_response_size(resp) + + if link.netloc == PyPI.file_storage_domain: + url = link.show_url + else: + url = link.url_without_fragment + + logged_url = redact_auth_from_url(url) + + if total_length: + logged_url = f"{logged_url} ({format_size(total_length)})" + + if is_from_cache(resp): + logger.info("Using cached %s", logged_url) + else: + logger.info("Downloading %s", logged_url) + + if logger.getEffectiveLevel() > logging.INFO: + show_progress = False + elif is_from_cache(resp): + show_progress = False + elif not total_length: + show_progress = True + elif total_length > (512 * 1024): + show_progress = True + else: + show_progress = False + + chunks = response_chunks(resp) + + if not show_progress: + return chunks + + renderer = get_download_progress_renderer(bar_type=progress_bar, size=total_length) + return renderer(chunks) + + +def sanitize_content_filename(filename: str) -> str: + """ + Sanitize the "filename" value from a Content-Disposition header. + """ + return os.path.basename(filename) + + +def parse_content_disposition(content_disposition: str, default_filename: str) -> str: + """ + Parse the "filename" value from a Content-Disposition header, and + return the default filename if the result is empty. + """ + m = email.message.Message() + m["content-type"] = content_disposition + filename = m.get_param("filename") + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(str(filename)) + return filename or default_filename + + +def _get_http_response_filename(resp: Response, link: Link) -> str: + """Get an ideal filename from the given HTTP response, falling back to + the link filename if not provided. + """ + filename = link.filename # fallback + # Have a look at the Content-Disposition header for a better guess + content_disposition = resp.headers.get("content-disposition") + if content_disposition: + filename = parse_content_disposition(content_disposition, filename) + ext: Optional[str] = splitext(filename)[1] + if not ext: + ext = mimetypes.guess_extension(resp.headers.get("content-type", "")) + if ext: + filename += ext + if not ext and link.url != resp.url: + ext = os.path.splitext(resp.url)[1] + if ext: + filename += ext + return filename + + +def _http_get_download(session: PipSession, link: Link) -> Response: + target_url = link.url.split("#", 1)[0] + resp = session.get(target_url, headers=HEADERS, stream=True) + raise_for_status(resp) + return resp + + +class Downloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__(self, link: Link, location: str) -> Tuple[str, str]: + """Download the file given by link into location.""" + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", e.response.status_code, link + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + return filepath, content_type + + +class BatchDownloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__( + self, links: Iterable[Link], location: str + ) -> Iterable[Tuple[Link, Tuple[str, str]]]: + """Download the files given by links into location.""" + for link in links: + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", + e.response.status_code, + link, + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + yield link, (filepath, content_type) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 00000000..82ec50d5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py @@ -0,0 +1,210 @@ +"""Lazy ZIP over HTTP""" + +__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"] + +from bisect import bisect_left, bisect_right +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, Dict, Generator, List, Optional, Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name: str, url: str, session: PipSession) -> BaseDistribution: + """Return a distribution object from the given wheel URL. + + This uses HTTP range requests to only fetch the portion of the wheel + containing metadata, just enough for the object to be constructed. + If such requests are not supported, HTTPRangeRequestUnsupported + is raised. + """ + with LazyZipOverHTTP(url, session) as zf: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + wheel = MemoryWheel(zf.name, zf) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return get_wheel_distribution(wheel, canonicalize_name(name)) + + +class LazyZipOverHTTP: + """File-like object mapped to a ZIP file over HTTP. + + This uses HTTP range requests to lazily fetch the file's content, + which is supposed to be fed to ZipFile. If such requests are not + supported by the server, raise HTTPRangeRequestUnsupported + during initialization. + """ + + def __init__( + self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE + ) -> None: + head = session.head(url, headers=HEADERS) + raise_for_status(head) + assert head.status_code == 200 + self._session, self._url, self._chunk_size = session, url, chunk_size + self._length = int(head.headers["Content-Length"]) + self._file = NamedTemporaryFile() + self.truncate(self._length) + self._left: List[int] = [] + self._right: List[int] = [] + if "bytes" not in head.headers.get("Accept-Ranges", "none"): + raise HTTPRangeRequestUnsupported("range request is not supported") + self._check_zip() + + @property + def mode(self) -> str: + """Opening mode, which is always rb.""" + return "rb" + + @property + def name(self) -> str: + """Path to the underlying file.""" + return self._file.name + + def seekable(self) -> bool: + """Return whether random access is supported, which is True.""" + return True + + def close(self) -> None: + """Close the file.""" + self._file.close() + + @property + def closed(self) -> bool: + """Whether the file is closed.""" + return self._file.closed + + def read(self, size: int = -1) -> bytes: + """Read up to size bytes from the object and return them. + + As a convenience, if size is unspecified or -1, + all bytes until EOF are returned. Fewer than + size bytes may be returned if EOF is reached. + """ + download_size = max(size, self._chunk_size) + start, length = self.tell(), self._length + stop = length if size < 0 else min(start + download_size, length) + start = max(0, stop - download_size) + self._download(start, stop - 1) + return self._file.read(size) + + def readable(self) -> bool: + """Return whether the file is readable, which is True.""" + return True + + def seek(self, offset: int, whence: int = 0) -> int: + """Change stream position and return the new absolute position. + + Seek to offset relative position indicated by whence: + * 0: Start of stream (the default). pos should be >= 0; + * 1: Current position - pos may be negative; + * 2: End of stream - pos usually negative. + """ + return self._file.seek(offset, whence) + + def tell(self) -> int: + """Return the current position.""" + return self._file.tell() + + def truncate(self, size: Optional[int] = None) -> int: + """Resize the stream to the given size in bytes. + + If size is unspecified resize to the current position. + The current stream position isn't changed. + + Return the new file size. + """ + return self._file.truncate(size) + + def writable(self) -> bool: + """Return False.""" + return False + + def __enter__(self) -> "LazyZipOverHTTP": + self._file.__enter__() + return self + + def __exit__(self, *exc: Any) -> None: + self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Generator[None, None, None]: + """Return a context manager keeping the position. + + At the end of the block, seek back to original position. + """ + pos = self.tell() + try: + yield + finally: + self.seek(pos) + + def _check_zip(self) -> None: + """Check and download until the file is a valid ZIP.""" + end = self._length - 1 + for start in reversed(range(0, end, self._chunk_size)): + self._download(start, end) + with self._stay(): + try: + # For read-only ZIP files, ZipFile only needs + # methods read, seek, seekable and tell. + ZipFile(self) # type: ignore + except BadZipFile: + pass + else: + break + + def _stream_response( + self, start: int, end: int, base_headers: Dict[str, str] = HEADERS + ) -> Response: + """Return HTTP response to a range request from start to end.""" + headers = base_headers.copy() + headers["Range"] = f"bytes={start}-{end}" + # TODO: Get range requests to be correctly cached + headers["Cache-Control"] = "no-cache" + return self._session.get(self._url, headers=headers, stream=True) + + def _merge( + self, start: int, end: int, left: int, right: int + ) -> Generator[Tuple[int, int], None, None]: + """Return a generator of intervals to be fetched. + + Args: + start (int): Start of needed interval + end (int): End of needed interval + left (int): Index of first overlapping downloaded data + right (int): Index after last overlapping downloaded data + """ + lslice, rslice = self._left[left:right], self._right[left:right] + i = start = min([start] + lslice[:1]) + end = max([end] + rslice[-1:]) + for j, k in zip(lslice, rslice): + if j > i: + yield i, j - 1 + i = k + 1 + if i <= end: + yield i, end + self._left[left:right], self._right[left:right] = [start], [end] + + def _download(self, start: int, end: int) -> None: + """Download bytes from start to end inclusively.""" + with self._stay(): + left = bisect_left(self._right, start) + right = bisect_right(self._left, end) + for start, end in self._merge(start, end, left, right): + response = self._stream_response(start, end) + response.raise_for_status() + self.seek(start) + for chunk in response_chunks(response, self._chunk_size): + self._file.write(chunk) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/session.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/session.py new file mode 100644 index 00000000..1765b4f6 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/session.py @@ -0,0 +1,522 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +import email.utils +import functools +import io +import ipaddress +import json +import logging +import mimetypes +import os +import platform +import shutil +import subprocess +import sys +import urllib.parse +import warnings +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Generator, + List, + Mapping, + Optional, + Sequence, + Tuple, + Union, +) + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter as _BaseCacheControlAdapter +from pip._vendor.requests.adapters import DEFAULT_POOLBLOCK, BaseAdapter +from pip._vendor.requests.adapters import HTTPAdapter as _BaseHTTPAdapter +from pip._vendor.requests.models import PreparedRequest, Response +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3.connectionpool import ConnectionPool +from pip._vendor.urllib3.exceptions import InsecureRequestWarning + +from pip import __version__ +from pip._internal.metadata import get_default_environment +from pip._internal.models.link import Link +from pip._internal.network.auth import MultiDomainBasicAuth +from pip._internal.network.cache import SafeFileCache + +# Import ssl from compat so the initial import occurs in only one place. +from pip._internal.utils.compat import has_tls +from pip._internal.utils.glibc import libc_ver +from pip._internal.utils.misc import build_url_from_netloc, parse_netloc +from pip._internal.utils.urls import url_to_path + +if TYPE_CHECKING: + from ssl import SSLContext + + from pip._vendor.urllib3.poolmanager import PoolManager + + +logger = logging.getLogger(__name__) + +SecureOrigin = Tuple[str, str, Optional[Union[int, str]]] + + +# Ignore warning raised when using --trusted-host. +warnings.filterwarnings("ignore", category=InsecureRequestWarning) + + +SECURE_ORIGINS: List[SecureOrigin] = [ + # protocol, hostname, port + # Taken from Chrome's list of secure origins (See: http://bit.ly/1qrySKC) + ("https", "*", "*"), + ("*", "localhost", "*"), + ("*", "127.0.0.0/8", "*"), + ("*", "::1/128", "*"), + ("file", "*", None), + # ssh is always secure. + ("ssh", "*", "*"), +] + + +# These are environment variables present when running under various +# CI systems. For each variable, some CI systems that use the variable +# are indicated. The collection was chosen so that for each of a number +# of popular systems, at least one of the environment variables is used. +# This list is used to provide some indication of and lower bound for +# CI traffic to PyPI. Thus, it is okay if the list is not comprehensive. +# For more background, see: https://github.com/pypa/pip/issues/5499 +CI_ENVIRONMENT_VARIABLES = ( + # Azure Pipelines + "BUILD_BUILDID", + # Jenkins + "BUILD_ID", + # AppVeyor, CircleCI, Codeship, Gitlab CI, Shippable, Travis CI + "CI", + # Explicit environment variable. + "PIP_IS_CI", +) + + +def looks_like_ci() -> bool: + """ + Return whether it looks like pip is running under CI. + """ + # We don't use the method of checking for a tty (e.g. using isatty()) + # because some CI systems mimic a tty (e.g. Travis CI). Thus that + # method doesn't provide definitive information in either direction. + return any(name in os.environ for name in CI_ENVIRONMENT_VARIABLES) + + +@functools.lru_cache(maxsize=1) +def user_agent() -> str: + """ + Return a string representing the user agent. + """ + data: Dict[str, Any] = { + "installer": {"name": "pip", "version": __version__}, + "python": platform.python_version(), + "implementation": { + "name": platform.python_implementation(), + }, + } + + if data["implementation"]["name"] == "CPython": + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "PyPy": + pypy_version_info = sys.pypy_version_info # type: ignore + if pypy_version_info.releaselevel == "final": + pypy_version_info = pypy_version_info[:3] + data["implementation"]["version"] = ".".join( + [str(x) for x in pypy_version_info] + ) + elif data["implementation"]["name"] == "Jython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "IronPython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + + if sys.platform.startswith("linux"): + from pip._vendor import distro + + linux_distribution = distro.name(), distro.version(), distro.codename() + distro_infos: Dict[str, Any] = dict( + filter( + lambda x: x[1], + zip(["name", "version", "id"], linux_distribution), + ) + ) + libc = dict( + filter( + lambda x: x[1], + zip(["lib", "version"], libc_ver()), + ) + ) + if libc: + distro_infos["libc"] = libc + if distro_infos: + data["distro"] = distro_infos + + if sys.platform.startswith("darwin") and platform.mac_ver()[0]: + data["distro"] = {"name": "macOS", "version": platform.mac_ver()[0]} + + if platform.system(): + data.setdefault("system", {})["name"] = platform.system() + + if platform.release(): + data.setdefault("system", {})["release"] = platform.release() + + if platform.machine(): + data["cpu"] = platform.machine() + + if has_tls(): + import _ssl as ssl + + data["openssl_version"] = ssl.OPENSSL_VERSION + + setuptools_dist = get_default_environment().get_distribution("setuptools") + if setuptools_dist is not None: + data["setuptools_version"] = str(setuptools_dist.version) + + if shutil.which("rustc") is not None: + # If for any reason `rustc --version` fails, silently ignore it + try: + rustc_output = subprocess.check_output( + ["rustc", "--version"], stderr=subprocess.STDOUT, timeout=0.5 + ) + except Exception: + pass + else: + if rustc_output.startswith(b"rustc "): + # The format of `rustc --version` is: + # `b'rustc 1.52.1 (9bc8c42bb 2021-05-09)\n'` + # We extract just the middle (1.52.1) part + data["rustc_version"] = rustc_output.split(b" ")[1].decode() + + # Use None rather than False so as not to give the impression that + # pip knows it is not being run under CI. Rather, it is a null or + # inconclusive result. Also, we include some value rather than no + # value to make it easier to know that the check has been run. + data["ci"] = True if looks_like_ci() else None + + user_data = os.environ.get("PIP_USER_AGENT_USER_DATA") + if user_data is not None: + data["user_data"] = user_data + + return "{data[installer][name]}/{data[installer][version]} {json}".format( + data=data, + json=json.dumps(data, separators=(",", ":"), sort_keys=True), + ) + + +class LocalFSAdapter(BaseAdapter): + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: Optional[Union[float, Tuple[float, float]]] = None, + verify: Union[bool, str] = True, + cert: Optional[Union[str, Tuple[str, str]]] = None, + proxies: Optional[Mapping[str, str]] = None, + ) -> Response: + pathname = url_to_path(request.url) + + resp = Response() + resp.status_code = 200 + resp.url = request.url + + try: + stats = os.stat(pathname) + except OSError as exc: + # format the exception raised as a io.BytesIO object, + # to return a better error message: + resp.status_code = 404 + resp.reason = type(exc).__name__ + resp.raw = io.BytesIO(f"{resp.reason}: {exc}".encode()) + else: + modified = email.utils.formatdate(stats.st_mtime, usegmt=True) + content_type = mimetypes.guess_type(pathname)[0] or "text/plain" + resp.headers = CaseInsensitiveDict( + { + "Content-Type": content_type, + "Content-Length": stats.st_size, + "Last-Modified": modified, + } + ) + + resp.raw = open(pathname, "rb") + resp.close = resp.raw.close + + return resp + + def close(self) -> None: + pass + + +class _SSLContextAdapterMixin: + """Mixin to add the ``ssl_context`` constructor argument to HTTP adapters. + + The additional argument is forwarded directly to the pool manager. This allows us + to dynamically decide what SSL store to use at runtime, which is used to implement + the optional ``truststore`` backend. + """ + + def __init__( + self, + *, + ssl_context: Optional["SSLContext"] = None, + **kwargs: Any, + ) -> None: + self._ssl_context = ssl_context + super().__init__(**kwargs) + + def init_poolmanager( + self, + connections: int, + maxsize: int, + block: bool = DEFAULT_POOLBLOCK, + **pool_kwargs: Any, + ) -> "PoolManager": + if self._ssl_context is not None: + pool_kwargs.setdefault("ssl_context", self._ssl_context) + return super().init_poolmanager( # type: ignore[misc] + connections=connections, + maxsize=maxsize, + block=block, + **pool_kwargs, + ) + + +class HTTPAdapter(_SSLContextAdapterMixin, _BaseHTTPAdapter): + pass + + +class CacheControlAdapter(_SSLContextAdapterMixin, _BaseCacheControlAdapter): + pass + + +class InsecureHTTPAdapter(HTTPAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class InsecureCacheControlAdapter(CacheControlAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class PipSession(requests.Session): + timeout: Optional[int] = None + + def __init__( + self, + *args: Any, + retries: int = 0, + cache: Optional[str] = None, + trusted_hosts: Sequence[str] = (), + index_urls: Optional[List[str]] = None, + ssl_context: Optional["SSLContext"] = None, + **kwargs: Any, + ) -> None: + """ + :param trusted_hosts: Domains not to emit warnings for when not using + HTTPS. + """ + super().__init__(*args, **kwargs) + + # Namespace the attribute with "pip_" just in case to prevent + # possible conflicts with the base class. + self.pip_trusted_origins: List[Tuple[str, Optional[int]]] = [] + + # Attach our User Agent to the request + self.headers["User-Agent"] = user_agent() + + # Attach our Authentication handler to the session + self.auth = MultiDomainBasicAuth(index_urls=index_urls) + + # Create our urllib3.Retry instance which will allow us to customize + # how we handle retries. + retries = urllib3.Retry( + # Set the total number of retries that a particular request can + # have. + total=retries, + # A 503 error from PyPI typically means that the Fastly -> Origin + # connection got interrupted in some way. A 503 error in general + # is typically considered a transient error so we'll go ahead and + # retry it. + # A 500 may indicate transient error in Amazon S3 + # A 502 may be a transient error from a CDN like CloudFlare or CloudFront + # A 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 502, 503, 520, 527], + # Add a small amount of back off between failed requests in + # order to prevent hammering the service. + backoff_factor=0.25, + ) # type: ignore + + # Our Insecure HTTPAdapter disables HTTPS validation. It does not + # support caching so we'll use it for all http:// URLs. + # If caching is disabled, we will also use it for + # https:// hosts that we've marked as ignoring + # TLS errors for (trusted-hosts). + insecure_adapter = InsecureHTTPAdapter(max_retries=retries) + + # We want to _only_ cache responses on securely fetched origins or when + # the host is specified as trusted. We do this because + # we can't validate the response of an insecurely/untrusted fetched + # origin, and we don't want someone to be able to poison the cache and + # require manual eviction from the cache to fix it. + if cache: + secure_adapter = CacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ssl_context=ssl_context, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries, ssl_context=ssl_context) + self._trusted_host_adapter = insecure_adapter + + self.mount("https://", secure_adapter) + self.mount("http://", insecure_adapter) + + # Enable file:// urls + self.mount("file://", LocalFSAdapter()) + + for host in trusted_hosts: + self.add_trusted_host(host, suppress_logging=True) + + def update_index_urls(self, new_index_urls: List[str]) -> None: + """ + :param new_index_urls: New index urls to update the authentication + handler with. + """ + self.auth.index_urls = new_index_urls + + def add_trusted_host( + self, host: str, source: Optional[str] = None, suppress_logging: bool = False + ) -> None: + """ + :param host: It is okay to provide a host that has previously been + added. + :param source: An optional source string, for logging where the host + string came from. + """ + if not suppress_logging: + msg = f"adding trusted host: {host!r}" + if source is not None: + msg += f" (from {source})" + logger.info(msg) + + parsed_host, parsed_port = parse_netloc(host) + if parsed_host is None: + raise ValueError(f"Trusted host URL must include a host part: {host!r}") + if (parsed_host, parsed_port) not in self.pip_trusted_origins: + self.pip_trusted_origins.append((parsed_host, parsed_port)) + + self.mount( + build_url_from_netloc(host, scheme="http") + "/", self._trusted_host_adapter + ) + self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) + if not parsed_port: + self.mount( + build_url_from_netloc(host, scheme="http") + ":", + self._trusted_host_adapter, + ) + # Mount wildcard ports for the same host. + self.mount(build_url_from_netloc(host) + ":", self._trusted_host_adapter) + + def iter_secure_origins(self) -> Generator[SecureOrigin, None, None]: + yield from SECURE_ORIGINS + for host, port in self.pip_trusted_origins: + yield ("*", host, "*" if port is None else port) + + def is_secure_origin(self, location: Link) -> bool: + # Determine if this url used a secure transport mechanism + parsed = urllib.parse.urlparse(str(location)) + origin_protocol, origin_host, origin_port = ( + parsed.scheme, + parsed.hostname, + parsed.port, + ) + + # The protocol to use to see if the protocol matches. + # Don't count the repository type as part of the protocol: in + # cases such as "git+ssh", only use "ssh". (I.e., Only verify against + # the last scheme.) + origin_protocol = origin_protocol.rsplit("+", 1)[-1] + + # Determine if our origin is a secure origin by looking through our + # hardcoded list of secure origins, as well as any additional ones + # configured on this PackageFinder instance. + for secure_origin in self.iter_secure_origins(): + secure_protocol, secure_host, secure_port = secure_origin + if origin_protocol != secure_protocol and secure_protocol != "*": + continue + + try: + addr = ipaddress.ip_address(origin_host or "") + network = ipaddress.ip_network(secure_host) + except ValueError: + # We don't have both a valid address or a valid network, so + # we'll check this origin against hostnames. + if ( + origin_host + and origin_host.lower() != secure_host.lower() + and secure_host != "*" + ): + continue + else: + # We have a valid address and network, so see if the address + # is contained within the network. + if addr not in network: + continue + + # Check to see if the port matches. + if ( + origin_port != secure_port + and secure_port != "*" + and secure_port is not None + ): + continue + + # If we've gotten here, then this origin matches the current + # secure origin and we should return True + return True + + # If we've gotten to this point, then the origin isn't secure and we + # will not accept it as a valid location to search. We will however + # log a warning that we are ignoring it. + logger.warning( + "The repository located at %s is not a trusted or secure host and " + "is being ignored. If this repository is available via HTTPS we " + "recommend you use HTTPS instead, otherwise you may silence " + "this warning and allow it anyway with '--trusted-host %s'.", + origin_host, + origin_host, + ) + + return False + + def request(self, method: str, url: str, *args: Any, **kwargs: Any) -> Response: + # Allow setting a default timeout on a session + kwargs.setdefault("timeout", self.timeout) + # Allow setting a default proxies on a session + kwargs.setdefault("proxies", self.proxies) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/utils.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/utils.py new file mode 100644 index 00000000..bba4c265 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,98 @@ +from typing import Dict, Generator + +from pip._vendor.requests.models import Response + +from pip._internal.exceptions import NetworkConnectionError + +# The following comments and HTTP headers were originally added by +# Donald Stufft in git commit 22c562429a61bb77172039e480873fb239dd8c03. +# +# We use Accept-Encoding: identity here because requests defaults to +# accepting compressed responses. This breaks in a variety of ways +# depending on how the server is configured. +# - Some servers will notice that the file isn't a compressible file +# and will leave the file alone and with an empty Content-Encoding +# - Some servers will notice that the file is already compressed and +# will leave the file alone, adding a Content-Encoding: gzip header +# - Some servers won't notice anything at all and will take a file +# that's already been compressed and compress it again, and set +# the Content-Encoding: gzip header +# By setting this to request only the identity encoding we're hoping +# to eliminate the third case. Hopefully there does not exist a server +# which when given a file will notice it is already compressed and that +# you're not asking for a compressed file and will then decompress it +# before sending because if that's the case I don't think it'll ever be +# possible to make this work. +HEADERS: Dict[str, str] = {"Accept-Encoding": "identity"} + +DOWNLOAD_CHUNK_SIZE = 256 * 1024 + + +def raise_for_status(resp: Response) -> None: + http_error_msg = "" + if isinstance(resp.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. + try: + reason = resp.reason.decode("utf-8") + except UnicodeDecodeError: + reason = resp.reason.decode("iso-8859-1") + else: + reason = resp.reason + + if 400 <= resp.status_code < 500: + http_error_msg = ( + f"{resp.status_code} Client Error: {reason} for url: {resp.url}" + ) + + elif 500 <= resp.status_code < 600: + http_error_msg = ( + f"{resp.status_code} Server Error: {reason} for url: {resp.url}" + ) + + if http_error_msg: + raise NetworkConnectionError(http_error_msg, response=resp) + + +def response_chunks( + response: Response, chunk_size: int = DOWNLOAD_CHUNK_SIZE +) -> Generator[bytes, None, None]: + """Given a requests Response, provide the data chunks.""" + try: + # Special case for urllib3. + for chunk in response.raw.stream( + chunk_size, + # We use decode_content=False here because we don't + # want urllib3 to mess with the raw bytes we get + # from the server. If we decompress inside of + # urllib3 then we cannot verify the checksum + # because the checksum will be of the compressed + # file. This breakage will only occur if the + # server adds a Content-Encoding header, which + # depends on how the server was configured: + # - Some servers will notice that the file isn't a + # compressible file and will leave the file alone + # and with an empty Content-Encoding + # - Some servers will notice that the file is + # already compressed and will leave the file + # alone and will add a Content-Encoding: gzip + # header + # - Some servers won't notice anything at all and + # will take a file that's already been compressed + # and compress it again and set the + # Content-Encoding: gzip header + # + # By setting this not to decode automatically we + # hope to eliminate problems with the second case. + decode_content=False, + ): + yield chunk + except AttributeError: + # Standard file-like object. + while True: + chunk = response.raw.read(chunk_size) + if not chunk: + break + yield chunk diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 00000000..22ec8d2f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,62 @@ +"""xmlrpclib.Transport implementation +""" + +import logging +import urllib.parse +import xmlrpc.client +from typing import TYPE_CHECKING, Tuple + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status + +if TYPE_CHECKING: + from xmlrpc.client import _HostType, _Marshallable + + from _typeshed import SizedBuffer + +logger = logging.getLogger(__name__) + + +class PipXmlrpcTransport(xmlrpc.client.Transport): + """Provide a `xmlrpclib.Transport` implementation via a `PipSession` + object. + """ + + def __init__( + self, index_url: str, session: PipSession, use_datetime: bool = False + ) -> None: + super().__init__(use_datetime) + index_parts = urllib.parse.urlparse(index_url) + self._scheme = index_parts.scheme + self._session = session + + def request( + self, + host: "_HostType", + handler: str, + request_body: "SizedBuffer", + verbose: bool = False, + ) -> Tuple["_Marshallable", ...]: + assert isinstance(host, str) + parts = (self._scheme, host, handler, None, None, None) + url = urllib.parse.urlunparse(parts) + try: + headers = {"Content-Type": "text/xml"} + response = self._session.post( + url, + data=request_body, + headers=headers, + stream=True, + ) + raise_for_status(response) + self.verbose = verbose + return self.parse_response(response.raw) + except NetworkConnectionError as exc: + assert exc.response + logger.critical( + "HTTP error %s while getting %s", + exc.response.status_code, + url, + ) + raise diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..038d9047e42e1184483f6153b8cea4883b60e8fc GIT binary patch literal 245 zcmZ8bL23gr3|u!UltBKG91_vw8glKe^aqR96>BG6+em84{-cmLTpw~qg~PK$GH#%5_=FAYDG>so(qU*OU}a7fls9LNQ49lUWm z&`}BGQ#*8VWrGJHJ`sbk1r#9_=&>XfyFf1#iBS^+#S;YIK_1nmxLrSQK)li_qdj6z v0@-J1eN^Iz0aC6xpQ1opT(51r&g0M1ZbFN=3d#c zm)dHJv{e>ftg^eUopy^TD2ga>iZ%MnKNf{I=#K#XLx#$Vdm$q(HU--LqAM2(wk_Io z=JHaMqaBHJ&zw1PX6~JHzH?^&+2yhmC<6nD*^YKXeuoXc*y_aAh=GusL?SUF36dcr z!~}R6Glr}&W)zSoX2h&1X5zFdW6oM)7EYTp)~qdN%i3f1tRv>gI%CePE9T0&WA3ac z=E-_v-mEX?%eKT?xV$Cf&jw-vPFpjr*|u0)wmsI)+qO(cwlmh5?TU5rwms9G?TPhp z+L7ta?uqT;v@_F}4aS0;c4hWv`(yo_c4ziwL$Q!R41@~v&+9L_{iILa7PMCEfPtJN zlII;Fd8y~NvCbW!cG^h?Qie`o#KN=%T7i0NkhglEZREWNxvZNGVyiAQROcOR;vIr< zL-bHxA_A>2jnrFF$;aEnT03QsTHX<3hiydKBl&4q3Q#Y#(Ic}0txKR@7!ygErPg;$ zu_vWA>ZYMOH<}Wqb{KzD>Yy&#&$*pIwblEbv|lnv25tSIp$lY>HEF;Zebh%gQ6Boc zq5mnVN9XVrHTU;I|I^nD;lAq!UQT4vQbI}RbHRKnDA5AVNi>&CQyJTZMDlWCmdf^j z2gPJMET~p_p-^B{mVq{3NHCc)q!^VJk~C~rt>cMICUGf4RdFJnR8-qpmcLGOGZe^k zG)GxN$ureDsQ|^L&ZlKXwNEFqRJyoOfN|Cr3%Hy_Mm6Fn6X(Jlj_=a97SfDnX-)|n zRO7|OtZFOZ3gSv)7C7$dJj=rCT&EJMQ+>%qE}u&$IV+w67HF}&OqmSofedF8muXyr z`C0nX0?rvvmTLZwkNhkroB{9QGgc_+R31h&eCThn0gth_O*NkCNbzjhSWP&P* zbVgP!SG3nroy}V}9k!^}IDh4MT(!sJ*}Sxnp+Gz1@wXNd8T=UWIBNy9swW;#2MBC1nT^wr|m_wCJ39w1dZrBo@V@S;tpEY15+c8j;M4<{y}E zENIWG!d3FN@ilT)2wSc{IiAnK-Yar25zK%ya5!ml3ONWHnupH11%q!#&NAFSa9w*Q z4{jRI=Q7t+QNElmTo0XLEYARdz*}>(-vXxn^6}t)`Qmig!5}mewFm5{;ks1X;nlM0 zZXf~o301@esy;rZ*>5zn>OqB;7iahiR68K#0@Y}9COuA2`oLgY2RD1?^_zLdi@*T;j(x5?wQXFCGYTWyi?0!)#Kmr^p`#T z%VN!7w)Jdw_pOQ>!Kcc>rz*jbO84mU`ORQtP5EW<nD#7QMr*4U#J9}$3;yW+Y zT8Oj#mbK&vmc-yUkAT
  • {I<^q<6N>-oyr@{{Rzr%T-I`?O4qb#E82?Wioi|*qS%Ypd7jDXQrh!}y}R@0T|4El z1<~J_78=^^MLY8s&GVjbOTxU?ltGsi$c;Av4Qv=k<{JpGJ!;VbYiQuWHh(unC^{tJ z6H&(-_*OqETK>QaKx@j_w1y7=lguojpk?q6#3c9k~P z5%2#%yP;@A#0#6R-yFvn5lp85YU(}}1m6s%jN;s7|umFRPzmj@F$DX2vnguzSse1;}+5iWO8HPN>f zmQV@iGLS+s3Y{{=M9O%XUJJWa695uo2P~K41q;A8V#lCT&DjLI49H`pR{)LxFH~bf zk{E|7n_QsDbSjPA@QRQa=b1t!P^Pf3llvVTK~0uyT1H4!9Uz;6P_AIZslyMx zhU(T^5>GQ!XMGGLKm}R#HVxD`M#z=)b%J()EL@n30ZW5At=0g~$Afq?-mw=!a2!YU zftN24z#flp>0A|Y?!my58v~=|fzjU#JX5xYmYplPul5i8?Mutf%|pYtUn*HU{>9Pp z{+nxK>%AjYXW)Tz-y_MdRD`$V}@2m!b8-Y+c5L%Vi##dio4;-#~ zJ3vu;|7xh*c3`6|T5gLjpF>^GzW3~gKV0^Q*ACoOKZ+wBlVZLH|=<73?P^SZlS^bg>VxRpm&8U z!VLLXn676SnswT)&Vh?z@RxB+a7nXB>sTg{y(A@0Tn}rusUHD!Lzg3CJVB990HKNg zF^rcH)xTLHcP8%H%10;p&V&W-W?_*>ZM8Elr?U$g4DfZOJd=&*Q>rgskNk~AaX$!~ z*ac9lMM@#Aw(w6Cztm6w-gOZt$8Ex|^&Rac+W)}PSq$U~H~`Ppu-Zp<()M(vb>xTB zOH(VpuR4$1Iez#1mCmV>*!IXweEp^VqjxS>yr-8Y!PISmO>1Y>*uG6kcxE zZTc9IZ4L1eIy7`~36QcQFiR2o5%ELq!t{MdL z8hjt%{+*VE|Gg11apSaVdgZw@XU;QxGk|`C1J!pnouSitx7d!=CP)Q92~b)V>VG>m>n=Y&_H&Jhi!-_ss#_j5D`^-T812VJ`brq*zM~m z`UZ*$1=W6aj?zp#1@r1O+C{@`gFB+ZLat#xY#ubc13&rCp!zp7*)1z^w=D~suGaOo z17ElXs-0aQbid!d`bwqq(DL(};pnEf^QPxL&!*S^^T}Ua`Rlhg`i9GW!*{wWePbJa z6Xm{%doO))KfEd6ElTpTZDrg>cCmWhmKIHrry|xrRv^=D*d0h9K0Q{peE|A*$shF@bX(MI z5AtO580Z3TY!X*3yK62`T=NoVYe@`fR~oOu)H@6gO@$lW9Uz(wu1NHa0h1HJWNf3q9w8QcOCndomEGBse7pG7~=Wko?FGTe`v!$y6zu^B+?UH^?%gy zVMoO?Sc;td+;g((-Miu4U-s@_&8&N${H?e3p@jsF!=bq|glFd7lGvkd5`U`^)e?_O z`6OJuS@7}zb8S1M6$ra<1*UoY`EST zxdewQhNsK=A{xWtmGQOpM2z8~ShWGJoaeVXY!9wJiWP#1YQLaewa!35w7j4nn#P+B zO^!O3Uvzt#dN{)|jt9~2QWAfBr6@TWlyx8Hv3*oRdJ zD%Cos-Q}KO??MwnSN=z+Yeqp39vTEe1RN4P_emfB@A=x`5DZ@vz51^%B0TdYIrb%) zyiX4QEBT}QBh*xn+3CQ!~4Ty=%wrbltsJ zI(({p@bne|MlD2M6lR2n#z7%i^>x?ybLi-uSMSPq>Aj10FPD!!Umlv`{0AoQmI>r) zF~KL8*TmAHljVW$)Ce^0#kcTL8*m97Rd-vd{Xp40P%}d7L7?Z>%zH1?Oh7{lZ1$8q zeXD_0rQ|tSHVtiAkR9|2tyOQJ)Ow)og;Cgg`V@aYFj<%PluaF5CScZ{a0|WFj_zC2 W<&J|jBQ}mt@TV^J$OKHjzyA*)4*wSb literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6845a9cbe3cae187c6fee4090d1431da0643f5f5 GIT binary patch literal 10176 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a72e0985f199cd7c3e72740593699ca2d2e4619 GIT binary patch literal 25820 zcmb_^d2k%peP+*nV+I%;gS$Z-#1Iz&lHws=B6x@*3G1K^Pbg1@GYw*(IpFT0NWg$X zIrbV*lqIMnMJnEupxBA1NL8XXt`$>TyOEt_^>l2xH9=C>uhNngmv{Psk3vL;l+{Emb_SsSWN)`jYl^`ZJ?L#QDc2nCXjp~hrW zsEMUR^6PVoS0!)XDr+iLPXKsGIq{iJs)v z(AH#csF#I(iC}VDXj`%`)W^criT>n3Xn^@^5`)R1&=B+c6Wf!+p<(8)O^hUWgmy50 zU1Dc)S7=xAq0mDtT%XvT+!NZ9+#A}xdc0?Xe!jpAjrZ?gSUx`VB7D`wqS` zUGFG2E;Q!g99(P%%NrDWW7`C`aHB`xiP(%EAJNcVU} zsnjAWnOdcv%PoviJ>yleLF9b`b?jvA*@m3uRt&M;mRg7QY)9HBSVzx_AgCQ-bex|tD})rIu(yb67d-!oQfm` zL#>Bg|A+Wi$YRJWstb;q|zQCcC@0UL7Uus6p5mlv^f2=n0PcI zO+1~FE>2CQ#f%V>-4t;qE+r$G=!6n_IyDtfrSPn}R3hu)F;Ps5a_t!*6QLfSOhwZv z2^FDoxqeK@TuO^CjHZzl6mK@1vY-;szUR5n^} zydY%4$x>AtUI6mD9ucDx@fU@Ysqr*|c$cXcaJM`=AqWW+=RHDwIhwwdN~9yGL3Wn? zc-;Kx*|U#78A)9bp2YhTq)g@O@YBlAeY( z?7_E@;;9QtkeWhoEtLr;(ibqW+-UDqA~GGG!a$Q96UY=Ek7I<{C*m=Is*_tpAr^^d z!jX#^JfkW$jvLQeAvvWD5!B$in3_V@SUCuqUW`hz33+7CdFppKqjX%hj6UXf?< zM$Ja|IqR(T<%6?^$;$Fd31+!jt2&E!aRv@0*edfX{#oO!Y1aG>)sKrICRQpnAIs%X zo>jUk-aSR7e(v*5ZkUq{my8DP%P9Se%e!p)GIz-kG|u#v5a){kXK*ZN5otk|eH*?? zI3ANN>r|B4;}}!*FCzmG;{$lH^k<_2_Xe&1V#-BsTYS5@$*Ad)0v5MYRBO4$dDAz2m>@E0UFZKRD5a( z5C|v*at@`ZC?Dn}9w^-%oSK%K!UQ0th}eb~Anrrs_v0sBfpdks>*MMU-i|KU9=UR+ zP~DcV9?De@U3sivtIpb53!bLDhtGNVCI8aoN1ow=yD{(HopbLl`08(Xv%$T0O-4`E zJrh?oQnYh;=o-nnMwVSWv*w-i2P#AN9C~SfDY?*ycWWQ%HGRL=a)h(VW}5%9J&}&G zUdax;vh!)Yf$3;zup$G;X_My$0+o|TZ@SEKlV+A{gQHC{)2!)=@iFe}hFO#DR54_< zp^lOm5xAisZMx1H-!+t{)HD|~jseL`03q=Jas;hnKW=h8eVg+Ho~alELkUACDacm! zuHcW@i^Sp~%4ilJCO>^OR+8)jCaFb8)HfQ8;$C=UZwb991-(o0C}PL(lMchV!mZZS zC6_J;!qThM~&UN7AB<`E9E4>-DNxGjM zxoGfgy41lCGf*RExv=(pnqwbQBpAkrIEkC=NXD@^qj{3-ynrQCVr>;4r6gF8B_S~` zQNv50#1jrrrLnBWQ}IkVJX1rx9o!K2Wh9mef39!^mpAWf$+=pxuC7%+nCExq_?@@T ze(>e@zr4&J`p}T$kIWza$lY2raqe#M7*%N$M{pYp+GTr~kxt>T>Da}D0KYpN z{_4d@f`}@FOh7f+8xBWOsdPqxj&PXuOSGdHk;cl~94ncPDDecvl5-Y6sTs~UxizQf zH%}I}^jtZ;*n4BgwSi@G&t0?8GHOurQEJ&9E0G{rrAs~_ktkbfl@_EZja&7ig^YdL z{{Tz0`(C zLKGsg>9AU+5G&C{jO3xI#lEpb-f}cc_3(JF>^R+JZ z-afnHJ#yvIwKkwc^T#&->Xu!%Vz*EKuxEM86IpxvPi<|5+P-;5p`m%f{h5{P?7O-1 zR^Wry_gj~@9Lm|-=N*gtKXz3Y+%Hnl<3VYlwi)YM3=@A099+;x}hbxiQB}pB7oQYtD>;Q$1_crJBqYADEVR zcFh97Dn77rX6p$d!xMeUM^Z69U1DDn(>(iZd^{uZG`K;Wn8kA_LUvGM@vnqvVQ3ch)>>0SJ_Eea@QlW{7TJ7n}adbF&fy>X@5!mmXK#q>hYN4bEC8 zRhf+%g*(QRb+V=+qU2R;1|4gqi5>~#rGQPu8qU)i3syLj=2e=dpI7G~_!d4s&X@R& z*r3x%-*z83>PV6e6hYd@Kf)`#4WB+g3Ffh%Pp1SvJOz#R@kNV#RO)G7>lPO zVjMGtHHx*Rg6|Ac19(7X`Vtzq~%<-n@lzj*Ze z$!jNXT)tVG5AMqa_pR6;UUPY`oMN+AuDcWwQ{i+fOy4V5Ev76d40sglM_vg#_?p43m;&9Ghu7&Wep-wkxzkWtH91%)^gsjTzY7m~OVP@#iB7 z5DoHA3R)V>z`>wPHl`(ohA~g3<0;urjU$p%wz7E&AqYe^kOs--I0RQBTMp?H%QhOg zC`7hiOfl)ted}YAl6llNvE_8rO37AR=KLAbO1}>Wv`Yw)q@KMZw#!sdNEV)S~-jBTc=(=mGy1EHLzkn{IShbG&&rC zGSQM;aqp!0*qAj3<`2O6#ocPm+MjVYN8n>`*Q&4ndeyb6LhTcU+K#&xQ*{j{wa0t) zTzqV4e#F3$J54g z%UO;N)YGK22|YG5`F?Y$jTG+0^A;BF!rSt(Jl%+Eo#!qaLTy;-x61w}%R)`e4-$rp zGxa4OiN!0P%Z`%BFD|mhM7BZJLsPvhRbrAR#4EB?**ztuFF?Fb%)H11P;ymiab+-0 z0?>;RC&o3tCs9d2p1yJX$UnTe}u3^;RU0WkVte9(N61oFqVGL z0QL$2mHx`>H z=+O8wk%l|?@AD+2FUJm1PR0>v5=ikSiX-|$uA)J(>C1~R(-W6g1QZr6B=TeHNu`WC zJORcKQh1+uh6-eDWHqrSm#d?8i?ig+k;7V~H9@>Wag0u4^*X{~rsN5SC3?9;hE`lx z6v@Fi@noi@Vuq+Q2+|MbwaG{!eGkqr0M}bMN7aHYXAi8{o7NiI=FP9V3yoWFt17f^ zn>Qo25NJoxv)b6XbmHc@<;H#VaJ7B#=B3;2<@RHgrlnBdf>>A4&b0<9q7f7qKg1rv z*D*}KR`}Wn$kz;CTOawFD30ZzxTa1j8lH02{y|C>K-|EtdGkm1AfvmO06D5n7<5Hr zo&FZF5K|e5liqykQC#9~q}8TZIfv8-=GT}hPo(mM(Jxz@Lgg~v!PKWqz0a9agE8Zr z5jAR)N=ZSkSXaR+>84Q2Njb~ynl-4g#H#C-`yAr6$yia}>5Mk<^iyOs=2V3i(W9Rd z0)Qs{CzB-d-*lYHh6iITO=?0|0LMd;Q*ghEVv8R8JIpTu64)-BS;g83xY7hpu|Wo&T9 zgG^Cc^AHP4(=(b*BuG)J1Z{jT38{G55S;No%@Rc;kf_9vb_}q^n6)?>FZ)%FPEq8s zRN|9(BKD9IC1-$~ARO5lg=Pj^A9ynLHHCNTu zJqvsCuI4+g=B3em*TZ+Z9xl{(&!1RrYW;VKn>*gy^Y)&6-+^4;f#tS?%T0$CPOZ_? z!szk8-u;8!D@_mGl0LZf{-u?sLo1Izl|B3H^5f6Vp8^=Vy;pa?vU^dw{?cnNt$G`8 zbiOh8`ry0ZO9u=6L+_2fJ$B8x*2=%}mDj(LZ{3w^-L>4hd(ru^x3S=BUTV16bklw7 zk!<@zIp0Hzt~IxR@z=7hj-|8t?&G=c<9A%g3&VSE_hq*qpFg_d9$0nPTs^gL>V|Ep z86os2@7i+5wPm%s`S)6gNOoOwWm^VrO7C5M`*MEhaBk@EitiC9k!so&TS%^>~s0D%b_vsXq;0RwPvVlS+eQ zw6b)mQ&ntvz(geB>!xegP^Pw6J6xL*AgC|T0y9ja@e*|g%FUq12&-+v#5M%YGsDMV z`~X>tl)flN$+kiyflh>pu`uE8*W?e5orMz13GI10CL{!?9e)okQsvPEH?p%_m^gt5 zHV@@Gfz?EGY`7u;ksoq<>DiRXBshYafQeDl7c)Uqc@nbvB(Kn@t7G64ksl@%&|O>f@Ung``z)l@Duj+LVk=jv0u`FfPELkmdGGA*#7488uE%Kg1;kepZ{wKZPN%QQ1* zp_i-5h!CEZROdqGc+jO#*rZ8O)|d`#)Lnz14|BO305oSRZN3K>W|n3=WSzo zq)PN1)iGMnRPZ!Fp^2d(N@6)dn%Sm1LP-U4Us@Ug5>en7pHRcp=Dl0)c()Y%_1E`Z z+jsNq;=X17NY*`qXUf>Udgzryt2JHAH9c8(&*ss(S~IX*Gn91?6{|R(|LWW;b4yRX z_52?`zgpAwJA+v_Pc`_j&MeH_tec-%_72_g9{JvZKRuMSANiay`cG)wgA}oltZCy~ zPnHPP3i?MEpot((qwthia=)+)ZM2ul&?w__8D**zBcvHH$xXV-PgNhrq7EIbwh&{; zG&ZwWHU1h%ry#H!7r?<02?GfnRH;08v=}r2j2Kdwa?nHyQ$BO(SI7#%9E}l0msBbj z1BXniVh~xsOz(pT7TFRL&R@L12Cv)|X3fydS|BP=$&WDEsf8mMsC)Sbq$%`r z(l-p^+Rgc><1@XwLwHj=DCIZ};1^IR1~4cPU*6Sz$JI{c!Rdw51>Y%VJp#zA4KS^D z+Z|V%_V9`FLncJulk@H=xV`HpqtE#>&geU^=BdtmMsl8!TRT43^ZuS?&;Fvt=s0ly zXr*z*5cO4z#|IJyI_RPz2)HEUl?M_DitR|5KhZOc!cwh^rDgRckV_ktB>2!9jrx*q zwUuR3V9rz_YBA|4v|^e}dlyHX&*ySR7U8vV@J8A78xP_*G!95jNune@PG_>I zoI>@fB+Z<)%mqO)r^m&V5TqjAuU<2}F3+)RSj?5OGs9cL&JuY=AhA0WASdXEMSS`bo10vl1x|)!g9N z%+Qz4XJ9lyxB-(xm=+1C=rrI6?3u#0Fh&h>d{#xbB#xtFvQa!Qo5#r7wwf)0vPZ2+ zF&<*f6ayWbVu%H6GvpJ$MVTF-?37haHp31rRTBS`9RjniWBinCCMAGKz%1Lv$R%c= zBGS4KOw%|m@lWV^xpGn-$cAybT5AqtH&Yo1M71b-J@;wp#P6b{nLWP>MCn20G)9F) zI&Ze-HnzNBf8CxB4CVrZ%Yp6lo`Nfob@2s%0}+Rp7A|GITe9{oa98bBSF0AP3hn~{ zsjDXzPQX;|t_}1a3@94A5m3oNKcDw+%lWr0`}^^{(K+wA>*T6x76;5h+?ybCt);H{V);V3`7S`YmYWiMj&sx zMW`HMZ9vr06qJM+9%d5}P)W&j1`1CqZKm&wag1a|0J3gLHgx_o1{=qW^JcanPAk4- z;SX~I7`ijr6fE5(2$L2leViQPT@?w?cgROe7DFtCRpNUTB+-ye$VZm%%oY=Z|EWYg zBhvd9{|!0xWmKUNQBkr*u{mG`974nE=8d`EpVLUFFBN>X&_iN6+d*P|>Z@CfT~A(1F8jLXEvsIBsqU?&H=CBd{qtr* zFV}*r;NHtj5UQ`9SvbSc3*4&Le|2JE;%aIkb>pd}j^(PZr6+P#TjxzhquCKy_4h1g zZa#IZ>w|&!2bTSZv+l#cSoLlLfre)aotJGqa9dh&kCOTm1X@Y``Gem2BZs&j9BLo! zF#QE@fGambx|4}BdpT9rtFTTR-8Aed&_HR?Yu;0nSFBP_G_SxZ^hh7hNRY5G0VBN3^WNUeivqT$tZc%l)3 ztSQXNXm|zfOM-dI|50-aX31yXSO;<1p@2-w<-to4ILA&^mMQXvu&SCP^?M zDyw8A#oUO$BtWKB=E}f`ouAgIszJprQ~WZTGt;ORMU)b;+yo_nArduLG4o7D#wY@T zdE|gGr!Xy*fdU#=7^hE$6ld6-0NxJ2#O^QSYLCpAqZHY02B_|4j z=&W=p61283WaCpL&O;a2tgF-*N;4z6@btNP{+z(6h`QLGg4&Lyi4SX6{KxbDQ#t>s zc{`9~)NsrIW6>Y``{zeVim~UlJ@a2$+*8=TBkS&58hz{0Hy^#@9w=J4+5sR|Q(L}q zAlEohaChe2y*YR9vU?k>qt-2^Cg*(Bx}ED9$+_F-k6s&C+;igz4QzJ8F7?qB_pw4v z@FoZ<2T~Xx`nDbGLy0f%J~(pPYLeq#v~n*Z2Rz?bkPIT%Uxt}pbJ&{z0lP4<<=5ZrMgjyCi^QttLO>f z{^c4FYlgC>Zq^c|jkz1RTgXj0J;IC`8<)UaFV|)+Z`z<)e?e!)G+}(C61xa>V5OO6 zd>aspF=oKFL7ML{AvTCf^y6&MqhQhRBA}?LnDU-cFK<%ZIdZO&QwE|xMouSqT0rU9LYmXLc1NqwSTy1xuwh0o?p^^OHvE1OX z?6zZf>s+lhi;iLw=WEP*yVi#HEt>N_KIcQVZw1~Ayw&n%%N^e!YVPRH^Lumr-rJqa z{J}*}!Ov&?{e|IOi=!*GgN5ead%L-+riF9G{h+S${vA30j$5O*+n4<(?;XH{tLI)h zrPU1X0>E^ z)i-OpW_;Ce=H{4*JQmn*vh=z}@K;!RJ+ej*OHle&%my8T280aSNf!`8LlCsFG`E#! zii;9T^JYV=w*8O@F|-Rr1ybrrVf9PZLl;5<$l6R{t)f@IW#%r>hDjnkMjreg#TrO* zG{Yb*JItZfeu5n7K>KtUKw|$Yh?bpJzuaau%NK&3u*9QZ)<7FvwI#!ayuqQzg~Ys$!=fr4y}Op#zn{E$-p6&zIp z^EVX1KwyA;36e8A)2uF%$yp@Xd)jydZJSQg?e@5;Gk5rcaIdBzwBXOShEx=$5+xS zU=mG}V0SlPDmBSkYf1eUQt_M9Fw=uA_s70y5cfeS)vZ1O0vaZJ)KK{jyzDK9R3Bou zss8dEvHj(c>VsgaG)m?ysl7;}(;EGjGqxClEo}KRPwr65E8nqque5@J#@?mI&)Q<# zyP5zFE0g{l_*29`q~Ko9j?hWsa#n zwm;>#8YeW_IkH60C?Zw1jZ56HU!zq1;7r>n+n+@OS!N!G zjborpRe=OQ(*O=78i8h;8b$|)@USq4!QYI7sgs_5@-z=RQDmJp~p##CK z3e&>K5aLZLwr?<<6rq_ShP_6<3^@ds%Dz@7-UhZZ3E}j(B6zuoM{+>vTj^wyl1&j2 zOX9aF=L9)46cs)wK|VSjfGMjK(`Cjv5tS!;$$6ff6L4g^dLW5N_#$p4heiyJ6cH}R z;y8C9Bb(_HiT{}%?IVXqz@|eZf+YzKBcm8W#V9f&s9?FTiH&5Fa5<`2D=yO`Gt*=_ z;VlVia8oR(KSbQjkRE&WIdY^SBBZXu0e=NWPMN=g&g$~Q<$3d3bzQ!?KUWPg#&Y%W zy!EH9>cwcje&A010OT@xe^<`mmGy7Wy0^oHvg`VR*A8Ue{Ne%f?|*H7*4@6iADdgM zn{VvMH}~h7`}57ix#r>TJ-p&O1O`muyz;f%a<$v?wZnI6hrxv@kxS8h&+c5$?tIVw zT+jY|&uFd(+|*IXUz*ykSwB^_&=ifvy5YMfb9D`*MlJ36=H0pG-HWE*wHF$iu3x@( zdC|N^tYUZ0-n|sPc}Up@2jhaAt9`}Q0j6-_v4W@i>T?Uv-8h?X9mwI|Gf*^oJTd=PS!@CKnGf{l0=+kD-wV7Q$OT5`Pk!vJ!|@k+Uohtj z-VCnzcCI$I-iY6dtu#J7{}^7lyS#xPp+NKX+1F+v;L7?tS7|5z?Hzx9@Xrn|^N*28 zsuk)%{kIrs&If|IKu}RW<^#L#1a^H~+xBS#ztr?r`RiFrRbt%+rx`cdWatY$GDfhHB?szqtFXfvbgp-;9@8zqL>g*8A46B4^mw zT4?2O99wFsb65VaO)TK=9#S&)U^bkR2 z?diHd9t+9+krncA7(IP{eGM6n8P>Dx#154TwiBi4n$y8>h0AC{Gd+2}o+Mwt?P#x# zVTVf0Ku`Ml^)%oAI?C*|bfj#=p=au$-@CFt1w@=i5R^-WaH9MUJMXU_i?wD7LndU{ z=L18pV`Eqkqv@$>O-BGxT?}ggHZhY0IL<;VohZh`+A1nw&n2lkBjxyg&?n5;pNhN) zxn8#vtf^qnFQ665T9t!OwyEj?iQ>OQ4qIZ<oFeC|tg1xazGYBMxTe+cvb~-A?6F#io3qFBj;`4jf!@A6jkc%?9@^ zw>&(5Mt$yFI`a_>FKwJ}_B98ak=?7gm^lMcQJXHcHSDCD5?~=5TBT z*_dLBI;lWOi$O`Du&5OY(G-H65%lyH6&q_tZof{!uff3~RZ}o<6T)iq6gr*oTW-|! zrsYioFuum=jpE-@{s)oXvX^Zh2*<~jb0H+Qb8^E*g1<-pjT;GCRGFmOkV-A+%yvBh z{Jb20L@4;bPzwleClTJWugqrcr?ai6m+hzLXFpY}EEdO>Mpx{;pOSuqfhAdWGg@ls zmg(k27+~#cfm7GAZZZ=ArI5iMXdc}OQqy@9e{u?_p)sA2Sw=`Rjhjyi0zOL`$bg;yDo z(y0w1O%ebwX#91<=ZG{nK_iTBYXO!dVnX)K7l{^B;Q2xr#R)(V5$KkqC!A0fm4I9l z#q?Pu&XST)l);LwLm_OKgdiQHHcBq zZ-odzJ@f(gr0m#MO!x{;e{iN3Azqqb;(!TI1eo`L0}1qwG#*D{*qmbWL*g(tb0`*% zF&i%ITHxtZqa^y&%s*91i{b{g++kQ_06B2zA;HB=L&d}bc|^n#-wQHn=B=kH$*IyQ z6p}Dhgr8`VczPc{w~1WN?fcQVs?kvb(Z#6_|G$UsF-jzC=Do z(7DJ*%iab!`Uga8gd^?5O0CNq@MyT=wUyQmaZtr0-7Now0EwEQ7>q%Q+J48|p0%IK zcAQ#<>uoQ1o3h>>aB0|?WHfjh3ym%L#$c{7mCftz<2yM*)n6o0xJVj0*@SN=ev^VE`WAneoNtrUNzR+()RObZnQa>?TkGu0_8-i39x7TWh@|KfdxDqgtXg-l*pPuc4Ev+cOkI}846GZ> zL;WDnnxk>uLZ0H7fjeb*90^-2&O&WV7Tf!3w-;Gx^aQ)JPUC5Df5>2|Wo0oBl|>#_ z7I})7jRDJ!Y~O(*hx>vSvbY)2A$CAd?+n$~UPJ7TD(cF+Uz;7NUB(Z;;!M$u6n#R1JupM(xQ$Zy3c3`hOL{w9~&owv>jgLsn(v2wJMLxZxyGLByf_7Bz90= zwor~uuTaUMupe9b+<{|3N{<#;`T)e^T%$IVZ@8kP{;(LC!gH z*gA5Se8-hbqt_=G!g&uBLo?{RQGBj@KeoZ-MvxUo;T-JfvVKH>U*!X3Y7G~t1r zGwk|=JN5~;{}XPIMcqTxfls)Rdq#`FxX!`(IVwXwr0e*pqh@i>vZLjSwP^Jkb`>1W zMHB98egGTpz%@@((MCQySKm~0kk83AG#6dub92`Ebr1QvOolPTjV_QTxZmtl?zc;K z!cvMydZX)}(P{whbL6g@5K&Yj0$k_TLVM?DjyglI;H<)eWeBcS1&S8j(F{Md7uN=g zHVWaOuDZo%U=>=V#AuJzx$Yw02=}<*EEa=0Lr1BIjzU|{lJt6#it8xsKlAPi-&!>v zd-*HtUJ8B1fWkj>G#eUO$+)k9V6fm$Z?@D48wKrL3tyy!)SasN=*!QqyAZm!|CrtI NnBiv}yRi}Ve*wEjz*PVM literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/check.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/check.py new file mode 100644 index 00000000..4b6fbc4c --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,181 @@ +"""Validation of dependencies of packages +""" + +import logging +from contextlib import suppress +from email.parser import Parser +from functools import reduce +from typing import ( + Callable, + Dict, + FrozenSet, + Generator, + Iterable, + List, + NamedTuple, + Optional, + Set, + Tuple, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.tags import Tag, parse_tag +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import BaseDistribution +from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +class PackageDetails(NamedTuple): + version: Version + dependencies: List[Requirement] + + +# Shorthands +PackageSet = Dict[NormalizedName, PackageDetails] +Missing = Tuple[NormalizedName, Requirement] +Conflicting = Tuple[NormalizedName, Version, Requirement] + +MissingDict = Dict[NormalizedName, List[Missing]] +ConflictingDict = Dict[NormalizedName, List[Conflicting]] +CheckResult = Tuple[MissingDict, ConflictingDict] +ConflictDetails = Tuple[PackageSet, CheckResult] + + +def create_package_set_from_installed() -> Tuple[PackageSet, bool]: + """Converts a list of distributions into a PackageSet.""" + package_set = {} + problems = False + env = get_default_environment() + for dist in env.iter_installed_distributions(local_only=False, skip=()): + name = dist.canonical_name + try: + dependencies = list(dist.iter_dependencies()) + package_set[name] = PackageDetails(dist.version, dependencies) + except (OSError, ValueError) as e: + # Don't crash on unreadable or broken metadata. + logger.warning("Error parsing dependencies of %s: %s", name, e) + problems = True + return package_set, problems + + +def check_package_set( + package_set: PackageSet, should_ignore: Optional[Callable[[str], bool]] = None +) -> CheckResult: + """Check if a package set is consistent + + If should_ignore is passed, it should be a callable that takes a + package name and returns a boolean. + """ + + missing = {} + conflicting = {} + + for package_name, package_detail in package_set.items(): + # Info about dependencies of package_name + missing_deps: Set[Missing] = set() + conflicting_deps: Set[Conflicting] = set() + + if should_ignore and should_ignore(package_name): + continue + + for req in package_detail.dependencies: + name = canonicalize_name(req.name) + + # Check if it's missing + if name not in package_set: + missed = True + if req.marker is not None: + missed = req.marker.evaluate({"extra": ""}) + if missed: + missing_deps.add((name, req)) + continue + + # Check if there's a conflict + version = package_set[name].version + if not req.specifier.contains(version, prereleases=True): + conflicting_deps.add((name, version, req)) + + if missing_deps: + missing[package_name] = sorted(missing_deps, key=str) + if conflicting_deps: + conflicting[package_name] = sorted(conflicting_deps, key=str) + + return missing, conflicting + + +def check_install_conflicts(to_install: List[InstallRequirement]) -> ConflictDetails: + """For checking if the dependency graph would be consistent after \ + installing given requirements + """ + # Start from the current state + package_set, _ = create_package_set_from_installed() + # Install packages + would_be_installed = _simulate_installation_of(to_install, package_set) + + # Only warn about directly-dependent packages; create a whitelist of them + whitelist = _create_whitelist(would_be_installed, package_set) + + return ( + package_set, + check_package_set( + package_set, should_ignore=lambda name: name not in whitelist + ), + ) + + +def check_unsupported( + packages: Iterable[BaseDistribution], + supported_tags: Iterable[Tag], +) -> Generator[BaseDistribution, None, None]: + for p in packages: + with suppress(FileNotFoundError): + wheel_file = p.read_text("WHEEL") + wheel_tags: FrozenSet[Tag] = reduce( + frozenset.union, + map(parse_tag, Parser().parsestr(wheel_file).get_all("Tag", [])), + frozenset(), + ) + if wheel_tags.isdisjoint(supported_tags): + yield p + + +def _simulate_installation_of( + to_install: List[InstallRequirement], package_set: PackageSet +) -> Set[NormalizedName]: + """Computes the version of packages after installing to_install.""" + # Keep track of packages that were installed + installed = set() + + # Modify it as installing requirement_set would (assuming no errors) + for inst_req in to_install: + abstract_dist = make_distribution_for_install_requirement(inst_req) + dist = abstract_dist.get_metadata_distribution() + name = dist.canonical_name + package_set[name] = PackageDetails(dist.version, list(dist.iter_dependencies())) + + installed.add(name) + + return installed + + +def _create_whitelist( + would_be_installed: Set[NormalizedName], package_set: PackageSet +) -> Set[NormalizedName]: + packages_affected = set(would_be_installed) + + for package_name in package_set: + if package_name in packages_affected: + continue + + for req in package_set[package_name].dependencies: + if canonicalize_name(req.name) in packages_affected: + packages_affected.add(package_name) + break + + return packages_affected diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/freeze.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 00000000..bb1039fb --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,258 @@ +import collections +import logging +import os +from typing import Container, Dict, Generator, Iterable, List, NamedTuple, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import InvalidVersion + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_file import COMMENT_RE +from pip._internal.utils.direct_url_helpers import direct_url_as_pep440_direct_reference + +logger = logging.getLogger(__name__) + + +class _EditableInfo(NamedTuple): + requirement: str + comments: List[str] + + +def freeze( + requirement: Optional[List[str]] = None, + local_only: bool = False, + user_only: bool = False, + paths: Optional[List[str]] = None, + isolated: bool = False, + exclude_editable: bool = False, + skip: Container[str] = (), +) -> Generator[str, None, None]: + installations: Dict[str, FrozenRequirement] = {} + + dists = get_environment(paths).iter_installed_distributions( + local_only=local_only, + skip=(), + user_only=user_only, + ) + for dist in dists: + req = FrozenRequirement.from_dist(dist) + if exclude_editable and req.editable: + continue + installations[req.canonical_name] = req + + if requirement: + # the options that don't get turned into an InstallRequirement + # should only be emitted once, even if the same option is in multiple + # requirements files, so we need to keep track of what has been emitted + # so that we don't emit it again if it's seen again + emitted_options: Set[str] = set() + # keep track of which files a requirement is in so that we can + # give an accurate warning if a requirement appears multiple times. + req_files: Dict[str, List[str]] = collections.defaultdict(list) + for req_file_path in requirement: + with open(req_file_path) as req_file: + for line in req_file: + if ( + not line.strip() + or line.strip().startswith("#") + or line.startswith( + ( + "-r", + "--requirement", + "-f", + "--find-links", + "-i", + "--index-url", + "--pre", + "--trusted-host", + "--process-dependency-links", + "--extra-index-url", + "--use-feature", + ) + ) + ): + line = line.rstrip() + if line not in emitted_options: + emitted_options.add(line) + yield line + continue + + if line.startswith("-e") or line.startswith("--editable"): + if line.startswith("-e"): + line = line[2:].strip() + else: + line = line[len("--editable") :].strip().lstrip("=") + line_req = install_req_from_editable( + line, + isolated=isolated, + ) + else: + line_req = install_req_from_line( + COMMENT_RE.sub("", line).strip(), + isolated=isolated, + ) + + if not line_req.name: + logger.info( + "Skipping line in requirement file [%s] because " + "it's not clear what it would install: %s", + req_file_path, + line.strip(), + ) + logger.info( + " (add #egg=PackageName to the URL to avoid" + " this warning)" + ) + else: + line_req_canonical_name = canonicalize_name(line_req.name) + if line_req_canonical_name not in installations: + # either it's not installed, or it is installed + # but has been processed already + if not req_files[line_req.name]: + logger.warning( + "Requirement file [%s] contains %s, but " + "package %r is not installed", + req_file_path, + COMMENT_RE.sub("", line).strip(), + line_req.name, + ) + else: + req_files[line_req.name].append(req_file_path) + else: + yield str(installations[line_req_canonical_name]).rstrip() + del installations[line_req_canonical_name] + req_files[line_req.name].append(req_file_path) + + # Warn about requirements that were included multiple times (in a + # single requirements file or in different requirements files). + for name, files in req_files.items(): + if len(files) > 1: + logger.warning( + "Requirement %s included multiple times [%s]", + name, + ", ".join(sorted(set(files))), + ) + + yield ("## The following requirements were added by pip freeze:") + for installation in sorted(installations.values(), key=lambda x: x.name.lower()): + if installation.canonical_name not in skip: + yield str(installation).rstrip() + + +def _format_as_name_version(dist: BaseDistribution) -> str: + try: + dist_version = dist.version + except InvalidVersion: + # legacy version + return f"{dist.raw_name}==={dist.raw_version}" + else: + return f"{dist.raw_name}=={dist_version}" + + +def _get_editable_info(dist: BaseDistribution) -> _EditableInfo: + """ + Compute and return values (req, comments) for use in + FrozenRequirement.from_dist(). + """ + editable_project_location = dist.editable_project_location + assert editable_project_location + location = os.path.normcase(os.path.abspath(editable_project_location)) + + from pip._internal.vcs import RemoteNotFoundError, RemoteNotValidError, vcs + + vcs_backend = vcs.get_backend_for_dir(location) + + if vcs_backend is None: + display = _format_as_name_version(dist) + logger.debug( + 'No VCS found for editable requirement "%s" in: %r', + display, + location, + ) + return _EditableInfo( + requirement=location, + comments=[f"# Editable install with no version control ({display})"], + ) + + vcs_name = type(vcs_backend).__name__ + + try: + req = vcs_backend.get_src_requirement(location, dist.raw_name) + except RemoteNotFoundError: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[f"# Editable {vcs_name} install with no remote ({display})"], + ) + except RemoteNotValidError as ex: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[ + f"# Editable {vcs_name} install ({display}) with either a deleted " + f"local remote or invalid URI:", + f"# '{ex.url}'", + ], + ) + except BadCommand: + logger.warning( + "cannot determine version of editable source in %s " + "(%s command not found in path)", + location, + vcs_backend.name, + ) + return _EditableInfo(requirement=location, comments=[]) + except InstallationError as exc: + logger.warning("Error when trying to get requirement for VCS system %s", exc) + else: + return _EditableInfo(requirement=req, comments=[]) + + logger.warning("Could not determine repository location of %s", location) + + return _EditableInfo( + requirement=location, + comments=["## !! Could not determine repository location"], + ) + + +class FrozenRequirement: + def __init__( + self, + name: str, + req: str, + editable: bool, + comments: Iterable[str] = (), + ) -> None: + self.name = name + self.canonical_name = canonicalize_name(name) + self.req = req + self.editable = editable + self.comments = comments + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "FrozenRequirement": + editable = dist.editable + if editable: + req, comments = _get_editable_info(dist) + else: + comments = [] + direct_url = dist.direct_url + if direct_url: + # if PEP 610 metadata is present, use it + req = direct_url_as_pep440_direct_reference(direct_url, dist.raw_name) + else: + # name==version requirement + req = _format_as_name_version(dist) + + return cls(dist.raw_name, req, editable, comments=comments) + + def __str__(self) -> str: + req = self.req + if self.editable: + req = f"-e {req}" + return "\n".join(list(self.comments) + [str(req)]) + "\n" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 00000000..24d6a5dd --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..316f98ec424ed9be3d94f95078eb8f32c8517c5f GIT binary patch literal 314 zcmXv~F-`+95IlznqDc9}m5G$x3eqA<=nyrH<@2r1PJFiIU4o8}(C`7?!Vl8&0Yth~ z_(U?z&S*8O+4-8yrbWhluG)2;--9?qoXBC4$$QZh&qXg5qqpUKNM#qA7l%|Pbc(Sl zIh58DE9b0l%c%5LwMflgAG*p+ndNZP0gUoYe-NQrO^@5$Kg` zW&BDz3xsKh2`Fh$M92iK%1&0b!w2-36o&-pci?Odv1b$fy1KprvW%;93Wzp>w4O0} tzn|Rx|8|!ybJ(E-8an#95JLQpgczrBmVZvAV3q&? literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0872f4122e5e237befb7d0bed7faea132505b9f GIT binary patch literal 1846 zcmZuxO>7%Q6rT0|c-Q|)oS3E|-O@(Hh8>0)Dv%ZodlvjYuuy;4X4e6STQs}qG(PJrneL>{BuA07f-*m|a@x$nPBlo8`&y{+H>+eV6FSgJ1tK{Pz2^>+YIK*4x9$FUTb_7UTXVc z%l2`Y#A95GC|UDva-|b?2`}~-!7wOhUQD%QJwgTm9fk~JkAu34V$i9q3-2*;rGc`O zNu3gkfk~+h)Bzf318I;M$PY3*TI&78h_eSPcE;cpB%wi8=vYKgWMH`RK!2d@j3WYv zRPj5CblmQ%XV5ZY(q=|N*I+LReKC1czJ@lX=(NAIPKFl|#L$ZiXc9PygyiaA_%Hr*?Am1{u0 zHlbYc0th71O-1&pC~G~J#5@**7R7u?sIpKMp(a3aMKG0#6Ny`<^7OtX=xD8nPKN;T zJHF?1tPg0oPHx1+Vw-Wx?gUGY?^(dr4MHtO9Sbr>VrI30vsTiL?~;H}8%SsYMJ?ZJ zS?NX3H?kYOK-D!1Y-q@YZ3Vd2!c_~|;;#rK{(7~8zMeTqyT#Ne=e5v3+RY36?WTA1G zg~nlbQ_*t#ltv*7pJuzl))qXK%9~!gwF8*Yk-PT5$DV3g7=k8toYIURn9%-mJedp@! z)lpVhI?7MoIe&X;WC$yVs?Uw`0u@lcG%5;ILe<)+EKmiNr$!S3O`?i9ni8mr%rm2D Qfo71F+phtli*U|=0c0Qj`Tzg` literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5acd2a26c964d60ca24585734647ac796746f351 GIT binary patch literal 34151 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 BV`~5a literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py new file mode 100644 index 00000000..9aaa699a --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py @@ -0,0 +1,47 @@ +"""Legacy editable installation process, i.e. `setup.py develop`. +""" + +import logging +from typing import Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.setuptools_build import make_setuptools_develop_args +from pip._internal.utils.subprocess import call_subprocess + +logger = logging.getLogger(__name__) + + +def install_editable( + *, + global_options: Sequence[str], + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, + name: str, + setup_py_path: str, + isolated: bool, + build_env: BuildEnvironment, + unpacked_source_directory: str, +) -> None: + """Install a package in editable mode. Most arguments are pass-through + to setuptools. + """ + logger.info("Running setup.py develop for %s", name) + + args = make_setuptools_develop_args( + setup_py_path, + global_options=global_options, + no_user_config=isolated, + prefix=prefix, + home=home, + use_user_site=use_user_site, + ) + + with indent_log(): + with build_env: + call_subprocess( + args, + command_desc="python setup.py develop", + cwd=unpacked_source_directory, + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 00000000..aef42aa9 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,741 @@ +"""Support for installing and building the "wheel" binary package format. +""" + +import collections +import compileall +import contextlib +import csv +import importlib +import logging +import os.path +import re +import shutil +import sys +import warnings +from base64 import urlsafe_b64encode +from email.message import Message +from itertools import chain, filterfalse, starmap +from typing import ( + IO, + TYPE_CHECKING, + Any, + BinaryIO, + Callable, + Dict, + Generator, + Iterable, + Iterator, + List, + NewType, + Optional, + Protocol, + Sequence, + Set, + Tuple, + Union, + cast, +) +from zipfile import ZipFile, ZipInfo + +from pip._vendor.distlib.scripts import ScriptMaker +from pip._vendor.distlib.util import get_export_entry +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_major_minor_version +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) +from pip._internal.models.direct_url import DIRECT_URL_METADATA_NAME, DirectUrl +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import StreamWrapper, ensure_dir, hash_file, partition +from pip._internal.utils.unpacking import ( + current_umask, + is_within_directory, + set_extracted_file_to_default_mode_plus_executable, + zip_item_is_executable, +) +from pip._internal.utils.wheel import parse_wheel + +if TYPE_CHECKING: + + class File(Protocol): + src_record_path: "RecordPath" + dest_path: str + changed: bool + + def save(self) -> None: + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType("RecordPath", str) +InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] + + +def rehash(path: str, blocksize: int = 1 << 20) -> Tuple[str, str]: + """Return (encoded_digest, length) for path using hashlib.sha256()""" + h, length = hash_file(path, blocksize) + digest = "sha256=" + urlsafe_b64encode(h.digest()).decode("latin1").rstrip("=") + return (digest, str(length)) + + +def csv_io_kwargs(mode: str) -> Dict[str, Any]: + """Return keyword arguments to properly open a CSV file + in the given mode. + """ + return {"mode": mode, "newline": "", "encoding": "utf-8"} + + +def fix_script(path: str) -> bool: + """Replace #!python with #!/path/to/python + Return True if file was changed. + """ + # XXX RECORD hashes will need to be updated + assert os.path.isfile(path) + + with open(path, "rb") as script: + firstline = script.readline() + if not firstline.startswith(b"#!python"): + return False + exename = sys.executable.encode(sys.getfilesystemencoding()) + firstline = b"#!" + exename + os.linesep.encode("ascii") + rest = script.read() + with open(path, "wb") as script: + script.write(firstline) + script.write(rest) + return True + + +def wheel_root_is_purelib(metadata: Message) -> bool: + return metadata.get("Root-Is-Purelib", "").lower() == "true" + + +def get_entrypoints(dist: BaseDistribution) -> Tuple[Dict[str, str], Dict[str, str]]: + console_scripts = {} + gui_scripts = {} + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + console_scripts[entry_point.name] = entry_point.value + elif entry_point.group == "gui_scripts": + gui_scripts[entry_point.name] = entry_point.value + return console_scripts, gui_scripts + + +def message_about_scripts_not_on_PATH(scripts: Sequence[str]) -> Optional[str]: + """Determine if any scripts are not on PATH and format a warning. + Returns a warning message if one or more scripts are not on PATH, + otherwise None. + """ + if not scripts: + return None + + # Group scripts by the path they were installed in + grouped_by_dir: Dict[str, Set[str]] = collections.defaultdict(set) + for destfile in scripts: + parent_dir = os.path.dirname(destfile) + script_name = os.path.basename(destfile) + grouped_by_dir[parent_dir].add(script_name) + + # We don't want to warn for directories that are on PATH. + not_warn_dirs = [ + os.path.normcase(os.path.normpath(i)).rstrip(os.sep) + for i in os.environ.get("PATH", "").split(os.pathsep) + ] + # If an executable sits with sys.executable, we don't warn for it. + # This covers the case of venv invocations without activating the venv. + not_warn_dirs.append( + os.path.normcase(os.path.normpath(os.path.dirname(sys.executable))) + ) + warn_for: Dict[str, Set[str]] = { + parent_dir: scripts + for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(os.path.normpath(parent_dir)) not in not_warn_dirs + } + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts: List[str] = sorted(dir_scripts) + if len(sorted_scripts) == 1: + start_text = f"script {sorted_scripts[0]} is" + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + f"The {start_text} installed in '{parent_dir}' which is not on PATH." + ) + + last_line_fmt = ( + "Consider adding {} to PATH or, if you prefer " + "to suppress this warning, use --no-warn-script-location." + ) + if len(msg_lines) == 1: + msg_lines.append(last_line_fmt.format("this directory")) + else: + msg_lines.append(last_line_fmt.format("these directories")) + + # Add a note if any directory starts with ~ + warn_for_tilde = any( + i[0] == "~" for i in os.environ.get("PATH", "").split(os.pathsep) if i + ) + if warn_for_tilde: + tilde_warning_msg = ( + "NOTE: The current PATH contains path(s) starting with `~`, " + "which may not be expanded by all applications." + ) + msg_lines.append(tilde_warning_msg) + + # Returns the formatted multiline message + return "\n".join(msg_lines) + + +def _normalized_outrows( + outrows: Iterable[InstalledCSVRow], +) -> List[Tuple[str, str, str]]: + """Normalize the given rows of a RECORD file. + + Items in each row are converted into str. Rows are then sorted to make + the value more predictable for tests. + + Each row is a 3-tuple (path, hash, size) and corresponds to a record of + a RECORD file (see PEP 376 and PEP 427 for details). For the rows + passed to this function, the size can be an integer as an int or string, + or the empty string. + """ + # Normally, there should only be one row per path, in which case the + # second and third elements don't come into play when sorting. + # However, in cases in the wild where a path might happen to occur twice, + # we don't want the sort operation to trigger an error (but still want + # determinism). Since the third element can be an int or string, we + # coerce each element to a string to avoid a TypeError in this case. + # For additional background, see-- + # https://github.com/pypa/pip/issues/5868 + return sorted( + (record_path, hash_, str(size)) for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path: RecordPath, lib_dir: str) -> str: + return os.path.join(lib_dir, record_path) + + +def _fs_to_record_path(path: str, lib_dir: str) -> RecordPath: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if os.path.splitdrive(path)[0].lower() == os.path.splitdrive(lib_dir)[0].lower(): + path = os.path.relpath(path, lib_dir) + + path = path.replace(os.path.sep, "/") + return cast("RecordPath", path) + + +def get_csv_rows_for_installed( + old_csv_rows: List[List[str]], + installed: Dict[RecordPath, RecordPath], + changed: Set[RecordPath], + generated: List[str], + lib_dir: str, +) -> List[InstalledCSVRow]: + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows: List[InstalledCSVRow] = [] + for row in old_csv_rows: + if len(row) > 3: + logger.warning("RECORD line has more than three elements: %s", row) + old_record_path = cast("RecordPath", row[0]) + new_record_path = installed.pop(old_record_path, old_record_path) + if new_record_path in changed: + digest, length = rehash(_record_to_fs_path(new_record_path, lib_dir)) + else: + digest = row[1] if len(row) > 1 else "" + length = row[2] if len(row) > 2 else "" + installed_rows.append((new_record_path, digest, length)) + for f in generated: + path = _fs_to_record_path(f, lib_dir) + digest, length = rehash(f) + installed_rows.append((path, digest, length)) + return installed_rows + [ + (installed_record_path, "", "") for installed_record_path in installed.values() + ] + + +def get_console_script_specs(console: Dict[str, str]) -> List[str]: + """ + Given the mapping from entrypoint name to callable, return the relevant + console script specs. + """ + # Don't mutate caller's version + console = console.copy() + + scripts_to_generate = [] + + # Special case pip and setuptools to generate versioned wrappers + # + # The issue is that some projects (specifically, pip and setuptools) use + # code in setup.py to create "versioned" entry points - pip2.7 on Python + # 2.7, pip3.3 on Python 3.3, etc. But these entry points are baked into + # the wheel metadata at build time, and so if the wheel is installed with + # a *different* version of Python the entry points will be wrong. The + # correct fix for this is to enhance the metadata to be able to describe + # such versioned entry points. + # Currently, projects using versioned entry points will either have + # incorrect versioned entry points, or they will not be able to distribute + # "universal" wheels (i.e., they will need a wheel per Python version). + # + # Because setuptools and pip are bundled with _ensurepip and virtualenv, + # we need to use universal wheels. As a workaround, we + # override the versioned entry points in the wheel and generate the + # correct ones. + # + # To add the level of hack in this section of code, in order to support + # ensurepip this code will look for an ``ENSUREPIP_OPTIONS`` environment + # variable which will control which version scripts get installed. + # + # ENSUREPIP_OPTIONS=altinstall + # - Only pipX.Y and easy_install-X.Y will be generated and installed + # ENSUREPIP_OPTIONS=install + # - pipX.Y, pipX, easy_install-X.Y will be generated and installed. Note + # that this option is technically if ENSUREPIP_OPTIONS is set and is + # not altinstall + # DEFAULT + # - The default behavior is to install pip, pipX, pipX.Y, easy_install + # and easy_install-X.Y. + pip_script = console.pop("pip", None) + if pip_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("pip = " + pip_script) + + if os.environ.get("ENSUREPIP_OPTIONS", "") != "altinstall": + scripts_to_generate.append(f"pip{sys.version_info[0]} = {pip_script}") + + scripts_to_generate.append(f"pip{get_major_minor_version()} = {pip_script}") + # Delete any other versioned pip entry points + pip_ep = [k for k in console if re.match(r"pip(\d+(\.\d+)?)?$", k)] + for k in pip_ep: + del console[k] + easy_install_script = console.pop("easy_install", None) + if easy_install_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("easy_install = " + easy_install_script) + + scripts_to_generate.append( + f"easy_install-{get_major_minor_version()} = {easy_install_script}" + ) + # Delete any other versioned easy_install entry points + easy_install_ep = [ + k for k in console if re.match(r"easy_install(-\d+\.\d+)?$", k) + ] + for k in easy_install_ep: + del console[k] + + # Generate the console entry points specified in the wheel + scripts_to_generate.extend(starmap("{} = {}".format, console.items())) + + return scripts_to_generate + + +class ZipBackedFile: + def __init__( + self, src_record_path: RecordPath, dest_path: str, zip_file: ZipFile + ) -> None: + self.src_record_path = src_record_path + self.dest_path = dest_path + self._zip_file = zip_file + self.changed = False + + def _getinfo(self) -> ZipInfo: + return self._zip_file.getinfo(self.src_record_path) + + def save(self) -> None: + # When we open the output file below, any existing file is truncated + # before we start writing the new contents. This is fine in most + # cases, but can cause a segfault if pip has loaded a shared + # object (e.g. from pyopenssl through its vendored urllib3) + # Since the shared object is mmap'd an attempt to call a + # symbol in it will then cause a segfault. Unlinking the file + # allows writing of new contents while allowing the process to + # continue to use the old copy. + if os.path.exists(self.dest_path): + os.unlink(self.dest_path) + + zipinfo = self._getinfo() + + # optimization: the file is created by open(), + # skip the decompression when there is 0 bytes to decompress. + with open(self.dest_path, "wb") as dest: + if zipinfo.file_size > 0: + with self._zip_file.open(zipinfo) as f: + blocksize = min(zipinfo.file_size, 1024 * 1024) + shutil.copyfileobj(f, dest, blocksize) + + if zip_item_is_executable(zipinfo): + set_extracted_file_to_default_mode_plus_executable(self.dest_path) + + +class ScriptFile: + def __init__(self, file: "File") -> None: + self._file = file + self.src_record_path = self._file.src_record_path + self.dest_path = self._file.dest_path + self.changed = False + + def save(self) -> None: + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point: str) -> None: + super().__init__( + f"Invalid script entry point: {entry_point} - A callable " + "suffix is required. Cf https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information." + ) + + +def _raise_for_invalid_entrypoint(specification: str) -> None: + entry = get_export_entry(specification) + if entry is not None and entry.suffix is None: + raise MissingCallableSuffix(str(entry)) + + +class PipScriptMaker(ScriptMaker): + def make( + self, specification: str, options: Optional[Dict[str, Any]] = None + ) -> List[str]: + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( # noqa: C901, PLR0915 function is too long + name: str, + wheel_zip: ZipFile, + wheel_path: str, + scheme: Scheme, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + """Install a wheel. + + :param name: Name of the project to install + :param wheel_zip: open ZipFile for wheel being installed + :param scheme: Distutils scheme dictating the install directories + :param req_description: String used in place of the requirement, for + logging + :param pycompile: Whether to byte-compile installed Python files + :param warn_script_location: Whether to check that scripts are installed + into a directory on PATH + :raises UnsupportedWheel: + * when the directory holds an unpacked wheel with incompatible + Wheel-Version + * when the .dist-info dir does not match the wheel + """ + info_dir, metadata = parse_wheel(wheel_zip, name) + + if wheel_root_is_purelib(metadata): + lib_dir = scheme.purelib + else: + lib_dir = scheme.platlib + + # Record details of the files moved + # installed = files copied from the wheel to the destination + # changed = files changed while installing (scripts #! line typically) + # generated = files newly generated during the install (script wrappers) + installed: Dict[RecordPath, RecordPath] = {} + changed: Set[RecordPath] = set() + generated: List[str] = [] + + def record_installed( + srcfile: RecordPath, destfile: str, modified: bool = False + ) -> None: + """Map archive RECORD paths to installation RECORD paths.""" + newpath = _fs_to_record_path(destfile, lib_dir) + installed[srcfile] = newpath + if modified: + changed.add(newpath) + + def is_dir_path(path: RecordPath) -> bool: + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path: str, target_path: str) -> None: + if not is_within_directory(dest_dir_path, target_path): + message = ( + "The wheel {!r} has a file {!r} trying to install" + " outside the target directory {!r}" + ) + raise InstallationError( + message.format(wheel_path, target_path, dest_dir_path) + ) + + def root_scheme_file_maker( + zip_file: ZipFile, dest: str + ) -> Callable[[RecordPath], "File"]: + def make_root_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + dest_path = os.path.join(dest, normed_path) + assert_no_path_traversal(dest, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_root_scheme_file + + def data_scheme_file_maker( + zip_file: ZipFile, scheme: Scheme + ) -> Callable[[RecordPath], "File"]: + scheme_paths = {key: getattr(scheme, key) for key in SCHEME_KEYS} + + def make_data_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + try: + _, scheme_key, dest_subpath = normed_path.split(os.path.sep, 2) + except ValueError: + message = ( + f"Unexpected file in {wheel_path}: {record_path!r}. .data directory" + " contents should be named like: '/'." + ) + raise InstallationError(message) + + try: + scheme_path = scheme_paths[scheme_key] + except KeyError: + valid_scheme_keys = ", ".join(sorted(scheme_paths)) + message = ( + f"Unknown scheme key used in {wheel_path}: {scheme_key} " + f"(for file {record_path!r}). .data directory contents " + f"should be in subdirectories named with a valid scheme " + f"key ({valid_scheme_keys})" + ) + raise InstallationError(message) + + dest_path = os.path.join(scheme_path, dest_subpath) + assert_no_path_traversal(scheme_path, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_data_scheme_file + + def is_data_scheme_path(path: RecordPath) -> bool: + return path.split("/", 1)[0].endswith(".data") + + paths = cast(List[RecordPath], wheel_zip.namelist()) + file_paths = filterfalse(is_dir_path, paths) + root_scheme_paths, data_scheme_paths = partition(is_data_scheme_path, file_paths) + + make_root_scheme_file = root_scheme_file_maker(wheel_zip, lib_dir) + files: Iterator[File] = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path: RecordPath) -> bool: + parts = path.split("/", 2) + return len(parts) > 2 and parts[0].endswith(".data") and parts[1] == "scripts" + + other_scheme_paths, script_scheme_paths = partition( + is_script_scheme_path, data_scheme_paths + ) + + make_data_scheme_file = data_scheme_file_maker(wheel_zip, scheme) + other_scheme_files = map(make_data_scheme_file, other_scheme_paths) + files = chain(files, other_scheme_files) + + # Get the defined entry points + distribution = get_wheel_distribution( + FilesystemWheel(wheel_path), + canonicalize_name(name), + ) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file: "File") -> bool: + # EP, EP.exe and EP-script.py are scripts generated for + # entry point EP by setuptools + path = file.dest_path + name = os.path.basename(path) + if name.lower().endswith(".exe"): + matchname = name[:-4] + elif name.lower().endswith("-script.py"): + matchname = name[:-10] + elif name.lower().endswith(".pya"): + matchname = name[:-4] + else: + matchname = name + # Ignore setuptools-generated scripts + return matchname in console or matchname in gui + + script_scheme_files: Iterator[File] = map( + make_data_scheme_file, script_scheme_paths + ) + script_scheme_files = filterfalse(is_entrypoint_wrapper, script_scheme_files) + script_scheme_files = map(ScriptFile, script_scheme_files) + files = chain(files, script_scheme_files) + + existing_parents = set() + for file in files: + # directory creation is lazy and after file filtering + # to ensure we don't install empty dirs; empty dirs can't be + # uninstalled. + parent_dir = os.path.dirname(file.dest_path) + if parent_dir not in existing_parents: + ensure_dir(parent_dir) + existing_parents.add(parent_dir) + file.save() + record_installed(file.src_record_path, file.dest_path, file.changed) + + def pyc_source_file_paths() -> Generator[str, None, None]: + # We de-duplicate installation paths, since there can be overlap (e.g. + # file in .data maps to same location as file in wheel root). + # Sorting installation paths makes it easier to reproduce and debug + # issues related to permissions on existing files. + for installed_path in sorted(set(installed.values())): + full_installed_path = os.path.join(lib_dir, installed_path) + if not os.path.isfile(full_installed_path): + continue + if not full_installed_path.endswith(".py"): + continue + yield full_installed_path + + def pyc_output_path(path: str) -> str: + """Return the path the pyc file would have been written to.""" + return importlib.util.cache_from_source(path) + + # Compile all of the pyc files for the installed files + if pycompile: + with contextlib.redirect_stdout( + StreamWrapper.from_stream(sys.stdout) + ) as stdout: + with warnings.catch_warnings(): + warnings.filterwarnings("ignore") + for path in pyc_source_file_paths(): + success = compileall.compile_file(path, force=True, quiet=True) + if success: + pyc_path = pyc_output_path(path) + assert os.path.exists(pyc_path) + pyc_record_path = cast( + "RecordPath", pyc_path.replace(os.path.sep, "/") + ) + record_installed(pyc_record_path, pyc_path) + logger.debug(stdout.getvalue()) + + maker = PipScriptMaker(None, scheme.scripts) + + # Ensure old scripts are overwritten. + # See https://github.com/pypa/pip/issues/1800 + maker.clobber = True + + # Ensure we don't generate any variants for scripts because this is almost + # never what somebody wants. + # See https://bitbucket.org/pypa/distlib/issue/35/ + maker.variants = {""} + + # This is required because otherwise distlib creates scripts that are not + # executable. + # See https://bitbucket.org/pypa/distlib/issue/32/ + maker.set_mode = True + + # Generate the console and GUI entry points specified in the wheel + scripts_to_generate = get_console_script_specs(console) + + gui_scripts_to_generate = list(starmap("{} = {}".format, gui.items())) + + generated_console_scripts = maker.make_multiple(scripts_to_generate) + generated.extend(generated_console_scripts) + + generated.extend(maker.make_multiple(gui_scripts_to_generate, {"gui": True})) + + if warn_script_location: + msg = message_about_scripts_not_on_PATH(generated_console_scripts) + if msg is not None: + logger.warning(msg) + + generated_file_mode = 0o666 & ~current_umask() + + @contextlib.contextmanager + def _generate_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + with adjacent_tmp_file(path, **kwargs) as f: + yield f + os.chmod(f.name, generated_file_mode) + replace(f.name, path) + + dest_info_dir = os.path.join(lib_dir, info_dir) + + # Record pip as the installer + installer_path = os.path.join(dest_info_dir, "INSTALLER") + with _generate_file(installer_path) as installer_file: + installer_file.write(b"pip\n") + generated.append(installer_path) + + # Record the PEP 610 direct URL reference + if direct_url is not None: + direct_url_path = os.path.join(dest_info_dir, DIRECT_URL_METADATA_NAME) + with _generate_file(direct_url_path) as direct_url_file: + direct_url_file.write(direct_url.to_json().encode("utf-8")) + generated.append(direct_url_path) + + # Record the REQUESTED file + if requested: + requested_path = os.path.join(dest_info_dir, "REQUESTED") + with open(requested_path, "wb"): + pass + generated.append(requested_path) + + record_text = distribution.read_text("RECORD") + record_rows = list(csv.reader(record_text.splitlines())) + + rows = get_csv_rows_for_installed( + record_rows, + installed=installed, + changed=changed, + generated=generated, + lib_dir=lib_dir, + ) + + # Record details of all files installed + record_path = os.path.join(dest_info_dir, "RECORD") + + with _generate_file(record_path, **csv_io_kwargs("w")) as record_file: + # Explicitly cast to typing.IO[str] as a workaround for the mypy error: + # "writer" has incompatible type "BinaryIO"; expected "_Writer" + writer = csv.writer(cast("IO[str]", record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description: str) -> Generator[None, None, None]: + try: + yield + except InstallationError as e: + message = f"For req: {req_description}. {e.args[0]}" + raise InstallationError(message) from e + + +def install_wheel( + name: str, + wheel_path: str, + scheme: Scheme, + req_description: str, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + with ZipFile(wheel_path, allowZip64=True) as z: + with req_error_context(req_description): + _install_wheel( + name=name, + wheel_zip=z, + wheel_path=wheel_path, + scheme=scheme, + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=requested, + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/prepare.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 00000000..e6aa3447 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,732 @@ +"""Prepares a distribution for installation +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import mimetypes +import os +import shutil +from dataclasses import dataclass +from pathlib import Path +from typing import Dict, Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.distributions.installed import InstalledDistribution +from pip._internal.exceptions import ( + DirectoryUrlHashUnsupported, + HashMismatch, + HashUnpinned, + InstallationError, + MetadataInconsistent, + NetworkConnectionError, + VcsHashUnsupported, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_metadata_distribution +from pip._internal.models.direct_url import ArchiveInfo +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.network.download import BatchDownloader, Downloader +from pip._internal.network.lazy_wheel import ( + HTTPRangeRequestUnsupported, + dist_from_wheel_url, +) +from pip._internal.network.session import PipSession +from pip._internal.operations.build.build_tracker import BuildTracker +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.direct_url_helpers import ( + direct_url_for_editable, + direct_url_from_link, +) +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ( + display_path, + hash_file, + hide_url, + redact_auth_from_requirement, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +logger = getLogger(__name__) + + +def _get_prepared_distribution( + req: InstallRequirement, + build_tracker: BuildTracker, + finder: PackageFinder, + build_isolation: bool, + check_build_deps: bool, +) -> BaseDistribution: + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + tracker_id = abstract_dist.build_tracker_id + if tracker_id is not None: + with build_tracker.track(req, tracker_id): + abstract_dist.prepare_distribution_metadata( + finder, build_isolation, check_build_deps + ) + return abstract_dist.get_metadata_distribution() + + +def unpack_vcs_link(link: Link, location: str, verbosity: int) -> None: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend is not None + vcs_backend.unpack(location, url=hide_url(link.url), verbosity=verbosity) + + +@dataclass +class File: + path: str + content_type: Optional[str] = None + + def __post_init__(self) -> None: + if self.content_type is None: + self.content_type = mimetypes.guess_type(self.path)[0] + + +def get_http_url( + link: Link, + download: Downloader, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> File: + temp_dir = TempDirectory(kind="unpack", globally_managed=True) + # If a download dir is specified, is the file already downloaded there? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + content_type = None + else: + # let's download to a tmp dir + from_path, content_type = download(link, temp_dir.path) + if hashes: + hashes.check_against_path(from_path) + + return File(from_path, content_type) + + +def get_file_url( + link: Link, download_dir: Optional[str] = None, hashes: Optional[Hashes] = None +) -> File: + """Get file and optionally check its hash.""" + # If a download dir is specified, is the file already there and valid? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + else: + from_path = link.file_path + + # If --require-hashes is off, `hashes` is either empty, the + # link's embedded hash, or MissingHashes; it is required to + # match. If --require-hashes is on, we are satisfied by any + # hash in `hashes` matching: a URL-based or an option-based + # one; no internet-sourced hash will be in `hashes`. + if hashes: + hashes.check_against_path(from_path) + return File(from_path, None) + + +def unpack_url( + link: Link, + location: str, + download: Downloader, + verbosity: int, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> Optional[File]: + """Unpack link into location, downloading if required. + + :param hashes: A Hashes object, one of whose embedded hashes must match, + or HashMismatch will be raised. If the Hashes is empty, no matches are + required, and unhashable types of requirements (like VCS ones, which + would ordinarily raise HashUnsupported) are allowed. + """ + # non-editable vcs urls + if link.is_vcs: + unpack_vcs_link(link, location, verbosity=verbosity) + return None + + assert not link.is_existing_dir() + + # file urls + if link.is_file: + file = get_file_url(link, download_dir, hashes=hashes) + + # http urls + else: + file = get_http_url( + link, + download, + download_dir, + hashes=hashes, + ) + + # unpack the archive to the build dir location. even when only downloading + # archives, they have to be unpacked to parse dependencies, except wheels + if not link.is_wheel: + unpack_file(file.path, location, file.content_type) + + return file + + +def _check_download_dir( + link: Link, + download_dir: str, + hashes: Optional[Hashes], + warn_on_hash_mismatch: bool = True, +) -> Optional[str]: + """Check download_dir for previously downloaded file with correct hash + If a correct file is found return its path else None + """ + download_path = os.path.join(download_dir, link.filename) + + if not os.path.exists(download_path): + return None + + # If already downloaded, does its hash match? + logger.info("File was already downloaded %s", download_path) + if hashes: + try: + hashes.check_against_path(download_path) + except HashMismatch: + if warn_on_hash_mismatch: + logger.warning( + "Previously-downloaded file %s has bad hash. Re-downloading.", + download_path, + ) + os.unlink(download_path) + return None + return download_path + + +class RequirementPreparer: + """Prepares a Requirement""" + + def __init__( + self, + build_dir: str, + download_dir: Optional[str], + src_dir: str, + build_isolation: bool, + check_build_deps: bool, + build_tracker: BuildTracker, + session: PipSession, + progress_bar: str, + finder: PackageFinder, + require_hashes: bool, + use_user_site: bool, + lazy_wheel: bool, + verbosity: int, + legacy_resolver: bool, + ) -> None: + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.build_tracker = build_tracker + self._session = session + self._download = Downloader(session, progress_bar) + self._batch_download = BatchDownloader(session, progress_bar) + self.finder = finder + + # Where still-packed archives should be written to. If None, they are + # not saved, and are deleted immediately after unpacking. + self.download_dir = download_dir + + # Is build isolation allowed? + self.build_isolation = build_isolation + + # Should check build dependencies? + self.check_build_deps = check_build_deps + + # Should hash-checking be required? + self.require_hashes = require_hashes + + # Should install in user site-packages? + self.use_user_site = use_user_site + + # Should wheels be downloaded lazily? + self.use_lazy_wheel = lazy_wheel + + # How verbose should underlying tooling be? + self.verbosity = verbosity + + # Are we using the legacy resolver? + self.legacy_resolver = legacy_resolver + + # Memoized downloaded files, as mapping of url: path. + self._downloaded: Dict[str, str] = {} + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req: InstallRequirement) -> None: + """Provide context for the requirement being prepared.""" + if req.link.is_file and not req.is_wheel_from_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = redact_auth_from_requirement(req.req) if req.req else str(req) + + # If we used req.req, inject requirement source if available (this + # would already be included if we used req directly) + if req.req and req.comes_from: + if isinstance(req.comes_from, str): + comes_from: Optional[str] = req.comes_from + else: + comes_from = req.comes_from.from_path() + if comes_from: + information += f" (from {comes_from})" + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.is_wheel_from_cache: + with indent_log(): + logger.info("Using cached %s", req.link.filename) + + def _ensure_link_req_src_dir( + self, req: InstallRequirement, parallel_builds: bool + ) -> None: + """Ensure source_dir of a linked InstallRequirement.""" + # Since source_dir is only set for editable requirements. + if req.link.is_wheel: + # We don't need to unpack wheels, so no need for a source + # directory. + return + assert req.source_dir is None + if req.link.is_existing_dir(): + # build local directories in-tree + req.source_dir = req.link.file_path + return + + # We always delete unpacked sdists after pip runs. + req.ensure_has_source_dir( + self.build_dir, + autodelete=True, + parallel_builds=parallel_builds, + ) + req.ensure_pristine_source_checkout() + + def _get_linked_req_hashes(self, req: InstallRequirement) -> Hashes: + # By the time this is called, the requirement's link should have + # been checked so we can tell what kind of requirements req is + # and raise some more informative errors than otherwise. + # (For example, we can raise VcsHashUnsupported for a VCS URL + # rather than HashMissing.) + if not self.require_hashes: + return req.hashes(trust_internet=True) + + # We could check these first 2 conditions inside unpack_url + # and save repetition of conditions, but then we would + # report less-useful error messages for unhashable + # requirements, complaining that there's no hash provided. + if req.link.is_vcs: + raise VcsHashUnsupported() + if req.link.is_existing_dir(): + raise DirectoryUrlHashUnsupported() + + # Unpinned packages are asking for trouble when a new version + # is uploaded. This isn't a security check, but it saves users + # a surprising hash mismatch in the future. + # file:/// URLs aren't pinnable, so don't complain about them + # not being pinned. + if not req.is_direct and not req.is_pinned: + raise HashUnpinned() + + # If known-good hashes are missing for this requirement, + # shim it with a facade object that will provoke hash + # computation and then raise a HashMissing exception + # showing the user what the hash should be. + return req.hashes(trust_internet=False) or MissingHashes() + + def _fetch_metadata_only( + self, + req: InstallRequirement, + ) -> Optional[BaseDistribution]: + if self.legacy_resolver: + logger.debug( + "Metadata-only fetching is not used in the legacy resolver", + ) + return None + if self.require_hashes: + logger.debug( + "Metadata-only fetching is not used as hash checking is required", + ) + return None + # Try PEP 658 metadata first, then fall back to lazy wheel if unavailable. + return self._fetch_metadata_using_link_data_attr( + req + ) or self._fetch_metadata_using_lazy_wheel(req.link) + + def _fetch_metadata_using_link_data_attr( + self, + req: InstallRequirement, + ) -> Optional[BaseDistribution]: + """Fetch metadata from the data-dist-info-metadata attribute, if possible.""" + # (1) Get the link to the metadata file, if provided by the backend. + metadata_link = req.link.metadata_link() + if metadata_link is None: + return None + assert req.req is not None + logger.verbose( + "Obtaining dependency information for %s from %s", + req.req, + metadata_link, + ) + # (2) Download the contents of the METADATA file, separate from the dist itself. + metadata_file = get_http_url( + metadata_link, + self._download, + hashes=metadata_link.as_hashes(), + ) + with open(metadata_file.path, "rb") as f: + metadata_contents = f.read() + # (3) Generate a dist just from those file contents. + metadata_dist = get_metadata_distribution( + metadata_contents, + req.link.filename, + req.req.name, + ) + # (4) Ensure the Name: field from the METADATA file matches the name from the + # install requirement. + # + # NB: raw_name will fall back to the name from the install requirement if + # the Name: field is not present, but it's noted in the raw_name docstring + # that that should NEVER happen anyway. + if canonicalize_name(metadata_dist.raw_name) != canonicalize_name(req.req.name): + raise MetadataInconsistent( + req, "Name", req.req.name, metadata_dist.raw_name + ) + return metadata_dist + + def _fetch_metadata_using_lazy_wheel( + self, + link: Link, + ) -> Optional[BaseDistribution]: + """Fetch metadata using lazy wheel, if possible.""" + # --use-feature=fast-deps must be provided. + if not self.use_lazy_wheel: + return None + if link.is_file or not link.is_wheel: + logger.debug( + "Lazy wheel is not used as %r does not point to a remote wheel", + link, + ) + return None + + wheel = Wheel(link.filename) + name = canonicalize_name(wheel.name) + logger.info( + "Obtaining dependency information from %s %s", + name, + wheel.version, + ) + url = link.url.split("#", 1)[0] + try: + return dist_from_wheel_url(name, url, self._session) + except HTTPRangeRequestUnsupported: + logger.debug("%s does not support range requests", url) + return None + + def _complete_partial_requirements( + self, + partially_downloaded_reqs: Iterable[InstallRequirement], + parallel_builds: bool = False, + ) -> None: + """Download any requirements which were only fetched by metadata.""" + # Download to a temporary directory. These will be copied over as + # needed for downstream 'download', 'wheel', and 'install' commands. + temp_dir = TempDirectory(kind="unpack", globally_managed=True).path + + # Map each link to the requirement that owns it. This allows us to set + # `req.local_file_path` on the appropriate requirement after passing + # all the links at once into BatchDownloader. + links_to_fully_download: Dict[Link, InstallRequirement] = {} + for req in partially_downloaded_reqs: + assert req.link + links_to_fully_download[req.link] = req + + batch_download = self._batch_download( + links_to_fully_download.keys(), + temp_dir, + ) + for link, (filepath, _) in batch_download: + logger.debug("Downloading link %s to %s", link, filepath) + req = links_to_fully_download[link] + # Record the downloaded file path so wheel reqs can extract a Distribution + # in .get_dist(). + req.local_file_path = filepath + # Record that the file is downloaded so we don't do it again in + # _prepare_linked_requirement(). + self._downloaded[req.link.url] = filepath + + # If this is an sdist, we need to unpack it after downloading, but the + # .source_dir won't be set up until we are in _prepare_linked_requirement(). + # Add the downloaded archive to the install requirement to unpack after + # preparing the source dir. + if not req.is_wheel: + req.needs_unpacked_archive(Path(filepath)) + + # This step is necessary to ensure all lazy wheels are processed + # successfully by the 'download', 'wheel', and 'install' commands. + for req in partially_downloaded_reqs: + self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool = False + ) -> BaseDistribution: + """Prepare a requirement to be obtained from req.link.""" + assert req.link + self._log_preparing_link(req) + with indent_log(): + # Check if the relevant file is already available + # in the download directory + file_path = None + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir( + req.link, + self.download_dir, + hashes, + # When a locally built wheel has been found in cache, we don't warn + # about re-downloading when the already downloaded wheel hash does + # not match. This is because the hash must be checked against the + # original link, not the cached link. It that case the already + # downloaded file will be removed and re-fetched from cache (which + # implies a hash check against the cache entry's origin.json). + warn_on_hash_mismatch=not req.is_wheel_from_cache, + ) + + if file_path is not None: + # The file is already available, so mark it as downloaded + self._downloaded[req.link.url] = file_path + else: + # The file is not available, attempt to fetch only metadata + metadata_dist = self._fetch_metadata_only(req) + if metadata_dist is not None: + req.needs_more_preparation = True + return metadata_dist + + # None of the optimizations worked, fully prepare the requirement + return self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirements_more( + self, reqs: Iterable[InstallRequirement], parallel_builds: bool = False + ) -> None: + """Prepare linked requirements more, if needed.""" + reqs = [req for req in reqs if req.needs_more_preparation] + for req in reqs: + # Determine if any of these requirements were already downloaded. + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + if file_path is not None: + self._downloaded[req.link.url] = file_path + req.needs_more_preparation = False + + # Prepare requirements we found were already downloaded for some + # reason. The other downloads will be completed separately. + partially_downloaded_reqs: List[InstallRequirement] = [] + for req in reqs: + if req.needs_more_preparation: + partially_downloaded_reqs.append(req) + else: + self._prepare_linked_requirement(req, parallel_builds) + + # TODO: separate this part out from RequirementPreparer when the v1 + # resolver can be removed! + self._complete_partial_requirements( + partially_downloaded_reqs, + parallel_builds=parallel_builds, + ) + + def _prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool + ) -> BaseDistribution: + assert req.link + link = req.link + + hashes = self._get_linked_req_hashes(req) + + if hashes and req.is_wheel_from_cache: + assert req.download_info is not None + assert link.is_wheel + assert link.is_file + # We need to verify hashes, and we have found the requirement in the cache + # of locally built wheels. + if ( + isinstance(req.download_info.info, ArchiveInfo) + and req.download_info.info.hashes + and hashes.has_one_of(req.download_info.info.hashes) + ): + # At this point we know the requirement was built from a hashable source + # artifact, and we verified that the cache entry's hash of the original + # artifact matches one of the hashes we expect. We don't verify hashes + # against the cached wheel, because the wheel is not the original. + hashes = None + else: + logger.warning( + "The hashes of the source archive found in cache entry " + "don't match, ignoring cached built wheel " + "and re-downloading source." + ) + req.link = req.cached_wheel_source_link + link = req.link + + self._ensure_link_req_src_dir(req, parallel_builds) + + if link.is_existing_dir(): + local_file = None + elif link.url not in self._downloaded: + try: + local_file = unpack_url( + link, + req.source_dir, + self._download, + self.verbosity, + self.download_dir, + hashes, + ) + except NetworkConnectionError as exc: + raise InstallationError( + f"Could not install requirement {req} because of HTTP " + f"error {exc} for URL {link}" + ) + else: + file_path = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type=None) + + # If download_info is set, we got it from the wheel cache. + if req.download_info is None: + # Editables don't go through this function (see + # prepare_editable_requirement). + assert not req.editable + req.download_info = direct_url_from_link(link, req.source_dir) + # Make sure we have a hash in download_info. If we got it as part of the + # URL, it will have been verified and we can rely on it. Otherwise we + # compute it from the downloaded file. + # FIXME: https://github.com/pypa/pip/issues/11943 + if ( + isinstance(req.download_info.info, ArchiveInfo) + and not req.download_info.info.hashes + and local_file + ): + hash = hash_file(local_file.path)[0].hexdigest() + # We populate info.hash for backward compatibility. + # This will automatically populate info.hashes. + req.download_info.info.hash = f"sha256={hash}" + + # For use in later processing, + # preserve the file path on the requirement. + if local_file: + req.local_file_path = local_file.path + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.finder, + self.build_isolation, + self.check_build_deps, + ) + return dist + + def save_linked_requirement(self, req: InstallRequirement) -> None: + assert self.download_dir is not None + assert req.link is not None + link = req.link + if link.is_vcs or (link.is_existing_dir() and req.editable): + # Make a .zip of the source_dir we already created. + req.archive(self.download_dir) + return + + if link.is_existing_dir(): + logger.debug( + "Not copying link to destination directory " + "since it is a directory: %s", + link, + ) + return + if req.local_file_path is None: + # No distribution was downloaded for this requirement. + return + + download_location = os.path.join(self.download_dir, link.filename) + if not os.path.exists(download_location): + shutil.copy(req.local_file_path, download_location) + download_path = display_path(download_location) + logger.info("Saved %s", download_path) + + def prepare_editable_requirement( + self, + req: InstallRequirement, + ) -> BaseDistribution: + """Prepare an editable requirement.""" + assert req.editable, "cannot prepare a non-editable req as editable" + + logger.info("Obtaining %s", req) + + with indent_log(): + if self.require_hashes: + raise InstallationError( + f"The editable requirement {req} cannot be installed when " + "requiring hashes, because there is no single file to " + "hash." + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + assert req.source_dir + req.download_info = direct_url_for_editable(req.unpacked_source_directory) + + dist = _get_prepared_distribution( + req, + self.build_tracker, + self.finder, + self.build_isolation, + self.check_build_deps, + ) + + req.check_if_exists(self.use_user_site) + + return dist + + def prepare_installed_requirement( + self, + req: InstallRequirement, + skip_reason: str, + ) -> BaseDistribution: + """Prepare an already-installed requirement.""" + assert req.satisfied_by, "req should have been satisfied but isn't" + assert skip_reason is not None, ( + "did not get skip reason skipped but req.satisfied_by " + f"is set to {req.satisfied_by}" + ) + logger.info( + "Requirement %s: %s (%s)", skip_reason, req, req.satisfied_by.version + ) + with indent_log(): + if self.require_hashes: + logger.debug( + "Since it is already installed, we are trusting this " + "package without checking its hash. To ensure a " + "completely repeatable environment, install into an " + "empty virtualenv." + ) + return InstalledDistribution(req).get_metadata_distribution() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/pyproject.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/pyproject.py new file mode 100644 index 00000000..2a9cad48 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,185 @@ +import importlib.util +import os +import sys +from collections import namedtuple +from typing import Any, List, Optional + +if sys.version_info >= (3, 11): + import tomllib +else: + from pip._vendor import tomli as tomllib + +from pip._vendor.packaging.requirements import InvalidRequirement + +from pip._internal.exceptions import ( + InstallationError, + InvalidPyProjectBuildRequires, + MissingPyProjectBuildRequires, +) +from pip._internal.utils.packaging import get_requirement + + +def _is_list_of_str(obj: Any) -> bool: + return isinstance(obj, list) and all(isinstance(item, str) for item in obj) + + +def make_pyproject_path(unpacked_source_directory: str) -> str: + return os.path.join(unpacked_source_directory, "pyproject.toml") + + +BuildSystemDetails = namedtuple( + "BuildSystemDetails", ["requires", "backend", "check", "backend_path"] +) + + +def load_pyproject_toml( + use_pep517: Optional[bool], pyproject_toml: str, setup_py: str, req_name: str +) -> Optional[BuildSystemDetails]: + """Load the pyproject.toml file. + + Parameters: + use_pep517 - Has the user requested PEP 517 processing? None + means the user hasn't explicitly specified. + pyproject_toml - Location of the project's pyproject.toml file + setup_py - Location of the project's setup.py file + req_name - The name of the requirement we're processing (for + error reporting) + + Returns: + None if we should use the legacy code path, otherwise a tuple + ( + requirements from pyproject.toml, + name of PEP 517 backend, + requirements we should check are installed after setting + up the build environment + directory paths to import the backend from (backend-path), + relative to the project root. + ) + """ + has_pyproject = os.path.isfile(pyproject_toml) + has_setup = os.path.isfile(setup_py) + + if not has_pyproject and not has_setup: + raise InstallationError( + f"{req_name} does not appear to be a Python project: " + f"neither 'setup.py' nor 'pyproject.toml' found." + ) + + if has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = tomllib.loads(f.read()) + build_system = pp_toml.get("build-system") + else: + build_system = None + + # The following cases must use PEP 517 + # We check for use_pep517 being non-None and falsey because that means + # the user explicitly requested --no-use-pep517. The value 0 as + # opposed to False can occur when the value is provided via an + # environment variable or config file option (due to the quirk of + # strtobool() returning an integer in pip's configuration code). + if has_pyproject and not has_setup: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project does not have a setup.py" + ) + use_pep517 = True + elif build_system and "build-backend" in build_system: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project specifies a build backend of {} " + "in pyproject.toml".format(build_system["build-backend"]) + ) + use_pep517 = True + + # If we haven't worked out whether to use PEP 517 yet, + # and the user hasn't explicitly stated a preference, + # we do so if the project has a pyproject.toml file + # or if we cannot import setuptools or wheels. + + # We fallback to PEP 517 when without setuptools or without the wheel package, + # so setuptools can be installed as a default build backend. + # For more info see: + # https://discuss.python.org/t/pip-without-setuptools-could-the-experience-be-improved/11810/9 + # https://github.com/pypa/pip/issues/8559 + elif use_pep517 is None: + use_pep517 = ( + has_pyproject + or not importlib.util.find_spec("setuptools") + or not importlib.util.find_spec("wheel") + ) + + # At this point, we know whether we're going to use PEP 517. + assert use_pep517 is not None + + # If we're using the legacy code path, there is nothing further + # for us to do here. + if not use_pep517: + return None + + if build_system is None: + # Either the user has a pyproject.toml with no build-system + # section, or the user has no pyproject.toml, but has opted in + # explicitly via --use-pep517. + # In the absence of any explicit backend specification, we + # assume the setuptools backend that most closely emulates the + # traditional direct setup.py execution, and require wheel and + # a version of setuptools that supports that backend. + + build_system = { + "requires": ["setuptools>=40.8.0"], + "build-backend": "setuptools.build_meta:__legacy__", + } + + # If we're using PEP 517, we have build system information (either + # from pyproject.toml, or defaulted by the code above). + # Note that at this point, we do not know if the user has actually + # specified a backend, though. + assert build_system is not None + + # Ensure that the build-system section in pyproject.toml conforms + # to PEP 518. + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise MissingPyProjectBuildRequires(package=req_name) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InvalidPyProjectBuildRequires( + package=req_name, + reason="It is not a list of strings.", + ) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + get_requirement(requirement) + except InvalidRequirement as error: + raise InvalidPyProjectBuildRequires( + package=req_name, + reason=f"It contains an invalid requirement: {requirement!r}", + ) from error + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check: List[str] = [] + if backend is None: + # If the user didn't specify a backend, we assume they want to use + # the setuptools backend. But we can't be sure they have included + # a version of setuptools which supplies the backend. So we + # make a note to check that this requirement is present once + # we have set up the environment. + # This is quite a lot of work to check for a very specific case. But + # the problem is, that case is potentially quite common - projects that + # adopted PEP 518 early for the ability to specify requirements to + # execute setup.py, but never considered needing to mention the build + # tools themselves. The original PEP 518 code had a similar check (but + # implemented in a different way). + backend = "setuptools.build_meta:__legacy__" + check = ["setuptools>=40.8.0"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 00000000..422d851d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,90 @@ +import collections +import logging +from dataclasses import dataclass +from typing import Generator, List, Optional, Sequence, Tuple + +from pip._internal.utils.logging import indent_log + +from .req_file import parse_requirements +from .req_install import InstallRequirement +from .req_set import RequirementSet + +__all__ = [ + "RequirementSet", + "InstallRequirement", + "parse_requirements", + "install_given_reqs", +] + +logger = logging.getLogger(__name__) + + +@dataclass(frozen=True) +class InstallationResult: + name: str + + +def _validate_requirements( + requirements: List[InstallRequirement], +) -> Generator[Tuple[str, InstallRequirement], None, None]: + for req in requirements: + assert req.name, f"invalid to-be-installed requirement: {req}" + yield req.name, req + + +def install_given_reqs( + requirements: List[InstallRequirement], + global_options: Sequence[str], + root: Optional[str], + home: Optional[str], + prefix: Optional[str], + warn_script_location: bool, + use_user_site: bool, + pycompile: bool, +) -> List[InstallationResult]: + """ + Install everything in the given list. + + (to be called after having downloaded and unpacked the packages) + """ + to_install = collections.OrderedDict(_validate_requirements(requirements)) + + if to_install: + logger.info( + "Installing collected packages: %s", + ", ".join(to_install.keys()), + ) + + installed = [] + + with indent_log(): + for req_name, requirement in to_install.items(): + if requirement.should_reinstall: + logger.info("Attempting uninstall: %s", req_name) + with indent_log(): + uninstalled_pathset = requirement.uninstall(auto_confirm=True) + else: + uninstalled_pathset = None + + try: + requirement.install( + global_options, + root=root, + home=home, + prefix=prefix, + warn_script_location=warn_script_location, + use_user_site=use_user_site, + pycompile=pycompile, + ) + except Exception: + # if install did not succeed, rollback previous uninstall + if uninstalled_pathset and not requirement.install_succeeded: + uninstalled_pathset.rollback() + raise + else: + if uninstalled_pathset and requirement.install_succeeded: + uninstalled_pathset.commit() + + installed.append(InstallationResult(req_name)) + + return installed diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f6b4af501e9e86be2c8e814f952f6265f93f5b27 GIT binary patch literal 3493 zcmahMTWk~A^^QHZXZ(mCv7L~|VhAB|LNYwWvanDViFbjm2>n=#)o9|mj>n8=ym!Xr zQAdpsl|t1O;iC;w)sMD6R8VO@`$_j9Rqc;Wps{8_W!0|K{WBXRTKdy-#~vr^cH863 zz31F}?m6e)dmcA`3WfX#V02WPc^|O9Qo@1m7P9dUgU~9Hk<6$l)9jfH1GGzZ72O#( zL&w}ITl8c+MQ_Gi^ksZSF2fc13~$e|s=pY>1OWHQUNu+@WkNRYQ@e`cOxVUbHByXb zq70frGXEuzK5HkQEKsqCOhwlu z)#9e`2W6~fvE{i^E~yxn`V~#anklOK%vbafU?^6Sh=D}{yb8fZm^J9=In6L7RlU49 z45M9J$SG{5SrP&vBuJY8G*(P$E)!>z>sX^gjVrLunI^Qw}~3*RGp0bet*V9c7+QeKavc-FAXx!U9-D?R1DXX>npSc94g{=S7gS|hD9xLBT{|$jZ@*wDCY~rs*=y1a zHiVK=5=2EaF@Y-*;D7`XNW~Pz$ORG~Y!G9B&1kMDLFxw8&JL0*rQo;Xe=ISz&&Te&KRl{>HcP zR+yaYXUr~>vrtw6}6|kJzV(^hvnjtaJo_3Lb z=qxw&5gKc$6zQV_NzoP}ncwtDvK=Pr3ga*|e@FjVLK|Kb8CZ7L!?D|QKc1^{r>p(% zJnVkxsct*H#+_cCt9M0j=Wpfjx|fSlFXaR1YwXLCc?2fjR`>eG@c>UOvo7E5#; zJd3)683RGhURJa0-&<=1e z*wNtRI+{Bdc{A*=JA4Phg+LN@&JJ)mz`1^j&{f#kqJJ?^2^8oRcK|v1fA-+6_%|*2 z7ApdUM2A=)W%hx`*~?;3_R`;`B+Vsz7lS+kt9t%(ZH1}0D((tf@l?DO-vi%$8gu{* z`eBd^!Wx>MI)Fqg!2VQqFZ=hM^$o-~1YD04- z%`KGuDS%diNMXo|kn9v~CZ%X8Gmlet?oX*uj3)gy>!_)xrg16@^#rnkl!N4#%1hVj z5?PhcC<9oWmz3WWldmon2w}|jRn`9)I#qG)5Jvx zYG5mCtt3QeX(0+qWm6Zkx|UN&@lx7L=pB)rw4paccF|^-HuT|;j#+`0Ca67z6?m7( zm|*#&k~QsoWO<>G&R{6Lik8zYwxBDT#a_en2BAS}c_2R&4J%^g^|C5MIc%9@@omd2 zpEDM1A)-;vW-*2%vAmF2ii&CRr{=QQ&QlggVC&OxNS0SBm9Qq;MIjxsvnfeY)Boq5 zEI%B8qmpkSpo)V$Y}ZmNuq9nv-EBj$ES4lQPb(iyDbxkpU}tX9MU~Tr9;I;}+*Q2Ag=;-70@rS{+^u@L4rKR&<_@Ym_uG@iIfqGD=2P3!7-8#2YSk>?7Ysrzd z;OI+_oA)>TDB8Vr?r(hehXeItVSV^uZTR4yhY!_)JC@I`T&sus*2CkE!sAaP$<@G} zKy~2F-*Jy4C!Qv@|MY5o?BM#?@!Ht&KU}Gf9bX%}T#b*sa--zVm8%Ue8X2!fh8k=% zw67lNUylscB184~&ib}N`q#gso<3IJDb(K>X@pU9*Gt4jV=vx7@sWFPuaBR7G=8=o zA6bu2*5Z>-;(MP56YIf&T5#a;pzsm5HhB0+@W_ipX!l#7&7W)>MZrXsjlVi*tNs_9 zM||*W#Dx!#;}dNuNsiK1)#k&w4$lcKXu&Bn>hw zA9Yy>4lB@pMq-1|N@aP?`4Y?!S|bUqNQ4$0LNg+vrOoPx*UM!4^)gvD71fw*$!mJN z?M6AMh0XUM^(DvK>}R6oqa)x%_RG=o!Lv+N;mO9&VDo|W a5fq6xq7;iEufOUasCfoob^~pn(Z2ywkW>)> literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..05ed307ad77113df201d82a35b8a803fb0deb413 GIT binary patch literal 21266 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bad69f03288e0f6d8beae7f024c8da0e4065eea4 GIT binary patch literal 21480 zcmb_^d2k%pnP2xz&pnvIeIE_tAcn-j`@Zi>AVpG#v66=abORW0FaviFL;@PfFjs2> zwp;|gwh8X8mtfXaf=WsZR}L$wq#`O?wUwk&nIY)Ks7+VsTBR!fZ)k8!wwzSu_r0E; z0~|`)RGP%QuYT`+_t*1Zi;A2ao{o;dP}Omc`v=MxPjNc2`U5M+-R556B(9H>c*zvv z`*;?c`b;b~_nBEN^a(7s^jTPJ?Xw{^hfJgPK08l+g^**^+2I*q7OEMo?W<*J zd#G--zOSC=WT)cBJdRMqXk%X^t8<2$M#Vl6Y1a_n*DQPGGI^ccGH9y73({X-tL&Cr zhIo{>$acM45Bu6ooGgr-GqxlfOKz0+X7fhseUqN*>v(R@qWAf98{c!=crtA^$Q2_m z8>44ql)jqH87Y+Z8R=|{($}&%BZbnh8|iF}(kt1VkwR&|kd)SHfN+z8aC3|7^P#`oRJ#x^zD|5Ww+#&O(RjGG#h8nUfwGe??VN~ zxt^^zQYf7?(%BfLv24yr4Vn86e&sn!(sLFXhwnS|mB%S%;~YH3-Q)&LL->0g7kY}r zy=pOWG4B2J;zn*5tIWp64ZCG}r%pi6DX#B`eCYqvNJp^(eq<&)n~{=_8}s&^FmWe2 zsqAe|D$hX8Nmf>YvdT=^DF;XYr0r6b+#*#=HBzlyD%BC>O7(InPT0Uy#w3VYZG(JT zYLq?lNy#Lc2F+A9=$4w^w)CBmM2yuaw+;$Y^V>q-S&Y9!S|^|Sk`Wu_lY>^N1tXkG zuWF~%D%;u0+T?X#d1cjjgBrHRMy$*uwPVB=G9!NZIxO2vc2rU zUivb7c|K=_jdB~_egoeA0^Xc9885fvMSXMZsvbxl28Pm0rL?Wmbpo zu1j)285q7a5E-MVrf&4LbZ=;#Z0R_7Vc#18<-lvLuf0j>a9~tE z@F$16`Zjg#_P@T-_u7=NTPwNr(uE7>FJ3-=%zysE<eB$t(+!fY^fADqCc$Y?f_Vq%GM{ z#=u#!OFY2Gf$MIc;C(Kwgl(&ov)R3xD`#&sS5WoKQZUL6);SOvl~wmGd2+&j)b>%Z{E_Q2BUJ2`LH0TTVF3r79^$=YYmu-mAkT~;?EnC4QYT>bhP;i0`cS=X+| zwXHM4JKkhfBO-S)oukTM+N)R5iSwCydwmX?imtoguQ~nx(TFr2qO{xZ|HgPAl&&%3 zE@(o3Bob2G=&8`oDRd@EJA(H(Wj&?aD5y1pSCCMNC3>4ndAP34$u{2;ug9|faYc2? zf;eU6Dr-|VO4&J-IVk1iDr!Zmz^*h~(5?`u_ialIqQw{)iDIs%8F#-ZSy_+Bl`OADp zsO09?zx(xUHHuOFxT)ptTX)`C3?!O1v38Hwt*5w&-95a02c}hg6l|biBLd9~2v-QP zDRcuFv?yJa$^uLeWhn^aPd$tP0As4MbUZGtNLdgAP)f>EHcHt!Z)wUwDJSQxNVzEG zCXgwjl!u_fi;f5M*j&ZM7gGIMRX)gA}Y`D*+82p21ydr1$m9K1RU*74~kJ`T<$a& zLhM$yUS}1-<_*h=7#$9T*;~>3KeMCy3_i1dZFb|tlwAmVeS+p4lB0gcAYdawBelwl zIZRlF$5S*5tJhqZNCK&$EUr3qM8-$IZFPTWWah)|V&42f0ZKQI{}GsQvU&PU(p3=`Dj2@i1e$XoL&Y(u9e?b&p@YD2OZ-UgWk4l8F>WNck6y?r5Yod? z7os+e2h$ZSLTQF3XUh$dbPD{z2+h6bQB7yK8=(6mOwE~Jso0_hv&2oA!`5hqhnO-4 zxhWxL2CjY)xY|OzdLbplNNN6vlzW3y`FHBSdi$7#M0WJq@lWjonZZKppLZ?^oCI#F z(Ej`-C(+sq?B`!{KM|&^QNj}JL90q5osCgiVCP7#DRhEZk@W-X`{{E6z}b2yy>Cv5 z_}{^R>CGwMq^WBFf6C_;R`R((aPzEmlP|aU+#ul*Wi$}gInONDv>j_@43^gN#S*Ch z*zrr3wc2MJK{{o1jQ1kZK!P5?@7K9{;@W&Rg%rJv0BBxXH9@2yHhR?Yv9X8}l_kjQ z&=Qca={Lkjfr=Cny;UOjI*v}mWmTFQ*njhJA?*`#!w9 zyx~YvY<<^p&#@wINr+pPwk5<}GiT?82kwTHg)3s1Y@%#kvaIU%!CMED#dXQ@rl&8DtELNR?WBf0%(|KYA zVSk2HzKx6g9RY#`M_ljPN2!Wt&`KdT4B`MEGZ`p@=Vk@v6^v8>ttcgh%V&igk-Z?o zQMzY^LWpRDh~=7RMi_)OPJ!$=Wgi0TiZ;YmuXz-2%&ry{t{dW6uL1~0X+W>Kn61$MV5|Z? za(06&v=7Qp(67M$NCF|+DMu9SxBiTf@Vw?3A>GQF=SzAJavsKNr<`9hO7of_ zkc~NGjtmdv`jY-F1^T;;*%edFHRXVCLL9-G2XmxJH13xLH{UWslG>UlX3MsU`ix2_ zs%$a)2NnaSrra@i%RnOAn7>asUpc5Gl4kTVmu>+9=tV?k~L4PDCYUVZkz!Gu_g#&?4Qrk zJ9(f@)pOwdy_K!!!a3q%x)cMM5!B9x-2S>@cI;lI4O(yh4$Zz!!f*>1-;2YsFb+L|>LLU?cR;2TO~d|FDZqQ#MvsL*8qvspYS2cWP9se&d4yrSeYYo_i^ z8b8R0nM#w2;_B{_0?%s+GkmXW-2l?1i8z0Eue&<^w&IT zV(Ql$D6gZZW|gmlKbMpMjnz*jZk1`<{VJ*3l>sVpWTw}O(OwDY3((hNia_r*25C{V zNkJ$tp%k+P`c+mU5W`M$z(jx*1;)lOmsT=9CV{oj8AK_eY0O~8wHl~U{jd&1u2JYm zks^oW0HkTH2$?}y@%IPA0cAofp_chYMUZM$;x>jOG+}W-lKi5>VX znQhQt-0}vQM>HF;EqFPt0&9WU;tkmk3j_+G9fu-Nq3fp!G^ZjVsge$#*qJL7=#PGl zN}s(u$~V#YzfrGMU>XRb&{Nsn-+A-Kn~&_Co1R%u(tR%JE>F5kpV|b6^NE|Ydmp>J zIwJ!e>Pp+LMBA>JlMmhNz_F~j#0M@2sAVhe)`Yut#l11%-ndGaFIm^LQn%?r-KJGD za!)x^k>__#&hAN8)U8ysCo0-!oVm%enw7HlL|OYvSx=&@XU2}PZ|*>K31qNT#^S90~98Q$C&m4bLS$%ux*3j+9t;kRN-yOO)^ls!{WNCQ0{or!tp_!A9 zTHD_}dGF-A=kA?bs`{{Px%E)o-TcT~a`W2kwVQ9vz7@yV-fhY1t~pC~Qu(2~^*654 z$Fv=72{(kahwjavR;^1`HPio!25f1ybH)uWvT5Ut^`X5EJ9~52cXwg8SKOTmcjrTQ zH{0xn2d)NINW1#b-HuU{)%7dY8xqwU9#n5y>_;#sBBSxyw@Lc^m-a?FMp%5JCrpeVC%{x%`|bN6iM) zih+kAnhBS<9GyTx9u9OMLx(U^`a!AFNM~bGzs1ak;KFk-C7A*iEcg`D*oXmH{? zqAca&cAW(56)z75RdFB?Mx8nyib4nGB(NAzfP&GthbiTd$m`q5RBePRsD`u$x|S?o zK}RA-T5l#|9^J-?RWJc68X=mJ7Vu>$Pa&44H9LClbV03Io?ebd*9*ihQO9AD*gpY! z7VgRsRCIMo-duUQKpG}p@Ri14TcsOURc!VJQm5tG@We>}h&+Hz)m1F)#j)Li+|6Wb z>SQBDu#?KQpi0UZGT5qOZzL?IH}wRxn>2t*ioYn+-oWOUI}-Fj7(k4KLlef1>1~Gt zZ^%#?iSpneR>P(WDA+KV55@^Cn4C~kJ-(RpFw0brgyR!Lj zkl~ByisR_?Gosfe1sfgFDBvmxbGxxcY^07r2+E7LQOWX_1$8WQWXWHki3GM7=>BWSLY z>`H^^QonM5hM)lcZJc@r36R4*OiHhPV5@yp(YbheY3FjqUeGFUP267dsl7JoF1~qs z_B2H=%)UU;+1ax|)u4g+4-wko1Vt?_*U>D7%shrFbafg^#4tmkWPv-26$U_o zZ0eF7MnOTg!J!2P!nDJT71nj3&+!HIPSiWUpx%Xg*M!CAR!CjN)aT4Bqa37cGlJd$ zA_m4oLOkVHMFd}LMV#PtUe^T0O&a0Aj!Rd^&(2nX;=UE5=#$cXX{I-Q9L%cLbg`h? zK4W1!L`OxYBc_b05t)UJY|p>6*XU{s#%z(wD(^i&KXhx-F(eF*zMwvo)Dmgc#c}9N z-^APh*mT?UZHt8?VziTc$HJ^XrpXNqHv;nwfkg{5J4UB&@F5D4zRwJFy2<&aRNn?a zX^jtbW*pbYd^LK29CMSh-d6z*6>K5uVG>C%F~)xXAjf7QJ?#?A4sLjasILx4>07skjubG+Js z8rt_YPa!3bTKSx|1=t4V$#dEkQXbWR^|lhvloEnunzDrJp3|?udNTdYutjDVnvtS4 zuZ?V06`?d|HQWUiLUhH~JYb75mdhz2eDO=>65hw%phw*w&8Ub9DRD;Vwbwjf(t}j7 zYo6@8<*pJeUI8TzY0Gn9jLV0yIsTpQm|2&jk={mcJU7TDg-!pRzT3kp^%Vq7PlXl#4tQ5CDC~h~@#|Iy5I0)Tyd9|)w_B|-` z!PVgI#GQ$irtOKQ?Mv_|*fn=5+0m6KZzC@QR5P}RJ;e|WD`hQ- zvX+HY56ikfZECw4yAxY!+L~zEx^(Kp;pL{2w@!Upvu>rvm#FbAc08=v`e{@1-D`KQ zQM*UgwRdfIYhb>dnb&an)iLE9Xu@8mbpp>b4~6wk++6@9$l%JHJwV{z38i z$Cb4|bUxY6RqRb|;z};?pQ~izxp8dI@gn|j_wmPF*1z5FMLG|c5qvUSR*W5c#%qAA zPX%z5aTi}h-IRGs$Ps5UP(+p|D6BSe9BXBrvN=dKmhl|Gyy+*ao?|WTP;-)m&K|(9 zHD-@FKx2p*!IRb(bQINh1jJgN>U#ng^GKEPPCQaVG?G~Ul_qRKfMK=yX<3_7&_QG%JjMq}O94p*=Ch2bUP7ezlWTCO-S>zv_d zc79sXv|wAV=$LW-Lo?JC4X~w@r%aZj9m(dlmF6vpW|&x(n|Iyv%-QE#pSroShGcOy zSxP7@PZrm%x~yfMRnA)Ec~Ziy>-;@INc-$~0mIA+!e=aY*60h7p zXMR+xh+KDnDFpx-XO?dB56m#B90W+;I4S<^BN+ z(jS}6D96rH^Q?=H<~#@9it!+d?%IRPnfCOdYsAij;WdW36xzJC-am{9q~IX!*gr#p zynn3l{waY~2{AB7rI@l&$`1dYRR^Vt1lq@EvCF zjv}Q$k|}GB%9chm+)4UF6Jdsf8OZ#$oAkV}nS$Cdb7M0`$(xLTmq_$#JNE5Ie6BBr zp#i5MzR0U$$|P|yQ`YTn)}fTlItnpIXhko^o~R*40QndM-auOpF6uJc6|%a3Fk`j! z0GaV4g;)$rmic9)+F*q;$KdXJiI9^=@6B;QPUSFIlNyyhKvM#cQN}4NX1#&8o3g%T z%_1Q9drsCIjf}$`iez8rXJJT>dqlW|yZgt3AxS5IidIUvNRkHw5H#UnL2l#9RZOON zbmKEaQA#AFmG(oebJfq#NLtAP&yL}cd>s)vb7)THb2 zJ)f$~Q`VIpj$tRVEGc&=ASOfkF$JW}Rf*%vV5(`u&x84a6YoFSvc@whtG#C&JQI+< zZ9w1e;Rs^oN*n*YamJb?rD$iOtaG`n8yeAu<{A4#d+jH#l4N`5O8eeK``(#T58W-F zk}Y^y+?B95%-H8PrUbL&75-6W-R-Nlt}bj`uI!#U3DCt@r7ek4ax{8%xpc>@ZAO?0 zJoZ-2m(RQvw>SL$sf#PF{T;_s-_q9j`a>VpeN+^0>s>BAAAjlPxclWlrp#3Nxk@Ix z`<9BsTe1I_xE{^xXd5BEJ#D1VK|5=67xHRLkw+_@-71A33DaQ1ns3#3jT~< zos3*~^^~d9()d?pDGt$3D}JheaAM)jMDx~vq06HS z%p>J^CBbeA9V2~*QcL0s53+s=Fab?wA$XO{2Gpn}&uNi?D+P9~aBIv|$l{%aKC&Gb zVjLukF%zs?XW&S}k7S@d^CG|*Myu!4XVyzl>$6V&ha&_a&>%8p3f)O4M4|VB@{E9n z`CX-Nx(GT9!rm>4ucUQu*8=dSLSqI{PP*qEkY8z}Faa;S!ag=|dWcR2-Kb}SVbz7o!+tTHS zt$RLkmps-LL-Ur0?ndZ^NJ%u$f4?{7;!3N@GX!e?*)l;vY6ts z+(48@Vb3H&BIH03a8Q^s;X^)ChQO0|Tp<9>03g7)9$;+FO6ro3^>c$>&kBv7?QMZj z5B%ISvP6sn;Mym5G7!;K@nS$%C@CVyA4`&sDM!-Pb+oL<2`HPqWQ!b@Lt|| zrI_X(dBlaXWlvk&-lks{yJk1Ai{{Q=HwX>ng`!j;(46#&I@ZxY1|ia;2{b#d+abyn z>(&0jzyQ7?3&N=D$t#)Atmy&%HJY#05B~&Z3I+d?RyvFXsI#5(RIU`QOBAhJ+WwF{ zc0aA^c)0OUqUumwDF0RMh8fQ%B~8mE&7j|Q&x*Y!VXv8Q|E0YdK3a7fQ*PeU{#Pw@ zkK2FBu5p2?T_=~BPa^Wktw7_9hU?3yJOiCB%VCG6^mO$?J>6L*F z^3%FgD85E72uhjt4w`g9ncnrCaqy&qQSweKW>QTtGr;sY^A+-E%I-vVHSgRL0NzUN zKYdjb{DdxGTPA;S2Kpm1hcQA6{{wMw~#Qj>j2hmX<+52Oi|S6 zPeBGW$07m7wIFkup-HHRA5srFS7rcY2Xss6FIFZuvwL-k&K4%}v@<(n0iid6d%Y-+ zjzuSQVxr$3x_Ua+z*uk&b zv8n0P#-Wlc#eDxl>#`RX96J5U*~#z4W&{nNN0m0rN8_a}%kGvZ4s_DpmTqj`&;KjO z{`?)zpv8ZOX>xY>;#b|_EK7}ZffmaUsIz*&f?|0Fk&$i?yWWViDaa3GwcS8on}K9< zPvJA!P%z<{j|>3tWGe?p-Or5bplfdcDZCL3 zh*u(NH^fbJyOOrB6V_nXSLWk{X1esuxQN1|Lk5P3AQ8?27tgLsE}KE>H8SH~X?^pB zulZj-eDO56#oZoNYMe|UXV z3=9keCA=z@Iw5vIw1@^N=@a!&EewZ>E#2aAeHv1-!_`X;55T5BphQ$v#NI{e74Zoc z_@uQ9H@>#QuE4522271l)yW$GZ;HmuSp+Wd0Z|I71LN$QZUe(!83Ohm?-$3$L!r#3 zK-Vv}Y~8+jo4AjC-o2-%M{m{*(89;JV*&P|E%oW4W(ThL)8_(}1azzB6+pZ3lJ$_OS^L6{H4>cLOO%&6;N~oIhzp^j*a)L-SC|Y4=IuHvF?a6)Pn=Z z5mH6Z?j5^#@7}z7=kDD-n4AGRy>BQuijQgZfpBban}_cmyxzo+9AzKlNI|@aE*sL` zT=8EKJI3jYclb>xvM)_o@a>HAc<;+}4Ty-?$Wo6ZW9Adhs^3I%XJa=Swv&8}q1nZcoa?d28o^&YPC) zP0;2Nx*@D`<8aO4I$krwER@GAQyrnZRZ`r5Sw>QS3P~9S*{h85t`KG+EHCkIaLP^+ z@Iu0(A;KT87kbWUT z2aJodItH&KRcsNvHgur}ae;e8{D?#d08hhYI5&7jr4cw`Rs%t$KL^FV%Q%~fCkXSB zkum*Es6JJ?WuD8|b3gxt&#^#nr&$=f(gd1QSF6B78Aek4cm?n#6rS)^RyC8--#fW3 ztFt96lZ#XJ?_8n0^(f!RvFSEcI~J|$U9Bp9%>e$nb@Wv!+;4$c@M8nrVHxB>x!OG* z4Te}{G6KCxHNmp`;O6611x_WFGJ-I_Z!aWISa zbt$W0ImbULDw%7Ui@xJufI_x;q50kRd+mSIv0S-v=HzE)&eH(BtlK+ho7o3e_%jCz zX8eEr)Kv;KEOquY#n&DC=+Z~WyInr$VxWPv0R>x7!{Bf7($X@fudo4)&%)PxQbPpY*dVPJG4c}Kq2JmYOHuBxZ z4ORXP?ae3x9KEdEql6pB3Hx|A)AZ@bOqdVawTUt6B2X9NaTP*}`cE_1DMg%+LdtQb zYtVnVfuwz{B>y_#3u1)~3tDx4xh@qEs3>&k%*3cQ=eNP{MaUtwJI{rjj1pRXemi#6 zy1^$fK-4eRy8I?gg2G#}A9sNflxQ9MMqO*jZ)jZKG{os2wPPzm_wc3KPFm_lT7ny9 zN&?w)AjPWk7gU6ga!1Edr17Vf?@`116#Qoju2Q{sjki1V3Rk{M^|MrOH-55!`Oj+( zxaOyw(_O^lr8CMk>OkrWWt@7sb6wIk?>Jzb1h@3}2uz`(SzG2PoJ_0kae=Af-8uGeH?wLRUcjf~uL4<}{_4$Z?iZ1l`bq z@e!3s;U?WCW8bI$y2t_L|Dcd6)GN5W04bjToyo)tkWF~+uQ>d7u>bB~ab>^e>OM2M zc++Q`5&UB<$NT;Vck$QU?q74;eq%2FwQ%Uy!mh`zrnpm_wvkE2GC#1eb$9E?O7%CK`I;l|6}~P1DZD?#h`XH_yzTiC1+kDnE<97hQI5n|36N zs%9=S-LnU1Xxa&Vv8P%uiB}(3E;@)JD`)Yp2-OLpIw^QogvNx>$P!fv2-Q?ln-FSQ zqAnrS7Hp^pAhOS-|A)g%qTQds=>S06z59jw$0lY$`*#n zbw1v_JyE?QQMPlH^YW%tJ6oSI%K2}dXQQyrHsK&TSIkA{Pc2+p?D$#Fdp+^C-HG}= ziK@M;oPf?A)|oXnn@;g)-MApY+ht&B*DntK{9wHMNTTg%LOg~K4R{m2P}p&nUv4;? z*nVb-zcX;J`EOd@?YP(RlhOG0Gl_XOTkBe$j7Q{FioVOp||0x?~NnJQMOrIGfirP~SDsplq`0WfzxjCyh z?iCkW7lpXDGhyjkEu!Kb4!&~UoZ=8IxK}Ak)pHxVpIDlBYtmVsG9#v2l^K>QFtN32 z)kdjve0q)T8=e#$<@p0iXK~6*iN{#2g%Y&P;*^ag?U@xjSl*epWEU&L6|9^KC5l>7 zY(N~5)w$|rRToTH8+?S4n9bqi%h?JM=dTb2xm!b7wl!=_>V|Exdcc4uEaIvQ`OjYE zF}&vqM`7xmsRDa)YQdkV-=5--{&2%8MX605zH9zcibJ&U(&E-7^Wv_1{#D98U1#E} z=4P0k0^kKz^>PJUEy#8;So>KM?zdP*V8qe{609ILV VVxBC2SK4^)pzwD)8($EF{|krgWU>GN literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88ec7c61c4a63c97d4cc0b462b41f6c8033bc22a GIT binary patch literal 38523 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 aK6I3)aL=X#d>y<2eJXK$W`&RKJ^v4!25<@h literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a36179af35b2b3c57120a8d83dadf92b6fa8b3b GIT binary patch literal 5531 zcmcgwUrZbK9sk|=Y|iGuP9Sk0BshhpI0ZW;G+I)_h(en#X~|ToJ+M_L2I6xkS_%0ZR-7bM3Z-jMxJeYEa4MO`oL9LtKh1Mk zcB!tkFfF9r({8&isGfAobcm9CKo0fQTfhe9eqO{!M zD{XB{Tv+@ERwl!o)q0sJlu>0Ol`zA+C17p|ucZtVI`<{wny#f1aW$2tvKCKMXx#q; z%`oGt`UZV_A;oB#YG$ImbeXySNsY`T?((bW(7r9b59EjPu;V; z;$9P`J(aQt$}LI@6)WRJsC#SbUa0#NA9cfcT&ET4t(Ce6bqVScZG+x+Dt5vCuzuT` zaHn#lX@5gsdreuJ^Nhw#8j6SN&lH&q3k-)^ z65Hj0!BFU|&IJwmq{y{h$XJ7_v-S`J_Y8&peIuIG(=?>r{b{^3?Yds%uqpzwApe43bkxe zxHW)%zRCpXuB3TKik$|?9VSjxOA5b6?z$Y!THzF7zNKbDr3eyEmbu+oj&@FwuxGOF zpm>l|@GqSOa*1$o*k$ro2O%rmGB;mYt~O)bjleSZ0e6$*$c+O6St7r3Epl5NYPK%{ z>^0gZdj|k?PPO%rsE9 z{!ae2N^;Wc`JU77O?{mBt@ep_V+txy3=w*-?>o%>tmQCQcR{p%a2-+_0aD9}=3KbO z8E6l=UBtHdNsDap%mec+0VRElV|W+?86GNMON^=U^o$Z8%MN_&ttulA!R*q0AgknI z&(LP#H_5H!FSU=KdDt_`uz8EKTvzCl#fA3V$7a|oFs8~dIL`{VtNg&aCKBe{slvR& z4)fRn+>WVUTKj&i8%BHwhT-rUh6P9OOPd`Zxi-$?5TH%-ZX4(vriu*RCdE4XHH<}2cotCQ-3>E@0 zY)DVD5O+Oy@P3fMRyq| zhqFgw?<7?47O0{tA$?|^Cd`*Y?^VGW zbHzHbM~L^_+p(I*VU-%q>K?xz+dTi#sSV@S;)jd3V)tWDSQv(cU6!{BhUK;~umrqv zSY#*gBq%BDc_5Z&R%hwBX?bPYo+8WW8WBY(xm2pLL3_nrRkYg5Q&0y}+MIzB6AC$| zP=-JNxz@z3mOD@ij3f|SId`N$K{}F`jufQ+ywtxf9k0<#AL+Wxt+(y?dkX%(yuWYf zVE0Y!eXVeCD1UJ1^Zf_jQ@8i`?d&^nv+Mn?Jc6;^J-)qfyx2kl{UssA1 zY6>_O+rpvyt+Q~!xT45SBCG8224Q*1IFth8Ss<%qr{id$qwhgSUry}H0fwSf5Rc`> zV+C;_FAi)T{#1O?MyNR`$f&1*V%VUV2%epqL+AJ%ux|(;nvsUI%*UXm0VZ^~wwMBL zRg5etgYja*v<0+Y@(v&rdqUA{e-ps=j2eQ?j2D0aT>kEYzxRQ^Hz)Sy{JmcU0ir_q zOg?;OJ9u_o+Bxy!x=;|i@?zJ<-~;iwvIRoMHpfqeo;puawajSmn+w!ca*bo%+*2aO zWgf$iW;jY4cImGV<1v>vjdx* z+rbDpQx9qDa{O&h8hT8)w(swB9x8M`o9}$~wwmueRp=bccaG%(V@0>CqMmi&p@`TT zsX^hpgU9^MVJ!nUMa*ibtw5CfbN&~+Bcj*g6*QUcn$$xTF$*oG%w)(+(h!PF2t;ug zSMd^EdYLhuv5CD%&QbFlk!P9!9S4q58NHO zClpSe%bz?~IQeS+%P=dgU!^cUWuUxfC^MH}4v1EgvR%nl>0CUq1fvaI zg;(`p$Vh1koCZQo7pqI!>pFu%x~Ae3{NiBz*T<_I4%OrmK*Eq&mSn`ulrfuvF9b77 z41@A|N5^&}Geb6Yc$C{8d-gcGr;NLR3yuR>CB^+D)L-ZwdC)sja)a~#OYg{gt+w|I zKj;YGd%iGy@xk!L$8OSgXs37ND;#3S2TvYjs9+!?-#vCp2y<_S_p#GZvwX6g)|CYn zLm^3)-(HBTmB2`t(RG#WgF$Qn2|5sV1_{2$8LBcnhva1>uL7||her(UPZ^;}C~Z}u zSbQKeuR|m#7{3FuM!w=b?sMFxStOW$Y?kc27;wACHabcKvSNFy+qcnIB9IlkdH3nu zsh5ic^4~)k1X)oOpzVe8a9wBa9jh9<~1CvZ()G2n5JmYYU%gJak>S_}|R zdy(hduW`5gbI+a0KXVo=I@C(8Y6qBn9OHw9I&+cneE8gB0u_72SJ+&3l6bdpyVauV zb8`?kTCE9PRl%31z(18gFL}(R4D>K$g^iMR7{1{|W+CkioEX89QVF?66UHHLu{ zT^z^#k+lDb^!=F}`I4OZlEfZ)yVrvSZ+G6?z45(mZ~v<2pPpAZ&i9xgwb%R)!TH_$ literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9887c10e1467284bcfa8756433c8dfbc338f5ca3 GIT binary patch literal 32142 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 kFYtWzef(T3U;XJ5`Y#*!s{0)IpFU@4V!Z literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/constructors.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/constructors.py new file mode 100644 index 00000000..d73236e0 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/constructors.py @@ -0,0 +1,560 @@ +"""Backing implementation for InstallRequirement's various constructors + +The idea here is that these formed a major chunk of InstallRequirement's size +so, moving them and support code dedicated to them outside of that class +helps creates for better understandability for the rest of the code. + +These are meant to be used elsewhere within pip to create instances of +InstallRequirement. +""" + +import copy +import logging +import os +import re +from dataclasses import dataclass +from typing import Collection, Dict, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement +from pip._vendor.packaging.specifiers import Specifier + +from pip._internal.exceptions import InstallationError +from pip._internal.models.index import PyPI, TestPyPI +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_file import ParsedRequirement +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import is_installable_dir +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import is_url, vcs + +__all__ = [ + "install_req_from_editable", + "install_req_from_line", + "parse_editable", +] + +logger = logging.getLogger(__name__) +operators = Specifier._operators.keys() + + +def _strip_extras(path: str) -> Tuple[str, Optional[str]]: + m = re.match(r"^(.+)(\[[^\]]+\])$", path) + extras = None + if m: + path_no_extras = m.group(1) + extras = m.group(2) + else: + path_no_extras = path + + return path_no_extras, extras + + +def convert_extras(extras: Optional[str]) -> Set[str]: + if not extras: + return set() + return get_requirement("placeholder" + extras.lower()).extras + + +def _set_requirement_extras(req: Requirement, new_extras: Set[str]) -> Requirement: + """ + Returns a new requirement based on the given one, with the supplied extras. If the + given requirement already has extras those are replaced (or dropped if no new extras + are given). + """ + match: Optional[re.Match[str]] = re.fullmatch( + # see https://peps.python.org/pep-0508/#complete-grammar + r"([\w\t .-]+)(\[[^\]]*\])?(.*)", + str(req), + flags=re.ASCII, + ) + # ireq.req is a valid requirement so the regex should always match + assert ( + match is not None + ), f"regex match on requirement {req} failed, this should never happen" + pre: Optional[str] = match.group(1) + post: Optional[str] = match.group(3) + assert ( + pre is not None and post is not None + ), f"regex group selection for requirement {req} failed, this should never happen" + extras: str = "[%s]" % ",".join(sorted(new_extras)) if new_extras else "" + return get_requirement(f"{pre}{extras}{post}") + + +def parse_editable(editable_req: str) -> Tuple[Optional[str], str, Set[str]]: + """Parses an editable requirement into: + - a requirement name + - an URL + - extras + - editable options + Accepted requirements: + svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir + .[some_extra] + """ + + url = editable_req + + # If a file path is specified with extras, strip off the extras. + url_no_extras, extras = _strip_extras(url) + + if os.path.isdir(url_no_extras): + # Treating it as code that has already been checked out + url_no_extras = path_to_url(url_no_extras) + + if url_no_extras.lower().startswith("file:"): + package_name = Link(url_no_extras).egg_fragment + if extras: + return ( + package_name, + url_no_extras, + get_requirement("placeholder" + extras.lower()).extras, + ) + else: + return package_name, url_no_extras, set() + + for version_control in vcs: + if url.lower().startswith(f"{version_control}:"): + url = f"{version_control}+{url}" + break + + link = Link(url) + + if not link.is_vcs: + backends = ", ".join(vcs.all_schemes) + raise InstallationError( + f"{editable_req} is not a valid editable requirement. " + f"It should either be a path to a local project or a VCS URL " + f"(beginning with {backends})." + ) + + package_name = link.egg_fragment + if not package_name: + raise InstallationError( + f"Could not detect requirement name for '{editable_req}', " + "please specify one with #egg=your_package_name" + ) + return package_name, url, set() + + +def check_first_requirement_in_file(filename: str) -> None: + """Check if file is parsable as a requirements file. + + This is heavily based on ``pkg_resources.parse_requirements``, but + simplified to just check the first meaningful line. + + :raises InvalidRequirement: If the first meaningful line cannot be parsed + as an requirement. + """ + with open(filename, encoding="utf-8", errors="ignore") as f: + # Create a steppable iterator, so we can handle \-continuations. + lines = ( + line + for line in (line.strip() for line in f) + if line and not line.startswith("#") # Skip blank lines/comments. + ) + + for line in lines: + # Drop comments -- a hash without a space may be in a URL. + if " #" in line: + line = line[: line.find(" #")] + # If there is a line continuation, drop it, and append the next line. + if line.endswith("\\"): + line = line[:-2].strip() + next(lines, "") + get_requirement(line) + return + + +def deduce_helpful_msg(req: str) -> str: + """Returns helpful msg in case requirements file does not exist, + or cannot be parsed. + + :params req: Requirements file path + """ + if not os.path.exists(req): + return f" File '{req}' does not exist." + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + check_first_requirement_in_file(req) + except InvalidRequirement: + logger.debug("Cannot parse '%s' as requirements file", req) + else: + msg += ( + f"The argument you provided " + f"({req}) appears to be a" + f" requirements file. If that is the" + f" case, use the '-r' flag to install" + f" the packages specified within it." + ) + return msg + + +@dataclass(frozen=True) +class RequirementParts: + requirement: Optional[Requirement] + link: Optional[Link] + markers: Optional[Marker] + extras: Set[str] + + +def parse_req_from_editable(editable_req: str) -> RequirementParts: + name, url, extras_override = parse_editable(editable_req) + + if name is not None: + try: + req: Optional[Requirement] = get_requirement(name) + except InvalidRequirement as exc: + raise InstallationError(f"Invalid requirement: {name!r}: {exc}") + else: + req = None + + link = Link(url) + + return RequirementParts(req, link, None, extras_override) + + +# ---- The actual constructors follow ---- + + +def install_req_from_editable( + editable_req: str, + comes_from: Optional[Union[InstallRequirement, str]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + user_supplied: bool = False, + permit_editable_wheels: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + permit_editable_wheels=permit_editable_wheels, + link=parts.link, + constraint=constraint, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + extras=parts.extras, + ) + + +def _looks_like_path(name: str) -> bool: + """Checks whether the string "looks like" a path on the filesystem. + + This does not check whether the target actually exists, only judge from the + appearance. + + Returns true if any of the following conditions is true: + * a path separator is found (either os.path.sep or os.path.altsep); + * a dot is found (which represents the current directory). + """ + if os.path.sep in name: + return True + if os.path.altsep is not None and os.path.altsep in name: + return True + if name.startswith("."): + return True + return False + + +def _get_url_from_path(path: str, name: str) -> Optional[str]: + """ + First, it checks whether a provided path is an installable directory. If it + is, returns the path. + + If false, check if the path is an archive file (such as a .whl). + The function checks if the path is a file. If false, if the path has + an @, it will treat it as a PEP 440 URL requirement and return the path. + """ + if _looks_like_path(name) and os.path.isdir(path): + if is_installable_dir(path): + return path_to_url(path) + # TODO: The is_installable_dir test here might not be necessary + # now that it is done in load_pyproject_toml too. + raise InstallationError( + f"Directory {name!r} is not installable. Neither 'setup.py' " + "nor 'pyproject.toml' found." + ) + if not is_archive_file(path): + return None + if os.path.isfile(path): + return path_to_url(path) + urlreq_parts = name.split("@", 1) + if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): + # If the path contains '@' and the part before it does not look + # like a path, try to treat it as a PEP 440 URL req instead. + return None + logger.warning( + "Requirement %r looks like a filename, but the file does not exist", + name, + ) + return path_to_url(path) + + +def parse_req_from_line(name: str, line_source: Optional[str]) -> RequirementParts: + if is_url(name): + marker_sep = "; " + else: + marker_sep = ";" + if marker_sep in name: + name, markers_as_string = name.split(marker_sep, 1) + markers_as_string = markers_as_string.strip() + if not markers_as_string: + markers = None + else: + markers = Marker(markers_as_string) + else: + markers = None + name = name.strip() + req_as_string = None + path = os.path.normpath(os.path.abspath(name)) + link = None + extras_as_string = None + + if is_url(name): + link = Link(name) + else: + p, extras_as_string = _strip_extras(path) + url = _get_url_from_path(p, name) + if url is not None: + link = Link(url) + + # it's a local file, dir, or url + if link: + # Handle relative file URLs + if link.scheme == "file" and re.search(r"\.\./", link.url): + link = Link(path_to_url(os.path.normpath(os.path.abspath(link.path)))) + # wheel file + if link.is_wheel: + wheel = Wheel(link.filename) # can raise InvalidWheelFilename + req_as_string = f"{wheel.name}=={wheel.version}" + else: + # set the req to the egg fragment. when it's not there, this + # will become an 'unnamed' requirement + req_as_string = link.egg_fragment + + # a requirement specifier + else: + req_as_string = name + + extras = convert_extras(extras_as_string) + + def with_source(text: str) -> str: + if not line_source: + return text + return f"{text} (from {line_source})" + + def _parse_req_string(req_as_string: str) -> Requirement: + try: + return get_requirement(req_as_string) + except InvalidRequirement as exc: + if os.path.sep in req_as_string: + add_msg = "It looks like a path." + add_msg += deduce_helpful_msg(req_as_string) + elif "=" in req_as_string and not any( + op in req_as_string for op in operators + ): + add_msg = "= is not a valid operator. Did you mean == ?" + else: + add_msg = "" + msg = with_source(f"Invalid requirement: {req_as_string!r}: {exc}") + if add_msg: + msg += f"\nHint: {add_msg}" + raise InstallationError(msg) + + if req_as_string is not None: + req: Optional[Requirement] = _parse_req_string(req_as_string) + else: + req = None + + return RequirementParts(req, link, markers, extras) + + +def install_req_from_line( + name: str, + comes_from: Optional[Union[str, InstallRequirement]] = None, + *, + use_pep517: Optional[bool] = None, + isolated: bool = False, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + line_source: Optional[str] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + """Creates an InstallRequirement from a name, which might be a + requirement, directory containing 'setup.py', filename, or URL. + + :param line_source: An optional string describing where the line is from, + for logging purposes in case of an error. + """ + parts = parse_req_from_line(name, line_source) + + return InstallRequirement( + parts.requirement, + comes_from, + link=parts.link, + markers=parts.markers, + use_pep517=use_pep517, + isolated=isolated, + global_options=global_options, + hash_options=hash_options, + config_settings=config_settings, + constraint=constraint, + extras=parts.extras, + user_supplied=user_supplied, + ) + + +def install_req_from_req_string( + req_string: str, + comes_from: Optional[InstallRequirement] = None, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, +) -> InstallRequirement: + try: + req = get_requirement(req_string) + except InvalidRequirement as exc: + raise InstallationError(f"Invalid requirement: {req_string!r}: {exc}") + + domains_not_allowed = [ + PyPI.file_storage_domain, + TestPyPI.file_storage_domain, + ] + if ( + req.url + and comes_from + and comes_from.link + and comes_from.link.netloc in domains_not_allowed + ): + # Explicitly disallow pypi packages that depend on external urls + raise InstallationError( + "Packages installed from PyPI cannot depend on packages " + "which are not also hosted on PyPI.\n" + f"{comes_from.name} depends on {req} " + ) + + return InstallRequirement( + req, + comes_from, + isolated=isolated, + use_pep517=use_pep517, + user_supplied=user_supplied, + ) + + +def install_req_from_parsed_requirement( + parsed_req: ParsedRequirement, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, +) -> InstallRequirement: + if parsed_req.is_editable: + req = install_req_from_editable( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + constraint=parsed_req.constraint, + isolated=isolated, + user_supplied=user_supplied, + config_settings=config_settings, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + global_options=( + parsed_req.options.get("global_options", []) + if parsed_req.options + else [] + ), + hash_options=( + parsed_req.options.get("hashes", {}) if parsed_req.options else {} + ), + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + config_settings=config_settings, + ) + return req + + +def install_req_from_link_and_ireq( + link: Link, ireq: InstallRequirement +) -> InstallRequirement: + return InstallRequirement( + req=ireq.req, + comes_from=ireq.comes_from, + editable=ireq.editable, + link=link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + ) + + +def install_req_drop_extras(ireq: InstallRequirement) -> InstallRequirement: + """ + Creates a new InstallationRequirement using the given template but without + any extras. Sets the original requirement as the new one's parent + (comes_from). + """ + return InstallRequirement( + req=( + _set_requirement_extras(ireq.req, set()) if ireq.req is not None else None + ), + comes_from=ireq, + editable=ireq.editable, + link=ireq.link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + constraint=ireq.constraint, + extras=[], + config_settings=ireq.config_settings, + user_supplied=ireq.user_supplied, + permit_editable_wheels=ireq.permit_editable_wheels, + ) + + +def install_req_extend_extras( + ireq: InstallRequirement, + extras: Collection[str], +) -> InstallRequirement: + """ + Returns a copy of an installation requirement with some additional extras. + Makes a shallow copy of the ireq object. + """ + result = copy.copy(ireq) + result.extras = {*ireq.extras, *extras} + result.req = ( + _set_requirement_extras(ireq.req, result.extras) + if ireq.req is not None + else None + ) + return result diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_file.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 00000000..53ad8674 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,551 @@ +""" +Requirements file parsing +""" + +import logging +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Generator, + Iterable, + List, + NoReturn, + Optional, + Tuple, +) + +from pip._internal.cli import cmdoptions +from pip._internal.exceptions import InstallationError, RequirementsFileParseError +from pip._internal.models.search_scope import SearchScope +from pip._internal.utils.encoding import auto_decode + +if TYPE_CHECKING: + from pip._internal.index.package_finder import PackageFinder + from pip._internal.network.session import PipSession + +__all__ = ["parse_requirements"] + +ReqFileLines = Iterable[Tuple[int, str]] + +LineParser = Callable[[str], Tuple[str, Values]] + +SCHEME_RE = re.compile(r"^(http|https|file):", re.I) +COMMENT_RE = re.compile(r"(^|\s+)#.*$") + +# Matches environment variable-style values in '${MY_VARIABLE_1}' with the +# variable name consisting of only uppercase letters, digits or the '_' +# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, +# 2013 Edition. +ENV_VAR_RE = re.compile(r"(?P\$\{(?P[A-Z0-9_]+)\})") + +SUPPORTED_OPTIONS: List[Callable[..., optparse.Option]] = [ + cmdoptions.index_url, + cmdoptions.extra_index_url, + cmdoptions.no_index, + cmdoptions.constraints, + cmdoptions.requirements, + cmdoptions.editable, + cmdoptions.find_links, + cmdoptions.no_binary, + cmdoptions.only_binary, + cmdoptions.prefer_binary, + cmdoptions.require_hashes, + cmdoptions.pre, + cmdoptions.trusted_host, + cmdoptions.use_new_feature, +] + +# options to be passed to requirements +SUPPORTED_OPTIONS_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.global_options, + cmdoptions.hash, + cmdoptions.config_settings, +] + +SUPPORTED_OPTIONS_EDITABLE_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.config_settings, +] + + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] +SUPPORTED_OPTIONS_EDITABLE_REQ_DEST = [ + str(o().dest) for o in SUPPORTED_OPTIONS_EDITABLE_REQ +] + +logger = logging.getLogger(__name__) + + +class ParsedRequirement: + def __init__( + self, + requirement: str, + is_editable: bool, + comes_from: str, + constraint: bool, + options: Optional[Dict[str, Any]] = None, + line_source: Optional[str] = None, + ) -> None: + self.requirement = requirement + self.is_editable = is_editable + self.comes_from = comes_from + self.options = options + self.constraint = constraint + self.line_source = line_source + + +class ParsedLine: + def __init__( + self, + filename: str, + lineno: int, + args: str, + opts: Values, + constraint: bool, + ) -> None: + self.filename = filename + self.lineno = lineno + self.opts = opts + self.constraint = constraint + + if args: + self.is_requirement = True + self.is_editable = False + self.requirement = args + elif opts.editables: + self.is_requirement = True + self.is_editable = True + # We don't support multiple -e on one line + self.requirement = opts.editables[0] + else: + self.is_requirement = False + + +def parse_requirements( + filename: str, + session: "PipSession", + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + constraint: bool = False, +) -> Generator[ParsedRequirement, None, None]: + """Parse a requirements file and yield ParsedRequirement instances. + + :param filename: Path or url of requirements file. + :param session: PipSession instance. + :param finder: Instance of pip.index.PackageFinder. + :param options: cli options. + :param constraint: If true, parsing a constraint file rather than + requirements file. + """ + line_parser = get_line_parser(finder) + parser = RequirementsFileParser(session, line_parser) + + for parsed_line in parser.parse(filename, constraint): + parsed_req = handle_line( + parsed_line, options=options, finder=finder, session=session + ) + if parsed_req is not None: + yield parsed_req + + +def preprocess(content: str) -> ReqFileLines: + """Split, filter, and join lines, and return a line iterator + + :param content: the content of the requirements file + """ + lines_enum: ReqFileLines = enumerate(content.splitlines(), start=1) + lines_enum = join_lines(lines_enum) + lines_enum = ignore_comments(lines_enum) + lines_enum = expand_env_variables(lines_enum) + return lines_enum + + +def handle_requirement_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, +) -> ParsedRequirement: + # preserve for the nested code path + line_comes_from = "{} {} (line {})".format( + "-c" if line.constraint else "-r", + line.filename, + line.lineno, + ) + + assert line.is_requirement + + # get the options that apply to requirements + if line.is_editable: + supported_dest = SUPPORTED_OPTIONS_EDITABLE_REQ_DEST + else: + supported_dest = SUPPORTED_OPTIONS_REQ_DEST + req_options = {} + for dest in supported_dest: + if dest in line.opts.__dict__ and line.opts.__dict__[dest]: + req_options[dest] = line.opts.__dict__[dest] + + line_source = f"line {line.lineno} of {line.filename}" + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + options=req_options, + line_source=line_source, + ) + + +def handle_option_line( + opts: Values, + filename: str, + lineno: int, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + session: Optional["PipSession"] = None, +) -> None: + if opts.hashes: + logger.warning( + "%s line %s has --hash but no requirement, and will be ignored.", + filename, + lineno, + ) + + if options: + # percolate options upward + if opts.require_hashes: + options.require_hashes = opts.require_hashes + if opts.features_enabled: + options.features_enabled.extend( + f for f in opts.features_enabled if f not in options.features_enabled + ) + + # set finder options + if finder: + find_links = finder.find_links + index_urls = finder.index_urls + no_index = finder.search_scope.no_index + if opts.no_index is True: + no_index = True + index_urls = [] + if opts.index_url and not no_index: + index_urls = [opts.index_url] + if opts.extra_index_urls and not no_index: + index_urls.extend(opts.extra_index_urls) + if opts.find_links: + # FIXME: it would be nice to keep track of the source + # of the find_links: support a find-links local path + # relative to a requirements file. + value = opts.find_links[0] + req_dir = os.path.dirname(os.path.abspath(filename)) + relative_to_reqs_file = os.path.join(req_dir, value) + if os.path.exists(relative_to_reqs_file): + value = relative_to_reqs_file + find_links.append(value) + + if session: + # We need to update the auth urls in session + session.update_index_urls(index_urls) + + search_scope = SearchScope( + find_links=find_links, + index_urls=index_urls, + no_index=no_index, + ) + finder.search_scope = search_scope + + if opts.pre: + finder.set_allow_all_prereleases() + + if opts.prefer_binary: + finder.set_prefer_binary() + + if session: + for host in opts.trusted_hosts or []: + source = f"line {lineno} of {filename}" + session.add_trusted_host(host, source=source) + + +def handle_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, + finder: Optional["PackageFinder"] = None, + session: Optional["PipSession"] = None, +) -> Optional[ParsedRequirement]: + """Handle a single parsed requirements line; This can result in + creating/yielding requirements, or updating the finder. + + :param line: The parsed line to be processed. + :param options: CLI options. + :param finder: The finder - updated by non-requirement lines. + :param session: The session - updated by non-requirement lines. + + Returns a ParsedRequirement object if the line is a requirement line, + otherwise returns None. + + For lines that contain requirements, the only options that have an effect + are from SUPPORTED_OPTIONS_REQ, and they are scoped to the + requirement. Other options from SUPPORTED_OPTIONS may be present, but are + ignored. + + For lines that do not contain requirements, the only options that have an + effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may + be present, but are ignored. These lines may contain multiple options + (although our docs imply only one is supported), and all our parsed and + affect the finder. + """ + + if line.is_requirement: + parsed_req = handle_requirement_line(line, options) + return parsed_req + else: + handle_option_line( + line.opts, + line.filename, + line.lineno, + finder, + options, + session, + ) + return None + + +class RequirementsFileParser: + def __init__( + self, + session: "PipSession", + line_parser: LineParser, + ) -> None: + self._session = session + self._line_parser = line_parser + + def parse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + """Parse a given file, yielding parsed lines.""" + yield from self._parse_and_recurse(filename, constraint) + + def _parse_and_recurse( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + for line in self._parse_file(filename, constraint): + if not line.is_requirement and ( + line.opts.requirements or line.opts.constraints + ): + # parse a nested requirements file + if line.opts.requirements: + req_path = line.opts.requirements[0] + nested_constraint = False + else: + req_path = line.opts.constraints[0] + nested_constraint = True + + # original file is over http + if SCHEME_RE.search(filename): + # do a url join so relative paths work + req_path = urllib.parse.urljoin(filename, req_path) + # original file and nested file are paths + elif not SCHEME_RE.search(req_path): + # do a join so relative paths work + req_path = os.path.join( + os.path.dirname(filename), + req_path, + ) + + yield from self._parse_and_recurse(req_path, nested_constraint) + else: + yield line + + def _parse_file( + self, filename: str, constraint: bool + ) -> Generator[ParsedLine, None, None]: + _, content = get_file_content(filename, self._session) + + lines_enum = preprocess(content) + + for line_number, line in lines_enum: + try: + args_str, opts = self._line_parser(line) + except OptionParsingError as e: + # add offending line + msg = f"Invalid requirement: {line}\n{e.msg}" + raise RequirementsFileParseError(msg) + + yield ParsedLine( + filename, + line_number, + args_str, + opts, + constraint, + ) + + +def get_line_parser(finder: Optional["PackageFinder"]) -> LineParser: + def parse_line(line: str) -> Tuple[str, Values]: + # Build new parser for each line since it accumulates appendable + # options. + parser = build_parser() + defaults = parser.get_default_values() + defaults.index_url = None + if finder: + defaults.format_control = finder.format_control + + args_str, options_str = break_args_options(line) + + try: + options = shlex.split(options_str) + except ValueError as e: + raise OptionParsingError(f"Could not split options: {options_str}") from e + + opts, _ = parser.parse_args(options, defaults) + + return args_str, opts + + return parse_line + + +def break_args_options(line: str) -> Tuple[str, str]: + """Break up the line into an args and options string. We only want to shlex + (and then optparse) the options, not the args. args can contain markers + which are corrupted by shlex. + """ + tokens = line.split(" ") + args = [] + options = tokens[:] + for token in tokens: + if token.startswith("-") or token.startswith("--"): + break + else: + args.append(token) + options.pop(0) + return " ".join(args), " ".join(options) + + +class OptionParsingError(Exception): + def __init__(self, msg: str) -> None: + self.msg = msg + + +def build_parser() -> optparse.OptionParser: + """ + Return a parser for parsing requirement lines + """ + parser = optparse.OptionParser(add_help_option=False) + + option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ + for option_factory in option_factories: + option = option_factory() + parser.add_option(option) + + # By default optparse sys.exits on parsing errors. We want to wrap + # that in our own exception. + def parser_exit(self: Any, msg: str) -> "NoReturn": + raise OptionParsingError(msg) + + # NOTE: mypy disallows assigning to a method + # https://github.com/python/mypy/issues/2427 + parser.exit = parser_exit # type: ignore + + return parser + + +def join_lines(lines_enum: ReqFileLines) -> ReqFileLines: + """Joins a line ending in '\' with the previous line (except when following + comments). The joined line takes on the index of the first line. + """ + primary_line_number = None + new_line: List[str] = [] + for line_number, line in lines_enum: + if not line.endswith("\\") or COMMENT_RE.match(line): + if COMMENT_RE.match(line): + # this ensures comments are always matched later + line = " " + line + if new_line: + new_line.append(line) + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + new_line = [] + else: + yield line_number, line + else: + if not new_line: + primary_line_number = line_number + new_line.append(line.strip("\\")) + + # last line contains \ + if new_line: + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + + # TODO: handle space after '\'. + + +def ignore_comments(lines_enum: ReqFileLines) -> ReqFileLines: + """ + Strips comments and filter empty lines. + """ + for line_number, line in lines_enum: + line = COMMENT_RE.sub("", line) + line = line.strip() + if line: + yield line_number, line + + +def expand_env_variables(lines_enum: ReqFileLines) -> ReqFileLines: + """Replace all environment variables that can be retrieved via `os.getenv`. + + The only allowed format for environment variables defined in the + requirement file is `${MY_VARIABLE_1}` to ensure two things: + + 1. Strings that contain a `$` aren't accidentally (partially) expanded. + 2. Ensure consistency across platforms for requirement files. + + These points are the result of a discussion on the `github pull + request #3514 `_. + + Valid characters in variable names follow the `POSIX standard + `_ and are limited + to uppercase letter, digits and the `_` (underscore). + """ + for line_number, line in lines_enum: + for env_var, var_name in ENV_VAR_RE.findall(line): + value = os.getenv(var_name) + if not value: + continue + + line = line.replace(env_var, value) + + yield line_number, line + + +def get_file_content(url: str, session: "PipSession") -> Tuple[str, str]: + """Gets the content of a file; it may be a filename, file: URL, or + http: URL. Returns (location, content). Content is unicode. + Respects # -*- coding: declarations on the retrieved files. + + :param url: File path or url. + :param session: PipSession instance. + """ + scheme = urllib.parse.urlsplit(url).scheme + # Pip has special support for file:// URLs (LocalFSAdapter). + if scheme in ["http", "https", "file"]: + # Delay importing heavy network modules until absolutely necessary. + from pip._internal.network.utils import raise_for_status + + resp = session.get(url) + raise_for_status(resp) + return resp.url, resp.text + + # Assume this is a bare path. + try: + with open(url, "rb") as f: + content = auto_decode(f.read()) + except OSError as exc: + raise InstallationError(f"Could not open requirements file: {exc}") + return url, content diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_install.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 00000000..834bc513 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,934 @@ +import functools +import logging +import os +import shutil +import sys +import uuid +import zipfile +from optparse import Values +from pathlib import Path +from typing import Any, Collection, Dict, Iterable, List, Optional, Sequence, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError, PreviousBuildDirError +from pip._internal.locations import get_scheme +from pip._internal.metadata import ( + BaseDistribution, + get_default_environment, + get_directory_distribution, + get_wheel_distribution, +) +from pip._internal.metadata.base import FilesystemWheel +from pip._internal.models.direct_url import DirectUrl +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_metadata +from pip._internal.operations.build.metadata_editable import generate_editable_metadata +from pip._internal.operations.build.metadata_legacy import ( + generate_metadata as generate_metadata_legacy, +) +from pip._internal.operations.install.editable_legacy import ( + install_editable as install_editable_legacy, +) +from pip._internal.operations.install.wheel import install_wheel +from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path +from pip._internal.req.req_uninstall import UninstallPathSet +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + ConfiguredBuildBackendHookCaller, + ask_path_exists, + backup_dir, + display_path, + hide_url, + is_installable_dir, + redact_auth_from_requirement, + redact_auth_from_url, +) +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.unpacking import unpack_file +from pip._internal.utils.virtualenv import running_under_virtualenv +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +class InstallRequirement: + """ + Represents something that may be installed later on, may have information + about where to fetch the relevant requirement and also contains logic for + installing the said requirement. + """ + + def __init__( + self, + req: Optional[Requirement], + comes_from: Optional[Union[str, "InstallRequirement"]], + editable: bool = False, + link: Optional[Link] = None, + markers: Optional[Marker] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + *, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + constraint: bool = False, + extras: Collection[str] = (), + user_supplied: bool = False, + permit_editable_wheels: bool = False, + ) -> None: + assert req is None or isinstance(req, Requirement), req + self.req = req + self.comes_from = comes_from + self.constraint = constraint + self.editable = editable + self.permit_editable_wheels = permit_editable_wheels + + # source_dir is the local directory where the linked requirement is + # located, or unpacked. In case unpacking is needed, creating and + # populating source_dir is done by the RequirementPreparer. Note this + # is not necessarily the directory where pyproject.toml or setup.py is + # located - that one is obtained via unpacked_source_directory. + self.source_dir: Optional[str] = None + if self.editable: + assert link + if link.is_file: + self.source_dir = os.path.normpath(os.path.abspath(link.file_path)) + + # original_link is the direct URL that was provided by the user for the + # requirement, either directly or via a constraints file. + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + + # When this InstallRequirement is a wheel obtained from the cache of locally + # built wheels, this is the source link corresponding to the cache entry, which + # was used to download and build the cached wheel. + self.cached_wheel_source_link: Optional[Link] = None + + # Information about the location of the artifact that was downloaded . This + # property is guaranteed to be set in resolver results. + self.download_info: Optional[DirectUrl] = None + + # Path to any downloaded or already-existing package. + self.local_file_path: Optional[str] = None + if self.link and self.link.is_file: + self.local_file_path = self.link.file_path + + if extras: + self.extras = extras + elif req: + self.extras = req.extras + else: + self.extras = set() + if markers is None and req: + markers = req.marker + self.markers = markers + + # This holds the Distribution object if this requirement is already installed. + self.satisfied_by: Optional[BaseDistribution] = None + # Whether the installation process should try to uninstall an existing + # distribution before installing this requirement. + self.should_reinstall = False + # Temporary build location + self._temp_build_dir: Optional[TempDirectory] = None + # Set to True after successful installation + self.install_succeeded: Optional[bool] = None + # Supplied options + self.global_options = global_options if global_options else [] + self.hash_options = hash_options if hash_options else {} + self.config_settings = config_settings + # Set to True after successful preparation of this requirement + self.prepared = False + # User supplied requirement are explicitly requested for installation + # by the user via CLI arguments or requirements files, as opposed to, + # e.g. dependencies, extras or constraints. + self.user_supplied = user_supplied + + self.isolated = isolated + self.build_env: BuildEnvironment = NoOpBuildEnvironment() + + # For PEP 517, the directory where we request the project metadata + # gets stored. We need this to pass to build_wheel, so the backend + # can ensure that the wheel matches the metadata (see the PEP for + # details). + self.metadata_directory: Optional[str] = None + + # The static build requirements (from pyproject.toml) + self.pyproject_requires: Optional[List[str]] = None + + # Build requirements that we will check are available + self.requirements_to_check: List[str] = [] + + # The PEP 517 backend we should use to build the project + self.pep517_backend: Optional[BuildBackendHookCaller] = None + + # Are we using PEP 517 for this requirement? + # After pyproject.toml has been loaded, the only valid values are True + # and False. Before loading, None is valid (meaning "use the default"). + # Setting an explicit value before loading pyproject.toml is supported, + # but after loading this flag should be treated as read only. + self.use_pep517 = use_pep517 + + # If config settings are provided, enforce PEP 517. + if self.config_settings: + if self.use_pep517 is False: + logger.warning( + "--no-use-pep517 ignored for %s " + "because --config-settings are specified.", + self, + ) + self.use_pep517 = True + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + # This requirement needs to be unpacked before it can be installed. + self._archive_source: Optional[Path] = None + + def __str__(self) -> str: + if self.req: + s = redact_auth_from_requirement(self.req) + if self.link: + s += f" from {redact_auth_from_url(self.link.url)}" + elif self.link: + s = redact_auth_from_url(self.link.url) + else: + s = "" + if self.satisfied_by is not None: + if self.satisfied_by.location is not None: + location = display_path(self.satisfied_by.location) + else: + location = "" + s += f" in {location}" + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from: Optional[str] = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += f" (from {comes_from})" + return s + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__} object: " + f"{str(self)} editable={self.editable!r}>" + ) + + def format_debug(self) -> str: + """An un-tested helper for getting state, for debugging.""" + attributes = vars(self) + names = sorted(attributes) + + state = (f"{attr}={attributes[attr]!r}" for attr in sorted(names)) + return "<{name} object: {{{state}}}>".format( + name=self.__class__.__name__, + state=", ".join(state), + ) + + # Things that are valid for all kinds of requirements? + @property + def name(self) -> Optional[str]: + if self.req is None: + return None + return self.req.name + + @functools.cached_property + def supports_pyproject_editable(self) -> bool: + if not self.use_pep517: + return False + assert self.pep517_backend + with self.build_env: + runner = runner_with_spinner_message( + "Checking if build backend supports build_editable" + ) + with self.pep517_backend.subprocess_runner(runner): + return "build_editable" in self.pep517_backend._supported_features() + + @property + def specifier(self) -> SpecifierSet: + assert self.req is not None + return self.req.specifier + + @property + def is_direct(self) -> bool: + """Whether this requirement was specified as a direct URL.""" + return self.original_link is not None + + @property + def is_pinned(self) -> bool: + """Return whether I am pinned to an exact version. + + For example, some-package==1.2 is pinned; some-package>1.2 is not. + """ + assert self.req is not None + specifiers = self.req.specifier + return len(specifiers) == 1 and next(iter(specifiers)).operator in {"==", "==="} + + def match_markers(self, extras_requested: Optional[Iterable[str]] = None) -> bool: + if not extras_requested: + # Provide an extra to safely evaluate the markers + # without matching any extra + extras_requested = ("",) + if self.markers is not None: + return any( + self.markers.evaluate({"extra": extra}) for extra in extras_requested + ) + else: + return True + + @property + def has_hash_options(self) -> bool: + """Return whether any known-good hashes are specified as options. + + These activate --require-hashes mode; hashes specified as part of a + URL do not. + + """ + return bool(self.hash_options) + + def hashes(self, trust_internet: bool = True) -> Hashes: + """Return a hash-comparer that considers my option- and URL-based + hashes to be known-good. + + Hashes in URLs--ones embedded in the requirements file, not ones + downloaded from an index server--are almost peers with ones from + flags. They satisfy --require-hashes (whether it was implicitly or + explicitly activated) but do not activate it. md5 and sha224 are not + allowed in flags, which should nudge people toward good algos. We + always OR all hashes together, even ones from URLs. + + :param trust_internet: Whether to trust URL-based (#md5=...) hashes + downloaded from the internet, as by populate_link() + + """ + good_hashes = self.hash_options.copy() + if trust_internet: + link = self.link + elif self.is_direct and self.user_supplied: + link = self.original_link + else: + link = None + if link and link.hash: + assert link.hash_name is not None + good_hashes.setdefault(link.hash_name, []).append(link.hash) + return Hashes(good_hashes) + + def from_path(self) -> Optional[str]: + """Format a nice indicator to show where this "comes from" """ + if self.req is None: + return None + s = str(self.req) + if self.comes_from: + comes_from: Optional[str] + if isinstance(self.comes_from, str): + comes_from = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += "->" + comes_from + return s + + def ensure_build_location( + self, build_dir: str, autodelete: bool, parallel_builds: bool + ) -> str: + assert build_dir is not None + if self._temp_build_dir is not None: + assert self._temp_build_dir.path + return self._temp_build_dir.path + if self.req is None: + # Some systems have /tmp as a symlink which confuses custom + # builds (such as numpy). Thus, we ensure that the real path + # is returned. + self._temp_build_dir = TempDirectory( + kind=tempdir_kinds.REQ_BUILD, globally_managed=True + ) + + return self._temp_build_dir.path + + # This is the only remaining place where we manually determine the path + # for the temporary directory. It is only needed for editables where + # it is the value of the --src option. + + # When parallel builds are enabled, add a UUID to the build directory + # name so multiple builds do not interfere with each other. + dir_name: str = canonicalize_name(self.req.name) + if parallel_builds: + dir_name = f"{dir_name}_{uuid.uuid4().hex}" + + # FIXME: Is there a better place to create the build_dir? (hg and bzr + # need this) + if not os.path.exists(build_dir): + logger.debug("Creating directory %s", build_dir) + os.makedirs(build_dir) + actual_build_dir = os.path.join(build_dir, dir_name) + # `None` indicates that we respect the globally-configured deletion + # settings, which is what we actually want when auto-deleting. + delete_arg = None if autodelete else False + return TempDirectory( + path=actual_build_dir, + delete=delete_arg, + kind=tempdir_kinds.REQ_BUILD, + globally_managed=True, + ).path + + def _set_requirement(self) -> None: + """Set requirement after generating metadata.""" + assert self.req is None + assert self.metadata is not None + assert self.source_dir is not None + + # Construct a Requirement object from the generated metadata + if isinstance(parse_version(self.metadata["Version"]), Version): + op = "==" + else: + op = "===" + + self.req = get_requirement( + "".join( + [ + self.metadata["Name"], + op, + self.metadata["Version"], + ] + ) + ) + + def warn_on_mismatching_name(self) -> None: + assert self.req is not None + metadata_name = canonicalize_name(self.metadata["Name"]) + if canonicalize_name(self.req.name) == metadata_name: + # Everything is fine. + return + + # If we're here, there's a mismatch. Log a warning about it. + logger.warning( + "Generating metadata for package %s " + "produced metadata for project name %s. Fix your " + "#egg=%s fragments.", + self.name, + metadata_name, + self.name, + ) + self.req = get_requirement(metadata_name) + + def check_if_exists(self, use_user_site: bool) -> None: + """Find an installed distribution that satisfies or conflicts + with this requirement, and set self.satisfied_by or + self.should_reinstall appropriately. + """ + if self.req is None: + return + existing_dist = get_default_environment().get_distribution(self.req.name) + if not existing_dist: + return + + version_compatible = self.req.specifier.contains( + existing_dist.version, + prereleases=True, + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if existing_dist.in_usersite: + self.should_reinstall = True + elif running_under_virtualenv() and existing_dist.in_site_packages: + raise InstallationError( + f"Will not install to the user site because it will " + f"lack sys.path precedence to {existing_dist.raw_name} " + f"in {existing_dist.location}" + ) + else: + self.should_reinstall = True + else: + if self.editable: + self.should_reinstall = True + # when installing editables, nothing pre-existing should ever + # satisfy + self.satisfied_by = None + else: + self.satisfied_by = existing_dist + + # Things valid for wheels + @property + def is_wheel(self) -> bool: + if not self.link: + return False + return self.link.is_wheel + + @property + def is_wheel_from_cache(self) -> bool: + # When True, it means that this InstallRequirement is a local wheel file in the + # cache of locally built wheels. + return self.cached_wheel_source_link is not None + + # Things valid for sdists + @property + def unpacked_source_directory(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return os.path.join( + self.source_dir, self.link and self.link.subdirectory_fragment or "" + ) + + @property + def setup_py_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_py = os.path.join(self.unpacked_source_directory, "setup.py") + + return setup_py + + @property + def setup_cfg_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_cfg = os.path.join(self.unpacked_source_directory, "setup.cfg") + + return setup_cfg + + @property + def pyproject_toml_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return make_pyproject_path(self.unpacked_source_directory) + + def load_pyproject_toml(self) -> None: + """Load the pyproject.toml file. + + After calling this routine, all of the attributes related to PEP 517 + processing for this requirement have been set. In particular, the + use_pep517 attribute can be used to determine whether we should + follow the PEP 517 or legacy (setup.py) code path. + """ + pyproject_toml_data = load_pyproject_toml( + self.use_pep517, self.pyproject_toml_path, self.setup_py_path, str(self) + ) + + if pyproject_toml_data is None: + assert not self.config_settings + self.use_pep517 = False + return + + self.use_pep517 = True + requires, backend, check, backend_path = pyproject_toml_data + self.requirements_to_check = check + self.pyproject_requires = requires + self.pep517_backend = ConfiguredBuildBackendHookCaller( + self, + self.unpacked_source_directory, + backend, + backend_path=backend_path, + ) + + def isolated_editable_sanity_check(self) -> None: + """Check that an editable requirement if valid for use with PEP 517/518. + + This verifies that an editable that has a pyproject.toml either supports PEP 660 + or as a setup.py or a setup.cfg + """ + if ( + self.editable + and self.use_pep517 + and not self.supports_pyproject_editable + and not os.path.isfile(self.setup_py_path) + and not os.path.isfile(self.setup_cfg_path) + ): + raise InstallationError( + f"Project {self} has a 'pyproject.toml' and its build " + f"backend is missing the 'build_editable' hook. Since it does not " + f"have a 'setup.py' nor a 'setup.cfg', " + f"it cannot be installed in editable mode. " + f"Consider using a build backend that supports PEP 660." + ) + + def prepare_metadata(self) -> None: + """Ensure that project metadata is available. + + Under PEP 517 and PEP 660, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir, f"No source dir for {self}" + details = self.name or f"from {self.link}" + + if self.use_pep517: + assert self.pep517_backend is not None + if ( + self.editable + and self.permit_editable_wheels + and self.supports_pyproject_editable + ): + self.metadata_directory = generate_editable_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata_legacy( + build_env=self.build_env, + setup_py_path=self.setup_py_path, + source_dir=self.unpacked_source_directory, + isolated=self.isolated, + details=details, + ) + + # Act on the newly generated metadata, based on the name and version. + if not self.name: + self._set_requirement() + else: + self.warn_on_mismatching_name() + + self.assert_source_matches_version() + + @property + def metadata(self) -> Any: + if not hasattr(self, "_metadata"): + self._metadata = self.get_dist().metadata + + return self._metadata + + def get_dist(self) -> BaseDistribution: + if self.metadata_directory: + return get_directory_distribution(self.metadata_directory) + elif self.local_file_path and self.is_wheel: + assert self.req is not None + return get_wheel_distribution( + FilesystemWheel(self.local_file_path), + canonicalize_name(self.req.name), + ) + raise AssertionError( + f"InstallRequirement {self} has no metadata directory and no wheel: " + f"can't make a distribution." + ) + + def assert_source_matches_version(self) -> None: + assert self.source_dir, f"No source dir for {self}" + version = self.metadata["version"] + if self.req and self.req.specifier and version not in self.req.specifier: + logger.warning( + "Requested %s, but installing version %s", + self, + version, + ) + else: + logger.debug( + "Source in %s has version %s, which satisfies requirement %s", + display_path(self.source_dir), + version, + self, + ) + + # For both source distributions and editables + def ensure_has_source_dir( + self, + parent_dir: str, + autodelete: bool = False, + parallel_builds: bool = False, + ) -> None: + """Ensure that a source_dir is set. + + This will create a temporary build dir if the name of the requirement + isn't known yet. + + :param parent_dir: The ideal pip parent_dir for the source_dir. + Generally src_dir for editables and build_dir for sdists. + :return: self.source_dir + """ + if self.source_dir is None: + self.source_dir = self.ensure_build_location( + parent_dir, + autodelete=autodelete, + parallel_builds=parallel_builds, + ) + + def needs_unpacked_archive(self, archive_source: Path) -> None: + assert self._archive_source is None + self._archive_source = archive_source + + def ensure_pristine_source_checkout(self) -> None: + """Ensure the source directory has not yet been built in.""" + assert self.source_dir is not None + if self._archive_source is not None: + unpack_file(str(self._archive_source), self.source_dir) + elif is_installable_dir(self.source_dir): + # If a checkout exists, it's unwise to keep going. + # version inconsistencies are logged later, but do not fail + # the installation. + raise PreviousBuildDirError( + f"pip can't proceed with requirements '{self}' due to a " + f"pre-existing build directory ({self.source_dir}). This is likely " + "due to a previous installation that failed . pip is " + "being responsible and not assuming it can delete this. " + "Please delete it and try again." + ) + + # For editable installations + def update_editable(self) -> None: + if not self.link: + logger.debug( + "Cannot update repository at %s; repository location is unknown", + self.source_dir, + ) + return + assert self.editable + assert self.source_dir + if self.link.scheme == "file": + # Static paths don't get updated + return + vcs_backend = vcs.get_backend_for_scheme(self.link.scheme) + # Editable requirements are validated in Requirement constructors. + # So here, if it's neither a path nor a valid VCS URL, it's a bug. + assert vcs_backend, f"Unsupported VCS URL {self.link.url}" + hidden_url = hide_url(self.link.url) + vcs_backend.obtain(self.source_dir, url=hidden_url, verbosity=0) + + # Top-level Actions + def uninstall( + self, auto_confirm: bool = False, verbose: bool = False + ) -> Optional[UninstallPathSet]: + """ + Uninstall the distribution currently satisfying this requirement. + + Prompts before removing or modifying files unless + ``auto_confirm`` is True. + + Refuses to delete or modify files outside of ``sys.prefix`` - + thus uninstallation within a virtual environment can only + modify that virtual environment, even if the virtualenv is + linked to global site-packages. + + """ + assert self.req + dist = get_default_environment().get_distribution(self.req.name) + if not dist: + logger.warning("Skipping %s as it is not installed.", self.name) + return None + logger.info("Found existing installation: %s", dist) + + uninstalled_pathset = UninstallPathSet.from_dist(dist) + uninstalled_pathset.remove(auto_confirm, verbose) + return uninstalled_pathset + + def _get_archive_name(self, path: str, parentdir: str, rootdir: str) -> str: + def _clean_zip_name(name: str, prefix: str) -> str: + assert name.startswith( + prefix + os.path.sep + ), f"name {name!r} doesn't start with prefix {prefix!r}" + name = name[len(prefix) + 1 :] + name = name.replace(os.path.sep, "/") + return name + + assert self.req is not None + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.req.name + "/" + name + + def archive(self, build_dir: Optional[str]) -> None: + """Saves archive to provided build_dir. + + Used for saving downloaded VCS requirements as part of `pip download`. + """ + assert self.source_dir + if build_dir is None: + return + + create_archive = True + archive_name = "{}-{}.zip".format(self.name, self.metadata["version"]) + archive_path = os.path.join(build_dir, archive_name) + + if os.path.exists(archive_path): + response = ask_path_exists( + f"The file {display_path(archive_path)} exists. (i)gnore, (w)ipe, " + "(b)ackup, (a)bort ", + ("i", "w", "b", "a"), + ) + if response == "i": + create_archive = False + elif response == "w": + logger.warning("Deleting %s", display_path(archive_path)) + os.remove(archive_path) + elif response == "b": + dest_file = backup_dir(archive_path) + logger.warning( + "Backing up %s to %s", + display_path(archive_path), + display_path(dest_file), + ) + shutil.move(archive_path, dest_file) + elif response == "a": + sys.exit(-1) + + if not create_archive: + return + + zip_output = zipfile.ZipFile( + archive_path, + "w", + zipfile.ZIP_DEFLATED, + allowZip64=True, + ) + with zip_output: + dir = os.path.normcase(os.path.abspath(self.unpacked_source_directory)) + for dirpath, dirnames, filenames in os.walk(dir): + for dirname in dirnames: + dir_arcname = self._get_archive_name( + dirname, + parentdir=dirpath, + rootdir=dir, + ) + zipdir = zipfile.ZipInfo(dir_arcname + "/") + zipdir.external_attr = 0x1ED << 16 # 0o755 + zip_output.writestr(zipdir, "") + for filename in filenames: + file_arcname = self._get_archive_name( + filename, + parentdir=dirpath, + rootdir=dir, + ) + filename = os.path.join(dirpath, filename) + zip_output.write(filename, file_arcname) + + logger.info("Saved %s", display_path(archive_path)) + + def install( + self, + global_options: Optional[Sequence[str]] = None, + root: Optional[str] = None, + home: Optional[str] = None, + prefix: Optional[str] = None, + warn_script_location: bool = True, + use_user_site: bool = False, + pycompile: bool = True, + ) -> None: + assert self.req is not None + scheme = get_scheme( + self.req.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + if self.editable and not self.is_wheel: + deprecated( + reason=( + f"Legacy editable install of {self} (setup.py develop) " + "is deprecated." + ), + replacement=( + "to add a pyproject.toml or enable --use-pep517, " + "and use setuptools >= 64. " + "If the resulting installation is not behaving as expected, " + "try using --config-settings editable_mode=compat. " + "Please consult the setuptools documentation for more information" + ), + gone_in="25.0", + issue=11457, + ) + if self.config_settings: + logger.warning( + "--config-settings ignored for legacy editable install of %s. " + "Consider upgrading to a version of setuptools " + "that supports PEP 660 (>= 64).", + self, + ) + install_editable_legacy( + global_options=global_options if global_options is not None else [], + prefix=prefix, + home=home, + use_user_site=use_user_site, + name=self.req.name, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + ) + self.install_succeeded = True + return + + assert self.is_wheel + assert self.local_file_path + + install_wheel( + self.req.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=self.download_info if self.is_direct else None, + requested=self.user_supplied, + ) + self.install_succeeded = True + + +def check_invalid_constraint_type(req: InstallRequirement) -> str: + # Check for unsupported forms + problem = "" + if not req.name: + problem = "Unnamed requirements are not allowed as constraints" + elif req.editable: + problem = "Editable requirements are not allowed as constraints" + elif req.extras: + problem = "Constraints cannot have extras" + + if problem: + deprecated( + reason=( + "Constraints are only allowed to take the form of a package " + "name and a version specifier. Other forms were originally " + "permitted as an accident of the implementation, but were " + "undocumented. The new implementation of the resolver no " + "longer supports these forms." + ), + replacement="replacing the constraint with a requirement", + # No plan yet for when the new resolver becomes default + gone_in=None, + issue=8210, + ) + + return problem + + +def _has_option(options: Values, reqs: List[InstallRequirement], option: str) -> bool: + if getattr(options, option, None): + return True + for req in reqs: + if getattr(req, option, None): + return True + return False + + +def check_legacy_setup_py_options( + options: Values, + reqs: List[InstallRequirement], +) -> None: + has_build_options = _has_option(options, reqs, "build_options") + has_global_options = _has_option(options, reqs, "global_options") + if has_build_options or has_global_options: + deprecated( + reason="--build-option and --global-option are deprecated.", + issue=11859, + replacement="to use --config-settings", + gone_in="25.0", + ) + logger.warning( + "Implying --no-binary=:all: due to the presence of " + "--build-option / --global-option. " + ) + options.format_control.disallow_binaries() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_set.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 00000000..ec7a6e07 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,82 @@ +import logging +from collections import OrderedDict +from typing import Dict, List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +class RequirementSet: + def __init__(self, check_supported_wheels: bool = True) -> None: + """Create a RequirementSet.""" + + self.requirements: Dict[str, InstallRequirement] = OrderedDict() + self.check_supported_wheels = check_supported_wheels + + self.unnamed_requirements: List[InstallRequirement] = [] + + def __str__(self) -> str: + requirements = sorted( + (req for req in self.requirements.values() if not req.comes_from), + key=lambda req: canonicalize_name(req.name or ""), + ) + return " ".join(str(req.req) for req in requirements) + + def __repr__(self) -> str: + requirements = sorted( + self.requirements.values(), + key=lambda req: canonicalize_name(req.name or ""), + ) + + format_string = "<{classname} object; {count} requirement(s): {reqs}>" + return format_string.format( + classname=self.__class__.__name__, + count=len(requirements), + reqs=", ".join(str(req.req) for req in requirements), + ) + + def add_unnamed_requirement(self, install_req: InstallRequirement) -> None: + assert not install_req.name + self.unnamed_requirements.append(install_req) + + def add_named_requirement(self, install_req: InstallRequirement) -> None: + assert install_req.name + + project_name = canonicalize_name(install_req.name) + self.requirements[project_name] = install_req + + def has_requirement(self, name: str) -> bool: + project_name = canonicalize_name(name) + + return ( + project_name in self.requirements + and not self.requirements[project_name].constraint + ) + + def get_requirement(self, name: str) -> InstallRequirement: + project_name = canonicalize_name(name) + + if project_name in self.requirements: + return self.requirements[project_name] + + raise KeyError(f"No project with the name {name!r}") + + @property + def all_requirements(self) -> List[InstallRequirement]: + return self.unnamed_requirements + list(self.requirements.values()) + + @property + def requirements_to_install(self) -> List[InstallRequirement]: + """Return the list of requirements that need to be installed. + + TODO remove this property together with the legacy resolver, since the new + resolver only returns requirements that need to be installed. + """ + return [ + install_req + for install_req in self.all_requirements + if not install_req.constraint and not install_req.satisfied_by + ] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 00000000..26df2084 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,633 @@ +import functools +import os +import sys +import sysconfig +from importlib.util import cache_from_source +from typing import Any, Callable, Dict, Generator, Iterable, List, Optional, Set, Tuple + +from pip._internal.exceptions import LegacyDistutilsInstall, UninstallMissingRecord +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.logging import getLogger, indent_log +from pip._internal.utils.misc import ask, normalize_path, renames, rmtree +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory +from pip._internal.utils.virtualenv import running_under_virtualenv + +logger = getLogger(__name__) + + +def _script_names( + bin_dir: str, script_name: str, is_gui: bool +) -> Generator[str, None, None]: + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + exe_name = os.path.join(bin_dir, script_name) + yield exe_name + if not WINDOWS: + return + yield f"{exe_name}.exe" + yield f"{exe_name}.exe.manifest" + if is_gui: + yield f"{exe_name}-script.pyw" + else: + yield f"{exe_name}-script.py" + + +def _unique( + fn: Callable[..., Generator[Any, None, None]] +) -> Callable[..., Generator[Any, None, None]]: + @functools.wraps(fn) + def unique(*args: Any, **kw: Any) -> Generator[Any, None, None]: + seen: Set[Any] = set() + for item in fn(*args, **kw): + if item not in seen: + seen.add(item) + yield item + + return unique + + +@_unique +def uninstallation_paths(dist: BaseDistribution) -> Generator[str, None, None]: + """ + Yield all the uninstallation paths for dist based on RECORD-without-.py[co] + + Yield paths to all the files in RECORD. For each .py file in RECORD, add + the .pyc and .pyo in the same directory. + + UninstallPathSet.add() takes care of the __pycache__ .py[co]. + + If RECORD is not found, raises an error, + with possible information from the INSTALLER file. + + https://packaging.python.org/specifications/recording-installed-packages/ + """ + location = dist.location + assert location is not None, "not installed" + + entries = dist.iter_declared_entries() + if entries is None: + raise UninstallMissingRecord(distribution=dist) + + for entry in entries: + path = os.path.join(location, entry) + yield path + if path.endswith(".py"): + dn, fn = os.path.split(path) + base = fn[:-3] + path = os.path.join(dn, base + ".pyc") + yield path + path = os.path.join(dn, base + ".pyo") + yield path + + +def compact(paths: Iterable[str]) -> Set[str]: + """Compact a path set to contain the minimal number of paths + necessary to contain all paths in the set. If /a/path/ and + /a/path/to/a/file.txt are both in the set, leave only the + shorter path.""" + + sep = os.path.sep + short_paths: Set[str] = set() + for path in sorted(paths, key=len): + should_skip = any( + path.startswith(shortpath.rstrip("*")) + and path[len(shortpath.rstrip("*").rstrip(sep))] == sep + for shortpath in short_paths + ) + if not should_skip: + short_paths.add(path) + return short_paths + + +def compress_for_rename(paths: Iterable[str]) -> Set[str]: + """Returns a set containing the paths that need to be renamed. + + This set may include directories when the original sequence of paths + included every file on disk. + """ + case_map = {os.path.normcase(p): p for p in paths} + remaining = set(case_map) + unchecked = sorted({os.path.split(p)[0] for p in case_map.values()}, key=len) + wildcards: Set[str] = set() + + def norm_join(*a: str) -> str: + return os.path.normcase(os.path.join(*a)) + + for root in unchecked: + if any(os.path.normcase(root).startswith(w) for w in wildcards): + # This directory has already been handled. + continue + + all_files: Set[str] = set() + all_subdirs: Set[str] = set() + for dirname, subdirs, files in os.walk(root): + all_subdirs.update(norm_join(root, dirname, d) for d in subdirs) + all_files.update(norm_join(root, dirname, f) for f in files) + # If all the files we found are in our remaining set of files to + # remove, then remove them from the latter set and add a wildcard + # for the directory. + if not (all_files - remaining): + remaining.difference_update(all_files) + wildcards.add(root + os.sep) + + return set(map(case_map.__getitem__, remaining)) | wildcards + + +def compress_for_output_listing(paths: Iterable[str]) -> Tuple[Set[str], Set[str]]: + """Returns a tuple of 2 sets of which paths to display to user + + The first set contains paths that would be deleted. Files of a package + are not added and the top-level directory of the package has a '*' added + at the end - to signify that all it's contents are removed. + + The second set contains files that would have been skipped in the above + folders. + """ + + will_remove = set(paths) + will_skip = set() + + # Determine folders and files + folders = set() + files = set() + for path in will_remove: + if path.endswith(".pyc"): + continue + if path.endswith("__init__.py") or ".dist-info" in path: + folders.add(os.path.dirname(path)) + files.add(path) + + _normcased_files = set(map(os.path.normcase, files)) + + folders = compact(folders) + + # This walks the tree using os.walk to not miss extra folders + # that might get added. + for folder in folders: + for dirpath, _, dirfiles in os.walk(folder): + for fname in dirfiles: + if fname.endswith(".pyc"): + continue + + file_ = os.path.join(dirpath, fname) + if ( + os.path.isfile(file_) + and os.path.normcase(file_) not in _normcased_files + ): + # We are skipping this file. Add it to the set. + will_skip.add(file_) + + will_remove = files | {os.path.join(folder, "*") for folder in folders} + + return will_remove, will_skip + + +class StashedUninstallPathSet: + """A set of file rename operations to stash files while + tentatively uninstalling them.""" + + def __init__(self) -> None: + # Mapping from source file root to [Adjacent]TempDirectory + # for files under that directory. + self._save_dirs: Dict[str, TempDirectory] = {} + # (old path, new path) tuples for each move that may need + # to be undone. + self._moves: List[Tuple[str, str]] = [] + + def _get_directory_stash(self, path: str) -> str: + """Stashes a directory. + + Directories are stashed adjacent to their original location if + possible, or else moved/copied into the user's temp dir.""" + + try: + save_dir: TempDirectory = AdjacentTempDirectory(path) + except OSError: + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[os.path.normcase(path)] = save_dir + + return save_dir.path + + def _get_file_stash(self, path: str) -> str: + """Stashes a file. + + If no root has been provided, one will be created for the directory + in the user's temp directory.""" + path = os.path.normcase(path) + head, old_head = os.path.dirname(path), None + save_dir = None + + while head != old_head: + try: + save_dir = self._save_dirs[head] + break + except KeyError: + pass + head, old_head = os.path.dirname(head), head + else: + # Did not find any suitable root + head = os.path.dirname(path) + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[head] = save_dir + + relpath = os.path.relpath(path, head) + if relpath and relpath != os.path.curdir: + return os.path.join(save_dir.path, relpath) + return save_dir.path + + def stash(self, path: str) -> str: + """Stashes the directory or file and returns its new location. + Handle symlinks as files to avoid modifying the symlink targets. + """ + path_is_dir = os.path.isdir(path) and not os.path.islink(path) + if path_is_dir: + new_path = self._get_directory_stash(path) + else: + new_path = self._get_file_stash(path) + + self._moves.append((path, new_path)) + if path_is_dir and os.path.isdir(new_path): + # If we're moving a directory, we need to + # remove the destination first or else it will be + # moved to inside the existing directory. + # We just created new_path ourselves, so it will + # be removable. + os.rmdir(new_path) + renames(path, new_path) + return new_path + + def commit(self) -> None: + """Commits the uninstall by removing stashed files.""" + for save_dir in self._save_dirs.values(): + save_dir.cleanup() + self._moves = [] + self._save_dirs = {} + + def rollback(self) -> None: + """Undoes the uninstall by moving stashed files back.""" + for p in self._moves: + logger.info("Moving to %s\n from %s", *p) + + for new_path, path in self._moves: + try: + logger.debug("Replacing %s from %s", new_path, path) + if os.path.isfile(new_path) or os.path.islink(new_path): + os.unlink(new_path) + elif os.path.isdir(new_path): + rmtree(new_path) + renames(path, new_path) + except OSError as ex: + logger.error("Failed to restore %s", new_path) + logger.debug("Exception: %s", ex) + + self.commit() + + @property + def can_rollback(self) -> bool: + return bool(self._moves) + + +class UninstallPathSet: + """A set of file paths to be removed in the uninstallation of a + requirement.""" + + def __init__(self, dist: BaseDistribution) -> None: + self._paths: Set[str] = set() + self._refuse: Set[str] = set() + self._pth: Dict[str, UninstallPthEntries] = {} + self._dist = dist + self._moved_paths = StashedUninstallPathSet() + # Create local cache of normalize_path results. Creating an UninstallPathSet + # can result in hundreds/thousands of redundant calls to normalize_path with + # the same args, which hurts performance. + self._normalize_path_cached = functools.lru_cache(normalize_path) + + def _permitted(self, path: str) -> bool: + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + # aka is_local, but caching normalized sys.prefix + if not running_under_virtualenv(): + return True + return path.startswith(self._normalize_path_cached(sys.prefix)) + + def add(self, path: str) -> None: + head, tail = os.path.split(path) + + # we normalize the head to resolve parent directory symlinks, but not + # the tail, since we only want to uninstall symlinks, not their targets + path = os.path.join(self._normalize_path_cached(head), os.path.normcase(tail)) + + if not os.path.exists(path): + return + if self._permitted(path): + self._paths.add(path) + else: + self._refuse.add(path) + + # __pycache__ files can show up after 'installed-files.txt' is created, + # due to imports + if os.path.splitext(path)[1] == ".py": + self.add(cache_from_source(path)) + + def add_pth(self, pth_file: str, entry: str) -> None: + pth_file = self._normalize_path_cached(pth_file) + if self._permitted(pth_file): + if pth_file not in self._pth: + self._pth[pth_file] = UninstallPthEntries(pth_file) + self._pth[pth_file].add(entry) + else: + self._refuse.add(pth_file) + + def remove(self, auto_confirm: bool = False, verbose: bool = False) -> None: + """Remove paths in ``self._paths`` with confirmation (unless + ``auto_confirm`` is True).""" + + if not self._paths: + logger.info( + "Can't uninstall '%s'. No files were found to uninstall.", + self._dist.raw_name, + ) + return + + dist_name_version = f"{self._dist.raw_name}-{self._dist.raw_version}" + logger.info("Uninstalling %s:", dist_name_version) + + with indent_log(): + if auto_confirm or self._allowed_to_proceed(verbose): + moved = self._moved_paths + + for_rename = compress_for_rename(self._paths) + + for path in sorted(compact(for_rename)): + moved.stash(path) + logger.verbose("Removing file or directory %s", path) + + for pth in self._pth.values(): + pth.remove() + + logger.info("Successfully uninstalled %s", dist_name_version) + + def _allowed_to_proceed(self, verbose: bool) -> bool: + """Display which files would be deleted and prompt for confirmation""" + + def _display(msg: str, paths: Iterable[str]) -> None: + if not paths: + return + + logger.info(msg) + with indent_log(): + for path in sorted(compact(paths)): + logger.info(path) + + if not verbose: + will_remove, will_skip = compress_for_output_listing(self._paths) + else: + # In verbose mode, display all the files that are going to be + # deleted. + will_remove = set(self._paths) + will_skip = set() + + _display("Would remove:", will_remove) + _display("Would not remove (might be manually added):", will_skip) + _display("Would not remove (outside of prefix):", self._refuse) + if verbose: + _display("Will actually move:", compress_for_rename(self._paths)) + + return ask("Proceed (Y/n)? ", ("y", "n", "")) != "n" + + def rollback(self) -> None: + """Rollback the changes previously made by remove().""" + if not self._moved_paths.can_rollback: + logger.error( + "Can't roll back %s; was not uninstalled", + self._dist.raw_name, + ) + return + logger.info("Rolling back uninstall of %s", self._dist.raw_name) + self._moved_paths.rollback() + for pth in self._pth.values(): + pth.rollback() + + def commit(self) -> None: + """Remove temporary save dir: rollback will no longer be possible.""" + self._moved_paths.commit() + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "UninstallPathSet": + dist_location = dist.location + info_location = dist.info_location + if dist_location is None: + logger.info( + "Not uninstalling %s since it is not installed", + dist.canonical_name, + ) + return cls(dist) + + normalized_dist_location = normalize_path(dist_location) + if not dist.local: + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.canonical_name, + normalized_dist_location, + sys.prefix, + ) + return cls(dist) + + if normalized_dist_location in { + p + for p in {sysconfig.get_path("stdlib"), sysconfig.get_path("platstdlib")} + if p + }: + logger.info( + "Not uninstalling %s at %s, as it is in the standard library.", + dist.canonical_name, + normalized_dist_location, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path_from_location(dist.raw_name) + + # Distribution is installed with metadata in a "flat" .egg-info + # directory. This means it is not a modern .dist-info installation, an + # egg, or legacy editable. + setuptools_flat_installation = ( + dist.installed_with_setuptools_egg_info + and info_location is not None + and os.path.exists(info_location) + # If dist is editable and the location points to a ``.egg-info``, + # we are in fact in the legacy editable case. + and not info_location.endswith(f"{dist.setuptools_filename}.egg-info") + ) + + # Uninstall cases order do matter as in the case of 2 installs of the + # same package, pip needs to uninstall the currently detected version + if setuptools_flat_installation: + if info_location is not None: + paths_to_remove.add(info_location) + installed_files = dist.iter_declared_entries() + if installed_files is not None: + for installed_file in installed_files: + paths_to_remove.add(os.path.join(dist_location, installed_file)) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.is_file("top_level.txt"): + try: + namespace_packages = dist.read_text("namespace_packages.txt") + except FileNotFoundError: + namespaces = [] + else: + namespaces = namespace_packages.splitlines(keepends=False) + for top_level_pkg in [ + p + for p in dist.read_text("top_level.txt").splitlines() + if p and p not in namespaces + ]: + path = os.path.join(dist_location, top_level_pkg) + paths_to_remove.add(path) + paths_to_remove.add(f"{path}.py") + paths_to_remove.add(f"{path}.pyc") + paths_to_remove.add(f"{path}.pyo") + + elif dist.installed_by_distutils: + raise LegacyDistutilsInstall(distribution=dist) + + elif dist.installed_as_egg: + # package installed by easy_install + # We cannot match on dist.egg_name because it can slightly vary + # i.e. setuptools-0.6c11-py2.6.egg vs setuptools-0.6rc11-py2.6.egg + paths_to_remove.add(dist_location) + easy_install_egg = os.path.split(dist_location)[1] + easy_install_pth = os.path.join( + os.path.dirname(dist_location), + "easy-install.pth", + ) + paths_to_remove.add_pth(easy_install_pth, "./" + easy_install_egg) + + elif dist.installed_with_dist_info: + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # PEP 660 modern editable is handled in the ``.dist-info`` case + # above, so this only covers the setuptools-style editable. + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + normalized_link_pointer = paths_to_remove._normalize_path_cached( + link_pointer + ) + assert os.path.samefile( + normalized_link_pointer, normalized_dist_location + ), ( + f"Egg-link {develop_egg_link} (to {link_pointer}) does not match " + f"installed location of {dist.raw_name} (at {dist_location})" + ) + paths_to_remove.add(develop_egg_link) + easy_install_pth = os.path.join( + os.path.dirname(develop_egg_link), "easy-install.pth" + ) + paths_to_remove.add_pth(easy_install_pth, dist_location) + + else: + logger.debug( + "Not sure how to uninstall: %s - Check: %s", + dist, + dist_location, + ) + + if dist.in_usersite: + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + + # find distutils scripts= scripts + try: + for script in dist.iter_distutils_script_names(): + paths_to_remove.add(os.path.join(bin_dir, script)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, f"{script}.bat")) + except (FileNotFoundError, NotADirectoryError): + pass + + # find console_scripts and gui_scripts + def iter_scripts_to_remove( + dist: BaseDistribution, + bin_dir: str, + ) -> Generator[str, None, None]: + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + yield from _script_names(bin_dir, entry_point.name, False) + elif entry_point.group == "gui_scripts": + yield from _script_names(bin_dir, entry_point.name, True) + + for s in iter_scripts_to_remove(dist, bin_dir): + paths_to_remove.add(s) + + return paths_to_remove + + +class UninstallPthEntries: + def __init__(self, pth_file: str) -> None: + self.file = pth_file + self.entries: Set[str] = set() + self._saved_lines: Optional[List[bytes]] = None + + def add(self, entry: str) -> None: + entry = os.path.normcase(entry) + # On Windows, os.path.normcase converts the entry to use + # backslashes. This is correct for entries that describe absolute + # paths outside of site-packages, but all the others use forward + # slashes. + # os.path.splitdrive is used instead of os.path.isabs because isabs + # treats non-absolute paths with drive letter markings like c:foo\bar + # as absolute paths. It also does not recognize UNC paths if they don't + # have more than "\\sever\share". Valid examples: "\\server\share\" or + # "\\server\share\folder". + if WINDOWS and not os.path.splitdrive(entry)[0]: + entry = entry.replace("\\", "/") + self.entries.add(entry) + + def remove(self) -> None: + logger.verbose("Removing pth entries from %s:", self.file) + + # If the file doesn't exist, log a warning and return + if not os.path.isfile(self.file): + logger.warning("Cannot remove entries from nonexistent file %s", self.file) + return + with open(self.file, "rb") as fh: + # windows uses '\r\n' with py3k, but uses '\n' with py2.x + lines = fh.readlines() + self._saved_lines = lines + if any(b"\r\n" in line for line in lines): + endline = "\r\n" + else: + endline = "\n" + # handle missing trailing newline + if lines and not lines[-1].endswith(endline.encode("utf-8")): + lines[-1] = lines[-1] + endline.encode("utf-8") + for entry in self.entries: + try: + logger.verbose("Removing entry: %s", entry) + lines.remove((entry + endline).encode("utf-8")) + except ValueError: + pass + with open(self.file, "wb") as fh: + fh.writelines(lines) + + def rollback(self) -> bool: + if self._saved_lines is None: + logger.error("Cannot roll back changes to %s, none were made", self.file) + return False + logger.debug("Rolling %s back to previous state", self.file) + with open(self.file, "wb") as fh: + fh.writelines(self._saved_lines) + return True diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..124c9daa61e4119e33905f32ddbc6472d92cece1 GIT binary patch literal 245 zcmZ8bL23d)5Zs9dLco9MK^v26@air2gQa)U?2OLN4Bf3^{~`DW-;y8X>I=l1Cugq~ zRCjez1^qXfyjKO&DYnDD4C5KMadA#nU(L+-x#E{{-G+MtVb8$1Z{ff$4>pa`izi>0a91X@!hMokP94-k90IuCfVE_OC literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7944803150ff03fb859ca9e98660404faa879a07 GIT binary patch literal 1233 zcma)5O>Y!O5bd6?on36BU}9nn(b;DyOSxb<4|#5dR&IwjC(IH~?uKsd+rrBmVS_W^;DZhBGM?;N z;Or037P07XbLMuT zG%nwV!7!7ML!l8}_#k`$I-x|z!<#viO?37du#l%Lv{H`L93qq=wbTZ0$3s$1*hpRQ zFrKaMIH`xIKWcP*Gj}Uia354D_CT7ZEK40p7$~!p^dZ@e)Uc{bsUeLX_W^`5o&-IV zMPeVb!I|z%@ni|jKGPhhdOV-azw!gVeZbA)cByaYm8fqC>CaM@66J9eh#g54lc&%q z%GGYS-~Ar+%N&A7C2}cp=!-1r2lr(82zE6D>ap&|{o-mOvOs}E{(+K75Gw^*1-%$g zYSMfQ3XribWdOxqAhK>yjdZ^(u5VoXE>M|!06;4LT1UVK?wXD;p77D zlc&*iEcpfbB(kC`?Y2CFlUeG4M%Hx~#Y8tMWeW1i>PH+;-c)BiOKHDEv)ySLKZ**} zE{aSmit;iY3i9WoXfTY$bVbq=lGKLA>6WFC4T=}Ze1+y4EwwnC%e+*5X`+tK6L~Q^7 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/base.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/base.py new file mode 100644 index 00000000..42dade18 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/base.py @@ -0,0 +1,20 @@ +from typing import Callable, List, Optional + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet + +InstallRequirementProvider = Callable[ + [str, Optional[InstallRequirement]], InstallRequirement +] + + +class BaseResolver: + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + raise NotImplementedError() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6699b4d481e73476a1be9a8b7a2fc4415a9bfeb3 GIT binary patch literal 252 zcmZ8bF-`+P47?>EA*B2x6p012C~Z2#4^F;ibi2vk?#Xt7?j;nwfVc1iT3&$CQL)!D z(%56qSn}s`dDB#^R@~41doKTRzO0+KW@>KT(?=s0bvnqm-51YGt(r8$Z><`>S zX^bPaF&iXvB7v54v{*7F^z0{Us~N3rH{aVU+XYsRe&dH*xKj0`z A3;+NC literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1cbb080e87120391039ce162c650156d3fff4d3b GIT binary patch literal 22627 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 Q?y@v2FaCz3Hyiu^1DA2{z5oCK literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 00000000..1dd0d704 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py @@ -0,0 +1,597 @@ +"""Dependency Resolution + +The dependency resolution in pip is performed as follows: + +for top-level requirements: + a. only one spec allowed per project, regardless of conflicts or not. + otherwise a "double requirement" exception is raised + b. they override sub-dependency requirements. +for sub-dependencies + a. "first found, wins" (where the order is breadth first) +""" + +import logging +import sys +from collections import defaultdict +from itertools import chain +from typing import DefaultDict, Iterable, List, Optional, Set, Tuple + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.requirements import Requirement + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + HashError, + HashErrors, + InstallationError, + NoneMetadataError, + UnsupportedPythonVersion, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.utils import compatibility_tags +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import normalize_version_info +from pip._internal.utils.packaging import check_requires_python + +logger = logging.getLogger(__name__) + +DiscoveredDependencies = DefaultDict[Optional[str], List[InstallRequirement]] + + +def _check_dist_requires_python( + dist: BaseDistribution, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> None: + """ + Check whether the given Python version is compatible with a distribution's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + + :raises UnsupportedPythonVersion: When the given Python version isn't + compatible. + """ + # This idiosyncratically converts the SpecifierSet to str and let + # check_requires_python then parse it again into SpecifierSet. But this + # is the legacy resolver so I'm just not going to bother refactoring. + try: + requires_python = str(dist.requires_python) + except FileNotFoundError as e: + raise NoneMetadataError(dist, str(e)) + try: + is_compatible = check_requires_python( + requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier as exc: + logger.warning( + "Package %r has an invalid Requires-Python: %s", dist.raw_name, exc + ) + return + + if is_compatible: + return + + version = ".".join(map(str, version_info)) + if ignore_requires_python: + logger.debug( + "Ignoring failed Requires-Python check for package %r: %s not in %r", + dist.raw_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + f"Package {dist.raw_name!r} requires a different Python: " + f"{version} not in {requires_python!r}" + ) + + +class Resolver(BaseResolver): + """Resolves which packages need to be installed/uninstalled to perform \ + the requested operation without breaking the requirements of any package. + """ + + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + self._py_version_info = py_version_info + + self.preparer = preparer + self.finder = finder + self.wheel_cache = wheel_cache + + self.upgrade_strategy = upgrade_strategy + self.force_reinstall = force_reinstall + self.ignore_dependencies = ignore_dependencies + self.ignore_installed = ignore_installed + self.ignore_requires_python = ignore_requires_python + self.use_user_site = use_user_site + self._make_install_req = make_install_req + + self._discovered_dependencies: DiscoveredDependencies = defaultdict(list) + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + """Resolve what operations need to be done + + As a side-effect of this method, the packages (and their dependencies) + are downloaded, unpacked and prepared for installation. This + preparation is done by ``pip.operations.prepare``. + + Once PyPI has static dependency metadata available, it would be + possible to move the preparation to become a step separated from + dependency resolution. + """ + requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for req in root_reqs: + if req.constraint: + check_invalid_constraint_type(req) + self._add_requirement_to_set(requirement_set, req) + + # Actually prepare the files, and collect any exceptions. Most hash + # exceptions cannot be checked ahead of time, because + # _populate_link() needs to be called before we can make decisions + # based on link type. + discovered_reqs: List[InstallRequirement] = [] + hash_errors = HashErrors() + for req in chain(requirement_set.all_requirements, discovered_reqs): + try: + discovered_reqs.extend(self._resolve_one(requirement_set, req)) + except HashError as exc: + exc.req = req + hash_errors.append(exc) + + if hash_errors: + raise hash_errors + + return requirement_set + + def _add_requirement_to_set( + self, + requirement_set: RequirementSet, + install_req: InstallRequirement, + parent_req_name: Optional[str] = None, + extras_requested: Optional[Iterable[str]] = None, + ) -> Tuple[List[InstallRequirement], Optional[InstallRequirement]]: + """Add install_req as a requirement to install. + + :param parent_req_name: The name of the requirement that needed this + added. The name is used because when multiple unnamed requirements + resolve to the same name, we could otherwise end up with dependency + links that point outside the Requirements set. parent_req must + already be added. Note that None implies that this is a user + supplied requirement, vs an inferred one. + :param extras_requested: an iterable of extras used to evaluate the + environment markers. + :return: Additional requirements to scan. That is either [] if + the requirement is not applicable, or [install_req] if the + requirement is applicable and has just been added. + """ + # If the markers do not match, ignore this requirement. + if not install_req.match_markers(extras_requested): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + install_req.name, + install_req.markers, + ) + return [], None + + # If the wheel is not supported, raise an error. + # Should check this after filtering out based on environment markers to + # allow specifying different wheels based on the environment/OS, in a + # single requirements file. + if install_req.link and install_req.link.is_wheel: + wheel = Wheel(install_req.link.filename) + tags = compatibility_tags.get_supported() + if requirement_set.check_supported_wheels and not wheel.supported(tags): + raise InstallationError( + f"{wheel.filename} is not a supported wheel on this platform." + ) + + # This next bit is really a sanity check. + assert ( + not install_req.user_supplied or parent_req_name is None + ), "a user supplied req shouldn't have a parent" + + # Unnamed requirements are scanned again and the requirement won't be + # added as a dependency until after scanning. + if not install_req.name: + requirement_set.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req: Optional[InstallRequirement] = ( + requirement_set.get_requirement(install_req.name) + ) + except KeyError: + existing_req = None + + has_conflicting_requirement = ( + parent_req_name is None + and existing_req + and not existing_req.constraint + and existing_req.extras == install_req.extras + and existing_req.req + and install_req.req + and existing_req.req.specifier != install_req.req.specifier + ) + if has_conflicting_requirement: + raise InstallationError( + f"Double requirement given: {install_req} " + f"(already in {existing_req}, name={install_req.name!r})" + ) + + # When no existing requirement exists, add the requirement as a + # dependency and it will be scanned again after. + if not existing_req: + requirement_set.add_named_requirement(install_req) + # We'd want to rescan this requirement later + return [install_req], install_req + + # Assume there's no need to scan, and that we've already + # encountered this for scanning. + if install_req.constraint or not existing_req.constraint: + return [], existing_req + + does_not_satisfy_constraint = install_req.link and not ( + existing_req.link and install_req.link.path == existing_req.link.path + ) + if does_not_satisfy_constraint: + raise InstallationError( + f"Could not satisfy constraints for '{install_req.name}': " + "installation from path or url cannot be " + "constrained to a version" + ) + # If we're now installing a constraint, mark the existing + # object for real installation. + existing_req.constraint = False + # If we're now installing a user supplied requirement, + # mark the existing object as such. + if install_req.user_supplied: + existing_req.user_supplied = True + existing_req.extras = tuple( + sorted(set(existing_req.extras) | set(install_req.extras)) + ) + logger.debug( + "Setting %s extras to: %s", + existing_req, + existing_req.extras, + ) + # Return the existing requirement for addition to the parent and + # scanning again. + return [existing_req], existing_req + + def _is_upgrade_allowed(self, req: InstallRequirement) -> bool: + if self.upgrade_strategy == "to-satisfy-only": + return False + elif self.upgrade_strategy == "eager": + return True + else: + assert self.upgrade_strategy == "only-if-needed" + return req.user_supplied or req.constraint + + def _set_req_to_reinstall(self, req: InstallRequirement) -> None: + """ + Set a requirement to be installed. + """ + # Don't uninstall the conflict if doing a user install and the + # conflict is not a user install. + assert req.satisfied_by is not None + if not self.use_user_site or req.satisfied_by.in_usersite: + req.should_reinstall = True + req.satisfied_by = None + + def _check_skip_installed( + self, req_to_install: InstallRequirement + ) -> Optional[str]: + """Check if req_to_install should be skipped. + + This will check if the req is installed, and whether we should upgrade + or reinstall it, taking into account all the relevant user options. + + After calling this req_to_install will only have satisfied_by set to + None if the req_to_install is to be upgraded/reinstalled etc. Any + other value will be a dist recording the current thing installed that + satisfies the requirement. + + Note that for vcs urls and the like we can't assess skipping in this + routine - we simply identify that we need to pull the thing down, + then later on it is pulled down and introspected to assess upgrade/ + reinstalls etc. + + :return: A text reason for why it was skipped, or None. + """ + if self.ignore_installed: + return None + + req_to_install.check_if_exists(self.use_user_site) + if not req_to_install.satisfied_by: + return None + + if self.force_reinstall: + self._set_req_to_reinstall(req_to_install) + return None + + if not self._is_upgrade_allowed(req_to_install): + if self.upgrade_strategy == "only-if-needed": + return "already satisfied, skipping upgrade" + return "already satisfied" + + # Check for the possibility of an upgrade. For link-based + # requirements we have to pull the tree down and inspect to assess + # the version #, so it's handled way down. + if not req_to_install.link: + try: + self.finder.find_requirement(req_to_install, upgrade=True) + except BestVersionAlreadyInstalled: + # Then the best version is installed. + return "already up-to-date" + except DistributionNotFound: + # No distribution found, so we squash the error. It will + # be raised later when we re-try later to do the install. + # Why don't we just raise here? + pass + + self._set_req_to_reinstall(req_to_install) + return None + + def _find_requirement_link(self, req: InstallRequirement) -> Optional[Link]: + upgrade = self._is_upgrade_allowed(req) + best_candidate = self.finder.find_requirement(req, upgrade) + if not best_candidate: + return None + + # Log a warning per PEP 592 if necessary before returning. + link = best_candidate.link + if link.is_yanked: + reason = link.yanked_reason or "" + msg = ( + # Mark this as a unicode string to prevent + # "UnicodeEncodeError: 'ascii' codec can't encode character" + # in Python 2 when the reason contains non-ascii characters. + "The candidate selected for download or install is a " + f"yanked version: {best_candidate}\n" + f"Reason for being yanked: {reason}" + ) + logger.warning(msg) + + return link + + def _populate_link(self, req: InstallRequirement) -> None: + """Ensure that if a link can be found for this, that it is found. + + Note that req.link may still be None - if the requirement is already + installed and not needed to be upgraded based on the return value of + _is_upgrade_allowed(). + + If preparer.require_hashes is True, don't use the wheel cache, because + cached wheels, always built locally, have different hashes than the + files downloaded from the index server and thus throw false hash + mismatches. Furthermore, cached wheels at present have undeterministic + contents due to file modification times. + """ + if req.link is None: + req.link = self._find_requirement_link(req) + + if self.wheel_cache is None or self.preparer.require_hashes: + return + + assert req.link is not None, "_find_requirement_link unexpectedly returned None" + cache_entry = self.wheel_cache.get_cache_entry( + link=req.link, + package_name=req.name, + supported_tags=get_supported(), + ) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + if req.link is req.original_link and cache_entry.persistent: + req.cached_wheel_source_link = req.link + if cache_entry.origin is not None: + req.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + req.download_info = direct_url_from_link( + req.link, link_is_in_wheel_cache=cache_entry.persistent + ) + req.link = cache_entry.link + + def _get_dist_for(self, req: InstallRequirement) -> BaseDistribution: + """Takes a InstallRequirement and returns a single AbstractDist \ + representing a prepared variant of the same. + """ + if req.editable: + return self.preparer.prepare_editable_requirement(req) + + # satisfied_by is only evaluated by calling _check_skip_installed, + # so it must be None here. + assert req.satisfied_by is None + skip_reason = self._check_skip_installed(req) + + if req.satisfied_by: + return self.preparer.prepare_installed_requirement(req, skip_reason) + + # We eagerly populate the link, since that's our "legacy" behavior. + self._populate_link(req) + dist = self.preparer.prepare_linked_requirement(req) + + # NOTE + # The following portion is for determining if a certain package is + # going to be re-installed/upgraded or not and reporting to the user. + # This should probably get cleaned up in a future refactor. + + # req.req is only avail after unpack for URL + # pkgs repeat check_if_exists to uninstall-on-upgrade + # (#14) + if not self.ignore_installed: + req.check_if_exists(self.use_user_site) + + if req.satisfied_by: + should_modify = ( + self.upgrade_strategy != "to-satisfy-only" + or self.force_reinstall + or self.ignore_installed + or req.link.scheme == "file" + ) + if should_modify: + self._set_req_to_reinstall(req) + else: + logger.info( + "Requirement already satisfied (use --upgrade to upgrade): %s", + req, + ) + return dist + + def _resolve_one( + self, + requirement_set: RequirementSet, + req_to_install: InstallRequirement, + ) -> List[InstallRequirement]: + """Prepare a single requirements file. + + :return: A list of additional InstallRequirements to also install. + """ + # Tell user what we are doing for this requirement: + # obtain (editable), skipping, processing (local url), collecting + # (remote url or package name) + if req_to_install.constraint or req_to_install.prepared: + return [] + + req_to_install.prepared = True + + # Parse and return dependencies + dist = self._get_dist_for(req_to_install) + # This will raise UnsupportedPythonVersion if the given Python + # version isn't compatible with the distribution's Requires-Python. + _check_dist_requires_python( + dist, + version_info=self._py_version_info, + ignore_requires_python=self.ignore_requires_python, + ) + + more_reqs: List[InstallRequirement] = [] + + def add_req(subreq: Requirement, extras_requested: Iterable[str]) -> None: + # This idiosyncratically converts the Requirement to str and let + # make_install_req then parse it again into Requirement. But this is + # the legacy resolver so I'm just not going to bother refactoring. + sub_install_req = self._make_install_req(str(subreq), req_to_install) + parent_req_name = req_to_install.name + to_scan_again, add_to_parent = self._add_requirement_to_set( + requirement_set, + sub_install_req, + parent_req_name=parent_req_name, + extras_requested=extras_requested, + ) + if parent_req_name and add_to_parent: + self._discovered_dependencies[parent_req_name].append(add_to_parent) + more_reqs.extend(to_scan_again) + + with indent_log(): + # We add req_to_install before its dependencies, so that we + # can refer to it when adding dependencies. + assert req_to_install.name is not None + if not requirement_set.has_requirement(req_to_install.name): + # 'unnamed' requirements will get added here + # 'unnamed' requirements can only come from being directly + # provided by the user. + assert req_to_install.user_supplied + self._add_requirement_to_set( + requirement_set, req_to_install, parent_req_name=None + ) + + if not self.ignore_dependencies: + if req_to_install.extras: + logger.debug( + "Installing extra requirements: %r", + ",".join(req_to_install.extras), + ) + missing_requested = sorted( + set(req_to_install.extras) - set(dist.iter_provided_extras()) + ) + for missing in missing_requested: + logger.warning( + "%s %s does not provide the extra '%s'", + dist.raw_name, + dist.version, + missing, + ) + + available_requested = sorted( + set(dist.iter_provided_extras()) & set(req_to_install.extras) + ) + for subreq in dist.iter_dependencies(available_requested): + add_req(subreq, extras_requested=available_requested) + + return more_reqs + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Create the installation order. + + The installation order is topological - requirements are installed + before the requiring thing. We break cycles at an arbitrary point, + and make no other guarantees. + """ + # The current implementation, which we may change at any point + # installs the user specified things in the order given, except when + # dependencies must come earlier to achieve topological order. + order = [] + ordered_reqs: Set[InstallRequirement] = set() + + def schedule(req: InstallRequirement) -> None: + if req.satisfied_by or req in ordered_reqs: + return + if req.constraint: + return + ordered_reqs.add(req) + for dep in self._discovered_dependencies[req.name]: + schedule(dep) + order.append(req) + + for install_req in req_set.requirements.values(): + schedule(install_req) + return order diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ccd08b77be8477853391e77d6b495964a1a20f12 GIT binary patch literal 256 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d824b19a04122f26bf7d18f72d41d60ee019af44 GIT binary patch literal 29220 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 Zx0qU%N*{7~edd0~Wh(uYBbQOZ{};;ilRp3e literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8788d062b91f26c9c46c08c5c79ae79b491fb60 GIT binary patch literal 6841 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 Z8(-dVL(jtlibZH%8U7fqRt25A{{wE&w~7D& literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dccf336a249c59828b76c0bcbc4ed3a868d1f014 GIT binary patch literal 5088 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e585165ab021e43a82f0986d2c40a0a52df25e33 GIT binary patch literal 12362 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 M?dW|g8vp str: + if not extras: + return project + extras_expr = ",".join(sorted(extras)) + return f"{project}[{extras_expr}]" + + +@dataclass(frozen=True) +class Constraint: + specifier: SpecifierSet + hashes: Hashes + links: FrozenSet[Link] + + @classmethod + def empty(cls) -> "Constraint": + return Constraint(SpecifierSet(), Hashes(), frozenset()) + + @classmethod + def from_ireq(cls, ireq: InstallRequirement) -> "Constraint": + links = frozenset([ireq.link]) if ireq.link else frozenset() + return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links) + + def __bool__(self) -> bool: + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + def __and__(self, other: InstallRequirement) -> "Constraint": + if not isinstance(other, InstallRequirement): + return NotImplemented + specifier = self.specifier & other.specifier + hashes = self.hashes & other.hashes(trust_internet=False) + links = self.links + if other.link: + links = links.union([other.link]) + return Constraint(specifier, hashes, links) + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + # Reject if there are any mismatched URL constraints on this package. + if self.links and not all(_match_link(link, candidate) for link in self.links): + return False + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class Requirement: + @property + def project_name(self) -> NormalizedName: + """The "project name" of a requirement. + + This is different from ``name`` if this requirement contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Subclass should override") + + @property + def name(self) -> str: + """The name identifying this requirement in the resolver. + + This is different from ``project_name`` if this requirement contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Subclass should override") + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + return False + + def get_candidate_lookup(self) -> CandidateLookup: + raise NotImplementedError("Subclass should override") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") + + +def _match_link(link: Link, candidate: "Candidate") -> bool: + if candidate.source_link: + return links_equivalent(link, candidate.source_link) + return False + + +class Candidate: + @property + def project_name(self) -> NormalizedName: + """The "project name" of the candidate. + + This is different from ``name`` if this candidate contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Override in subclass") + + @property + def name(self) -> str: + """The name identifying this candidate in the resolver. + + This is different from ``project_name`` if this candidate contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Override in subclass") + + @property + def version(self) -> Version: + raise NotImplementedError("Override in subclass") + + @property + def is_installed(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def is_editable(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def source_link(self) -> Optional[Link]: + raise NotImplementedError("Override in subclass") + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + raise NotImplementedError("Override in subclass") + + def get_install_requirement(self) -> Optional[InstallRequirement]: + raise NotImplementedError("Override in subclass") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 00000000..d30d477b --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,569 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import ( + HashError, + InstallationSubprocessError, + MetadataInconsistent, + MetadataInvalid, +) +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link, links_equivalent +from pip._internal.models.wheel import Wheel +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.direct_url_helpers import direct_url_from_link +from pip._internal.utils.misc import normalize_version_info + +from .base import Candidate, Requirement, format_name + +if TYPE_CHECKING: + from .factory import Factory + +logger = logging.getLogger(__name__) + +BaseCandidate = Union[ + "AlreadyInstalledCandidate", + "EditableCandidate", + "LinkCandidate", +] + +# Avoid conflicting with the PyPI package "Python". +REQUIRES_PYTHON_IDENTIFIER = cast(NormalizedName, "") + + +def as_base_candidate(candidate: Candidate) -> Optional[BaseCandidate]: + """The runtime version of BaseCandidate.""" + base_candidate_classes = ( + AlreadyInstalledCandidate, + EditableCandidate, + LinkCandidate, + ) + if isinstance(candidate, base_candidate_classes): + return candidate + return None + + +def make_install_req_from_link( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert not template.editable, "template is editable" + if template.req: + line = str(template.req) + else: + line = link.url + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.original_link = template.original_link + ireq.link = link + ireq.extras = template.extras + return ireq + + +def make_install_req_from_editable( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert template.editable, "template not editable" + ireq = install_req_from_editable( + link.url, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + permit_editable_wheels=template.permit_editable_wheels, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.extras = template.extras + return ireq + + +def _make_install_req_from_dist( + dist: BaseDistribution, template: InstallRequirement +) -> InstallRequirement: + if template.req: + line = str(template.req) + elif template.link: + line = f"{dist.canonical_name} @ {template.link.url}" + else: + line = f"{dist.canonical_name}=={dist.version}" + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + global_options=template.global_options, + hash_options=template.hash_options, + config_settings=template.config_settings, + ) + ireq.satisfied_by = dist + return ireq + + +class _InstallRequirementBackedCandidate(Candidate): + """A candidate backed by an ``InstallRequirement``. + + This represents a package request with the target not being already + in the environment, and needs to be fetched and installed. The backing + ``InstallRequirement`` is responsible for most of the leg work; this + class exposes appropriate information to the resolver. + + :param link: The link passed to the ``InstallRequirement``. The backing + ``InstallRequirement`` will use this link to fetch the distribution. + :param source_link: The link this candidate "originates" from. This is + different from ``link`` when the link is found in the wheel cache. + ``link`` would point to the wheel cache, while this points to the + found remote link (e.g. from pypi.org). + """ + + dist: BaseDistribution + is_installed = False + + def __init__( + self, + link: Link, + source_link: Link, + ireq: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[Version] = None, + ) -> None: + self._link = link + self._source_link = source_link + self._factory = factory + self._ireq = ireq + self._name = name + self._version = version + self.dist = self._prepare() + self._hash: Optional[int] = None + + def __str__(self) -> str: + return f"{self.name} {self.version}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._link)!r})" + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash((self.__class__, self._link)) + return self._hash + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return links_equivalent(self._link, other._link) + return False + + @property + def source_link(self) -> Optional[Link]: + return self._source_link + + @property + def project_name(self) -> NormalizedName: + """The normalised name of the project the candidate refers to""" + if self._name is None: + self._name = self.dist.canonical_name + return self._name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> Version: + if self._version is None: + self._version = self.dist.version + return self._version + + def format_for_error(self) -> str: + return ( + f"{self.name} {self.version} " + f"(from {self._link.file_path if self._link.is_file else self._link})" + ) + + def _prepare_distribution(self) -> BaseDistribution: + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist: BaseDistribution) -> None: + """Check for consistency of project name and version of dist.""" + if self._name is not None and self._name != dist.canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.canonical_name, + ) + if self._version is not None and self._version != dist.version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + str(dist.version), + ) + # check dependencies are valid + # TODO performance: this means we iterate the dependencies at least twice, + # we may want to cache parsed Requires-Dist + try: + list(dist.iter_dependencies(list(dist.iter_provided_extras()))) + except InvalidRequirement as e: + raise MetadataInvalid(self._ireq, str(e)) + + def _prepare(self) -> BaseDistribution: + try: + dist = self._prepare_distribution() + except HashError as e: + # Provide HashError the underlying ireq that caused it. This + # provides context for the resulting error message to show the + # offending line to the user. + e.req = self._ireq + raise + except InstallationSubprocessError as exc: + # The output has been presented already, so don't duplicate it. + exc.context = "See above for output." + raise + + self._check_metadata_consistency(dist) + return dist + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + requires = self.dist.iter_dependencies() if with_requires else () + for r in requires: + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + yield self._factory.make_requires_python_requirement(self.dist.requires_python) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return self._ireq + + +class LinkCandidate(_InstallRequirementBackedCandidate): + is_editable = False + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[Version] = None, + ) -> None: + source_link = link + cache_entry = factory.get_wheel_cache_entry(source_link, name) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + link = cache_entry.link + ireq = make_install_req_from_link(link, template) + assert ireq.link == link + if ireq.link.is_wheel and not ireq.link.is_file: + wheel = Wheel(ireq.link.filename) + wheel_name = canonicalize_name(wheel.name) + assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel" + # Version may not be present for PEP 508 direct URLs + if version is not None: + wheel_version = Version(wheel.version) + assert ( + version == wheel_version + ), f"{version!r} != {wheel_version!r} for wheel {name}" + + if cache_entry is not None: + assert ireq.link.is_wheel + assert ireq.link.is_file + if cache_entry.persistent and template.link is template.original_link: + ireq.cached_wheel_source_link = source_link + if cache_entry.origin is not None: + ireq.download_info = cache_entry.origin + else: + # Legacy cache entry that does not have origin.json. + # download_info may miss the archive_info.hashes field. + ireq.download_info = direct_url_from_link( + source_link, link_is_in_wheel_cache=cache_entry.persistent + ) + + super().__init__( + link=link, + source_link=source_link, + ireq=ireq, + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + preparer = self._factory.preparer + return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True) + + +class EditableCandidate(_InstallRequirementBackedCandidate): + is_editable = True + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[Version] = None, + ) -> None: + super().__init__( + link=link, + source_link=link, + ireq=make_install_req_from_editable(link, template), + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist: BaseDistribution, + template: InstallRequirement, + factory: "Factory", + ) -> None: + self.dist = dist + self._ireq = _make_install_req_from_dist(dist, template) + self._factory = factory + self._version = None + + # This is just logging some messages, so we can do it eagerly. + # The returned dist would be exactly the same as self.dist because we + # set satisfied_by in _make_install_req_from_dist. + # TODO: Supply reason based on force_reinstall and upgrade_strategy. + skip_reason = "already satisfied" + factory.preparer.prepare_installed_requirement(self._ireq, skip_reason) + + def __str__(self) -> str: + return str(self.dist) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.dist!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, AlreadyInstalledCandidate): + return NotImplemented + return self.name == other.name and self.version == other.version + + def __hash__(self) -> int: + return hash((self.name, self.version)) + + @property + def project_name(self) -> NormalizedName: + return self.dist.canonical_name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> Version: + if self._version is None: + self._version = self.dist.version + return self._version + + @property + def is_editable(self) -> bool: + return self.dist.editable + + def format_for_error(self) -> str: + return f"{self.name} {self.version} (Installed)" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + if not with_requires: + return + for r in self.dist.iter_dependencies(): + yield from self._factory.make_requirements_from_spec(str(r), self._ireq) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None + + +class ExtrasCandidate(Candidate): + """A candidate that has 'extras', indicating additional dependencies. + + Requirements can be for a project with dependencies, something like + foo[extra]. The extras don't affect the project/version being installed + directly, but indicate that we need additional dependencies. We model that + by having an artificial ExtrasCandidate that wraps the "base" candidate. + + The ExtrasCandidate differs from the base in the following ways: + + 1. It has a unique name, of the form foo[extra]. This causes the resolver + to treat it as a separate node in the dependency graph. + 2. When we're getting the candidate's dependencies, + a) We specify that we want the extra dependencies as well. + b) We add a dependency on the base candidate. + See below for why this is needed. + 3. We return None for the underlying InstallRequirement, as the base + candidate will provide it, and we don't want to end up with duplicates. + + The dependency on the base candidate is needed so that the resolver can't + decide that it should recommend foo[extra1] version 1.0 and foo[extra2] + version 2.0. Having those candidates depend on foo=1.0 and foo=2.0 + respectively forces the resolver to recognise that this is a conflict. + """ + + def __init__( + self, + base: BaseCandidate, + extras: FrozenSet[str], + *, + comes_from: Optional[InstallRequirement] = None, + ) -> None: + """ + :param comes_from: the InstallRequirement that led to this candidate if it + differs from the base's InstallRequirement. This will often be the + case in the sense that this candidate's requirement has the extras + while the base's does not. Unlike the InstallRequirement backed + candidates, this requirement is used solely for reporting purposes, + it does not do any leg work. + """ + self.base = base + self.extras = frozenset(canonicalize_name(e) for e in extras) + self._comes_from = comes_from if comes_from is not None else self.base._ireq + + def __str__(self) -> str: + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}(base={self.base!r}, extras={self.extras!r})" + + def __hash__(self) -> int: + return hash((self.base, self.extras)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.base == other.base and self.extras == other.extras + return False + + @property + def project_name(self) -> NormalizedName: + return self.base.project_name + + @property + def name(self) -> str: + """The normalised name of the project the candidate refers to""" + return format_name(self.base.project_name, self.extras) + + @property + def version(self) -> Version: + return self.base.version + + def format_for_error(self) -> str: + return "{} [{}]".format( + self.base.format_for_error(), ", ".join(sorted(self.extras)) + ) + + @property + def is_installed(self) -> bool: + return self.base.is_installed + + @property + def is_editable(self) -> bool: + return self.base.is_editable + + @property + def source_link(self) -> Optional[Link]: + return self.base.source_link + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + factory = self.base._factory + + # Add a dependency on the exact base + # (See note 2b in the class docstring) + yield factory.make_requirement_from_candidate(self.base) + if not with_requires: + return + + # The user may have specified extras that the candidate doesn't + # support. We ignore any unsupported extras here. + valid_extras = self.extras.intersection(self.base.dist.iter_provided_extras()) + invalid_extras = self.extras.difference(self.base.dist.iter_provided_extras()) + for extra in sorted(invalid_extras): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + for r in self.base.dist.iter_dependencies(valid_extras): + yield from factory.make_requirements_from_spec( + str(r), + self._comes_from, + valid_extras, + ) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + # We don't return anything here, because we always + # depend on the base candidate, and we'll get the + # install requirement from that. + return None + + +class RequiresPythonCandidate(Candidate): + is_installed = False + source_link = None + + def __init__(self, py_version_info: Optional[Tuple[int, ...]]) -> None: + if py_version_info is not None: + version_info = normalize_version_info(py_version_info) + else: + version_info = sys.version_info[:3] + self._version = Version(".".join(str(c) for c in version_info)) + + # We don't need to implement __eq__() and __ne__() since there is always + # only one RequiresPythonCandidate in a resolution, i.e. the host Python. + # The built-in object.__eq__() and object.__ne__() do exactly what we want. + + def __str__(self) -> str: + return f"Python {self._version}" + + @property + def project_name(self) -> NormalizedName: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def name(self) -> str: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def version(self) -> Version: + return self._version + + def format_for_error(self) -> str: + return f"Python {self.version}" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + return () + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 00000000..145bdbf7 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,817 @@ +import contextlib +import functools +import logging +from typing import ( + TYPE_CHECKING, + Callable, + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, + Protocol, + Sequence, + Set, + Tuple, + TypeVar, + cast, +) + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + MetadataInconsistent, + MetadataInvalid, + UnsupportedPythonVersion, + UnsupportedWheel, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_drop_extras, + install_req_from_link_and_ireq, +) +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.resolution.base import InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import Candidate, Constraint, Requirement +from .candidates import ( + AlreadyInstalledCandidate, + BaseCandidate, + EditableCandidate, + ExtrasCandidate, + LinkCandidate, + RequiresPythonCandidate, + as_base_candidate, +) +from .found_candidates import FoundCandidates, IndexCandidateInfo +from .requirements import ( + ExplicitRequirement, + RequiresPythonRequirement, + SpecifierRequirement, + SpecifierWithoutExtrasRequirement, + UnsatisfiableRequirement, +) + +if TYPE_CHECKING: + + class ConflictCause(Protocol): + requirement: RequiresPythonRequirement + parent: Candidate + + +logger = logging.getLogger(__name__) + +C = TypeVar("C") +Cache = Dict[Link, C] + + +class CollectedRootRequirements(NamedTuple): + requirements: List[Requirement] + constraints: Dict[str, Constraint] + user_requested: Dict[str, int] + + +class Factory: + def __init__( + self, + finder: PackageFinder, + preparer: RequirementPreparer, + make_install_req: InstallRequirementProvider, + wheel_cache: Optional[WheelCache], + use_user_site: bool, + force_reinstall: bool, + ignore_installed: bool, + ignore_requires_python: bool, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + self._finder = finder + self.preparer = preparer + self._wheel_cache = wheel_cache + self._python_candidate = RequiresPythonCandidate(py_version_info) + self._make_install_req_from_spec = make_install_req + self._use_user_site = use_user_site + self._force_reinstall = force_reinstall + self._ignore_requires_python = ignore_requires_python + + self._build_failures: Cache[InstallationError] = {} + self._link_candidate_cache: Cache[LinkCandidate] = {} + self._editable_candidate_cache: Cache[EditableCandidate] = {} + self._installed_candidate_cache: Dict[str, AlreadyInstalledCandidate] = {} + self._extras_candidate_cache: Dict[ + Tuple[int, FrozenSet[NormalizedName]], ExtrasCandidate + ] = {} + self._supported_tags_cache = get_supported() + + if not ignore_installed: + env = get_default_environment() + self._installed_dists = { + dist.canonical_name: dist + for dist in env.iter_installed_distributions(local_only=False) + } + else: + self._installed_dists = {} + + @property + def force_reinstall(self) -> bool: + return self._force_reinstall + + def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None: + if not link.is_wheel: + return + wheel = Wheel(link.filename) + if wheel.supported(self._finder.target_python.get_unsorted_tags()): + return + msg = f"{link.filename} is not a supported wheel on this platform." + raise UnsupportedWheel(msg) + + def _make_extras_candidate( + self, + base: BaseCandidate, + extras: FrozenSet[str], + *, + comes_from: Optional[InstallRequirement] = None, + ) -> ExtrasCandidate: + cache_key = (id(base), frozenset(canonicalize_name(e) for e in extras)) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras, comes_from=comes_from) + self._extras_candidate_cache[cache_key] = candidate + return candidate + + def _make_candidate_from_dist( + self, + dist: BaseDistribution, + extras: FrozenSet[str], + template: InstallRequirement, + ) -> Candidate: + try: + base = self._installed_candidate_cache[dist.canonical_name] + except KeyError: + base = AlreadyInstalledCandidate(dist, template, factory=self) + self._installed_candidate_cache[dist.canonical_name] = base + if not extras: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_candidate_from_link( + self, + link: Link, + extras: FrozenSet[str], + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[Version], + ) -> Optional[Candidate]: + base: Optional[BaseCandidate] = self._make_base_candidate_from_link( + link, template, name, version + ) + if not extras or base is None: + return base + return self._make_extras_candidate(base, extras, comes_from=template) + + def _make_base_candidate_from_link( + self, + link: Link, + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[Version], + ) -> Optional[BaseCandidate]: + # TODO: Check already installed candidate, and use it if the link and + # editable flag match. + + if link in self._build_failures: + # We already tried this candidate before, and it does not build. + # Don't bother trying again. + return None + + if template.editable: + if link not in self._editable_candidate_cache: + try: + self._editable_candidate_cache[link] = EditableCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except (MetadataInconsistent, MetadataInvalid) as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + + return self._editable_candidate_cache[link] + else: + if link not in self._link_candidate_cache: + try: + self._link_candidate_cache[link] = LinkCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + return self._link_candidate_cache[link] + + def _iter_found_candidates( + self, + ireqs: Sequence[InstallRequirement], + specifier: SpecifierSet, + hashes: Hashes, + prefers_installed: bool, + incompatible_ids: Set[int], + ) -> Iterable[Candidate]: + if not ireqs: + return () + + # The InstallRequirement implementation requires us to give it a + # "template". Here we just choose the first requirement to represent + # all of them. + # Hopefully the Project model can correct this mismatch in the future. + template = ireqs[0] + assert template.req, "Candidates found on index must be PEP 508" + name = canonicalize_name(template.req.name) + + extras: FrozenSet[str] = frozenset() + for ireq in ireqs: + assert ireq.req, "Candidates found on index must be PEP 508" + specifier &= ireq.req.specifier + hashes &= ireq.hashes(trust_internet=False) + extras |= frozenset(ireq.extras) + + def _get_installed_candidate() -> Optional[Candidate]: + """Get the candidate for the currently-installed version.""" + # If --force-reinstall is set, we want the version from the index + # instead, so we "pretend" there is nothing installed. + if self._force_reinstall: + return None + try: + installed_dist = self._installed_dists[name] + except KeyError: + return None + # Don't use the installed distribution if its version does not fit + # the current dependency graph. + if not specifier.contains(installed_dist.version, prereleases=True): + return None + candidate = self._make_candidate_from_dist( + dist=installed_dist, + extras=extras, + template=template, + ) + # The candidate is a known incompatibility. Don't use it. + if id(candidate) in incompatible_ids: + return None + return candidate + + def iter_index_candidate_infos() -> Iterator[IndexCandidateInfo]: + result = self._finder.find_best_candidate( + project_name=name, + specifier=specifier, + hashes=hashes, + ) + icans = list(result.iter_applicable()) + + # PEP 592: Yanked releases are ignored unless the specifier + # explicitly pins a version (via '==' or '===') that can be + # solely satisfied by a yanked release. + all_yanked = all(ican.link.is_yanked for ican in icans) + + def is_pinned(specifier: SpecifierSet) -> bool: + for sp in specifier: + if sp.operator == "===": + return True + if sp.operator != "==": + continue + if sp.version.endswith(".*"): + continue + return True + return False + + pinned = is_pinned(specifier) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not (all_yanked and pinned) and ican.link.is_yanked: + continue + func = functools.partial( + self._make_candidate_from_link, + link=ican.link, + extras=extras, + template=template, + name=name, + version=ican.version, + ) + yield ican.version, func + + return FoundCandidates( + iter_index_candidate_infos, + _get_installed_candidate(), + prefers_installed, + incompatible_ids, + ) + + def _iter_explicit_candidates_from_base( + self, + base_requirements: Iterable[Requirement], + extras: FrozenSet[str], + ) -> Iterator[Candidate]: + """Produce explicit candidates from the base given an extra-ed package. + + :param base_requirements: Requirements known to the resolver. The + requirements are guaranteed to not have extras. + :param extras: The extras to inject into the explicit requirements' + candidates. + """ + for req in base_requirements: + lookup_cand, _ = req.get_candidate_lookup() + if lookup_cand is None: # Not explicit. + continue + # We've stripped extras from the identifier, and should always + # get a BaseCandidate here, unless there's a bug elsewhere. + base_cand = as_base_candidate(lookup_cand) + assert base_cand is not None, "no extras here" + yield self._make_extras_candidate(base_cand, extras) + + def _iter_candidates_from_constraints( + self, + identifier: str, + constraint: Constraint, + template: InstallRequirement, + ) -> Iterator[Candidate]: + """Produce explicit candidates from constraints. + + This creates "fake" InstallRequirement objects that are basically clones + of what "should" be the template, but with original_link set to link. + """ + for link in constraint.links: + self._fail_if_link_is_unsupported_wheel(link) + candidate = self._make_base_candidate_from_link( + link, + template=install_req_from_link_and_ireq(link, template), + name=canonicalize_name(identifier), + version=None, + ) + if candidate: + yield candidate + + def find_candidates( + self, + identifier: str, + requirements: Mapping[str, Iterable[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + constraint: Constraint, + prefers_installed: bool, + is_satisfied_by: Callable[[Requirement, Candidate], bool], + ) -> Iterable[Candidate]: + # Collect basic lookup information from the requirements. + explicit_candidates: Set[Candidate] = set() + ireqs: List[InstallRequirement] = [] + for req in requirements[identifier]: + cand, ireq = req.get_candidate_lookup() + if cand is not None: + explicit_candidates.add(cand) + if ireq is not None: + ireqs.append(ireq) + + # If the current identifier contains extras, add requires and explicit + # candidates from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = get_requirement(identifier) + if parsed_requirement.name != identifier: + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + for req in requirements.get(parsed_requirement.name, []): + _, ireq = req.get_candidate_lookup() + if ireq is not None: + ireqs.append(ireq) + + # Add explicit candidates from constraints. We only do this if there are + # known ireqs, which represent requirements not already explicit. If + # there are no ireqs, we're constraining already-explicit requirements, + # which is handled later when we return the explicit candidates. + if ireqs: + try: + explicit_candidates.update( + self._iter_candidates_from_constraints( + identifier, + constraint, + template=ireqs[0], + ), + ) + except UnsupportedWheel: + # If we're constrained to install a wheel incompatible with the + # target architecture, no candidates will ever be valid. + return () + + # Since we cache all the candidates, incompatibility identification + # can be made quicker by comparing only the id() values. + incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())} + + # If none of the requirements want an explicit candidate, we can ask + # the finder for candidates. + if not explicit_candidates: + return self._iter_found_candidates( + ireqs, + constraint.specifier, + constraint.hashes, + prefers_installed, + incompat_ids, + ) + + return ( + c + for c in explicit_candidates + if id(c) not in incompat_ids + and constraint.is_satisfied_by(c) + and all(is_satisfied_by(req, c) for req in requirements[identifier]) + ) + + def _make_requirements_from_install_req( + self, ireq: InstallRequirement, requested_extras: Iterable[str] + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given InstallRequirement. In + most cases this will be a single object but the following special cases exist: + - the InstallRequirement has markers that do not apply -> result is empty + - the InstallRequirement has both a constraint (or link) and extras + -> result is split in two requirement objects: one with the constraint + (or link) and one with the extra. This allows centralized constraint + handling for the base, resulting in fewer candidate rejections. + """ + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + elif not ireq.link: + if ireq.extras and ireq.req is not None and ireq.req.specifier: + yield SpecifierWithoutExtrasRequirement(ireq) + yield SpecifierRequirement(ireq) + else: + self._fail_if_link_is_unsupported_wheel(ireq.link) + # Always make the link candidate for the base requirement to make it + # available to `find_candidates` for explicit candidate lookup for any + # set of extras. + # The extras are required separately via a second requirement. + cand = self._make_base_candidate_from_link( + ireq.link, + template=install_req_drop_extras(ireq) if ireq.extras else ireq, + name=canonicalize_name(ireq.name) if ireq.name else None, + version=None, + ) + if cand is None: + # There's no way we can satisfy a URL requirement if the underlying + # candidate fails to build. An unnamed URL must be user-supplied, so + # we fail eagerly. If the URL is named, an unsatisfiable requirement + # can make the resolver do the right thing, either backtrack (and + # maybe find some other requirement that's buildable) or raise a + # ResolutionImpossible eventually. + if not ireq.name: + raise self._build_failures[ireq.link] + yield UnsatisfiableRequirement(canonicalize_name(ireq.name)) + else: + # require the base from the link + yield self.make_requirement_from_candidate(cand) + if ireq.extras: + # require the extras on top of the base candidate + yield self.make_requirement_from_candidate( + self._make_extras_candidate(cand, frozenset(ireq.extras)) + ) + + def collect_root_requirements( + self, root_ireqs: List[InstallRequirement] + ) -> CollectedRootRequirements: + collected = CollectedRootRequirements([], {}, {}) + for i, ireq in enumerate(root_ireqs): + if ireq.constraint: + # Ensure we only accept valid constraints + problem = check_invalid_constraint_type(ireq) + if problem: + raise InstallationError(problem) + if not ireq.match_markers(): + continue + assert ireq.name, "Constraint must be named" + name = canonicalize_name(ireq.name) + if name in collected.constraints: + collected.constraints[name] &= ireq + else: + collected.constraints[name] = Constraint.from_ireq(ireq) + else: + reqs = list( + self._make_requirements_from_install_req( + ireq, + requested_extras=(), + ) + ) + if not reqs: + continue + template = reqs[0] + if ireq.user_supplied and template.name not in collected.user_requested: + collected.user_requested[template.name] = i + collected.requirements.extend(reqs) + # Put requirements with extras at the end of the root requires. This does not + # affect resolvelib's picking preference but it does affect its initial criteria + # population: by putting extras at the end we enable the candidate finder to + # present resolvelib with a smaller set of candidates to resolvelib, already + # taking into account any non-transient constraints on the associated base. This + # means resolvelib will have fewer candidates to visit and reject. + # Python's list sort is stable, meaning relative order is kept for objects with + # the same key. + collected.requirements.sort(key=lambda r: r.name != r.project_name) + return collected + + def make_requirement_from_candidate( + self, candidate: Candidate + ) -> ExplicitRequirement: + return ExplicitRequirement(candidate) + + def make_requirements_from_spec( + self, + specifier: str, + comes_from: Optional[InstallRequirement], + requested_extras: Iterable[str] = (), + ) -> Iterator[Requirement]: + """ + Returns requirement objects associated with the given specifier. In most cases + this will be a single object but the following special cases exist: + - the specifier has markers that do not apply -> result is empty + - the specifier has both a constraint and extras -> result is split + in two requirement objects: one with the constraint and one with the + extra. This allows centralized constraint handling for the base, + resulting in fewer candidate rejections. + """ + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self._make_requirements_from_install_req(ireq, requested_extras) + + def make_requires_python_requirement( + self, + specifier: SpecifierSet, + ) -> Optional[Requirement]: + if self._ignore_requires_python: + return None + # Don't bother creating a dependency for an empty Requires-Python. + if not str(specifier): + return None + return RequiresPythonRequirement(specifier, self._python_candidate) + + def get_wheel_cache_entry( + self, link: Link, name: Optional[str] + ) -> Optional[CacheEntry]: + """Look up the link in the wheel cache. + + If ``preparer.require_hashes`` is True, don't use the wheel cache, + because cached wheels, always built locally, have different hashes + than the files downloaded from the index server and thus throw false + hash mismatches. Furthermore, cached wheels at present have + nondeterministic contents due to file modification times. + """ + if self._wheel_cache is None: + return None + return self._wheel_cache.get_cache_entry( + link=link, + package_name=name, + supported_tags=self._supported_tags_cache, + ) + + def get_dist_to_uninstall(self, candidate: Candidate) -> Optional[BaseDistribution]: + # TODO: Are there more cases this needs to return True? Editable? + dist = self._installed_dists.get(candidate.project_name) + if dist is None: # Not installed, no uninstallation required. + return None + + # We're installing into global site. The current installation must + # be uninstalled, no matter it's in global or user site, because the + # user site installation has precedence over global. + if not self._use_user_site: + return dist + + # We're installing into user site. Remove the user site installation. + if dist.in_usersite: + return dist + + # We're installing into user site, but the installed incompatible + # package is in global site. We can't uninstall that, and would let + # the new user installation to "shadow" it. But shadowing won't work + # in virtual environments, so we error out. + if running_under_virtualenv() and dist.in_site_packages: + message = ( + f"Will not install to the user site because it will lack " + f"sys.path precedence to {dist.raw_name} in {dist.location}" + ) + raise InstallationError(message) + return None + + def _report_requires_python_error( + self, causes: Sequence["ConflictCause"] + ) -> UnsupportedPythonVersion: + assert causes, "Requires-Python error reported with no cause" + + version = self._python_candidate.version + + if len(causes) == 1: + specifier = str(causes[0].requirement.specifier) + message = ( + f"Package {causes[0].parent.name!r} requires a different " + f"Python: {version} not in {specifier!r}" + ) + return UnsupportedPythonVersion(message) + + message = f"Packages require a different Python. {version} not in:" + for cause in causes: + package = cause.parent.format_for_error() + specifier = str(cause.requirement.specifier) + message += f"\n{specifier!r} (required by {package})" + return UnsupportedPythonVersion(message) + + def _report_single_requirement_conflict( + self, req: Requirement, parent: Optional[Candidate] + ) -> DistributionNotFound: + if parent is None: + req_disp = str(req) + else: + req_disp = f"{req} (from {parent.name})" + + cands = self._finder.find_all_candidates(req.project_name) + skipped_by_requires_python = self._finder.requires_python_skipped_reasons() + + versions_set: Set[Version] = set() + yanked_versions_set: Set[Version] = set() + for c in cands: + is_yanked = c.link.is_yanked if c.link else False + if is_yanked: + yanked_versions_set.add(c.version) + else: + versions_set.add(c.version) + + versions = [str(v) for v in sorted(versions_set)] + yanked_versions = [str(v) for v in sorted(yanked_versions_set)] + + if yanked_versions: + # Saying "version X is yanked" isn't entirely accurate. + # https://github.com/pypa/pip/issues/11745#issuecomment-1402805842 + logger.critical( + "Ignored the following yanked versions: %s", + ", ".join(yanked_versions) or "none", + ) + if skipped_by_requires_python: + logger.critical( + "Ignored the following versions that require a different python " + "version: %s", + "; ".join(skipped_by_requires_python) or "none", + ) + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req_disp, + ", ".join(versions) or "none", + ) + if str(req) == "requirements.txt": + logger.info( + "HINT: You are attempting to install a package literally " + 'named "requirements.txt" (which cannot exist). Consider ' + "using the '-r' flag to install the packages listed in " + "requirements.txt" + ) + + return DistributionNotFound(f"No matching distribution found for {req}") + + def get_installation_error( + self, + e: "ResolutionImpossible[Requirement, Candidate]", + constraints: Dict[str, Constraint], + ) -> InstallationError: + assert e.causes, "Installation error reported with no cause" + + # If one of the things we can't solve is "we need Python X.Y", + # that is what we report. + requires_python_causes = [ + cause + for cause in e.causes + if isinstance(cause.requirement, RequiresPythonRequirement) + and not cause.requirement.is_satisfied_by(self._python_candidate) + ] + if requires_python_causes: + # The comprehension above makes sure all Requirement instances are + # RequiresPythonRequirement, so let's cast for convenience. + return self._report_requires_python_error( + cast("Sequence[ConflictCause]", requires_python_causes), + ) + + # Otherwise, we have a set of causes which can't all be satisfied + # at once. + + # The simplest case is when we have *one* cause that can't be + # satisfied. We just report that case. + if len(e.causes) == 1: + req, parent = e.causes[0] + if req.name not in constraints: + return self._report_single_requirement_conflict(req, parent) + + # OK, we now have a list of requirements that can't all be + # satisfied at once. + + # A couple of formatting helpers + def text_join(parts: List[str]) -> str: + if len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def describe_trigger(parent: Candidate) -> str: + ireq = parent.get_install_requirement() + if not ireq or not ireq.comes_from: + return f"{parent.name}=={parent.version}" + if isinstance(ireq.comes_from, InstallRequirement): + return str(ireq.comes_from.name) + return str(ireq.comes_from) + + triggers = set() + for req, parent in e.causes: + if parent is None: + # This is a root requirement, so we can report it directly + trigger = req.format_for_error() + else: + trigger = describe_trigger(parent) + triggers.add(trigger) + + if triggers: + info = text_join(sorted(triggers)) + else: + info = "the requested packages" + + msg = ( + f"Cannot install {info} because these package versions " + "have conflicting dependencies." + ) + logger.critical(msg) + msg = "\nThe conflict is caused by:" + + relevant_constraints = set() + for req, parent in e.causes: + if req.name in constraints: + relevant_constraints.add(req.name) + msg = msg + "\n " + if parent: + msg = msg + f"{parent.name} {parent.version} depends on " + else: + msg = msg + "The user requested " + msg = msg + req.format_for_error() + for key in relevant_constraints: + spec = constraints[key].specifier + msg += f"\n The user requested (constraint) {key}{spec}" + + msg = ( + msg + + "\n\n" + + "To fix this you could try to:\n" + + "1. loosen the range of package versions you've specified\n" + + "2. remove package versions to allow pip to attempt to solve " + + "the dependency conflict\n" + ) + + logger.info(msg) + + return DistributionNotFound( + "ResolutionImpossible: for help visit " + "https://pip.pypa.io/en/latest/topics/dependency-resolution/" + "#dealing-with-dependency-conflicts" + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 00000000..a1d57e0f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,174 @@ +"""Utilities to lazily create and visit candidates found. + +Creating and visiting a candidate is a *very* costly operation. It involves +fetching, extracting, potentially building modules from source, and verifying +distribution metadata. It is therefore crucial for performance to keep +everything here lazy all the way down, so we only touch candidates that we +absolutely need, and not "download the world" when we only need one version of +something. +""" + +import functools +import logging +from collections.abc import Sequence +from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion + +from pip._internal.exceptions import MetadataInvalid + +from .base import Candidate + +logger = logging.getLogger(__name__) + +IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + +if TYPE_CHECKING: + SequenceCandidate = Sequence[Candidate] +else: + # For compatibility: Python before 3.9 does not support using [] on the + # Sequence class. + # + # >>> from collections.abc import Sequence + # >>> Sequence[str] + # Traceback (most recent call last): + # File "", line 1, in + # TypeError: 'ABCMeta' object is not subscriptable + # + # TODO: Remove this block after dropping Python 3.8 support. + SequenceCandidate = Sequence + + +def _iter_built(infos: Iterator[IndexCandidateInfo]) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the package is not already installed. Candidates + from index come later in their normal ordering. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + try: + candidate = func() + except MetadataInvalid as e: + logger.warning( + "Ignoring version %s of %s since it has invalid metadata:\n" + "%s\n" + "Please use pip<24.1 if you need to use this version.", + version, + e.ireq.name, + e, + ) + # Mark version as found to avoid trying other candidates with the same + # version, since they most likely have invalid metadata as well. + versions_found.add(version) + else: + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_prepended( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers the already-installed + candidate and NOT to upgrade. The installed candidate is therefore + always yielded first, and candidates from index come later in their + normal ordering, except skipped when the version is already installed. + """ + yield installed + versions_found: Set[_BaseVersion] = {installed.version} + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_inserted( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers to upgrade an + already-installed package. Candidates from index are returned in their + normal ordering, except replaced when the version is already installed. + + The implementation iterates through and yields other candidates, inserting + the installed candidate exactly once before we start yielding older or + equivalent candidates, or after all other candidates if they are all newer. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + # If the installed candidate is better, yield it first. + if installed.version >= version: + yield installed + versions_found.add(installed.version) + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + # If the installed candidate is older than all other candidates. + if installed.version not in versions_found: + yield installed + + +class FoundCandidates(SequenceCandidate): + """A lazy sequence to provide candidates to the resolver. + + The intended usage is to return this from `find_matches()` so the resolver + can iterate through the sequence multiple times, but only access the index + page when remote packages are actually needed. This improve performances + when suitable candidates are already installed on disk. + """ + + def __init__( + self, + get_infos: Callable[[], Iterator[IndexCandidateInfo]], + installed: Optional[Candidate], + prefers_installed: bool, + incompatible_ids: Set[int], + ): + self._get_infos = get_infos + self._installed = installed + self._prefers_installed = prefers_installed + self._incompatible_ids = incompatible_ids + + def __getitem__(self, index: Any) -> Any: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + def __iter__(self) -> Iterator[Candidate]: + infos = self._get_infos() + if not self._installed: + iterator = _iter_built(infos) + elif self._prefers_installed: + iterator = _iter_built_with_prepended(self._installed, infos) + else: + iterator = _iter_built_with_inserted(self._installed, infos) + return (c for c in iterator if id(c) not in self._incompatible_ids) + + def __len__(self) -> int: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + @functools.lru_cache(maxsize=1) + def __bool__(self) -> bool: + if self._prefers_installed and self._installed: + return True + return any(self) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 00000000..fb0dd85f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,258 @@ +import collections +import math +from functools import lru_cache +from typing import ( + TYPE_CHECKING, + Dict, + Iterable, + Iterator, + Mapping, + Sequence, + TypeVar, + Union, +) + +from pip._vendor.resolvelib.providers import AbstractProvider + +from .base import Candidate, Constraint, Requirement +from .candidates import REQUIRES_PYTHON_IDENTIFIER +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.providers import Preference + from pip._vendor.resolvelib.resolvers import RequirementInformation + + PreferenceInformation = RequirementInformation[Requirement, Candidate] + + _ProviderBase = AbstractProvider[Requirement, Candidate, str] +else: + _ProviderBase = AbstractProvider + +# Notes on the relationship between the provider, the factory, and the +# candidate and requirement classes. +# +# The provider is a direct implementation of the resolvelib class. Its role +# is to deliver the API that resolvelib expects. +# +# Rather than work with completely abstract "requirement" and "candidate" +# concepts as resolvelib does, pip has concrete classes implementing these two +# ideas. The API of Requirement and Candidate objects are defined in the base +# classes, but essentially map fairly directly to the equivalent provider +# methods. In particular, `find_matches` and `is_satisfied_by` are +# requirement methods, and `get_dependencies` is a candidate method. +# +# The factory is the interface to pip's internal mechanisms. It is stateless, +# and is created by the resolver and held as a property of the provider. It is +# responsible for creating Requirement and Candidate objects, and provides +# services to those objects (access to pip's finder and preparer). + + +D = TypeVar("D") +V = TypeVar("V") + + +def _get_with_identifier( + mapping: Mapping[str, V], + identifier: str, + default: D, +) -> Union[D, V]: + """Get item from a package name lookup mapping with a resolver identifier. + + This extra logic is needed when the target mapping is keyed by package + name, which cannot be directly looked up with an identifier (which may + contain requested extras). Additional logic is added to also look up a value + by "cleaning up" the extras from the identifier. + """ + if identifier in mapping: + return mapping[identifier] + # HACK: Theoretically we should check whether this identifier is a valid + # "NAME[EXTRAS]" format, and parse out the name part with packaging or + # some regular expression. But since pip's resolver only spits out three + # kinds of identifiers: normalized PEP 503 names, normalized names plus + # extras, and Requires-Python, we can cheat a bit here. + name, open_bracket, _ = identifier.partition("[") + if open_bracket and name in mapping: + return mapping[name] + return default + + +class PipProvider(_ProviderBase): + """Pip's provider implementation for resolvelib. + + :params constraints: A mapping of constraints specified by the user. Keys + are canonicalized project names. + :params ignore_dependencies: Whether the user specified ``--no-deps``. + :params upgrade_strategy: The user-specified upgrade strategy. + :params user_requested: A set of canonicalized package names that the user + supplied for pip to install/upgrade. + """ + + def __init__( + self, + factory: Factory, + constraints: Dict[str, Constraint], + ignore_dependencies: bool, + upgrade_strategy: str, + user_requested: Dict[str, int], + ) -> None: + self._factory = factory + self._constraints = constraints + self._ignore_dependencies = ignore_dependencies + self._upgrade_strategy = upgrade_strategy + self._user_requested = user_requested + self._known_depths: Dict[str, float] = collections.defaultdict(lambda: math.inf) + + def identify(self, requirement_or_candidate: Union[Requirement, Candidate]) -> str: + return requirement_or_candidate.name + + def get_preference( + self, + identifier: str, + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterable["PreferenceInformation"]], + backtrack_causes: Sequence["PreferenceInformation"], + ) -> "Preference": + """Produce a sort key for given requirement based on preference. + + The lower the return value is, the more preferred this group of + arguments is. + + Currently pip considers the following in order: + + * Prefer if any of the known requirements is "direct", e.g. points to an + explicit URL. + * If equal, prefer if any requirement is "pinned", i.e. contains + operator ``===`` or ``==``. + * If equal, calculate an approximate "depth" and resolve requirements + closer to the user-specified requirements first. If the depth cannot + by determined (eg: due to no matching parents), it is considered + infinite. + * Order user-specified requirements by the order they are specified. + * If equal, prefers "non-free" requirements, i.e. contains at least one + operator, such as ``>=`` or ``<``. + * If equal, order alphabetically for consistency (helps debuggability). + """ + try: + next(iter(information[identifier])) + except StopIteration: + # There is no information for this identifier, so there's no known + # candidates. + has_information = False + else: + has_information = True + + if has_information: + lookups = (r.get_candidate_lookup() for r, _ in information[identifier]) + candidate, ireqs = zip(*lookups) + else: + candidate, ireqs = None, () + + operators = [ + specifier.operator + for specifier_set in (ireq.specifier for ireq in ireqs if ireq) + for specifier in specifier_set + ] + + direct = candidate is not None + pinned = any(op[:2] == "==" for op in operators) + unfree = bool(operators) + + try: + requested_order: Union[int, float] = self._user_requested[identifier] + except KeyError: + requested_order = math.inf + if has_information: + parent_depths = ( + self._known_depths[parent.name] if parent is not None else 0.0 + for _, parent in information[identifier] + ) + inferred_depth = min(d for d in parent_depths) + 1.0 + else: + inferred_depth = math.inf + else: + inferred_depth = 1.0 + self._known_depths[identifier] = inferred_depth + + requested_order = self._user_requested.get(identifier, math.inf) + + # Requires-Python has only one candidate and the check is basically + # free, so we always do it first to avoid needless work if it fails. + requires_python = identifier == REQUIRES_PYTHON_IDENTIFIER + + # Prefer the causes of backtracking on the assumption that the problem + # resolving the dependency tree is related to the failures that caused + # the backtracking + backtrack_cause = self.is_backtrack_cause(identifier, backtrack_causes) + + return ( + not requires_python, + not direct, + not pinned, + not backtrack_cause, + inferred_depth, + requested_order, + not unfree, + identifier, + ) + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(identifier: str) -> bool: + """Are upgrades allowed for this project? + + This checks the upgrade strategy, and whether the project was one + that the user specified in the command line, in order to decide + whether we should upgrade if there's a newer version available. + + (Note that we don't need access to the `--upgrade` flag, because + an upgrade strategy of "to-satisfy-only" means that `--upgrade` + was not specified). + """ + if self._upgrade_strategy == "eager": + return True + elif self._upgrade_strategy == "only-if-needed": + user_order = _get_with_identifier( + self._user_requested, + identifier, + default=None, + ) + return user_order is not None + return False + + constraint = _get_with_identifier( + self._constraints, + identifier, + default=Constraint.empty(), + ) + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=constraint, + prefers_installed=(not _eligible_for_upgrade(identifier)), + incompatibilities=incompatibilities, + is_satisfied_by=self.is_satisfied_by, + ) + + @lru_cache(maxsize=None) + def is_satisfied_by(self, requirement: Requirement, candidate: Candidate) -> bool: + return requirement.is_satisfied_by(candidate) + + def get_dependencies(self, candidate: Candidate) -> Sequence[Requirement]: + with_requires = not self._ignore_dependencies + return [r for r in candidate.iter_dependencies(with_requires) if r is not None] + + @staticmethod + def is_backtrack_cause( + identifier: str, backtrack_causes: Sequence["PreferenceInformation"] + ) -> bool: + for backtrack_cause in backtrack_causes: + if identifier == backtrack_cause.requirement.name: + return True + if backtrack_cause.parent and identifier == backtrack_cause.parent.name: + return True + return False diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 00000000..0594569d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,81 @@ +from collections import defaultdict +from logging import getLogger +from typing import Any, DefaultDict + +from pip._vendor.resolvelib.reporters import BaseReporter + +from .base import Candidate, Requirement + +logger = getLogger(__name__) + + +class PipReporter(BaseReporter): + def __init__(self) -> None: + self.reject_count_by_package: DefaultDict[str, int] = defaultdict(int) + + self._messages_at_reject_count = { + 1: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 8: ( + "pip is still looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 13: ( + "This is taking longer than usual. You might need to provide " + "the dependency resolver with stricter constraints to reduce " + "runtime. See https://pip.pypa.io/warnings/backtracking for " + "guidance. If you want to abort this run, press Ctrl + C." + ), + } + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + self.reject_count_by_package[candidate.name] += 1 + + count = self.reject_count_by_package[candidate.name] + if count not in self._messages_at_reject_count: + return + + message = self._messages_at_reject_count[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + msg = "Will try a different candidate, due to conflict:" + for req_info in criterion.information: + req, parent = req_info.requirement, req_info.parent + # Inspired by Factory.get_installation_error + msg += "\n " + if parent: + msg += f"{parent.name} {parent.version} depends on " + else: + msg += "The user requested " + msg += req.format_for_error() + logger.debug(msg) + + +class PipDebuggingReporter(BaseReporter): + """A reporter that does an info log for every event it sees.""" + + def starting(self) -> None: + logger.info("Reporter.starting()") + + def starting_round(self, index: int) -> None: + logger.info("Reporter.starting_round(%r)", index) + + def ending_round(self, index: int, state: Any) -> None: + logger.info("Reporter.ending_round(%r, state)", index) + logger.debug("Reporter.ending_round(%r, %r)", index, state) + + def ending(self, state: Any) -> None: + logger.info("Reporter.ending(%r)", state) + + def adding_requirement(self, requirement: Requirement, parent: Candidate) -> None: + logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent) + + def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None: + logger.info("Reporter.rejecting_candidate(%r, %r)", criterion, candidate) + + def pinning(self, candidate: Candidate) -> None: + logger.info("Reporter.pinning(%r)", candidate) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 00000000..b04f41b2 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py @@ -0,0 +1,245 @@ +from typing import Any, Optional + +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.req.constructors import install_req_drop_extras +from pip._internal.req.req_install import InstallRequirement + +from .base import Candidate, CandidateLookup, Requirement, format_name + + +class ExplicitRequirement(Requirement): + def __init__(self, candidate: Candidate) -> None: + self.candidate = candidate + + def __str__(self) -> str: + return str(self.candidate) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.candidate!r})" + + def __hash__(self) -> int: + return hash(self.candidate) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, ExplicitRequirement): + return False + return self.candidate == other.candidate + + @property + def project_name(self) -> NormalizedName: + # No need to canonicalize - the candidate did this + return self.candidate.project_name + + @property + def name(self) -> str: + # No need to canonicalize - the candidate did this + return self.candidate.name + + def format_for_error(self) -> str: + return self.candidate.format_for_error() + + def get_candidate_lookup(self) -> CandidateLookup: + return self.candidate, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return candidate == self.candidate + + +class SpecifierRequirement(Requirement): + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = ireq + self._equal_cache: Optional[str] = None + self._hash: Optional[int] = None + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + @property + def _equal(self) -> str: + if self._equal_cache is not None: + return self._equal_cache + + self._equal_cache = str(self._ireq) + return self._equal_cache + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._ireq.req)!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, SpecifierRequirement): + return NotImplemented + return self._equal == other._equal + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash(self._equal) + return self._hash + + @property + def project_name(self) -> NormalizedName: + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + return canonicalize_name(self._ireq.req.name) + + @property + def name(self) -> str: + return format_name(self.project_name, self._extras) + + def format_for_error(self) -> str: + # Convert comma-separated specifiers into "A, B, ..., F and G" + # This makes the specifier a bit more "human readable", without + # risking a change in meaning. (Hopefully! Not all edge cases have + # been checked) + parts = [s.strip() for s in str(self).split(",")] + if len(parts) == 0: + return "" + elif len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def get_candidate_lookup(self) -> CandidateLookup: + return None, self._ireq + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self.name, ( + f"Internal issue: Candidate is not for this requirement " + f"{candidate.name} vs {self.name}" + ) + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + spec = self._ireq.req.specifier + return spec.contains(candidate.version, prereleases=True) + + +class SpecifierWithoutExtrasRequirement(SpecifierRequirement): + """ + Requirement backed by an install requirement on a base package. + Trims extras from its install requirement if there are any. + """ + + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = install_req_drop_extras(ireq) + self._equal_cache: Optional[str] = None + self._hash: Optional[int] = None + self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras) + + @property + def _equal(self) -> str: + if self._equal_cache is not None: + return self._equal_cache + + self._equal_cache = str(self._ireq) + return self._equal_cache + + def __eq__(self, other: object) -> bool: + if not isinstance(other, SpecifierWithoutExtrasRequirement): + return NotImplemented + return self._equal == other._equal + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash(self._equal) + return self._hash + + +class RequiresPythonRequirement(Requirement): + """A requirement representing Requires-Python metadata.""" + + def __init__(self, specifier: SpecifierSet, match: Candidate) -> None: + self.specifier = specifier + self._specifier_string = str(specifier) # for faster __eq__ + self._hash: Optional[int] = None + self._candidate = match + + def __str__(self) -> str: + return f"Python {self.specifier}" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self.specifier)!r})" + + def __hash__(self) -> int: + if self._hash is not None: + return self._hash + + self._hash = hash((self._specifier_string, self._candidate)) + return self._hash + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, RequiresPythonRequirement): + return False + return ( + self._specifier_string == other._specifier_string + and self._candidate == other._candidate + ) + + @property + def project_name(self) -> NormalizedName: + return self._candidate.project_name + + @property + def name(self) -> str: + return self._candidate.name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + if self.specifier.contains(self._candidate.version, prereleases=True): + return self._candidate, None + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self._candidate.name, "Not Python candidate" + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class UnsatisfiableRequirement(Requirement): + """A requirement that cannot be satisfied.""" + + def __init__(self, name: NormalizedName) -> None: + self._name = name + + def __str__(self) -> str: + return f"{self._name} (unavailable)" + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({str(self._name)!r})" + + def __eq__(self, other: object) -> bool: + if not isinstance(other, UnsatisfiableRequirement): + return NotImplemented + return self._name == other._name + + def __hash__(self) -> int: + return hash(self._name) + + @property + def project_name(self) -> NormalizedName: + return self._name + + @property + def name(self) -> str: + return self._name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return False diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 00000000..c12beef0 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,317 @@ +import contextlib +import functools +import logging +import os +from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible +from pip._vendor.resolvelib import Resolver as RLResolver +from pip._vendor.resolvelib.structs import DirectedGraph + +from pip._internal.cache import WheelCache +from pip._internal.index.package_finder import PackageFinder +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import install_req_extend_extras +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.resolution.resolvelib.provider import PipProvider +from pip._internal.resolution.resolvelib.reporter import ( + PipDebuggingReporter, + PipReporter, +) +from pip._internal.utils.packaging import get_requirement + +from .base import Candidate, Requirement +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.resolvers import Result as RLResult + + Result = RLResult[Requirement, Candidate, str] + + +logger = logging.getLogger(__name__) + + +class Resolver(BaseResolver): + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ): + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + self.factory = Factory( + finder=finder, + preparer=preparer, + make_install_req=make_install_req, + wheel_cache=wheel_cache, + use_user_site=use_user_site, + force_reinstall=force_reinstall, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + py_version_info=py_version_info, + ) + self.ignore_dependencies = ignore_dependencies + self.upgrade_strategy = upgrade_strategy + self._result: Optional[Result] = None + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + collected = self.factory.collect_root_requirements(root_reqs) + provider = PipProvider( + factory=self.factory, + constraints=collected.constraints, + ignore_dependencies=self.ignore_dependencies, + upgrade_strategy=self.upgrade_strategy, + user_requested=collected.user_requested, + ) + if "PIP_RESOLVER_DEBUG" in os.environ: + reporter: BaseReporter = PipDebuggingReporter() + else: + reporter = PipReporter() + resolver: RLResolver[Requirement, Candidate, str] = RLResolver( + provider, + reporter, + ) + + try: + limit_how_complex_resolution_can_be = 200000 + result = self._result = resolver.resolve( + collected.requirements, max_rounds=limit_how_complex_resolution_can_be + ) + + except ResolutionImpossible as e: + error = self.factory.get_installation_error( + cast("ResolutionImpossible[Requirement, Candidate]", e), + collected.constraints, + ) + raise error from e + + req_set = RequirementSet(check_supported_wheels=check_supported_wheels) + # process candidates with extras last to ensure their base equivalent is + # already in the req_set if appropriate. + # Python's sort is stable so using a binary key function keeps relative order + # within both subsets. + for candidate in sorted( + result.mapping.values(), key=lambda c: c.name != c.project_name + ): + ireq = candidate.get_install_requirement() + if ireq is None: + if candidate.name != candidate.project_name: + # extend existing req's extras + with contextlib.suppress(KeyError): + req = req_set.get_requirement(candidate.project_name) + req_set.add_named_requirement( + install_req_extend_extras( + req, get_requirement(candidate.name).extras + ) + ) + continue + + # Check if there is already an installation under the same name, + # and set a flag for later stages to uninstall it, if needed. + installed_dist = self.factory.get_dist_to_uninstall(candidate) + if installed_dist is None: + # There is no existing installation -- nothing to uninstall. + ireq.should_reinstall = False + elif self.factory.force_reinstall: + # The --force-reinstall flag is set -- reinstall. + ireq.should_reinstall = True + elif installed_dist.version != candidate.version: + # The installation is different in version -- reinstall. + ireq.should_reinstall = True + elif candidate.is_editable or installed_dist.editable: + # The incoming distribution is editable, or different in + # editable-ness to installation -- reinstall. + ireq.should_reinstall = True + elif candidate.source_link and candidate.source_link.is_file: + # The incoming distribution is under file:// + if candidate.source_link.is_wheel: + # is a local wheel -- do nothing. + logger.info( + "%s is already installed with the same version as the " + "provided wheel. Use --force-reinstall to force an " + "installation of the wheel.", + ireq.name, + ) + continue + + # is a local sdist or path -- reinstall + ireq.should_reinstall = True + else: + continue + + link = candidate.source_link + if link and link.is_yanked: + # The reason can contain non-ASCII characters, Unicode + # is required for Python 2. + msg = ( + "The candidate selected for download or install is a " + "yanked version: {name!r} candidate (version {version} " + "at {link})\nReason for being yanked: {reason}" + ).format( + name=candidate.name, + version=candidate.version, + link=link, + reason=link.yanked_reason or "", + ) + logger.warning(msg) + + req_set.add_named_requirement(ireq) + + reqs = req_set.all_requirements + self.factory.preparer.prepare_linked_requirements_more(reqs) + for req in reqs: + req.prepared = True + req.needs_more_preparation = False + return req_set + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Get order for installation of requirements in RequirementSet. + + The returned list contains a requirement before another that depends on + it. This helps ensure that the environment is kept consistent as they + get installed one-by-one. + + The current implementation creates a topological ordering of the + dependency graph, giving more weight to packages with less + or no dependencies, while breaking any cycles in the graph at + arbitrary points. We make no guarantees about where the cycle + would be broken, other than it *would* be broken. + """ + assert self._result is not None, "must call resolve() first" + + if not req_set.requirements: + # Nothing is left to install, so we do not need an order. + return [] + + graph = self._result.graph + weights = get_topological_weights(graph, set(req_set.requirements.keys())) + + sorted_items = sorted( + req_set.requirements.items(), + key=functools.partial(_req_set_item_sorter, weights=weights), + reverse=True, + ) + return [ireq for _, ireq in sorted_items] + + +def get_topological_weights( + graph: "DirectedGraph[Optional[str]]", requirement_keys: Set[str] +) -> Dict[Optional[str], int]: + """Assign weights to each node based on how "deep" they are. + + This implementation may change at any point in the future without prior + notice. + + We first simplify the dependency graph by pruning any leaves and giving them + the highest weight: a package without any dependencies should be installed + first. This is done again and again in the same way, giving ever less weight + to the newly found leaves. The loop stops when no leaves are left: all + remaining packages have at least one dependency left in the graph. + + Then we continue with the remaining graph, by taking the length for the + longest path to any node from root, ignoring any paths that contain a single + node twice (i.e. cycles). This is done through a depth-first search through + the graph, while keeping track of the path to the node. + + Cycles in the graph result would result in node being revisited while also + being on its own path. In this case, take no action. This helps ensure we + don't get stuck in a cycle. + + When assigning weight, the longer path (i.e. larger length) is preferred. + + We are only interested in the weights of packages that are in the + requirement_keys. + """ + path: Set[Optional[str]] = set() + weights: Dict[Optional[str], int] = {} + + def visit(node: Optional[str]) -> None: + if node in path: + # We hit a cycle, so we'll break it here. + return + + # Time to visit the children! + path.add(node) + for child in graph.iter_children(node): + visit(child) + path.remove(node) + + if node not in requirement_keys: + return + + last_known_parent_count = weights.get(node, 0) + weights[node] = max(last_known_parent_count, len(path)) + + # Simplify the graph, pruning leaves that have no dependencies. + # This is needed for large graphs (say over 200 packages) because the + # `visit` function is exponentially slower then, taking minutes. + # See https://github.com/pypa/pip/issues/10557 + # We will loop until we explicitly break the loop. + while True: + leaves = set() + for key in graph: + if key is None: + continue + for _child in graph.iter_children(key): + # This means we have at least one child + break + else: + # No child. + leaves.add(key) + if not leaves: + # We are done simplifying. + break + # Calculate the weight for the leaves. + weight = len(graph) - 1 + for leaf in leaves: + if leaf not in requirement_keys: + continue + weights[leaf] = weight + # Remove the leaves from the graph, making it simpler. + for leaf in leaves: + graph.remove(leaf) + + # Visit the remaining graph. + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity check: all requirement keys should be in the weights, + # and no other keys should be in the weights. + difference = set(weights.keys()).difference(requirement_keys) + assert not difference, difference + + return weights + + +def _req_set_item_sorter( + item: Tuple[str, InstallRequirement], + weights: Dict[Optional[str], int], +) -> Tuple[int, str]: + """Key function used to sort install requirements for installation. + + Based on the "weight" mapping calculated in ``get_installation_order()``. + The canonical package name is returned as the second member as a tie- + breaker to ensure the result is predictable, which is useful in tests. + """ + name = canonicalize_name(item[0]) + return weights[name], name diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 00000000..f9a91af9 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,244 @@ +import datetime +import functools +import hashlib +import json +import logging +import optparse +import os.path +import sys +from dataclasses import dataclass +from typing import Any, Callable, Dict, Optional + +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.rich.console import Group +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import get_default_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.entrypoints import ( + get_best_invocation_for_this_pip, + get_best_invocation_for_this_python, +) +from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace +from pip._internal.utils.misc import ensure_dir + +_WEEK = datetime.timedelta(days=7) + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key: str) -> str: + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +def _convert_date(isodate: str) -> datetime.datetime: + """Convert an ISO format string to a date. + + Handles the format 2020-01-22T14:24:01Z (trailing Z) + which is not supported by older versions of fromisoformat. + """ + return datetime.datetime.fromisoformat(isodate.replace("Z", "+00:00")) + + +class SelfCheckState: + def __init__(self, cache_dir: str) -> None: + self._state: Dict[str, Any] = {} + self._statefile_path = None + + # Try to load the existing state + if cache_dir: + self._statefile_path = os.path.join( + cache_dir, "selfcheck", _get_statefile_name(self.key) + ) + try: + with open(self._statefile_path, encoding="utf-8") as statefile: + self._state = json.load(statefile) + except (OSError, ValueError, KeyError): + # Explicitly suppressing exceptions, since we don't want to + # error out if the cache file is invalid. + pass + + @property + def key(self) -> str: + return sys.prefix + + def get(self, current_time: datetime.datetime) -> Optional[str]: + """Check if we have a not-outdated version loaded already.""" + if not self._state: + return None + + if "last_check" not in self._state: + return None + + if "pypi_version" not in self._state: + return None + + # Determine if we need to refresh the state + last_check = _convert_date(self._state["last_check"]) + time_since_last_check = current_time - last_check + if time_since_last_check > _WEEK: + return None + + return self._state["pypi_version"] + + def set(self, pypi_version: str, current_time: datetime.datetime) -> None: + # If we do not have a path to cache in, don't bother saving. + if not self._statefile_path: + return + + # Check to make sure that we own the directory + if not check_path_owner(os.path.dirname(self._statefile_path)): + return + + # Now that we've ensured the directory is owned by this user, we'll go + # ahead and make sure that all our directories are created. + ensure_dir(os.path.dirname(self._statefile_path)) + + state = { + # Include the key so it's easy to tell which pip wrote the + # file. + "key": self.key, + "last_check": current_time.isoformat(), + "pypi_version": pypi_version, + } + + text = json.dumps(state, sort_keys=True, separators=(",", ":")) + + with adjacent_tmp_file(self._statefile_path) as f: + f.write(text.encode()) + + try: + # Since we have a prefix-specific state file, we can just + # overwrite whatever is there, no need to check. + replace(f.name, self._statefile_path) + except OSError: + # Best effort. + pass + + +@dataclass +class UpgradePrompt: + old: str + new: str + + def __rich__(self) -> Group: + if WINDOWS: + pip_cmd = f"{get_best_invocation_for_this_python()} -m pip" + else: + pip_cmd = get_best_invocation_for_this_pip() + + notice = "[bold][[reset][blue]notice[reset][bold]][reset]" + return Group( + Text(), + Text.from_markup( + f"{notice} A new release of pip is available: " + f"[red]{self.old}[reset] -> [green]{self.new}[reset]" + ), + Text.from_markup( + f"{notice} To update, run: " + f"[green]{escape(pip_cmd)} install --upgrade pip" + ), + ) + + +def was_installed_by_pip(pkg: str) -> bool: + """Checks whether pkg was installed by pip + + This is used not to display the upgrade message when pip is in fact + installed by system package manager, such as dnf on Fedora. + """ + dist = get_default_environment().get_distribution(pkg) + return dist is not None and "pip" == dist.installer + + +def _get_current_remote_pip_version( + session: PipSession, options: optparse.Values +) -> Optional[str]: + # Lets use PackageFinder to see what the latest pip version is + link_collector = LinkCollector.create( + session, + options=options, + suppress_no_index=True, + ) + + # Pass allow_yanked=False so we don't suggest upgrading to a + # yanked version. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=False, # Explicitly set to False + ) + + finder = PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + ) + best_candidate = finder.find_best_candidate("pip").best_candidate + if best_candidate is None: + return None + + return str(best_candidate.version) + + +def _self_version_check_logic( + *, + state: SelfCheckState, + current_time: datetime.datetime, + local_version: Version, + get_remote_version: Callable[[], Optional[str]], +) -> Optional[UpgradePrompt]: + remote_version_str = state.get(current_time) + if remote_version_str is None: + remote_version_str = get_remote_version() + if remote_version_str is None: + logger.debug("No remote pip version found") + return None + state.set(remote_version_str, current_time) + + remote_version = parse_version(remote_version_str) + logger.debug("Remote version of pip: %s", remote_version) + logger.debug("Local version of pip: %s", local_version) + + pip_installed_by_pip = was_installed_by_pip("pip") + logger.debug("Was pip installed by pip? %s", pip_installed_by_pip) + if not pip_installed_by_pip: + return None # Only suggest upgrade if pip is installed by pip. + + local_version_is_older = ( + local_version < remote_version + and local_version.base_version != remote_version.base_version + ) + if local_version_is_older: + return UpgradePrompt(old=str(local_version), new=remote_version_str) + + return None + + +def pip_self_version_check(session: PipSession, options: optparse.Values) -> None: + """Check for an update for pip. + + Limit the frequency of checks to once per week. State is stored either in + the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix + of the pip script path. + """ + installed_dist = get_default_environment().get_distribution("pip") + if not installed_dist: + return + + upgrade_prompt = _self_version_check_logic( + state=SelfCheckState(cache_dir=options.cache_dir), + current_time=datetime.datetime.now(datetime.timezone.utc), + local_version=installed_dist.version, + get_remote_version=functools.partial( + _get_current_remote_pip_version, session, options + ), + ) + if upgrade_prompt is not None: + logger.warning("%s", upgrade_prompt, extra={"rich": True}) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e05b5fbb5855283e19c432001a9adaccda578255 GIT binary patch literal 240 zcmZ8bF>V4u47?3QiX!n3D8M3VBU-wMADny}>vmypcV!!*dj%zL;4S$6 zY3%W6M)Kce@?I58r`QhrGK^>3#>F{ReKj-R=Zas-bsIAGBe>KNY?E~qJ95EW2OCaX z+9`qjYJ)D$ZSWw(2VxMmfFh&i649p9DY#9qZAAx%QU1Ri##wp<}iX{QHh9TZEBMHI;+$)pYjWu<+V)>-ZD zytj%YPk;==p$yCrhE9`14|JxTmI71rN95vhh-8d zy>xBuzTNl#dcXhIdw(1sH#A(+(`Nn1xTgJ$Uiw$KH`u<4!41vQE@+l+g&h5YuAZR_ zAuIf|nUKrscYmooti|@UqcfVO9L)4?z9>^WD_Tp}|L$Oiw z{Si%@Z@IO=_FT!T!fVwV0rM_%!B&OWWNW4{YhEJYSAv9Llp9=fwmP6U1!t}oFxm2b zPjZU|9;SXTx(jRtpo(lZcuulkEa`Y)1n?wVDH zv&-DIJYlw$!Z34mH+$Og%Smd|Xdu&A|!fD{Lurmu|kR*eSa zJKzR}IlIPPpeVR6JgZd$R0?S+zDE=+)J#UYh*LZsF(MV-fK>89IefSkm5)xfk}T9An)`fUT0 zSfGUZ)nJ_*OOTjSdNtdGJZ5>dRuc;|DOA|1?EvrTpuyQhsmC!9BPGBNi-6~8u0J(! z13VK5TZLO3L^Y>nkqs0qqvUSklb-dLN88+ty46l1=v7;46K*^PJ0 z17u3$8m|Q;g~(Su2kxV#A$}}dr5Bu8#*|q_da1Q^-HHT)sS0l80A)nitGy}NFkw3q zs|y(P+O9#L`pXftU>U&iHn8_S(M@ON(j6yI0xx7(sW4wYpDJcpw!{{Tg=e$rOqxxk zN_d}$v-8>VLSd=QKv7KP%gd}V&rWtPjH%a$RuTwtWICn}o(-#j~)Db6iGa_V$8mn|>HjrnXjPcr8VMV4ZV zsbV=hx0Fj2+2T@hu~5oDeHvo(+5CJFS~BM{`EmkU@r`Ak#S1Gfq;fe@Wu%s1eUa>A zbA`p_V)o2JnJpA@=?p%e&cL$N>0G9(3X7V{rLyPZES)-+Iz!eKSpiat29b5GW9Jt# z^ojJP@IP117V@-=xkA2N#A_U@ES3kX=d-0uoTZA{5==Gbiv@@$IKctw5CXn@rYnV@ zRsan=0ulmj35)LA!qS;k4zfxHm}#<4oG?D23ZJj_3cV`#)LQ7boxtsec2&EgiwAW) z*M_MSsfMQ0ZxZ{ok`@c)JNjfy?-&Rq5lBi&yoHfel9<^)-%cVKcyi6FHMra44P;m& zxhT9fektHdxgJ!_hWmKUv6GSubdaPJwInJC4`i}#f-|6Uc!s-Nn1Lsf+`XK1>}t|) zBl+F$CBFMaQrZE3+&62N%sQ7zw2tJUbtGGX?Z{-M+Yu_NBl+#lSjF|+s$;sB1og_3 z_{n3qUDG~_?*CJC=DNJ`(pxXRQ`*5C%}it~ zE^+>^j4Q5Uodhol*kF@2uSpH$K9Yte|Jy>k#;Db7s6_#;6_@_*zqZ|!Q(f_~k6eFoee4&5oL(8rrGW`US_hTV(u#?H-f-_GMVI8%%+c=g~lY5QSeW7Gj!@}D3mQ5AvP(< zD?oV6M+H`!27+7Ru1c^9xX!-eMTz5Jc^W_Y5N_ABt%tOI2i}~0ZT9BL&FG`==y#$M zw<8nx0#4C1iQo2LaXYK&yP^)os~3SU!WC)l`K+eBs9)9B$W33mcDjgoVobY=gNzkE zuHCOp_G56TT<+-EfYfiGL4V_ktNPFM8@jH&aW*Iu#NRb(jy`rnlagG&B?mp8CG!_>`;l8u-8uS$>yfPy?SVsG>c4>6z}xG_ z-Er;Uk*|J9?Z6QK_x2QmEM$X>di7)#BJ zeDLisjbl2EXJ{OYcJ@{(I5$=*oiTOFr*xOGwsjen>gzM~($Ufa}<-wo;d(~98XEj9df Pbe}%C{m3KwA*KI6f|TKI literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c8778b8ad451ee777fab8f94bf4b4e1df0170f19 GIT binary patch literal 1911 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 X>Jp6=t0{o0+m8l+bpB*rez$)BuE{nU literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..602ea4cfecb80a2e449ff363c86b7497f7981da0 GIT binary patch literal 2952 zcmaJDTWlN0aqq#`krHW9jw~52&X#M7jighp#&KmgKx4(NT2)j{CyI#x#EG{gk2>8E zyGzp&q*M(8R02{+P6|jx6SQc5Y&byr+0W*yAN>)n0Cd+bV6;U6|1nVt6#44xQIr(f z=zzO(yF0I)*_q*AJ32H3Ffd>ia}k98DHd&r?S1T4B!o7Rg|f(!EZLE=vX7Ol;$t0U=kl?JglJ{s$?095fF;E2nHcyJscZceyQ5T|&?2w2sXUAaq+IaiCDkBhQi3B`C7J z3v#M^@y8ifEfjQCGMR4Kg#sp2x81!@>@t0Nft5U0zXb=j=ThBtExqEHtl*J(&9W&Y z_H31jqv5AQ*HlX4@wY+1*S~|?vyO#pk=fm_ag=YX~9`U6bao#u3AI4m7Az0`42;$SC%CSElC-a zQm2R@zX2x2CNjC{o9XG-rZSnyl*-i{r4Ely%vU_ZUL(XK{6xjB4CiiP*Ye14l{jGS z=rCN(A@FEXN+#kJ``=VZ)%CA_X_UNqY?Qrx3A^*S~lX=9z?kxkf8WrE?qr>06U{IUkp^BNGGmDrS zV4;z-U51HkI)<=~8hLLXoIG4v;GvR9bIhTn6U{b}k&)4s{AtI` zV+)FkP4z<6&5QCNs!Hpr>Q)u&%-gRqc`ydfzd!M&C@#JUKk^e`uvM05$*Ve+jv+Hy z)pVQ%z3Ay?&0N^K%@{Fl3Nq3eKaa=s8OTQe(mLoj+qcs_qUTNbJkw{fPOu5i5I5yo zIyaTRmY$qU&ny~WD{c|sco?jmK!}U)_Y!D{b4iQqE%3`Z|la^we2%M-R`@-)0NqdWp=?R zsG3iO-A|)1@z7o!<6(lSS0#DO!`RJxmhBdK5Q`#A^M}jCez7S7`zB&Ax1hY=1=>3Z zl?C+?I7quCX%TEFL&-P_mb4@`G$}qF2RGX z2Es!%TC@o+@UTgW6_ZfRm748x1zHl9U6zs;165WSx+ESavGXj|$3wZC<>hlZp4`9i zaNAT$&I|D&$14^gW<(S^uFwU_gKVK9c6{|90@4&jMBpF5B+z2Q!?~Ob9S=5xf*W?! zSrXbq|rSA`xT zy2(A{`^3)}9=*hd_VjTP~5_Z literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..71dc146a8ee9713ebaa025945dfa7d82cf2d98c9 GIT binary patch literal 5608 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 J>4N2nzX7)TwdMc- literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a7361f740c43faea3a8dd6b7fc3a1c5bb4a0579b GIT binary patch literal 4236 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8e09edd3181f64d93a3fe4365f90a0ad91282f1 GIT binary patch literal 3251 zcmbVO-ESMm5#Ku=KSWWYRa+l+8+jciwOCuc*a{NFO^Oz&hN4Ldak7C2q-qu>VUCwuwtz!zZQw(O zvr8W1d}wZB4f-zm6-d7^tL80Iu-G~n$Wmx;hrvBA6lHW7zD*lkF_$Su?=io{sS07B z2zy$;;MoI4?G2*Ozt-^J23T<;(G#POcPR0YC9Ci_oo; z&(4sM(XG^G>eKxBozpwDCmH*bOMlM1wL5xx;~T%Y`DtdhmrUeRJ(5VK_F)A%g8URH z5Xt*{&>coTAbfBN?i*@&3hEY2JJ!BS?k*E@-|QM7-2f?}(5h}H&94K)9dBK;n|M6< z%6;n#)?>DgwXPL=D~%7{?pls%5d7aF7Wv>^ivUNNYv0#!TZ)l;_~;?fG@P55X{V1w zeHPoyUxlMcfo6(GI)gJ+Na;KPfI2d=a3C^6km{iqL@7_A!9r34D;htVz-UC17l5D< zjU5?^GV!ZKMnVFiVge+AA=BLj5aey>An_S8_43Z0CzHkX<-N(7?K=YgA;nKzr z_NLEnw;!~(yAQfMHy_=9GX2)Z_xAD=TkXyE*87|9e^`5#zqmVn{$c)KX)=4cmmpKK zy)4O{5~soN$?*6+fMJ_d34mb$3ql^lY;5A2U89a5I@Z(>EOBxSqSEoCc(q(onOG;@ z`5a5b83&evR}QV4{POEQXXZ)14uN*)F!W)LfKPPI0pKl_i+4~TkEMfW9aDI$brS&D z81Tt2SdVEr*1E|!5*qNylK{`A;R71;@9C1Kxf-!IB<>*{Qhflt3X(AY8I*8&nT9~^ zqU}kjNy}lt2L<3ZC^=M{MJgR0FyV#rn*PR>0#V z3@&1ggn9@Y8@L(YI|}`(`3@Ayxhs^x=I0i*IRP~|Z22x-;WTtzD9DmS%-a}UjE0Ue z3n&mm|8fAfuj+5crsXgpp2UkqEp%zy^L<)xNk#jY9G&rsCqMxigtWswD<-h4z@r$Y z;IhF3S0LdCJZ1vPTa%lZMrjJW8SLifQl{?=ljNAbrII zhWA^69TqK#SJ`#adx^}PTfe@SKL0d*VK+0jmD|icy!$jWx0j!Lnt%D@!ftM2YiV=o z*Jq#Q=KelsfJiQA86 zk5190y?Agmbo_P5qjb5^}p%eoFknKv7u+w%FhL;;47iDd)2 zUcxYp=VV0xvVS2L{z2aSx0x`^UXCPR+_f&i6=2j{Pxo>;BlV%vBk9{7n(GmGd@}#X#Xl_Uqu4w5VqXo9zWOr)qIT!MkvcA- literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b8842d7d3fce353e4e6b2f074be585c56f8cc10 GIT binary patch literal 2193 zcma)7&2JM&6rcT!V>@wz<2p$pY)An+C|ME%f`)=bK4>c%PywkjAZxudvDew`x-(-S zk)x(nr8-rmBF3Bz%yRg*Wm_B*#!SUJOrf@-+ZZFA znu`iVlmUh2k%Fvd+XaIPqZ!RKvl`onxtq4GnP@bJXc411#A2cEoM3(gB^A?{M~YoU zRwAj`mU3&6=4~rAyXQ7(@HJ~cfZgS_D|^ZzN79IH7&FN*cKgi<5~^WJ9vL+62qv-| z86uVtawJkT4eErZXD4q?eKdPL^XarB6Qp51@5ni9mx{!Zn<+Xyhvn!9WRW;WmxiadA$QCO^CfO_Zb6iP*3`VcfYgGm=aIF5@}{BZ)mzvu zpm~Z^@`z@&yfvbmhDs2Ah_Fhqu4;rJO4OXjBB_=&(RE}YtWg`Q$a<)nMpi90i#0kn zt`dWyks>R*mP14>8bvi@SQKGPGu09`Ou~YiZ)vo+=!CQqwKL5!;Q^MX`&A`>vSkJQ z9RU3Us~r`g^4V@EvUYX#YBlvDbbL1&|52z;{t&1Jx1&Ql(cxNj_{qh3^xX6CxrW3- z8UfH9+YD|5tLN)ogIg!I#_C-sDu&tm=JLk!_g`#%UW+Gp;%95|v(Mu7_@&B+ER)TN zjfv{xdNlDooM?nV_o+r0guB)zRwrHsI(Gs?wZPEUbUiTqJTUW%zB4*i8=b0;&g=<% zSZ)AblK0q6K{DpZZlCA`yR+i(7~!}JWV%>nosZow9%lcDzzMMS&)mH;bJ1zvM`IV9 z@Bz$Rn|@QeF@4~c8b2_k#@}>f(v9h6|4QDtv0kItiDWXGW!Y4thHa5d#%a^-g`#01 z?2f$ms(uFexQmZ@iCtc>VaY^Su*yVtM#!&hX$Tz0y#gIC-Cz4l5d0ksG-M!$zsY== zSxZB;M|mVDDdJ%{87TBHzz6W@B7m+X!qnq zrQ>}m-Pde)LOWg+vZCNfm`91oU%1ejglJ3WRc6_ti>9R-x~wGxTPn$_4t4O#xtX&U zuguy$Q#EZNX`>rbl3XXYB-1>z1C&^0s%M)3xjf`+J{#YK#xk;apHqs>V|(AcF8a5B zxot)84lE!m=#973FpCnR{1t3DPIQaP8lI=JX%dQa2F0?bVM9|eAF7&$s#`1>4r3@& za7KfwS(s79a2i~Y89WMRq(ZouZA-91a;i?0BtAp3a+wiqL3uq;(g%afYKm-*r6RWOj8tZJ|T&YdfR z{SpisWpFM0mccTT;Y%8k;nEo)xL{c(JDy7ARjW{*OJPe!5NrPLZh+au)>Ky2X+x+3=H{VGy*m=y9v)AN2VUE5sjtc<8q{^16F<8`cQnPA@ zGEEDhQNY;G!H&Rd5p512f9QkhA5X7Iv4#{|7yWHRo4%kwu-T0|y6;LqIbN6gHef2s z@|Rb5=<&g`@iSna?My^PMbHHWh}7ERq@v_4Yt_Xq_G$H5A+KF@f}Z!~*1%Fti3`FT zWOu&0l7DSm(e>}6MXr_CisDlwZ^y??7A`_CdA)3t9D98XZ3UPGaofC|^sxix+7?^a z#0pyQ)qL~=Ybz|DMOS|Wp-r-QgmOx8hX7iWJnRepHz3&IMrs1A_p~0U`I&J0y*EhN z-V`HY$lB-4dE9J#1nJAiBE+%4jj79= z%MBomJSQTfY;kr4PGi7avNO~q1n%g-S=)ILoKB?%xUX&{?cl7#cg*(9sk$xks6^Xf z!y7^D(nlgnxkuQd!EA|#DqAW-fTa9V?SM%kAU`|Uly3VVuGoHNYN}-i z`8q~SJDQpJ-o*HKE}uSgej+n-`ohF4a87}{HE>P=$ixni>kx679b!NiIaMR}FbK-< zlK~G@jI7KfVFrSBhKHq$%N&WI-3|CGw20?9~5rUXQ0 z_>t`p@6cgOyE|t9_h#TbTXxvWjyC1Ax)`@7o*h7;-CPkoivAans!7LSS`r?{^QT4h z<^H#qs!#grQtU-6zC5`!xqN=<{HMJS2OkX9$4;)sPAy*8456Oba{p5QT6A9{y6@AW zhld^(2UiwW z<42zk*5l)g7e5cizZgi|oO-eMz$dl)wMSE{dym#TcE7+w4}%Ya4?7-oJi7XHY86k^ zJNEps8+)K;mS*b1M}8YS+U!`1?Qg{PKjXgxfAjnLde*~e0Dl-+??<~1ZSF>qcUHR& z*E^3qnXI>;s7ohk51jTDdgTP+(ChD@v7KIbO7wtgw+N-^{U?BRUMX@@eXX=oJ|I*0 zU*VQwhu3P=EfQJ~Ya$(b!(NfrO0QKDThvX(nlOuM;JgXp#)<#gLAQIRoBAaaA=kUY zEsLW(u2KFU#SYDZpK(*AoFV8Cf9;1?!e{$n0X@V!-i8lb&e0s!fO%z zIox?Cc`La%{vr~+GkWO3TL?u0Ot=(pQ=24NY7#$4j+f_D7jXMwhx!)xKe zMtE>7j2mHGZ`)UwhIZ;+iLM-88$R3^hWD|?@Ui+3q$=;N2czmo|`*sEX&^L2)V%>+@+V2E!1@HQQ+V!k& z<|QA2%;#lCOo-oo_uko+-uveoy$9D3d_Ni9;MIC^Ksfmb+EA^3t6hjZn%zWD{o|`2 Q3b2}SSNvsoU|f*?1?P<0RR910 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..882df651dc16bcd8612dcbc886d2151745fc3211 GIT binary patch literal 7374 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09d476d6901ce72350b5da4b57d51bde511a6667 GIT binary patch literal 1209 zcmZ8f&u`R56dwQFU5E81i-JI0Ou`|q6k7y@gn(9nmJ$i2C|TOb7vr^O*ADjBnwd>l zisqKN=s%bAhb;emBWTg4to9}&Z=FPnMxn9=* z8!Ibb?-vn(KltM9kY~=pOXfTU_dx(05D0-73yJ860{5j@N@Pc7zU(N0;;2xBl|b!^ zXIKub29;~f234najIWiv29>VpXvbo6W$c7AcZ{!d9%@j{xt%Mq#?d(u=-Rz~AI@rwGkb0m|= z^C&BHXZ_w0)|6(cy>h=p^l+iKZ)_fs6*BS?Sg07%K1RO4FESevvwR+GFn9{+yVzs! zV&(?|@5v5V9UCuZ>o0}J0)5+cunVv-5C@Ve=T|n%6OA_Rv&ZZj4|p99jEESX;irg1 z0mLvcJhn!Lhy5_xg+`aXzV(J5-o9;0nD1LCak>X_(Y&#F>(2V;ts{3cMO@c7 zp9l=&zmXlL3AA@oKZGcOVI29PeGjKQ@F9gZ*`pmVM5}%r*#zQUh;4#>+am;0V)s~u zHuX9&{1hUHJ(^-0qFpnXel8E-1y<=PHpvQuA^1~kjxK#??JtbAv%hKQ#@e~p+Vb$$q@w+* z8{>*GX`GzQ%^xr=*f1MK#dU+!cilo|Cq$@+d2@=>tPJa28CF?_l|;lpe8a{UcUrBx z@1G7UJV_!H7Y*0-5K3wJ(~0Y1m4$GHLzRQhm2xLd^3&*|#5Bn|p8{1~5Q zOWro}1B0m~2*Tf@Ajto!KsfUkSpB_udf1pOT^{NqW#sQ)9EIOEUW3b1QC$*;^>6y4 zt^MWE_P0+CfGUVn9i0E@$4_1@UHwpgb+UB*L+1KqarqeQ+>R6{}pIX URYh3XU!DSHo}K@Po3iHr0Sz!nuK)l5 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce86efe65a2cbc1f312ecdd4577f43fef3960397 GIT binary patch literal 2464 zcmb7G&2JM&6rb7k$J!2%GCGiMAbRPWwKtH!rBB*7Z{K{q zo%fsH+uzo#i6W3xN*}$p7NNhyi!Xtuu~-7*I?ACOw$N~+#lslhB}*#G!*Ve&9Ka|i z6PW}zz}UQ$3w#wA4z2J6!4qEL34uoePk;nTFfTP{hQS-D;I#6$*nTiAxys2BHyvBI z+~ApV$s%ru5?-dZAqMy&fg!`Qm;rSiaqM^8X&M(Xi(hA)8k^uFdcp2BEK_5I!af?KhNd${ zIMYUTn921Ki}VwlP@OweBlZOiK13^3c)_vvW_Itguv4;?!>m{wew zRhX-kES={aT686cxnUncK~}O%?yl|Q0LPIsCr2rDs2e^x)G(swbgSHOre(Kv)GlX5 zD*c#ToOQ!Za59k&RaI#WS{nA1cw+?A6k2LQO6+p=i|W;hd*L@1*0t9qB^dv`bJLA| zGy7_9@1O5HP*c_~#5!xStqbkR$BAtZ5b_q=EU254+K@h|*UDJzb{6A4u%A3T#XZ}a_CnZM!N zcbX7pZB=>7K0BoDM z6=|hHZH9;a0BQ==Lvk?wNJ-SUK)cYj<;K9wz-(Z?tGA|Xs4GG6ZQk`@^U=GTkJgl~ z`dZYzg|RCKwm zPeU^;eFxE;8tL09&-GxTwMgH7d2SyT`e5X6RQ@%BL9e(HB2(U#=mz6;Rj$d1a8asI zhM~5}m%cj#yu}?gM}Y2&CX_K=AS(-9G%60)uYtPCMVS@k)~IDnO#z|o^vhyeohU$o zf(7$>+2UetQY`U`KiXT&v{gfAjlC?#884UAybfh17lg3_sNn>}- zisHir(KoX0Dn6;vo#6Zw9;SlwC@YbkkMEfJcp)6Gg}WBkB_FpYr#IEsZLcZYy|R>! zQgL%>D=0SvxP$^u#X(YmEGkaZ3!p)X9=^mTR8$pj0go_UDbm1nODJ~*m*Q0H?{bpg7-2w-g^;8NcZ+YGfmy$Z Wqd0YS+q67AG_8EAEg^XIw*3#3CSxxE literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c305990e27fa027d4501424d029f51ded449e52 GIT binary patch literal 7648 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d5cabe9d6f8307fc4a4d6088e8c7afccec3a2481 GIT binary patch literal 13603 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 HE(HDoC{Uoa literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9d3a539a76b6531751592300b0e994fb0577832d GIT binary patch literal 33596 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..02dd10107a1e995162cca152ab571add36f7573a GIT binary patch literal 2628 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 US}O+q&~oglA;X&_jJQw!1H8E9p8x;= literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..196c0e582849df109e325a9e08bb21d06e27364d GIT binary patch literal 8684 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e84e668563c06c8d13636bf8665ff90308d22ada GIT binary patch literal 12069 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0ec019a73acf90455077658e4eb1fd6d67e89e28 GIT binary patch literal 2122 zcmah}O>7%Q6rSC+*FU?lx7hV~@FWsmUQ>Q=}l^5OIl=AfcXkv(7q+D#6H}_cJr! zzM1#F_ftzt9KlGZjmfuVgns8nFhV=Z))i20BNLf|jYb<%7!`b59F=?-0x6o39iEm) zWdWHX95KTPkY&W8!E)YzyTEG5 ze9L~DTc)t*Oyc?VeCm1Mo-gm*t}K*<5tI?+xHE8n_|EY6 z{mUKQ%SunB|7pDS)|tgKEAeCX__5mT5Au(R2Z@z*Up?Ko)W4h_T#jF=^sOq1%B3xU zM1-e)UzPJ`_N)9WsJz>#gz|eiz|X)ig`gg(atWDY3Ec(u-IE?RmeFSdYjPqV@OWp9 zi~N7q`WVDe7Rq8-f>|g*#!8|Yno2{sk{K?G&e7d^CbB7)#CgC3e}XB&N6ZM1>7E$G zxi2C$*tIM3$z46rN@7Xk$N@%K+VkBvOCmkTn#?Il!7ej8H3pGpN|G5n0;kQmANea_ zE8J!W0{r~JK--lwh^VkrHCv7%GXYkZpEHw3QCTWUz`xe{bbLSmnyhP(kk?OxKZJLR z`R|h30@jC(Ku>3&@&x@x39A_U#B&Wc`DM&G=K2cP_7V zbk{q&A01!rc)cDvQn^r>Szy)oYr=0zs(Q8d>CcB=T~D=0a#AF;GV{w2~5AXn1l#_MkS=$m+PyGXYp<&(){|}33)PDYpDcvdm1N~T z!V5DKC%pBL<1qQJ3@xq8@3DS%yac=ycLi-$&bquaH_{|Q3jFTnzu^PqBQ{<*`qs2- z7Hxcb>O-T@hH56MzEo-Q44ITOuwQtH1Az96CA`rFg78jcbPYA8mkxc}m KHnPoykNq#n^zixs literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..781d55dbfd4e68ce860ec22c7a3f96190ca00799 GIT binary patch literal 4511 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py new file mode 100644 index 00000000..6ccf53b7 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py @@ -0,0 +1,109 @@ +"""Functions brought over from jaraco.text. + +These functions are not supposed to be used within `pip._internal`. These are +helper functions brought over from `jaraco.text` to enable vendoring newer +copies of `pkg_resources` without having to vendor `jaraco.text` and its entire +dependency cone; something that our vendoring setup is not currently capable of +handling. + +License reproduced from original source below: + +Copyright Jason R. Coombs + +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. +""" + +import functools +import itertools + + +def _nonblank(str): + return str and not str.startswith("#") + + +@functools.singledispatch +def yield_lines(iterable): + r""" + Yield valid lines of a string or iterable. + + >>> list(yield_lines('')) + [] + >>> list(yield_lines(['foo', 'bar'])) + ['foo', 'bar'] + >>> list(yield_lines('foo\nbar')) + ['foo', 'bar'] + >>> list(yield_lines('\nfoo\n#bar\nbaz #comment')) + ['foo', 'baz #comment'] + >>> list(yield_lines(['foo\nbar', 'baz', 'bing\n\n\n'])) + ['foo', 'bar', 'baz', 'bing'] + """ + return itertools.chain.from_iterable(map(yield_lines, iterable)) + + +@yield_lines.register(str) +def _(text): + return filter(_nonblank, map(str.strip, text.splitlines())) + + +def drop_comment(line): + """ + Drop comments. + + >>> drop_comment('foo # bar') + 'foo' + + A hash without a space may be in a URL. + + >>> drop_comment('http://example.com/foo#bar') + 'http://example.com/foo#bar' + """ + return line.partition(" #")[0] + + +def join_continuation(lines): + r""" + Join lines continued by a trailing backslash. + + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar', 'baz'])) + ['foobar', 'baz'] + >>> list(join_continuation(['foo \\', 'bar \\', 'baz'])) + ['foobarbaz'] + + Not sure why, but... + The character preceding the backslash is also elided. + + >>> list(join_continuation(['goo\\', 'dly'])) + ['godly'] + + A terrible idea, but... + If no line is available to continue, suppress the lines. + + >>> list(join_continuation(['foo', 'bar\\', 'baz\\'])) + ['foo'] + """ + lines = iter(lines) + for item in lines: + while item.endswith("\\"): + try: + item = item[:-2].strip() + next(lines) + except StopIteration: + return + yield item diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/_log.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 00000000..92c4c6a1 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/_log.py @@ -0,0 +1,38 @@ +"""Customize logging + +Defines custom logger class for the `logger.verbose(...)` method. + +init_logging() must be called before any other modules that call logging.getLogger. +""" + +import logging +from typing import Any, cast + +# custom log level for `--verbose` output +# between DEBUG and INFO +VERBOSE = 15 + + +class VerboseLogger(logging.Logger): + """Custom Logger, defining a verbose log-level + + VERBOSE is between INFO and DEBUG. + """ + + def verbose(self, msg: str, *args: Any, **kwargs: Any) -> None: + return self.log(VERBOSE, msg, *args, **kwargs) + + +def getLogger(name: str) -> VerboseLogger: + """logging.getLogger, but ensures our VerboseLogger class is returned""" + return cast(VerboseLogger, logging.getLogger(name)) + + +def init_logging() -> None: + """Register our VerboseLogger and VERBOSE log level. + + Should be called before any calls to getLogger(), + i.e. in pip._internal.__init__ + """ + logging.setLoggerClass(VerboseLogger) + logging.addLevelName(VERBOSE, "VERBOSE") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 00000000..16933bf8 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,52 @@ +""" +This code wraps the vendored appdirs module to so the return values are +compatible for the current pip code base. + +The intention is to rewrite current usages gradually, keeping the tests pass, +and eventually drop this after all usages are changed. +""" + +import os +import sys +from typing import List + +from pip._vendor import platformdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def _macos_user_config_dir(appname: str, roaming: bool = True) -> str: + # Use ~/Application Support/pip, if the directory exists. + path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming) + if os.path.isdir(path): + return path + + # Use a Linux-like ~/.config/pip, by default. + linux_like_path = "~/.config/" + if appname: + linux_like_path = os.path.join(linux_like_path, appname) + + return os.path.expanduser(linux_like_path) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + if sys.platform == "darwin": + return _macos_user_config_dir(appname, roaming) + + return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> List[str]: + if sys.platform == "darwin": + return [_appdirs.site_data_dir(appname, appauthor=False, multipath=True)] + + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if sys.platform == "win32": + return [dirval] + + # Unix-y system. Look in /etc as well. + return dirval.split(os.pathsep) + ["/etc"] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/compat.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 00000000..d8b54e4e --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/compat.py @@ -0,0 +1,79 @@ +"""Stuff that differs in different Python versions and platform +distributions.""" + +import importlib.resources +import logging +import os +import sys +from typing import IO + +__all__ = ["get_path_uid", "stdlib_pkgs", "WINDOWS"] + + +logger = logging.getLogger(__name__) + + +def has_tls() -> bool: + try: + import _ssl # noqa: F401 # ignore unused + + return True + except ImportError: + pass + + from pip._vendor.urllib3.util import IS_PYOPENSSL + + return IS_PYOPENSSL + + +def get_path_uid(path: str) -> int: + """ + Return path's uid. + + Does not follow symlinks: + https://github.com/pypa/pip/pull/935#discussion_r5307003 + + Placed this function in compat due to differences on AIX and + Jython, that should eventually go away. + + :raises OSError: When path is a symlink or can't be read. + """ + if hasattr(os, "O_NOFOLLOW"): + fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW) + file_uid = os.fstat(fd).st_uid + os.close(fd) + else: # AIX and Jython + # WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW + if not os.path.islink(path): + # older versions of Jython don't have `os.fstat` + file_uid = os.stat(path).st_uid + else: + # raise OSError for parity with os.O_NOFOLLOW above + raise OSError(f"{path} is a symlink; Will not return uid for symlinks") + return file_uid + + +# The importlib.resources.open_text function was deprecated in 3.11 with suggested +# replacement we use below. +if sys.version_info < (3, 11): + open_text_resource = importlib.resources.open_text +else: + + def open_text_resource( + package: str, resource: str, encoding: str = "utf-8", errors: str = "strict" + ) -> IO[str]: + return (importlib.resources.files(package) / resource).open( + "r", encoding=encoding, errors=errors + ) + + +# packages in the stdlib that may have installation metadata, but should not be +# considered 'installed'. this theoretically could be determined based on +# dist.location (py27:`sysconfig.get_paths()['stdlib']`, +# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may +# make this ineffective, so hard-coding +stdlib_pkgs = {"python", "wsgiref", "argparse"} + + +# windows detection, covers cpython and ironpython +WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 00000000..b6ed9a78 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,165 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + PythonVersion, + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + mac_platforms, +) + +_osx_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") + + +def version_info_to_nodot(version_info: Tuple[int, ...]) -> str: + # Only use up to the first two numbers. + return "".join(map(str, version_info[:2])) + + +def _mac_platforms(arch: str) -> List[str]: + match = _osx_arch_pat.match(arch) + if match: + name, major, minor, actual_arch = match.groups() + mac_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "macosx", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "macosxcustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("macosx_") :]) + for arch in mac_platforms(mac_version, actual_arch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _custom_manylinux_platforms(arch: str) -> List[str]: + arches = [arch] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch_prefix == "manylinux2014": + # manylinux1/manylinux2010 wheels run on most manylinux2014 systems + # with the exception of wheels depending on ncurses. PEP 599 states + # manylinux1/manylinux2010 wheels should be considered + # manylinux2014 wheels: + # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels + if arch_suffix in {"i686", "x86_64"}: + arches.append("manylinux2010" + arch_sep + arch_suffix) + arches.append("manylinux1" + arch_sep + arch_suffix) + elif arch_prefix == "manylinux2010": + # manylinux1 wheels run on most manylinux2010 systems with the + # exception of wheels depending on ncurses. PEP 571 states + # manylinux1 wheels should be considered manylinux2010 wheels: + # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels + arches.append("manylinux1" + arch_sep + arch_suffix) + return arches + + +def _get_custom_platforms(arch: str) -> List[str]: + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch.startswith("macosx"): + arches = _mac_platforms(arch) + elif arch_prefix in ["manylinux2014", "manylinux2010"]: + arches = _custom_manylinux_platforms(arch) + else: + arches = [arch] + return arches + + +def _expand_allowed_platforms(platforms: Optional[List[str]]) -> Optional[List[str]]: + if not platforms: + return None + + seen = set() + result = [] + + for p in platforms: + if p in seen: + continue + additions = [c for c in _get_custom_platforms(p) if c not in seen] + seen.update(additions) + result.extend(additions) + + return result + + +def _get_python_version(version: str) -> PythonVersion: + if len(version) > 1: + return int(version[0]), int(version[1:]) + else: + return (int(version[0]),) + + +def _get_custom_interpreter( + implementation: Optional[str] = None, version: Optional[str] = None +) -> str: + if implementation is None: + implementation = interpreter_name() + if version is None: + version = interpreter_version() + return f"{implementation}{version}" + + +def get_supported( + version: Optional[str] = None, + platforms: Optional[List[str]] = None, + impl: Optional[str] = None, + abis: Optional[List[str]] = None, +) -> List[Tag]: + """Return a list of supported tags for each version specified in + `versions`. + + :param version: a string version, of the form "33" or "32", + or None. The version will be assumed to support our ABI. + :param platform: specify a list of platforms you want valid + tags for, or None. If None, use the local system platform. + :param impl: specify the exact implementation you want valid + tags for, or None. If None, use the local interpreter impl. + :param abis: specify a list of abis you want valid + tags for, or None. If None, use the local interpreter abi. + """ + supported: List[Tag] = [] + + python_version: Optional[PythonVersion] = None + if version is not None: + python_version = _get_python_version(version) + + interpreter = _get_custom_interpreter(impl, version) + + platforms = _expand_allowed_platforms(platforms) + + is_cpython = (impl or interpreter_name()) == "cp" + if is_cpython: + supported.extend( + cpython_tags( + python_version=python_version, + abis=abis, + platforms=platforms, + ) + ) + else: + supported.extend( + generic_tags( + interpreter=interpreter, + abis=abis, + platforms=platforms, + ) + ) + supported.extend( + compatible_tags( + python_version=python_version, + interpreter=interpreter, + platforms=platforms, + ) + ) + + return supported diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/datetime.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 00000000..8668b3b0 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/datetime.py @@ -0,0 +1,11 @@ +"""For when pip wants to check the date or time. +""" + +import datetime + + +def today_is_later_than(year: int, month: int, day: int) -> bool: + today = datetime.date.today() + given = datetime.date(year, month, day) + + return today > given diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 00000000..0911147e --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,124 @@ +""" +A module that implements tooling to enable easy warnings about deprecations. +""" + +import logging +import warnings +from typing import Any, Optional, TextIO, Type, Union + +from pip._vendor.packaging.version import parse + +from pip import __version__ as current_version # NOTE: tests patch this name. + +DEPRECATION_MSG_PREFIX = "DEPRECATION: " + + +class PipDeprecationWarning(Warning): + pass + + +_original_showwarning: Any = None + + +# Warnings <-> Logging Integration +def _showwarning( + message: Union[Warning, str], + category: Type[Warning], + filename: str, + lineno: int, + file: Optional[TextIO] = None, + line: Optional[str] = None, +) -> None: + if file is not None: + if _original_showwarning is not None: + _original_showwarning(message, category, filename, lineno, file, line) + elif issubclass(category, PipDeprecationWarning): + # We use a specially named logger which will handle all of the + # deprecation messages for pip. + logger = logging.getLogger("pip._internal.deprecations") + logger.warning(message) + else: + _original_showwarning(message, category, filename, lineno, file, line) + + +def install_warning_logger() -> None: + # Enable our Deprecation Warnings + warnings.simplefilter("default", PipDeprecationWarning, append=True) + + global _original_showwarning + + if _original_showwarning is None: + _original_showwarning = warnings.showwarning + warnings.showwarning = _showwarning + + +def deprecated( + *, + reason: str, + replacement: Optional[str], + gone_in: Optional[str], + feature_flag: Optional[str] = None, + issue: Optional[int] = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. Should be a complete sentence. + replacement: + Textual suggestion shown to the user about what alternative + functionality they can use. + gone_in: + The version of pip does this functionality should get removed in. + Raises an error if pip's current version is greater than or equal to + this. + feature_flag: + Command-line flag of the form --use-feature={feature_flag} for testing + upcoming functionality. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + """ + + # Determine whether or not the feature is already gone in this version. + is_gone = gone_in is not None and parse(current_version) >= parse(gone_in) + + message_parts = [ + (reason, f"{DEPRECATION_MSG_PREFIX}{{}}"), + ( + gone_in, + ( + "pip {} will enforce this behaviour change." + if not is_gone + else "Since pip {}, this is no longer supported." + ), + ), + ( + replacement, + "A possible replacement is {}.", + ), + ( + feature_flag, + ( + "You can use the flag --use-feature={} to test the upcoming behaviour." + if not is_gone + else None + ), + ), + ( + issue, + "Discussion can be found at https://github.com/pypa/pip/issues/{}", + ), + ] + + message = " ".join( + format_str.format(value) + for value, format_str in message_parts + if format_str is not None and value is not None + ) + + # Raise as an error if this behaviour is deprecated. + if is_gone: + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 00000000..66020d39 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,87 @@ +from typing import Optional + +from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + + +def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str: + """Convert a DirectUrl to a pip requirement string.""" + direct_url.validate() # if invalid, this is a pip bug + requirement = name + " @ " + fragments = [] + if isinstance(direct_url.info, VcsInfo): + requirement += ( + f"{direct_url.info.vcs}+{direct_url.url}@{direct_url.info.commit_id}" + ) + elif isinstance(direct_url.info, ArchiveInfo): + requirement += direct_url.url + if direct_url.info.hash: + fragments.append(direct_url.info.hash) + else: + assert isinstance(direct_url.info, DirInfo) + requirement += direct_url.url + if direct_url.subdirectory: + fragments.append("subdirectory=" + direct_url.subdirectory) + if fragments: + requirement += "#" + "&".join(fragments) + return requirement + + +def direct_url_for_editable(source_dir: str) -> DirectUrl: + return DirectUrl( + url=path_to_url(source_dir), + info=DirInfo(editable=True), + ) + + +def direct_url_from_link( + link: Link, source_dir: Optional[str] = None, link_is_in_wheel_cache: bool = False +) -> DirectUrl: + if link.is_vcs: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend + url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( + link.url_without_fragment + ) + # For VCS links, we need to find out and add commit_id. + if link_is_in_wheel_cache: + # If the requested VCS link corresponds to a cached + # wheel, it means the requested revision was an + # immutable commit hash, otherwise it would not have + # been cached. In that case we don't have a source_dir + # with the VCS checkout. + assert requested_revision + commit_id = requested_revision + else: + # If the wheel was not in cache, it means we have + # had to checkout from VCS to build and we have a source_dir + # which we can inspect to find out the commit id. + assert source_dir + commit_id = vcs_backend.get_revision(source_dir) + return DirectUrl( + url=url, + info=VcsInfo( + vcs=vcs_backend.name, + commit_id=commit_id, + requested_revision=requested_revision, + ), + subdirectory=link.subdirectory_fragment, + ) + elif link.is_existing_dir(): + return DirectUrl( + url=link.url_without_fragment, + info=DirInfo(), + subdirectory=link.subdirectory_fragment, + ) + else: + hash = None + hash_name = link.hash_name + if hash_name: + hash = f"{hash_name}={link.hash}" + return DirectUrl( + url=link.url_without_fragment, + info=ArchiveInfo(hash=hash), + subdirectory=link.subdirectory_fragment, + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 00000000..4a384a63 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py @@ -0,0 +1,80 @@ +import os +import re +import sys +from typing import List, Optional + +from pip._internal.locations import site_packages, user_site +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "egg_link_path_from_sys_path", + "egg_link_path_from_location", +] + + +def _egg_link_names(raw_name: str) -> List[str]: + """ + Convert a Name metadata value to a .egg-link name, by applying + the same substitution as pkg_resources's safe_name function. + Note: we cannot use canonicalize_name because it has a different logic. + + We also look for the raw name (without normalization) as setuptools 69 changed + the way it names .egg-link files (https://github.com/pypa/setuptools/issues/4167). + """ + return [ + re.sub("[^A-Za-z0-9.]+", "-", raw_name) + ".egg-link", + f"{raw_name}.egg-link", + ] + + +def egg_link_path_from_sys_path(raw_name: str) -> Optional[str]: + """ + Look for a .egg-link file for project name, by walking sys.path. + """ + egg_link_names = _egg_link_names(raw_name) + for path_item in sys.path: + for egg_link_name in egg_link_names: + egg_link = os.path.join(path_item, egg_link_name) + if os.path.isfile(egg_link): + return egg_link + return None + + +def egg_link_path_from_location(raw_name: str) -> Optional[str]: + """ + Return the path for the .egg-link file if it exists, otherwise, None. + + There's 3 scenarios: + 1) not in a virtualenv + try to find in site.USER_SITE, then site_packages + 2) in a no-global virtualenv + try to find in site_packages + 3) in a yes-global virtualenv + try to find in site_packages, then site.USER_SITE + (don't look in global location) + + For #1 and #3, there could be odd cases, where there's an egg-link in 2 + locations. + + This method will just return the first one found. + """ + sites: List[str] = [] + if running_under_virtualenv(): + sites.append(site_packages) + if not virtualenv_no_global() and user_site: + sites.append(user_site) + else: + if user_site: + sites.append(user_site) + sites.append(site_packages) + + egg_link_names = _egg_link_names(raw_name) + for site in sites: + for egg_link_name in egg_link_names: + egglink = os.path.join(site, egg_link_name) + if os.path.isfile(egglink): + return egglink + return None diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/encoding.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 00000000..008f06a7 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/encoding.py @@ -0,0 +1,36 @@ +import codecs +import locale +import re +import sys +from typing import List, Tuple + +BOMS: List[Tuple[bytes, str]] = [ + (codecs.BOM_UTF8, "utf-8"), + (codecs.BOM_UTF16, "utf-16"), + (codecs.BOM_UTF16_BE, "utf-16-be"), + (codecs.BOM_UTF16_LE, "utf-16-le"), + (codecs.BOM_UTF32, "utf-32"), + (codecs.BOM_UTF32_BE, "utf-32-be"), + (codecs.BOM_UTF32_LE, "utf-32-le"), +] + +ENCODING_RE = re.compile(rb"coding[:=]\s*([-\w.]+)") + + +def auto_decode(data: bytes) -> str: + """Check a bytes string for a BOM to correctly detect the encoding + + Fallback to locale.getpreferredencoding(False) like open() on Python3""" + for bom, encoding in BOMS: + if data.startswith(bom): + return data[len(bom) :].decode(encoding) + # Lets check the first two lines as in PEP263 + for line in data.split(b"\n")[:2]: + if line[0:1] == b"#" and ENCODING_RE.search(line): + result = ENCODING_RE.search(line) + assert result is not None + encoding = result.groups()[0].decode("ascii") + return data.decode(encoding) + return data.decode( + locale.getpreferredencoding(False) or sys.getdefaultencoding(), + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 00000000..15013693 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,84 @@ +import itertools +import os +import shutil +import sys +from typing import List, Optional + +from pip._internal.cli.main import main +from pip._internal.utils.compat import WINDOWS + +_EXECUTABLE_NAMES = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", +] +if WINDOWS: + _allowed_extensions = {"", ".exe"} + _EXECUTABLE_NAMES = [ + "".join(parts) + for parts in itertools.product(_EXECUTABLE_NAMES, _allowed_extensions) + ] + + +def _wrapper(args: Optional[List[str]] = None) -> int: + """Central wrapper for all old entrypoints. + + Historically pip has had several entrypoints defined. Because of issues + arising from PATH, sys.path, multiple Pythons, their interactions, and most + of them having a pip installed, users suffer every time an entrypoint gets + moved. + + To alleviate this pain, and provide a mechanism for warning users and + directing them to an appropriate place for help, we now define all of + our old entrypoints as wrappers for the current one. + """ + sys.stderr.write( + "WARNING: pip is being invoked by an old script wrapper. This will " + "fail in a future version of pip.\n" + "Please see https://github.com/pypa/pip/issues/5599 for advice on " + "fixing the underlying issue.\n" + "To avoid this problem you can invoke Python with '-m pip' instead of " + "running pip directly.\n" + ) + return main(args) + + +def get_best_invocation_for_this_pip() -> str: + """Try to figure out the best way to invoke pip in the current environment.""" + binary_directory = "Scripts" if WINDOWS else "bin" + binary_prefix = os.path.join(sys.prefix, binary_directory) + + # Try to use pip[X[.Y]] names, if those executables for this environment are + # the first on PATH with that name. + path_parts = os.path.normcase(os.environ.get("PATH", "")).split(os.pathsep) + exe_are_in_PATH = os.path.normcase(binary_prefix) in path_parts + if exe_are_in_PATH: + for exe_name in _EXECUTABLE_NAMES: + found_executable = shutil.which(exe_name) + binary_executable = os.path.join(binary_prefix, exe_name) + if ( + found_executable + and os.path.exists(binary_executable) + and os.path.samefile( + found_executable, + binary_executable, + ) + ): + return exe_name + + # Use the `-m` invocation, if there's no "nice" invocation. + return f"{get_best_invocation_for_this_python()} -m pip" + + +def get_best_invocation_for_this_python() -> str: + """Try to figure out the best way to invoke the current Python.""" + exe = sys.executable + exe_name = os.path.basename(exe) + + # Try to use the basename, if it's the first executable. + found_executable = shutil.which(exe_name) + if found_executable and os.path.samefile(found_executable, exe): + return exe_name + + # Use the full executable name, because we couldn't find something simpler. + return exe diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 00000000..22e356cd --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,149 @@ +import fnmatch +import os +import os.path +import random +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Generator, List, Union, cast + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size +from pip._internal.utils.retry import retry + + +def check_path_owner(path: str) -> bool: + # If we don't have a way to check the effective uid of this process, then + # we'll just assume that we own the directory. + if sys.platform == "win32" or not hasattr(os, "geteuid"): + return True + + assert os.path.isabs(path) + + previous = None + while path != previous: + if os.path.lexists(path): + # Check if path is writable by current user. + if os.geteuid() == 0: + # Special handling for root user in order to handle properly + # cases where users use sudo without -H flag. + try: + path_uid = get_path_uid(path) + except OSError: + return False + return path_uid == 0 + else: + return os.access(path, os.W_OK) + else: + previous, path = path, os.path.dirname(path) + return False # assume we don't own the path + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Generator[BinaryIO, None, None]: + """Return a file-like object pointing to a tmp file next to path. + + The file is created securely and is ensured to be written to disk + after the context reaches its end. + + kwargs will be passed to tempfile.NamedTemporaryFile to control + the way the temporary file will be opened. + """ + with NamedTemporaryFile( + delete=False, + dir=os.path.dirname(path), + prefix=os.path.basename(path), + suffix=".tmp", + **kwargs, + ) as f: + result = cast(BinaryIO, f) + try: + yield result + finally: + result.flush() + os.fsync(result.fileno()) + + +replace = retry(stop_after_delay=1, wait=0.25)(os.replace) + + +# test_writable_dir and _test_writable_dir_win are copied from Flit, +# with the author's agreement to also place them under pip's license. +def test_writable_dir(path: str) -> bool: + """Check if a directory is writable. + + Uses os.access() on POSIX, tries creating files on Windows. + """ + # If the directory doesn't exist, find the closest parent that does. + while not os.path.isdir(path): + parent = os.path.dirname(path) + if parent == path: + break # Should never get here, but infinite loops are bad + path = parent + + if os.name == "posix": + return os.access(path, os.W_OK) + + return _test_writable_dir_win(path) + + +def _test_writable_dir_win(path: str) -> bool: + # os.access doesn't work on Windows: http://bugs.python.org/issue2528 + # and we can't use tempfile: http://bugs.python.org/issue22107 + basename = "accesstest_deleteme_fishfingers_custard_" + alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" + for _ in range(10): + name = basename + "".join(random.choice(alphabet) for _ in range(6)) + file = os.path.join(path, name) + try: + fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) + except FileExistsError: + pass + except PermissionError: + # This could be because there's a directory with the same name. + # But it's highly unlikely there's a directory called that, + # so we'll assume it's because the parent dir is not writable. + # This could as well be because the parent dir is not readable, + # due to non-privileged user access. + return False + else: + os.close(fd) + os.unlink(file) + return True + + # This should never be reached + raise OSError("Unexpected condition testing for writable directory") + + +def find_files(path: str, pattern: str) -> List[str]: + """Returns a list of absolute paths of files beneath path, recursively, + with filenames which match the UNIX-style shell glob pattern.""" + result: List[str] = [] + for root, _, files in os.walk(path): + matches = fnmatch.filter(files, pattern) + result.extend(os.path.join(root, f) for f in matches) + return result + + +def file_size(path: str) -> Union[int, float]: + # If it's a symlink, return 0. + if os.path.islink(path): + return 0 + return os.path.getsize(path) + + +def format_file_size(path: str) -> str: + return format_size(file_size(path)) + + +def directory_size(path: str) -> Union[int, float]: + size = 0.0 + for root, _dirs, files in os.walk(path): + for filename in files: + file_path = os.path.join(root, filename) + size += file_size(file_path) + return size + + +def format_directory_size(path: str) -> str: + return format_size(directory_size(path)) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 00000000..59485701 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,27 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS: Tuple[str, ...] = (".tar.bz2", ".tbz") +XZ_EXTENSIONS: Tuple[str, ...] = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) +ZIP_EXTENSIONS: Tuple[str, ...] = (".zip", WHEEL_EXTENSION) +TAR_EXTENSIONS: Tuple[str, ...] = (".tar.gz", ".tgz", ".tar") +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name: str) -> bool: + """Return True if `name` is a considered as an archive file.""" + ext = splitext(name)[1].lower() + if ext in ARCHIVE_EXTENSIONS: + return True + return False diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/glibc.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 00000000..998868ff --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,101 @@ +import os +import sys +from typing import Optional, Tuple + + +def glibc_version_string() -> Optional[str]: + "Returns glibc version string, or None if not using glibc." + return glibc_version_string_confstr() or glibc_version_string_ctypes() + + +def glibc_version_string_confstr() -> Optional[str]: + "Primary implementation of glibc_version_string using os.confstr." + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module: + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 + if sys.platform == "win32": + return None + try: + gnu_libc_version = os.confstr("CS_GNU_LIBC_VERSION") + if gnu_libc_version is None: + return None + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = gnu_libc_version.split() + except (AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def glibc_version_string_ctypes() -> Optional[str]: + "Fallback implementation of glibc_version_string using ctypes." + + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can't proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +# platform.libc_ver regularly returns completely nonsensical glibc +# versions. E.g. on my computer, platform says: +# +# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.7') +# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.9') +# +# But the truth is: +# +# ~$ ldd --version +# ldd (Debian GLIBC 2.22-11) 2.22 +# +# This is unfortunate, because it means that the linehaul data on libc +# versions that was generated by pip 8.1.2 and earlier is useless and +# misleading. Solution: instead of using platform, use our code that actually +# works. +def libc_ver() -> Tuple[str, str]: + """Try to determine the glibc version + + Returns a tuple of strings (lib, version) which default to empty strings + in case the lookup fails. + """ + glibc_version = glibc_version_string() + if glibc_version is None: + return ("", "") + else: + return ("glibc", glibc_version) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/hashes.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 00000000..535e94fc --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,147 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterable, List, NoReturn, Optional + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + +# The recommended hash algo of the moment. Change this whenever the state of +# the art changes; it won't hurt backward compatibility. +FAVORITE_HASH = "sha256" + + +# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` +# Currently, those are the ones at least as collision-resistant as sha256. +STRONG_HASHES = ["sha256", "sha384", "sha512"] + + +class Hashes: + """A wrapper that builds multiple hashes at once and checks them against + known-good values + + """ + + def __init__(self, hashes: Optional[Dict[str, List[str]]] = None) -> None: + """ + :param hashes: A dict of algorithm names pointing to lists of allowed + hex digests + """ + allowed = {} + if hashes is not None: + for alg, keys in hashes.items(): + # Make sure values are always sorted (to ease equality checks) + allowed[alg] = [k.lower() for k in sorted(keys)] + self._allowed = allowed + + def __and__(self, other: "Hashes") -> "Hashes": + if not isinstance(other, Hashes): + return NotImplemented + + # If either of the Hashes object is entirely empty (i.e. no hash + # specified at all), all hashes from the other object are allowed. + if not other: + return self + if not self: + return other + + # Otherwise only hashes that present in both objects are allowed. + new = {} + for alg, values in other._allowed.items(): + if alg not in self._allowed: + continue + new[alg] = [v for v in values if v in self._allowed[alg]] + return Hashes(new) + + @property + def digest_count(self) -> int: + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed(self, hash_name: str, hex_digest: str) -> bool: + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks: Iterable[bytes]) -> None: + """Check good hashes against ones built from iterable of chunks of + data. + + Raise HashMismatch if none match. + + """ + gots = {} + for hash_name in self._allowed.keys(): + try: + gots[hash_name] = hashlib.new(hash_name) + except (ValueError, TypeError): + raise InstallationError(f"Unknown hash name: {hash_name}") + + for chunk in chunks: + for hash in gots.values(): + hash.update(chunk) + + for hash_name, got in gots.items(): + if got.hexdigest() in self._allowed[hash_name]: + return + self._raise(gots) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file: BinaryIO) -> None: + """Check good hashes against a file-like object + + Raise HashMismatch if none match. + + """ + return self.check_against_chunks(read_chunks(file)) + + def check_against_path(self, path: str) -> None: + with open(path, "rb") as file: + return self.check_against_file(file) + + def has_one_of(self, hashes: Dict[str, str]) -> bool: + """Return whether any of the given hashes are allowed.""" + for hash_name, hex_digest in hashes.items(): + if self.is_hash_allowed(hash_name, hex_digest): + return True + return False + + def __bool__(self) -> bool: + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self) -> int: + return hash( + ",".join( + sorted( + ":".join((alg, digest)) + for alg, digest_list in self._allowed.items() + for digest in digest_list + ) + ) + ) + + +class MissingHashes(Hashes): + """A workalike for Hashes used when we're missing a hash for a requirement + + It computes the actual hash of the requirement and raises a HashMissing + exception showing it to the user. + + """ + + def __init__(self) -> None: + """Don't offer the ``hashes`` kwarg.""" + # Pass our favorite hash in to generate a "gotten hash". With the + # empty list, it will never match, so an error will always raise. + super().__init__(hashes={FAVORITE_HASH: []}) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/logging.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 00000000..41f6eb51 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,347 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +import threading +from dataclasses import dataclass +from io import TextIOWrapper +from logging import Filter +from typing import Any, ClassVar, Generator, List, Optional, TextIO, Type + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + ConsoleRenderable, + RenderableType, + RenderResult, + RichCast, +) +from pip._vendor.rich.highlighter import NullHighlighter +from pip._vendor.rich.logging import RichHandler +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style + +from pip._internal.utils._log import VERBOSE, getLogger +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX +from pip._internal.utils.misc import ensure_dir + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + +def _is_broken_pipe_error(exc_class: Type[BaseException], exc: BaseException) -> bool: + if exc_class is BrokenPipeError: + return True + + # On Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + if not WINDOWS: + return False + + return isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + + +@contextlib.contextmanager +def indent_log(num: int = 2) -> Generator[None, None, None]: + """ + A context manager which will cause the log output to be indented for any + log messages emitted inside it. + """ + # For thread-safety + _log_state.indentation = get_indentation() + _log_state.indentation += num + try: + yield + finally: + _log_state.indentation -= num + + +def get_indentation() -> int: + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args: Any, + add_timestamp: bool = False, + **kwargs: Any, + ) -> None: + """ + A logging.Formatter that obeys the indent_log() context manager. + + :param add_timestamp: A bool indicating output lines should be prefixed + with their record's timestamp. + """ + self.add_timestamp = add_timestamp + super().__init__(*args, **kwargs) + + def get_message_start(self, formatted: str, levelno: int) -> str: + """ + Return the start of the formatted log message (not counting the + prefix to add to each line). + """ + if levelno < logging.WARNING: + return "" + if formatted.startswith(DEPRECATION_MSG_PREFIX): + # Then the message already has a prefix. We don't want it to + # look like "WARNING: DEPRECATION: ...." + return "" + if levelno < logging.ERROR: + return "WARNING: " + + return "ERROR: " + + def format(self, record: logging.LogRecord) -> str: + """ + Calls the standard formatter, but will indent all of the log message + lines by our current indentation level. + """ + formatted = super().format(record) + message_start = self.get_message_start(formatted, record.levelno) + formatted = message_start + formatted + + prefix = "" + if self.add_timestamp: + prefix = f"{self.formatTime(record)} " + prefix += " " * get_indentation() + formatted = "".join([prefix + line for line in formatted.splitlines(True)]) + return formatted + + +@dataclass +class IndentedRenderable: + renderable: RenderableType + indent: int + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + segments = console.render(self.renderable, options) + lines = Segment.split_lines(segments) + for line in lines: + yield Segment(" " * self.indent) + yield from line + yield Segment("\n") + + +class RichPipStreamHandler(RichHandler): + KEYWORDS: ClassVar[Optional[List[str]]] = [] + + def __init__(self, stream: Optional[TextIO], no_color: bool) -> None: + super().__init__( + console=Console(file=stream, no_color=no_color, soft_wrap=True), + show_time=False, + show_level=False, + show_path=False, + highlighter=NullHighlighter(), + ) + + # Our custom override on Rich's logger, to make things work as we need them to. + def emit(self, record: logging.LogRecord) -> None: + style: Optional[Style] = None + + # If we are given a diagnostic error to present, present it with indentation. + if getattr(record, "rich", False): + assert isinstance(record.args, tuple) + (rich_renderable,) = record.args + assert isinstance( + rich_renderable, (ConsoleRenderable, RichCast, str) + ), f"{rich_renderable} is not rich-console-renderable" + + renderable: RenderableType = IndentedRenderable( + rich_renderable, indent=get_indentation() + ) + else: + message = self.format(record) + renderable = self.render_message(record, message) + if record.levelno is not None: + if record.levelno >= logging.ERROR: + style = Style(color="red") + elif record.levelno >= logging.WARNING: + style = Style(color="yellow") + + try: + self.console.print(renderable, overflow="ignore", crop=False, style=style) + except Exception: + self.handleError(record) + + def handleError(self, record: logging.LogRecord) -> None: + """Called when logging is unable to log some output.""" + + exc_class, exc = sys.exc_info()[:2] + # If a broken pipe occurred while calling write() or flush() on the + # stdout stream in logging's Handler.emit(), then raise our special + # exception so we can handle it in main() instead of logging the + # broken pipe error and continuing. + if ( + exc_class + and exc + and self.console.file is sys.stdout + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self) -> TextIOWrapper: + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level: int) -> None: + self.level = level + + def filter(self, record: logging.LogRecord) -> bool: + return record.levelno < self.level + + +class ExcludeLoggerFilter(Filter): + """ + A logging Filter that excludes records from a logger (or its children). + """ + + def filter(self, record: logging.LogRecord) -> bool: + # The base Filter class allows only records from a logger (or its + # children). + return not super().filter(record) + + +def setup_logging(verbosity: int, no_color: bool, user_log_file: Optional[str]) -> int: + """Configures and sets up all of the logging + + Returns the requested logging level, as its integer value. + """ + + # Determine the level to be logging at. + if verbosity >= 2: + level_number = logging.DEBUG + elif verbosity == 1: + level_number = VERBOSE + elif verbosity == -1: + level_number = logging.WARNING + elif verbosity == -2: + level_number = logging.ERROR + elif verbosity <= -3: + level_number = logging.CRITICAL + else: + level_number = logging.INFO + + level = logging.getLevelName(level_number) + + # The "root" logger should match the "console" level *unless* we also need + # to log to a user log file. + include_user_log = user_log_file is not None + if include_user_log: + additional_log_file = user_log_file + root_level = "DEBUG" + else: + additional_log_file = "/dev/null" + root_level = level + + # Disable any logging besides WARNING unless we have DEBUG level logging + # enabled for vendored libraries. + vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" + + # Shorthands for clarity + log_streams = { + "stdout": "ext://sys.stdout", + "stderr": "ext://sys.stderr", + } + handler_classes = { + "stream": "pip._internal.utils.logging.RichPipStreamHandler", + "file": "pip._internal.utils.logging.BetterRotatingFileHandler", + } + handlers = ["console", "console_errors", "console_subprocess"] + ( + ["user_log"] if include_user_log else [] + ) + + logging.config.dictConfig( + { + "version": 1, + "disable_existing_loggers": False, + "filters": { + "exclude_warnings": { + "()": "pip._internal.utils.logging.MaxLevelFilter", + "level": logging.WARNING, + }, + "restrict_to_subprocess": { + "()": "logging.Filter", + "name": subprocess_logger.name, + }, + "exclude_subprocess": { + "()": "pip._internal.utils.logging.ExcludeLoggerFilter", + "name": subprocess_logger.name, + }, + }, + "formatters": { + "indent": { + "()": IndentingFormatter, + "format": "%(message)s", + }, + "indent_with_timestamp": { + "()": IndentingFormatter, + "format": "%(message)s", + "add_timestamp": True, + }, + }, + "handlers": { + "console": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stdout"], + "filters": ["exclude_subprocess", "exclude_warnings"], + "formatter": "indent", + }, + "console_errors": { + "level": "WARNING", + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["exclude_subprocess"], + "formatter": "indent", + }, + # A handler responsible for logging to the console messages + # from the "subprocessor" logger. + "console_subprocess": { + "level": level, + "class": handler_classes["stream"], + "stream": log_streams["stderr"], + "no_color": no_color, + "filters": ["restrict_to_subprocess"], + "formatter": "indent", + }, + "user_log": { + "level": "DEBUG", + "class": handler_classes["file"], + "filename": additional_log_file, + "encoding": "utf-8", + "delay": True, + "formatter": "indent_with_timestamp", + }, + }, + "root": { + "level": root_level, + "handlers": handlers, + }, + "loggers": {"pip._vendor": {"level": vendored_log_level}}, + } + ) + + return level_number diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/misc.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 00000000..3707e872 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,777 @@ +import errno +import getpass +import hashlib +import logging +import os +import posixpath +import shutil +import stat +import sys +import sysconfig +import urllib.parse +from dataclasses import dataclass +from functools import partial +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from pathlib import Path +from types import FunctionType, TracebackType +from typing import ( + Any, + BinaryIO, + Callable, + Dict, + Generator, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + Union, + cast, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.pyproject_hooks import BuildBackendHookCaller + +from pip import __version__ +from pip._internal.exceptions import CommandError, ExternallyManagedEnvironment +from pip._internal.locations import get_major_minor_version +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.retry import retry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "ensure_dir", + "remove_auth_from_url", + "check_externally_managed", + "ConfiguredBuildBackendHookCaller", +] + +logger = logging.getLogger(__name__) + +T = TypeVar("T") +ExcInfo = Tuple[Type[BaseException], BaseException, TracebackType] +VersionInfo = Tuple[int, int, int] +NetlocTuple = Tuple[str, Tuple[Optional[str], Optional[str]]] +OnExc = Callable[[FunctionType, Path, BaseException], Any] +OnErr = Callable[[FunctionType, Path, ExcInfo], Any] + +FILE_CHUNK_SIZE = 1024 * 1024 + + +def get_pip_version() -> str: + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return f"pip {__version__} from {pip_pkg_dir} (python {get_major_minor_version()})" + + +def normalize_version_info(py_version_info: Tuple[int, ...]) -> Tuple[int, int, int]: + """ + Convert a tuple of ints representing a Python version to one of length + three. + + :param py_version_info: a tuple of ints representing a Python version, + or None to specify no version. The tuple can have any length. + + :return: a tuple of length three if `py_version_info` is non-None. + Otherwise, return `py_version_info` unchanged (i.e. None). + """ + if len(py_version_info) < 3: + py_version_info += (3 - len(py_version_info)) * (0,) + elif len(py_version_info) > 3: + py_version_info = py_version_info[:3] + + return cast("VersionInfo", py_version_info) + + +def ensure_dir(path: str) -> None: + """os.path.makedirs without EEXIST.""" + try: + os.makedirs(path) + except OSError as e: + # Windows can raise spurious ENOTEMPTY errors. See #6426. + if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: + raise + + +def get_prog() -> str: + try: + prog = os.path.basename(sys.argv[0]) + if prog in ("__main__.py", "-c"): + return f"{sys.executable} -m pip" + else: + return prog + except (AttributeError, TypeError, IndexError): + pass + return "pip" + + +# Retry every half second for up to 3 seconds +@retry(stop_after_delay=3, wait=0.5) +def rmtree( + dir: str, ignore_errors: bool = False, onexc: Optional[OnExc] = None +) -> None: + if ignore_errors: + onexc = _onerror_ignore + if onexc is None: + onexc = _onerror_reraise + handler: OnErr = partial( + # `[func, path, Union[ExcInfo, BaseException]] -> Any` is equivalent to + # `Union[([func, path, ExcInfo] -> Any), ([func, path, BaseException] -> Any)]`. + cast(Union[OnExc, OnErr], rmtree_errorhandler), + onexc=onexc, + ) + if sys.version_info >= (3, 12): + # See https://docs.python.org/3.12/whatsnew/3.12.html#shutil. + shutil.rmtree(dir, onexc=handler) # type: ignore + else: + shutil.rmtree(dir, onerror=handler) # type: ignore + + +def _onerror_ignore(*_args: Any) -> None: + pass + + +def _onerror_reraise(*_args: Any) -> None: + raise # noqa: PLE0704 - Bare exception used to reraise existing exception + + +def rmtree_errorhandler( + func: FunctionType, + path: Path, + exc_info: Union[ExcInfo, BaseException], + *, + onexc: OnExc = _onerror_reraise, +) -> None: + """ + `rmtree` error handler to 'force' a file remove (i.e. like `rm -f`). + + * If a file is readonly then it's write flag is set and operation is + retried. + + * `onerror` is the original callback from `rmtree(... onerror=onerror)` + that is chained at the end if the "rm -f" still fails. + """ + try: + st_mode = os.stat(path).st_mode + except OSError: + # it's equivalent to os.path.exists + return + + if not st_mode & stat.S_IWRITE: + # convert to read/write + try: + os.chmod(path, st_mode | stat.S_IWRITE) + except OSError: + pass + else: + # use the original function to repeat the operation + try: + func(path) + return + except OSError: + pass + + if not isinstance(exc_info, BaseException): + _, exc_info, _ = exc_info + onexc(func, path, exc_info) + + +def display_path(path: str) -> str: + """Gives the display value for a given path, making it relative to cwd + if possible.""" + path = os.path.normcase(os.path.abspath(path)) + if path.startswith(os.getcwd() + os.path.sep): + path = "." + path[len(os.getcwd()) :] + return path + + +def backup_dir(dir: str, ext: str = ".bak") -> str: + """Figure out the name of a directory to back up the given dir to + (adding .bak, .bak2, etc)""" + n = 1 + extension = ext + while os.path.exists(dir + extension): + n += 1 + extension = ext + str(n) + return dir + extension + + +def ask_path_exists(message: str, options: Iterable[str]) -> str: + for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): + if action in options: + return action + return ask(message, options) + + +def _check_no_input(message: str) -> None: + """Raise an error if no input is allowed.""" + if os.environ.get("PIP_NO_INPUT"): + raise Exception( + f"No input was expected ($PIP_NO_INPUT set); question: {message}" + ) + + +def ask(message: str, options: Iterable[str]) -> str: + """Ask the message interactively, with the given possible responses""" + while 1: + _check_no_input(message) + response = input(message) + response = response.strip().lower() + if response not in options: + print( + "Your response ({!r}) was not one of the expected responses: " + "{}".format(response, ", ".join(options)) + ) + else: + return response + + +def ask_input(message: str) -> str: + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message: str) -> str: + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val: str) -> int: + """Convert a string representation of truth to true (1) or false (0). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'val' is anything else. + """ + val = val.lower() + if val in ("y", "yes", "t", "true", "on", "1"): + return 1 + elif val in ("n", "no", "f", "false", "off", "0"): + return 0 + else: + raise ValueError(f"invalid truth value {val!r}") + + +def format_size(bytes: float) -> str: + if bytes > 1000 * 1000: + return f"{bytes / 1000.0 / 1000:.1f} MB" + elif bytes > 10 * 1000: + return f"{int(bytes / 1000)} kB" + elif bytes > 1000: + return f"{bytes / 1000.0:.1f} kB" + else: + return f"{int(bytes)} bytes" + + +def tabulate(rows: Iterable[Iterable[Any]]) -> Tuple[List[str], List[int]]: + """Return a list of formatted rows and a list of column sizes. + + For example:: + + >>> tabulate([['foobar', 2000], [0xdeadbeef]]) + (['foobar 2000', '3735928559'], [10, 4]) + """ + rows = [tuple(map(str, row)) for row in rows] + sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] + table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] + return table, sizes + + +def is_installable_dir(path: str) -> bool: + """Is path is a directory containing pyproject.toml or setup.py? + + If pyproject.toml exists, this is a PEP 517 project. Otherwise we look for + a legacy setuptools layout by identifying setup.py. We don't check for the + setup.cfg because using it without setup.py is only available for PEP 517 + projects, which are already covered by the pyproject.toml check. + """ + if not os.path.isdir(path): + return False + if os.path.isfile(os.path.join(path, "pyproject.toml")): + return True + if os.path.isfile(os.path.join(path, "setup.py")): + return True + return False + + +def read_chunks( + file: BinaryIO, size: int = FILE_CHUNK_SIZE +) -> Generator[bytes, None, None]: + """Yield pieces of data from a file-like object until EOF.""" + while True: + chunk = file.read(size) + if not chunk: + break + yield chunk + + +def normalize_path(path: str, resolve_symlinks: bool = True) -> str: + """ + Convert a path to its canonical, case-normalized, absolute version. + + """ + path = os.path.expanduser(path) + if resolve_symlinks: + path = os.path.realpath(path) + else: + path = os.path.abspath(path) + return os.path.normcase(path) + + +def splitext(path: str) -> Tuple[str, str]: + """Like os.path.splitext, but take off .tar too""" + base, ext = posixpath.splitext(path) + if base.lower().endswith(".tar"): + ext = base[-4:] + ext + base = base[:-4] + return base, ext + + +def renames(old: str, new: str) -> None: + """Like os.renames(), but handles renaming across devices.""" + # Implementation borrowed from os.renames(). + head, tail = os.path.split(new) + if head and tail and not os.path.exists(head): + os.makedirs(head) + + shutil.move(old, new) + + head, tail = os.path.split(old) + if head and tail: + try: + os.removedirs(head) + except OSError: + pass + + +def is_local(path: str) -> bool: + """ + Return True if path is within sys.prefix, if we're running in a virtualenv. + + If we're not in a virtualenv, all paths are considered "local." + + Caution: this function assumes the head of path has been normalized + with normalize_path. + """ + if not running_under_virtualenv(): + return True + return path.startswith(normalize_path(sys.prefix)) + + +def write_output(msg: Any, *args: Any) -> None: + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream: TextIO + + @classmethod + def from_stream(cls, orig_stream: TextIO) -> "StreamWrapper": + ret = cls() + ret.orig_stream = orig_stream + return ret + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # type ignore is because TextIOBase.encoding is writeable + @property + def encoding(self) -> str: # type: ignore + return self.orig_stream.encoding + + +# Simulates an enum +def enum(*sequential: Any, **named: Any) -> Type[Any]: + enums = dict(zip(sequential, range(len(sequential))), **named) + reverse = {value: key for key, value in enums.items()} + enums["reverse_mapping"] = reverse + return type("Enum", (), enums) + + +def build_netloc(host: str, port: Optional[int]) -> str: + """ + Build a netloc from a host-port pair + """ + if port is None: + return host + if ":" in host: + # Only wrap host with square brackets when it is IPv6 + host = f"[{host}]" + return f"{host}:{port}" + + +def build_url_from_netloc(netloc: str, scheme: str = "https") -> str: + """ + Build a full URL from a netloc. + """ + if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: + # It must be a bare IPv6 address, so wrap it with brackets. + netloc = f"[{netloc}]" + return f"{scheme}://{netloc}" + + +def parse_netloc(netloc: str) -> Tuple[Optional[str], Optional[int]]: + """ + Return the host-port pair from a netloc. + """ + url = build_url_from_netloc(netloc) + parsed = urllib.parse.urlparse(url) + return parsed.hostname, parsed.port + + +def split_auth_from_netloc(netloc: str) -> NetlocTuple: + """ + Parse out and remove the auth information from a netloc. + + Returns: (netloc, (username, password)). + """ + if "@" not in netloc: + return netloc, (None, None) + + # Split from the right because that's how urllib.parse.urlsplit() + # behaves if more than one @ is present (which can be checked using + # the password attribute of urlsplit()'s return value). + auth, netloc = netloc.rsplit("@", 1) + pw: Optional[str] = None + if ":" in auth: + # Split from the left because that's how urllib.parse.urlsplit() + # behaves if more than one : is present (which again can be checked + # using the password attribute of the return value) + user, pw = auth.split(":", 1) + else: + user, pw = auth, None + + user = urllib.parse.unquote(user) + if pw is not None: + pw = urllib.parse.unquote(pw) + + return netloc, (user, pw) + + +def redact_netloc(netloc: str) -> str: + """ + Replace the sensitive data in a netloc with "****", if it exists. + + For example: + - "user:pass@example.com" returns "user:****@example.com" + - "accesstoken@example.com" returns "****@example.com" + """ + netloc, (user, password) = split_auth_from_netloc(netloc) + if user is None: + return netloc + if password is None: + user = "****" + password = "" + else: + user = urllib.parse.quote(user) + password = ":****" + return f"{user}{password}@{netloc}" + + +def _transform_url( + url: str, transform_netloc: Callable[[str], Tuple[Any, ...]] +) -> Tuple[str, NetlocTuple]: + """Transform and replace netloc in a url. + + transform_netloc is a function taking the netloc and returning a + tuple. The first element of this tuple is the new netloc. The + entire tuple is returned. + + Returns a tuple containing the transformed url as item 0 and the + original tuple returned by transform_netloc as item 1. + """ + purl = urllib.parse.urlsplit(url) + netloc_tuple = transform_netloc(purl.netloc) + # stripped url + url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) + surl = urllib.parse.urlunsplit(url_pieces) + return surl, cast("NetlocTuple", netloc_tuple) + + +def _get_netloc(netloc: str) -> NetlocTuple: + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc: str) -> Tuple[str]: + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url( + url: str, +) -> Tuple[str, str, Tuple[Optional[str], Optional[str]]]: + """ + Parse a url into separate netloc, auth, and url with no auth. + + Returns: (url_without_auth, netloc, (username, password)) + """ + url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) + return url_without_auth, netloc, auth + + +def remove_auth_from_url(url: str) -> str: + """Return a copy of url with 'username:password@' removed.""" + # username/pass params are passed to subversion through flags + # and are not recognized in the url. + return _transform_url(url, _get_netloc)[0] + + +def redact_auth_from_url(url: str) -> str: + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +def redact_auth_from_requirement(req: Requirement) -> str: + """Replace the password in a given requirement url with ****.""" + if not req.url: + return str(req) + return str(req).replace(req.url, redact_auth_from_url(req.url)) + + +@dataclass(frozen=True) +class HiddenText: + secret: str + redacted: str + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self.redacted + + # This is useful for testing. + def __eq__(self, other: Any) -> bool: + if type(self) != type(other): + return False + + # The string being used for redaction doesn't also have to match, + # just the raw, original string. + return self.secret == other.secret + + +def hide_value(value: str) -> HiddenText: + return HiddenText(value, redacted="****") + + +def hide_url(url: str) -> HiddenText: + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip: bool) -> None: + """Protection of pip.exe from modification on Windows + + On Windows, any operation modifying pip should be run as: + python -m pip ... + """ + pip_names = [ + "pip", + f"pip{sys.version_info.major}", + f"pip{sys.version_info.major}.{sys.version_info.minor}", + ] + + # See https://github.com/pypa/pip/issues/1299 for more discussion + should_show_use_python_msg = ( + modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names + ) + + if should_show_use_python_msg: + new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] + raise CommandError( + "To modify pip, please run the following command:\n{}".format( + " ".join(new_command) + ) + ) + + +def check_externally_managed() -> None: + """Check whether the current environment is externally managed. + + If the ``EXTERNALLY-MANAGED`` config file is found, the current environment + is considered externally managed, and an ExternallyManagedEnvironment is + raised. + """ + if running_under_virtualenv(): + return + marker = os.path.join(sysconfig.get_path("stdlib"), "EXTERNALLY-MANAGED") + if not os.path.isfile(marker): + return + raise ExternallyManagedEnvironment.from_config(marker) + + +def is_console_interactive() -> bool: + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path: str, blocksize: int = 1 << 20) -> Tuple[Any, int]: + """Return (hash, length) for path using hashlib.sha256()""" + + h = hashlib.sha256() + length = 0 + with open(path, "rb") as f: + for block in read_chunks(f, size=blocksize): + length += len(block) + h.update(block) + return h, length + + +def pairwise(iterable: Iterable[Any]) -> Iterator[Tuple[Any, Any]]: + """ + Return paired elements. + + For example: + s -> (s0, s1), (s2, s3), (s4, s5), ... + """ + iterable = iter(iterable) + return zip_longest(iterable, iterable) + + +def partition( + pred: Callable[[T], bool], iterable: Iterable[T] +) -> Tuple[Iterable[T], Iterable[T]]: + """ + Use a predicate to partition entries into false entries and true entries, + like + + partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + """ + t1, t2 = tee(iterable) + return filterfalse(pred, t1), filter(pred, t2) + + +class ConfiguredBuildBackendHookCaller(BuildBackendHookCaller): + def __init__( + self, + config_holder: Any, + source_dir: str, + build_backend: str, + backend_path: Optional[str] = None, + runner: Optional[Callable[..., None]] = None, + python_executable: Optional[str] = None, + ): + super().__init__( + source_dir, build_backend, backend_path, runner, python_executable + ) + self.config_holder = config_holder + + def build_wheel( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_wheel( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def build_sdist( + self, + sdist_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_sdist(sdist_directory, config_settings=cs) + + def build_editable( + self, + wheel_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + metadata_directory: Optional[str] = None, + ) -> str: + cs = self.config_holder.config_settings + return super().build_editable( + wheel_directory, config_settings=cs, metadata_directory=metadata_directory + ) + + def get_requires_for_build_wheel( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_wheel(config_settings=cs) + + def get_requires_for_build_sdist( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_sdist(config_settings=cs) + + def get_requires_for_build_editable( + self, config_settings: Optional[Dict[str, Union[str, List[str]]]] = None + ) -> List[str]: + cs = self.config_holder.config_settings + return super().get_requires_for_build_editable(config_settings=cs) + + def prepare_metadata_for_build_wheel( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_wheel( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + def prepare_metadata_for_build_editable( + self, + metadata_directory: str, + config_settings: Optional[Dict[str, Union[str, List[str]]]] = None, + _allow_fallback: bool = True, + ) -> str: + cs = self.config_holder.config_settings + return super().prepare_metadata_for_build_editable( + metadata_directory=metadata_directory, + config_settings=cs, + _allow_fallback=_allow_fallback, + ) + + +def warn_if_run_as_root() -> None: + """Output a warning for sudo users on Unix. + + In a virtual environment, sudo pip still writes to virtualenv. + On Windows, users may run pip as Administrator without issues. + This warning only applies to Unix root users outside of virtualenv. + """ + if running_under_virtualenv(): + return + if not hasattr(os, "getuid"): + return + # On Windows, there are no "system managed" Python packages. Installing as + # Administrator via pip is the correct way of updating system environments. + # + # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform + # checks: https://mypy.readthedocs.io/en/stable/common_issues.html + if sys.platform == "win32" or sys.platform == "cygwin": + return + + if os.getuid() != 0: + return + + logger.warning( + "Running pip as the 'root' user can result in broken permissions and " + "conflicting behaviour with the system package manager, possibly " + "rendering your system unusable." + "It is recommended to use a virtual environment instead: " + "https://pip.pypa.io/warnings/venv. " + "Use the --root-user-action option if you know what you are doing and " + "want to suppress this warning." + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/packaging.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 00000000..4b8fa0fe --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,57 @@ +import functools +import logging +import re +from typing import NewType, Optional, Tuple, cast + +from pip._vendor.packaging import specifiers, version +from pip._vendor.packaging.requirements import Requirement + +NormalizedExtra = NewType("NormalizedExtra", str) + +logger = logging.getLogger(__name__) + + +def check_requires_python( + requires_python: Optional[str], version_info: Tuple[int, ...] +) -> bool: + """ + Check if the given Python version matches a "Requires-Python" specifier. + + :param version_info: A 3-tuple of ints representing a Python + major-minor-micro version to check (e.g. `sys.version_info[:3]`). + + :return: `True` if the given Python version satisfies the requirement. + Otherwise, return `False`. + + :raises InvalidSpecifier: If `requires_python` has an invalid format. + """ + if requires_python is None: + # The package provides no information + return True + requires_python_specifier = specifiers.SpecifierSet(requires_python) + + python_version = version.parse(".".join(map(str, version_info))) + return python_version in requires_python_specifier + + +@functools.lru_cache(maxsize=2048) +def get_requirement(req_string: str) -> Requirement: + """Construct a packaging.Requirement object with caching""" + # Parsing requirement strings is expensive, and is also expected to happen + # with a low diversity of different arguments (at least relative the number + # constructed). This method adds a cache to requirement object creation to + # minimize repeated parsing of the same string to construct equivalent + # Requirement objects. + return Requirement(req_string) + + +def safe_extra(extra: str) -> NormalizedExtra: + """Convert an arbitrary string to a standard 'extra' name + + Any runs of non-alphanumeric characters are replaced with a single '_', + and the result is always lowercased. + + This function is duplicated from ``pkg_resources``. Note that this is not + the same to either ``canonicalize_name`` or ``_egg_link_name``. + """ + return cast(NormalizedExtra, re.sub("[^A-Za-z0-9.-]+", "_", extra).lower()) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/retry.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/retry.py new file mode 100644 index 00000000..abfe0728 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/retry.py @@ -0,0 +1,42 @@ +import functools +from time import perf_counter, sleep +from typing import Callable, TypeVar + +from pip._vendor.typing_extensions import ParamSpec + +T = TypeVar("T") +P = ParamSpec("P") + + +def retry( + wait: float, stop_after_delay: float +) -> Callable[[Callable[P, T]], Callable[P, T]]: + """Decorator to automatically retry a function on error. + + If the function raises, the function is recalled with the same arguments + until it returns or the time limit is reached. When the time limit is + surpassed, the last exception raised is reraised. + + :param wait: The time to wait after an error before retrying, in seconds. + :param stop_after_delay: The time limit after which retries will cease, + in seconds. + """ + + def wrapper(func: Callable[P, T]) -> Callable[P, T]: + + @functools.wraps(func) + def retry_wrapped(*args: P.args, **kwargs: P.kwargs) -> T: + # The performance counter is monotonic on all platforms we care + # about and has much better resolution than time.monotonic(). + start_time = perf_counter() + while True: + try: + return func(*args, **kwargs) + except Exception: + if perf_counter() - start_time > stop_after_delay: + raise + sleep(wait) + + return retry_wrapped + + return wrapper diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 00000000..96d1b246 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,146 @@ +import sys +import textwrap +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# Note that __file__ is handled via two {!r} *and* %r, to ensure that paths on +# Windows are correctly handled (it should be "C:\\Users" not "C:\Users"). +_SETUPTOOLS_SHIM = textwrap.dedent( + """ + exec(compile(''' + # This is -- a caller that pip uses to run setup.py + # + # - It imports setuptools before invoking setup.py, to enable projects that directly + # import from `distutils.core` to work with newer packaging standards. + # - It provides a clear error message when setuptools is not installed. + # - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so + # setuptools doesn't think the script is `-c`. This avoids the following warning: + # manifest_maker: standard file '-c' not found". + # - It generates a shim setup.py, for handling setup.cfg-only projects. + import os, sys, tokenize + + try: + import setuptools + except ImportError as error: + print( + "ERROR: Can not execute `setup.py` since setuptools is not available in " + "the build environment.", + file=sys.stderr, + ) + sys.exit(1) + + __file__ = %r + sys.argv[0] = __file__ + + if os.path.exists(__file__): + filename = __file__ + with tokenize.open(__file__) as f: + setup_py_code = f.read() + else: + filename = "" + setup_py_code = "from setuptools import setup; setup()" + + exec(compile(setup_py_code, filename, "exec")) + ''' % ({!r},), "", "exec")) + """ +).rstrip() + + +def make_setuptools_shim_args( + setup_py_path: str, + global_options: Optional[Sequence[str]] = None, + no_user_config: bool = False, + unbuffered_output: bool = False, +) -> List[str]: + """ + Get setuptools command arguments with shim wrapped setup file invocation. + + :param setup_py_path: The path to setup.py to be wrapped. + :param global_options: Additional global options. + :param no_user_config: If True, disables personal user configuration. + :param unbuffered_output: If True, adds the unbuffered switch to the + argument list. + """ + args = [sys.executable] + if unbuffered_output: + args += ["-u"] + args += ["-c", _SETUPTOOLS_SHIM.format(setup_py_path)] + if global_options: + args += global_options + if no_user_config: + args += ["--no-user-cfg"] + return args + + +def make_setuptools_bdist_wheel_args( + setup_py_path: str, + global_options: Sequence[str], + build_options: Sequence[str], + destination_dir: str, +) -> List[str]: + # NOTE: Eventually, we'd want to also -S to the flags here, when we're + # isolating. Currently, it breaks Python in virtualenvs, because it + # relies on site.py to find parts of the standard library outside the + # virtualenv. + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["bdist_wheel", "-d", destination_dir] + args += build_options + return args + + +def make_setuptools_clean_args( + setup_py_path: str, + global_options: Sequence[str], +) -> List[str]: + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["clean", "--all"] + return args + + +def make_setuptools_develop_args( + setup_py_path: str, + *, + global_options: Sequence[str], + no_user_config: bool, + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, +) -> List[str]: + assert not (use_user_site and prefix) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + ) + + args += ["develop", "--no-deps"] + + if prefix: + args += ["--prefix", prefix] + if home is not None: + args += ["--install-dir", home] + + if use_user_site: + args += ["--user", "--prefix="] + + return args + + +def make_setuptools_egg_info_args( + setup_py_path: str, + egg_info_dir: Optional[str], + no_user_config: bool, +) -> List[str]: + args = make_setuptools_shim_args(setup_py_path, no_user_config=no_user_config) + + args += ["egg_info"] + + if egg_info_dir: + args += ["--egg-base", egg_info_dir] + + return args diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 00000000..cb2e23f0 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,245 @@ +import logging +import os +import shlex +import subprocess +from typing import Any, Callable, Iterable, List, Literal, Mapping, Optional, Union + +from pip._vendor.rich.markup import escape + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import VERBOSE, subprocess_logger +from pip._internal.utils.misc import HiddenText + +CommandArgs = List[Union[str, HiddenText]] + + +def make_command(*args: Union[str, HiddenText, CommandArgs]) -> CommandArgs: + """ + Create a CommandArgs object. + """ + command_args: CommandArgs = [] + for arg in args: + # Check for list instead of CommandArgs since CommandArgs is + # only known during type-checking. + if isinstance(arg, list): + command_args.extend(arg) + else: + # Otherwise, arg is str or HiddenText. + command_args.append(arg) + + return command_args + + +def format_command_args(args: Union[List[str], CommandArgs]) -> str: + """ + Format command arguments for display. + """ + # For HiddenText arguments, display the redacted form by calling str(). + # Also, we don't apply str() to arguments that aren't HiddenText since + # this can trigger a UnicodeDecodeError in Python 2 if the argument + # has type unicode and includes a non-ascii character. (The type + # checker doesn't ensure the annotations are correct in all cases.) + return " ".join( + shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) + for arg in args + ) + + +def reveal_command_args(args: Union[List[str], CommandArgs]) -> List[str]: + """ + Return the arguments in their raw, unredacted form. + """ + return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] + + +def call_subprocess( + cmd: Union[List[str], CommandArgs], + show_stdout: bool = False, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + unset_environ: Optional[Iterable[str]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: Optional[bool] = True, + stdout_only: Optional[bool] = False, + *, + command_desc: str, +) -> str: + """ + Args: + show_stdout: if true, use INFO to log the subprocess's stderr and + stdout streams. Otherwise, use DEBUG. Defaults to False. + extra_ok_returncodes: an iterable of integer return codes that are + acceptable, in addition to 0. Defaults to None, which means []. + unset_environ: an iterable of environment variable names to unset + prior to calling subprocess.Popen(). + log_failed_cmd: if false, failed commands are not logged, only raised. + stdout_only: if true, return only stdout, else return both. When true, + logging of both stdout and stderr occurs when the subprocess has + terminated, else logging occurs as subprocess output is produced. + """ + if extra_ok_returncodes is None: + extra_ok_returncodes = [] + if unset_environ is None: + unset_environ = [] + # Most places in pip use show_stdout=False. What this means is-- + # + # - We connect the child's output (combined stderr and stdout) to a + # single pipe, which we read. + # - We log this output to stderr at DEBUG level as it is received. + # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't + # requested), then we show a spinner so the user can still see the + # subprocess is in progress. + # - If the subprocess exits with an error, we log the output to stderr + # at ERROR level if it hasn't already been displayed to the console + # (e.g. if --verbose logging wasn't enabled). This way we don't log + # the output to the console twice. + # + # If show_stdout=True, then the above is still done, but with DEBUG + # replaced by INFO. + if show_stdout: + # Then log the subprocess output at INFO level. + log_subprocess: Callable[..., None] = subprocess_logger.info + used_level = logging.INFO + else: + # Then log the subprocess output using VERBOSE. This also ensures + # it will be logged to the log file (aka user_log), if enabled. + log_subprocess = subprocess_logger.verbose + used_level = VERBOSE + + # Whether the subprocess will be visible in the console. + showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level + + # Only use the spinner if we're not showing the subprocess output + # and we have a spinner. + use_spinner = not showing_subprocess and spinner is not None + + log_subprocess("Running command %s", command_desc) + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + for name in unset_environ: + env.pop(name, None) + try: + proc = subprocess.Popen( + # Convert HiddenText objects to the underlying str. + reveal_command_args(cmd), + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, + cwd=cwd, + env=env, + errors="backslashreplace", + ) + except Exception as exc: + if log_failed_cmd: + subprocess_logger.critical( + "Error %s while executing command %s", + exc, + command_desc, + ) + raise + all_output = [] + if not stdout_only: + assert proc.stdout + assert proc.stdin + proc.stdin.close() + # In this mode, stdout and stderr are in the same pipe. + while True: + line: str = proc.stdout.readline() + if not line: + break + line = line.rstrip() + all_output.append(line + "\n") + + # Show the line immediately. + log_subprocess(line) + # Update the spinner. + if use_spinner: + assert spinner + spinner.spin() + try: + proc.wait() + finally: + if proc.stdout: + proc.stdout.close() + output = "".join(all_output) + else: + # In this mode, stdout and stderr are in different pipes. + # We must use communicate() which is the only safe way to read both. + out, err = proc.communicate() + # log line by line to preserve pip log indenting + for out_line in out.splitlines(): + log_subprocess(out_line) + all_output.append(out) + for err_line in err.splitlines(): + log_subprocess(err_line) + all_output.append(err) + output = out + + proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes + if use_spinner: + assert spinner + if proc_had_error: + spinner.finish("error") + else: + spinner.finish("done") + if proc_had_error: + if on_returncode == "raise": + error = InstallationSubprocessError( + command_description=command_desc, + exit_code=proc.returncode, + output_lines=all_output if not showing_subprocess else None, + ) + if log_failed_cmd: + subprocess_logger.error("%s", error, extra={"rich": True}) + subprocess_logger.verbose( + "[bold magenta]full command[/]: [blue]%s[/]", + escape(format_command_args(cmd)), + extra={"markup": True}, + ) + subprocess_logger.verbose( + "[bold magenta]cwd[/]: %s", + escape(cwd or "[inherit]"), + extra={"markup": True}, + ) + + raise error + elif on_returncode == "warn": + subprocess_logger.warning( + 'Command "%s" had error code %s in %s', + command_desc, + proc.returncode, + cwd, + ) + elif on_returncode == "ignore": + pass + else: + raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") + return output + + +def runner_with_spinner_message(message: str) -> Callable[..., None]: + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for BuildBackendHookCaller. Thus, the runner has + an API that matches what's expected by BuildBackendHookCaller.subprocess_runner. + """ + + def runner( + cmd: List[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + ) -> None: + with open_spinner(message) as spinner: + call_subprocess( + cmd, + command_desc=message, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 00000000..06668e8a --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,296 @@ +import errno +import itertools +import logging +import os.path +import tempfile +import traceback +from contextlib import ExitStack, contextmanager +from pathlib import Path +from typing import ( + Any, + Callable, + Dict, + Generator, + List, + Optional, + TypeVar, + Union, +) + +from pip._internal.utils.misc import enum, rmtree + +logger = logging.getLogger(__name__) + +_T = TypeVar("_T", bound="TempDirectory") + + +# Kinds of temporary directories. Only needed for ones that are +# globally-managed. +tempdir_kinds = enum( + BUILD_ENV="build-env", + EPHEM_WHEEL_CACHE="ephem-wheel-cache", + REQ_BUILD="req-build", +) + + +_tempdir_manager: Optional[ExitStack] = None + + +@contextmanager +def global_tempdir_manager() -> Generator[None, None, None]: + global _tempdir_manager + with ExitStack() as stack: + old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack + try: + yield + finally: + _tempdir_manager = old_tempdir_manager + + +class TempDirectoryTypeRegistry: + """Manages temp directory behavior""" + + def __init__(self) -> None: + self._should_delete: Dict[str, bool] = {} + + def set_delete(self, kind: str, value: bool) -> None: + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind: str) -> bool: + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry: Optional[TempDirectoryTypeRegistry] = None + + +@contextmanager +def tempdir_registry() -> Generator[TempDirectoryTypeRegistry, None, None]: + """Provides a scoped global tempdir registry that can be used to dictate + whether directories should be deleted. + """ + global _tempdir_registry + old_tempdir_registry = _tempdir_registry + _tempdir_registry = TempDirectoryTypeRegistry() + try: + yield _tempdir_registry + finally: + _tempdir_registry = old_tempdir_registry + + +class _Default: + pass + + +_default = _Default() + + +class TempDirectory: + """Helper class that owns and cleans up a temporary directory. + + This class can be used as a context manager or as an OO representation of a + temporary directory. + + Attributes: + path + Location to the created temporary directory + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + Methods: + cleanup() + Deletes the temporary directory + + When used as a context manager, if the delete attribute is True, on + exiting the context the temporary directory is deleted. + """ + + def __init__( + self, + path: Optional[str] = None, + delete: Union[bool, None, _Default] = _default, + kind: str = "temp", + globally_managed: bool = False, + ignore_cleanup_errors: bool = True, + ): + super().__init__() + + if delete is _default: + if path is not None: + # If we were given an explicit directory, resolve delete option + # now. + delete = False + else: + # Otherwise, we wait until cleanup and see what + # tempdir_registry says. + delete = None + + # The only time we specify path is in for editables where it + # is the value of the --src option. + if path is None: + path = self._create(kind) + + self._path = path + self._deleted = False + self.delete = delete + self.kind = kind + self.ignore_cleanup_errors = ignore_cleanup_errors + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self) -> str: + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self: _T) -> _T: + return self + + def __exit__(self, exc: Any, value: Any, tb: Any) -> None: + if self.delete is not None: + delete = self.delete + elif _tempdir_registry: + delete = _tempdir_registry.get_delete(self.kind) + else: + delete = True + + if delete: + self.cleanup() + + def _create(self, kind: str) -> str: + """Create a temporary directory and store its path in self.path""" + # We realpath here because some systems have their default tmpdir + # symlinked to another directory. This tends to confuse build + # scripts, so we canonicalize the path by traversing potential + # symlinks here. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + logger.debug("Created temporary directory: %s", path) + return path + + def cleanup(self) -> None: + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + + errors: List[BaseException] = [] + + def onerror( + func: Callable[..., Any], + path: Path, + exc_val: BaseException, + ) -> None: + """Log a warning for a `rmtree` error and continue""" + formatted_exc = "\n".join( + traceback.format_exception_only(type(exc_val), exc_val) + ) + formatted_exc = formatted_exc.rstrip() # remove trailing new line + if func in (os.unlink, os.remove, os.rmdir): + logger.debug( + "Failed to remove a temporary file '%s' due to %s.\n", + path, + formatted_exc, + ) + else: + logger.debug("%s failed with %s.", func.__qualname__, formatted_exc) + errors.append(exc_val) + + if self.ignore_cleanup_errors: + try: + # first try with @retry; retrying to handle ephemeral errors + rmtree(self._path, ignore_errors=False) + except OSError: + # last pass ignore/log all errors + rmtree(self._path, onexc=onerror) + if errors: + logger.warning( + "Failed to remove contents in a temporary directory '%s'.\n" + "You can safely remove it manually.", + self._path, + ) + else: + rmtree(self._path) + + +class AdjacentTempDirectory(TempDirectory): + """Helper class that creates a temporary directory adjacent to a real one. + + Attributes: + original + The original directory to create a temp directory for. + path + After calling create() or entering, contains the full + path to the temporary directory. + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + """ + + # The characters that may be used to name the temp directory + # We always prepend a ~ and then rotate through these until + # a usable name is found. + # pkg_resources raises a different error for .dist-info folder + # with leading '-' and invalid metadata + LEADING_CHARS = "-~.=%0123456789" + + def __init__(self, original: str, delete: Optional[bool] = None) -> None: + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name: str) -> Generator[str, None, None]: + """Generates a series of temporary names. + + The algorithm replaces the leading characters in the name + with ones that are valid filesystem characters, but are not + valid package names (for both Python and pip definitions of + package). + """ + for i in range(1, len(name)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i - 1 + ): + new_name = "~" + "".join(candidate) + name[i:] + if new_name != name: + yield new_name + + # If we make it this far, we will have to make a longer name + for i in range(len(cls.LEADING_CHARS)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i + ): + new_name = "~" + "".join(candidate) + name + if new_name != name: + yield new_name + + def _create(self, kind: str) -> str: + root, name = os.path.split(self.original) + for candidate in self._generate_names(name): + path = os.path.join(root, candidate) + try: + os.mkdir(path) + except OSError as ex: + # Continue if the name exists already + if ex.errno != errno.EEXIST: + raise + else: + path = os.path.realpath(path) + break + else: + # Final fallback on the default behavior. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + + logger.debug("Created temporary directory: %s", path) + return path diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 00000000..875e30e1 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,337 @@ +"""Utilities related archives. +""" + +import logging +import os +import shutil +import stat +import sys +import tarfile +import zipfile +from typing import Iterable, List, Optional +from zipfile import ZipInfo + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.filetypes import ( + BZ2_EXTENSIONS, + TAR_EXTENSIONS, + XZ_EXTENSIONS, + ZIP_EXTENSIONS, +) +from pip._internal.utils.misc import ensure_dir + +logger = logging.getLogger(__name__) + + +SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS + +try: + import bz2 # noqa + + SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS +except ImportError: + logger.debug("bz2 module is not available") + +try: + # Only for Python 3.3+ + import lzma # noqa + + SUPPORTED_EXTENSIONS += XZ_EXTENSIONS +except ImportError: + logger.debug("lzma module is not available") + + +def current_umask() -> int: + """Get the current umask which involves having to set it temporarily.""" + mask = os.umask(0) + os.umask(mask) + return mask + + +def split_leading_dir(path: str) -> List[str]: + path = path.lstrip("/").lstrip("\\") + if "/" in path and ( + ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path + ): + return path.split("/", 1) + elif "\\" in path: + return path.split("\\", 1) + else: + return [path, ""] + + +def has_leading_dir(paths: Iterable[str]) -> bool: + """Returns true if all the paths have the same leading path name + (i.e., everything is in one subdirectory in an archive)""" + common_prefix = None + for path in paths: + prefix, rest = split_leading_dir(path) + if not prefix: + return False + elif common_prefix is None: + common_prefix = prefix + elif prefix != common_prefix: + return False + return True + + +def is_within_directory(directory: str, target: str) -> bool: + """ + Return true if the absolute path of target is within the directory + """ + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + return prefix == abs_directory + + +def _get_default_mode_plus_executable() -> int: + return 0o777 & ~current_umask() | 0o111 + + +def set_extracted_file_to_default_mode_plus_executable(path: str) -> None: + """ + Make file present at path have execute for user/group/world + (chmod +x) is no-op on windows per python docs + """ + os.chmod(path, _get_default_mode_plus_executable()) + + +def zip_item_is_executable(info: ZipInfo) -> bool: + mode = info.external_attr >> 16 + # if mode and regular file and any execute permissions for + # user/group/world? + return bool(mode and stat.S_ISREG(mode) and mode & 0o111) + + +def unzip_file(filename: str, location: str, flatten: bool = True) -> None: + """ + Unzip the file (with path `filename`) to the destination `location`. All + files are written based on system defaults and umask (i.e. permissions are + not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + zipfp = open(filename, "rb") + try: + zip = zipfile.ZipFile(zipfp, allowZip64=True) + leading = has_leading_dir(zip.namelist()) and flatten + for info in zip.infolist(): + name = info.filename + fn = name + if leading: + fn = split_leading_dir(name)[1] + fn = os.path.join(location, fn) + dir = os.path.dirname(fn) + if not is_within_directory(location, fn): + message = ( + "The zip file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, fn, location)) + if fn.endswith("/") or fn.endswith("\\"): + # A directory + ensure_dir(fn) + else: + ensure_dir(dir) + # Don't use read() to avoid allocating an arbitrarily large + # chunk of memory for the file's content + fp = zip.open(name) + try: + with open(fn, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + finally: + fp.close() + if zip_item_is_executable(info): + set_extracted_file_to_default_mode_plus_executable(fn) + finally: + zipfp.close() + + +def untar_file(filename: str, location: str) -> None: + """ + Untar the file (with path `filename`) to the destination `location`. + All files are written based on system defaults and umask (i.e. permissions + are not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied on top of the + default. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): + mode = "r:gz" + elif filename.lower().endswith(BZ2_EXTENSIONS): + mode = "r:bz2" + elif filename.lower().endswith(XZ_EXTENSIONS): + mode = "r:xz" + elif filename.lower().endswith(".tar"): + mode = "r" + else: + logger.warning( + "Cannot determine compression type for file %s", + filename, + ) + mode = "r:*" + + tar = tarfile.open(filename, mode, encoding="utf-8") + try: + leading = has_leading_dir([member.name for member in tar.getmembers()]) + + # PEP 706 added `tarfile.data_filter`, and made some other changes to + # Python's tarfile module (see below). The features were backported to + # security releases. + try: + data_filter = tarfile.data_filter + except AttributeError: + _untar_without_filter(filename, location, tar, leading) + else: + default_mode_plus_executable = _get_default_mode_plus_executable() + + if leading: + # Strip the leading directory from all files in the archive, + # including hardlink targets (which are relative to the + # unpack location). + for member in tar.getmembers(): + name_lead, name_rest = split_leading_dir(member.name) + member.name = name_rest + if member.islnk(): + lnk_lead, lnk_rest = split_leading_dir(member.linkname) + if lnk_lead == name_lead: + member.linkname = lnk_rest + + def pip_filter(member: tarfile.TarInfo, path: str) -> tarfile.TarInfo: + orig_mode = member.mode + try: + try: + member = data_filter(member, location) + except tarfile.LinkOutsideDestinationError: + if sys.version_info[:3] in { + (3, 8, 17), + (3, 9, 17), + (3, 10, 12), + (3, 11, 4), + }: + # The tarfile filter in specific Python versions + # raises LinkOutsideDestinationError on valid input + # (https://github.com/python/cpython/issues/107845) + # Ignore the error there, but do use the + # more lax `tar_filter` + member = tarfile.tar_filter(member, location) + else: + raise + except tarfile.TarError as exc: + message = "Invalid member in the tar file {}: {}" + # Filter error messages mention the member name. + # No need to add it here. + raise InstallationError( + message.format( + filename, + exc, + ) + ) + if member.isfile() and orig_mode & 0o111: + member.mode = default_mode_plus_executable + else: + # See PEP 706 note above. + # The PEP changed this from `int` to `Optional[int]`, + # where None means "use the default". Mypy doesn't + # know this yet. + member.mode = None # type: ignore [assignment] + return member + + tar.extractall(location, filter=pip_filter) + + finally: + tar.close() + + +def _untar_without_filter( + filename: str, + location: str, + tar: tarfile.TarFile, + leading: bool, +) -> None: + """Fallback for Python without tarfile.data_filter""" + for member in tar.getmembers(): + fn = member.name + if leading: + fn = split_leading_dir(fn)[1] + path = os.path.join(location, fn) + if not is_within_directory(location, path): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, path, location)) + if member.isdir(): + ensure_dir(path) + elif member.issym(): + try: + tar._extract_member(member, path) + except Exception as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + else: + try: + fp = tar.extractfile(member) + except (KeyError, AttributeError) as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + ensure_dir(os.path.dirname(path)) + assert fp is not None + with open(path, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + fp.close() + # Update the timestamp (useful for cython compiled files) + tar.utime(member, path) + # member have any execute permissions for user/group/world? + if member.mode & 0o111: + set_extracted_file_to_default_mode_plus_executable(path) + + +def unpack_file( + filename: str, + location: str, + content_type: Optional[str] = None, +) -> None: + filename = os.path.realpath(filename) + if ( + content_type == "application/zip" + or filename.lower().endswith(ZIP_EXTENSIONS) + or zipfile.is_zipfile(filename) + ): + unzip_file(filename, location, flatten=not filename.endswith(".whl")) + elif ( + content_type == "application/x-gzip" + or tarfile.is_tarfile(filename) + or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) + ): + untar_file(filename, location) + else: + # FIXME: handle? + # FIXME: magic signatures? + logger.critical( + "Cannot unpack file %s (downloaded from %s, content-type: %s); " + "cannot detect archive format", + filename, + location, + content_type, + ) + raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/urls.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 00000000..9f34f882 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,55 @@ +import os +import string +import urllib.parse +import urllib.request + +from .compat import WINDOWS + + +def path_to_url(path: str) -> str: + """ + Convert a path to a file: URL. The path will be made absolute and have + quoted path parts. + """ + path = os.path.normpath(os.path.abspath(path)) + url = urllib.parse.urljoin("file:", urllib.request.pathname2url(path)) + return url + + +def url_to_path(url: str) -> str: + """ + Convert a file: URL to a path. + """ + assert url.startswith( + "file:" + ), f"You can only turn file: urls into filenames (not {url!r})" + + _, netloc, path, _, _ = urllib.parse.urlsplit(url) + + if not netloc or netloc == "localhost": + # According to RFC 8089, same as empty authority. + netloc = "" + elif WINDOWS: + # If we have a UNC path, prepend UNC share notation. + netloc = "\\\\" + netloc + else: + raise ValueError( + f"non-local file URIs are not supported on this platform: {url!r}" + ) + + path = urllib.request.url2pathname(netloc + path) + + # On Windows, urlsplit parses the path as something like "/C:/Users/foo". + # This creates issues for path-related functions like io.open(), so we try + # to detect and strip the leading slash. + if ( + WINDOWS + and not netloc # Not UNC. + and len(path) >= 3 + and path[0] == "/" # Leading slash to strip. + and path[1] in string.ascii_letters # Drive letter. + and path[2:4] in (":", ":/") # Colon + end of string, or colon + absolute path. + ): + path = path[1:] + + return path diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 00000000..882e36f5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,104 @@ +import logging +import os +import re +import site +import sys +from typing import List, Optional + +logger = logging.getLogger(__name__) +_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( + r"include-system-site-packages\s*=\s*(?Ptrue|false)" +) + + +def _running_under_venv() -> bool: + """Checks if sys.base_prefix and sys.prefix match. + + This handles PEP 405 compliant virtual environments. + """ + return sys.prefix != getattr(sys, "base_prefix", sys.prefix) + + +def _running_under_legacy_virtualenv() -> bool: + """Checks if sys.real_prefix is set. + + This handles virtual environments created with pypa's virtualenv. + """ + # pypa/virtualenv case + return hasattr(sys, "real_prefix") + + +def running_under_virtualenv() -> bool: + """True if we're running inside a virtual environment, False otherwise.""" + return _running_under_venv() or _running_under_legacy_virtualenv() + + +def _get_pyvenv_cfg_lines() -> Optional[List[str]]: + """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines + + Returns None, if it could not read/access the file. + """ + pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") + try: + # Although PEP 405 does not specify, the built-in venv module always + # writes with UTF-8. (pypa/pip#8717) + with open(pyvenv_cfg_file, encoding="utf-8") as f: + return f.read().splitlines() # avoids trailing newlines + except OSError: + return None + + +def _no_global_under_venv() -> bool: + """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion + + PEP 405 specifies that when system site-packages are not supposed to be + visible from a virtual environment, `pyvenv.cfg` must contain the following + line: + + include-system-site-packages = false + + Additionally, log a warning if accessing the file fails. + """ + cfg_lines = _get_pyvenv_cfg_lines() + if cfg_lines is None: + # We're not in a "sane" venv, so assume there is no system + # site-packages access (since that's PEP 405's default state). + logger.warning( + "Could not access 'pyvenv.cfg' despite a virtual environment " + "being active. Assuming global site-packages is not accessible " + "in this environment." + ) + return True + + for line in cfg_lines: + match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) + if match is not None and match.group("value") == "false": + return True + return False + + +def _no_global_under_legacy_virtualenv() -> bool: + """Check if "no-global-site-packages.txt" exists beside site.py + + This mirrors logic in pypa/virtualenv for determining whether system + site-packages are visible in the virtual environment. + """ + site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) + no_global_site_packages_file = os.path.join( + site_mod_dir, + "no-global-site-packages.txt", + ) + return os.path.exists(no_global_site_packages_file) + + +def virtualenv_no_global() -> bool: + """Returns a boolean, whether running in venv with no system site-packages.""" + # PEP 405 compliance needs to be checked first since virtualenv >=20 would + # return True for both checks, but is only able to use the PEP 405 config. + if _running_under_venv(): + return _no_global_under_venv() + + if _running_under_legacy_virtualenv(): + return _no_global_under_legacy_virtualenv() + + return False diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/wheel.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 00000000..f85aee8a --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,134 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import UnsupportedWheel + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +def parse_wheel(wheel_zip: ZipFile, name: str) -> Tuple[str, Message]: + """Extract information from the provided wheel, ensuring it meets basic + standards. + + Returns the name of the .dist-info directory and the parsed WHEEL metadata. + """ + try: + info_dir = wheel_dist_info_dir(wheel_zip, name) + metadata = wheel_metadata(wheel_zip, info_dir) + version = wheel_version(metadata) + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source: ZipFile, name: str) -> str: + """Returns the name of the contained .dist-info directory. + + Raises AssertionError or UnsupportedWheel if not found, >1 found, or + it doesn't match the provided name. + """ + # Zip file path separators must be / + subdirs = {p.split("/", 1)[0] for p in source.namelist()} + + info_dirs = [s for s in subdirs if s.endswith(".dist-info")] + + if not info_dirs: + raise UnsupportedWheel(".dist-info directory not found") + + if len(info_dirs) > 1: + raise UnsupportedWheel( + "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) + ) + + info_dir = info_dirs[0] + + info_dir_name = canonicalize_name(info_dir) + canonical_name = canonicalize_name(name) + if not info_dir_name.startswith(canonical_name): + raise UnsupportedWheel( + f".dist-info directory {info_dir!r} does not start with {canonical_name!r}" + ) + + return info_dir + + +def read_wheel_metadata_file(source: ZipFile, path: str) -> bytes: + try: + return source.read(path) + # BadZipFile for general corruption, KeyError for missing entry, + # and RuntimeError for password-protected files + except (BadZipFile, KeyError, RuntimeError) as e: + raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") + + +def wheel_metadata(source: ZipFile, dist_info_dir: str) -> Message: + """Return the WHEEL metadata of an extracted wheel, if possible. + Otherwise, raise UnsupportedWheel. + """ + path = f"{dist_info_dir}/WHEEL" + # Zip file path separators must be / + wheel_contents = read_wheel_metadata_file(source, path) + + try: + wheel_text = wheel_contents.decode() + except UnicodeDecodeError as e: + raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") + + # FeedParser (used by Parser) does not raise any exceptions. The returned + # message may have .defects populated, but for backwards-compatibility we + # currently ignore them. + return Parser().parsestr(wheel_text) + + +def wheel_version(wheel_data: Message) -> Tuple[int, ...]: + """Given WHEEL metadata, return the parsed Wheel-Version. + Otherwise, raise UnsupportedWheel. + """ + version_text = wheel_data["Wheel-Version"] + if version_text is None: + raise UnsupportedWheel("WHEEL is missing Wheel-Version") + + version = version_text.strip() + + try: + return tuple(map(int, version.split("."))) + except ValueError: + raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") + + +def check_compatibility(version: Tuple[int, ...], name: str) -> None: + """Raises errors or warns if called with an incompatible Wheel-Version. + + pip should refuse to install a Wheel-Version that's a major series + ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when + installing a version only minor version ahead (e.g 1.2 > 1.1). + + version: a 2-tuple representing a Wheel-Version (Major, Minor) + name: name of wheel or package to raise exception about + + :raises UnsupportedWheel: when an incompatible Wheel-Version is given + """ + if version[0] > VERSION_COMPATIBLE[0]: + raise UnsupportedWheel( + "{}'s Wheel-Version ({}) is not compatible with this version " + "of pip".format(name, ".".join(map(str, version))) + ) + elif version > VERSION_COMPATIBLE: + logger.warning( + "Installing from a newer Wheel-Version (%s)", + ".".join(map(str, version)), + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 00000000..b6beddbe --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py @@ -0,0 +1,15 @@ +# Expose a limited set of classes and functions so callers outside of +# the vcs package don't need to import deeper than `pip._internal.vcs`. +# (The test directory may still need to import from a vcs sub-package.) +# Import all vcs modules to register each VCS in the VcsSupport object. +import pip._internal.vcs.bazaar +import pip._internal.vcs.git +import pip._internal.vcs.mercurial +import pip._internal.vcs.subversion # noqa: F401 +from pip._internal.vcs.versioncontrol import ( # noqa: F401 + RemoteNotFoundError, + RemoteNotValidError, + is_url, + make_vcs_requirement_url, + vcs, +) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a2084f1612e67a5d4e12913e6ad2474ee66f92e2 GIT binary patch literal 579 zcmZWlO=}cE5bd7H&TdwMhzJ2A1ifSrnMQLB;>CCiK|&658G2@mozC{hSlzQ>{STh~ z4gMDYLGLjqZ^D8?PSz}|2wTwa@!sn$s_Xl~!I)8Ue169Lh!QON39ILNH*%CP~ShJc@^{YV%Ur0BEJo$;>PHSxSs4 zCGpvAJX0Y)-?a^3-Jy~?9_@y{s}_J>IUA36(`{5c8_;P?>9@Go!=Q((hatf?wkBi` zUqs^!h+9`TU=1`{)s479cMJ0X!rz5THukjEN_ar(Ej-pjdJn;inWUFNRvJEl1(d;| z0J{)cRia&n#@Vy{^&8<;fYVmib2$SqXkzhiMS@l&N|Gv+W!^61=-jwzr{OI=q3Jjs h|AOFW$~j+;89!dJqZNC(Vy}KD8BcyO0(?w2{s4n_wzdEO literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..26034855eeba39cac4534ad990ba2b3a9ace2170 GIT binary patch literal 5100 zcmb^#ZERat^}bI(f5lE>CvKBAZkulL+QjMFZBVv;kn~I2Qu?6@44dcp-Plf_{k;30 z+r~IrK$Yf>jkN+)PXiJ7fie}O@~`}x_*IENvC#Gd+xdC-FrUo_3!+C4}mr^lFHoi6Y@tKw42mI)_x1f4Wbg2(?|j#uW@-k!RLj9 zkQWmohcrQx@^V7XyAm#YENV*Lop9T@qMGeEs?%BQTE7}+hw^wpxj*GcJ$BC(! zV2Ll~4AW9h7tNerNNJXIzEsp`jJG@|bE--U=jmnB@~JtasHNtT#gv(iah5NixCEz+r5By=8CKUT zlo{~l3B6!4U9*IXX(Qd;s+>wOOPDURvN#64B~P_XHqvd*kA1G6>>5gF&SqBAv<)2JmddeM>@HA}3JZaJZ?Ssr?HzcsWJga%h386LL8 zPnG#m_92OJtQTesToe8K_u^SSPvf(CI!gdYZ2W6XpQRT}8aFPP)2VD>G_B?0 z24xp1iyJH*PZ*NzB!KT*UKFI;v1C|o*#EQ++nJk6w-X31P~c~4>>q&K zAQfSDqdt)XTHAT%B@;Dlx7m$SS~So%Uy)2#Ye*_wJJ4^64vixfQROdeC4@n+WVm^` z&2=r%{J87f zujKEOc~^zZLK=OvRb1`;K_VhC_f)xmB1_X3a)nG(FPYKZ#%?2O>Hry@yX+breWR44 z=I5v*iyO7Li;R@TVZL!jfmV(7fI(jKJ?~X-!?(NP3p9NF_k59B zXvMevfm?EWnm*zS*SNP2HNxAky?FIl!{1li@%C$tP~X*KpY=y-y|r(=zpWNn4v#E{ zV%1~!dWRamzFMFu@F7p*skj68J-@ndvc7L}W#4g!aPmb5zI^6BGFBDXliR+3^d*XX(&GDEI%Gx%-#}K zwj8)UysW^v4*!R9wZihho~!N1Dz6G~GO-mLTCrrZJ-}k1%c05JMt>H@9iuzncpmw_3mq7}JG|Pxqu#v(@Z#~M$y>Wt`k$?yZ1{q!zQMY0u=e$( z1Ixa_yT0*1^$sm6OT)LktK$>(@rjl3V=KMKt4hbiYLP|LcCEdRYjv_V>iWTWyewiJhg+Uxl!}lELs-_JPC50i0Qn0pYV0`>0JkAs zOD5AAAjzbG6$tIH;6&e7U|1g5P%|GDehL_j7ohuMfq;^ShTqTBw;#N{e`WjOx-w7| zs^_l78s4t=4qZJ|8@cP<)#!=T_FvyyooEDlu1(aoEC+Tjw~~;hXnHz@*VObz-FDK^ z2vmrFmyT2}!#x(Je1)HFg&l0L)7oJ(NnTY!vjPMcp8Ap2=9(8&2{>N{PI2=vtcdNf zH@J7gz|*O$>mt{AR2dVlod&$?^KGoMozD;caBt~bzCIx%!tJ7YD@Vp z7jv}(oIMTH7+(&xYid-Vi8>d@gVA!Jm}0bGb_i?;xfMH{A(D$)&eU=RYJh{8ELXH$ z32>xap=8cTqRG(Rig*vw*&M^eGdvl@J;p3M44ox{-x!vNvMlbhCE5!fiF&IGy_eY! z3UuOfc!S@qlh1%W<6Y?Bq88|R@6D@kHvGNSlZ(4=oxgn^8G@pX&#BtUKYuX32?{ueu@bKAsz(Mg5n=_L+HA&wnrL^*v)(IbdVURO&R;=W`OOV;CZqzm?R}RMV14c%|WW&VHpGadLYQS7FzK6R$va{o)E~c!LX*jjqtb z39#(KsV1)k5RrSDJSPp*j3xoFXf93sZ0#5pFTzz}vG9ymNldrZ;7;G>S|BkOu&=06-1^&87wU@3hcL5l;h z=Ag~tl46S!O#)zP;y!{F2Vl(}n}e6aCt_aX^0^6QwSt|nX*|E-hcC2LPG-E8EGt!QapnF=|H{&r%(?zDIsbM&e zpiKo~7Pd3A6@6F+yqm{bVU~9Osd3y36S?h}42u!N3S+q;W4vU)yx3VJ4r7OYWI>9_ zz`sqD*}>_Y+kP)8&pUB*h|K^WzVr;ticNvzxKBveAIM0ZjQp9r@F{ujQ!@THUgr3} z66l&i;u)y+ue!I^-CJv4T5%6A$PeUia$LCj+5>{HS>XxiUl88%eaBaQ!m@nG@+FC)F3XfHDYiq)h9P#71O)<2Hz-*M zm@pY{1xzw4sgfBnbA?W2D^%pIFq_>SrfO@~$v^9@soeqsc?owkHL6;R; z@?ZP=ULOD{$WBd{^xngJ-#hxf?|pak9~v6m9G-!J_>}1=$New*p+7dQaIa$Gxa*w2 z38o}BuI8q3Gy82Bx3JtgZe_V`+|F_b%gssWtZUq5qCS?Sd)71Vne~o)XB);FSe-TL zoAr=G+=f<6vk!1^gk5FjqzWq9a$~kG^_b|MDU2a1g|(aX%!mYv5xOH zb4NMB_YNoc#m<`+4QdGEcg>u8a2#<+UxSIeY>EUvA&{|%NpVQxTrxf(Ml6c;WJ1m; z&Qo)lL^>5uDz>xpb4f8`R@{f;!bo~{Hl7lc#^WhD6Hg}N1T-p1X$d{u#}a}drp}6Q zXB4lHkTK%r*jzj_tvII>f*6~Zl9E`kD@cM@F^Rg)I=EdQuVZI+@ALwTQ1LrOc9*8`z z0iO{iOj!dpJ%4@}d(uCw0>A!dbpIQJk^LI@*=do-sOT~zV<&mq)M0H3nl7rn<}l{# zALd`2moq%hN6PS*5}9c}p3=sNC+DW)srgw^N=)z*({U+2kr5?cPV;e@Po*<_Ce5E0 z`H6IDa$b&~Pl{T9{#ER0`jX5hmbJl>i3=j%Ke9hMnNCN~$EAKgEz$3D_08KW(uVL!*s==6$pP?H>Y zQ-jp=Gu#c+7-91HH1NTF?BJPWvD2eRM_*HHv+>Ntbi^cu&{w8z{O9@Tbb3~d&ZH-% z#nh}golHzjM_(eexsVZ~@}xN9PiA(O4pdjmPzh0tcfwwc)wT zia(i7Uyx(8ud(U4JS}x%f%|BsVI+&(ZIAzl?u`In4Dc(#QlPKo*;%meyoWY!f)f2< zOZUz~*jN1e&$hU3WA=t;AqDydyZow&fM0XoHg1ETe zvEJ0i8}|xsw4x0V4U=}k3&P_=*)Il!hDkH)VFnShjyH-;AVdTgG)4;4j1)pUjib)y z*P$?~I*MIrtbuOc1WhwH)wH%~t!}YZ2#R6M8J=_sp&E!b4We0}M_YeO4NN;*k3L2# z-pDD0C*49D-lk(y8`V37cGP#)sqaAjHq58Ky&F5&Su;x)c9{0iDN@U}nwITaA9Y9Q z9lL5;d9?0iV>)Wy!40VG@7Rp<*- z>($4@8(W3$nvweS7JZaSE9>1;(|af0wO7LxtI$`|yFbspZ5kgq!$tZP%h5zeu>kS2 zRw7!8Z6cXYi4j}YiC=@$nao_)rI+NagNm{|trqY@1)EGT#^gA9{A}#-@zY8J6<$4c z`i0op)1#w`_1Nga!-_=`FG|h8^uk~+GOEOK`O!TfyQD{Z3zEMR_$RS@OOgvO;& z%W-!6XUq8CD9|!y45~-X>XR{gY1VUU=POd=;dnuWn&2JQtK;Su;pxC4u@|UJ0cN9kJyzU?H_iA?P{7y9I`|+ zu>(+=5;7AM5}8;+h>2gDk0&J}g-U?>;Up5o_+wxw7|SY)$w_G!bsi)bQ%v#DVQIrE z0SuOjPsP$w?7S3DO-#$Q`NX?W|M;4){=$Db_3Kk5{^SQQ7x`1Aj+Y9~a5>mh@b?s) zJq)RaH(|7aN_Vl4hoO>SnlcGy!6I1Sv)$AXX2J9&4Awxp1#`|Uw`OQ2_RJUvqStVo zU!kGBV!;=&OFmlh0{w_(OE~7FYRFn(t3|cGtkOCrZ_Y)F6#k_&}F(KXCVrB zHF-0J8#tkOMk~Qmm6C0FO=JMmc!f1 z;m(SS3-;XOY(aP4ao@`|c5ejwi-G=CM=9_~-u96{blcl>Wo&7z(6Mj5|CaYqIoNzV z5WG5i{e^2UteAcRtwkR(oiZXWuY)Qi^vzuAxM z$k`iKB?RS3ipSCyK!2EooCd~9Bm_!NAyF(7mxL_n+N2zv7UO~(9gA3{XQ;&{XQafO z;%0KcOme?sNs6h64SkZbG(s>|;#`UyXg>$c2WOm=X$xs}8VzhB?9z5Xqm$Vd9qTsN zUqDZJ9LXYgH^c>o^VV`>==%0++socSc}Jg$d*wj5;^CTh+~e#`?!3L?N?9Ps7~@v5GRQN^9Z+#8RA;ewUbW2%Bf$323OP2X>Iae%CcrB1>1o?EAr zjEUP9965W=nsd-;e*ZBmCwOz_zvlkdyxE$H9iK{Yy!IQK7wfS$&`n!GGbcuW0@>TAVDdNliKLh!- z8#DlJOguJ)E3+GSMMI*>9E@v<{+?LRiPP%^CW)l*G8U8Ln}*5mw6!}!9ajg^`_!7 zh!=H0RmfmVs6u3sv6A33Yo6H}?QB;q0-#|GA1)&>YC)oZMn+={6|G4ayV0D~pO zIU9c)MiNM~?ei(|?Kvz1R6`$_PbO00em)ywmtB2xIhvLdQ;AeG>t?lheK{JjGXfxy zT?$ly284dCQ3DuF=0(+#V!_ppc%&C;jf0f*QF4lUS!p!IN;8rvXp%%K#YqL)dBv@g zLcGhQ;vg9c1yzM6WK{Q-rA&^JqNvP!I z%7KtZGTOVhkc>c6-db^T%^lZIUOV}Nv5n9`F*L9m`k$fU{NZx2_4?D-o?gzBg1z~} z9|c>9;+Sm>$4uqkfuEgt_r$8a{_@I+Qt$J{z>ceq<#5Hzb@k;BUk!hEtkTLgM=R}I zc=zha>f?pxJ$ZLI)U_-xi-o4%yyK3q>B{ud^wn(1*PXYNJ-+<&%#hLg&jvqEk_H1qZJ1=eJ*>k z7r$w0In-zVZD07%v$joS&Wc70{@oF!AzJKPZ`E+}tPPtWN6#LC{PqG4h#6`WH%OSKuAqMNHQOxLHQ+9! z=aWK=&5&)RtFo!;-(gT0jE3$>6X*3aHrap6(|sq{`mrAvdduH)Cm7ZlXzz;UmZz60 zG?pn*-w8q@{UJ%6A=IkMH!U-IOHEEP)uQC0igi6L0BCgXK<=)xGA%Ze^b!0lGH59}_XHw@6Y(NK@7ZwDfSg$*kx7Dn3)ym zQmIUn%*Tq$5N>3WN;Nj9ni2w%dRoS4DnHy>``^${{y#_x&W*OAV%yNFur^X^+Xs7sCI3}ieQ=}pzK!Y@G6^l1nKXac!V^J8ddWGnyJe+j9`BxXdcNT_h}Os z2rYWftt1r8`%kc{Yo?s(n(5!#|Fz*LGI6QxUp~T=>EZpcSH3Ni zxbP(Q>yY5jIhc;? z61+kn=MWlmt|{A}JWn^~A@ll{r#cTbT+7V%EzS6ubKk7WCWhUro)jZAF*%^lY3sYf zc>az$a~L-Oc2F)79LqM1z{x=rp-=7u;YpKGk(m-rS;x@O*X9#qhFOA`r4b~}H8iAN zT`}t(8iJ2^3JgS!n3)3k2?;O~&6{l+8iFeX4#j8BC)4NmljCq%u40;p&eO7Bj+(fT4Qt|ufNr#Mjga=qkw(Q0{;9e98Ix74 z3Apnm65FIhlo+g5<(_k>Qyk#6@k~ZiY=U@xeu~jMX_la0ri3V@lqA5$`8gq;5o7ZF z`PsBEpA=;%vCL{ZNHA5-EE6;{`D=@Tgp1qM~mw31utGJllK|(~f zfh2U}ryZyx7m$E!L&NLdXxUwC*?1#&~+OcH@uxi zZ|ChmXF1eS4h>Xn_Qobm*V0jOPzmaAxZ^n>p|(CElx1>kkR*V&aL(rwvDch zB3a*y-m`FH6#U&-M!0jMb-36%yqZ~i{qJMHjNNJ-y}f;~9PWm_xg74< z2oDy+gQf7$J%^QVxq6H(awF7R4E3(Ow)R*d)cav*U%9b)qj8|v2vxq+IJ`FayGC+^ zbVpV@RvQZ2pSbG16Y465!sXERa%fvQ#8*7_&ZetQ*bvcCb%TdjGlc;EVc@YlWcuzY zHubC=E;U8+BU?qIkM)BYUbAQ`c8+2;SHp(0tLTK>@}aX=H8<9(O@_JgKLfcQW^Sx% z-U3XH(5s25;sH^#REc5@6e$;V6@Ui_t`!6hh_>~CnQ+tCfTERdd8%ZP5g_}RVyDQC z#8kFXH75`U4{!iPpn%?-e)wKvW>}<5L!e0ihK3&+Tg~cqs2!@OOGBc z1&`&OM&IS|N(Mf$Th85gXt+P+6nA0?4?9JD?*$VRF#n&Dws^J-g`Zon#W@B( zLvD#rXl4kj)5sWZWbLX+L`4~+T7gjnK{3>dz#;)w$tvw9ioXSyq(4L516ZTddKGKb z@+rca?*kSN^;$al%I`dbcf0|WO8#!!6YGZy-p&ub2aUSrsg=xfY^@j7x4ci@X=&eR z87#I80-<`=zFuk>0kIBlUvaF4*B)E%*m&w>@u`!gr^ZUbQ-3mw8FB+wXAp|+FF-NX z3s%S11)@<8+4KWmu)vRC5$q(Qk^cf-2*`ZQ3sDCxs$K|qAewWw1uG;nll39qfU5sh zaIx`80ypGnOsG9Mdp*mFzCvA^Vx9zpfWnjDfG5H57uR?W+}WQPik7CYedY8?%}~Kl zCSbpY_D|t}yqKDRVFJ>PSZka(9f!eRh7sa{kU=tKkmZ8{{d60D8lYrqWVXq;HnOn* z&_5RQmYAAnljs(0VEwo8`dRPL5Tq4Y`=?-~&-&GMof{tBb&iqFBY-(_RyvA|iF4Ve z2goZgy-KZgpCV4xU*~3)dNR4oiu-s<5Z@l9I7*2mP1UOSRg{z#<^Wa)WC4wdIf|H& zPS8-AiDHBR?V3Lu_IuhAS@AM^4lEG#lOpaYXY$g6_6nbB`5*`yJ=;WNdvo0zbP?af zOptm)n(bck?*9T$U$9MO$)%>gyrW{axOSF1x>xr6Xn+3XJtx=Nl|NGUH>xRDh+yA1V4Ht3AJn+=$#9Ecu@( zIG_0Jej^uXzss3iJ8w7j6}){F3yPo1MCg8QJNO*;o96)nOKCkVwi>D^^;DxAX2=M&<*7n`(XGQ80(!@K z^rJe;0$7&Rm@~~7ny20mZ)Ug)FrJ}xR{MV26tTqjVM~nrf>2xNCFB5Ck&34aM8UQ2 z@xc=?1#3F2_DoM;6^MA`;}a9&Tt==jFP>%oKv?zpy?j!ff^8m3!>r8j+J)hE?c!(S zm*FS4AnvdF5a?p=8Rif2lk;#c@Dvb~m`uPAfFApK1c>dAQZVHK@$L95f|e)Xq-oB9OfwCYocedh9q1O`}ruv*hVufvQ>;$X~_fQ>>cLMjJ!l{I|+UeSU2$& z>`nMR`)Mm`7qedrm1Tn%t2u(#=J$}7LUqi;7CMxWhj~{2C_hWlylPY~?Yipq_{!STE+Pii1JGmMQ(?GWnM}sF6_4!&pVlKu4 zePz1GT4aMnGDNohD7jj2DjHd=p{QRc`bKuRMecq#=k;CLx3ur-ahOd#aJ97LPu%u2 zTzPWoN#=^_x#j7Cb1&4f5$q`jdsaqD!GVonv>1$*f_nbR`6Zci_vd!?{JF{OgPHBW<-H3O>0REtNkKBERdyRSNG#_6L zo2{Ps=PnF_h-XAmsUoA3Suzrnm$O#5f!{oWvpSANDLw>8#U|ml6NMNQ^s}gE#sV@; z>IPEcZp?77*+43wI_snJtoq&liq4SuFnE;PMfidDZLjbK1d!Xd-djhq%S2FqG+*w(IF@ z>2gDOxd;A)YGjX#YeoFIt<|0Pz^xwWP?>qj-(7Hat5|JdABHsc>l`L|m>Nbn{op>; z<8Hd_xnTYmaAJe!flFy;0iIotkCOzk zGwDPM{=M@utzT+F6U-AY5*Q&mEQuiJ7*GMx(LU|jjOuE*Fzkm$s82OIrMC7zVq@hz zh6MHSalw}B(Q8q{`N4u$i=?F35(HCrvtY_Ux;al^sqcIJh*oh05Lg*#x^ijh(v^j! zh2>Xo`TK6Sgs)Fso4TI7mR#Al`f91=@%+)-p_c1MuN@`k@Y6#-JNoX?pPhX7ZU2+&&i5lF|H*>$(JG_t}1Cb_v;C_u$maC z{KYFFrUzGnxt=RuFoF*RJA-pkkZI1<&eb?y@LMpqL$!tj!;+ovf%Wy^@Fh>od1z$Qge?BtIADU;OMJW;U0aS&7L~D#h zQU=7=Vg48l1^8f%6#v;Y=oqw+_*5JODLx6k7tz-OWEjZjk{aqu&8T1-QzdbVl|CvN zQ%q6CbWSl1GL=1RA?ejdE&H=p?9gD=O{uy;S-YAm6o%l0z^sPgImMK~!f>UNI9`N- zs}Xs20FYP#gf=VwL@JR<#FH^OiLgu93LNlq z&>9ps+pO4Ja$aUKm*OJSz~_{*thi#a3Bb#-m`qHKFhYM8Rhi<~sLqCQc1)(&y3h}Z zzV1Tu8AR+5x96$#;IA5r&Y`^hs(snIEUvs(_B393e(Cw;ClKmX?&>b|JpI#&)!ttW z-WXh)DDB!`+WB;$@99Fv zm?OSF_(DsQSI>O!!lyQKYkU4E%>C{Bk2`+Uv2v!=7Fj)rn2P)f2sq0f%ex9qeeb!; zjjhY>Wly28cV%*QYHfaf8u5B;s82a_(3c;9O~Tu_Y$wk}Ngt&5zvf?tizx*!|qPTQm2XQP0-=B|YlUeyA13CmlNVM{ouyC3Vb?^(^FYe_F?~9wIKf z56=cYP50ZYG+{gY##<#z*^o_qc|Kq72P5n6eqvYzowKqy#Be(pA%igB4(?g*! z3O30SL)_ai6iDY4H zKXg37CRm``X%Z@AKf@zEW7vSIJ?q(d;BqpoJ5|W4{Z~I)X2UfkVQ7tQu;G&6!Jc|? z7sM!aro}W&E@RlV46Tzhv`*KUDhv9DhFGw3CJkH7MKOs`YMVr6U7R&(hc%kcS^D{7 zB-s~W3{I-CWcbiRln^t<;#2z|d&)cl*bwmpG$VU1eGYE$D5?Vh8G#K&HfwHh!3_!3ocC+eUa6Hl5cO`@{z}fPbKmvD&|J0w}Iew|203< z+d@~g5O{?2+Rh#2PQKjLM+$BO*T~=F9F4yGL6|gD@l=ZvGX2c?u5-1e#6ME2IATq!d05X&gLYlg$+!Q~{QhuIuzi2+Y~h<0)Rm_bNC!`tTE`C47=D zPctJL=_O3sAijmTV9gdbr;0U#Dnj6F2Zzt9Q4=QVA24$5x0`KRux(rrV))vc@lUnC z`dQyYn_ZBxnW>!l`2!(#-`O{!k%;1qu_%gIOmW9zDp5n(8;g-ql2~~xCXqEsaX{;! z-DiVl@a%SrL0`8i9+p=4H9UA;V{r zBkx`YBHEhoS@2a6YpdA3w%*k<6%N_Dg=Ozs@6oSHr^mK`rFlhO9a(w%-R<`{{6xsV z9b>lGLaRL$4%r$$*8JtrT`JO;YFp(IRvNT*u8dSTWUCV_TNBrhy?^G{FMjY?;h9s# zCtkWsZCW>!D&r>BFJud?1S=e})x9iRd+aX#(jZZ)?A9iLG|^JA4B9%%+xpe~i32RZ z;|kujq23t1Lm%C18(zV3kgbK+dw#i%72n4UsL`NNs&qbU>%%t-6$|BE18V-{K{X$H zndNs}4fkwluYAMgwDm1xvB*}&S++jIvJcMQqsmIis{$Y+0AvJ!i~x{TI@ud_*q)@t zAzPieOPRJJlq&n#k#*YoX;YD{j@+e;AaIl@Ri0sEG}yu`JrxewDgcqK9llGMHWW&g zE&zUNcG+Nmt#HUzr`O~gv#j{Oe3xo8V3hE=2_387_M&OkQsF3HbHW_haF>-eK&q~E zGssR1E7J;lR_E8wtPi}u_t!%ogbR~ zk?K*xg%;bRYx~wme);TuDr!(D5yD{)%)l7D5HfmYWCYQ4pXyZ#L{}&hRUGtTDKsC& zk(P%U2l^phuwm?GoMK$<>A?cJfYGXvJSA1yOplZgQLmLhSNb1RNkQR?1Ad}8D0kAcR7GBJ#epw*51l$QD*Y8zZBW9{^QQ5(B(kJ*y^iTf3NWd~prr&cu{h#aiT=4f?^FMOi|A`wYasz+h4*e5% zw8$O(NAAf#nw=)|A2}qSQUZS~c=9t#&un=3qK98}mK%as&MlqWXy`3A^e(!g*tk3L ztsAcPqN{y*U&+1+EdO=nLmhUm0H-FCapzVK?jE z(3(GV<-`&|T{ah{vpK$V;#()~wR#)Oi>^wS$<)6L)JC=vx<}c4=SvP#C_j9kqr5Wd W<4g^UmhX7K<;|b@kZWYS@&5sbC~=nn literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29d3ae186e51c1d31ee683113cc925688a260827 GIT binary patch literal 7653 zcmcgRTWlLwc6Vkt^O2ZHuB)MOHiCElJbzF z+!;z1BNbY}=t|jk9e=b|uvY$&bjBse-DKM1WJE@Cik-rLjDswZjtMa&HsSLb)peX&`HXH zLQ3F$F(m>Nb*bn{d5UsME_zd50dXYVS5#6;(Vz13zDExfgQ;LqO{u&u>!D&e73OWP z9w|msQQr3Hv0_`Qt=OJwFLtClik+!Wfrx|(6Gz;OH6iW3DLB1UTqLK7rd%PKpSItW z>Z3idvU6g%xx#JH9(SccW`tzm3!E5DO19@*!L)4U{G?SdN*UdjFP0~DniTE8GZ}5f zC>Ap%&5oTZnN~*EGl+DOF@qt(a|KPKrHk~kWvg1joYXTj>B)?hPYSkL%v_@Btg{^Y zK^#w8M!L-Oq{j}tM5mk+O*{NDWhQJpVw5aq=yv~jp``JB5Py;x6Eth3nPFJzab^_L zj7}Q7YfDpEGwXgJLe5)&o2P(EKL;LCf_wv>2`NbvQyxu9$(kqSr9Mrjisq$$s`S8u zagXM^;<<@?KuHBO1!ny;s0FC11!+k0YU+4E3tjP~!dvEWT+zZX9@$|$0^?B{)1v$= z1x|^zoYJ;srmbbBealRH%S;E%;N3cCr*m`ohOTk1*4cv7-B?}6fpfcB=Hm~}FOYFT z>%O8kDA2P&E(@vN3nUr0{V!0KEwcg$hnUY*q``d7mb1E1qDi^p%jXV{7j()SdCQut zC@_Kzv*Lx8Y33_ogcit7b^s@AiP0(B%cxamrEFcEIpIa9QIa>qP{9inX34L}KZ-d4 z?jep=yaNNU^7svs6c{{SV&dAw*S{Rf8$~)aVPx~PRHS*mkj)Rhh;nnuqC@7iHI~Vj z2C{l#$fRtFvLTaYhcc!~EpsTBft6NfOsA)5iL#7kupwHS8qy16Lz6RB-Y7jXc(fZ{TGPPUNfyiBz2QXc~rh_kZgt9Qw);Hr_E9%oD- zvmQ;n)Jq7HG-=LTYJw`Igua+i4?w(EPe!a8ntnjXSvrYw2jwBfxt#pond>2Z& zL_U`|XdW~ZmI06 zj`w_2PYwkTm_LF0v%%??xyha50 z``gDaORte>VL!1@n0c{KukkX0V!f@5iw6jMXil*b?!?4?x7CE20@_S*?}w*pWKQ{O zWu^|Ng=ylPob->{o_vmFZ5cfm)Ang}JX6*!TbO3J^Vj0Q>kOYoWoX1G>sq2@SP65w z0Iw*~ct8pCRX{@T=NsC=E>cz`1Rbi+;#n$zC66r@m}AJzFSl4T~C2#iS6Eq z4Xnim)?-5p-kRw5AFHZuSD#;eekpiIJ%H`Ai)Y`OUiPm%^4=3Sp17m_;BKt*txL;~ z+=(4pd9oVqx~^VRmws|5n*35CZTd`MluwXTI=+A$QcK^C>qi1-nXLvR8=shC%Uls1c$)k&-tGmv9 zoL#-}@`n1#n)=G0YZA_VZ61Zs`cQacBuYMfvTej8{WhdP`y-D$67qfI_hCEQ^K3x+ zDB1n2Ed84-Lp!^pih2`v0s~HVGT@q^iC`dwcctb-vQV+{qJc?+Po&lqPn3*#gW@l_T5& z*otmsdF+yH)$$En@Xv78w-Z{EG$e@ZdOZ^jQp3`EaY;KT0!eou{jBKfR~BsXs2ZcN zPW-lg!3p+`+5t0fOgqo865_gPu&$a;UA!ULL7YyTmS&VK=x~@eO8N{t2-i${9L*q` z7As8J9qEFZM$+g!s&X_H3nHQfPKj=^=b_CV3KKsVIOjaDA+M-mw`ktroGegFq=u(6x% z1GP^}mRX4o3|O=X;j~4MzX8kVPF-Z9@G&<;=cWA^+VJWw0N@O=qY$3qQVclwSzEcK zIy`ZvDqY)o<&6IXb~BGd1ukBI^zD7;>9?N-hix_f{cX(ZI}FU~+sdpSU{*8%Ai~{Q_httipJ~dH#uf#>_h$NDLnx05q1#qTzH|nx~gD8qF4p89jk-q?Bt+ zv6q23l~^lpN`^*V=CD^_`Wv~D#)G$VCGKzq0tt9Xt<0f}aq=zPQd_xocvU^p z`n0~ATeb&XkL-4ZhW$+sRM#2kuk+72b7=`e*~SgSnxCl`d#$`g%E|SNfVC{ow2rZh=7yk3XWF-y&wcPSpDi zMl%Oy6Fg_(UC;kclUqmuUUu^NcZy+~THZYV9jj5%ZY$rhVux53;t|nx0dCeK{W;NU z#0;(TpugnGwT48uJQy@2=%T*Ja~_F$)-8cqwW<-6S<;>mdf@w zl7m|XE{bo>ERTVo4Sq1V($#c>-}fe<7XGn+>JbTTlpZl9yzzFoO@8B8+n{A;OgHCt+DDNIBkCi9!4`8 zgT4cU{|f|S${oEAO@NFDmwt2(!IP=Suyc}yWaMS1cygipUuC!D9sQFy^bKwPu z?5swt3=vunM3T)oZU^~?*ivw%8RN4VVyW)AuwHV;8c~`u$}%v0>Y^>POu>YNBzJQd zx*ZJdza274U=?|$5tOwZhO|n0JOkm2mWJ@9awgjd-ZTn^pjdDO7&1N}vgMLS8K!{1 z-@@EEGnS#wQe^?Pifn?B@&GICKZtae8ccVX^uXf}b$>9WGvXd7= zwbml&O37eF9vgZY_tM~-nwDMy@4^)mQW6kKy*k+*&xf(!U;lWI_5}FkEf#S~y!1WBzzG+I~H9EmDnjzok?=`l@{o zRr?avJqN3M57a^=me?e|Sa{*Y{e5-O--zs8i|kz%{zdtXveLDlIJzD=wyGTa>V7+k z_TD32e;gyHbBpI{q7WPWJQ~06^Mu0x6(Ak)yO9LOR`K7pcViqC|JuZa!#~7N^pOwy z_CBLXA0Ahr{;f}dI=RbM(rL6>>9ie4r;CPG*0HUo(`ZYa8HRR;Jq}e}E$|52XF`^^ zNKIRHGSWo~NnVVpEymDBF-&YQlu?F)XG`Fxu|e!Uht+-@3v$vsE7?UHehsU?#0u?& z?HMx+ou#o)u|l5Mp*qX5RM*pKNMXMYqdbNEBZqUC17=w9-1aqi^AV!3FXA5q>0Te~Jr{95( zop9jjk2(C@AKH{*zIIfVk1ah?BLJ3D9NeDZ;Ny#%I9ThG#|X-aTT+bxxGmj7P{)8) zt(Rknawnbw;8y(h{`YtD<_E*~aHNh5t(sEb?ge3m@AramOS#?teh4>xL1^syf>7VK zOMZ9-J`upJ$8V3kfBZf+Iof>@T3kzW9wm3Nzd)|~Fi#6^B7ecQ*P5Bc4wobp1%`2; z9fw~G1{=Q^3_`YqI!S!SwE=2??Kowtpqqomf|+%M5wk1yo~`>hIAGSm)Mlw^I!WPe zhdD?Pq?tUhvlCnQfL|{L>wa8a$#J=7=xK2K%FvUr{h-gz@r*QMID;7^P6u0IGzY&R zQpO!Whd?}~to+byanMi(*79(zE2R=e(E7YXkPlc`ZIOm LwNFVmKmLCJ7Vi!c literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..53ee5f93ffda86beaf517b4e14568c7f23c3520a GIT binary patch literal 12572 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 CG0mg^ literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dc7fcacc507f2765799be50699bd3fb0d9dd553f GIT binary patch literal 29045 zcmchAd2}2{dSB0p0cJ1*U#hUwu~<|FpWgO2E_A6&hLmiXi-mei)BikE}hg z2*NEv5(WjyB3YxBK?{3Z2d(UF8?>>vebCO{jzK5hwrEAnHRy^}4pv&Io;_L>a}T;> zo3D8@DqZjQANw#PaKJ6JhabW5yrurs!G zaBFPa;I>%TU>DLWM=XOus~}r0UoeK7f6F`G#)#<|?3Vp+Y&PFIJs#QD_8XJqmM>N;7V@Z4qNsbHSW2j=kFfk@;j_2b@4O+CC^C%XV zl{0Zv91ewLe7@?5kkp@u#n5l9_Doz&qURxMXo6f zP;zugzK$-aTGgdc_{#X$kQ7lgj}%eIqM->^Ky!^oBzb6DiE33Wb~O|om$kZxIuy}A zf-$jrP9>I9WI1Tp+iDHGB@vbZ9sh7biG`9wVcy%J5S8-8LRVxX zNwZxItC~F?ipiQ&k(1*}Jgnm-n_R*X`dgbpa7#$CL<%nJIAA7FnxpU+k538){#F zfjan!xrrn-ry3rWW3sXdU)S6W!Yn}zS``s#%60@QfkPC3_MN`bL`?3xoIsIyOdgF! z!lQl9DT&MSm89IKUQ1pIjmCSz(MX>vD?s!#Y?H-fJBB?)m)$w0Xf@U~Bm zU+qJ$`o<=bqlx&Q-d(%uY`ndb~idpSWwYzChMp`%(R4 z|JwF}?|omU{#4q1Ds4ZthRTBGQsl7&Lspw2U)4N7xyy1mIm9suI0*a>+o`Dj5Nzr2V_X>y9bMq)l;6IwZXD+nTBt1f)5D z6VBAXEW!!k0%l&s3IGleT~Xwh$0G`6GM?{rR=0&7X>t>S`DfV z6@FI3yu7T^nxmD10d`ZdCbsy2CPM|_V90S0*@y6_o<=Y&dk3K(@Mm=Bc^RylrlL{>gOv?)2t8>8icc{hw4+XI<{Owgu<>^|Y@mBO1{YFLNwQ3um}n6u%J;|e+L&0;7iiiPN`8Tw>TubnrPwFbq`Nriuh~@zR8-${{5@ioH)9A7iD7 z2&xlmQjUqkN+QOZx@gSU#a@%hqEXt%#AL!~mA9$LwEJC^DdVC!zZW@T>lAt*5jQEc zj-BXL-9CuRmR#Kk4wCr)U*AG@u(zH&M=KLR5C)g&_Q$ff)P7au`8)W zuvCey07=KH7me(QtOf^yE`@k3&6>bQKm*e%kk83iG%+$FD_X_1kP>HHf(p{iHVdr6 zC>0LcmB&$Ap%tT5CzQy@kO4BS8k|Ye{HYR><`-ZW^`0{X$%MIJX>x`L`dF5rL-bQQ zg?a<{Q-1{k7G#}Jzj6ARdtPy&>8^Kswn?0+zUQyMweRM>TSspmUD&_k@1AjG-Tt|$ zkK9`xI)!Tgje*&LoYhjh^?uF9hZXi}Z>~xRG(Bt-e47`VKK5>Z*etlJe*M}vudP-z zW-1!zD;M_Pt?17B{6BVA-`F?1@5a&Dqx1V0zP94-OWXU{S`MQx=3^|;H4l<*39tFl zOJJX31WP%CrdecK(qSPT`L3~meG8guQ z@Ro%J?*JzYyaEg&@knxLNO=y8A>FRZ(P8#Os~j3)obAw%N}m(OX$}VxAyTa-Q1e~w zH5wa33AGWyPp5@@uIkx}jH_whf7i7!>u;E`f1860yT?-~qC8E(Sp=F*O)3htu2t)w z4$I&ohu*R%FCbN=Asyp=cotEGf&^s*5d8F2A!oHZ8t3~z6Y%;kqeC$Kst z$HVw(J_gxd`xi*cD&?wooCdrH z-LePeEA;Z!1?62Vtx|RkTcs+9KwjA=RT}w7bH8dgg_IiPc#uY-RxRRGryB7($pKNQ zQW7ABdGXsnVGsJWs&n#HEim7$>&h@F87SdKjL z*QoSX1k*yccH_MCM(lQMwQXmnZD)GpuBC=$`v~R>S|C_R1+v} z!`~Wp1PpW8kxw@u-J~-ps6XY#ef|+`oEH@0$uVRaC>wWv&LA>kKvxwBS%rhI&@)nX z1!LFKW~po^f@$Ht+jnFC?EbX7CF^gzb@=AtRsYV6e`ngW^S;l2!kIYZA5F!!ho=+W=DOM&4Nz+ zbxf-Ot3X*rz}C~|P*Lqi02aX|Y}_ws znw9ehxQYsAE_=TQ4mgSt$^E_oQXQ0X@}GgKMGQfc zH8w%?lNj^xxWbrGM&#pRxm&z6p49gMh?mz0Iy%KC^f_K2qtb8Wehw)oX_sk1&`#nK z3FLW11f(yb-#TT}YM3NQXsB;9JlD!Fk>eo2%n%%1tT_5tMC^>j@1dmHjsQsL6>0)E zre>#BeLWdp&tiC4`XKRsBJJy0@eQP118h2ifl@Z4VrWQ8gh4#LXhri44KXQzNsTH} z8IBN}sX&7)C^QF}owg;`Yo&z}LlnrA<6-&JExzXYnt!4iOkNN-QqZDneSK==$&&4PH)a?cQnm6Ep*)8_&`8(&1NL#JXMas ze9M}ESFXwK=$`LiLy7L3r^4~9WxhWr(0k$RL-ywVrrw6}XFdj{TdM(eE985h7a{`j zRN#&*T&XNOCF>zngu>1CJwZNNr#|ej`Xvy;k)?SUu0R$jVC?9@uO}9wGFZfa=ets-v0>8XV0!I-=Pw zrJyfXp%p~N)i`5H28y^6q73xMl%mD5K-qn$48VMAI|Nw zB|lvta`^L*GbN2B6j!?u{1i$=r%>s;;hFWUy2Ol2Ty<^BxVA0Y-}SuZx$An&kV8Ip zHFGkoZ@#EYT)Ym(FCp@akYQuk2IFE?CeZ>DtDpx3wUF?$fLT#y@H}D~5Valw z-$Q1*eA6n7elwgicxqh- zQ#?W=@!z1jzRle4+w<rqb9*eV zd>aWx%$~9XDXE5nWmjNw_+u(f_6Bg)VD&1pjV-sPersyxRMx|^J@fnCIC}f&$DSQI zo6yvG-`6nXWmB%%!cnzIpJ7760~{{GWEfrz<)XT|KsjmbG5EUifa$Z8R8!68*v=svIv(m=v3U4Px;KvFxg#crkS-Q~FF=4g)2O&C0?6@|M2;h$vhHiK_9q zG3-=*!FtFir>TlA0=Rv1dv6`NiIHy3)&y>OZ+hpGnVKzF2%dI698%a84Tt1DM$P{U zkz3%Du-?mdyBrNLa1@jR(3rAK+RBaVdpY-8O>erOE*L@wSRya_@Rr2(w;uUl=JHhXRH@`TSE}D$PS-sE5J%F z*|Y80$iItDsARN;R8%E2HP3jmEt_aHuD0yVwCwzgmfbT?XPY`!oAzaz_AR?snvTz$ z`NZFvt!XmX<$>k>cfP**{9!~Mwd;QY);l;Yes;h_lrO+KNU>xw$|DYx=Xs1M+C*t+%HKy&w25jBrPIOL-qhyL znK54EzfxO!5ios9t5`Z;zWVu=)eYU54c#C4y0eY#AJw#jWVY^sm{${E;4Tm8ucApJ zndQvh1}$NFE+Voe&*xJX(oreDk1Awgh$gPd3g2jKfPwNmNH3zQ?gGdZu^9#F52?}? z1Plfc=Toz(-YgtTSFw=M13#>R~8Y%|Ia1e;0(dp>PM^SI=Gjbgt> z!37G4HDK(yGC?t-h@4aWO^WTHfT)@BTNK=)fGGjqq}V^8V37iXt@1SljOjnd#g|to zk%D(9!)<}M@~c9&r*HbqOmeP2y&;$eZ|vK?V(-(u`=?L+wcYM$$$2b};C$D@p4&Yn zya#pJ-Qwt(-;&7FJ zmh(6r$1U?G(wlc>T6gCJ`n8l?WA9vz)zLYx=3r9kTtFILIaj@7_aZa`crBeyAATmY zcVLZv`wX|>RB|hg zTrIiCrXqVG{}*WokmF`K9&YpD`T=8w4AvmOn&rE=HO9=T)pLA$u9GwdW^Ns{1GOwC zV73e0ftgCoaCTEkgMTvcMSFPzQAqHBRA5RQK|_}b&an&%oaA_`%QX% zyR@O8?PlaOBd3Ms0z!b2-lFm5kkmt`)LKxx1+}Sf%xYznms^Kz)DOU5V?o)C7-gGL zM%si}o8H?-^j0h=xe0Byu{PT<5;l)$YcobIq7D8%f^d65oz3V;2YRxF^~Q@9I}38# z8T6>tt#XsJP40lj%n6soF0{F&D38)zQV{8#Wzx4JeJj31bFsr53t@^=>Mr=+HnXnr zEtk}Tx?K!^s2}5g$-Skgrv7 z7bxZ$M3lW~Q?nz1u@5gI@hiocT^)Ry|cfBL=CO9z*~ywtYhKbH0#OS_J7B2TPv z(d^+jpFNs_TZ}bJ-86wyVB#{|eTsdFnBz`2pp$p|A*P>z%ChoYo8HvtIsX9AkElGr zP!z%;gDDN72&Of}t`z#nr8bp-va~=gL6E$|7zA}*P4{C2GhYNELT-lOTNsFduBcr4 z2pUbil!>oqjnuX> zP$@ucv)~4T4%dW2R;lr?`Zi^Jn-*LvzF^uFp~SU#G!f#ic+9!ZY(%&HMJL1}NjXoC3Wa8~R;dZF z(983SoJ-9{F0ds^{@o%|E{o7pi6Qcui-~F^7Kw&HQ4?%24kx0JB7m(2xtlB}e4_YD zzMn+Grj8+jWA_wuT79LkV^ijrHOmgjC*(E-Q;U})DtXtkt>s-LGvcX`Dqi`g6p$xs zu!669!gTKC+J_jeR{llSo^k+bY)R`~81uxNS~Us=drQC@CY-5+GY42t>0G zXk7JoX8fHCqbvTt85i7HSKVD1ch_RmUH9&6^Ts#2ZgcUg$#=e=;_x%m4 z{=SUAZ^^adKLA&}+Q4dUXQq}~sO_6^-t%rx*W>4 z2<*@ulX^u_*NtL-Ef&<@vS@zz{GEy6ECo42$lRY!8N)CNEi#w!J5}Pi)JwQgGyzI3QA$ADMNX{x znHDh;i;Xj%e>OXjr1>4{kZkyV5q@77g}yBY-X|gDn_)fHKcIlw!5{gdM#b?s9~fo; z!wSW5R={i;y=FrT4MQ2n2aOTK9SzJ>WX$kT0F@#d5$B{WOxVTU3ql1>1t-}qZCEsD zT9i8oij^@N=m?83PTFyXShw-bb^OmGOFlu1Q{TNCgqnJe2N&_JA`CEhq^-y)GHZ~w z+IrohLLoIGz+pq*#~6?Kx(OP6J%!-uV|a9#jud90Qi6;T75ikAUo~cZkvr1;JnnTg z@rsJEfP@mW4M@-7#r+{JB31-xC5e=Ej8Lhg$Fl@VlJv2v0Lte1j(K%4^-Z;hy!O(MGoP^p-X}zjE)@@E4HpM-=MQA3Aib@K3 zzjv|YM&W}mV*8Y2C1_THO8N+TrW{28nSss}u^P%hp#&Q~pxG}aaL&!nr}p1cvV#@T z?8#6hTH-+-7{Vf9iyTYIP|T+~O7^#Mg{;BBFhBIb9BhcWc_vH0?z9|Amc5A8o|q7r=vu3$u){+5uXBX%WSLA zi*_6b6e4lrYMAR#A!ROcq~dMybxZ#H5uBgG_Y8ot!$Z7GUZ4?0t|R8PiVLIXJd@!M z?I6_ayntHJ6-LR4n1>>9P+3k@W%2y@rK`r#M>^a{<4hn$!Lh(@Q6=UKn^FivG>2X= zR5~|7hbF*;T}1^+yc!9yF7)&OSnOZ}18EP=j;ZRkgo163`xh6q2D>8|SLUgvB*sT@ z*aKsr19YNz5=!|5ek!JaF;)S?`BT_FNeIT6&8F1xFddlEKY__CnHVuPj=dG@ZGvQN z<12Z7lha}Kpx9-gLzgj%ZY)+lfS`HaN)+F+4seOlppgF__{Wdt5v3`b=wd_-_NtfzN63EyiRj|IgUN7kD7tr}yqi+5U zQH=yPhg3Q2cw49W;w6p_&h$T|`OL?^ul=k4-Tp9qnOzk1z* z)tpCFu!5|9xA+Cfsw`tfsfzOnMVaUpQ&-568Ui_p65+zqB~Fp}O7MJ)=>jpMB8Nat zj_f#u6`o9l6VW3F`}z){*pY6Lok4`N+73F{isaY?5vM++^gT0id~A%#XDs#;0@{E= zE>|fRHBW~mQ!y?M#zi?cmYgtQAa-#U@mLVLF`Q(jP82Y&veYY{iHD=(5;?gVfD`pP zbe4;hYuFo)v6E%yGG`jdU}fG_O$nkqaMGg#&+McSPRh_esr)&mI~D$;jupayp|7M| zw7_^F#&vE-roz@d+h-jwkIM=UgbypB5v`I)2h6&v?psak0|bFToGb)L_CV8&J2mM- z>84t?5D|v|f)<&K(zEB?vu~YU?LMCAK7OZTrTb*Y6`XO-Ip^*3^1=nUWXug`+^zTO zTC;TrMpqJMp>3I()9S?qQYSt0#x?Rc~j;+qrOc@#<1?`T09fq_>`0@t#KG zzPh>o`3-53zql&}PDkro3S4boL6JtR+T?oCoSJGaVULP(=V=NFDL~s{Qm>n- zTu;^Q$YvuV9DB5?s~o>-(5V+upHuTmJEM_|rcYH&I=|^on%-5DPNO_>${%NSOjZ~a z8dSEtvdcEK4(0`OH^5~Yr}7D)i4*p67@VF$GKumZDWHu(p|fnkD(=rgYaGloE5{T^JE=sL z0-Ar#r)L@1$Pj}0hHGvRCZh`~aizw}FJcLdwXgF;Wm$rfGH(*vjH5xIO_i{9`)cQr zOy`kh^@G&=sg=&BGOqTSDq1+%Ej=06<{8&qUpCl7M>Lz$?ydJ4H!t+9H13``ovq)n zTE8t*zirXA)U{Io_)Jx{p?S4oN2UQMua}=nH|$txI5p$`v9EEyYQ@*F@b$EBXWF%s zqbMyj<0159D9R5EeZl5xBAij3&J`P|S57E{TcG|mV&_v46KMvB+m1$3vRBuW!k=;@g{c?d8&s9gXhNDBN8n{Fp@IG@5%fkuczhrCT_Es6$Wwh!UMsXN2#N&EJXy*A5TV-;3py@7#{<6Jj_xd*hrD#VR$U!yh-8FB#ZKw z_@Kct{{(U6uMiaJ6f_T?OQx??Q!OQgv@mm-AlZoq*n%J%f|&7%3xO5i*2Rw1?T=@+ zKfZioW&81r?|9mEoPkpL&nT`{Ldv;BE@l(qLbN2{FoZ6r1PwJH+l0$W8Cp8vpUH&K zVQTi<5a<9GE@&`K789kCq*25F*oMr8h9f{KahNs7+MqouFXqQz>}z@S1{ul|C^~Jqj^Y-UH6e9SG^1ivzA8ftX%IGr{G@{pPC4%&&ejJ5 zwesKblO3aGg*o$6$@++s0@qSaCDUu>d_Z$c)Dx?usX!H5bjQc%PFN~$5;zZW5z}P= zg>Fb2!hB;VL80O_-ab3PkUT9(GF*Enc>|0RsXOcc{F0v0$|S zFQKA*N=QM(i;#ljgmavAZ5B&^IGzh z+url$QI*aV6FXe;kOCdDw++g3y-m6p1^R$8T7|!L!k>Kq zuw|PNL5t*(Uh)8T_RC^PB7Pb@RgV_*v}1ia$zJxmWqUvADC!Mu$R!V-Ny7xfuD8j< zsod91T}w$>V#-P$=!t~OU|dR{@{le&D(Ble7l2FjDyAypy#=r-_eB@R^9y`44;`s; zs^SaUu6jhv);#o*JB+bP?#T+tL)taEoC@)3iW_rG8ZpUBOr27n>@n(G?lofhx8!@9 zC@3Cy`@5tXR_E9k^t84dERAo&CbEmSSaMIvFS62IQXT8bSCV_yw*?t9k3;2V$zQI2 zla&QK!QQE`F|GWw`LL zA=HPdH8;RB{ANGWmGPaGxKvq+aFa0Z$Kgg2{kk_|3KUsoc6E}gh=DbmD&B9_TP+Vl zAPdEq<#(O^BG0kn^IX*j*2BDq#OPd}#nc;v1hlR#5&@YZjkp-H3y9qNfP1{HYvQWG z`hN~X3ki?-)`3*86AXKtj*al!6uAnQ%+z7%Qo(dH0kjJzu~IdRx1v6vbf=1gTU*Xw ziLhHAVI~QOpusYjE`Yu#ndl)_tT)xhiWhx_kAlX9hOMd2E;YzFMCf@VK@zrLp6R+4 zjEvFyQjp#6hg^7n&p~ixs=*@!W0Vd0iD|`8ilS~4e|c=;zKQ;*St;n89<`^ zFADxQg4B)+qp6Y@_lcYCUfQ#ZhD&a8s54 zNy#tMM;pN$<@-lRYq^fuld3^;LOTx~I(aIoV+lCcYA#|#X-s96Pfo7bT*qhgok!A-Hb)C>E zuD0yS;FMqgO3QxS?lfbY`TCE2wKuNKUZZ0f^AgSi;<^uZ!f)?_f8omV*JcLpdT=c$G`;t&8fr zskc&heFyK=G~Dvs^kf4^vw{h{}U?lwMoFVKAJ>62W42}|9rLTaS*f4)yI0dXe_^GjJzLZI z(Cvg4-77RaZ<#%5mVW{Ti>u(nyxd94%*h|Syf?hF-mK>Uf$+@inXJc$OVcW=pdSx( zEWEVzrRB}<9a!3t?l^MCdFSOnu3YgyMQ&mKIrUpd?|FPTPS2j6JNMdIGliYWoIm_d z_fm3Y`=Ps@!#LD6xA(QPkD4L9CFljWtTb+$Ic=Wm-1$e{%gL49C+>{i^*l?dPtQIL zdjfuKdqi6RohQKi#Y$&ug6p8<&(^dUfU2(5+YB!}{;{VoS1Wj0m}FNZ-4j!0!{6F8 zg1?(#Q*q~wn0YoD%+8~?brL)1>v)I>#T~Hs&8@FLDue8SBpH{h7xpcrLA*fPj8^jMhyTypo;6Q+2B6O|NvQI-fC8sp)u0g2jy_Kbk5gch zs&xW=oVbW}gl3#2_k+f$#ECL1mdDGk|2r~!WWMXJo6Z-{?Z4}3#f?EX+_Ubv(+eF- z8)n=eyB_CALc53YpgWJ&*`7b;s*Na8jrjxgt-wHI}IDi`GuqS=jh!!wJmqU<(BTR(cJ4AE!YB0FH2k+ z5R)`Fyw$G_sYwa$9Z0z*;kwH>c58N3H2Bk0`&oXe_Sf5?zgOk7%I)1JHHTad_3Z z8B)G3hshl=waA)gRmo*B7^gkA-?83EVT@$F8kR_TgL-HxyAm?xdCFl-$>W zvr6FXd-A>Qfw>9S>-NG4qm2M2Qb4LPrIi8#qE-h_@Z+Z3!yG%5TFR(BiPenE{ME3U z?>Q3?tYFa1ojdAi4*V1ZC@42!#dD?7!ZVb&cyo2OTN#fVciyL(OGtV_-bJE?{{t;x zAKWVVTKG*FY47%h@JHV5{Dc5k`|URhmf*)wxCXKkli6qoPTwBxvN<(DmR2T5-NSI>@c9a{cI zdgHSzb3VDb&HZ!T>9&J8o2B;9 zn$1S;BerTUu63{3^gwWS^Hwc#=`cO3{}M%uxIdz~B@esCqU;$zP!wvZN-laE2ZjZbXy&YZL zyX60V%X=*=ZHHHUN7Ak%>scVe4EkH!j^L5T3v;(s;LdoSokt8!U=*c*Ct}`CS7W!+ zEs|qB%<37;gPB-6`UgXZ*fQl9bHB~|rU29z>9op4gK;$V3^aA**M>QPLqdT~=?wF` zi$S_z$`ZKO>JGV}eoV(=oO2P?7+lA(fl0XFBuu2%?0rn8^A`~{#_jaxjlhsL3ckd4 zL~`N9{t<&liS{qj==bw?xXI?J%5# zIgR#SV_(c;DXw8r2#wZr#J`JqEbAJR=fTzeH;zBub??mj zTV|exih*H^@@FU$th_LwIT-Uefak)=;9lh^q~|ZG=F8w1rCF$7zeX`)q6+SmpdE)D zU1m2#Xl`}|GCwY(d`NlkQa~pc_))Weg_!2S4x5aG^*xedQSnNK#`P8$Z$g5`L0MsNMxt!zCB)>gf|%Z_PCH zC3Vwh?r+*WeQM_Uxjp!I8}`o*t=Ko;@7y;1%-m!1{`v5H)6JtR_HEhD;PkU|U!4!% zd}+lVyzi*VSsip4#U8pk;<#mb?*sN;!?l&QJPZ029t|wA`y~QPu4Vsw)l@EE77OU5 z?2heAD23OujqbqMu9rXziXUpH-r--w$M9MXv)7&Q1Nx;GL@d`UIO}rO3P(HLih4}sjUhl%GNc{@44BN<3IKu zTK;-w?-~B~~JFRyht4;^DQ}%wBgeaQylZ=!KV#A=GJn6t6`fFkbqX5Q7GnaLA4lXdSP` zeu9)y0x`Z8aEtTiEdD?8WOo0d?AGns#|~tBcV{ zxM^O!8O!tYq7SAubGUBdGien3%H>QgIX zoZu0eQ_dj>9#pR4rB%>B)B$FSb4X4ily(G~2bvlDt4TP)g;Pe%b5L`e|7Mu1D#VlU zJA|FM$c!3bczk7)T^s4R7SkD zrs4wf^{~tj-7rB&siQ_p%8(sG?S)Vn<~s`+Etrvln>fggfqTkspcrkkT3hi~cnc7_ zVT+)D2aNAzOfF**8VPI~E?lOIC5N<1=z`9&fAECwy2q*6uTTI*gTVLB9{PEZf>Q{z z$|sF+@PD7$WmL;;(u;>}8P9peAu#}Q>On#TWvI)D%YjK%Va(Dx(3`val! z2SW7^gsLA1{vQfmpIJQ?>t})yd`hvuZWS#1e<(chnYEJg5Uf$~S-?Rt1VAZI?aa36 z3ap5#mYK%Y%H~XE^Zfpm$}Q8*`|cWkPxFFn(f?+3y0$0d?wxk!oE4VSmN`FGF5dG2 z5E{IJ-DfP%SU$D+EWWI_HpkvgE&RQsm%sNPyW@Yqn#J!sTx$-L&24G6>|_<_-L^Sr z!~4FYdM5nMm)0DJKRjr$RL%z<3V1zq*({9|$Lmv%V0F)Jxoc_s%(}<&tR*Kr;V+kX9>deW(-L?fP{`KG{{e4%Q91ws literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py new file mode 100644 index 00000000..c754b7cc --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py @@ -0,0 +1,112 @@ +import logging +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Bazaar(VersionControl): + name = "bzr" + dirname = ".bzr" + repo_name = "branch" + schemes = ( + "bzr+http", + "bzr+https", + "bzr+ssh", + "bzr+sftp", + "bzr+ftp", + "bzr+lp", + "bzr+file", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags = ["--quiet"] + elif verbosity == 1: + flags = [] + else: + flags = [f"-{'v'*verbosity}"] + cmd_args = make_command( + "checkout", "--lightweight", *flags, rev_options.to_args(), url, dest + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(make_command("switch", url), cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + output = self.run_command( + make_command("info"), show_stdout=False, stdout_only=True, cwd=dest + ) + if output.startswith("Standalone "): + # Older versions of pip used to create standalone branches. + # Convert the standalone branch to a checkout by calling "bzr bind". + cmd_args = make_command("bind", "-q", url) + self.run_command(cmd_args, cwd=dest) + + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "bzr+" + url + return url, rev, user_pass + + @classmethod + def get_remote_url(cls, location: str) -> str: + urls = cls.run_command( + ["info"], show_stdout=False, stdout_only=True, cwd=location + ) + for line in urls.splitlines(): + line = line.strip() + for x in ("checkout of branch: ", "parent branch: "): + if line.startswith(x): + repo = line.split(x)[1] + if cls._is_local_repository(repo): + return path_to_url(repo) + return repo + raise RemoteNotFoundError + + @classmethod + def get_revision(cls, location: str) -> str: + revision = cls.run_command( + ["revno"], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return revision.splitlines()[-1] + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/git.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 00000000..0425debb --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,527 @@ +import logging +import os.path +import pathlib +import re +import urllib.parse +import urllib.request +from dataclasses import replace +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path, hide_url +from pip._internal.utils.subprocess import make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RemoteNotValidError, + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +urlsplit = urllib.parse.urlsplit +urlunsplit = urllib.parse.urlunsplit + + +logger = logging.getLogger(__name__) + + +GIT_VERSION_REGEX = re.compile( + r"^git version " # Prefix. + r"(\d+)" # Major. + r"\.(\d+)" # Dot, minor. + r"(?:\.(\d+))?" # Optional dot, patch. + r".*$" # Suffix, including any pre- and post-release segments we don't care about. +) + +HASH_REGEX = re.compile("^[a-fA-F0-9]{40}$") + +# SCP (Secure copy protocol) shorthand. e.g. 'git@example.com:foo/bar.git' +SCP_REGEX = re.compile( + r"""^ + # Optional user, e.g. 'git@' + (\w+@)? + # Server, e.g. 'github.com'. + ([^/:]+): + # The server-side path. e.g. 'user/project.git'. Must start with an + # alphanumeric character so as not to be confusable with a Windows paths + # like 'C:/foo/bar' or 'C:\foo\bar'. + (\w[^:]*) + $""", + re.VERBOSE, +) + + +def looks_like_hash(sha: str) -> bool: + return bool(HASH_REGEX.match(sha)) + + +class Git(VersionControl): + name = "git" + dirname = ".git" + repo_name = "clone" + schemes = ( + "git+http", + "git+https", + "git+ssh", + "git+git", + "git+file", + ) + # Prevent the user's environment variables from interfering with pip: + # https://github.com/pypa/pip/issues/1130 + unset_environ = ("GIT_DIR", "GIT_WORK_TREE") + default_arg_rev = "HEAD" + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [rev] + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + _, rev_options = self.get_url_rev_options(hide_url(url)) + if not rev_options.rev: + return False + if not self.is_commit_id_equal(dest, rev_options.rev): + # the current commit is different from rev, + # which means rev was something else than a commit hash + return False + # return False in the rare case rev is both a commit hash + # and a tag or a branch; we don't want to cache in that case + # because that branch/tag could point to something else in the future + is_tag_or_branch = bool(self.get_revision_sha(dest, rev_options.rev)[0]) + return not is_tag_or_branch + + def get_git_version(self) -> Tuple[int, ...]: + version = self.run_command( + ["version"], + command_desc="git version", + show_stdout=False, + stdout_only=True, + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + logger.warning("Can't parse git version: %s", version) + return () + return (int(match.group(1)), int(match.group(2))) + + @classmethod + def get_current_branch(cls, location: str) -> Optional[str]: + """ + Return the current branch, or None if HEAD isn't at a branch + (e.g. detached HEAD). + """ + # git-symbolic-ref exits with empty stdout if "HEAD" is a detached + # HEAD rather than a symbolic ref. In addition, the -q causes the + # command to exit with status code 1 instead of 128 in this case + # and to suppress the message to stderr. + args = ["symbolic-ref", "-q", "HEAD"] + output = cls.run_command( + args, + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + ref = output.strip() + + if ref.startswith("refs/heads/"): + return ref[len("refs/heads/") :] + + return None + + @classmethod + def get_revision_sha(cls, dest: str, rev: str) -> Tuple[Optional[str], bool]: + """ + Return (sha_or_none, is_branch), where sha_or_none is a commit hash + if the revision names a remote branch or tag, otherwise None. + + Args: + dest: the repository directory. + rev: the revision name. + """ + # Pass rev to pre-filter the list. + output = cls.run_command( + ["show-ref", rev], + cwd=dest, + show_stdout=False, + stdout_only=True, + on_returncode="ignore", + ) + refs = {} + # NOTE: We do not use splitlines here since that would split on other + # unicode separators, which can be maliciously used to install a + # different revision. + for line in output.strip().split("\n"): + line = line.rstrip("\r") + if not line: + continue + try: + ref_sha, ref_name = line.split(" ", maxsplit=2) + except ValueError: + # Include the offending line to simplify troubleshooting if + # this error ever occurs. + raise ValueError(f"unexpected show-ref line: {line!r}") + + refs[ref_name] = ref_sha + + branch_ref = f"refs/remotes/origin/{rev}" + tag_ref = f"refs/tags/{rev}" + + sha = refs.get(branch_ref) + if sha is not None: + return (sha, True) + + sha = refs.get(tag_ref) + + return (sha, False) + + @classmethod + def _should_fetch(cls, dest: str, rev: str) -> bool: + """ + Return true if rev is a ref or is a commit that we don't have locally. + + Branches and tags are not considered in this method because they are + assumed to be always available locally (which is a normal outcome of + ``git clone`` and ``git fetch --tags``). + """ + if rev.startswith("refs/"): + # Always fetch remote refs. + return True + + if not looks_like_hash(rev): + # Git fetch would fail with abbreviated commits. + return False + + if cls.has_commit(dest, rev): + # Don't fetch if we have the commit locally. + return False + + return True + + @classmethod + def resolve_revision( + cls, dest: str, url: HiddenText, rev_options: RevOptions + ) -> RevOptions: + """ + Resolve a revision to a new RevOptions object with the SHA1 of the + branch, tag, or ref if found. + + Args: + rev_options: a RevOptions object. + """ + rev = rev_options.arg_rev + # The arg_rev property's implementation for Git ensures that the + # rev return value is always non-None. + assert rev is not None + + sha, is_branch = cls.get_revision_sha(dest, rev) + + if sha is not None: + rev_options = rev_options.make_new(sha) + rev_options = replace(rev_options, branch_name=(rev if is_branch else None)) + + return rev_options + + # Do not show a warning for the common case of something that has + # the form of a Git commit hash. + if not looks_like_hash(rev): + logger.warning( + "Did not find branch or tag '%s', assuming revision or ref.", + rev, + ) + + if not cls._should_fetch(dest, rev): + return rev_options + + # fetch the requested revision + cls.run_command( + make_command("fetch", "-q", url, rev_options.to_args()), + cwd=dest, + ) + # Change the revision to the SHA of the ref we fetched + sha = cls.get_revision(dest, rev="FETCH_HEAD") + rev_options = rev_options.make_new(sha) + + return rev_options + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the current commit hash equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + if not name: + # Then avoid an unnecessary subprocess call. + return False + + return cls.get_revision(dest) == name + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info("Cloning %s%s to %s", url, rev_display, display_path(dest)) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + else: + flags = ("--verbose", "--progress") + if self.get_git_version() >= (2, 17): + # Git added support for partial clone in 2.17 + # https://git-scm.com/docs/partial-clone + # Speeds up cloning by functioning without a complete copy of repository + self.run_command( + make_command( + "clone", + "--filter=blob:none", + *flags, + url, + dest, + ) + ) + else: + self.run_command(make_command("clone", *flags, url, dest)) + + if rev_options.rev: + # Then a specific revision was requested. + rev_options = self.resolve_revision(dest, url, rev_options) + branch_name = getattr(rev_options, "branch_name", None) + logger.debug("Rev options %s, branch_name %s", rev_options, branch_name) + if branch_name is None: + # Only do a checkout if the current commit id doesn't match + # the requested revision. + if not self.is_commit_id_equal(dest, rev_options.rev): + cmd_args = make_command( + "checkout", + "-q", + rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + elif self.get_current_branch(dest) != branch_name: + # Then a specific branch was requested, and that branch + # is not yet checked out. + track_branch = f"origin/{branch_name}" + cmd_args = [ + "checkout", + "-b", + branch_name, + "--track", + track_branch, + ] + self.run_command(cmd_args, cwd=dest) + else: + sha = self.get_revision(dest) + rev_options = rev_options.make_new(sha) + + logger.info("Resolved %s to commit %s", url, rev_options.rev) + + #: repo may contain submodules + self.update_submodules(dest) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command( + make_command("config", "remote.origin.url", url), + cwd=dest, + ) + cmd_args = make_command("checkout", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + self.update_submodules(dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + # First fetch changes from the default remote + if self.get_git_version() >= (1, 9): + # fetch tags in addition to everything else + self.run_command(["fetch", "-q", "--tags"], cwd=dest) + else: + self.run_command(["fetch", "-q"], cwd=dest) + # Then reset to wanted revision (maybe even origin/master) + rev_options = self.resolve_revision(dest, url, rev_options) + cmd_args = make_command("reset", "--hard", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + #: update submodules + self.update_submodules(dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return URL of the first remote encountered. + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + # We need to pass 1 for extra_ok_returncodes since the command + # exits with return code 1 if there are no matching lines. + stdout = cls.run_command( + ["config", "--get-regexp", r"remote\..*\.url"], + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + remotes = stdout.splitlines() + try: + found_remote = remotes[0] + except IndexError: + raise RemoteNotFoundError + + for remote in remotes: + if remote.startswith("remote.origin.url "): + found_remote = remote + break + url = found_remote.split(" ")[1] + return cls._git_remote_to_pip_url(url.strip()) + + @staticmethod + def _git_remote_to_pip_url(url: str) -> str: + """ + Convert a remote url from what git uses to what pip accepts. + + There are 3 legal forms **url** may take: + + 1. A fully qualified url: ssh://git@example.com/foo/bar.git + 2. A local project.git folder: /path/to/bare/repository.git + 3. SCP shorthand for form 1: git@example.com:foo/bar.git + + Form 1 is output as-is. Form 2 must be converted to URI and form 3 must + be converted to form 1. + + See the corresponding test test_git_remote_url_to_pip() for examples of + sample inputs/outputs. + """ + if re.match(r"\w+://", url): + # This is already valid. Pass it though as-is. + return url + if os.path.exists(url): + # A local bare remote (git clone --mirror). + # Needs a file:// prefix. + return pathlib.PurePath(url).as_uri() + scp_match = SCP_REGEX.match(url) + if scp_match: + # Add an ssh:// prefix and replace the ':' with a '/'. + return scp_match.expand(r"ssh://\1\2/\3") + # Otherwise, bail out. + raise RemoteNotValidError(url) + + @classmethod + def has_commit(cls, location: str, rev: str) -> bool: + """ + Check if rev is a commit that is available in the local repository. + """ + try: + cls.run_command( + ["rev-parse", "-q", "--verify", "sha^" + rev], + cwd=location, + log_failed_cmd=False, + ) + except InstallationError: + return False + else: + return True + + @classmethod + def get_revision(cls, location: str, rev: Optional[str] = None) -> str: + if rev is None: + rev = "HEAD" + current_rev = cls.run_command( + ["rev-parse", rev], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return current_rev.strip() + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + git_dir = cls.run_command( + ["rev-parse", "--git-dir"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if not os.path.isabs(git_dir): + git_dir = os.path.join(location, git_dir) + repo_root = os.path.abspath(os.path.join(git_dir, "..")) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. + That's required because although they use SSH they sometimes don't + work with a ssh:// scheme (e.g. GitHub). But we need a scheme for + parsing. Hence we remove it again afterwards and return it as a stub. + """ + # Works around an apparent Git bug + # (see https://article.gmane.org/gmane.comp.version-control.git/146500) + scheme, netloc, path, query, fragment = urlsplit(url) + if scheme.endswith("file"): + initial_slashes = path[: -len(path.lstrip("/"))] + newpath = initial_slashes + urllib.request.url2pathname(path).replace( + "\\", "/" + ).lstrip("/") + after_plus = scheme.find("+") + 1 + url = scheme[:after_plus] + urlunsplit( + (scheme[after_plus:], netloc, newpath, query, fragment), + ) + + if "://" not in url: + assert "file:" not in url + url = url.replace("git+", "git+ssh://") + url, rev, user_pass = super().get_url_rev_and_auth(url) + url = url.replace("ssh://", "") + else: + url, rev, user_pass = super().get_url_rev_and_auth(url) + + return url, rev, user_pass + + @classmethod + def update_submodules(cls, location: str) -> None: + if not os.path.exists(os.path.join(location, ".gitmodules")): + return + cls.run_command( + ["submodule", "update", "--init", "--recursive", "-q"], + cwd=location, + ) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["rev-parse", "--show-toplevel"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under git control " + "because git is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + @staticmethod + def should_add_vcs_url_prefix(repo_url: str) -> bool: + """In either https or ssh form, requirements must be prefixed with git+.""" + return True + + +vcs.register(Git) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 00000000..c183d41d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,163 @@ +import configparser +import logging +import os +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Mercurial(VersionControl): + name = "hg" + dirname = ".hg" + repo_name = "clone" + schemes = ( + "hg+file", + "hg+http", + "hg+https", + "hg+ssh", + "hg+static-http", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [f"--rev={rev}"] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Cloning hg %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + elif verbosity == 2: + flags = ("--verbose",) + else: + flags = ("--verbose", "--debug") + self.run_command(make_command("clone", "--noupdate", *flags, url, dest)) + self.run_command( + make_command("update", *flags, rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + repo_config = os.path.join(dest, self.dirname, "hgrc") + config = configparser.RawConfigParser() + try: + config.read(repo_config) + config.set("paths", "default", url.secret) + with open(repo_config, "w") as config_file: + config.write(config_file) + except (OSError, configparser.NoSectionError) as exc: + logger.warning("Could not switch Mercurial repository to %s: %s", url, exc) + else: + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(["pull", "-q"], cwd=dest) + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + url = cls.run_command( + ["showconfig", "paths.default"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if cls._is_local_repository(url): + url = path_to_url(url) + return url.strip() + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the repository-local changeset revision number, as an integer. + """ + current_revision = cls.run_command( + ["parents", "--template={rev}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_revision + + @classmethod + def get_requirement_revision(cls, location: str) -> str: + """ + Return the changeset identification hash, as a 40-character + hexadecimal string + """ + current_rev_hash = cls.run_command( + ["parents", "--template={node}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_rev_hash + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + repo_root = cls.run_command( + ["root"], show_stdout=False, stdout_only=True, cwd=location + ).strip() + if not os.path.isabs(repo_root): + repo_root = os.path.abspath(os.path.join(location, repo_root)) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["root"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under hg control " + "because hg is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + +vcs.register(Mercurial) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 00000000..f359266d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,324 @@ +import logging +import os +import re +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import ( + HiddenText, + display_path, + is_console_interactive, + is_installable_dir, + split_auth_from_netloc, +) +from pip._internal.utils.subprocess import CommandArgs, make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + +_svn_xml_url_re = re.compile('url="([^"]+)"') +_svn_rev_re = re.compile(r'committed-rev="(\d+)"') +_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') +_svn_info_xml_url_re = re.compile(r"(.*)") + + +class Subversion(VersionControl): + name = "svn" + dirname = ".svn" + repo_name = "checkout" + schemes = ("svn+ssh", "svn+http", "svn+https", "svn+svn", "svn+file") + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + return True + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the maximum revision for all files under a given location + """ + # Note: taken from setuptools.command.egg_info + revision = 0 + + for base, dirs, _ in os.walk(location): + if cls.dirname not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove(cls.dirname) + entries_fn = os.path.join(base, cls.dirname, "entries") + if not os.path.exists(entries_fn): + # FIXME: should we warn? + continue + + dirurl, localrev = cls._get_svn_url_rev(base) + + if base == location: + assert dirurl is not None + base = dirurl + "/" # save the root url + elif not dirurl or not dirurl.startswith(base): + dirs[:] = [] + continue # not part of the same svn tree, skip it + revision = max(revision, localrev) + return str(revision) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + This override allows the auth information to be passed to svn via the + --username and --password options instead of via the URL. + """ + if scheme == "ssh": + # The --username and --password options can't be used for + # svn+ssh URLs, so keep the auth information in the URL. + return super().get_netloc_and_auth(netloc, scheme) + + return split_auth_from_netloc(netloc) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing svn+ from svn+ssh:// re-add it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "svn+" + url + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + extra_args: CommandArgs = [] + if username: + extra_args += ["--username", username] + if password: + extra_args += ["--password", password] + + return extra_args + + @classmethod + def get_remote_url(cls, location: str) -> str: + # In cases where the source is in a subdirectory, we have to look up in + # the location until we find a valid project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + raise RemoteNotFoundError + + url, _rev = cls._get_svn_url_rev(location) + if url is None: + raise RemoteNotFoundError + + return url + + @classmethod + def _get_svn_url_rev(cls, location: str) -> Tuple[Optional[str], int]: + from pip._internal.exceptions import InstallationError + + entries_path = os.path.join(location, cls.dirname, "entries") + if os.path.exists(entries_path): + with open(entries_path) as f: + data = f.read() + else: # subversion >= 1.7 does not have the 'entries' file + data = "" + + url = None + if data.startswith("8") or data.startswith("9") or data.startswith("10"): + entries = list(map(str.splitlines, data.split("\n\x0c\n"))) + del entries[0][0] # get rid of the '8' + url = entries[0][3] + revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] + elif data.startswith("= 1.7 + # Note that using get_remote_call_options is not necessary here + # because `svn info` is being run against a local directory. + # We don't need to worry about making sure interactive mode + # is being used to prompt for passwords, because passwords + # are only potentially needed for remote server requests. + xml = cls.run_command( + ["info", "--xml", location], + show_stdout=False, + stdout_only=True, + ) + match = _svn_info_xml_url_re.search(xml) + assert match is not None + url = match.group(1) + revs = [int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml)] + except InstallationError: + url, revs = None, [] + + if revs: + rev = max(revs) + else: + rev = 0 + + return url, rev + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive: Optional[bool] = None) -> None: + if use_interactive is None: + use_interactive = is_console_interactive() + self.use_interactive = use_interactive + + # This member is used to cache the fetched version of the current + # ``svn`` client. + # Special value definitions: + # None: Not evaluated yet. + # Empty tuple: Could not parse version. + self._vcs_version: Optional[Tuple[int, ...]] = None + + super().__init__() + + def call_vcs_version(self) -> Tuple[int, ...]: + """Query the version of the currently installed Subversion client. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + # Example versions: + # svn, version 1.10.3 (r1842928) + # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 + # svn, version 1.7.14 (r1542130) + # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu + # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) + # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 + version_prefix = "svn, version " + version = self.run_command(["--version"], show_stdout=False, stdout_only=True) + if not version.startswith(version_prefix): + return () + + version = version[len(version_prefix) :].split()[0] + version_list = version.partition("-")[0].split(".") + try: + parsed_version = tuple(map(int, version_list)) + except ValueError: + return () + + return parsed_version + + def get_vcs_version(self) -> Tuple[int, ...]: + """Return the version of the currently installed Subversion client. + + If the version of the Subversion client has already been queried, + a cached value will be used. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + if self._vcs_version is not None: + # Use cached version, if available. + # If parsing the version failed previously (empty tuple), + # do not attempt to parse it again. + return self._vcs_version + + vcs_version = self.call_vcs_version() + self._vcs_version = vcs_version + return vcs_version + + def get_remote_call_options(self) -> CommandArgs: + """Return options to be used on calls to Subversion that contact the server. + + These options are applicable for the following ``svn`` subcommands used + in this class. + + - checkout + - switch + - update + + :return: A list of command line arguments to pass to ``svn``. + """ + if not self.use_interactive: + # --non-interactive switch is available since Subversion 0.14.4. + # Subversion < 1.8 runs in interactive mode by default. + return ["--non-interactive"] + + svn_version = self.get_vcs_version() + # By default, Subversion >= 1.8 runs in non-interactive mode if + # stdin is not a TTY. Since that is how pip invokes SVN, in + # call_subprocess(), pip must pass --force-interactive to ensure + # the user can be prompted for a password, if required. + # SVN added the --force-interactive option in SVN 1.8. Since + # e.g. RHEL/CentOS 7, which is supported until 2024, ships with + # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip + # can't safely add the option if the SVN version is < 1.8 (or unknown). + if svn_version >= (1, 8): + return ["--force-interactive"] + + return [] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags = ["--quiet"] + else: + flags = [] + cmd_args = make_command( + "checkout", + *flags, + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "switch", + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "update", + self.get_remote_call_options(), + rev_options.to_args(), + dest, + ) + self.run_command(cmd_args) + + +vcs.register(Subversion) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 00000000..a4133165 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,688 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from dataclasses import dataclass, field +from typing import ( + Any, + Dict, + Iterable, + Iterator, + List, + Literal, + Mapping, + Optional, + Tuple, + Type, + Union, +) + +from pip._internal.cli.spinners import SpinnerInterface +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import ( + HiddenText, + ask_path_exists, + backup_dir, + display_path, + hide_url, + hide_value, + is_installable_dir, + rmtree, +) +from pip._internal.utils.subprocess import ( + CommandArgs, + call_subprocess, + format_command_args, + make_command, +) + +__all__ = ["vcs"] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name: str) -> bool: + """ + Return true if the name looks like a URL. + """ + scheme = urllib.parse.urlsplit(name).scheme + if not scheme: + return False + return scheme in ["http", "https", "file", "ftp"] + vcs.all_schemes + + +def make_vcs_requirement_url( + repo_url: str, rev: str, project_name: str, subdir: Optional[str] = None +) -> str: + """ + Return the URL for a VCS requirement. + + Args: + repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). + project_name: the (unescaped) project name. + """ + egg_project_name = project_name.replace("-", "_") + req = f"{repo_url}@{rev}#egg={egg_project_name}" + if subdir: + req += f"&subdirectory={subdir}" + + return req + + +def find_path_to_project_root_from_repo_root( + location: str, repo_root: str +) -> Optional[str]: + """ + Find the the Python project's root by searching up the filesystem from + `location`. Return the path to project root relative to `repo_root`. + Return None if the project root is `repo_root`, or cannot be found. + """ + # find project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find a Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + return None + + if os.path.samefile(repo_root, location): + return None + + return os.path.relpath(location, repo_root) + + +class RemoteNotFoundError(Exception): + pass + + +class RemoteNotValidError(Exception): + def __init__(self, url: str): + super().__init__(url) + self.url = url + + +@dataclass(frozen=True) +class RevOptions: + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + + vc_class: Type["VersionControl"] + rev: Optional[str] = None + extra_args: CommandArgs = field(default_factory=list) + branch_name: Optional[str] = None + + def __repr__(self) -> str: + return f"" + + @property + def arg_rev(self) -> Optional[str]: + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self) -> CommandArgs: + """ + Return the VCS-specific command arguments. + """ + args: CommandArgs = [] + rev = self.arg_rev + if rev is not None: + args += self.vc_class.get_base_rev_args(rev) + args += self.extra_args + + return args + + def to_display(self) -> str: + if not self.rev: + return "" + + return f" (to revision {self.rev})" + + def make_new(self, rev: str) -> "RevOptions": + """ + Make a copy of the current instance, but with a new rev. + + Args: + rev: the name of the revision for the new object. + """ + return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) + + +class VcsSupport: + _registry: Dict[str, "VersionControl"] = {} + schemes = ["ssh", "git", "hg", "bzr", "sftp", "svn"] + + def __init__(self) -> None: + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self) -> Iterator[str]: + return self._registry.__iter__() + + @property + def backends(self) -> List["VersionControl"]: + return list(self._registry.values()) + + @property + def dirnames(self) -> List[str]: + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self) -> List[str]: + schemes: List[str] = [] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls: Type["VersionControl"]) -> None: + if not hasattr(cls, "name"): + logger.warning("Cannot register VCS %s", cls.__name__) + return + if cls.name not in self._registry: + self._registry[cls.name] = cls() + logger.debug("Registered VCS backend: %s", cls.name) + + def unregister(self, name: str) -> None: + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object if a repository of that type is found + at the given directory. + """ + vcs_backends = {} + for vcs_backend in self._registry.values(): + repo_path = vcs_backend.get_repository_root(location) + if not repo_path: + continue + logger.debug("Determine that %s uses VCS: %s", location, vcs_backend.name) + vcs_backends[repo_path] = vcs_backend + + if not vcs_backends: + return None + + # Choose the VCS in the inner-most directory. Since all repository + # roots found here would be either `location` or one of its + # parents, the longest path should have the most path components, + # i.e. the backend representing the inner-most repository. + inner_most_repo_path = max(vcs_backends, key=len) + return vcs_backends[inner_most_repo_path] + + def get_backend_for_scheme(self, scheme: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + for vcs_backend in self._registry.values(): + if scheme in vcs_backend.schemes: + return vcs_backend + return None + + def get_backend(self, name: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + name = name.lower() + return self._registry.get(name) + + +vcs = VcsSupport() + + +class VersionControl: + name = "" + dirname = "" + repo_name = "" + # List of supported schemes for this Version Control + schemes: Tuple[str, ...] = () + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ: Tuple[str, ...] = () + default_arg_rev: Optional[str] = None + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + """ + Return whether the vcs prefix (e.g. "git+") should be added to a + repository's remote url when used in a requirement. + """ + return not remote_url.lower().startswith(f"{cls.name}:") + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + return None + + @classmethod + def get_requirement_revision(cls, repo_dir: str) -> str: + """ + Return the revision string that should be used in a requirement. + """ + return cls.get_revision(repo_dir) + + @classmethod + def get_src_requirement(cls, repo_dir: str, project_name: str) -> str: + """ + Return the requirement string to use to redownload the files + currently at the given repository directory. + + Args: + project_name: the (unescaped) project name. + + The return value has a form similar to the following: + + {repository_url}@{revision}#egg={project_name} + """ + repo_url = cls.get_remote_url(repo_dir) + + if cls.should_add_vcs_url_prefix(repo_url): + repo_url = f"{cls.name}+{repo_url}" + + revision = cls.get_requirement_revision(repo_dir) + subdir = cls.get_subdirectory(repo_dir) + req = make_vcs_requirement_url(repo_url, revision, project_name, subdir=subdir) + + return req + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + """ + Return the base revision arguments for a vcs command. + + Args: + rev: the name of a revision to install. Cannot be None. + """ + raise NotImplementedError + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + """ + Return true if the commit hash checked out at dest matches + the revision in url. + + Always return False, if the VCS does not support immutable commit + hashes. + + This method does not check if there are local uncommitted changes + in dest after checkout, as pip currently has no use case for that. + """ + return False + + @classmethod + def make_rev_options( + cls, rev: Optional[str] = None, extra_args: Optional[CommandArgs] = None + ) -> RevOptions: + """ + Return a RevOptions object. + + Args: + rev: the name of a revision to install. + extra_args: a list of extra options. + """ + return RevOptions(cls, rev, extra_args=extra_args or []) + + @classmethod + def _is_local_repository(cls, repo: str) -> bool: + """ + posix absolute paths start with os.path.sep, + win32 ones start with drive (like c:\\folder) + """ + drive, tail = os.path.splitdrive(repo) + return repo.startswith(os.path.sep) or bool(drive) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + Parse the repository URL's netloc, and return the new netloc to use + along with auth information. + + Args: + netloc: the original repository URL netloc. + scheme: the repository URL's scheme without the vcs prefix. + + This is mainly for the Subversion class to override, so that auth + information can be provided via the --username and --password options + instead of through the URL. For other subclasses like Git without + such an option, auth information must stay in the URL. + + Returns: (netloc, (username, password)). + """ + return netloc, (None, None) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Parse the repository URL to use, and return the URL, revision, + and auth info to use. + + Returns: (url, rev, (username, password)). + """ + scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) + if "+" not in scheme: + raise ValueError( + f"Sorry, {url!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp" + ) + # Remove the vcs prefix. + scheme = scheme.split("+", 1)[1] + netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) + rev = None + if "@" in path: + path, rev = path.rsplit("@", 1) + if not rev: + raise InstallationError( + f"The URL {url!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL." + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url: HiddenText) -> Tuple[HiddenText, RevOptions]: + """ + Return the URL and RevOptions object to use in obtain(), + as a tuple (url, rev_options). + """ + secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) + username, secret_password = user_pass + password: Optional[HiddenText] = None + if secret_password is not None: + password = hide_value(secret_password) + extra_args = self.make_rev_args(username, password) + rev_options = self.make_rev_options(rev, extra_args=extra_args) + + return hide_url(secret_url), rev_options + + @staticmethod + def normalize_url(url: str) -> str: + """ + Normalize a URL for comparison by unquoting it and removing any + trailing slash. + """ + return urllib.parse.unquote(url).rstrip("/") + + @classmethod + def compare_urls(cls, url1: str, url2: str) -> bool: + """ + Compare two repo URLs for identity, ignoring incidental differences. + """ + return cls.normalize_url(url1) == cls.normalize_url(url2) + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + """ + Fetch a revision from a repository, in the case that this is the + first fetch from the repository. + + Args: + dest: the directory to fetch the repository to. + rev_options: a RevOptions object. + verbosity: verbosity level. + """ + raise NotImplementedError + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Update an already-existing repo to the given ``rev_options``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the id of the current commit equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + raise NotImplementedError + + def obtain(self, dest: str, url: HiddenText, verbosity: int) -> None: + """ + Install or update in editable mode the package represented by this + VersionControl object. + + :param dest: the repository directory in which to install or update. + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + rev_display = rev_options.to_display() + if self.is_repository_directory(dest): + existing_url = self.get_remote_url(dest) + if self.compare_urls(existing_url, url.secret): + logger.debug( + "%s in %s exists, and has correct URL (%s)", + self.repo_name.title(), + display_path(dest), + url, + ) + if not self.is_commit_id_equal(dest, rev_options.rev): + logger.info( + "Updating %s %s%s", + display_path(dest), + self.repo_name, + rev_display, + ) + self.update(dest, url, rev_options) + else: + logger.info("Skipping because already up-to-date.") + return + + logger.warning( + "%s %s in %s exists with URL %s", + self.name, + self.repo_name, + display_path(dest), + existing_url, + ) + prompt = ("(s)witch, (i)gnore, (w)ipe, (b)ackup ", ("s", "i", "w", "b")) + else: + logger.warning( + "Directory %s already exists, and is not a %s %s.", + dest, + self.name, + self.repo_name, + ) + # https://github.com/python/mypy/issues/1174 + prompt = ("(i)gnore, (w)ipe, (b)ackup ", ("i", "w", "b")) # type: ignore + + logger.warning( + "The plan is to install the %s repository %s", + self.name, + url, + ) + response = ask_path_exists(f"What to do? {prompt[0]}", prompt[1]) + + if response == "a": + sys.exit(-1) + + if response == "w": + logger.warning("Deleting %s", display_path(dest)) + rmtree(dest) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + if response == "b": + dest_dir = backup_dir(dest) + logger.warning("Backing up %s to %s", display_path(dest), dest_dir) + shutil.move(dest, dest_dir) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + # Do nothing if the response is "i". + if response == "s": + logger.info( + "Switching %s %s to %s%s", + self.repo_name, + display_path(dest), + url, + rev_display, + ) + self.switch(dest, url, rev_options) + + def unpack(self, location: str, url: HiddenText, verbosity: int) -> None: + """ + Clean up current location and download the url repository + (and vcs infos) into location + + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url, verbosity=verbosity) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return the url used at location + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + raise NotImplementedError + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd: Union[List[str], CommandArgs], + show_stdout: bool = True, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + command_desc: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: bool = True, + stdout_only: bool = False, + ) -> str: + """ + Run a VCS subcommand + This is simply a wrapper around call_subprocess that adds the VCS + command name, and checks that the VCS is available + """ + cmd = make_command(cls.name, *cmd) + if command_desc is None: + command_desc = format_command_args(cmd) + try: + return call_subprocess( + cmd, + show_stdout, + cwd, + on_returncode=on_returncode, + extra_ok_returncodes=extra_ok_returncodes, + command_desc=command_desc, + extra_environ=extra_environ, + unset_environ=cls.unset_environ, + spinner=spinner, + log_failed_cmd=log_failed_cmd, + stdout_only=stdout_only, + ) + except NotADirectoryError: + raise BadCommand(f"Cannot find command {cls.name!r} - invalid PATH") + except FileNotFoundError: + # errno.ENOENT = no such file or directory + # In other words, the VCS executable isn't available + raise BadCommand( + f"Cannot find command {cls.name!r} - do you have " + f"{cls.name!r} installed and in your PATH?" + ) + except PermissionError: + # errno.EACCES = Permission denied + # This error occurs, for instance, when the command is installed + # only for another user. So, the current user don't have + # permission to call the other user command. + raise BadCommand( + f"No permission to execute {cls.name!r} - install it " + f"locally, globally (ask admin), or check your PATH. " + f"See possible solutions at " + f"https://pip.pypa.io/en/latest/reference/pip_freeze/" + f"#fixing-permission-denied." + ) + + @classmethod + def is_repository_directory(cls, path: str) -> bool: + """ + Return whether a directory path is a repository directory. + """ + logger.debug("Checking in %s for %s (%s)...", path, cls.dirname, cls.name) + return os.path.exists(os.path.join(path, cls.dirname)) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + """ + Return the "root" (top-level) directory controlled by the vcs, + or `None` if the directory is not in any. + + It is meant to be overridden to implement smarter detection + mechanisms for specific vcs. + + This can do more than is_repository_directory() alone. For + example, the Git override checks that Git is actually available. + """ + if cls.is_repository_directory(location): + return location + return None diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/wheel_builder.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 00000000..93f8e1f5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,354 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel +from pip._internal.metadata import FilesystemWheel, get_wheel_distribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.build.wheel import build_wheel_pep517 +from pip._internal.operations.build.wheel_editable import build_wheel_editable +from pip._internal.operations.build.wheel_legacy import build_wheel_legacy +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir, hash_file +from pip._internal.utils.setuptools_build import make_setuptools_clean_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + +_egg_info_re = re.compile(r"([a-z0-9_.]+)-([a-z0-9_.!+-]+)", re.IGNORECASE) + +BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] + + +def _contains_egg_info(s: str) -> bool: + """Determine whether the string looks like an egg_info. + + :param s: The string to parse. E.g. foo-2.1 + """ + return bool(_egg_info_re.search(s)) + + +def _should_build( + req: InstallRequirement, + need_wheel: bool, +) -> bool: + """Return whether an InstallRequirement should be built into a wheel.""" + if req.constraint: + # never build requirements that are merely constraints + return False + if req.is_wheel: + if need_wheel: + logger.info( + "Skipping %s, due to already being wheel.", + req.name, + ) + return False + + if need_wheel: + # i.e. pip wheel, not pip install + return True + + # From this point, this concerns the pip install command only + # (need_wheel=False). + + if not req.source_dir: + return False + + if req.editable: + # we only build PEP 660 editable requirements + return req.supports_pyproject_editable + + return True + + +def should_build_for_wheel_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=True) + + +def should_build_for_install_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=False) + + +def _should_cache( + req: InstallRequirement, +) -> Optional[bool]: + """ + Return whether a built InstallRequirement can be stored in the persistent + wheel cache, assuming the wheel cache is available, and _should_build() + has determined a wheel needs to be built. + """ + if req.editable or not req.source_dir: + # never cache editable requirements + return False + + if req.link and req.link.is_vcs: + # VCS checkout. Do not cache + # unless it points to an immutable commit hash. + assert not req.editable + assert req.source_dir + vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) + assert vcs_backend + if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): + return True + return False + + assert req.link + base, ext = req.link.splitext() + if _contains_egg_info(base): + return True + + # Otherwise, do not cache. + return False + + +def _get_cache_dir( + req: InstallRequirement, + wheel_cache: WheelCache, +) -> str: + """Return the persistent or temporary cache directory where the built + wheel need to be stored. + """ + cache_available = bool(wheel_cache.cache_dir) + assert req.link + if cache_available and _should_cache(req): + cache_dir = wheel_cache.get_path_for_link(req.link) + else: + cache_dir = wheel_cache.get_ephem_path_for_link(req.link) + return cache_dir + + +def _verify_one(req: InstallRequirement, wheel_path: str) -> None: + canonical_name = canonicalize_name(req.name or "") + w = Wheel(os.path.basename(wheel_path)) + if canonicalize_name(w.name) != canonical_name: + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {canonical_name!r}, " + f"got {w.name!r}", + ) + dist = get_wheel_distribution(FilesystemWheel(wheel_path), canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + f"Wheel has unexpected file name: expected {dist_verstr!r}, " + f"got {w.version!r}", + ) + metadata_version_value = dist.metadata_version + if metadata_version_value is None: + raise UnsupportedWheel("Missing Metadata-Version") + try: + metadata_version = Version(metadata_version_value) + except InvalidVersion: + msg = f"Invalid Metadata-Version: {metadata_version_value}" + raise UnsupportedWheel(msg) + if metadata_version >= Version("1.2") and not isinstance(dist.version, Version): + raise UnsupportedWheel( + f"Metadata 1.2 mandates PEP 440 version, but {dist_verstr!r} is not" + ) + + +def _build_one( + req: InstallRequirement, + output_dir: str, + verify: bool, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + artifact = "editable" if editable else "wheel" + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building %s for %s failed: %s", + artifact, + req.name, + e, + ) + return None + + # Install build deps into temporary directory (PEP 518) + with req.build_env: + wheel_path = _build_one_inside_env( + req, output_dir, build_options, global_options, editable + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built %s for %s is invalid: %s", artifact, req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req: InstallRequirement, + output_dir: str, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + with TempDirectory(kind="wheel") as temp_dir: + assert req.name + if req.use_pep517: + assert req.metadata_directory + assert req.pep517_backend + if global_options: + logger.warning( + "Ignoring --global-option when building %s using PEP 517", req.name + ) + if build_options: + logger.warning( + "Ignoring --build-option when building %s using PEP 517", req.name + ) + if editable: + wheel_path = build_wheel_editable( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_pep517( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_legacy( + name=req.name, + setup_py_path=req.setup_py_path, + source_dir=req.unpacked_source_directory, + global_options=global_options, + build_options=build_options, + tempd=temp_dir.path, + ) + + if wheel_path is not None: + wheel_name = os.path.basename(wheel_path) + dest_path = os.path.join(output_dir, wheel_name) + try: + wheel_hash, length = hash_file(wheel_path) + shutil.move(wheel_path, dest_path) + logger.info( + "Created wheel for %s: filename=%s size=%d sha256=%s", + req.name, + wheel_name, + length, + wheel_hash.hexdigest(), + ) + logger.info("Stored in directory: %s", output_dir) + return dest_path + except Exception as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + # Ignore return, we can't do anything else useful. + if not req.use_pep517: + _clean_one_legacy(req, global_options) + return None + + +def _clean_one_legacy(req: InstallRequirement, global_options: List[str]) -> bool: + clean_args = make_setuptools_clean_args( + req.setup_py_path, + global_options=global_options, + ) + + logger.info("Running setup.py clean for %s", req.name) + try: + call_subprocess( + clean_args, command_desc="python setup.py clean", cwd=req.source_dir + ) + return True + except Exception: + logger.error("Failed cleaning build dir for %s", req.name) + return False + + +def build( + requirements: Iterable[InstallRequirement], + wheel_cache: WheelCache, + verify: bool, + build_options: List[str], + global_options: List[str], +) -> BuildResult: + """Build wheels. + + :return: The list of InstallRequirement that succeeded to build and + the list of InstallRequirement that failed to build. + """ + if not requirements: + return [], [] + + # Build the wheels. + logger.info( + "Building wheels for collected packages: %s", + ", ".join(req.name for req in requirements), # type: ignore + ) + + with indent_log(): + build_successes, build_failures = [], [] + for req in requirements: + assert req.name + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, + cache_dir, + verify, + build_options, + global_options, + req.editable and req.permit_editable_wheels, + ) + if wheel_file: + # Record the download origin in the cache + if req.download_info is not None: + # download_info is guaranteed to be set because when we build an + # InstallRequirement it has been through the preparer before, but + # let's be cautious. + wheel_cache.record_download_origin(cache_dir, req.download_info) + # Update the link for this. + req.link = Link(path_to_url(wheel_file)) + req.local_file_path = req.link.file_path + assert req.link.is_wheel + build_successes.append(req) + else: + build_failures.append(req) + + # notify success/failure + if build_successes: + logger.info( + "Successfully built %s", + " ".join([req.name for req in build_successes]), # type: ignore + ) + if build_failures: + logger.info( + "Failed to build %s", + " ".join([req.name for req in build_failures]), # type: ignore + ) + # Return a list of requirements that failed to build + return build_successes, build_failures diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/__init__.py new file mode 100644 index 00000000..561089cc --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,116 @@ +""" +pip._vendor is for vendoring dependencies of pip to prevent needing pip to +depend on something external. + +Files inside of pip._vendor should be considered immutable and should only be +updated to versions from upstream. +""" +from __future__ import absolute_import + +import glob +import os.path +import sys + +# Downstream redistributors which have debundled our dependencies should also +# patch this value to be true. This will trigger the additional patching +# to cause things like "six" to be available as pip. +DEBUNDLED = False + +# By default, look in this directory for a bunch of .whl files which we will +# add to the beginning of sys.path before attempting to import anything. This +# is done to support downstream re-distributors like Debian and Fedora who +# wish to create their own Wheels for our dependencies to aid in debundling. +WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) + + +# Define a small helper function to alias our vendored modules to the real ones +# if the vendored ones do not exist. This idea of this was taken from +# https://github.com/kennethreitz/requests/pull/2567. +def vendored(modulename): + vendored_name = "{0}.{1}".format(__name__, modulename) + + try: + __import__(modulename, globals(), locals(), level=0) + except ImportError: + # We can just silently allow import failures to pass here. If we + # got to this point it means that ``import pip._vendor.whatever`` + # failed and so did ``import whatever``. Since we're importing this + # upfront in an attempt to alias imports, not erroring here will + # just mean we get a regular import error whenever pip *actually* + # tries to import one of these modules to use it, which actually + # gives us a better error message than we would have otherwise + # gotten. + pass + else: + sys.modules[vendored_name] = sys.modules[modulename] + base, head = vendored_name.rsplit(".", 1) + setattr(sys.modules[base], head, sys.modules[modulename]) + + +# If we're operating in a debundled setup, then we want to go ahead and trigger +# the aliasing of our vendored libraries as well as looking for wheels to add +# to our sys.path. This will cause all of this code to be a no-op typically +# however downstream redistributors can enable it in a consistent way across +# all platforms. +if DEBUNDLED: + # Actually look inside of WHEEL_DIR to find .whl files and add them to the + # front of our sys.path. + sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path + + # Actually alias all of our vendored dependencies. + vendored("cachecontrol") + vendored("certifi") + vendored("distlib") + vendored("distro") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pkg_resources") + vendored("platformdirs") + vendored("progress") + vendored("pyproject_hooks") + vendored("requests") + vendored("requests.exceptions") + vendored("requests.packages") + vendored("requests.packages.urllib3") + vendored("requests.packages.urllib3._collections") + vendored("requests.packages.urllib3.connection") + vendored("requests.packages.urllib3.connectionpool") + vendored("requests.packages.urllib3.contrib") + vendored("requests.packages.urllib3.contrib.ntlmpool") + vendored("requests.packages.urllib3.contrib.pyopenssl") + vendored("requests.packages.urllib3.exceptions") + vendored("requests.packages.urllib3.fields") + vendored("requests.packages.urllib3.filepost") + vendored("requests.packages.urllib3.packages") + vendored("requests.packages.urllib3.packages.ordered_dict") + vendored("requests.packages.urllib3.packages.six") + vendored("requests.packages.urllib3.packages.ssl_match_hostname") + vendored("requests.packages.urllib3.packages.ssl_match_hostname." + "_implementation") + vendored("requests.packages.urllib3.poolmanager") + vendored("requests.packages.urllib3.request") + vendored("requests.packages.urllib3.response") + vendored("requests.packages.urllib3.util") + vendored("requests.packages.urllib3.util.connection") + vendored("requests.packages.urllib3.util.request") + vendored("requests.packages.urllib3.util.response") + vendored("requests.packages.urllib3.util.retry") + vendored("requests.packages.urllib3.util.ssl_") + vendored("requests.packages.urllib3.util.timeout") + vendored("requests.packages.urllib3.util.url") + vendored("resolvelib") + vendored("rich") + vendored("rich.console") + vendored("rich.highlighter") + vendored("rich.logging") + vendored("rich.markup") + vendored("rich.progress") + vendored("rich.segment") + vendored("rich.style") + vendored("rich.text") + vendored("rich.traceback") + if sys.version_info < (3, 11): + vendored("tomli") + vendored("truststore") + vendored("urllib3") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a52c8400d0008604bf99296ed3aa1277955b4f00 GIT binary patch literal 4598 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py new file mode 100644 index 00000000..b34b0fcb --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py @@ -0,0 +1,28 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +"""CacheControl import Interface. + +Make it easy to import from cachecontrol without long namespaces. +""" +__author__ = "Eric Larson" +__email__ = "eric@ionrock.org" +__version__ = "0.14.0" + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.controller import CacheController +from pip._vendor.cachecontrol.wrapper import CacheControl + +__all__ = [ + "__author__", + "__email__", + "__version__", + "CacheControlAdapter", + "CacheController", + "CacheControl", +] + +import logging + +logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c8454db03214a95a8e5ae7571cc04cdfb85c0e8 GIT binary patch literal 951 zcmaJ<&1=*^6rb!@c9VXp6rorGLbrQprd2PNs+A%t)Z$IZWtb+@Y<4FzVKUog_q2b4 z2f?d|2c>_C7fX?rKtT`>-m1NM@@2bA_o8!n^LuaJ$1lH^&(qTug0r$h!w&_7zUR*P zlt$p;9Ia-cW_LYnsKd<#iwcSWJWk)+)iqH`>W@!Q)QrGI+ zPgLYPJ5;4o^ye5jTagq>`fXRLuwPko*YCM&KXZZ&BfCDy=y5<3-~!><$uJ*=rY1v; zN@fv4J3vAalGO-dF^xDtn~(#hQW!~yD#8$zFH4od>^9~ylaN6A@Knj8W^SrrGAD@= z7b-;{l{@*RF1;i*?3LaAXWB>@;5r=mpN3sUlLXRoN;x0ObKWMGVHk-ptA$MO0A?zy z5|T>`uNDo0XH*2xKC^c_oR6GO=mNT+KW}hT#tgS4tVqPH$s@msUn<#RZOw4n)qAul zR(&4flqt{$r^?4PO_@${2qUnjdz?LGf+?z{!b}`s9_`_z2MUY3?)n{^Mw+d{lG`+7 zDFz+zNG?1n7bYYUktW1VdRcWdmO+QJhiU;x=D%_J3e0)YFpOVT(I}l)(ahq&I-Ob? z)J|s>2KEoMb%q|Dq5Ho}rd=4A7uS$6`wh(x%o8+!gyvtb9HYe(w0wk?ztlJ0bx-OW RNA->4`sP>kK;3}ee*qz|7YhIY literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1248daac5c400f4b4ed2ce0dcedb5a4c680a11e GIT binary patch literal 2695 zcmaJ?O>7fK6rS~t?Ty!V9Fp);5-^xTe84LTY7uQ|X#z?4F;Rg^wJNO^@6a3(J-`W7aG;m=+Eb;f7hHmzt`eyg<JLsf(~11C7O#0TCrl4crGp>5~5MiH2}H>bA#e60%wU_ z0_cRPUctE`bI6Rsy20FF#$X)=ejL^jGHMQ9m_Uds0Ypabd)7;+5oiR`!+-I8T5?sx zwyVrwrK;^@VIMz23-t=I*{newLV*)I`^oH4eRAgL8o;M<5fjs)a(Aoi!@NsTp|!?7{x47NL31Lb1p&!(Uqc28dgT zN&aEk^S;05E5rV-3|PH9?t6D7#De}=S@Egf>U(Iu|1}W>JsD2Tp`OMDxG4b3SrvKLUeU=)a>)k-x@zesEog!3HDd>2hk&sWS$ zt>MN%cfF>2-$X~i%#HAOGBCB!5{_Iwefjj))3;9DJhgy#F2zSX@l-pWdK`bfH4Ud7 zJle*iHwsViwpF-+Uci~-C2;-;h<=L zpqGXz1Co9&qgTk_7i3U*y?BuHwb$pQGbkO*o=wZHDtxIEW)vJZ0$7y{tJDPa2a2Rl zOAagLo8cm3wL_ZLR5;-Pl@8M|*hzVOQm)nwpCOI|+35x=)w<2xhzAc3q(t|P9w!}e z!$vm?UF^U`hksx)Nr$;AwLqB8xuA|Ffinhw=VO=v#`umUW$3zkXXN3oA9p>M1B0Q~ z^z#skj&#(mZFTEob-XpTh?T3yFCV|wxV;CE_IJ(OZ!O@|?_;UXSf)LeX-zHQEsN@4 z>jWJI)i1!!p%ZX_3PeBLKFITsUgb6DLC6~be&B)J2Nx=@f$z&8Wy-B`qmY!k;T1nOQsd>1?|GFAi5=}`XxEnt z_a#53d*C*dS>)`62^<;Q`ZzY;I=09oe^VQ8x*dG9>+mDIX#u~ts19}1v9>z)Sl#vr zZ~Gtr9EM`BzJLCk7$U&e@dkKuEil0}Z}`P)KET$J!uOlR(_oztpO@$4a?IDzTjv7h zcyH%Zz)kpcZ|%cQF7t4FX{@iyx0Xg34<<28$>%~dLw)=}KR+#Jo8d`b&&(aoShmW# zu$#$46KPd|CQ`ta0Z6(N6pO+}$ANO=-MpgEtDr3sH|%vhSEj}#@6^MD06spC1G^q23L%dP4@whmrthw6U2-sYDwLA{oU5o3S?d4tAk%2 zyfJla=H`sZJjlf0hAXF66f_X)DC2Eqd__jVQ4kG|c5teVQ+KBBoxFSU;jSMhzMELU zZ^MbQxf9;q4)4Ch?#RmQexLiPn6An!diWzbmPxebe-Fz>rgyG6iPj{U7W4j zBpsmp!MtX|@Anz66nO`fM@o958`1U8>Tr$dI_0TLc}%zpIHQ|3BE3SaQG>bGlV7*~iHU?|VfpqE{7V363D4n8Xiw~eGH<>pz5f9zS z;P`OI*w9dQ{aYk5)l2+$Dpj*?k;C*b2=Sin%)+!HOOo`rf~3?_6kkTEWt4ozfA24& z1Iy^mKjg$R-uVnqu7+f3`)YJRN~~@c)QGfwC4+GETJu+V%Wqiu;us){UlT9>3r>ez A6aWAK literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b74b1a3301b54350527ca928453b0cf6e58f1569 GIT binary patch literal 6513 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7e1864c0093b65014ba22be995a7a46e77c2a37 GIT binary patch literal 3836 zcmb_f&u<&Y6`tYll1qw|WLZw!#I@I!8jFraHm#GkMiRtv9EWHk8?`TDTC7LABXOnW zE<3Z7O+o>LLWdZwp*THAM_&bB`w#ToON<1luxQZ+K@YvzpaKIq<-J*wB4wpbfsUXz zKlbgL_ujnu_Tyg)g&cu4GsBi1WC-~RC%tAQ1KQbu!4`2zmAKSR`Lv#@rYMdzU#sg? zU5$0$sHdyxdZwDGn^lt%o)Kx#G5l;jTg_6EB3Fr<-XLz~VJfj)&8amL*0MbJQ0uOa zsMQ>-jts2kTlr$4y^yUkABdM*n-bLV2uWB4$7v>A|82l?j$iKvKt`nyb1Fy z!bz1vQd2IZX+y7SSx8Nm4F0*Mt8Exn-Oai>Xc%tJHK0$oQpJ%t`!QAdRIP$|*d6?i?$Eg%8Xuhtqe?Gl+`S@1D0Wh@F1f!LYb(4Z(UfI%6=i!d5|@*L=^Zm9L9%nXg2=EN@2(tQO2VzE_r9ta4G7!YMN;c_hnA4Bk}9xyl1B zSQLsf4_3>*w@_}hqFNaIwDihP%F>JYY=b!~Y>CTq!)ui7RUWvYtd80VgGhvaGAT7$ zv9`pccA=ku5=@VRvz-wT>*Q~vr#~N^`plf_V90Zhj$OBXkMxK<=!yb}9bJs$_y~yD zSY>{b#~FU7;R!A!TD72w34E$SxPusw;Pz@_@U(Ov3=`m z;Us8CM2K~=Yv$DskS&!cO-3S43m!E^(9SQkA}*~pYc7QI$IR}SN==-Gu{aJQHk6L| z0gT(nydVPY-u>ylcn0-!w9(xqc^#L*j2n?8>7w*A{C z^OGk63r4(v;slCQC@?A&i%P9PY*Ye|SiS*bgLG2Vn0{=M_vridv8EZ*yGNf(`cue9iW(pYQ4zIJHt9_nDhBadMi)4-7p%PHuBe06)rdqd9ikiT}iFF?^G1lR*7#sjz zl{o7KUSuPl4izaJh{+j;Qn_OHLlpL?p2 z(dRek@6LZCP0+u0@`Cm!4I2M3HT3Z0tP=6!;ZF`v+y5tJS|e;cgTx9) z+T;7hlECnfF=1tuu-(EDm9DXgPuwl;t1?Xl{W2O&>y797tL+lX_u}3(BUcn*sdwI>6N{|rkIq=_a z-QuSm3zi0ukOBr8fQ5j8K$bM5LM^?RiI3gj4F;rwza6@*{s)RJ!L`WYr@0aU-vipW z%7n*)=se80wE()v1%cdI68H#rt-5yyq!(DXy{M*?>O5iyYmn3?GDl^ufuu(1%`oJW zD&Modx6z+4TxosP9`*Xx+L67stkpXNtFOm2%43%^E|?iBmu-fXgc5a1)tg zqgI1OFbP2E;>F}03`#Mg5*VBTj&>e4gV=np&0V|abWzzK(oHsp7mA6Y8(!V>nef3t zKPR#lHhtGx;FcdU7kuf(;kT?+k3kfGegjdc4YdB@5n%ZLm3pcoR@@38XrEi@m>Y?< zz-U5i%wEdcCl5Vk%z$#{GQ2fFa|QwQdpK02?brJ0`jz4=`x${#Ui5rEc*Lc?vWnsv z5QxoQlD^CD-t%|C?;brghw0&5F+ISMet`i_qd0>?(Vc{9?USJPc;(uML-!v{3}5p& zW7}@%*tWp0rg$C2fm{AFTto31{7WQr8{|nUXPBMiio@u}baHc1XRcTfNQsbQEjEGd z0mTw{gmE_ckp(}65}J^XTKKz2;CD`hkMbO%fCc(A}UU z!eA_KoLy+giO9@W2xYTtI+cp)@>UH~`(w4W`@^%Fs+r2<2O!WP+{3BRyPitvAIH)p zS?5pAx%~hLL8fP`wkh4dxcA(9&wZVH&Ua7$!fv-x@bvbEryg9OsDHp8%A=Penx{Su zMXgXQH9@f&RvXjIYA3WBjO${$2_1RsC-mfPm@tsHal#01eatj#o-h+yL(DR3ov_Z@ zCTz3x1WnS6G5c)IL=B0XVvbqogmcz4;Ud4yvD#Vpgj+*#R^A77S)jaU!b9?`vAS9B zgqOr^vHDrx1h5D+G}O^B(V(HU6sMmVQaVz4b4{N@U+|gm1C3$kxb&+$WbGC74*6Y(8Go4J%#iBO{nQ&|>!AFzRvjQ`h z;FBE7OeT0{Uf`HJkjn7f+w+`|6b7tMu$F*Ew1wmGL^7O=CgQ?4{HEu^yuh*HBo|7i z0y@!t{l=BEp^*z`M=p+zpBJqoiCBz_Ah~F|6rP)l#;2f^dn7Dyqj7Ym#$TTO`UE`o;sP=S%T{sQYBpHfYuW@`d9E+wn9)6j|qDhVq#~|vs!ebGR zy(%#cN%V#5*RNdVggIcAgWndlqSUdsdV61g>v(XuR z*82uV<+P680n7_%pY+4LJQ;!@B2N$*Vk3k)iqbs22ay#jNfI%bfz-+;O(_$%s7Y(? zXbVi-(6OV32dq{Go?ZbaW0vb< z!t=>#Tqz5E%v?A*-N(Sf;Niz4AD)`!;>iGW0y3bz&^#aQh5rFk{s|7y6YT#J+@Vi! zjGmYwfTf}XwnW2hI2oB1jZ=JLeonwtD9d9n_(li>EDC&l^Y4PwiCHco4+aw|N=3BkGOTrdPf!~$^ymt-UnPx6UaP=3ca zeqe4vw5Xltn}O9X{b<37v(K{#d&blYiH+y7vtedd|Q)SpEBYWnE1eNs6H?#l$*UBZv_* z>taptwt!eM!`sTbSqr>vSR?D%UBB{+tz)gw4*en;*2~%;e;0RbJxfEqH4EB+Pjry2 zJ|Yb_40CGe6fRWQ=abu?(3dmI3(%5^7*PQoff^2*Q|Y zp5m@tpI}so$jtiuxhBJ392BEQVyu(;|HkpKt&E5 zNL4vlpaR#9DD7^4(aJE+-O@CD>04!}~GQ912C_(PSu; z@{QmkFOB+ul5+^?gd-5#qjqYju6?VQ{`kfpzrH@7(SKkqHg#w88)jdzvGZ}`(4SjB zr6JW(>>hmFeK~jdaz_8Txr1+kvJrI{;Ro_SCSw~SASg=%u2F>I8$h$DUDPe=7Y&QX zw3gSVbwW*2UiK86pJ`1Bgo#2A!c)74@YH>4zAmj7K&&q6(}uem9!_#rH=|B8uqi)j z$e+?Gtx8j!)-ResBYgyEt&Z3aPXNDYlA_*rsf5&8St)iGSe5uStNjR`YC zc#>moaSP<=MFCCbH`RMN9$R3-H-$uO9_T<=f+**qKrEKH!?6Pl2ucvTU4p0yikjh+ z?sza5&=V;nTF%~$aC79;H6S%F>Sq$sc)%j+A~At)0`5ekB-%xbD%wRoigwXJM7wBK zM7wB{)c_RjqLt+^1LFd&S+bbQ7t}l-i$i~_EGRi=7)lB6LjW?;NF5%2B>cr&dGlb# zyVQ_9v)Z-h`@&K8@WxhcQ_g?x=kC0JtWbL?M_<}@)vx%M{XcHW7>l0fmCMVQ3!biw zxQ-F0(0cCclgmz##XFr%5uwZtw!^8!S((5 zx)T}ewxc0uZg_rm;u<5X6Za8_3Tj4OpO7FwX?3N-3~N9U;*UX2K+7M57a3mxSG=;# zEYgOC0Z27e?lU#(8Wa#v8r-9{9kmbA_tV*tf`iGKndh0b0~ulR51^THU4zw3YD=02 ztKIbr@>t#OzcO0P)&BY$RS>X4_C;z89<5(5SkW^e{8 z9+pn4BdMWoP#-Maq3-H#P-UP$)y+-(q}Xl#hax%r!* z1B#|OK6)DxQqDO(ad)ANBxM%*p>^cKP8#c%HMf+VY{7o{tP?3w(T%*}H|itlQ#g8b-cob-a( zlN>7VW3c1QO%CD#tEdAtNYqVnNzovH0f(<7ADt7;7rBMAJfGl2V=OT>1@hj&ayRFv zMC)jrl%h*609SZ!z)-OQE_?N$kW~-2q&btJ0u6>J*QpLNHDy{z6`~(P zWkMK)GC4mQ{MqYE?`$G^9PD8`-`o8MQ=y3zO%^mZviozwf&~4 z#&6A;eLD>0ZC-hO`SsP-^`5`n|6le$O8lHJ3|=kNU4!GHcVEW1?eE_7_vQV4YuEmV z|6pdU=x*I~cjet(8}6Q>)3@zmHa*>WPxq>@cBdbx_`jyK_J%E|cZFW2bIlijeq+P= z!!Mk^9Rno)zh||Sul;Mv;A;G$zIDsj@*(|@F8ard{;p>RT|?tPJ~PYt-Yrk#%GmN) z(f3->*H-j3A?5!z>Fc~ZI)lsmjj#`f`fuyaBeeE!`}`vZwSPyqjtm(7u3v-U!M3xM z;lFwU7!GS7tght!KFkyVGHBgGZI#b$iq|aQiGv%j;z5g7wv4G6eMKhxtS0Hxs&cld zOY81=OA>en73qqH)hV)DLoH~Ns!WDMze;;08LXT-yuUi-3?AbZPZ?+WxTI=Q)uii8 zT}46o33dr6sEXXh6Z2kOSm?u4*d*RV3NJhAc?XsM%xx`B+fXsgTFnz!iM2V?igat((z=piWl zm91`xU71;)*=RqqVLMv%`9HKiv~K$L=Y9LvMhm{f_eZyV{>bNII0U`Fz8JK zYgsgWdymovWei~CKoL!1rjqGr4$?v>aK z4r9er5{96Le)~F55pEpWB$}?|nL&84;!#Y7MN<;NIPxe8yuu|~<ASi;i8R zH+jyXU^|&~x{9sMVwP+L?B~*Oa!VohjJ8d(LRxt{J7%)>~&lP7LfZ z7ha{cJ=cAG8tPPzd}$wl#~tY_wE>dopRgkr41tCeXI0dNtCCLeoWg(@Y&6MmccXAc zgjWeFcm=8i#Q8f>p;U{kS)2>Ugfb;!JmnutByJH~YmRB}654lF#3NXg>X)x{7|9G_ zro#f$uGo<6eX{a#b72kvfA$=I0t!i%+`(!k!72=aS=i1%H3uq7r@k+B7dawlJDXBmWTp%ZAw5=AE<>WRs!$Bb0(m3e-uta7EM z>$Z|0bunIknIgh8DXpR6B5@*9;sAJ;Ptf+%&;8Dj7xQM38 zhp{}-QnitYsK-eMB4J9_ivf-htyngcoS%c+ktwX!CXXsEYte*7LQuAr3?0sVNSS#N zkr|}oqokZPt0AmUM1Tf#To`SFLMppoeM`D67XBL;cc2Gb zDQEqIckaKFb9Cp--4GT%zLoLi@zoh51y3+z*)rEWpzqVUxahJYX`IcqTm?F=(oHL*|zMp)uD$I1#fT0rjFpy`mGJ~ zX)r$A^_#W(^0oWcjudJSWlS&zEv-3oBfQ;>EBlxCXQPGM-i)betIgS3ifz3)x<%#g zWbS)cKc}w&ZB2c)CvR`t^0u!YSv!{Rc&Xq$oH<`~cyo^St(NW&6Au$>Q|mX^-(I^_ zXgU7qdcNhKLES}5PNssO80ViwxLklQI&zB^F(g= z`_FV*dks+6)vugeK9_}+(gU`W&6Be++jM>QSf1|8TvS;;{n^D0`U-GNx2)P8+xDv& zmp15e`A4=P*LnDnZG%2TW)q2Pv-No!qY__+I*PRO!K?RQ-K3lIbaOVkLH7cov+j9Q z35_54uX*}M5ZU|6U{MR`xDGD0`b!sDaDAn!!BC0(CIIN`gptPCOdim}jj2pzN zSuiE!baMBPW(&cvbzt+G#`$TW5%p)U!^vYGo$N=uzW)+lxu@*0FhHua2{t+z<=B*c z41Zoye!75I`O$wZ3f6W&CrLsg-%v0H3}pg~$98OS?v4T#5^+^|-RK6Kj|Gp9L_8c* z2%pFNsu0xyh$NtxzDE@u?p-^$==Ei6U)mg72Sz?S^Ruy^juj4kKXZN?He!9=!4!js z*KdFF?vgEgIq&S-cC@Vae71-g#i#(Fi+2npiacl?VGuCiV>i zVwK%gQq=&flJ2MIz5ET(z^Xu7)hu4Te4fD;E1qh=67cz(!$5Ia9RCx~W9ATW`P2ubHX9=3>6OZtYWM=VIBWnG6H zi_d{URtW+ML4B#l%EPae2lp$K@b95|K&jz$@s@)&AV%yi6fFqC6rBxtJUEseo6fGh z6OOvIyN}!j=ZT`PbH_y4o1Rg65Pvmra^)PY>Pga(cXq6ft|dQr4#6SiWcIGpQ*fSC z>ijL%DXn)vchm>xn5_3R5CcJm&J5uF1}j1(DMbK=)K**DX#=1K?WMg?ZLNbidqLUK zItD;i#e9Gor?uiy#iJ3B9<*uqmqECYw#%jkn_ag1Rn(;#=8`tCa1B~!_nQH%H2`X$ zdv6f1A#7y;Fa?4Q&ES<$#iL*ld{Y_fBGW7UCRM;Ttpd=uj==gwD4eQ_mwY?YWqCoV z5>{XZtgH%RqT+WdUQ+5#^%6=S7HxaXuqkaT$raYTNVAr-6-KX~weE=q*pybl55tnS ze8*DdNEFRqgfT(alZt1its((_0;jNB@!|JEyUNh07u4S&)l?pq>W95V<1Di^X=61` zz%|RMj2iTMFXYmt@Qv3Oz)xp+t5Tf*w`?t0wf_cIvHb|^D4vu?5`;~+`N8sn#T_4oO8 z=l`dzJ95#s*DCYR^eeMkdc*pVWrFhl-B#3s7XJdxsfbmvpie2z)~b&Hq8YLw4L;T? z;q_?%Eda}!pC#_Q3I%gjL7fseXTSlWqzt8e*9bDfpeG=>3Xm&10OY!aaRLw!pok!1 z-_(G1odmR~A8?4NqTR9Hpv`<4M1g3ur;caHxajLr2_i^@X<7Dv1|+EdL} zCGYD>s7}s4prBs_G%U3$T^xc}95~|w{)OP4R6^A36ZN;l`~p7$?PK*aXXVZR0P>GB z``U@MLo~uDHD61m>IoDl4VHonp?`bI3@)T-We6$oM2}1(A1t_TK>GxFBWfKcK9Bqn zorwU9sUD^1&0s`A?qnnsK|mQ?16=ArYN(tLe5_^lQXZlK^*2n|JBtcufqEWgCXbp| z87!q*Uj$F${Q{Ip%|8uWRroW|TmfbBQ|$wf+s4*Cn+M182gh>emZHu5 zVEF!UuKj4Y&qRIPiL;{rM%~G!Fl9w4n0c# z^|8m!Guw16T;p!K0(n-7fPl5&4ak#=&P%&VpU_X-4Zaci+6<0g)Xko)V3dVw` zA!CLcW&)%Y>zgtcROsW_27MfJym?#e?wq3=^sz5&?yMfKoYBW+bz#F-0@(m}8G9Zx zfdb&<4x>Oja<%Q7wcYvJ?$z6Ce4%zQZyQuw#k!FWpcv<-t?99?Y1Nq9cRbG=FE;tX z^TyG->FCHiz~86Aok(%{ma== zxHdOG>imrUoW2AYV2x|Zhga$ad)r3W_wx4dsfAwJpbzgZ)bTle67bF%Pp%$Nv!35= z;bhKidwnaD%ahp~1#gc6vH>%$|M-pyqMh4to-ej`FVV8`2tKhzPgBw32T-->VSZ~f zx@vbk6nN3L4CGw{MK_GxWB0&T%f8(HmmiJh_n#}YoL@R$tZ&KH@7wALe*Er7@2=l@ z#DAt)f2Yth@)?`&dG#T^-LpSSf2DW{jc@v1%Y(0wzZW(~L*p|YdJ0)7@LT|IT;f60 zTJ$mCk^p8VFaVhilqU%0X>D+)hpOq73{Kdl>Z1ZIDcHgP3{D0JW|SMaa>Er@@!)E3 z4Lp>lG+@%|XUYK}nZBy?fwn58P3@Z+QB1-!)C1!KQv`ftBic8?7$Y92MsOZCR&y6n zN)dA!%-gi-$J!74dMct@G%c!z9T-U3v_51~8iW2;^F7jm(yRIpfg%G=0TK90L8|Kx ze2tTOayia~nL`JLm^=9KS1iVWUk#)Hqz6Y*62A?Sod5xu2`33v7%rWX2~};GM@@ob z67#%r*h(&r_$e8DL4^7Y9;#6Pboe&V#o-=MElhMC`AZIT{$x1#iU%DZ;l>2qgqS<< z-47J)fr9Ya7;qM65Y@yRH?@wbL=sdRxf^h~hxd`n5mHi?_&;kx`xQ7kKvl3~Gh5uXgVnmSSVeW@8YpD%MSf#-ka>myVWg zcT?svlx^cFz+AS@DDvR0DknPe`xv4 z(y67li*C=#k>w*lK86RJdk7qcT<}%XvcBja`WgwJ>5LXDG|=9aacr1dphAoNf#bd- zYk|9j%Nyob0GEYx`X8S*0WksGemc~8`iM24AHP064kM1LOUkK!y~m`9gBnp`5VK3f z2-KHymA(yBNKj|_##{Od@pbT^eN)bauO*rw8?eG8+{a1xi~OHK3S{6yNV()M7GDQ~ zJ_dp}`42I@j)m_Or9`MsuI)`I6^2|MK~{;*UH<)HsnH6m<_aqLlg8J{O?j1CYf7yn zOW<-n4qkJ(3JLRNOc2!#9mk3O_6>b=AqfVBJb0*!rK~0X3Cp4$ZwSCCxWwb`O88Z* zj%b2^iZL7y{v!wgR;^Zs7`oQiyb{X zcE6!!+wI*kz#AH^ZQC(n46emmcPtpQQjVq_8^&m=zKzg>9%Ze0>cF%!8mtG|Kd&`- zw_VJR0V7ZolsA#687r`mD6%h6LS;~eouppX_ZmRS>)z4fd+;QAZ(Hh~8Q`}xjyQz! zPLb9Z*#a%(_F3H+WOtN;Hv{ebe}Zy2+mrL)Q3|uoTnc@TCfRbk53C+RW82p;4>!W*y@9?3kOabhccmpLGRmpPyq#sjbq<|EjQK(61#mU1d0 znbGQnuQvzC5Av~{Rb) Unl&Su|KlAoX;3f_+Zg{4GuR|}!FWqUqoP703v3{i4T`N+IE{wcox9#y&(3V` z%wpCu3aU_Lr-_WEO6%k$R;5az^dV1u>Pw_PwJ*51vNIwoRr-=QH>PTpr=D|Xf3UTv zQeQfj@83E1+;h)&e(wG$9*+?CMn<&RKXefC6;A4(><@(9pTM9>bfOC;DGD=!fMd}V zXGG{FQ!2_cGGCL;KruKIEVj+G6+<&2fzTie0#CpU7b7zffr#W1(S!Gh-u6)RrO!kw zVlwnKPLhHb)hx?)HP^5$Ck^w?v{t10G%c2Frm@PTVbY}J#iwsvpHMGcp15%JO8Sx~ zjawBjbU`ysEdzAHi(Q_czWz3KN+5-1{d4?Q@;hNS4TCD7WJb^lTtk?V!le19hjsBD zTuP7V67&H*s>{#^^_U)jzDvEYkT9R8mg43$SINPtis2|(({?EEgG7`?Z_{kqrEpZXrXH-jdDug_ zu&iyl)N&og&iQhD>0=R29R~@T>oOw)G8|BwDkWy$HsAnI2V^L44a&?4>d7_mZ&TYo zo#zT^j-!+v*k7c@3}ue5fu`to86fjTI9VHnkEm)=G2y-_uf%B1xUD#FZ-;9G&Vk2j z*{q?1&TyZK;^Z~mo(Eer^=uqY6RG>YSbbTlH^!L9p~uW;FN4HL};YzUEdOEb7D zjVa2wqnNfe%MaHae&4;j9Yr@7pl7oR?$-@x?o>uY`;Rzwk-A0^Zf&^7K{OWv1^`xI z$<9&z)Xkf2v6ORe-c)Q$`JrKzZzo56l{s`7G>vI%x^Hb1t{6EqBFNz4z(S5w2D`!8 zd1E#YDo@%>ak#G`9KOzcXW1!pgU#F4aaTdvs3tfLtd4SNpeNoR{(%anLU_55iUYT< zoeOT1&C^jt1?X_Jlef#Jj$16-SBkQn&5D|p1u4anmUYMYdKN;V@nLp>xv+Z?236t; zb&4+N;%}vTepn=GgR&^Vtd=(jSrlQ`kXRu}IlUmU%*koU070Fa)TK$8;W1vH+9EPl z6&&5`ZB5FRyusF#dJsV#k{xR1JP~+9^;HKIf?)r)n#u$Gse%o*vWhfsLTsn5GrK_N zT$*y`-HevEPGwCadpoYTZhiMkZB)lwe!0 zj-CE)$}wDe3amS)%~B^-GD<1+7PWL><_KY2GuuodfVHeMR)R#Ss)l8_s=9Evg;B=p z)T3|@M}g)pc@`u+BcBF7(>D+PU`hTUvfbSSU3j~HXi5Gsu?svT+du^-4P?*3q)HY^ zp@AUs`kyX5tgYS=-3E$)sZd9LiX_D}YX|nE=yj;-EQP{QOGK*bwbkZHi9z8ao@{~D z*Z~;UF<@P|9&PM|D<5fn<(eo}9l`BG(A*_Eous{UD?YRlA9^%={&D>ECGkn3=RR9I z^EjbA3MuR$uw|dWS>xWn0!kIi3EUh;`@h2TwyF_zQYKSmn7Al|f5!-u1agB|@;tdM z-5~SA3*`mtdz$?nVNqx;uOigtfpsS#K+wS4Y+n0#-MkZw*~|<2g(N9*1GATa(Lvo6 z#kXub_==eUe`1m@-VvAtV7l|XnZXJ~95W0=mN;6t5D zhFJnv@lKxXQq#l~Oy|6aUlDH^bl#JTMXlroG3!~j7ahNFVPa}ZeS2d3q8H$fTJvWw z2&J=Zx_ewY==<_Qe@j>9+b7|0=NHi2CEL-&${X*$v7P8zSy*0Jd2jhWNDb@be@?vo zwD0h0a3@9%9IQrGBh|!eVqI82z1i{dlfL06-M!T-t5??aPYNFuwgyuhgQ>@Zr$0OW z`{}Lo*EY^y+w4y7N@9QK{oqcJ#1E{zwfxrFl z_b;J-Zm0B~B#g*$ul^kjUgXt<8ot2N_?lSW5f?=^00=gcQiF*UTKMgv*z^L})$rTq zt~$o71L)D_dVN%<3sBsr$O9pr4D$Ts$@l{HaSzNhsC(W}>+1Y`vSCS(`=C}HB(3Or zGQI})lm|8nJPW<8;Kn00pgI%K0N6eKRb$ntTC3Lj)Z?DylKe$9;Uo0s@|#<+!yB=~ zYtx&tA@GW==-@_la5JhvVp_SneD#BCPZM2BQNLt7pG6ud{SnUipHYH*!81+UqNs~} z1jtQc`T0K~mz2_9<289~#UphTBdVk2sM^4iodO;qpQuFxu)lvC(tl(^nt&q?Y9EX#4%6?|*+yUT^yt@#^kfy81K}YsSx7_hxAD zzkmiez?8*8*mOeUD}_(AcizcV;Fr<6qe|Mg=)1}y?=ic$WoCIYu0omZgH4{~xQu-d zWnj&QM1*5c&e*nDo3PiAdJ?HJ`wnyq5%}F#6Y8@E_<1$5Cjr?Pc@{TC@O_6bA$TE0 zRJCa9WfR9SRsAWv{%e#rRn_gRsmz}cf?1N>Upn^*5>GOL^p9K|>I_ KzaiLiN&f-KAPCg} literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5d825b1eaebff2dbad2e8b5c0dc178a134051cec GIT binary patch literal 6743 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 DDp?Ve literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85b029c5bf8b5eaf564a47215489bb442bd6ca6a GIT binary patch literal 5310 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py new file mode 100644 index 00000000..2c84208a --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py @@ -0,0 +1,70 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import logging +from argparse import ArgumentParser +from typing import TYPE_CHECKING + +from pip._vendor import requests + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import logger + +if TYPE_CHECKING: + from argparse import Namespace + + from pip._vendor.cachecontrol.controller import CacheController + + +def setup_logging() -> None: + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_session() -> requests.Session: + adapter = CacheControlAdapter( + DictCache(), cache_etags=True, serializer=None, heuristic=None + ) + sess = requests.Session() + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + sess.cache_controller = adapter.controller # type: ignore[attr-defined] + return sess + + +def get_args() -> Namespace: + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main() -> None: + args = get_args() + sess = get_session() + + # Make a request to get a response + resp = sess.get(args.url) + + # Turn on logging + setup_logging() + + # try setting the cache + cache_controller: CacheController = ( + sess.cache_controller # type: ignore[attr-defined] + ) + cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 00000000..fbb4ecc8 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,161 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import functools +import types +import zlib +from typing import TYPE_CHECKING, Any, Collection, Mapping + +from pip._vendor.requests.adapters import HTTPAdapter + +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import PERMANENT_REDIRECT_STATUSES, CacheController +from pip._vendor.cachecontrol.filewrapper import CallbackFileWrapper + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest, Response + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "PATCH", "DELETE"} + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + controller_class: type[CacheController] | None = None, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + cacheable_methods: Collection[str] | None = None, + *args: Any, + **kw: Any, + ) -> None: + super().__init__(*args, **kw) + self.cache = DictCache() if cache is None else cache + self.heuristic = heuristic + self.cacheable_methods = cacheable_methods or ("GET",) + + controller_factory = controller_class or CacheController + self.controller = controller_factory( + self.cache, cache_etags=cache_etags, serializer=serializer + ) + + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: None | float | tuple[float, float] | tuple[float, None] = None, + verify: bool | str = True, + cert: (None | bytes | str | tuple[bytes | str, bytes | str]) = None, + proxies: Mapping[str, str] | None = None, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Send a request. Use the request information to see if it + exists in the cache and cache the response if we need to and can. + """ + cacheable = cacheable_methods or self.cacheable_methods + if request.method in cacheable: + try: + cached_response = self.controller.cached_request(request) + except zlib.error: + cached_response = None + if cached_response: + return self.build_response(request, cached_response, from_cache=True) + + # check for etags and add headers if appropriate + request.headers.update(self.controller.conditional_headers(request)) + + resp = super().send(request, stream, timeout, verify, cert, proxies) + + return resp + + def build_response( + self, + request: PreparedRequest, + response: HTTPResponse, + from_cache: bool = False, + cacheable_methods: Collection[str] | None = None, + ) -> Response: + """ + Build a response by making a request or using the cache. + + This will end up calling send and returning a potentially + cached response + """ + cacheable = cacheable_methods or self.cacheable_methods + if not from_cache and request.method in cacheable: + # Check for any heuristics that might update headers + # before trying to cache. + if self.heuristic: + response = self.heuristic.apply(response) + + # apply any expiration heuristics + if response.status == 304: + # We must have sent an ETag request. This could mean + # that we've been expired already or that we simply + # have an etag. In either case, we want to try and + # update the cache if that is the case. + cached_response = self.controller.update_cached_response( + request, response + ) + + if cached_response is not response: + from_cache = True + + # We are done with the server response, read a + # possible response body (compliant servers will + # not return one, but we cannot be 100% sure) and + # release the connection back to the pool. + response.read(decode_content=False) + response.release_conn() + + response = cached_response + + # We always cache the 301 responses + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + self.controller.cache_response(request, response) + else: + # Wrap the response file with a wrapper that will cache the + # response when the stream has been consumed. + response._fp = CallbackFileWrapper( # type: ignore[assignment] + response._fp, # type: ignore[arg-type] + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length + + def _update_chunk_length(self: HTTPResponse) -> None: + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() # type: ignore[union-attr] + + response._update_chunk_length = types.MethodType( # type: ignore[method-assign] + _update_chunk_length, response + ) + + resp: Response = super().build_response(request, response) # type: ignore[no-untyped-call] + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + assert request.url is not None + cache_url = self.controller.cache_url(request.url) + self.cache.delete(cache_url) + + # Give the request a from_cache attr to let people use it + resp.from_cache = from_cache # type: ignore[attr-defined] + + return resp + + def close(self) -> None: + self.cache.close() + super().close() # type: ignore[no-untyped-call] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 00000000..3293b005 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,74 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" +from __future__ import annotations + +from threading import Lock +from typing import IO, TYPE_CHECKING, MutableMapping + +if TYPE_CHECKING: + from datetime import datetime + + +class BaseCache: + def get(self, key: str) -> bytes | None: + raise NotImplementedError() + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + raise NotImplementedError() + + def delete(self, key: str) -> None: + raise NotImplementedError() + + def close(self) -> None: + pass + + +class DictCache(BaseCache): + def __init__(self, init_dict: MutableMapping[str, bytes] | None = None) -> None: + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key: str) -> bytes | None: + return self.data.get(key, None) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + with self.lock: + self.data.update({key: value}) + + def delete(self, key: str) -> None: + with self.lock: + if key in self.data: + self.data.pop(key) + + +class SeparateBodyBaseCache(BaseCache): + """ + In this variant, the body is not stored mixed in with the metadata, but is + passed in (as a bytes-like object) in a separate call to ``set_body()``. + + That is, the expected interaction pattern is:: + + cache.set(key, serialized_metadata) + cache.set_body(key) + + Similarly, the body should be loaded separately via ``get_body()``. + """ + + def set_body(self, key: str, body: bytes) -> None: + raise NotImplementedError() + + def get_body(self, key: str) -> IO[bytes] | None: + """ + Return the body as file-like object. + """ + raise NotImplementedError() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 00000000..24ff469f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,8 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from pip._vendor.cachecontrol.caches.file_cache import FileCache, SeparateBodyFileCache +from pip._vendor.cachecontrol.caches.redis_cache import RedisCache + +__all__ = ["FileCache", "SeparateBodyFileCache", "RedisCache"] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1f528718a412e84716bf49083cbf65cc780a84fb GIT binary patch literal 484 zcmah`Jx{|h5Vez(LPRITe`r9>30P5wBEg0bEU1g+CP(7di6h$-b>vqtu(9!5_y>_# zU}8h+fW(B;mXD1ap6=Oxe)n`wolZzxb-O$RO2}(NzRO!R^R8>|NJ>&FNkNCS@P;03 zxF`K07zUJNB=sNYur&*!)>|Wsyn5qUNIc?6j`j8hR$Oz71C`Exjw4!!=a>q!cog~C zcS0RB&~k7Zt<^h~sA4w7GF3WGn!gfNTCL=gnE1+hu*Jo%y59Xyr5o3ktg))wjBzO$ zdn9v5$>%-fsz4Yk=U5h)OOfPorqviH7Qx)u5zotBA_W-KQ`BH|0^At11~TrHmX9Q! zV2LiZ(tza@q!>Xpv$-k{;=O$^!eX!D$%JQUz)cLRobWg2k{Do2l)^F=SF?Kkuu$o> h#J=8iv%0Mjv*qC3r<8t#gkI8TGI$C5w{6`l_Y3_Xk$nIF literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dd3492718bc3dffc12fb2fc751218a69638a967e GIT binary patch literal 7812 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e7eee5ec16750881df0b4a79a75588f25c7b818 GIT binary patch literal 2782 zcmbVO-ES0C6uH4CWkSM_iAN?PEp{bQ-0tv?W;9JQ;Onma3JG=A)e84-&xnJkrbI$L4 z-1#M)ZX?k8`s}fSM#vvHX*HN*lNz4@og)r$B##uOtR&%B_T-|Rm5WMN5p%^;i&|C_ zW7SI(li8$1sKye&t9g1cl}$-RCPTzYOcN(blXn$yJ;}CJ^i1k6oMfbEgYEl4Xoqg# z^Nbwnjvdm_Ez(FwS`B;(Oz96lx^Ox-c;@urduNA-U?KIc&FP?>AIDwo1M0XuAKxC+ zrYNZ~4D&fcNmg=5R(5npnpU%llX7I})f92sQe^e#Y;e?RFv~F<4LA}`8q`;_N$8W% z>lG!lF=`V6h4{R@N-T~+veeitq}HSw$vxYykUP>aXshM}-v>)oPQ6i_ ztnr{otwI21`9(VJx%qMH0t*WCN=Pk!H5{?W{lj_BwK!!Hlv$kREt_*1a%;?nlc7E0 z(IM(nW`_Z@s6SzO?ub>YgyVt#djHYaEbfN%aLLYJvBxO4N^Z%@O;Fzf<~)K4s)a1@ z;t97H;+hjX{iRBz=W?#^hPhm|a|M9@*5W3#Bn4!OEOm9?P`^kuU_#aagl-W44ZvWI z)JOqY*0n;@d8?Oe(p@Q@UnIlYW=d+zBy46PW>t3X>V2?L??SD*pttnl40qjycd+YAwj zR7lv&F#`95iI#{K2m35UX`&VM)@Y>YO*0rh4HMM~Dt!obX z@fo^!wx(7=&ZPDqRwAhDT1^TOQPFBzVOwjw(%)?kTRH+NO)n!VFCz)`TXQxeV^Sr; zs_Tyi8KW5$kP}gx%Uz#`wx6dA9U3WqaFwA0BBdPW8LAm287+Bso<uu6>v7Qb|K%(CcTL7704RW( ziA0PmUkp_*LbYjCw#JOO%#j%qRySr-GpYM}_q^U+?_AV($0|2V1Mm=no)+nP4F)fx zaw|knk;}Uw{GoQgusA(SU=$X&mEt6k&-bdNB4y<2*)!BDQD%+?%*=b#X0AVG+MZ{I zo0m8>ue#xQTO2;7nYYXMD)tO#lsKwYJjM`@=fI0JA*0%{ z3O=#Y2i*KsAX8*HLAtu*qck<@R-#Yi-7;J{gePh?Wv8#S@(dc=skgfyIgNk+v zP!Zj^*uZy$D6`BdH}OfMdDPY{1%U^q9y0yF^eJ`BFaY}lFb)l0VeB8i1JA$6EROy& zMG&AJz`M>4Sm_5Aj@VC;N4g<2%%}pEsv#8lc%%|iemP1o8kU(Ksl)i|pvGCN@Q|@X zaJp&;HnV2pb{v>BcYq zG-=3^w!M*%w0+AuIU~I68+5|iT>3;67huLqZVll|0Wnd zYeMyPHbwf07@3poEnvZr;I9B#RwPM!suOAd-w7i1JtXFz IO[bytes]: + # We only want to write to this file, so open it in write only mode + flags = os.O_WRONLY + + # os.O_CREAT | os.O_EXCL will fail if the file already exists, so we only + # will open *new* files. + # We specify this because we want to ensure that the mode we pass is the + # mode of the file. + flags |= os.O_CREAT | os.O_EXCL + + # Do not follow symlinks to prevent someone from making a symlink that + # we follow and insecurely open a cache file. + if hasattr(os, "O_NOFOLLOW"): + flags |= os.O_NOFOLLOW + + # On Windows we'll mark this file as binary + if hasattr(os, "O_BINARY"): + flags |= os.O_BINARY + + # Before we open our file, we want to delete any existing file that is + # there + try: + os.remove(filename) + except OSError: + # The file must not exist already, so we can just skip ahead to opening + pass + + # Open our file, the use of os.O_CREAT | os.O_EXCL will ensure that if a + # race condition happens between the os.remove and this line, that an + # error will be raised. Because we utilize a lockfile this should only + # happen if someone is attempting to attack us. + fd = os.open(filename, flags, fmode) + try: + return os.fdopen(fd, "wb") + + except: + # An error occurred wrapping our FD in a file object + os.close(fd) + raise + + +class _FileCacheMixin: + """Shared implementation for both FileCache variants.""" + + def __init__( + self, + directory: str | Path, + forever: bool = False, + filemode: int = 0o0600, + dirmode: int = 0o0700, + lock_class: type[BaseFileLock] | None = None, + ) -> None: + try: + if lock_class is None: + from filelock import FileLock + + lock_class = FileLock + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + filelock installed. You can install it via pip: + pip install cachecontrol[filecache] + """ + ) + raise ImportError(notice) + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x: str) -> str: + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name: str) -> str: + # NOTE: This method should not change as some may depend on it. + # See: https://github.com/ionrock/cachecontrol/issues/63 + hashed = self.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> bytes | None: + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + name = self._fn(key) + self._write(name, value) + + def _write(self, path: str, data: bytes) -> None: + """ + Safely write the data to the given path. + """ + # Make sure the directory exists + try: + os.makedirs(os.path.dirname(path), self.dirmode) + except OSError: + pass + + with self.lock_class(path + ".lock"): + # Write our actual file + with _secure_open_write(path, self.filemode) as fh: + fh.write(data) + + def _delete(self, key: str, suffix: str) -> None: + name = self._fn(key) + suffix + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +class FileCache(_FileCacheMixin, BaseCache): + """ + Traditional FileCache: body is stored in memory, so not suitable for large + downloads. + """ + + def delete(self, key: str) -> None: + self._delete(key, "") + + +class SeparateBodyFileCache(_FileCacheMixin, SeparateBodyBaseCache): + """ + Memory-efficient FileCache: body is stored in a separate file, reducing + peak memory usage. + """ + + def get_body(self, key: str) -> IO[bytes] | None: + name = self._fn(key) + ".body" + try: + return open(name, "rb") + except FileNotFoundError: + return None + + def set_body(self, key: str, body: bytes) -> None: + name = self._fn(key) + ".body" + self._write(name, body) + + def delete(self, key: str) -> None: + self._delete(key, "") + self._delete(key, ".body") + + +def url_to_file_path(url: str, filecache: FileCache) -> str: + """Return the file cache path based on the URL. + + This does not ensure the file exists! + """ + key = CacheController.cache_url(url) + return filecache._fn(key) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 00000000..f4f68c47 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,48 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + + +from datetime import datetime, timezone +from typing import TYPE_CHECKING + +from pip._vendor.cachecontrol.cache import BaseCache + +if TYPE_CHECKING: + from redis import Redis + + +class RedisCache(BaseCache): + def __init__(self, conn: Redis[bytes]) -> None: + self.conn = conn + + def get(self, key: str) -> bytes | None: + return self.conn.get(key) + + def set( + self, key: str, value: bytes, expires: int | datetime | None = None + ) -> None: + if not expires: + self.conn.set(key, value) + elif isinstance(expires, datetime): + now_utc = datetime.now(timezone.utc) + if expires.tzinfo is None: + now_utc = now_utc.replace(tzinfo=None) + delta = expires - now_utc + self.conn.setex(key, int(delta.total_seconds()), value) + else: + self.conn.setex(key, expires, value) + + def delete(self, key: str) -> None: + self.conn.delete(key) + + def clear(self) -> None: + """Helper for clearing all the keys in a database. Use with + caution!""" + for key in self.conn.keys(): + self.conn.delete(key) + + def close(self) -> None: + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 00000000..d7dd86e5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,499 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The httplib2 algorithms ported for use with requests. +""" +from __future__ import annotations + +import calendar +import logging +import re +import time +from email.utils import parsedate_tz +from typing import TYPE_CHECKING, Collection, Mapping + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from pip._vendor.cachecontrol.cache import DictCache, SeparateBodyBaseCache +from pip._vendor.cachecontrol.serialize import Serializer + +if TYPE_CHECKING: + from typing import Literal + + from pip._vendor.requests import PreparedRequest + from pip._vendor.urllib3 import HTTPResponse + + from pip._vendor.cachecontrol.cache import BaseCache + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + +PERMANENT_REDIRECT_STATUSES = (301, 308) + + +def parse_uri(uri: str) -> tuple[str, str, str, str, str]: + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + match = URI.match(uri) + assert match is not None + groups = match.groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController: + """An interface to see if request should cached or not.""" + + def __init__( + self, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + status_codes: Collection[int] | None = None, + ): + self.cache = DictCache() if cache is None else cache + self.cache_etags = cache_etags + self.serializer = serializer or Serializer() + self.cacheable_status_codes = status_codes or (200, 203, 300, 301, 308) + + @classmethod + def _urlnorm(cls, uri: str) -> str: + """Normalize the URL to create a safe key for the cache""" + (scheme, authority, path, query, fragment) = parse_uri(uri) + if not scheme or not authority: + raise Exception("Only absolute URIs are allowed. uri = %s" % uri) + + scheme = scheme.lower() + authority = authority.lower() + + if not path: + path = "/" + + # Could do syntax based normalization of the URI before + # computing the digest. See Section 6.2.2 of Std 66. + request_uri = query and "?".join([path, query]) or path + defrag_uri = scheme + "://" + authority + request_uri + + return defrag_uri + + @classmethod + def cache_url(cls, uri: str) -> str: + return cls._urlnorm(uri) + + def parse_cache_control(self, headers: Mapping[str, str]) -> dict[str, int | None]: + known_directives = { + # https://tools.ietf.org/html/rfc7234#section-5.2 + "max-age": (int, True), + "max-stale": (int, False), + "min-fresh": (int, True), + "no-cache": (None, False), + "no-store": (None, False), + "no-transform": (None, False), + "only-if-cached": (None, False), + "must-revalidate": (None, False), + "public": (None, False), + "private": (None, False), + "proxy-revalidate": (None, False), + "s-maxage": (int, True), + } + + cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) + + retval: dict[str, int | None] = {} + + for cc_directive in cc_headers.split(","): + if not cc_directive.strip(): + continue + + parts = cc_directive.split("=", 1) + directive = parts[0].strip() + + try: + typ, required = known_directives[directive] + except KeyError: + logger.debug("Ignoring unknown cache-control directive: %s", directive) + continue + + if not typ or not required: + retval[directive] = None + if typ: + try: + retval[directive] = typ(parts[1].strip()) + except IndexError: + if required: + logger.debug( + "Missing value for cache-control " "directive: %s", + directive, + ) + except ValueError: + logger.debug( + "Invalid value for cache-control directive " "%s, must be %s", + directive, + typ.__name__, + ) + + return retval + + def _load_from_cache(self, request: PreparedRequest) -> HTTPResponse | None: + """ + Load a cached response, or return None if it's not available. + """ + # We do not support caching of partial content: so if the request contains a + # Range header then we don't want to load anything from the cache. + if "Range" in request.headers: + return None + + cache_url = request.url + assert cache_url is not None + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return None + + if isinstance(self.cache, SeparateBodyBaseCache): + body_file = self.cache.get_body(cache_url) + else: + body_file = None + + result = self.serializer.loads(request, cache_data, body_file) + if result is None: + logger.warning("Cache entry deserialization failed, entry ignored") + return result + + def cached_request(self, request: PreparedRequest) -> HTTPResponse | Literal[False]: + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Looking up "%s" in the cache', cache_url) + cc = self.parse_cache_control(request.headers) + + # Bail out if the request insists on fresh data + if "no-cache" in cc: + logger.debug('Request header has "no-cache", cache bypassed') + return False + + if "max-age" in cc and cc["max-age"] == 0: + logger.debug('Request header has "max_age" as 0, cache bypassed') + return False + + # Check whether we can load the response from the cache: + resp = self._load_from_cache(request) + if not resp: + return False + + # If we have a cached permanent redirect, return it immediately. We + # don't need to test our response for other headers b/c it is + # intrinsically "cacheable" as it is Permanent. + # + # See: + # https://tools.ietf.org/html/rfc7231#section-6.4.2 + # + # Client can try to refresh the value by repeating the request + # with cache busting headers as usual (ie no-cache). + if int(resp.status) in PERMANENT_REDIRECT_STATUSES: + msg = ( + "Returning cached permanent redirect response " + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + if not headers or "date" not in headers: + if "etag" not in headers: + # Without date or etag, the cached response can never be used + # and should be deleted. + logger.debug("Purging cached response: no date or etag") + self.cache.delete(cache_url) + logger.debug("Ignoring cached response: no date") + return False + + now = time.time() + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + current_age = max(0, now - date) + logger.debug("Current age based on date: %i", current_age) + + # TODO: There is an assumption that the result will be a + # urllib3 response object. This may not be best since we + # could probably avoid instantiating or constructing the + # response until we know we need it. + resp_cc = self.parse_cache_control(headers) + + # determine freshness + freshness_lifetime = 0 + + # Check the max-age pragma in the cache control header + max_age = resp_cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) + + # If there isn't a max-age, check for an expires header + elif "expires" in headers: + expires = parsedate_tz(headers["expires"]) + if expires is not None: + expire_time = calendar.timegm(expires[:6]) - date + freshness_lifetime = max(0, expire_time) + logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) + + # Determine if we are setting freshness limit in the + # request. Note, this overrides what was in the response. + max_age = cc.get("max-age") + if max_age is not None: + freshness_lifetime = max_age + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + min_fresh = cc.get("min-fresh") + if min_fresh is not None: + # adjust our current age by our min fresh + current_age += min_fresh + logger.debug("Adjusted current age from min-fresh: %i", current_age) + + # Return entry if it is fresh enough + if freshness_lifetime > current_age: + logger.debug('The response is "fresh", returning cached response') + logger.debug("%i > %i", freshness_lifetime, current_age) + return resp + + # we're not fresh. If we don't have an Etag, clear it out + if "etag" not in headers: + logger.debug('The cached response is "stale" with no etag, purging') + self.cache.delete(cache_url) + + # return the original handler + return False + + def conditional_headers(self, request: PreparedRequest) -> dict[str, str]: + resp = self._load_from_cache(request) + new_headers = {} + + if resp: + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict(resp.headers) + + if "etag" in headers: + new_headers["If-None-Match"] = headers["ETag"] + + if "last-modified" in headers: + new_headers["If-Modified-Since"] = headers["Last-Modified"] + + return new_headers + + def _cache_set( + self, + cache_url: str, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + expires_time: int | None = None, + ) -> None: + """ + Store the data in the cache. + """ + if isinstance(self.cache, SeparateBodyBaseCache): + # We pass in the body separately; just put a placeholder empty + # string in the metadata. + self.cache.set( + cache_url, + self.serializer.dumps(request, response, b""), + expires=expires_time, + ) + # body is None can happen when, for example, we're only updating + # headers, as is the case in update_cached_response(). + if body is not None: + self.cache.set_body(cache_url, body) + else: + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + def cache_response( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + status_codes: Collection[int] | None = None, + ) -> None: + """ + Algorithm for caching requests. + + This assumes a requests Response object. + """ + # From httplib2: Don't cache 206's since we aren't going to + # handle byte range requests + cacheable_status_codes = status_codes or self.cacheable_status_codes + if response.status not in cacheable_status_codes: + logger.debug( + "Status code %s not in %s", response.status, cacheable_status_codes + ) + return + + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + else: + date = 0 + + # If we've been given a body, our response has a Content-Length, that + # Content-Length is valid then we can check to see if the body we've + # been given matches the expected size, and if it doesn't we'll just + # skip trying to cache it. + if ( + body is not None + and "content-length" in response_headers + and response_headers["content-length"].isdigit() + and int(response_headers["content-length"]) != len(body) + ): + return + + cc_req = self.parse_cache_control(request.headers) + cc = self.parse_cache_control(response_headers) + + assert request.url is not None + cache_url = self.cache_url(request.url) + logger.debug('Updating cache with response from "%s"', cache_url) + + # Delete it from the cache if we happen to have it stored there + no_store = False + if "no-store" in cc: + no_store = True + logger.debug('Response header has "no-store"') + if "no-store" in cc_req: + no_store = True + logger.debug('Request header has "no-store"') + if no_store and self.cache.get(cache_url): + logger.debug('Purging existing cache entry to honor "no-store"') + self.cache.delete(cache_url) + if no_store: + return + + # https://tools.ietf.org/html/rfc7234#section-4.1: + # A Vary header field-value of "*" always fails to match. + # Storing such a response leads to a deserialization warning + # during cache lookup and is not allowed to ever be served, + # so storing it can be avoided. + if "*" in response_headers.get("vary", ""): + logger.debug('Response header has "Vary: *"') + return + + # If we've been given an etag, then keep the response + if self.cache_etags and "etag" in response_headers: + expires_time = 0 + if response_headers.get("expires"): + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + + expires_time = max(expires_time, 14 * 86400) + + logger.debug(f"etag object cached for {expires_time} seconds") + logger.debug("Caching due to etag") + self._cache_set(cache_url, request, response, body, expires_time) + + # Add to the cache any permanent redirects. We do this before looking + # that the Date headers. + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + logger.debug("Caching permanent redirect") + self._cache_set(cache_url, request, response, b"") + + # Add to the cache if the response headers demand it. If there + # is no date header then we can't do anything about expiring + # the cache. + elif "date" in response_headers: + time_tuple = parsedate_tz(response_headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + # cache when there is a max-age > 0 + max_age = cc.get("max-age") + if max_age is not None and max_age > 0: + logger.debug("Caching b/c date exists and max-age > 0") + expires_time = max_age + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires[:6]) - date + else: + expires_time = None + + logger.debug( + "Caching b/c of expires header. expires in {} seconds".format( + expires_time + ) + ) + self._cache_set( + cache_url, + request, + response, + body, + expires_time, + ) + + def update_cached_response( + self, request: PreparedRequest, response: HTTPResponse + ) -> HTTPResponse: + """On a 304 we will get a new set of headers that we want to + update our cached value with, assuming we have one. + + This should only ever be called when we've sent an ETag and + gotten a 304 as the response. + """ + assert request.url is not None + cache_url = self.cache_url(request.url) + cached_response = self._load_from_cache(request) + + if not cached_response: + # we didn't have a cached response + return response + + # Lets update our headers with the headers from the new request: + # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 + # + # The server isn't supposed to send headers that would make + # the cached body invalid. But... just in case, we'll be sure + # to strip out ones we know that might be problmatic due to + # typical assumptions. + excluded_headers = ["content-length"] + + cached_response.headers.update( + { + k: v + for k, v in response.headers.items() + if k.lower() not in excluded_headers + } + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self._cache_set(cache_url, request, cached_response) + + return cached_response diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 00000000..25143902 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,119 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import mmap +from tempfile import NamedTemporaryFile +from typing import TYPE_CHECKING, Any, Callable + +if TYPE_CHECKING: + from http.client import HTTPResponse + + +class CallbackFileWrapper: + """ + Small wrapper around a fp object which will tee everything read into a + buffer, and when that file is closed it will execute a callback with the + contents of that buffer. + + All attributes are proxied to the underlying file object. + + This class uses members with a double underscore (__) leading prefix so as + not to accidentally shadow an attribute. + + The data is stored in a temporary file until it is all available. As long + as the temporary files directory is disk-based (sometimes it's a + memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory + pressure is high. For small files the disk usually won't be used at all, + it'll all be in the filesystem memory cache, so there should be no + performance impact. + """ + + def __init__( + self, fp: HTTPResponse, callback: Callable[[bytes], None] | None + ) -> None: + self.__buf = NamedTemporaryFile("rb+", delete=True) + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name: str) -> Any: + # The vaguaries of garbage collection means that self.__fp is + # not always set. By using __getattribute__ and the private + # name[0] allows looking up the attribute value and raising an + # AttributeError when it doesn't exist. This stop thigns from + # infinitely recursing calls to getattr in the case where + # self.__fp hasn't been set. + # + # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers + fp = self.__getattribute__("_CallbackFileWrapper__fp") + return getattr(fp, name) + + def __is_fp_closed(self) -> bool: + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + closed: bool = self.__fp.closed + return closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self) -> None: + if self.__callback: + if self.__buf.tell() == 0: + # Empty file: + result = b"" + else: + # Return the data without actually loading it into memory, + # relying on Python's buffer API and mmap(). mmap() just gives + # a view directly into the filesystem's memory cache, so it + # doesn't result in duplicate memory use. + self.__buf.seek(0, 0) + result = memoryview( + mmap.mmap(self.__buf.fileno(), 0, access=mmap.ACCESS_READ) + ) + self.__callback(result) + + # We assign this to None here, because otherwise we can get into + # really tricky problems where the CPython interpreter dead locks + # because the callback is holding a reference to something which + # has a __del__ method. Setting this to None breaks the cycle + # and allows the garbage collector to do it's thing normally. + self.__callback = None + + # Closing the temporary file releases memory and frees disk space. + # Important when caching big files. + self.__buf.close() + + def read(self, amt: int | None = None) -> bytes: + data: bytes = self.__fp.read(amt) + if data: + # We may be dealing with b'', a sign that things are over: + # it's passed e.g. after we've already closed self.__buf. + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt: int) -> bytes: + data: bytes = self.__fp._safe_read(amt) # type: ignore[attr-defined] + if amt == 2 and data == b"\r\n": + # urllib executes this read to toss the CRLF at the end + # of the chunk. + return data + + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 00000000..f6e5634e --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,154 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import calendar +import time +from datetime import datetime, timedelta, timezone +from email.utils import formatdate, parsedate, parsedate_tz +from typing import TYPE_CHECKING, Any, Mapping + +if TYPE_CHECKING: + from pip._vendor.urllib3 import HTTPResponse + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta: timedelta, date: datetime | None = None) -> datetime: + date = date or datetime.now(timezone.utc) + return date + delta + + +def datetime_to_header(dt: datetime) -> str: + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic: + def warning(self, response: HTTPResponse) -> str | None: + """ + Return a valid 1xx warning header value describing the cache + adjustments. + + The response is provided too allow warnings like 113 + http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need + to explicitly say response is over 24 hours old. + """ + return '110 - "Response is Stale"' + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + """Update the response headers with any new headers. + + NOTE: This SHOULD always include some Warning header to + signify that the response was cached by the client, not + by way of the provided headers. + """ + return {} + + def apply(self, response: HTTPResponse) -> HTTPResponse: + updated_headers = self.update_headers(response) + + if updated_headers: + response.headers.update(updated_headers) + warning_header_value = self.warning(response) + if warning_header_value is not None: + response.headers.update({"Warning": warning_header_value}) + + return response + + +class OneDayCache(BaseHeuristic): + """ + Cache the response by providing an expires 1 day in the + future. + """ + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6], tzinfo=timezone.utc)) # type: ignore[index,misc] + headers["expires"] = datetime_to_header(expires) + headers["cache-control"] = "public" + return headers + + +class ExpiresAfter(BaseHeuristic): + """ + Cache **all** requests for a defined time period. + """ + + def __init__(self, **kw: Any) -> None: + self.delta = timedelta(**kw) + + def update_headers(self, response: HTTPResponse) -> dict[str, str]: + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response: HTTPResponse) -> str | None: + tmpl = "110 - Automatically cached for %s. Response might be stale" + return tmpl % self.delta + + +class LastModified(BaseHeuristic): + """ + If there is no Expires header already, fall back on Last-Modified + using the heuristic from + http://tools.ietf.org/html/rfc7234#section-4.2.2 + to calculate a reasonable value. + + Firefox also does something like this per + https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ + http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 + Unlike mozilla we limit this to 24-hr. + """ + + cacheable_by_default_statuses = { + 200, + 203, + 204, + 206, + 300, + 301, + 404, + 405, + 410, + 414, + 501, + } + + def update_headers(self, resp: HTTPResponse) -> dict[str, str]: + headers: Mapping[str, str] = resp.headers + + if "expires" in headers: + return {} + + if "cache-control" in headers and headers["cache-control"] != "public": + return {} + + if resp.status not in self.cacheable_by_default_statuses: + return {} + + if "date" not in headers or "last-modified" not in headers: + return {} + + time_tuple = parsedate_tz(headers["date"]) + assert time_tuple is not None + date = calendar.timegm(time_tuple[:6]) + last_modified = parsedate(headers["last-modified"]) + if last_modified is None: + return {} + + now = time.time() + current_age = max(0, now - date) + delta = date - calendar.timegm(last_modified) + freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) + if freshness_lifetime <= current_age: + return {} + + expires = date + freshness_lifetime + return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} + + def warning(self, resp: HTTPResponse) -> str | None: + return None diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 00000000..a49487a1 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,146 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +import io +from typing import IO, TYPE_CHECKING, Any, Mapping, cast + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3 import HTTPResponse + +if TYPE_CHECKING: + from pip._vendor.requests import PreparedRequest + + +class Serializer: + serde_version = "4" + + def dumps( + self, + request: PreparedRequest, + response: HTTPResponse, + body: bytes | None = None, + ) -> bytes: + response_headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + response.headers + ) + + if body is None: + # When a body isn't passed in, we'll read the response. We + # also update the response with a new file handler to be + # sure it acts as though it was never read. + body = response.read(decode_content=False) + response._fp = io.BytesIO(body) # type: ignore[assignment] + response.length_remaining = len(body) + + data = { + "response": { + "body": body, # Empty bytestring if body is stored separately + "headers": {str(k): str(v) for k, v in response.headers.items()}, + "status": response.status, + "version": response.version, + "reason": str(response.reason), + "decode_content": response.decode_content, + } + } + + # Construct our vary headers + data["vary"] = {} + if "vary" in response_headers: + varied_headers = response_headers["vary"].split(",") + for header in varied_headers: + header = str(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = str(header_value) + data["vary"][header] = header_value + + return b",".join([f"cc={self.serde_version}".encode(), self.serialize(data)]) + + def serialize(self, data: dict[str, Any]) -> bytes: + return cast(bytes, msgpack.dumps(data, use_bin_type=True)) + + def loads( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + # Short circuit if we've been given an empty set of data + if not data: + return None + + # Previous versions of this library supported other serialization + # formats, but these have all been removed. + if not data.startswith(f"cc={self.serde_version},".encode()): + return None + + data = data[5:] + return self._loads_v4(request, data, body_file) + + def prepare_response( + self, + request: PreparedRequest, + cached: Mapping[str, Any], + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + """Verify our vary headers match and construct a real urllib3 + HTTPResponse object. + """ + # Special case the '*' Vary value as it means we cannot actually + # determine if the cached response is suitable for this request. + # This case is also handled in the controller code when creating + # a cache entry, but is left here for backwards compatibility. + if "*" in cached.get("vary", {}): + return None + + # Ensure that the Vary headers for the cached response match our + # request + for header, value in cached.get("vary", {}).items(): + if request.headers.get(header, None) != value: + return None + + body_raw = cached["response"].pop("body") + + headers: CaseInsensitiveDict[str] = CaseInsensitiveDict( + data=cached["response"]["headers"] + ) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body: IO[bytes] + if body_file is None: + body = io.BytesIO(body_raw) + else: + body = body_file + except TypeError: + # This can happen if cachecontrol serialized to v1 format (pickle) + # using Python 2. A Python 2 str(byte string) will be unpickled as + # a Python 3 str (unicode string), which will cause the above to + # fail with: + # + # TypeError: 'str' does not support the buffer interface + body = io.BytesIO(body_raw.encode("utf8")) + + # Discard any `strict` parameter serialized by older version of cachecontrol. + cached["response"].pop("strict", None) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v4( + self, + request: PreparedRequest, + data: bytes, + body_file: IO[bytes] | None = None, + ) -> HTTPResponse | None: + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return None + + return self.prepare_response(request, cached, body_file) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 00000000..f618bc36 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,43 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 +from __future__ import annotations + +from typing import TYPE_CHECKING, Collection + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache + +if TYPE_CHECKING: + from pip._vendor import requests + + from pip._vendor.cachecontrol.cache import BaseCache + from pip._vendor.cachecontrol.controller import CacheController + from pip._vendor.cachecontrol.heuristics import BaseHeuristic + from pip._vendor.cachecontrol.serialize import Serializer + + +def CacheControl( + sess: requests.Session, + cache: BaseCache | None = None, + cache_etags: bool = True, + serializer: Serializer | None = None, + heuristic: BaseHeuristic | None = None, + controller_class: type[CacheController] | None = None, + adapter_class: type[CacheControlAdapter] | None = None, + cacheable_methods: Collection[str] | None = None, +) -> requests.Session: + cache = DictCache() if cache is None else cache + adapter_class = adapter_class or CacheControlAdapter + adapter = adapter_class( + cache, + cache_etags=cache_etags, + serializer=serializer, + heuristic=heuristic, + controller_class=controller_class, + cacheable_methods=cacheable_methods, + ) + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + return sess diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 00000000..d321f1bc --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,4 @@ +from .core import contents, where + +__all__ = ["contents", "where"] +__version__ = "2024.07.04" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 00000000..00376349 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from pip._vendor.certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..413a900446221b8884d74caa797d565683453733 GIT binary patch literal 367 zcmYjMu};G<5Vez(mPTbmNG!nC42?^v#DZAa5OW4B*Etfmjvd*iRhi%mVB;J378XX7 z1tcamq;5>O5=gw^?%myc(!1wguZukTeO6rh{;?kZ5d4zWz9)|;M>&?L!WpiDEWjua z@~{Z9Fpsim*-AD(v6m%5)8Se==Ub_<)%9tj>hTmI3149lU5UP{r}vw zDP>Yp+QgL3!C0XcrB7((t?2unl)3^k)w~2%K`8|<$%WBVm^mPJ;U=t911<%zV7!}H z!wIt%oFxVGPRAw^&Om`-P8$MhPNbNSdg)57j?%*svBJTiW_-p9u%s3>@iA2H#T<+i zSAtL~lyH=$^|I-lR64(waB5^Ac%>W4BBfe2!glLqvWzocAwczcW0NGNlJ=`B8W;4 zdec8aiT{ZgLo2D{rQ$)n3B7sI*)-c+9GH3EeBXO--Z!6WwJOr9)uMyHI{qjw<+7LH z{6vGdC`2JnP_Kwaf>Wbsq-M{=$UuOGZdtU7(9~a!Awc<;}*YpIQ-bR@@#TObz6TH;S|7mUKSCP2WHk2D=OahZa+4~W2I50ZF zLABGlq^m+^9DK<~(8j7l0~u$mT~#jSgPd{!s-DMr*B=85Gu{n=%lJvm3vav_TCF|c zgHfuV*e$ZTsw}Fwx(>2(U3p;y%eIGRoLy z_wGF+VhNp`277b>f@o7@X^JdO5#LW~%zVF_Pn5frX5lD-`+P&sSA4v9tdHL&#`qgr z|B1+%*L>NSd(D~GJoauJR!&i6j_Na1fAjF&o%c^aqxuQjI(2Gur!jLH$IkUb>&$ds dY(LxnYI(0(N4LLN*S>3X^XS&|9e!0e{|C52vikr4 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8274556a34c4a8d3daf2569256be908c6318492 GIT binary patch literal 3260 zcmbVOL2Mhx6`dt_$t6W{C6S_JE42vOu0`7-Ye#Kuv~}SasSHGw1Y0p`A`P+L9f?bm zTy|z`S*}v(5EM3gu!|FeIO$D;&fW=3E8?Fb?N!au$Yc~19d5+M(XNeaZ2%s@pdNUjYO z0%qEjKb8wYDwS1#+O9Q~n;#Iu4#DV9MX81gp=!7gmWUb9RcH}2NTaI(GYl&XdAA?CQL(J^zFrp*y}HVO^T5;c<_D+SFvOKM;rW4(Q3C+^ay zL7A{ttz3O0`kTH)qbntgXR5Y&t3or3id(G4GonN@R*eh2QqhHF*D@8`=sEUk#?W!4 zT%A@kHp^IoXAHY0Xie~3^c9|B(FyeyGW;{4RiFi-bD?8v{o>O+4vOH%-Ugw+&o?p{prqFLx=sc}arVE?pY3+8tV%^Bs zH$=&05k7QtD{dWka1FcZh1@dZ#@*(k2_~r2DEp;lz+(>s|u|;q-zdC$R-T_MB`BIY3#4-pKD7E zb*UF-$x+^~!4-0M$mY3aNXiB4CUwGI3B@Gj_ALepjvI19kc~FuMn7`U8G`0=;0`#0 zTi#`WAIr_aXOho^?~{+@P5Gdl@JAZ~@0#(rBf+7Mk~4%$>j8;eCldTN$erMIvMyx< zi|jk_{%p{Z?K-WwQF3HVk*vb9@PwU2g{NSrKsmCh3!Nk085Fmw^sq!gb!hwqCQG%W9gO^emw zmc@G;FEc2`GFIxW`t6I02fRBuvp9p;SCUfsEx1jVY zhzm>x-;RK?W2oHhJOiGih>besP6!N?a)uSziT>REuv>vAPI$TZ+2W{I{G8i+Oh^53 z?>q1Uy9kppB0K`R6O<(Bn}8z8-58OEz9jLkEJ>$2Dv`tOV6quZZm&NJ9{E~6`*JkB z^&aqdYoQ~LD{pPT-6dc;XCewTrk;*m`C%5LGYpLz4JF|_k6HRSq>vCt5 z9LhXTANeK{R;HehOmu=^UydH`C}3d=$#f@-o=Qei9URk%l4!g;gkCzR%;MI;bfSZM HaD)CIpqi7# literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem new file mode 100644 index 00000000..a6581589 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem @@ -0,0 +1,4798 @@ + +# Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Label: "GlobalSign Root CA" +# Serial: 4835703278459707669005204 +# MD5 Fingerprint: 3e:45:52:15:09:51:92:e1:b7:5d:37:9f:b1:87:29:8a +# SHA1 Fingerprint: b1:bc:96:8b:d4:f4:9d:62:2a:a8:9a:81:f2:15:01:52:a4:1d:82:9c +# SHA256 Fingerprint: eb:d4:10:40:e4:bb:3e:c7:42:c9:e3:81:d3:1e:f2:a4:1a:48:b6:68:5c:96:e7:ce:f3:c1:df:6c:d4:33:1c:99 +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG +A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv +b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw +MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i +YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT +aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ +jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp +xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp +1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG +snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ +U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 +9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B +AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz +yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE +38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP +AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad +DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME +HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Subject: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Label: "Entrust.net Premium 2048 Secure Server CA" +# Serial: 946069240 +# MD5 Fingerprint: ee:29:31:bc:32:7e:9a:e6:e8:b5:f7:51:b4:34:71:90 +# SHA1 Fingerprint: 50:30:06:09:1d:97:d4:f5:ae:39:f7:cb:e7:92:7d:7d:65:2d:34:31 +# SHA256 Fingerprint: 6d:c4:71:72:e0:1c:bc:b0:bf:62:58:0d:89:5f:e2:b8:ac:9a:d4:f8:73:80:1e:0c:10:b9:c8:37:d2:1e:b1:77 +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML +RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp +bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 +IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 +MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 +LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp +YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG +A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq +K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe +sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX +MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT +XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ +HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH +4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub +j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo +U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b +u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ +bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er +fF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- + +# Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Label: "Baltimore CyberTrust Root" +# Serial: 33554617 +# MD5 Fingerprint: ac:b6:94:a5:9c:17:e0:d7:91:52:9b:b1:97:06:a6:e4 +# SHA1 Fingerprint: d4:de:20:d0:5e:66:fc:53:fe:1a:50:88:2c:78:db:28:52:ca:e4:74 +# SHA256 Fingerprint: 16:af:57:a9:f6:76:b0:ab:12:60:95:aa:5e:ba:de:f2:2a:b3:11:19:d6:44:ac:95:cd:4b:93:db:f3:f2:6a:eb +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ +RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD +VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX +DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y +ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy +VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr +mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr +IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK +mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu +XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy +dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye +jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 +BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 +DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 +9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx +jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 +Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz +ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS +R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Label: "Entrust Root Certification Authority" +# Serial: 1164660820 +# MD5 Fingerprint: d6:a5:c3:ed:5d:dd:3e:00:c1:3d:87:92:1f:1d:3f:e4 +# SHA1 Fingerprint: b3:1e:b1:b7:40:e3:6c:84:02:da:dc:37:d4:4d:f5:d4:67:49:52:f9 +# SHA256 Fingerprint: 73:c1:76:43:4f:1b:c6:d5:ad:f4:5b:0e:76:e7:27:28:7c:8d:e5:76:16:c1:e6:e6:14:1a:2b:2c:bc:7d:8e:4c +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 +Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW +KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw +NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw +NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy +ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV +BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo +Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 +4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 +KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI +rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi +94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB +sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi +gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo +kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE +vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t +O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua +AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP +9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ +eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m +0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +# Issuer: CN=AAA Certificate Services O=Comodo CA Limited +# Subject: CN=AAA Certificate Services O=Comodo CA Limited +# Label: "Comodo AAA Services root" +# Serial: 1 +# MD5 Fingerprint: 49:79:04:b0:eb:87:19:ac:47:b0:bc:11:51:9b:74:d0 +# SHA1 Fingerprint: d1:eb:23:a4:6d:17:d6:8f:d9:25:64:c2:f1:f1:60:17:64:d8:e3:49 +# SHA256 Fingerprint: d7:a7:a0:fb:5d:7e:27:31:d7:71:e9:48:4e:bc:de:f7:1d:5f:0c:3e:0a:29:48:78:2b:c8:3e:e0:ea:69:9e:f4 +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb +MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow +GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj +YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM +GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua +BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe +3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 +YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR +rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm +ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU +oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v +QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t +b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF +AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q +GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 +G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi +l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 +smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2" +# Serial: 1289 +# MD5 Fingerprint: 5e:39:7b:dd:f8:ba:ec:82:e9:ac:62:ba:0c:54:00:2b +# SHA1 Fingerprint: ca:3a:fb:cf:12:40:36:4b:44:b2:16:20:88:80:48:39:19:93:7c:f7 +# SHA256 Fingerprint: 85:a0:dd:7d:d7:20:ad:b7:ff:05:f8:3d:54:2b:20:9d:c7:ff:45:28:f7:d6:77:b1:83:89:fe:a5:e5:c4:9e:86 +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa +GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg +Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J +WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB +rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp ++ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 +ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i +Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz +PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og +/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH +oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI +yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud +EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 +A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL +MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f +BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn +g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl +fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K +WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha +B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc +hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR +TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD +mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z +ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y +4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza +8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3" +# Serial: 1478 +# MD5 Fingerprint: 31:85:3c:62:94:97:63:b9:aa:fd:89:4e:af:6f:e0:cf +# SHA1 Fingerprint: 1f:49:14:f7:d8:74:95:1d:dd:ae:02:c0:be:fd:3a:2d:82:75:51:85 +# SHA256 Fingerprint: 18:f1:fc:7f:20:5d:f8:ad:dd:eb:7f:e0:07:dd:57:e3:af:37:5a:9c:4d:8d:73:54:6b:f4:f1:fe:d1:e1:8d:35 +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM +V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB +4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr +H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd +8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv +vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT +mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe +btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc +T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt +WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ +c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A +4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD +VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG +CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 +aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu +dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw +czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G +A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg +Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 +7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem +d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd ++LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B +4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN +t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x +DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 +k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s +zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j +Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT +mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK +4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +# Issuer: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Subject: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Label: "XRamp Global CA Root" +# Serial: 107108908803651509692980124233745014957 +# MD5 Fingerprint: a1:0b:44:b3:ca:10:d8:00:6e:9d:0f:d8:0f:92:0a:d1 +# SHA1 Fingerprint: b8:01:86:d1:eb:9c:86:a5:41:04:cf:30:54:f3:4c:52:b7:e5:58:c6 +# SHA256 Fingerprint: ce:cd:dc:90:50:99:d8:da:df:c5:b1:d2:09:b7:37:cb:e2:c1:8c:fb:2c:10:c0:ff:0b:cf:0d:32:86:fc:1a:a2 +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB +gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk +MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY +UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx +NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 +dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy +dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 +38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP +KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q +DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 +qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa +JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi +PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P +BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs +jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 +eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR +vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa +IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy +i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ +O+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- + +# Issuer: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Subject: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Label: "Go Daddy Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 91:de:06:25:ab:da:fd:32:17:0c:bb:25:17:2a:84:67 +# SHA1 Fingerprint: 27:96:ba:e6:3f:18:01:e2:77:26:1b:a0:d7:77:70:02:8f:20:ee:e4 +# SHA256 Fingerprint: c3:84:6b:f2:4b:9e:93:ca:64:27:4c:0e:c6:7c:1e:cc:5e:02:4f:fc:ac:d2:d7:40:19:35:0e:81:fe:54:6a:e4 +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh +MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE +YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 +MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo +ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg +MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN +ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA +PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w +wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi +EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY +avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ +YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE +sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h +/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 +IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD +ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy +OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P +TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER +dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf +ReYNnyicsbkqWletNw+vHX/bvZ8= +-----END CERTIFICATE----- + +# Issuer: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Subject: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Label: "Starfield Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 32:4a:4b:bb:c8:63:69:9b:be:74:9a:c6:dd:1d:46:24 +# SHA1 Fingerprint: ad:7e:1c:28:b0:64:ef:8f:60:03:40:20:14:c3:d0:e3:37:0e:b5:8a +# SHA256 Fingerprint: 14:65:fa:20:53:97:b8:76:fa:a6:f0:a9:95:8e:55:90:e4:0f:cc:7f:aa:4f:b7:c2:c8:67:75:21:fb:5f:b6:58 +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl +MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp +U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw +NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE +ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp +ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 +DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf +8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN ++lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 +X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa +K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA +1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G +A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR +zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 +YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD +bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w +DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 +L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D +eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp +VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY +WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root CA" +# Serial: 17154717934120587862167794914071425081 +# MD5 Fingerprint: 87:ce:0b:7b:2a:0e:49:00:e1:58:71:9b:37:a8:93:72 +# SHA1 Fingerprint: 05:63:b8:63:0d:62:d7:5a:bb:c8:ab:1e:4b:df:b5:a8:99:b2:4d:43 +# SHA256 Fingerprint: 3e:90:99:b5:01:5e:8f:48:6c:00:bc:ea:9d:11:1e:e7:21:fa:ba:35:5a:89:bc:f1:df:69:56:1e:3d:c6:32:5c +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c +JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP +mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ +wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 +VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ +AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB +AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun +pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC +dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf +fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm +NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx +H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root CA" +# Serial: 10944719598952040374951832963794454346 +# MD5 Fingerprint: 79:e4:a9:84:0d:7d:3a:96:d7:c0:4f:e2:43:4c:89:2e +# SHA1 Fingerprint: a8:98:5d:3a:65:e5:e5:c4:b2:d7:d6:6d:40:c6:dd:2f:b1:9c:54:36 +# SHA256 Fingerprint: 43:48:a0:e9:44:4c:78:cb:26:5e:05:8d:5e:89:44:b4:d8:4f:96:62:bd:26:db:25:7f:89:34:a4:43:c7:01:61 +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD +QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB +CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 +nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt +43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P +T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 +gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR +TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw +DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr +hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg +06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF +PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls +YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert High Assurance EV Root CA" +# Serial: 3553400076410547919724730734378100087 +# MD5 Fingerprint: d4:74:de:57:5c:39:b2:d3:9c:85:83:c5:c0:65:49:8a +# SHA1 Fingerprint: 5f:b7:ee:06:33:e2:59:db:ad:0c:4c:9a:e6:d3:8f:1a:61:c7:dc:25 +# SHA256 Fingerprint: 74:31:e5:f4:c3:c1:ce:46:90:77:4f:0b:61:e0:54:40:88:3b:a9:a0:1e:d0:0b:a6:ab:d7:80:6e:d3:b1:18:cf +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j +ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 +LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug +RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm ++9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW +PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM +xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB +Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 +hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg +EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA +FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec +nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z +eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF +hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 +Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep ++OkuE6N36B9K +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Label: "SwissSign Gold CA - G2" +# Serial: 13492815561806991280 +# MD5 Fingerprint: 24:77:d9:a8:91:d1:3b:fa:88:2d:c2:ff:f8:cd:33:93 +# SHA1 Fingerprint: d8:c5:38:8a:b7:30:1b:1b:6e:d4:7a:e6:45:25:3a:6f:9f:1a:27:61 +# SHA256 Fingerprint: 62:dd:0b:e9:b9:f5:0a:16:3e:a0:f8:e7:5c:05:3b:1e:ca:57:ea:55:c8:68:8f:64:7c:68:81:f2:c8:35:7b:95 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Label: "SwissSign Silver CA - G2" +# Serial: 5700383053117599563 +# MD5 Fingerprint: e0:06:a1:c9:7d:cf:c9:fc:0d:c0:56:75:96:d8:62:13 +# SHA1 Fingerprint: 9b:aa:e5:9f:56:ee:21:cb:43:5a:be:25:93:df:a7:f0:40:d1:1d:cb +# SHA256 Fingerprint: be:6c:4d:a2:bb:b9:ba:59:b6:f3:93:97:68:37:42:46:c3:c0:05:99:3f:a9:8f:02:0d:1d:ed:be:d4:8a:81:d5 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SecureTrust CA O=SecureTrust Corporation +# Subject: CN=SecureTrust CA O=SecureTrust Corporation +# Label: "SecureTrust CA" +# Serial: 17199774589125277788362757014266862032 +# MD5 Fingerprint: dc:32:c3:a7:6d:25:57:c7:68:09:9d:ea:2d:a9:a2:d1 +# SHA1 Fingerprint: 87:82:c6:c3:04:35:3b:cf:d2:96:92:d2:59:3e:7d:44:d9:34:ff:11 +# SHA256 Fingerprint: f1:c1:b5:0a:e5:a2:0d:d8:03:0e:c9:f6:bc:24:82:3d:d3:67:b5:25:57:59:b4:e7:1b:61:fc:e9:f7:37:5d:73 +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz +MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv +cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz +Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO +0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao +wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj +7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS +8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT +BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg +JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 +6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ +3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm +D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS +CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +# Issuer: CN=Secure Global CA O=SecureTrust Corporation +# Subject: CN=Secure Global CA O=SecureTrust Corporation +# Label: "Secure Global CA" +# Serial: 9751836167731051554232119481456978597 +# MD5 Fingerprint: cf:f4:27:0d:d4:ed:dc:65:16:49:6d:3d:da:bf:6e:de +# SHA1 Fingerprint: 3a:44:73:5a:e5:81:90:1f:24:86:61:46:1e:3b:9c:c4:5f:f5:3a:1b +# SHA256 Fingerprint: 42:00:f5:04:3a:c8:59:0e:bb:52:7d:20:9e:d1:50:30:29:fb:cb:d4:1c:a1:b5:06:ec:27:f1:5a:de:7d:ac:69 +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx +MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg +Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ +iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa +/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ +jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI +HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 +sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w +gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw +KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG +AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L +URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO +H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm +I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY +iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +# Issuer: CN=COMODO Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO Certification Authority O=COMODO CA Limited +# Label: "COMODO Certification Authority" +# Serial: 104350513648249232941998508985834464573 +# MD5 Fingerprint: 5c:48:dc:f7:42:72:ec:56:94:6d:1c:cc:71:35:80:75 +# SHA1 Fingerprint: 66:31:bf:9e:f7:4f:9e:b6:c9:d5:a6:0c:ba:6a:be:d1:f7:bd:ef:7b +# SHA256 Fingerprint: 0c:2c:d6:3d:f7:80:6f:a3:99:ed:e8:09:11:6b:57:5b:f8:79:89:f0:65:18:f9:80:8c:86:05:03:17:8b:af:66 +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB +gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV +BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw +MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl +YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P +RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 +UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI +2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 +Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp ++2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ +DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O +nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW +/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g +PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u +QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY +SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv +IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 +zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd +BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB +ZQ== +-----END CERTIFICATE----- + +# Issuer: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Label: "COMODO ECC Certification Authority" +# Serial: 41578283867086692638256921589707938090 +# MD5 Fingerprint: 7c:62:ff:74:9d:31:53:5e:68:4a:d5:78:aa:1e:bf:23 +# SHA1 Fingerprint: 9f:74:4e:9f:2b:4d:ba:ec:0f:31:2c:50:b6:56:3b:8e:2d:93:c3:11 +# SHA256 Fingerprint: 17:93:92:7a:06:14:54:97:89:ad:ce:2f:8f:34:f7:f0:b6:6d:0f:3a:e3:a3:b8:4d:21:ec:15:db:ba:4f:ad:c7 +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT +IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw +MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy +ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N +T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR +FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J +cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW +BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm +fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv +GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +# Issuer: CN=Certigna O=Dhimyotis +# Subject: CN=Certigna O=Dhimyotis +# Label: "Certigna" +# Serial: 18364802974209362175 +# MD5 Fingerprint: ab:57:a6:5b:7d:42:82:19:b5:d8:58:26:28:5e:fd:ff +# SHA1 Fingerprint: b1:2e:13:63:45:86:a4:6f:1a:b2:60:68:37:58:2d:c4:ac:fd:94:97 +# SHA256 Fingerprint: e3:b6:a2:db:2e:d7:ce:48:84:2f:7a:c5:32:41:c7:b7:1d:54:14:4b:fb:40:c1:1f:3f:1d:0b:42:f5:ee:a1:2d +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +# Issuer: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Subject: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Label: "ePKI Root Certification Authority" +# Serial: 28956088682735189655030529057352760477 +# MD5 Fingerprint: 1b:2e:00:ca:26:06:90:3d:ad:fe:6f:15:68:d3:6b:b3 +# SHA1 Fingerprint: 67:65:0d:f1:7e:8e:7e:5b:82:40:a4:f4:56:4b:cf:e2:3d:69:c6:f0 +# SHA256 Fingerprint: c0:a6:f4:dc:63:a2:4b:fd:cf:54:ef:2a:6a:08:2a:0a:72:de:35:80:3e:2f:f5:ff:52:7a:e5:d8:72:06:df:d5 +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw +IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL +SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH +SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh +ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X +DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 +TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ +fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA +sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU +WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS +nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH +dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip +NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC +AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF +MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB +uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl +PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP +JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ +gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 +j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 +5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB +o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS +/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z +Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE +W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D +hNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +# Issuer: O=certSIGN OU=certSIGN ROOT CA +# Subject: O=certSIGN OU=certSIGN ROOT CA +# Label: "certSIGN ROOT CA" +# Serial: 35210227249154 +# MD5 Fingerprint: 18:98:c0:d6:e9:3a:fc:f9:b0:f5:0c:f7:4b:01:44:17 +# SHA1 Fingerprint: fa:b7:ee:36:97:26:62:fb:2d:b0:2a:f6:bf:03:fd:e8:7c:4b:2f:9b +# SHA256 Fingerprint: ea:a9:62:c4:fa:4a:6b:af:eb:e4:15:19:6d:35:1c:cd:88:8d:4f:53:f3:fa:8a:e6:d7:c4:66:a9:4e:60:42:bb +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT +AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD +QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP +MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do +0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ +UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d +RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ +OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv +JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C +AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O +BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ +LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY +MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ +44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I +Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw +i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN +9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +# Issuer: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Subject: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Label: "NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny" +# Serial: 80544274841616 +# MD5 Fingerprint: c5:a1:b7:ff:73:dd:d6:d7:34:32:18:df:fc:3c:ad:88 +# SHA1 Fingerprint: 06:08:3f:59:3f:15:a1:04:a0:69:a4:6b:a9:03:d0:06:b7:97:09:91 +# SHA256 Fingerprint: 6c:61:da:c3:a2:de:f0:31:50:6b:e0:36:d2:a6:fe:40:19:94:fb:d1:3d:f9:c8:d4:66:59:92:74:c4:46:ec:98 +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG +EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 +MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl +cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR +dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB +pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM +b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm +aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz +IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT +lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz +AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 +VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG +ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 +BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG +AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M +U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh +bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C ++C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F +uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 +XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Subject: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Label: "SecureSign RootCA11" +# Serial: 1 +# MD5 Fingerprint: b7:52:74:e2:92:b4:80:93:f2:75:e4:cc:d7:f2:ea:26 +# SHA1 Fingerprint: 3b:c4:9f:48:f8:f3:73:a0:9c:1e:bd:f8:5b:b1:c3:65:c7:d8:11:b3 +# SHA256 Fingerprint: bf:0f:ee:fb:9e:3a:58:1a:d5:f9:e9:db:75:89:98:57:43:d2:61:08:5c:4d:31:4f:6f:5d:72:59:aa:42:16:12 +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr +MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG +A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 +MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp +Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD +QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz +i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 +h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV +MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 +UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni +8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC +h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD +VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB +AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm +KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ +X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr +QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 +pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN +QSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- + +# Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Label: "Microsec e-Szigno Root CA 2009" +# Serial: 14014712776195784473 +# MD5 Fingerprint: f8:49:f4:03:bc:44:2d:83:be:48:69:7d:29:64:fc:b1 +# SHA1 Fingerprint: 89:df:74:fe:5c:f4:0f:4a:80:f9:e3:37:7d:54:da:91:e1:01:31:8e +# SHA256 Fingerprint: 3c:5f:81:fe:a5:fa:b8:2c:64:bf:a2:ea:ec:af:cd:e8:e0:77:fc:86:20:a7:ca:e5:37:16:3d:f3:6e:db:f3:78 +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD +VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 +ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G +CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y +OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx +FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp +Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP +kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc +cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U +fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 +N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC +xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 ++rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM +Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG +SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h +mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk +ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c +2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t +HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Label: "GlobalSign Root CA - R3" +# Serial: 4835703278459759426209954 +# MD5 Fingerprint: c5:df:b8:49:ca:05:13:55:ee:2d:ba:1a:c3:3e:b0:28 +# SHA1 Fingerprint: d6:9b:56:11:48:f0:1c:77:c5:45:78:c1:09:26:df:5b:85:69:76:ad +# SHA256 Fingerprint: cb:b5:22:d7:b7:f1:27:ad:6a:01:13:86:5b:df:1c:d4:10:2e:7d:07:59:af:63:5a:7c:f4:72:0d:c9:63:c5:3b +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 +MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 +RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT +gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm +KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd +QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ +XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o +LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU +RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp +jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK +6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX +mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs +Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH +WD9f +-----END CERTIFICATE----- + +# Issuer: CN=Izenpe.com O=IZENPE S.A. +# Subject: CN=Izenpe.com O=IZENPE S.A. +# Label: "Izenpe.com" +# Serial: 917563065490389241595536686991402621 +# MD5 Fingerprint: a6:b0:cd:85:80:da:5c:50:34:a3:39:90:2f:55:67:73 +# SHA1 Fingerprint: 2f:78:3d:25:52:18:a7:4a:65:39:71:b5:2c:a2:9c:45:15:6f:e9:19 +# SHA256 Fingerprint: 25:30:cc:8e:98:32:15:02:ba:d9:6f:9b:1f:ba:1b:09:9e:2d:29:9e:0f:45:48:bb:91:4f:36:3b:c0:d4:53:1f +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Subject: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Label: "Go Daddy Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 80:3a:bc:22:c1:e6:fb:8d:9b:3b:27:4a:32:1b:9a:01 +# SHA1 Fingerprint: 47:be:ab:c9:22:ea:e8:0e:78:78:34:62:a7:9f:45:c2:54:fd:e6:8b +# SHA256 Fingerprint: 45:14:0b:32:47:eb:9c:c8:c5:b4:f0:d7:b5:30:91:f7:32:92:08:9e:6e:5a:63:e2:74:9d:d3:ac:a9:19:8e:da +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT +EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp +ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz +NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH +EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE +AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD +E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH +/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy +DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh +GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR +tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA +AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX +WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu +9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr +gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo +2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI +4uJEvlz36hz1 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: d6:39:81:c6:52:7e:96:69:fc:fc:ca:66:ed:05:f2:96 +# SHA1 Fingerprint: b5:1c:06:7c:ee:2b:0c:3d:f8:55:ab:2d:92:f4:fe:39:d4:e7:0f:0e +# SHA256 Fingerprint: 2c:e1:cb:0b:f9:d2:f9:e1:02:99:3f:be:21:51:52:c3:b2:dd:0c:ab:de:1c:68:e5:31:9b:83:91:54:db:b7:f5 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs +ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw +MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj +aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp +Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg +nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 +HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N +Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN +dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 +HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G +CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU +sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 +4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg +8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 +mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Services Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 17:35:74:af:7b:61:1c:eb:f4:f9:3c:e2:ee:40:f9:a2 +# SHA1 Fingerprint: 92:5a:8f:8d:2c:6d:04:e0:66:5f:59:6a:ff:22:d8:63:e8:25:6f:3f +# SHA256 Fingerprint: 56:8d:69:05:a2:c8:87:08:a4:b3:02:51:90:ed:cf:ed:b1:97:4a:60:6a:13:c6:e5:29:0f:cb:2a:e6:3e:da:b5 +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs +ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD +VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy +ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy +dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p +OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 +8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K +Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe +hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk +6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q +AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI +bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB +ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z +qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn +0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN +sSi6 +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Commercial O=AffirmTrust +# Subject: CN=AffirmTrust Commercial O=AffirmTrust +# Label: "AffirmTrust Commercial" +# Serial: 8608355977964138876 +# MD5 Fingerprint: 82:92:ba:5b:ef:cd:8a:6f:a6:3d:55:f9:84:f6:d6:b7 +# SHA1 Fingerprint: f9:b5:b6:32:45:5f:9c:be:ec:57:5f:80:dc:e9:6e:2c:c7:b2:78:b7 +# SHA256 Fingerprint: 03:76:ab:1d:54:c5:f9:80:3c:e4:b2:e2:01:a0:ee:7e:ef:7b:57:b6:36:e8:a9:3c:9b:8d:48:60:c9:6f:5f:a7 +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP +Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr +ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL +MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 +yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr +VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ +nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG +XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj +vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt +Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g +N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC +nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Networking O=AffirmTrust +# Subject: CN=AffirmTrust Networking O=AffirmTrust +# Label: "AffirmTrust Networking" +# Serial: 8957382827206547757 +# MD5 Fingerprint: 42:65:ca:be:01:9a:9a:4c:a9:8c:41:49:cd:c0:d5:7f +# SHA1 Fingerprint: 29:36:21:02:8b:20:ed:02:f5:66:c5:32:d1:d6:ed:90:9f:45:00:2f +# SHA256 Fingerprint: 0a:81:ec:5a:92:97:77:f1:45:90:4a:f3:8d:5d:50:9f:66:b5:e2:c5:8f:cd:b5:31:05:8b:0e:17:f3:f0:b4:1b +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y +YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua +kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL +QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp +6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG +yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i +QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO +tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu +QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ +Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u +olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 +x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium O=AffirmTrust +# Subject: CN=AffirmTrust Premium O=AffirmTrust +# Label: "AffirmTrust Premium" +# Serial: 7893706540734352110 +# MD5 Fingerprint: c4:5d:0e:48:b6:ac:28:30:4e:0a:bc:f9:38:16:87:57 +# SHA1 Fingerprint: d8:a6:33:2c:e0:03:6f:b1:85:f6:63:4f:7d:6a:06:65:26:32:28:27 +# SHA256 Fingerprint: 70:a7:3f:7f:37:6b:60:07:42:48:90:45:34:b1:14:82:d5:bf:0e:69:8e:cc:49:8d:f5:25:77:eb:f2:e9:3b:9a +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz +dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG +A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U +cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf +qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ +JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ ++jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS +s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 +HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 +70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG +V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S +qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S +5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia +C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX +OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE +FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 +KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B +8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ +MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc +0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ +u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF +u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH +YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 +GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO +RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e +KeC2uAloGRwYQw== +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium ECC O=AffirmTrust +# Subject: CN=AffirmTrust Premium ECC O=AffirmTrust +# Label: "AffirmTrust Premium ECC" +# Serial: 8401224907861490260 +# MD5 Fingerprint: 64:b0:09:55:cf:b1:d5:99:e2:be:13:ab:a6:5d:ea:4d +# SHA1 Fingerprint: b8:23:6b:00:2f:1d:16:86:53:01:55:6c:11:a4:37:ca:eb:ff:c3:bb +# SHA256 Fingerprint: bd:71:fd:f6:da:97:e4:cf:62:d1:64:7a:dd:25:81:b0:7d:79:ad:f8:39:7e:b4:ec:ba:9c:5e:84:88:82:14:23 +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC +VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ +cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ +BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt +VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D +0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 +ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G +A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs +aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I +flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA" +# Serial: 279744 +# MD5 Fingerprint: d5:e9:81:40:c5:18:69:fc:46:2c:89:75:62:0f:aa:78 +# SHA1 Fingerprint: 07:e0:32:e0:20:b7:2c:3f:19:2f:06:28:a2:59:3a:19:a7:0f:06:9e +# SHA256 Fingerprint: 5c:58:46:8d:55:f5:8e:49:7e:74:39:82:d2:b5:00:10:b6:d1:65:37:4a:cf:83:a7:d4:a3:2d:b7:68:c4:40:8e +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM +MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D +ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU +cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 +WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg +Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw +IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH +UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM +TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU +BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM +kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x +AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV +HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y +sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL +I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 +J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY +VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Label: "TWCA Root Certification Authority" +# Serial: 1 +# MD5 Fingerprint: aa:08:8f:f6:f9:7b:b7:f2:b1:a7:1e:9b:ea:ea:bd:79 +# SHA1 Fingerprint: cf:9e:87:6d:d3:eb:fc:42:26:97:a3:b5:a3:7a:a0:76:a9:06:23:48 +# SHA256 Fingerprint: bf:d8:8f:e1:10:1c:41:ae:3e:80:1b:f8:be:56:35:0e:e9:ba:d1:a6:b9:bd:51:5e:dc:5c:6d:5b:87:11:ac:44 +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES +MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU +V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz +WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO +LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE +AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH +K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX +RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z +rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx +3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq +hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC +MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls +XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D +lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn +aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ +YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Subject: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Label: "Security Communication RootCA2" +# Serial: 0 +# MD5 Fingerprint: 6c:39:7d:a4:0e:55:59:b2:3f:d6:41:b1:12:50:de:43 +# SHA1 Fingerprint: 5f:3b:8c:f2:f8:10:b3:7d:78:b4:ce:ec:19:19:c3:73:34:b9:c7:74 +# SHA256 Fingerprint: 51:3b:2c:ec:b8:10:d4:cd:e5:dd:85:39:1a:df:c6:c2:dd:60:d8:7b:b7:36:d2:b5:21:48:4a:a4:7a:0e:be:f6 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX +DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy +dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj +YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV +OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr +zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM +VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ +hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO +ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw +awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs +OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 +DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF +coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc +okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 +t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy +1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ +SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +# Issuer: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Subject: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Label: "Actalis Authentication Root CA" +# Serial: 6271844772424770508 +# MD5 Fingerprint: 69:c1:0d:4f:07:a3:1b:c3:fe:56:3d:04:bc:11:f6:a6 +# SHA1 Fingerprint: f3:73:b3:87:06:5a:28:84:8a:f2:f3:4a:ce:19:2b:dd:c7:8e:9c:ac +# SHA256 Fingerprint: 55:92:60:84:ec:96:3a:64:b9:6e:2a:be:01:ce:0b:a8:6a:64:fb:fe:bc:c7:aa:b5:af:c1:55:b3:7f:d7:60:66 +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE +BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w +MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC +SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 +ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv +UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX +4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 +KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ +gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb +rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ +51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F +be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe +KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F +v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn +fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 +jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz +ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL +e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 +jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz +WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V +SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j +pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX +X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok +fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R +K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU +ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU +LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT +LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 2 Root CA" +# Serial: 2 +# MD5 Fingerprint: 46:a7:d2:fe:45:fb:64:5a:a8:59:90:9b:78:44:9b:29 +# SHA1 Fingerprint: 49:0a:75:74:de:87:0a:47:fe:58:ee:f6:c7:6b:eb:c6:0b:12:40:99 +# SHA256 Fingerprint: 9a:11:40:25:19:7c:5b:b9:5d:94:e6:3d:55:cd:43:79:08:47:b6:46:b2:3c:df:11:ad:a4:a0:0e:ff:15:fb:48 +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr +6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV +L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 +1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx +MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ +QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB +arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr +Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi +FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS +P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN +9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz +uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h +9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t +OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo ++fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 +KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 +DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us +H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ +I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 +5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h +3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz +Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 3 Root CA" +# Serial: 2 +# MD5 Fingerprint: 3d:3b:18:9e:2c:64:5a:e8:d5:88:ce:0e:f9:37:c2:ec +# SHA1 Fingerprint: da:fa:f7:fa:66:84:ec:06:8f:14:50:bd:c7:c2:81:a5:bc:a9:64:57 +# SHA256 Fingerprint: ed:f7:eb:bc:a2:7a:2a:38:4d:38:7b:7d:40:10:c6:66:e2:ed:b4:84:3e:4c:29:b4:ae:1d:5b:93:32:e6:b2:4d +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y +ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E +N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 +tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX +0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c +/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X +KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY +zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS +O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D +34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP +K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv +Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj +QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS +IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 +HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa +O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv +033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u +dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE +kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 +3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD +u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq +4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 3" +# Serial: 1 +# MD5 Fingerprint: ca:fb:40:a8:4e:39:92:8a:1d:fe:8e:2f:c4:27:ea:ef +# SHA1 Fingerprint: 55:a6:72:3e:cb:f2:ec:cd:c3:23:74:70:19:9d:2a:be:11:e3:81:d1 +# SHA256 Fingerprint: fd:73:da:d3:1c:64:4f:f1:b4:3b:ef:0c:cd:da:96:71:0b:9c:d9:87:5e:ca:7e:31:70:7a:f3:e9:6d:52:2b:bd +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN +8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ +RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 +hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 +ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM +EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 +A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy +WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ +1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 +6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT +91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p +TpPDpFQUWw== +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 2009" +# Serial: 623603 +# MD5 Fingerprint: cd:e0:25:69:8d:47:ac:9c:89:35:90:f7:fd:51:3d:2f +# SHA1 Fingerprint: 58:e8:ab:b0:36:15:33:fb:80:f7:9b:1b:6d:29:d3:ff:8d:5f:00:f0 +# SHA256 Fingerprint: 49:e7:a4:42:ac:f0:ea:62:87:05:00:54:b5:25:64:b6:50:e4:f4:9e:42:e3:48:d6:aa:38:e0:39:e9:57:b1:c1 +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha +ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM +HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 +UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 +tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R +ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM +lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp +/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G +A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G +A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj +dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy +MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl +cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js +L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL +BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni +acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K +zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 +PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y +Johw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 EV 2009" +# Serial: 623604 +# MD5 Fingerprint: aa:c6:43:2c:5e:2d:cd:c4:34:c0:50:4f:11:02:4f:b6 +# SHA1 Fingerprint: 96:c9:1b:0b:95:b4:10:98:42:fa:d0:d8:22:79:fe:60:fa:b9:16:83 +# SHA256 Fingerprint: ee:c5:49:6b:98:8c:e9:86:25:b9:34:09:2e:ec:29:08:be:d0:b0:f3:16:c2:d4:73:0c:84:ea:f1:f3:d3:48:81 +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw +NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV +BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn +ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 +3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z +qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR +p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 +HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw +ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea +HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw +Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh +c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E +RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt +dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku +Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp +3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF +CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na +xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX +KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- + +# Issuer: CN=CA Disig Root R2 O=Disig a.s. +# Subject: CN=CA Disig Root R2 O=Disig a.s. +# Label: "CA Disig Root R2" +# Serial: 10572350602393338211 +# MD5 Fingerprint: 26:01:fb:d8:27:a7:17:9a:45:54:38:1a:43:01:3b:03 +# SHA1 Fingerprint: b5:61:eb:ea:a4:de:e4:25:4b:69:1a:98:a5:57:47:c2:34:c7:d9:71 +# SHA256 Fingerprint: e2:3d:4a:03:6d:7b:70:e9:f5:95:b1:42:20:79:d2:b9:1e:df:bb:1f:b6:51:a0:63:3e:aa:8a:9d:c5:f8:07:03 +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy +MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe +NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH +PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I +x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe +QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR +yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO +QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 +H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ +QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD +i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs +nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 +rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI +hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf +GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb +lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka ++elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal +TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i +nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 +gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr +G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os +zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x +L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- + +# Issuer: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Subject: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Label: "ACCVRAIZ1" +# Serial: 6828503384748696800 +# MD5 Fingerprint: d0:a0:5a:ee:05:b6:09:94:21:a1:7d:f1:b2:29:82:02 +# SHA1 Fingerprint: 93:05:7a:88:15:c6:4f:ce:88:2f:fa:91:16:52:28:78:bc:53:64:17 +# SHA256 Fingerprint: 9a:6e:c0:12:e1:a7:da:9d:be:34:19:4d:47:8a:d7:c0:db:18:22:fb:07:1d:f1:29:81:49:6e:d1:04:38:41:13 +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE +AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw +CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ +BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND +VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb +qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY +HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo +G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA +lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr +IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ +0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH +k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 +4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO +m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa +cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl +uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI +KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls +ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG +AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT +VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG +CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA +cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA +QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA +7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA +cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA +QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA +czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu +aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt +aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud +DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF +BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp +D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU +JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m +AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD +vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms +tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH +7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA +h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF +d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H +pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA Global Root CA" +# Serial: 3262 +# MD5 Fingerprint: f9:03:7e:cf:e6:9e:3c:73:7a:2a:90:07:69:ff:2b:96 +# SHA1 Fingerprint: 9c:bb:48:53:f6:a4:f6:d3:52:a4:e8:32:52:55:60:13:f5:ad:af:65 +# SHA256 Fingerprint: 59:76:90:07:f7:68:5d:0f:cd:50:87:2f:9f:95:d5:75:5a:5b:2b:45:7d:81:f3:69:2b:61:0a:98:67:2f:0e:1b +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx +EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT +VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 +NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT +B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF +10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz +0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh +MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH +zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc +46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 +yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi +laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP +oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA +BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE +qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm +4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL +1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF +H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo +RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ +nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh +15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW +6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW +nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j +wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz +aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy +KwbQBM0= +-----END CERTIFICATE----- + +# Issuer: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Subject: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Label: "TeliaSonera Root CA v1" +# Serial: 199041966741090107964904287217786801558 +# MD5 Fingerprint: 37:41:49:1b:18:56:9a:26:f5:ad:c2:66:fb:40:a5:4c +# SHA1 Fingerprint: 43:13:bb:96:f1:d5:86:9b:c1:4e:6a:92:f6:cf:f6:34:69:87:82:37 +# SHA256 Fingerprint: dd:69:36:fe:21:f8:f0:77:c1:23:a1:a5:21:c1:22:24:f7:22:55:b7:3e:03:a7:26:06:93:e8:a2:4b:0f:a3:89 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw +NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv +b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD +VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F +VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 +7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X +Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ +/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs +81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm +dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe +Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu +sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 +pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs +slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ +arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD +VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG +9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl +dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj +TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed +Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 +Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI +OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 +vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW +t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn +HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx +SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 2" +# Serial: 1 +# MD5 Fingerprint: 2b:9b:9e:e4:7b:6c:1f:00:72:1a:cc:c1:77:79:df:6a +# SHA1 Fingerprint: 59:0d:2d:7d:88:4f:40:2e:61:7e:a5:62:32:17:65:cf:17:d8:94:e9 +# SHA256 Fingerprint: 91:e2:f5:78:8d:58:10:eb:a7:ba:58:73:7d:e1:54:8a:8e:ca:cd:01:45:98:bc:0b:14:3e:04:1b:17:05:25:52 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd +AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC +FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi +1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq +jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ +wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ +WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy +NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC +uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw +IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 +g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP +BSeOE6Fuwg== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot 2011 O=Atos +# Subject: CN=Atos TrustedRoot 2011 O=Atos +# Label: "Atos TrustedRoot 2011" +# Serial: 6643877497813316402 +# MD5 Fingerprint: ae:b9:c4:32:4b:ac:7f:5d:66:cc:77:94:bb:2a:77:56 +# SHA1 Fingerprint: 2b:b1:f5:3e:55:0c:1d:c5:f1:d4:e6:b7:6a:46:4b:55:06:02:ac:21 +# SHA256 Fingerprint: f3:56:be:a2:44:b7:a9:1e:b3:5d:53:ca:9a:d7:86:4a:ce:01:8e:2d:35:d5:f8:f9:6d:df:68:a6:f4:1a:a4:74 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE +AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG +EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM +FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC +REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp +Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM +VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ +SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ +4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L +cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi +eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG +A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 +DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j +vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP +DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc +maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D +lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv +KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 1 G3" +# Serial: 687049649626669250736271037606554624078720034195 +# MD5 Fingerprint: a4:bc:5b:3f:fe:37:9a:fa:64:f0:e2:fa:05:3d:0b:ab +# SHA1 Fingerprint: 1b:8e:ea:57:96:29:1a:c9:39:ea:b8:0a:81:1a:73:73:c0:93:79:67 +# SHA256 Fingerprint: 8a:86:6f:d1:b2:76:b5:7e:57:8e:92:1c:65:82:8a:2b:ed:58:e9:f2:f2:88:05:41:34:b7:f1:f4:bf:c9:cc:74 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 +MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV +wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe +rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 +68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh +4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp +UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o +abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc +3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G +KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt +hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO +Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt +zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD +ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 +cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN +qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 +YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv +b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 +8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k +NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj +ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp +q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt +nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2 G3" +# Serial: 390156079458959257446133169266079962026824725800 +# MD5 Fingerprint: af:0c:86:6e:bf:40:2d:7f:0b:3e:12:50:ba:12:3d:06 +# SHA1 Fingerprint: 09:3c:61:f3:8b:8b:dc:7d:55:df:75:38:02:05:00:e1:25:f5:c8:36 +# SHA256 Fingerprint: 8f:e4:fb:0a:f9:3a:4d:0d:67:db:0b:eb:b2:3e:37:c7:1b:f3:25:dc:bc:dd:24:0e:a0:4d:af:58:b4:7e:18:40 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 +MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf +qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW +n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym +c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ +O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 +o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j +IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq +IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz +8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh +vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l +7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG +cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD +ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC +roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga +W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n +lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE ++V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV +csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd +dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg +KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM +HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 +WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3 G3" +# Serial: 268090761170461462463995952157327242137089239581 +# MD5 Fingerprint: df:7d:b9:ad:54:6f:68:a1:df:89:57:03:97:43:b0:d7 +# SHA1 Fingerprint: 48:12:bd:92:3c:a8:c4:39:06:e7:30:6d:27:96:e6:a4:cf:22:2e:7d +# SHA256 Fingerprint: 88:ef:81:de:20:2e:b0:18:45:2e:43:f8:64:72:5c:ea:5f:bd:1f:c2:d9:d2:05:73:07:09:c5:d8:b8:69:0f:46 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 +MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR +/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu +FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR +U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c +ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR +FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k +A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw +eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl +sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp +VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q +A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ +ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD +ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI +FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv +oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg +u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP +0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf +3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl +8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ +DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN +PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ +ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G2" +# Serial: 15385348160840213938643033620894905419 +# MD5 Fingerprint: 92:38:b9:f8:63:24:82:65:2c:57:33:e6:fe:81:8f:9d +# SHA1 Fingerprint: a1:4b:48:d9:43:ee:0a:0e:40:90:4f:3c:e0:a4:c0:91:93:51:5d:3f +# SHA256 Fingerprint: 7d:05:eb:b6:82:33:9f:8c:94:51:ee:09:4e:eb:fe:fa:79:53:a1:14:ed:b2:f4:49:49:45:2f:ab:7d:2f:c1:85 +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA +n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc +biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp +EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA +bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu +YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW +BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI +QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I +0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni +lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 +B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv +ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G3" +# Serial: 15459312981008553731928384953135426796 +# MD5 Fingerprint: 7c:7f:65:31:0c:81:df:8d:ba:3e:99:e2:5c:ad:6e:fb +# SHA1 Fingerprint: f5:17:a2:4f:9a:48:c6:c9:f8:a2:00:26:9f:dc:0f:48:2c:ab:30:89 +# SHA256 Fingerprint: 7e:37:cb:8b:4c:47:09:0c:ab:36:55:1b:a6:f4:5d:b8:40:68:0f:ba:16:6a:95:2d:b1:00:71:7f:43:05:3f:c2 +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg +RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf +Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q +RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD +AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY +JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv +6pZjamVFkpUBtA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G2" +# Serial: 4293743540046975378534879503202253541 +# MD5 Fingerprint: e4:a6:8a:c8:54:ac:52:42:46:0a:fd:72:48:1b:2a:44 +# SHA1 Fingerprint: df:3c:24:f9:bf:d6:66:76:1b:26:80:73:fe:06:d1:cc:8d:4f:82:a4 +# SHA256 Fingerprint: cb:3c:cb:b7:60:31:e5:e0:13:8f:8d:d3:9a:23:f9:de:47:ff:c3:5e:43:c1:14:4c:ea:27:d4:6a:5a:b1:cb:5f +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH +MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI +2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx +1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ +q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz +tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ +vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV +5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY +1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 +NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG +Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 +8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe +pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G3" +# Serial: 7089244469030293291760083333884364146 +# MD5 Fingerprint: f5:5d:a4:50:a5:fb:28:7e:1e:0f:0d:cc:96:57:56:ca +# SHA1 Fingerprint: 7e:04:de:89:6a:3e:66:6d:00:e6:87:d3:3f:fa:d9:3b:e8:3d:34:9e +# SHA256 Fingerprint: 31:ad:66:48:f8:10:41:38:c7:38:f3:9e:a4:32:01:33:39:3e:3a:18:cc:02:29:6e:f9:7c:2a:c9:ef:67:31:d0 +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe +Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw +EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x +IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG +fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO +Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd +BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx +AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ +oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 +sycX +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Trusted Root G4" +# Serial: 7451500558977370777930084869016614236 +# MD5 Fingerprint: 78:f2:fc:aa:60:1f:2f:b4:eb:c9:37:ba:53:2e:75:49 +# SHA1 Fingerprint: dd:fb:16:cd:49:31:c9:73:a2:03:7d:3f:c8:3a:4d:7d:77:5d:05:e4 +# SHA256 Fingerprint: 55:2f:7b:dc:f1:a7:af:9e:6c:e6:72:01:7f:4f:12:ab:f7:72:40:c7:8e:76:1a:c2:03:d1:d9:d2:0a:c8:99:88 +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg +RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y +ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If +xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV +ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO +DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ +jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ +CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi +EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM +fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY +uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK +chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t +9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 +SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd ++SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc +fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa +sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N +cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N +0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie +4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI +r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 +/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm +gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ +-----END CERTIFICATE----- + +# Issuer: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Label: "COMODO RSA Certification Authority" +# Serial: 101909084537582093308941363524873193117 +# MD5 Fingerprint: 1b:31:b0:71:40:36:cc:14:36:91:ad:c4:3e:fd:ec:18 +# SHA1 Fingerprint: af:e5:d2:44:a8:d1:19:42:30:ff:47:9f:e2:f8:97:bb:cd:7a:8c:b4 +# SHA256 Fingerprint: 52:f0:e1:c4:e5:8e:c6:29:29:1b:60:31:7f:07:46:71:b8:5d:7e:a8:0d:5b:07:27:34:63:53:4b:32:b4:02:34 +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB +hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV +BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT +EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR +6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X +pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC +9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV +/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf +Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z ++pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w +qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah +SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC +u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf +Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq +crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl +wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM +4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV +2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna +FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ +CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK +boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke +jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL +S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb +QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl +0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB +NVOFBkpdn627G190 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Label: "USERTrust RSA Certification Authority" +# Serial: 2645093764781058787591871645665788717 +# MD5 Fingerprint: 1b:fe:69:d1:91:b7:19:33:a3:72:a8:0f:e1:55:e5:b5 +# SHA1 Fingerprint: 2b:8f:1b:57:33:0d:bb:a2:d0:7a:6c:51:f7:0e:e9:0d:da:b9:ad:8e +# SHA256 Fingerprint: e7:93:c9:b0:2f:d8:aa:13:e2:1c:31:22:8a:cc:b0:81:19:64:3b:74:9c:89:89:64:b1:74:6d:46:c3:d4:cb:d2 +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Label: "USERTrust ECC Certification Authority" +# Serial: 123013823720199481456569720443997572134 +# MD5 Fingerprint: fa:68:bc:d9:b5:7f:ad:fd:c9:1d:06:83:28:cc:24:c1 +# SHA1 Fingerprint: d1:cb:ca:5d:b2:d5:2a:7f:69:3b:67:4d:e5:f0:5a:1d:0c:95:7d:f0 +# SHA256 Fingerprint: 4f:f4:60:d5:4b:9c:86:da:bf:bc:fc:57:12:e0:40:0d:2b:ed:3f:bc:4d:4f:bd:aa:86:e0:6a:dc:d2:a9:ad:7a +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl +eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT +JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT +Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg +VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo +I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng +o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G +A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB +zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW +RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Label: "GlobalSign ECC Root CA - R5" +# Serial: 32785792099990507226680698011560947931244 +# MD5 Fingerprint: 9f:ad:3b:1c:02:1e:8a:ba:17:74:38:81:0c:a2:bc:08 +# SHA1 Fingerprint: 1f:24:c6:30:cd:a4:18:ef:20:69:ff:ad:4f:dd:5f:46:3a:1b:69:aa +# SHA256 Fingerprint: 17:9f:bc:14:8a:3d:d0:0f:d2:4e:a1:34:58:cc:43:bf:a7:f5:9c:81:82:d7:83:a5:13:f6:eb:ec:10:0c:89:24 +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc +8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke +hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI +KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg +515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO +xwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Label: "IdenTrust Commercial Root CA 1" +# Serial: 13298821034946342390520003877796839426 +# MD5 Fingerprint: b3:3e:77:73:75:ee:a0:d3:e3:7e:49:63:49:59:bb:c7 +# SHA1 Fingerprint: df:71:7e:aa:4a:d9:4e:c9:55:84:99:60:2d:48:de:5f:bc:f0:3a:25 +# SHA256 Fingerprint: 5d:56:49:9b:e4:d2:e0:8b:cf:ca:d0:8a:3e:38:72:3d:50:50:3b:de:70:69:48:e4:2f:55:60:30:19:e5:28:ae +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu +VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw +MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw +JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT +3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU ++ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp +S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 +bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi +T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL +vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK +Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK +dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT +c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv +l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N +iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD +ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt +LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 +nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 ++wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK +W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT +AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq +l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG +4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ +mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A +7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Label: "IdenTrust Public Sector Root CA 1" +# Serial: 13298821034946342390521976156843933698 +# MD5 Fingerprint: 37:06:a5:b0:fc:89:9d:ba:f4:6b:8c:1a:64:cd:d5:ba +# SHA1 Fingerprint: ba:29:41:60:77:98:3f:f4:f3:ef:f2:31:05:3b:2e:ea:6d:4d:45:fd +# SHA256 Fingerprint: 30:d0:89:5a:9a:44:8a:26:20:91:63:55:22:d1:f5:20:10:b5:86:7a:ca:e1:2c:78:ef:95:8f:d4:f4:38:9f:2f +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu +VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN +MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 +MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 +ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy +RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS +bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF +/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R +3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw +EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy +9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V +GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ +2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV +WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD +W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN +AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV +DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 +TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G +lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW +mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df +WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 ++bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ +tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA +GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv +8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G2" +# Serial: 1246989352 +# MD5 Fingerprint: 4b:e2:c9:91:96:65:0c:f4:0e:5a:93:92:a0:0a:fe:b2 +# SHA1 Fingerprint: 8c:f4:27:fd:79:0c:3a:d1:66:06:8d:e8:1e:57:ef:bb:93:22:72:d4 +# SHA256 Fingerprint: 43:df:57:74:b0:3e:7f:ef:5f:e4:0d:93:1a:7b:ed:f1:bb:2e:6b:42:73:8c:4e:6d:38:41:10:3d:3a:a7:f3:39 +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 +cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs +IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz +dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy +NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu +dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt +dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 +aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T +RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN +cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW +wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 +U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 +jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN +BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ +jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v +1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R +nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH +VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - EC1" +# Serial: 51543124481930649114116133369 +# MD5 Fingerprint: b6:7e:1d:f0:58:c5:49:6c:24:3b:3d:ed:98:18:ed:bc +# SHA1 Fingerprint: 20:d8:06:40:df:9b:25:f5:12:25:3a:11:ea:f7:59:8a:eb:14:b5:47 +# SHA256 Fingerprint: 02:ed:0e:b2:8c:14:da:45:16:5c:56:67:91:70:0d:64:51:d7:fb:56:f0:b2:ab:1d:3b:8e:b0:70:e5:6e:df:f5 +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG +A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 +d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu +dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq +RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy +MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD +VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g +Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi +A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt +ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH +Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC +R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX +hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- + +# Issuer: CN=CFCA EV ROOT O=China Financial Certification Authority +# Subject: CN=CFCA EV ROOT O=China Financial Certification Authority +# Label: "CFCA EV ROOT" +# Serial: 407555286 +# MD5 Fingerprint: 74:e1:b6:ed:26:7a:7a:44:30:33:94:ab:7b:27:81:30 +# SHA1 Fingerprint: e2:b8:29:4b:55:84:ab:6b:58:c2:90:46:6c:ac:3f:b8:39:8f:84:83 +# SHA256 Fingerprint: 5c:c3:d7:8e:4e:1d:5e:45:54:7a:04:e6:87:3e:64:f9:0c:f9:53:6d:1c:cc:2e:f8:00:f3:55:c4:c5:fd:70:fd +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD +TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y +aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx +MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j +aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP +T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 +sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL +TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 +/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp +7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz +EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt +hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP +a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot +aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg +TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV +PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv +cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL +tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd +BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT +ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL +jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS +ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy +P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 +xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d +Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN +5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe +/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z +AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ +5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GB CA" +# Serial: 157768595616588414422159278966750757568 +# MD5 Fingerprint: a4:eb:b9:61:28:2e:b7:2f:98:b0:35:26:90:99:51:1d +# SHA1 Fingerprint: 0f:f9:40:76:18:d3:d7:6a:4b:98:f0:a8:35:9e:0c:fd:27:ac:cc:ed +# SHA256 Fingerprint: 6b:9c:08:e8:6e:b0:f7:67:cf:ad:65:cd:98:b6:21:49:e5:49:4a:67:f5:84:5e:7b:d1:ed:01:9f:27:b8:6b:d6 +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt +MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg +Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i +YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x +CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG +b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 +HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx +WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX +1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk +u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P +99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r +M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB +BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh +cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 +gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO +ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf +aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- + +# Issuer: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Subject: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Label: "SZAFIR ROOT CA2" +# Serial: 357043034767186914217277344587386743377558296292 +# MD5 Fingerprint: 11:64:c1:89:b0:24:b1:8c:b1:07:7e:89:9e:51:9e:99 +# SHA1 Fingerprint: e2:52:fa:95:3f:ed:db:24:60:bd:6e:28:f3:9c:cc:cf:5e:b3:3f:de +# SHA256 Fingerprint: a1:33:9d:33:28:1a:0b:56:e5:57:d3:d3:2b:1c:e7:f9:36:7e:b0:94:bd:5f:a7:2a:7e:50:04:c8:de:d7:ca:fe +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 +ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw +NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L +cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg +Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN +QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT +3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw +3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 +3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 +BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN +XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF +AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw +8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG +nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP +oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy +d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg +LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA 2" +# Serial: 44979900017204383099463764357512596969 +# MD5 Fingerprint: 6d:46:9e:d9:25:6d:08:23:5b:5e:74:7d:1e:27:db:f2 +# SHA1 Fingerprint: d3:dd:48:3e:2b:bf:4c:05:e8:af:10:f5:fa:76:26:cf:d3:dc:30:92 +# SHA256 Fingerprint: b6:76:f2:ed:da:e8:77:5c:d3:6c:b0:f6:3c:d1:d4:60:39:61:f4:9e:62:65:ba:01:3a:2f:03:07:b6:d0:b8:04 +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB +gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu +QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG +A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz +OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ +VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 +b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA +DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn +0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB +OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE +fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E +Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m +o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i +sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW +OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez +Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS +adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n +3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ +F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf +CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 +XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm +djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ +WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb +AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq +P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko +b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj +XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P +5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi +DrW5viSP +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: ca:ff:e2:db:03:d9:cb:4b:e9:0f:ad:84:fd:7b:18:ce +# SHA1 Fingerprint: 01:0c:06:95:a6:98:19:14:ff:bf:5f:c6:b0:b6:95:ea:29:e9:12:a6 +# SHA256 Fingerprint: a0:40:92:9a:02:ce:53:b4:ac:f4:f2:ff:c6:98:1c:e4:49:6f:75:5e:6d:45:fe:0b:2a:69:2b:cd:52:52:3f:36 +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix +DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k +IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT +N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v +dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG +A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh +ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx +QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA +4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 +AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 +4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C +ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV +9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD +gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 +Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq +NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko +LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd +ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I +XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI +M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot +9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V +Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea +j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh +X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ +l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf +bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 +pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK +e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 +vm9qp/UsQu0yrbYhnr68 +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions ECC RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: 81:e5:b4:17:eb:c2:f5:e1:4b:0d:41:7b:49:92:fe:ef +# SHA1 Fingerprint: 9f:f1:71:8d:92:d5:9a:f3:7d:74:97:b4:bc:6f:84:68:0b:ba:b6:66 +# SHA256 Fingerprint: 44:b5:45:aa:8a:25:e6:5a:73:ca:15:dc:27:fc:36:d2:4c:1c:b9:95:3a:06:65:39:b1:15:82:dc:48:7b:48:33 +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN +BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl +bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv +b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ +BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj +YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 +MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 +dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg +QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa +jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi +C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep +lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof +TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X1 O=Internet Security Research Group +# Subject: CN=ISRG Root X1 O=Internet Security Research Group +# Label: "ISRG Root X1" +# Serial: 172886928669790476064670243504169061120 +# MD5 Fingerprint: 0c:d2:f9:e0:da:17:73:e9:ed:86:4d:a5:e3:70:e7:4e +# SHA1 Fingerprint: ca:bd:2a:79:a1:07:6a:31:f2:1d:25:36:35:cb:03:9d:43:29:a5:e8 +# SHA256 Fingerprint: 96:bc:ec:06:26:49:76:f3:74:60:77:9a:cf:28:c5:a7:cf:e8:a3:c0:aa:e1:1a:8f:fc:ee:05:c0:bd:df:08:c6 +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 +WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu +ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc +h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ +0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U +A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW +T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH +B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC +B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv +KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn +OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn +jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw +qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI +rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq +hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ +3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK +NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 +ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur +TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC +jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc +oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq +4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA +mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d +emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- + +# Issuer: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Subject: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Label: "AC RAIZ FNMT-RCM" +# Serial: 485876308206448804701554682760554759 +# MD5 Fingerprint: e2:09:04:b4:d3:bd:d1:a0:14:fd:1a:d2:47:c4:57:1d +# SHA1 Fingerprint: ec:50:35:07:b2:15:c4:95:62:19:e2:a8:9a:5b:42:99:2c:4c:2c:20 +# SHA256 Fingerprint: eb:c5:57:0c:29:01:8c:4d:67:b1:aa:12:7b:af:12:f7:03:b4:61:1e:bc:17:b7:da:b5:57:38:94:17:9b:93:fa +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx +CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ +WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ +BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG +Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ +yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf +BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz +WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF +tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z +374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC +IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL +mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 +wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS +MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 +ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet +UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H +YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 +LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 +RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM +LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf +77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N +JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm +fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp +6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp +1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B +9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok +RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv +uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 1 O=Amazon +# Subject: CN=Amazon Root CA 1 O=Amazon +# Label: "Amazon Root CA 1" +# Serial: 143266978916655856878034712317230054538369994 +# MD5 Fingerprint: 43:c6:bf:ae:ec:fe:ad:2f:18:c6:88:68:30:fc:c8:e6 +# SHA1 Fingerprint: 8d:a7:f9:65:ec:5e:fc:37:91:0f:1c:6e:59:fd:c1:cc:6a:6e:de:16 +# SHA256 Fingerprint: 8e:cd:e6:88:4f:3d:87:b1:12:5b:a3:1a:c3:fc:b1:3d:70:16:de:7f:57:cc:90:4f:e1:cb:97:c6:ae:98:19:6e +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj +ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM +9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw +IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 +VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L +93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm +jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA +A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI +U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs +N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv +o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU +5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy +rqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 2 O=Amazon +# Subject: CN=Amazon Root CA 2 O=Amazon +# Label: "Amazon Root CA 2" +# Serial: 143266982885963551818349160658925006970653239 +# MD5 Fingerprint: c8:e5:8d:ce:a8:42:e2:7a:c0:2a:5c:7c:9e:26:bf:66 +# SHA1 Fingerprint: 5a:8c:ef:45:d7:a6:98:59:76:7a:8c:8b:44:96:b5:78:cf:47:4b:1a +# SHA256 Fingerprint: 1b:a5:b2:aa:8c:65:40:1a:82:96:01:18:f8:0b:ec:4f:62:30:4d:83:ce:c4:71:3a:19:c3:9c:01:1e:a4:6d:b4 +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK +gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ +W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg +1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K +8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r +2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me +z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR +8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj +mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz +7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 ++XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI +0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm +UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 +LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS +k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl +7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm +btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl +urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ +fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 +n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE +76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H +9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT +4PsJYGw= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 3 O=Amazon +# Subject: CN=Amazon Root CA 3 O=Amazon +# Label: "Amazon Root CA 3" +# Serial: 143266986699090766294700635381230934788665930 +# MD5 Fingerprint: a0:d4:ef:0b:f7:b5:d8:49:95:2a:ec:f5:c4:fc:81:87 +# SHA1 Fingerprint: 0d:44:dd:8c:3c:8c:1a:1a:58:75:64:81:e9:0f:2e:2a:ff:b3:d2:6e +# SHA256 Fingerprint: 18:ce:6c:fe:7b:f1:4e:60:b2:e3:47:b8:df:e8:68:cb:31:d0:2e:bb:3a:da:27:15:69:f5:03:43:b4:6d:b3:a4 +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl +ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr +ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr +BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM +YyRIHN8wfdVoOw== +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 4 O=Amazon +# Subject: CN=Amazon Root CA 4 O=Amazon +# Label: "Amazon Root CA 4" +# Serial: 143266989758080763974105200630763877849284878 +# MD5 Fingerprint: 89:bc:27:d5:eb:17:8d:06:6a:69:d5:fd:89:47:b4:cd +# SHA1 Fingerprint: f6:10:84:07:d6:f8:bb:67:98:0c:c2:e2:44:c2:eb:ae:1c:ef:63:be +# SHA256 Fingerprint: e3:5d:28:41:9e:d0:20:25:cf:a6:90:38:cd:62:39:62:45:8d:a5:c6:95:fb:de:a3:c2:2b:0b:fb:25:89:70:92 +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi +9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk +M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB +MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw +CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW +1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- + +# Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Subject: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Label: "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" +# Serial: 1 +# MD5 Fingerprint: dc:00:81:dc:69:2f:3e:2f:b0:3b:f6:3d:5a:91:8e:49 +# SHA1 Fingerprint: 31:43:64:9b:ec:ce:27:ec:ed:3a:3f:0b:8f:0d:e4:e8:91:dd:ee:ca +# SHA256 Fingerprint: 46:ed:c3:68:90:46:d5:3a:45:3f:b3:10:4a:b8:0d:ca:ec:65:8b:26:60:ea:16:29:dd:7e:86:79:90:64:87:16 +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx +GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp +bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w +KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 +BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy +dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG +EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll +IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU +QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT +TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg +LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 +a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr +LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr +N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X +YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ +iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f +AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH +V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf +IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 +lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c +8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf +lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- + +# Issuer: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Subject: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Label: "GDCA TrustAUTH R5 ROOT" +# Serial: 9009899650740120186 +# MD5 Fingerprint: 63:cc:d9:3d:34:35:5c:6f:53:a3:e2:08:70:48:1f:b4 +# SHA1 Fingerprint: 0f:36:38:5b:81:1a:25:c3:9b:31:4e:83:ca:e9:34:66:70:cc:74:b4 +# SHA256 Fingerprint: bf:ff:8f:d0:44:33:48:7d:6a:8a:a6:0c:1a:29:76:7a:9f:c2:bb:b0:5e:42:0f:71:3a:13:b9:92:89:1d:38:93 +-----BEGIN CERTIFICATE----- +MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UE +BhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ +IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0 +MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVowYjELMAkGA1UEBhMCQ04xMjAwBgNV +BAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8w +HQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJj +Dp6L3TQsAlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBj +TnnEt1u9ol2x8kECK62pOqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+u +KU49tm7srsHwJ5uu4/Ts765/94Y9cnrrpftZTqfrlYwiOXnhLQiPzLyRuEH3FMEj +qcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ9Cy5WmYqsBebnh52nUpm +MUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQxXABZG12 +ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloP +zgsMR6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3Gk +L30SgLdTMEZeS1SZD2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeC +jGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4oR24qoAATILnsn8JuLwwoC8N9VKejveSswoA +HQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx9hoh49pwBiFYFIeFd3mqgnkC +AwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlRMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg +p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZm +DRd9FBUb1Ov9H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5 +COmSdI31R9KrO9b7eGZONn356ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ry +L3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd+PwyvzeG5LuOmCd+uh8W4XAR8gPf +JWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQHtZa37dG/OaG+svg +IHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBDF8Io +2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV +09tL7ECQ8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQ +XR4EzzffHqhmsYzmIGrv/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrq +T8p+ck0LcIymSLumoRT2+1hEmRSuqguTaaApJUqlyyvdimYHFngVV3Eb7PVHhPOe +MTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Label: "SSL.com Root Certification Authority RSA" +# Serial: 8875640296558310041 +# MD5 Fingerprint: 86:69:12:c0:70:f1:ec:ac:ac:c2:d5:bc:a5:5b:a1:29 +# SHA1 Fingerprint: b7:ab:33:08:d1:ea:44:77:ba:14:80:12:5a:6f:bd:a9:36:49:0c:bb +# SHA256 Fingerprint: 85:66:6a:56:2e:e0:be:5c:e9:25:c1:d8:89:0a:6f:76:a8:7e:c1:6d:4d:7d:5f:29:ea:74:19:cf:20:12:3b:69 +-----BEGIN CERTIFICATE----- +MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE +BhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQK +DA9TU0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYwMjEyMTczOTM5WhcNNDEwMjEyMTcz +OTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv +bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2R +xFdHaxh3a3by/ZPkPQ/CFp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aX +qhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcC +C52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/geoeOy3ZExqysdBP+lSgQ3 +6YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkpk8zruFvh +/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrF +YD3ZfBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93E +JNyAKoFBbZQ+yODJgUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVc +US4cK38acijnALXRdMbX5J+tB5O2UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8 +ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi81xtZPCvM8hnIk2snYxnP/Okm ++Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4sbE6x/c+cCbqi +M+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4G +A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGV +cpNxJK1ok1iOMq8bs3AD/CUrdIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBc +Hadm47GUBwwyOabqG7B52B2ccETjit3E+ZUfijhDPwGFpUenPUayvOUiaPd7nNgs +PgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAslu1OJD7OAUN5F7kR/ +q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjqerQ0 +cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jr +a6x+3uxjMxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90I +H37hVZkLId6Tngr75qNJvTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/Y +K9f1JmzJBjSWFupwWRoyeXkLtoh/D1JIPb9s2KJELtFOt3JY04kTlf5Eq/jXixtu +nLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406ywKBjYZC6VWg3dGq2ktuf +oYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NIWuuA8ShY +Ic2wBlX7Jz9TkHCpBB5XJ7k= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com Root Certification Authority ECC" +# Serial: 8495723813297216424 +# MD5 Fingerprint: 2e:da:e4:39:7f:9c:8f:37:d1:70:9f:26:17:51:3a:8e +# SHA1 Fingerprint: c3:19:7c:39:24:e6:54:af:1b:c4:ab:20:95:7a:e2:c3:0e:13:02:6a +# SHA256 Fingerprint: 34:17:bb:06:cc:60:07:da:1b:96:1c:92:0b:8a:b4:ce:3f:ad:82:0e:4a:a3:0b:9a:cb:c4:a7:4e:bd:ce:bc:65 +-----BEGIN CERTIFICATE----- +MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNDAzWhcNNDEwMjEyMTgxNDAz +WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0 +b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNvbSBS +b290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI +7Z4INcgn64mMU1jrYor+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPg +CemB+vNH06NjMGEwHQYDVR0OBBYEFILRhXMw5zUE044CkvvlpNHEIejNMA8GA1Ud +EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTTjgKS++Wk0cQh6M0wDgYD +VR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCWe+0F+S8T +kdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+ +gA0z5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority RSA R2" +# Serial: 6248227494352943350 +# MD5 Fingerprint: e1:1e:31:58:1a:ae:54:53:02:f6:17:6a:11:7b:4d:95 +# SHA1 Fingerprint: 74:3a:f0:52:9b:d0:32:a0:f4:4a:83:cd:d4:ba:a9:7b:7c:2e:c4:9a +# SHA256 Fingerprint: 2e:7b:f1:6c:c2:24:85:a7:bb:e2:aa:86:96:75:07:61:b0:ae:39:be:3b:2f:e9:d0:cc:6d:4e:f7:34:91:42:5c +-----BEGIN CERTIFICATE----- +MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNV +BAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UE +CgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMB4XDTE3MDUzMTE4MTQzN1oXDTQy +MDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4G +A1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQD +DC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvq +M0fNTPl9fb69LT3w23jhhqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssuf +OePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7wcXHswxzpY6IXFJ3vG2fThVUCAtZJycxa +4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTOZw+oz12WGQvE43LrrdF9 +HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+B6KjBSYR +aZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcA +b9ZhCBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQ +Gp8hLH94t2S42Oim9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQV +PWKchjgGAGYS5Fl2WlPAApiiECtoRHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMO +pgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+SlmJuwgUHfbSguPvuUCYHBBXtSu +UDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48+qvWBkofZ6aY +MBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV +HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa4 +9QaAJadz20ZpqJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBW +s47LCp1Jjr+kxJG7ZhcFUZh1++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5 +Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nxY/hoLVUE0fKNsKTPvDxeH3jnpaAg +cLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2GguDKBAdRUNf/ktUM +79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDzOFSz +/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXt +ll9ldDz7CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEm +Kf7GUmG6sXP/wwyc5WxqlD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKK +QbNmC1r7fSOl8hqw/96bg5Qu0T/fkreRrwU7ZcegbLHNYhLDkBvjJc40vG93drEQ +w/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1hlMYegouCRw2n5H9gooi +S9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX9hwJ1C07 +mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority ECC" +# Serial: 3182246526754555285 +# MD5 Fingerprint: 59:53:22:65:83:42:01:54:c0:ce:42:b9:5a:7c:f2:90 +# SHA1 Fingerprint: 4c:dd:51:a3:d1:f5:20:32:14:b0:c6:c5:32:23:03:91:c7:46:42:6d +# SHA256 Fingerprint: 22:a2:c1:f7:bd:ed:70:4c:c1:e7:01:b5:f4:08:c3:10:88:0f:e9:56:b5:de:2a:4a:44:f9:9c:87:3a:25:a7:c8 +-----BEGIN CERTIFICATE----- +MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xNDAyBgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNTIzWhcNNDEwMjEyMTgx +NTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NMLmNv +bSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMA +VIbc/R/fALhBYlzccBYy3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1Kthku +WnBaBu2+8KGwytAJKaNjMGEwHQYDVR0OBBYEFFvKXuXe0oGqzagtZFG22XKbl+ZP +MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe5d7SgarNqC1kUbbZcpuX +5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJN+vp1RPZ +ytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZg +h5Mmm7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Label: "GlobalSign Root CA - R6" +# Serial: 1417766617973444989252670301619537 +# MD5 Fingerprint: 4f:dd:07:e4:d4:22:64:39:1e:0c:37:42:ea:d1:c6:ae +# SHA1 Fingerprint: 80:94:64:0e:b5:a7:a1:ca:11:9c:1f:dd:d5:9f:81:02:63:a7:fb:d1 +# SHA256 Fingerprint: 2c:ab:ea:fe:37:d0:6c:a2:2a:ba:73:91:c0:03:3d:25:98:29:52:c4:53:64:73:49:76:3a:3a:b5:ad:6c:cf:69 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEg +MB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQx +MjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSNjET +MBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQssgrRI +xutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1k +ZguSgMpE3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxD +aNc9PIrFsmbVkJq3MQbFvuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJw +LnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqMPKq0pPbzlUoSB239jLKJz9CgYXfIWHSw +1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+azayOeSsJDa38O+2HBNX +k7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05OWgtH8wY2 +SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/h +bguyCLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4n +WUx2OVvq+aWh2IMP0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpY +rZxCRXluDocZXFSxZba/jJvcE+kNb7gu3GduyYsRtYQUigAZcIN5kZeR1Bonvzce +MgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNVHSMEGDAWgBSu +bAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN +nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGt +Ixg93eFyRJa0lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr61 +55wsTLxDKZmOMNOsIeDjHfrYBzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLj +vUYAGm0CuiVdjaExUd1URhxN25mW7xocBFymFe944Hn+Xds+qkxV/ZoVqW/hpvvf +cDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr3TsTjxKM4kEaSHpz +oHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB10jZp +nOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfs +pA9MRf/TuTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+v +JJUEeKgDu+6B5dpffItKoZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R +8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+tJDfLRVpOoERIyNiwmcUVhAn21klJwGW4 +5hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GC CA" +# Serial: 44084345621038548146064804565436152554 +# MD5 Fingerprint: a9:d6:b9:2d:2f:93:64:f8:a5:69:ca:91:e9:68:07:23 +# SHA1 Fingerprint: e0:11:84:5e:34:de:be:88:81:b9:9c:f6:16:26:d1:96:1f:c3:b9:31 +# SHA256 Fingerprint: 85:60:f9:1c:36:24:da:ba:95:70:b5:fe:a0:db:e3:6f:f1:1a:83:23:be:94:86:85:4f:b3:f3:4a:55:71:19:8d +-----BEGIN CERTIFICATE----- +MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQsw +CQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91 +bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwg +Um9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRaFw00MjA1MDkwOTU4MzNaMG0xCzAJ +BgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBGb3Vu +ZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2JhbCBS +b290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4ni +eUqjFqdrVCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4W +p2OQ0jnUsYd4XxiWD1AbNTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7T +rYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0EAwMDaAAwZQIwJsdpW9zV +57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtkAjEA2zQg +Mgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 +-----END CERTIFICATE----- + +# Issuer: CN=UCA Global G2 Root O=UniTrust +# Subject: CN=UCA Global G2 Root O=UniTrust +# Label: "UCA Global G2 Root" +# Serial: 124779693093741543919145257850076631279 +# MD5 Fingerprint: 80:fe:f0:c4:4a:f0:5c:62:32:9f:1c:ba:78:a9:50:f8 +# SHA1 Fingerprint: 28:f9:78:16:19:7a:ff:18:25:18:aa:44:fe:c1:a0:ce:5c:b6:4c:8a +# SHA256 Fingerprint: 9b:ea:11:c9:76:fe:01:47:64:c1:be:56:a6:f9:14:b5:a5:60:31:7a:bd:99:88:39:33:82:e5:16:1a:a0:49:3c +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9 +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBH +bG9iYWwgRzIgUm9vdDAeFw0xNjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0x +CzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEds +b2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxeYr +b3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmToni9 +kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzm +VHqUwCoV8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/R +VogvGjqNO7uCEeBHANBSh6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDc +C/Vkw85DvG1xudLeJ1uK6NjGruFZfc8oLTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIj +tm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/R+zvWr9LesGtOxdQXGLY +D0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBeKW4bHAyv +j5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6Dl +NaBa4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6 +iIis7nCs+dwp4wwcOxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznP +O6Q0ibd5Ei9Hxeepl2n8pndntd978XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIHEjMz15DD/pQwIX4wV +ZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo5sOASD0Ee/oj +L3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 +1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl +1qnN3e92mI0ADs0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oU +b3n09tDh05S60FdRvScFDcH9yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LV +PtateJLbXDzz2K36uGt/xDYotgIVilQsnLAXc47QN6MUPJiVAAwpBVueSUmxX8fj +y88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHojhJi6IjMtX9Gl8Cb +EGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZkbxqg +DMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI ++Vg7RE+xygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGy +YiGqhkCyLmTTX8jjfhFnRR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bX +UB+K+wb1whnw0A== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Extended Validation Root O=UniTrust +# Subject: CN=UCA Extended Validation Root O=UniTrust +# Label: "UCA Extended Validation Root" +# Serial: 106100277556486529736699587978573607008 +# MD5 Fingerprint: a1:f3:5f:43:c6:34:9b:da:bf:8c:7e:05:53:ad:96:e2 +# SHA1 Fingerprint: a3:a1:b0:6f:24:61:23:4a:e3:36:a5:c2:37:fc:a6:ff:dd:f0:d7:3a +# SHA256 Fingerprint: d4:3a:f9:b3:54:73:75:5c:96:84:fc:06:d7:d8:cb:70:ee:5c:28:e7:73:fb:29:4e:b4:1e:e7:17:22:92:4d:24 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBH +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBF +eHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMx +MDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNV +BAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrsiWog +D4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvS +sPGP2KxFRv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aop +O2z6+I9tTcg1367r3CTueUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dk +sHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR59mzLC52LqGj3n5qiAno8geK+LLNEOfi +c0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH0mK1lTnj8/FtDw5lhIpj +VMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KRel7sFsLz +KuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/ +TuDvB0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41G +sx2VYVdWf6/wFlthWG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs +1+lvK9JKBZP8nm9rZ/+I8U6laUpSNwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQD +fwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS3H5aBZ8eNJr34RQwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBADaN +l8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR +ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQ +VBcZEhrxH9cMaVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5 +c6sq1WnIeJEmMX3ixzDx/BR4dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp +4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb+7lsq+KePRXBOy5nAliRn+/4Qh8s +t2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOWF3sGPjLtx7dCvHaj +2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwiGpWO +vpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2C +xR9GUeOcGMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmx +cmtpzyKEC2IPrNkZAJSidjzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbM +fjKaiJUINlK73nZfdklJrX+9ZSCyycErdhh2n1ax +-----END CERTIFICATE----- + +# Issuer: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Subject: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Label: "Certigna Root CA" +# Serial: 269714418870597844693661054334862075617 +# MD5 Fingerprint: 0e:5c:30:62:27:eb:5b:bc:d7:ae:62:ba:e9:d5:df:77 +# SHA1 Fingerprint: 2d:0d:52:14:ff:9e:ad:99:24:01:74:20:47:6e:6c:85:27:27:f5:43 +# SHA256 Fingerprint: d4:8d:3d:23:ee:db:50:a4:59:e5:51:97:60:1c:27:77:4b:9d:7b:18:c9:4d:5a:05:95:11:a1:02:50:b9:31:68 +-----BEGIN CERTIFICATE----- +MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAw +WjELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAw +MiA0ODE0NjMwODEwMDAzNjEZMBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0x +MzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjdaMFoxCzAJBgNVBAYTAkZSMRIwEAYD +VQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAX +BgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sO +ty3tRQgXstmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9M +CiBtnyN6tMbaLOQdLNyzKNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPu +I9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8JXrJhFwLrN1CTivngqIkicuQstDuI7pm +TLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16XdG+RCYyKfHx9WzMfgIh +C59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq4NYKpkDf +ePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3Yz +IoejwpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWT +Co/1VTp2lc5ZmIoJlXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1k +JWumIWmbat10TWuXekG9qxf5kBdIjzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5 +hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp//TBt2dzhauH8XwIDAQABo4IB +GjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of +1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczov +L3d3d3cuY2VydGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilo +dHRwOi8vY3JsLmNlcnRpZ25hLmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYr +aHR0cDovL2NybC5kaGlteW90aXMuY29tL2NlcnRpZ25hcm9vdGNhLmNybDANBgkq +hkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOItOoldaDgvUSILSo3L +6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxPTGRG +HVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH6 +0BGM+RFq7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncB +lA2c5uk5jR+mUYyZDDl34bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdi +o2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1 +gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS6Cvu5zHbugRqh5jnxV/v +faci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaYtlu3zM63 +Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayh +jWZSaX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw +3kAP+HwV96LOPNdeE4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign Root CA - G1" +# Serial: 235931866688319308814040 +# MD5 Fingerprint: 9c:42:84:57:dd:cb:0b:a7:2e:95:ad:b6:f3:da:bc:ac +# SHA1 Fingerprint: 8a:c7:ad:8f:73:ac:4e:c1:b5:75:4d:a5:40:f4:fc:cf:7c:b5:8e:8c +# SHA256 Fingerprint: 40:f6:af:03:46:a9:9a:a1:cd:1d:55:5a:4e:9c:ce:62:c7:f9:63:46:03:ee:40:66:15:83:3d:c8:c8:d0:03:67 +-----BEGIN CERTIFICATE----- +MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYD +VQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBU +ZWNobm9sb2dpZXMgTGltaXRlZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBH +MTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgxODMwMDBaMGcxCzAJBgNVBAYTAklO +MRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xv +Z2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQz +f2N4aLTNLnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO +8oG0x5ZOrRkVUkr+PHB1cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aq +d7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHWDV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhM +tTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ6DqS0hdW5TUaQBw+jSzt +Od9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrHhQIDAQAB +o0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31x +PaOfG1vR2vjTnGs2vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjM +wiI/aTvFthUvozXGaCocV685743QNcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6d +GNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q+Mri/Tm3R7nrft8EI6/6nAYH +6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeihU80Bv2noWgby +RQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx +iN66zB+Afko= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign ECC Root CA - G3" +# Serial: 287880440101571086945156 +# MD5 Fingerprint: ce:0b:72:d1:9f:88:8e:d0:50:03:e8:e3:b8:8b:67:40 +# SHA1 Fingerprint: 30:43:fa:4f:f2:57:dc:a0:c3:80:ee:2e:58:ea:78:b2:3f:e6:bb:c1 +# SHA256 Fingerprint: 86:a1:ec:ba:08:9c:4a:8d:3b:be:27:34:c6:12:ba:34:1d:81:3e:04:3c:f9:e8:a8:62:cd:5c:57:a3:6b:be:6b +-----BEGIN CERTIFICATE----- +MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQG +EwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNo +bm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g +RzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4MTgzMDAwWjBrMQswCQYDVQQGEwJJ +TjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9s +b2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0 +WXTsuwYc58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xyS +fvalY8L1X44uT6EYGQIrMgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuB +zhccLikenEhjQjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggq +hkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+DCBeQyh+KTOgNG3qxrdWB +CUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7jHvrZQnD ++JbNR6iC8hZVdyR+EhCVBCyj +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Label: "emSign Root CA - C1" +# Serial: 825510296613316004955058 +# MD5 Fingerprint: d8:e3:5d:01:21:fa:78:5a:b0:df:ba:d2:ee:2a:5f:68 +# SHA1 Fingerprint: e7:2e:f1:df:fc:b2:09:28:cf:5d:d4:d5:67:37:b1:51:cb:86:4f:01 +# SHA256 Fingerprint: 12:56:09:aa:30:1d:a0:a2:49:b9:7a:82:39:cb:6a:34:21:6f:44:dc:ac:9f:39:54:b1:42:92:f2:e8:c8:60:8f +-----BEGIN CERTIFICATE----- +MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkG +A1UEBhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEg +SW5jMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNpZ24gUm9v +dCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+upufGZ +BczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZ +HdPIWoU/Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH +3DspVpNqs8FqOp099cGXOFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvH +GPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4VI5b2P/AgNBbeCsbEBEV5f6f9vtKppa+c +xSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleoomslMuoaJuvimUnzYnu3Yy1 +aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+XJGFehiq +TbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87 +/kOXSTKZEhVb3xEp/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4 +kqNPEjE2NuLe/gDEo2APJ62gsIq1NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrG +YQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9wC68AivTxEDkigcxHpvOJpkT ++xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQBmIMMMAVSKeo +WXzhriKi4gp6D/piq1JM4fHfyr6DDUI= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Label: "emSign ECC Root CA - C3" +# Serial: 582948710642506000014504 +# MD5 Fingerprint: 3e:53:b3:a3:81:ee:d7:10:f8:d3:b0:1d:17:92:f5:d5 +# SHA1 Fingerprint: b6:af:43:c2:9b:81:53:7d:f6:ef:6b:c3:1f:1f:60:15:0c:ee:48:66 +# SHA256 Fingerprint: bc:4d:80:9b:15:18:9d:78:db:3e:1d:8c:f4:f9:72:6a:79:5d:a1:64:3c:a5:f1:35:8e:1d:db:0e:dc:0d:7e:b3 +-----BEGIN CERTIFICATE----- +MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQG +EwJVUzETMBEGA1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMx +IDAeBgNVBAMTF2VtU2lnbiBFQ0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQDExdlbVNpZ24gRUND +IFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd6bci +MK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4Ojavti +sIGJAnB9SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0O +BBYEFPtaSNCAIEDyqOkAB2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMB +Af8EBTADAQH/MAoGCCqGSM49BAMDA2gAMGUCMQC02C8Cif22TGK6Q04ThHK1rt0c +3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwUZOR8loMRnLDRWmFLpg9J +0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Label: "Hongkong Post Root CA 3" +# Serial: 46170865288971385588281144162979347873371282084 +# MD5 Fingerprint: 11:fc:9f:bd:73:30:02:8a:fd:3f:f3:58:b9:cb:20:f0 +# SHA1 Fingerprint: 58:a2:d0:ec:20:52:81:5b:c1:f3:f8:64:02:24:4e:c2:8e:02:4b:02 +# SHA256 Fingerprint: 5a:2f:c0:3f:0c:83:b0:90:bb:fa:40:60:4b:09:88:44:6c:76:36:18:3d:f9:84:6e:17:10:1a:44:7f:b8:ef:d6 +-----BEGIN CERTIFICATE----- +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 +mpv0 +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G4" +# Serial: 289383649854506086828220374796556676440 +# MD5 Fingerprint: 89:53:f1:83:23:b7:7c:8e:05:f1:8c:71:38:4e:1f:88 +# SHA1 Fingerprint: 14:88:4e:86:26:37:b0:26:af:59:62:5c:40:77:ec:35:29:ba:96:01 +# SHA256 Fingerprint: db:35:17:d1:f6:73:2a:2d:5a:b9:7c:53:3e:c7:07:79:ee:32:70:a6:2f:b4:ac:42:38:37:24:60:e6:f0:1e:88 +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAw +gb4xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQL +Ex9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykg +MjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAw +BgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0 +MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYTAlVT +MRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1 +c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJ +bmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3Qg +Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0MIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3DumSXbcr3DbVZwbPLqGgZ +2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV3imz/f3E +T+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j +5pds8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAM +C1rlLAHGVK/XqsEQe9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73T +DtTUXm6Hnmo9RR3RXRv06QqsYJn7ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNX +wbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5XxNMhIWNlUpEbsZmOeX7m640A +2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV7rtNOzK+mndm +nqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 +dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwl +N4y6mACXi0mWHv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNj +c0kCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9nMA0GCSqGSIb3DQEBCwUAA4ICAQAS +5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4QjbRaZIxowLByQzTS +Gwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht7LGr +hFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/ +B7NTeLUKYvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uI +AeV8KEsD+UmDfLJ/fOPtjqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbw +H5Lk6rWS02FREAutp9lfx1/cH6NcjKF+m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+ +b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKWRGhXxNUzzxkvFMSUHHuk +2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjAJOgc47Ol +IQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk +5F6G+TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuY +n/PIjhs4ViFqUZPTkcpG2om3PVODLAgfi49T3f+sHw== +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft ECC Root Certificate Authority 2017" +# Serial: 136839042543790627607696632466672567020 +# MD5 Fingerprint: dd:a1:03:e6:4a:93:10:d1:bf:f0:19:42:cb:fe:ed:67 +# SHA1 Fingerprint: 99:9a:64:c3:7f:f4:7d:9f:ab:95:f1:47:69:89:14:60:ee:c4:c3:c5 +# SHA256 Fingerprint: 35:8d:f3:9d:76:4a:f9:e1:b7:66:e9:c9:72:df:35:2e:e1:5c:fa:c2:27:af:6a:d1:d7:0e:8e:4a:6e:dc:ba:02 +-----BEGIN CERTIFICATE----- +MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYD +VQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIw +MTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4MjMxNjA0WjBlMQswCQYDVQQGEwJV +UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNy +b3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZR +ogPZnZH6thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYb +hGBKia/teQ87zvH2RPUBeMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBTIy5lycFIM+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3 +FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlfXu5gKcs68tvWMoQZP3zV +L8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaReNtUjGUB +iudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M= +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft RSA Root Certificate Authority 2017" +# Serial: 40975477897264996090493496164228220339 +# MD5 Fingerprint: 10:ff:00:ff:cf:c9:f8:c7:7a:c0:ee:35:8e:c9:0f:47 +# SHA1 Fingerprint: 73:a5:e6:4a:3b:ff:83:16:ff:0e:dc:cc:61:8a:90:6e:4e:ae:4d:74 +# SHA256 Fingerprint: c7:41:f7:0f:4b:2a:8d:88:bf:2e:71:c1:41:22:ef:53:ef:10:eb:a0:cf:a5:e6:4c:fa:20:f4:18:85:30:73:e0 +-----BEGIN CERTIFICATE----- +MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBl +MQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw +NAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIwNzE4MjMwMDIzWjBlMQswCQYDVQQG +EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1N +aWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZ +Nt9GkMml7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0 +ZdDMbRnMlfl7rEqUrQ7eS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1 +HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw71VdyvD/IybLeS2v4I2wDwAW9lcfNcztm +gGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+dkC0zVJhUXAoP8XFWvLJ +jEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49FyGcohJUc +aDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaG +YaRSMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6 +W6IYZVcSn2i51BVrlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4K +UGsTuqwPN1q3ErWQgR5WrlcihtnJ0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH ++FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJClTUFLkqqNfs+avNJVgyeY+Q +W5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZC +LgLNFgVZJ8og6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OC +gMNPOsduET/m4xaRhPtthH80dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6 +tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk+ONVFT24bcMKpBLBaYVu32TxU5nh +SnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex/2kskZGT4d9Mozd2 +TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDyAmH3 +pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGR +xpl/j8nWZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiApp +GWSZI1b7rCoucL5mxAyE7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9 +dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKTc0QWbej09+CVgI+WXTik9KveCjCHk9hN +AHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D5KbvtwEwXlGjefVwaaZB +RA+GsCyRxj3qrg+E +-----END CERTIFICATE----- + +# Issuer: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Subject: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Label: "e-Szigno Root CA 2017" +# Serial: 411379200276854331539784714 +# MD5 Fingerprint: de:1f:f6:9e:84:ae:a7:b4:21:ce:1e:58:7d:d1:84:98 +# SHA1 Fingerprint: 89:d4:83:03:4f:9e:9a:48:80:5f:72:37:d4:a9:a6:ef:cb:7c:1f:d1 +# SHA256 Fingerprint: be:b0:0b:30:83:9b:9b:c3:2c:32:e4:44:79:05:95:06:41:f2:64:21:b1:5e:d0:89:19:8b:51:8a:e2:ea:1b:99 +-----BEGIN CERTIFICATE----- +MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNV +BAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRk +LjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJv +b3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZaFw00MjA4MjIxMjA3MDZaMHExCzAJ +BgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMg +THRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25v +IFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtv +xie+RJCxs1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+H +Wyx7xf58etqjYzBhMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBSHERUI0arBeAyxr87GyZDvvzAEwDAfBgNVHSMEGDAWgBSHERUI0arB +eAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEAtVfd14pVCzbhhkT61Nlo +jbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxOsvxyqltZ ++efcMQ== +-----END CERTIFICATE----- + +# Issuer: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Subject: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Label: "certSIGN Root CA G2" +# Serial: 313609486401300475190 +# MD5 Fingerprint: 8c:f1:75:8a:c6:19:cf:94:b7:f7:65:20:87:c3:97:c7 +# SHA1 Fingerprint: 26:f9:93:b4:ed:3d:28:27:b0:b9:4b:a7:e9:15:1d:a3:8d:92:e5:32 +# SHA256 Fingerprint: 65:7c:fe:2f:a7:3f:aa:38:46:25:71:f3:32:a2:36:3a:46:fc:e7:02:09:51:71:07:02:cd:fb:b6:ee:da:33:05 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNV +BAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04g +Uk9PVCBDQSBHMjAeFw0xNzAyMDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJ +BgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJ +R04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDF +dRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05N0Iw +vlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZ +uIt4ImfkabBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhp +n+Sc8CnTXPnGFiWeI8MgwT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKs +cpc/I1mbySKEwQdPzH/iV8oScLumZfNpdWO9lfsbl83kqK/20U6o2YpxJM02PbyW +xPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91QqhngLjYl/rNUssuHLoPj1P +rCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732jcZZroiF +DsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fx +DTvf95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgy +LcsUDFDYg2WD7rlcz8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6C +eWRgKRM+o/1Pcmqr4tTluCRVLERLiohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSCIS1mxteg4BXrzkwJ +d8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOBywaK8SJJ6ejq +kX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC +b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQl +qiCA2ClV9+BB/AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0 +OJD7uNGzcgbJceaBxXntC6Z58hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+c +NywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5BiKDUyUM/FHE5r7iOZULJK2v0ZXk +ltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklWatKcsWMy5WHgUyIO +pwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tUSxfj +03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZk +PuXaTH4MNMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE +1LlSVHJ7liXMvGnjSG4N0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MX +QRBdJ3NghVdJIgc= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global Certification Authority" +# Serial: 1846098327275375458322922162 +# MD5 Fingerprint: f8:1c:18:2d:2f:ba:5f:6d:a1:6c:bc:c7:ab:91:c7:0e +# SHA1 Fingerprint: 2f:8f:36:4f:e1:58:97:44:21:59:87:a5:2a:9a:d0:69:95:26:7f:b5 +# SHA256 Fingerprint: 97:55:20:15:f5:dd:fc:3c:87:88:c0:06:94:45:55:40:88:94:45:00:84:f1:00:86:70:86:bc:1a:2b:b5:8d:c8 +-----BEGIN CERTIFICATE----- +MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQsw +CQYDVQQGEwJVUzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28x +ITAfBgNVBAoMGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1 +c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMx +OTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJVUzERMA8GA1UECAwI +SWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2ZSBI +b2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +ALldUShLPDeS0YLOvR29zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0Xzn +swuvCAAJWX/NKSqIk4cXGIDtiLK0thAfLdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu +7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4BqstTnoApTAbqOl5F2brz8 +1Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9oWN0EACyW +80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotP +JqX+OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1l +RtzuzWniTY+HKE40Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfw +hI0Vcnyh78zyiGG69Gm7DIwLdVcEuE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10 +coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm+9jaJXLE9gCxInm943xZYkqc +BW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqjifLJS3tBEW1n +twiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1Ud +DwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W +0OhUKDtkLSGm+J1WE2pIPU/HPinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfe +uyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0HZJDmHvUqoai7PF35owgLEQzxPy0Q +lG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla4gt5kNdXElE1GYhB +aCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5RvbbE +sLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPT +MaCm/zjdzyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qe +qu5AvzSxnI9O4fKSTx+O856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxh +VicGaeVyQYHTtgGJoC86cnn+OjC/QezHYj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8 +h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu3R3y4G5OBVixwJAWKqQ9 +EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP29FpHOTK +yeC2nOnOcXHebD8WpHk= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P256 Certification Authority" +# Serial: 4151900041497450638097112925 +# MD5 Fingerprint: 5b:44:e3:8d:5d:36:86:26:e8:0d:05:d2:59:a7:83:54 +# SHA1 Fingerprint: b4:90:82:dd:45:0c:be:8b:5b:b1:66:d3:e2:a4:08:26:cd:ed:42:cf +# SHA256 Fingerprint: 94:5b:bc:82:5e:a5:54:f4:89:d1:fd:51:a7:3d:df:2e:a6:24:ac:70:19:a0:52:05:22:5c:22:a7:8c:cf:a8:b4 +-----BEGIN CERTIFICATE----- +MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABH77bOYj43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoN +FWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqmP62jQzBBMA8GA1UdEwEB/wQFMAMBAf8w +DwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt0UrrdaVKEJmzsaGLSvcw +CgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjzRM4q3wgh +DDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7 +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P384 Certification Authority" +# Serial: 2704997926503831671788816187 +# MD5 Fingerprint: ea:cf:60:c4:3b:b9:15:29:40:a1:97:ed:78:27:93:d6 +# SHA1 Fingerprint: e7:f3:a3:c8:cf:6f:c3:04:2e:6d:0e:67:32:c5:9e:68:95:0d:5e:d2 +# SHA256 Fingerprint: 55:90:38:59:c8:c0:c3:eb:b8:75:9e:ce:4e:25:57:22:5f:f5:75:8b:bd:38:eb:d4:82:76:60:1e:1b:d5:80:97 +-----BEGIN CERTIFICATE----- +MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuB +BAAiA2IABGvaDXU1CDFHBa5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJ +j9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr/TklZvFe/oyujUF5nQlgziip04pt89ZF +1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNVHQ8BAf8EBQMDBwYAMB0G +A1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNnADBkAjA3 +AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsC +MGclCrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVu +Sw== +-----END CERTIFICATE----- + +# Issuer: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Subject: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Label: "NAVER Global Root Certification Authority" +# Serial: 9013692873798656336226253319739695165984492813 +# MD5 Fingerprint: c8:7e:41:f6:25:3b:f5:09:b3:17:e8:46:3d:bf:d0:9b +# SHA1 Fingerprint: 8f:6b:f2:a9:27:4a:da:14:a0:c4:f4:8e:61:27:f9:c0:1e:78:5d:d1 +# SHA256 Fingerprint: 88:f4:38:dc:f8:ff:d1:fa:8f:42:91:15:ff:e5:f8:2a:e1:e0:6e:0c:70:c3:75:fa:ad:71:7b:34:a4:9e:72:65 +-----BEGIN CERTIFICATE----- +MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEM +BQAwaTELMAkGA1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRG +T1JNIENvcnAuMTIwMAYDVQQDDClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4NDJaFw0zNzA4MTgyMzU5NTlaMGkx +CzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBD +b3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVA +iQqrDZBbUGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH +38dq6SZeWYp34+hInDEW+j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lE +HoSTGEq0n+USZGnQJoViAbbJAh2+g1G7XNr4rRVqmfeSVPc0W+m/6imBEtRTkZaz +kVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2aacp+yPOiNgSnABIqKYP +szuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4Yb8Obtoq +vC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHf +nZ3zVHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaG +YQ5fG8Ir4ozVu53BA0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo +0es+nPxdGoMuK8u180SdOqcXYZaicdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3a +CJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejyYhbLgGvtPe31HzClrkvJE+2K +AQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNVHQ4EFgQU0p+I +36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB +Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoN +qo0hV4/GPnrK21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatj +cu3cvuzHV+YwIHHW1xDBE1UBjCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm ++LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bxhYTeodoS76TiEJd6eN4MUZeoIUCL +hr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTgE34h5prCy8VCZLQe +lHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTHD8z7 +p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8 +piKCk5XQA76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLR +LBT/DShycpWbXgnbiUSYqqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX +5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oGI/hGoiLtk/bdmuYqh7GYVPEi92tF4+KO +dh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmgkpzNNIaRkPpkUZ3+/uul +9XXeifdy +-----END CERTIFICATE----- + +# Issuer: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Subject: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Label: "AC RAIZ FNMT-RCM SERVIDORES SEGUROS" +# Serial: 131542671362353147877283741781055151509 +# MD5 Fingerprint: 19:36:9c:52:03:2f:d2:d1:bb:23:cc:dd:1e:12:55:bb +# SHA1 Fingerprint: 62:ff:d9:9e:c0:65:0d:03:ce:75:93:d2:ed:3f:2d:32:c9:e3:e5:4a +# SHA256 Fingerprint: 55:41:53:b1:3d:2c:f9:dd:b7:53:bf:be:1a:4e:0a:e0:8d:0a:a4:18:70:58:fe:60:a2:b8:62:b2:e4:b8:7b:cb +-----BEGIN CERTIFICATE----- +MIICbjCCAfOgAwIBAgIQYvYybOXE42hcG2LdnC6dlTAKBggqhkjOPQQDAzB4MQsw +CQYDVQQGEwJFUzERMA8GA1UECgwIRk5NVC1SQ00xDjAMBgNVBAsMBUNlcmVzMRgw +FgYDVQRhDA9WQVRFUy1RMjgyNjAwNEoxLDAqBgNVBAMMI0FDIFJBSVogRk5NVC1S +Q00gU0VSVklET1JFUyBTRUdVUk9TMB4XDTE4MTIyMDA5MzczM1oXDTQzMTIyMDA5 +MzczM1oweDELMAkGA1UEBhMCRVMxETAPBgNVBAoMCEZOTVQtUkNNMQ4wDAYDVQQL +DAVDZXJlczEYMBYGA1UEYQwPVkFURVMtUTI4MjYwMDRKMSwwKgYDVQQDDCNBQyBS +QUlaIEZOTVQtUkNNIFNFUlZJRE9SRVMgU0VHVVJPUzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPa6V1PIyqvfNkpSIeSX0oNnnvBlUdBeh8dHsVnyV0ebAAKTRBdp20LH +sbI6GA60XYyzZl2hNPk2LEnb80b8s0RpRBNm/dfF/a82Tc4DTQdxz69qBdKiQ1oK +Um8BA06Oi6NCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFAG5L++/EYZg8k/QQW6rcx/n0m5JMAoGCCqGSM49BAMDA2kAMGYCMQCu +SuMrQMN0EfKVrRYj3k4MGuZdpSRea0R7/DjiT8ucRRcRTBQnJlU5dUoDzBOQn5IC +MQD6SmxgiHPz7riYYqnOK8LZiqZwMR2vsJRM60/G49HzYqc8/5MuB1xJAWdpEgJy +v+c= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Label: "GlobalSign Root R46" +# Serial: 1552617688466950547958867513931858518042577 +# MD5 Fingerprint: c4:14:30:e4:fa:66:43:94:2a:6a:1b:24:5f:19:d0:ef +# SHA1 Fingerprint: 53:a2:b0:4b:ca:6b:d6:45:e6:39:8a:8e:c4:0d:d2:bf:77:c3:a2:90 +# SHA256 Fingerprint: 4f:a3:12:6d:8d:3a:11:d1:c4:85:5a:4f:80:7c:ba:d6:cf:91:9d:3a:5a:88:b0:3b:ea:2c:63:72:d9:3c:40:c9 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgISEdK7udcjGJ5AXwqdLdDfJWfRMA0GCSqGSIb3DQEBDAUA +MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYD +VQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMy +MDAwMDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYt +c2ExHDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCsrHQy6LNl5brtQyYdpokNRbopiLKkHWPd08EsCVeJ +OaFV6Wc0dwxu5FUdUiXSE2te4R2pt32JMl8Nnp8semNgQB+msLZ4j5lUlghYruQG +vGIFAha/r6gjA7aUD7xubMLL1aa7DOn2wQL7Id5m3RerdELv8HQvJfTqa1VbkNud +316HCkD7rRlr+/fKYIje2sGP1q7Vf9Q8g+7XFkyDRTNrJ9CG0Bwta/OrffGFqfUo +0q3v84RLHIf8E6M6cqJaESvWJ3En7YEtbWaBkoe0G1h6zD8K+kZPTXhc+CtI4wSE +y132tGqzZfxCnlEmIyDLPRT5ge1lFgBPGmSXZgjPjHvjK8Cd+RTyG/FWaha/LIWF +zXg4mutCagI0GIMXTpRW+LaCtfOW3T3zvn8gdz57GSNrLNRyc0NXfeD412lPFzYE ++cCQYDdF3uYM2HSNrpyibXRdQr4G9dlkbgIQrImwTDsHTUB+JMWKmIJ5jqSngiCN +I/onccnfxkF0oE32kRbcRoxfKWMxWXEM2G/CtjJ9++ZdU6Z+Ffy7dXxd7Pj2Fxzs +x2sZy/N78CsHpdlseVR2bJ0cpm4O6XkMqCNqo98bMDGfsVR7/mrLZqrcZdCinkqa +ByFrgY/bxFn63iLABJzjqls2k+g9vXqhnQt2sQvHnf3PmKgGwvgqo6GDoLclcqUC +4wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUA1yrc4GHqMywptWU4jaWSf8FmSwwDQYJKoZIhvcNAQEMBQADggIBAHx4 +7PYCLLtbfpIrXTncvtgdokIzTfnvpCo7RGkerNlFo048p9gkUbJUHJNOxO97k4Vg +JuoJSOD1u8fpaNK7ajFxzHmuEajwmf3lH7wvqMxX63bEIaZHU1VNaL8FpO7XJqti +2kM3S+LGteWygxk6x9PbTZ4IevPuzz5i+6zoYMzRx6Fcg0XERczzF2sUyQQCPtIk +pnnpHs6i58FZFZ8d4kuaPp92CC1r2LpXFNqD6v6MVenQTqnMdzGxRBF6XLE+0xRF +FRhiJBPSy03OXIPBNvIQtQ6IbbjhVp+J3pZmOUdkLG5NrmJ7v2B0GbhWrJKsFjLt +rWhV/pi60zTe9Mlhww6G9kuEYO4Ne7UyWHmRVSyBQ7N0H3qqJZ4d16GLuc1CLgSk +ZoNNiTW2bKg2SnkheCLQQrzRQDGQob4Ez8pn7fXwgNNgyYMqIgXQBztSvwyeqiv5 +u+YfjyW6hY0XHgL+XVAEV8/+LbzvXMAaq7afJMbfc2hIkCwU9D9SGuTSyxTDYWnP +4vkYxboznxSjBF25cfe1lNj2M8FawTSLfJvdkzrnE6JwYZ+vj+vYxXX4M2bUdGc6 +N3ec592kD3ZDZopD8p/7DEJ4Y9HiD2971KE9dJeFt0g5QdYg/NA6s/rob8SKunE3 +vouXsXgxT7PntgMTzlSdriVZzH81Xwj3QEUxeCp6 +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Label: "GlobalSign Root E46" +# Serial: 1552617690338932563915843282459653771421763 +# MD5 Fingerprint: b5:b8:66:ed:de:08:83:e3:c9:e2:01:34:06:ac:51:6f +# SHA1 Fingerprint: 39:b4:6c:d5:fe:80:06:eb:e2:2f:4a:bb:08:33:a0:af:db:b9:dd:84 +# SHA256 Fingerprint: cb:b9:c4:4d:84:b8:04:3e:10:50:ea:31:a6:9f:51:49:55:d7:bf:d2:e2:c6:b4:93:01:01:9a:d6:1d:9f:50:58 +-----BEGIN CERTIFICATE----- +MIICCzCCAZGgAwIBAgISEdK7ujNu1LzmJGjFDYQdmOhDMAoGCCqGSM49BAMDMEYx +CzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQD +ExNHbG9iYWxTaWduIFJvb3QgRTQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMyMDAw +MDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2Ex +HDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAScDrHPt+ieUnd1NPqlRqetMhkytAepJ8qUuwzSChDH2omwlwxwEwkBjtjq +R+q+soArzfwoDdusvKSGN+1wCAB16pMLey5SnCNoIwZD7JIvU4Tb+0cUB+hflGdd +yXqBPCCjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBQxCpCPtsad0kRLgLWi5h+xEk8blTAKBggqhkjOPQQDAwNoADBlAjEA31SQ +7Zvvi5QCkxeCmb6zniz2C5GMn0oUsfZkvLtoURMMA/cVi4RguYv/Uo7njLwcAjA8 ++RHUjE7AwWHCFUyqqx0LMV87HOIAl0Qx5v5zli/altP+CAezNIm8BZ/3Hobui3A= +-----END CERTIFICATE----- + +# Issuer: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Subject: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Label: "ANF Secure Server Root CA" +# Serial: 996390341000653745 +# MD5 Fingerprint: 26:a6:44:5a:d9:af:4e:2f:b2:1d:b6:65:b0:4e:e8:96 +# SHA1 Fingerprint: 5b:6e:68:d0:cc:15:b6:a0:5f:1e:c1:5f:ae:02:fc:6b:2f:5d:6f:74 +# SHA256 Fingerprint: fb:8f:ec:75:91:69:b9:10:6b:1e:51:16:44:c6:18:c5:13:04:37:3f:6c:06:43:08:8d:8b:ef:fd:1b:99:75:99 +-----BEGIN CERTIFICATE----- +MIIF7zCCA9egAwIBAgIIDdPjvGz5a7EwDQYJKoZIhvcNAQELBQAwgYQxEjAQBgNV +BAUTCUc2MzI4NzUxMDELMAkGA1UEBhMCRVMxJzAlBgNVBAoTHkFORiBBdXRvcmlk +YWQgZGUgQ2VydGlmaWNhY2lvbjEUMBIGA1UECxMLQU5GIENBIFJhaXoxIjAgBgNV +BAMTGUFORiBTZWN1cmUgU2VydmVyIFJvb3QgQ0EwHhcNMTkwOTA0MTAwMDM4WhcN +MzkwODMwMTAwMDM4WjCBhDESMBAGA1UEBRMJRzYzMjg3NTEwMQswCQYDVQQGEwJF +UzEnMCUGA1UEChMeQU5GIEF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uMRQwEgYD +VQQLEwtBTkYgQ0EgUmFpejEiMCAGA1UEAxMZQU5GIFNlY3VyZSBTZXJ2ZXIgUm9v +dCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANvrayvmZFSVgpCj +cqQZAZ2cC4Ffc0m6p6zzBE57lgvsEeBbphzOG9INgxwruJ4dfkUyYA8H6XdYfp9q +yGFOtibBTI3/TO80sh9l2Ll49a2pcbnvT1gdpd50IJeh7WhM3pIXS7yr/2WanvtH +2Vdy8wmhrnZEE26cLUQ5vPnHO6RYPUG9tMJJo8gN0pcvB2VSAKduyK9o7PQUlrZX +H1bDOZ8rbeTzPvY1ZNoMHKGESy9LS+IsJJ1tk0DrtSOOMspvRdOoiXsezx76W0OL +zc2oD2rKDF65nkeP8Nm2CgtYZRczuSPkdxl9y0oukntPLxB3sY0vaJxizOBQ+OyR +p1RMVwnVdmPF6GUe7m1qzwmd+nxPrWAI/VaZDxUse6mAq4xhj0oHdkLePfTdsiQz +W7i1o0TJrH93PB0j7IKppuLIBkwC/qxcmZkLLxCKpvR/1Yd0DVlJRfbwcVw5Kda/ +SiOL9V8BY9KHcyi1Swr1+KuCLH5zJTIdC2MKF4EA/7Z2Xue0sUDKIbvVgFHlSFJn +LNJhiQcND85Cd8BEc5xEUKDbEAotlRyBr+Qc5RQe8TZBAQIvfXOn3kLMTOmJDVb3 +n5HUA8ZsyY/b2BzgQJhdZpmYgG4t/wHFzstGH6wCxkPmrqKEPMVOHj1tyRRM4y5B +u8o5vzY8KhmqQYdOpc5LMnndkEl/AgMBAAGjYzBhMB8GA1UdIwQYMBaAFJxf0Gxj +o1+TypOYCK2Mh6UsXME3MB0GA1UdDgQWBBScX9BsY6Nfk8qTmAitjIelLFzBNzAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOC +AgEATh65isagmD9uw2nAalxJUqzLK114OMHVVISfk/CHGT0sZonrDUL8zPB1hT+L +9IBdeeUXZ701guLyPI59WzbLWoAAKfLOKyzxj6ptBZNscsdW699QIyjlRRA96Gej +rw5VD5AJYu9LWaL2U/HANeQvwSS9eS9OICI7/RogsKQOLHDtdD+4E5UGUcjohybK +pFtqFiGS3XNgnhAY3jyB6ugYw3yJ8otQPr0R4hUDqDZ9MwFsSBXXiJCZBMXM5gf0 +vPSQ7RPi6ovDj6MzD8EpTBNO2hVWcXNyglD2mjN8orGoGjR0ZVzO0eurU+AagNjq +OknkJjCb5RyKqKkVMoaZkgoQI1YS4PbOTOK7vtuNknMBZi9iPrJyJ0U27U1W45eZ +/zo1PqVUSlJZS2Db7v54EX9K3BR5YLZrZAPbFYPhor72I5dQ8AkzNqdxliXzuUJ9 +2zg/LFis6ELhDtjTO0wugumDLmsx2d1Hhk9tl5EuT+IocTUW0fJz/iUrB0ckYyfI ++PbZa/wSMVYIwFNCr5zQM378BvAxRAMU8Vjq8moNqRGyg77FGr8H6lnco4g175x2 +MjxNBiLOFeXdntiP2t7SxDnlF4HPOEfrf4htWRvfn0IUrn7PqLBmZdo3r5+qPeoo +tt7VMVgWglvquxl1AnMaykgaIZOQCo6ThKd9OyMYkomgjaw= +-----END CERTIFICATE----- + +# Issuer: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum EC-384 CA" +# Serial: 160250656287871593594747141429395092468 +# MD5 Fingerprint: b6:65:b3:96:60:97:12:a1:ec:4e:e1:3d:a3:c6:c9:f1 +# SHA1 Fingerprint: f3:3e:78:3c:ac:df:f4:a2:cc:ac:67:55:69:56:d7:e5:16:3c:e1:ed +# SHA256 Fingerprint: 6b:32:80:85:62:53:18:aa:50:d1:73:c9:8d:8b:da:09:d5:7e:27:41:3d:11:4c:f7:87:a0:f5:d0:6c:03:0c:f6 +-----BEGIN CERTIFICATE----- +MIICZTCCAeugAwIBAgIQeI8nXIESUiClBNAt3bpz9DAKBggqhkjOPQQDAzB0MQsw +CQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScw +JQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAXBgNVBAMT +EENlcnR1bSBFQy0zODQgQ0EwHhcNMTgwMzI2MDcyNDU0WhcNNDMwMzI2MDcyNDU0 +WjB0MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBT +LkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAX +BgNVBAMTEENlcnR1bSBFQy0zODQgQ0EwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATE +KI6rGFtqvm5kN2PkzeyrOvfMobgOgknXhimfoZTy42B4mIF4Bk3y7JoOV2CDn7Tm +Fy8as10CW4kjPMIRBSqniBMY81CE1700LCeJVf/OTOffph8oxPBUw7l8t1Ot68Kj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI0GZnQkdjrzife81r1HfS+8 +EF9LMA4GA1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNoADBlAjADVS2m5hjEfO/J +UG7BJw+ch69u1RsIGL2SKcHvlJF40jocVYli5RsJHrpka/F2tNQCMQC0QoSZ/6vn +nvuRlydd3LBbMHHOXjgaatkl5+r3YZJW+OraNsKHZZYuciUvf9/DE8k= +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Root CA" +# Serial: 40870380103424195783807378461123655149 +# MD5 Fingerprint: 51:e1:c2:e7:fe:4c:84:af:59:0e:2f:f4:54:6f:ea:29 +# SHA1 Fingerprint: c8:83:44:c0:18:ae:9f:cc:f1:87:b7:8f:22:d1:c5:d7:45:84:ba:e5 +# SHA256 Fingerprint: fe:76:96:57:38:55:77:3e:37:a9:5e:7a:d4:d9:cc:96:c3:01:57:c1:5d:31:76:5b:a9:b1:57:04:e1:ae:78:fd +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Subject: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Label: "TunTrust Root CA" +# Serial: 108534058042236574382096126452369648152337120275 +# MD5 Fingerprint: 85:13:b9:90:5b:36:5c:b6:5e:b8:5a:f8:e0:31:57:b4 +# SHA1 Fingerprint: cf:e9:70:84:0f:e0:73:0f:9d:f6:0c:7f:2c:4b:ee:20:46:34:9c:bb +# SHA256 Fingerprint: 2e:44:10:2a:b5:8c:b8:54:19:45:1c:8e:19:d9:ac:f3:66:2c:af:bc:61:4b:6a:53:96:0a:30:f7:d0:e2:eb:41 +-----BEGIN CERTIFICATE----- +MIIFszCCA5ugAwIBAgIUEwLV4kBMkkaGFmddtLu7sms+/BMwDQYJKoZIhvcNAQEL +BQAwYTELMAkGA1UEBhMCVE4xNzA1BgNVBAoMLkFnZW5jZSBOYXRpb25hbGUgZGUg +Q2VydGlmaWNhdGlvbiBFbGVjdHJvbmlxdWUxGTAXBgNVBAMMEFR1blRydXN0IFJv +b3QgQ0EwHhcNMTkwNDI2MDg1NzU2WhcNNDQwNDI2MDg1NzU2WjBhMQswCQYDVQQG +EwJUTjE3MDUGA1UECgwuQWdlbmNlIE5hdGlvbmFsZSBkZSBDZXJ0aWZpY2F0aW9u +IEVsZWN0cm9uaXF1ZTEZMBcGA1UEAwwQVHVuVHJ1c3QgUm9vdCBDQTCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAMPN0/y9BFPdDCA61YguBUtB9YOCfvdZ +n56eY+hz2vYGqU8ftPkLHzmMmiDQfgbU7DTZhrx1W4eI8NLZ1KMKsmwb60ksPqxd +2JQDoOw05TDENX37Jk0bbjBU2PWARZw5rZzJJQRNmpA+TkBuimvNKWfGzC3gdOgF +VwpIUPp6Q9p+7FuaDmJ2/uqdHYVy7BG7NegfJ7/Boce7SBbdVtfMTqDhuazb1YMZ +GoXRlJfXyqNlC/M4+QKu3fZnz8k/9YosRxqZbwUN/dAdgjH8KcwAWJeRTIAAHDOF +li/LQcKLEITDCSSJH7UP2dl3RxiSlGBcx5kDPP73lad9UKGAwqmDrViWVSHbhlnU +r8a83YFuB9tgYv7sEG7aaAH0gxupPqJbI9dkxt/con3YS7qC0lH4Zr8GRuR5KiY2 +eY8fTpkdso8MDhz/yV3A/ZAQprE38806JG60hZC/gLkMjNWb1sjxVj8agIl6qeIb +MlEsPvLfe/ZdeikZjuXIvTZxi11Mwh0/rViizz1wTaZQmCXcI/m4WEEIcb9PuISg +jwBUFfyRbVinljvrS5YnzWuioYasDXxU5mZMZl+QviGaAkYt5IPCgLnPSz7ofzwB +7I9ezX/SKEIBlYrilz0QIX32nRzFNKHsLA4KUiwSVXAkPcvCFDVDXSdOvsC9qnyW +5/yeYa1E0wCXAgMBAAGjYzBhMB0GA1UdDgQWBBQGmpsfU33x9aTI04Y+oXNZtPdE +ITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFAaamx9TffH1pMjThj6hc1m0 +90QhMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAqgVutt0Vyb+z +xiD2BkewhpMl0425yAA/l/VSJ4hxyXT968pk21vvHl26v9Hr7lxpuhbI87mP0zYu +QEkHDVneixCwSQXi/5E/S7fdAo74gShczNxtr18UnH1YeA32gAm56Q6XKRm4t+v4 +FstVEuTGfbvE7Pi1HE4+Z7/FXxttbUcoqgRYYdZ2vyJ/0Adqp2RT8JeNnYA/u8EH +22Wv5psymsNUk8QcCMNE+3tjEUPRahphanltkE8pjkcFwRJpadbGNjHh/PqAulxP +xOu3Mqz4dWEX1xAZufHSCe96Qp1bWgvUxpVOKs7/B9dPfhgGiPEZtdmYu65xxBzn +dFlY7wyJz4sfdZMaBBSSSFCp61cpABbjNhzI+L/wM9VBD8TMPN3pM0MBkRArHtG5 +Xc0yGYuPjCB31yLEQtyEFpslbei0VXF/sHyz03FJuc9SpAQ/3D2gu68zngowYI7b +nV2UqL1g52KAdoGDDIzMMEZJ4gzSqK/rYXHv5yJiqfdcZGyfFoxnNidF9Ql7v/YQ +CvGwjVRDjAS6oz/v4jXH+XTgbzRB0L9zZVcg+ZtnemZoJE6AZb0QmQZZ8mWvuMZH +u/2QeItBcy6vVR/cO5JyboTT0GFMDcx2V+IthSIVNg3rAZ3r2OvEhJn7wAzMMujj +d9qDRIueVSjAi1jTkD5OGwDxFa2DK5o= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS RSA Root CA 2021" +# Serial: 76817823531813593706434026085292783742 +# MD5 Fingerprint: 65:47:9b:58:86:dd:2c:f0:fc:a2:84:1f:1e:96:c4:91 +# SHA1 Fingerprint: 02:2d:05:82:fa:88:ce:14:0c:06:79:de:7f:14:10:e9:45:d7:a5:6d +# SHA256 Fingerprint: d9:5d:0e:8e:da:79:52:5b:f9:be:b1:1b:14:d2:10:0d:32:94:98:5f:0c:62:d9:fa:bd:9c:d9:99:ec:cb:7b:1d +-----BEGIN CERTIFICATE----- +MIIFpDCCA4ygAwIBAgIQOcqTHO9D88aOk8f0ZIk4fjANBgkqhkiG9w0BAQsFADBs +MQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBSU0Eg +Um9vdCBDQSAyMDIxMB4XDTIxMDIxOTEwNTUzOFoXDTQ1MDIxMzEwNTUzN1owbDEL +MAkGA1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl +YXJjaCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgUlNBIFJv +b3QgQ0EgMjAyMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAIvC569l +mwVnlskNJLnQDmT8zuIkGCyEf3dRywQRNrhe7Wlxp57kJQmXZ8FHws+RFjZiPTgE +4VGC/6zStGndLuwRo0Xua2s7TL+MjaQenRG56Tj5eg4MmOIjHdFOY9TnuEFE+2uv +a9of08WRiFukiZLRgeaMOVig1mlDqa2YUlhu2wr7a89o+uOkXjpFc5gH6l8Cct4M +pbOfrqkdtx2z/IpZ525yZa31MJQjB/OCFks1mJxTuy/K5FrZx40d/JiZ+yykgmvw +Kh+OC19xXFyuQnspiYHLA6OZyoieC0AJQTPb5lh6/a6ZcMBaD9YThnEvdmn8kN3b +LW7R8pv1GmuebxWMevBLKKAiOIAkbDakO/IwkfN4E8/BPzWr8R0RI7VDIp4BkrcY +AuUR0YLbFQDMYTfBKnya4dC6s1BG7oKsnTH4+yPiAwBIcKMJJnkVU2DzOFytOOqB +AGMUuTNe3QvboEUHGjMJ+E20pwKmafTCWQWIZYVWrkvL4N48fS0ayOn7H6NhStYq +E613TBoYm5EPWNgGVMWX+Ko/IIqmhaZ39qb8HOLubpQzKoNQhArlT4b4UEV4AIHr +W2jjJo3Me1xR9BQsQL4aYB16cmEdH2MtiKrOokWQCPxrvrNQKlr9qEgYRtaQQJKQ +CoReaDH46+0N0x3GfZkYVVYnZS6NRcUk7M7jAgMBAAGjQjBAMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFApII6ZgpJIKM+qTW8VX6iVNvRLuMA4GA1UdDwEB/wQE +AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAPpBIqm5iFSVmewzVjIuJndftTgfvnNAU +X15QvWiWkKQUEapobQk1OUAJ2vQJLDSle1mESSmXdMgHHkdt8s4cUCbjnj1AUz/3 +f5Z2EMVGpdAgS1D0NTsY9FVqQRtHBmg8uwkIYtlfVUKqrFOFrJVWNlar5AWMxaja +H6NpvVMPxP/cyuN+8kyIhkdGGvMA9YCRotxDQpSbIPDRzbLrLFPCU3hKTwSUQZqP +JzLB5UkZv/HywouoCjkxKLR9YjYsTewfM7Z+d21+UPCfDtcRj88YxeMn/ibvBZ3P +zzfF0HvaO7AWhAw6k9a+F9sPPg4ZeAnHqQJyIkv3N3a6dcSFA1pj1bF1BcK5vZSt +jBWZp5N99sXzqnTPBIWUmAD04vnKJGW/4GKvyMX6ssmeVkjaef2WdhW+o45WxLM0 +/L5H9MG0qPzVMIho7suuyWPEdr6sOBjhXlzPrjoiUevRi7PzKzMHVIf6tLITe7pT +BGIBnfHAT+7hOtSLIBD6Alfm78ELt5BGnBkpjNxvoEppaZS3JGWg/6w/zgH7IS79 +aPib8qXPMThcFarmlwDB31qlpzmq6YR/PFGoOtmUW4y/Twhx5duoXNTSpv4Ao8YW +xw/ogM4cKGR0GQjTQuPOAF1/sdwTsOEFy9EgqoZ0njnnkf3/W9b3raYvAwtt41dU +63ZTGI0RmLo= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS ECC Root CA 2021" +# Serial: 137515985548005187474074462014555733966 +# MD5 Fingerprint: ae:f7:4c:e5:66:35:d1:b7:9b:8c:22:93:74:d3:4b:b0 +# SHA1 Fingerprint: bc:b0:c1:9d:e9:98:92:70:19:38:57:e9:8d:a7:b4:5d:6e:ee:01:48 +# SHA256 Fingerprint: 3f:99:cc:47:4a:cf:ce:4d:fe:d5:87:94:66:5e:47:8d:15:47:73:9f:2e:78:0f:1b:b4:ca:9b:13:30:97:d4:01 +-----BEGIN CERTIFICATE----- +MIICVDCCAdugAwIBAgIQZ3SdjXfYO2rbIvT/WeK/zjAKBggqhkjOPQQDAzBsMQsw +CQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2Vh +cmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBFQ0MgUm9v +dCBDQSAyMDIxMB4XDTIxMDIxOTExMDExMFoXDTQ1MDIxMzExMDEwOVowbDELMAkG +A1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj +aCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgRUNDIFJvb3Qg +Q0EgMjAyMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABDgI/rGgltJ6rK9JOtDA4MM7 +KKrxcm1lAEeIhPyaJmuqS7psBAqIXhfyVYf8MLA04jRYVxqEU+kw2anylnTDUR9Y +STHMmE5gEYd103KUkE+bECUqqHgtvpBBWJAVcqeht6NCMEAwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUyRtTgRL+BNUW0aq8mm+3oJUZbsowDgYDVR0PAQH/BAQD +AgGGMAoGCCqGSM49BAMDA2cAMGQCMBHervjcToiwqfAircJRQO9gcS3ujwLEXQNw +SaSS6sUUiHCm0w2wqsosQJz76YJumgIwK0eaB8bRwoF8yguWGEEbo/QwCZ61IygN +nxS2PFOiTAZpffpskcYqSUXm7LcT4Tps +-----END CERTIFICATE----- + +# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" +# Serial: 1977337328857672817 +# MD5 Fingerprint: 4e:6e:9b:54:4c:ca:b7:fa:48:e4:90:b1:15:4b:1c:a3 +# SHA1 Fingerprint: 0b:be:c2:27:22:49:cb:39:aa:db:35:5c:53:e3:8c:ae:78:ff:b6:fe +# SHA256 Fingerprint: 57:de:05:83:ef:d2:b2:6e:03:61:da:99:da:9d:f4:64:8d:ef:7e:e8:44:1c:3b:72:8a:fa:9b:cd:e0:f9:b2:6a +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIG3Dp0v+ubHEwDQYJKoZIhvcNAQELBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0xNDA5MjMxNTIyMDdaFw0zNjA1 +MDUxNTIyMDdaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMB0GA1UdDgQWBBRlzeurNR4APn7VdMAc +tHNHDhpkLzASBgNVHRMBAf8ECDAGAQH/AgEBMIGmBgNVHSAEgZ4wgZswgZgGBFUd +IAAwgY8wLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cuZmlybWFwcm9mZXNpb25hbC5j +b20vY3BzMFwGCCsGAQUFBwICMFAeTgBQAGEAcwBlAG8AIABkAGUAIABsAGEAIABC +AG8AbgBhAG4AbwB2AGEAIAA0ADcAIABCAGEAcgBjAGUAbABvAG4AYQAgADAAOAAw +ADEANzAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQELBQADggIBAHSHKAIrdx9m +iWTtj3QuRhy7qPj4Cx2Dtjqn6EWKB7fgPiDL4QjbEwj4KKE1soCzC1HA01aajTNF +Sa9J8OA9B3pFE1r/yJfY0xgsfZb43aJlQ3CTkBW6kN/oGbDbLIpgD7dvlAceHabJ +hfa9NPhAeGIQcDq+fUs5gakQ1JZBu/hfHAsdCPKxsIl68veg4MSPi3i1O1ilI45P +Vf42O+AMt8oqMEEgtIDNrvx2ZnOorm7hfNoD6JQg5iKj0B+QXSBTFCZX2lSX3xZE +EAEeiGaPcjiT3SC3NL7X8e5jjkd5KAb881lFJWAiMxujX6i6KtoaPc1A6ozuBRWV +1aUsIC+nmCjuRfzxuIgALI9C2lHVnOUTaHFFQ4ueCyE8S1wF3BqfmI7avSKecs2t +CsvMo2ebKHTEm9caPARYpoKdrcd7b/+Alun4jWq9GJAd/0kakFI3ky88Al2CdgtR +5xbHV/g4+afNmyJU72OwFW1TZQNKXkqgsqeOSQBZONXH9IBk9W6VULgRfhVwOEqw +f9DEMnDAGf/JOC0ULGb0QkTmVXYbgBVX/8Cnp6o5qtjTcNAuuuuUavpfNIbnYrX9 +ivAwhZTJryQCL2/W3Wf+47BVTwSYT6RBVuKT0Gro1vP7ZeDOdcQxWQzugsgMYDNK +GbqEZycPvEJdvSRUDewdcAZfpLz6IHxV +-----END CERTIFICATE----- + +# Issuer: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. +# Subject: CN=vTrus ECC Root CA O=iTrusChina Co.,Ltd. +# Label: "vTrus ECC Root CA" +# Serial: 630369271402956006249506845124680065938238527194 +# MD5 Fingerprint: de:4b:c1:f5:52:8c:9b:43:e1:3e:8f:55:54:17:8d:85 +# SHA1 Fingerprint: f6:9c:db:b0:fc:f6:02:13:b6:52:32:a6:a3:91:3f:16:70:da:c3:e1 +# SHA256 Fingerprint: 30:fb:ba:2c:32:23:8e:2a:98:54:7a:f9:79:31:e5:50:42:8b:9b:3f:1c:8e:eb:66:33:dc:fa:86:c5:b2:7d:d3 +-----BEGIN CERTIFICATE----- +MIICDzCCAZWgAwIBAgIUbmq8WapTvpg5Z6LSa6Q75m0c1towCgYIKoZIzj0EAwMw +RzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4xGjAY +BgNVBAMTEXZUcnVzIEVDQyBSb290IENBMB4XDTE4MDczMTA3MjY0NFoXDTQzMDcz +MTA3MjY0NFowRzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28u +LEx0ZC4xGjAYBgNVBAMTEXZUcnVzIEVDQyBSb290IENBMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAEZVBKrox5lkqqHAjDo6LN/llWQXf9JpRCux3NCNtzslt188+cToL0 +v/hhJoVs1oVbcnDS/dtitN9Ti72xRFhiQgnH+n9bEOf+QP3A2MMrMudwpremIFUd +e4BdS49nTPEQo0IwQDAdBgNVHQ4EFgQUmDnNvtiyjPeyq+GtJK97fKHbH88wDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwCgYIKoZIzj0EAwMDaAAwZQIw +V53dVvHH4+m4SVBrm2nDb+zDfSXkV5UTQJtS0zvzQBm8JsctBp61ezaf9SXUY2sA +AjEA6dPGnlaaKsyh2j/IZivTWJwghfqrkYpwcBE4YGQLYgmRWAD5Tfs0aNoJrSEG +GJTO +-----END CERTIFICATE----- + +# Issuer: CN=vTrus Root CA O=iTrusChina Co.,Ltd. +# Subject: CN=vTrus Root CA O=iTrusChina Co.,Ltd. +# Label: "vTrus Root CA" +# Serial: 387574501246983434957692974888460947164905180485 +# MD5 Fingerprint: b8:c9:37:df:fa:6b:31:84:64:c5:ea:11:6a:1b:75:fc +# SHA1 Fingerprint: 84:1a:69:fb:f5:cd:1a:25:34:13:3d:e3:f8:fc:b8:99:d0:c9:14:b7 +# SHA256 Fingerprint: 8a:71:de:65:59:33:6f:42:6c:26:e5:38:80:d0:0d:88:a1:8d:a4:c6:a9:1f:0d:cb:61:94:e2:06:c5:c9:63:87 +-----BEGIN CERTIFICATE----- +MIIFVjCCAz6gAwIBAgIUQ+NxE9izWRRdt86M/TX9b7wFjUUwDQYJKoZIhvcNAQEL +BQAwQzELMAkGA1UEBhMCQ04xHDAaBgNVBAoTE2lUcnVzQ2hpbmEgQ28uLEx0ZC4x +FjAUBgNVBAMTDXZUcnVzIFJvb3QgQ0EwHhcNMTgwNzMxMDcyNDA1WhcNNDMwNzMx +MDcyNDA1WjBDMQswCQYDVQQGEwJDTjEcMBoGA1UEChMTaVRydXNDaGluYSBDby4s +THRkLjEWMBQGA1UEAxMNdlRydXMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAL1VfGHTuB0EYgWgrmy3cLRB6ksDXhA/kFocizuwZotsSKYc +IrrVQJLuM7IjWcmOvFjai57QGfIvWcaMY1q6n6MLsLOaXLoRuBLpDLvPbmyAhykU +AyyNJJrIZIO1aqwTLDPxn9wsYTwaP3BVm60AUn/PBLn+NvqcwBauYv6WTEN+VRS+ +GrPSbcKvdmaVayqwlHeFXgQPYh1jdfdr58tbmnDsPmcF8P4HCIDPKNsFxhQnL4Z9 +8Cfe/+Z+M0jnCx5Y0ScrUw5XSmXX+6KAYPxMvDVTAWqXcoKv8R1w6Jz1717CbMdH +flqUhSZNO7rrTOiwCcJlwp2dCZtOtZcFrPUGoPc2BX70kLJrxLT5ZOrpGgrIDajt +J8nU57O5q4IikCc9Kuh8kO+8T/3iCiSn3mUkpF3qwHYw03dQ+A0Em5Q2AXPKBlim +0zvc+gRGE1WKyURHuFE5Gi7oNOJ5y1lKCn+8pu8fA2dqWSslYpPZUxlmPCdiKYZN +pGvu/9ROutW04o5IWgAZCfEF2c6Rsffr6TlP9m8EQ5pV9T4FFL2/s1m02I4zhKOQ +UqqzApVg+QxMaPnu1RcN+HFXtSXkKe5lXa/R7jwXC1pDxaWG6iSe4gUH3DRCEpHW +OXSuTEGC2/KmSNGzm/MzqvOmwMVO9fSddmPmAsYiS8GVP1BkLFTltvA8Kc9XAgMB +AAGjQjBAMB0GA1UdDgQWBBRUYnBj8XWEQ1iO0RYgscasGrz2iTAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAKbqSSaet +8PFww+SX8J+pJdVrnjT+5hpk9jprUrIQeBqfTNqK2uwcN1LgQkv7bHbKJAs5EhWd +nxEt/Hlk3ODg9d3gV8mlsnZwUKT+twpw1aA08XXXTUm6EdGz2OyC/+sOxL9kLX1j +bhd47F18iMjrjld22VkE+rxSH0Ws8HqA7Oxvdq6R2xCOBNyS36D25q5J08FsEhvM +Kar5CKXiNxTKsbhm7xqC5PD48acWabfbqWE8n/Uxy+QARsIvdLGx14HuqCaVvIiv +TDUHKgLKeBRtRytAVunLKmChZwOgzoy8sHJnxDHO2zTlJQNgJXtxmOTAGytfdELS +S8VZCAeHvsXDf+eW2eHcKJfWjwXj9ZtOyh1QRwVTsMo554WgicEFOwE30z9J4nfr +I8iIZjs9OXYhRvHsXyO466JmdXTBQPfYaJqT4i2pLr0cox7IdMakLXogqzu4sEb9 +b91fUlV1YvCXoHzXOP0l382gmxDPi7g4Xl7FtKYCNqEeXxzP4padKar9mK5S4fNB +UvupLnKWnyfjqnN9+BojZns7q2WwMgFLFT49ok8MKzWixtlnEjUwzXYuFrOZnk1P +Ti07NEPhmg4NpGaXutIcSkwsKouLgU9xGqndXHt7CMUADTdA43x7VF8vhV929ven +sBxXVsFy6K2ir40zSbofitzmdHxghm+Hl3s= +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X2 O=Internet Security Research Group +# Subject: CN=ISRG Root X2 O=Internet Security Research Group +# Label: "ISRG Root X2" +# Serial: 87493402998870891108772069816698636114 +# MD5 Fingerprint: d3:9e:c4:1e:23:3c:a6:df:cf:a3:7e:6d:e0:14:e6:e5 +# SHA1 Fingerprint: bd:b1:b9:3c:d5:97:8d:45:c6:26:14:55:f8:db:95:c7:5a:d1:53:af +# SHA256 Fingerprint: 69:72:9b:8e:15:a8:6e:fc:17:7a:57:af:b7:17:1d:fc:64:ad:d2:8c:2f:ca:8c:f1:50:7e:34:45:3c:cb:14:70 +-----BEGIN CERTIFICATE----- +MIICGzCCAaGgAwIBAgIQQdKd0XLq7qeAwSxs6S+HUjAKBggqhkjOPQQDAzBPMQsw +CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg +R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yMDA5MDQwMDAwMDBaFw00 +MDA5MTcxNjAwMDBaME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBT +ZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgyMHYw +EAYHKoZIzj0CAQYFK4EEACIDYgAEzZvVn4CDCuwJSvMWSj5cz3es3mcFDR0HttwW ++1qLFNvicWDEukWVEYmO6gbf9yoWHKS5xcUy4APgHoIYOIvXRdgKam7mAHf7AlF9 +ItgKbppbd9/w+kHsOdx1ymgHDB/qo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zAdBgNVHQ4EFgQUfEKWrt5LSDv6kviejM9ti6lyN5UwCgYIKoZI +zj0EAwMDaAAwZQIwe3lORlCEwkSHRhtFcP9Ymd70/aTSVaYgLXTWNLxBo1BfASdW +tL4ndQavEi51mI38AjEAi/V3bNTIZargCyzuFJ0nN6T5U6VR5CmD1/iQMVtCnwr1 +/q4AaOeMSQ+2b1tbFfLn +-----END CERTIFICATE----- + +# Issuer: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. +# Subject: CN=HiPKI Root CA - G1 O=Chunghwa Telecom Co., Ltd. +# Label: "HiPKI Root CA - G1" +# Serial: 60966262342023497858655262305426234976 +# MD5 Fingerprint: 69:45:df:16:65:4b:e8:68:9a:8f:76:5f:ff:80:9e:d3 +# SHA1 Fingerprint: 6a:92:e4:a8:ee:1b:ec:96:45:37:e3:29:57:49:cd:96:e3:e5:d2:60 +# SHA256 Fingerprint: f0:15:ce:3c:c2:39:bf:ef:06:4b:e9:f1:d2:c4:17:e1:a0:26:4a:0a:94:be:1f:0c:8d:12:18:64:eb:69:49:cc +-----BEGIN CERTIFICATE----- +MIIFajCCA1KgAwIBAgIQLd2szmKXlKFD6LDNdmpeYDANBgkqhkiG9w0BAQsFADBP +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xGzAZBgNVBAMMEkhpUEtJIFJvb3QgQ0EgLSBHMTAeFw0xOTAyMjIwOTQ2MDRa +Fw0zNzEyMzExNTU5NTlaME8xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3 +YSBUZWxlY29tIENvLiwgTHRkLjEbMBkGA1UEAwwSSGlQS0kgUm9vdCBDQSAtIEcx +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA9B5/UnMyDHPkvRN0o9Qw +qNCuS9i233VHZvR85zkEHmpwINJaR3JnVfSl6J3VHiGh8Ge6zCFovkRTv4354twv +Vcg3Px+kwJyz5HdcoEb+d/oaoDjq7Zpy3iu9lFc6uux55199QmQ5eiY29yTw1S+6 +lZgRZq2XNdZ1AYDgr/SEYYwNHl98h5ZeQa/rh+r4XfEuiAU+TCK72h8q3VJGZDnz +Qs7ZngyzsHeXZJzA9KMuH5UHsBffMNsAGJZMoYFL3QRtU6M9/Aes1MU3guvklQgZ +KILSQjqj2FPseYlgSGDIcpJQ3AOPgz+yQlda22rpEZfdhSi8MEyr48KxRURHH+CK +FgeW0iEPU8DtqX7UTuybCeyvQqww1r/REEXgphaypcXTT3OUM3ECoWqj1jOXTyFj +HluP2cFeRXF3D4FdXyGarYPM+l7WjSNfGz1BryB1ZlpK9p/7qxj3ccC2HTHsOyDr +y+K49a6SsvfhhEvyovKTmiKe0xRvNlS9H15ZFblzqMF8b3ti6RZsR1pl8w4Rm0bZ +/W3c1pzAtH2lsN0/Vm+h+fbkEkj9Bn8SV7apI09bA8PgcSojt/ewsTu8mL3WmKgM +a/aOEmem8rJY5AIJEzypuxC00jBF8ez3ABHfZfjcK0NVvxaXxA/VLGGEqnKG/uY6 +fsI/fe78LxQ+5oXdUG+3Se0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQU8ncX+l6o/vY9cdVouslGDDjYr7AwDgYDVR0PAQH/BAQDAgGGMA0GCSqG +SIb3DQEBCwUAA4ICAQBQUfB13HAE4/+qddRxosuej6ip0691x1TPOhwEmSKsxBHi +7zNKpiMdDg1H2DfHb680f0+BazVP6XKlMeJ45/dOlBhbQH3PayFUhuaVevvGyuqc +SE5XCV0vrPSltJczWNWseanMX/mF+lLFjfiRFOs6DRfQUsJ748JzjkZ4Bjgs6Fza +ZsT0pPBWGTMpWmWSBUdGSquEwx4noR8RkpkndZMPvDY7l1ePJlsMu5wP1G4wB9Tc +XzZoZjmDlicmisjEOf6aIW/Vcobpf2Lll07QJNBAsNB1CI69aO4I1258EHBGG3zg +iLKecoaZAeO/n0kZtCW+VmWuF2PlHt/o/0elv+EmBYTksMCv5wiZqAxeJoBF1Pho +L5aPruJKHJwWDBNvOIf2u8g0X5IDUXlwpt/L9ZlNec1OvFefQ05rLisY+GpzjLrF +Ne85akEez3GoorKGB1s6yeHvP2UEgEcyRHCVTjFnanRbEEV16rCf0OY1/k6fi8wr +kkVbbiVghUbN0aqwdmaTd5a+g744tiROJgvM7XpWGuDpWsZkrUx6AEhEL7lAuxM+ +vhV4nYWBSipX3tUZQ9rbyltHhoMLP7YNdnhzeSJesYAfz77RP1YQmCuVh6EfnWQU +YDksswBVLuT1sw5XxJFBAJw/6KXf6vb/yPCtbVKoF6ubYfwSUTXkJf2vqmqGOQ== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Label: "GlobalSign ECC Root CA - R4" +# Serial: 159662223612894884239637590694 +# MD5 Fingerprint: 26:29:f8:6d:e1:88:bf:a2:65:7f:aa:c4:cd:0f:7f:fc +# SHA1 Fingerprint: 6b:a0:b0:98:e1:71:ef:5a:ad:fe:48:15:80:77:10:f4:bd:6f:0b:28 +# SHA256 Fingerprint: b0:85:d7:0b:96:4f:19:1a:73:e4:af:0d:54:ae:7a:0e:07:aa:fd:af:9b:71:dd:08:62:13:8a:b7:32:5a:24:a2 +-----BEGIN CERTIFICATE----- +MIIB3DCCAYOgAwIBAgINAgPlfvU/k/2lCSGypjAKBggqhkjOPQQDAjBQMSQwIgYD +VQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0gUjQxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTIxMTEzMDAwMDAwWhcNMzgw +MTE5MDMxNDA3WjBQMSQwIgYDVQQLExtHbG9iYWxTaWduIEVDQyBSb290IENBIC0g +UjQxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wWTAT +BgcqhkjOPQIBBggqhkjOPQMBBwNCAAS4xnnTj2wlDp8uORkcA6SumuU5BwkWymOx +uYb4ilfBV85C+nOh92VC/x7BALJucw7/xyHlGKSq2XE/qNS5zowdo0IwQDAOBgNV +HQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVLB7rUW44kB/ ++wpu+74zyTyjhNUwCgYIKoZIzj0EAwIDRwAwRAIgIk90crlgr/HmnKAWBVBfw147 +bmF0774BxL4YSFlhgjICICadVGNA3jdgUM/I2O2dgq43mLyjj0xMqTQrbO/7lZsm +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R1 O=Google Trust Services LLC +# Subject: CN=GTS Root R1 O=Google Trust Services LLC +# Label: "GTS Root R1" +# Serial: 159662320309726417404178440727 +# MD5 Fingerprint: 05:fe:d0:bf:71:a8:a3:76:63:da:01:e0:d8:52:dc:40 +# SHA1 Fingerprint: e5:8c:1c:c4:91:3b:38:63:4b:e9:10:6e:e3:ad:8e:6b:9d:d9:81:4a +# SHA256 Fingerprint: d9:47:43:2a:bd:e7:b7:fa:90:fc:2e:6b:59:10:1b:12:80:e0:e1:c7:e4:e4:0f:a3:c6:88:7f:ff:57:a7:f4:cf +-----BEGIN CERTIFICATE----- +MIIFVzCCAz+gAwIBAgINAgPlk28xsBNJiGuiFzANBgkqhkiG9w0BAQwFADBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx9vaMf/vo +27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vXmX7w +Cl7raKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7zUjw +TcLCeoiKu7rPWRnWr4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0Pfybl +qAj+lug8aJRT7oM6iCsVlgmy4HqMLnXWnOunVmSPlk9orj2XwoSPwLxAwAtcvfaH +szVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly4cpk9+aCEI3oncKKiPo4Zor8 +Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr06zqkUspzBmk +MiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOORc92 +wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYWk70p +aDPvOmbsB4om3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+DVrN +VjzRlwW5y0vtOUucxD/SVRNuJLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgFlQID +AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEMBQADggIBAJ+qQibb +C5u+/x6Wki4+omVKapi6Ist9wTrYggoGxval3sBOh2Z5ofmmWJyq+bXmYOfg6LEe +QkEzCzc9zolwFcq1JKjPa7XSQCGYzyI0zzvFIoTgxQ6KfF2I5DUkzps+GlQebtuy +h6f88/qBVRRiClmpIgUxPoLW7ttXNLwzldMXG+gnoot7TiYaelpkttGsN/H9oPM4 +7HLwEXWdyzRSjeZ2axfG34arJ45JK3VmgRAhpuo+9K4l/3wV3s6MJT/KYnAK9y8J +ZgfIPxz88NtFMN9iiMG1D53Dn0reWVlHxYciNuaCp+0KueIHoI17eko8cdLiA6Ef +MgfdG+RCzgwARWGAtQsgWSl4vflVy2PFPEz0tv/bal8xa5meLMFrUKTX5hgUvYU/ +Z6tGn6D/Qqc6f1zLXbBwHSs09dR2CQzreExZBfMzQsNhFRAbd03OIozUhfJFfbdT +6u9AWpQKXCBfTkBdYiJ23//OYb2MI3jSNwLgjt7RETeJ9r/tSQdirpLsQBqvFAnZ +0E6yove+7u7Y/9waLd64NnHi/Hm3lCXRSHNboTXns5lndcEZOitHTtNCjv0xyBZm +2tIMPNuzjsmhDYAPexZ3FL//2wmUspO8IFgV6dtxQ/PeEMMA3KgqlbbC1j+Qa3bb +bP6MvPJwNQzcmRk13NfIRmPVNnGuV/u3gm3c +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R2 O=Google Trust Services LLC +# Subject: CN=GTS Root R2 O=Google Trust Services LLC +# Label: "GTS Root R2" +# Serial: 159662449406622349769042896298 +# MD5 Fingerprint: 1e:39:c0:53:e6:1e:29:82:0b:ca:52:55:36:5d:57:dc +# SHA1 Fingerprint: 9a:44:49:76:32:db:de:fa:d0:bc:fb:5a:7b:17:bd:9e:56:09:24:94 +# SHA256 Fingerprint: 8d:25:cd:97:22:9d:bf:70:35:6b:da:4e:b3:cc:73:40:31:e2:4c:f0:0f:af:cf:d3:2d:c7:6e:b5:84:1c:7e:a8 +-----BEGIN CERTIFICATE----- +MIIFVzCCAz+gAwIBAgINAgPlrsWNBCUaqxElqjANBgkqhkiG9w0BAQwFADBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTukk3LvCvpt +nfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3KgGjSY +6Dlo7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9BuXvAu +MC6C/Pq8tBcKSOWIm8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOdre7k +RXuJVfeKH2JShBKzwkCX44ofR5GmdFrS+LFjKBC4swm4VndAoiaYecb+3yXuPuWg +f9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbuak7MkogwTZq9TwtImoS1mKPV ++3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscszcTJGr61K8Yzo +dDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqjx5RW +Ir9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsRnTKa +G73VululycslaVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0kzCq +gc7dGtxRcw1PcOnlthYhGXmy5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9OktwID +AQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEMBQADggIBAB/Kzt3H +vqGf2SdMC9wXmBFqiN495nFWcrKeGk6c1SuYJF2ba3uwM4IJvd8lRuqYnrYb/oM8 +0mJhwQTtzuDFycgTE1XnqGOtjHsB/ncw4c5omwX4Eu55MaBBRTUoCnGkJE+M3DyC +B19m3H0Q/gxhswWV7uGugQ+o+MePTagjAiZrHYNSVc61LwDKgEDg4XSsYPWHgJ2u +NmSRXbBoGOqKYcl3qJfEycel/FVL8/B/uWU9J2jQzGv6U53hkRrJXRqWbTKH7QMg +yALOWr7Z6v2yTcQvG99fevX4i8buMTolUVVnjWQye+mew4K6Ki3pHrTgSAai/Gev +HyICc/sgCq+dVEuhzf9gR7A/Xe8bVr2XIZYtCtFenTgCR2y59PYjJbigapordwj6 +xLEokCZYCDzifqrXPW+6MYgKBesntaFJ7qBFVHvmJ2WZICGoo7z7GJa7Um8M7YNR +TOlZ4iBgxcJlkoKM8xAfDoqXvneCbT+PHV28SSe9zE8P4c52hgQjxcCMElv924Sg +JPFI/2R80L5cFtHvma3AH/vLrrw4IgYmZNralw4/KBVEqE8AyvCazM90arQ+POuV +7LXTWtiBmelDGDfrs7vRWGJB82bSj6p4lVQgw1oudCvV0b4YacCs1aTPObpRhANl +6WLAYv7YTVWW4tAR+kg0Eeye7QUd5MjWHYbL +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R3 O=Google Trust Services LLC +# Subject: CN=GTS Root R3 O=Google Trust Services LLC +# Label: "GTS Root R3" +# Serial: 159662495401136852707857743206 +# MD5 Fingerprint: 3e:e7:9d:58:02:94:46:51:94:e5:e0:22:4a:8b:e7:73 +# SHA1 Fingerprint: ed:e5:71:80:2b:c8:92:b9:5b:83:3c:d2:32:68:3f:09:cd:a0:1e:46 +# SHA256 Fingerprint: 34:d8:a7:3e:e2:08:d9:bc:db:0d:95:65:20:93:4b:4e:40:e6:94:82:59:6e:8b:6f:73:c8:42:6b:01:0a:6f:48 +-----BEGIN CERTIFICATE----- +MIICCTCCAY6gAwIBAgINAgPluILrIPglJ209ZjAKBggqhkjOPQQDAzBHMQswCQYD +VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG +A1UEAxMLR1RTIFJvb3QgUjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw +WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz +IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUURout736G +jOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2ADDL2 +4CejQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBTB8Sa6oC2uhYHP0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEA9uEglRR7 +VKOQFhG/hMjqb2sXnh5GmCCbn9MN2azTL818+FsuVbu/3ZL3pAzcMeGiAjEA/Jdm +ZuVDFhOD3cffL74UOO0BzrEXGhF16b0DjyZ+hOXJYKaV11RZt+cRLInUue4X +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R4 O=Google Trust Services LLC +# Subject: CN=GTS Root R4 O=Google Trust Services LLC +# Label: "GTS Root R4" +# Serial: 159662532700760215368942768210 +# MD5 Fingerprint: 43:96:83:77:19:4d:76:b3:9d:65:52:e4:1d:22:a5:e8 +# SHA1 Fingerprint: 77:d3:03:67:b5:e0:0c:15:f6:0c:38:61:df:7c:e1:3b:92:46:4d:47 +# SHA256 Fingerprint: 34:9d:fa:40:58:c5:e2:63:12:3b:39:8a:e7:95:57:3c:4e:13:13:c8:3f:e6:8f:93:55:6c:d5:e8:03:1b:3c:7d +-----BEGIN CERTIFICATE----- +MIICCTCCAY6gAwIBAgINAgPlwGjvYxqccpBQUjAKBggqhkjOPQQDAzBHMQswCQYD +VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG +A1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw +WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz +IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzuhXyi +QHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/lxKvR +HYqjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNpADBmAjEA6ED/g94D +9J+uHXqnLrmvT/aDHQ4thQEd0dlq7A/Cr8deVl5c1RxYIigL9zC2L7F8AjEA8GE8 +p/SgguMh1YQdc4acLa/KNJvxn7kjNuK8YAOdgLOaVsjh4rsUecrNIdSUtUlD +-----END CERTIFICATE----- + +# Issuer: CN=Telia Root CA v2 O=Telia Finland Oyj +# Subject: CN=Telia Root CA v2 O=Telia Finland Oyj +# Label: "Telia Root CA v2" +# Serial: 7288924052977061235122729490515358 +# MD5 Fingerprint: 0e:8f:ac:aa:82:df:85:b1:f4:dc:10:1c:fc:99:d9:48 +# SHA1 Fingerprint: b9:99:cd:d1:73:50:8a:c4:47:05:08:9c:8c:88:fb:be:a0:2b:40:cd +# SHA256 Fingerprint: 24:2b:69:74:2f:cb:1e:5b:2a:bf:98:89:8b:94:57:21:87:54:4e:5b:4d:99:11:78:65:73:62:1f:6a:74:b8:2c +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIPAWdfJ9b+euPkrL4JWwWeMA0GCSqGSIb3DQEBCwUAMEQx +CzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZMBcGA1UE +AwwQVGVsaWEgUm9vdCBDQSB2MjAeFw0xODExMjkxMTU1NTRaFw00MzExMjkxMTU1 +NTRaMEQxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZ +MBcGA1UEAwwQVGVsaWEgUm9vdCBDQSB2MjCCAiIwDQYJKoZIhvcNAQEBBQADggIP +ADCCAgoCggIBALLQPwe84nvQa5n44ndp586dpAO8gm2h/oFlH0wnrI4AuhZ76zBq +AMCzdGh+sq/H1WKzej9Qyow2RCRj0jbpDIX2Q3bVTKFgcmfiKDOlyzG4OiIjNLh9 +vVYiQJ3q9HsDrWj8soFPmNB06o3lfc1jw6P23pLCWBnglrvFxKk9pXSW/q/5iaq9 +lRdU2HhE8Qx3FZLgmEKnpNaqIJLNwaCzlrI6hEKNfdWV5Nbb6WLEWLN5xYzTNTOD +n3WhUidhOPFZPY5Q4L15POdslv5e2QJltI5c0BE0312/UqeBAMN/mUWZFdUXyApT +7GPzmX3MaRKGwhfwAZ6/hLzRUssbkmbOpFPlob/E2wnW5olWK8jjfN7j/4nlNW4o +6GwLI1GpJQXrSPjdscr6bAhR77cYbETKJuFzxokGgeWKrLDiKca5JLNrRBH0pUPC +TEPlcDaMtjNXepUugqD0XBCzYYP2AgWGLnwtbNwDRm41k9V6lS/eINhbfpSQBGq6 +WT0EBXWdN6IOLj3rwaRSg/7Qa9RmjtzG6RJOHSpXqhC8fF6CfaamyfItufUXJ63R +DolUK5X6wK0dmBR4M0KGCqlztft0DbcbMBnEWg4cJ7faGND/isgFuvGqHKI3t+ZI +pEYslOqodmJHixBTB0hXbOKSTbauBcvcwUpej6w9GU7C7WB1K9vBykLVAgMBAAGj +YzBhMB8GA1UdIwQYMBaAFHKs5DN5qkWH9v2sHZ7Wxy+G2CQ5MB0GA1UdDgQWBBRy +rOQzeapFh/b9rB2e1scvhtgkOTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw +AwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAoDtZpwmUPjaE0n4vOaWWl/oRrfxn83EJ +8rKJhGdEr7nv7ZbsnGTbMjBvZ5qsfl+yqwE2foH65IRe0qw24GtixX1LDoJt0nZi +0f6X+J8wfBj5tFJ3gh1229MdqfDBmgC9bXXYfef6xzijnHDoRnkDry5023X4blMM +A8iZGok1GTzTyVR8qPAs5m4HeW9q4ebqkYJpCh3DflminmtGFZhb069GHWLIzoBS +SRE/yQQSwxN8PzuKlts8oB4KtItUsiRnDe+Cy748fdHif64W1lZYudogsYMVoe+K +TTJvQS8TUoKU1xrBeKJR3Stwbbca+few4GeXVtt8YVMJAygCQMez2P2ccGrGKMOF +6eLtGpOg3kuYooQ+BXcBlj37tCAPnHICehIv1aO6UXivKitEZU61/Qrowc15h2Er +3oBXRb9n8ZuRXqWk7FlIEA04x7D6w0RtBPV4UBySllva9bguulvP5fBqnUsvWHMt +Ty3EHD70sz+rFQ47GUGKpMFXEmZxTPpT41frYpUJnlTd0cI8Vzy9OK2YZLe4A5pT +VmBds9hCG1xLEooc6+t9xnppxyd/pPiL8uSUZodL6ZQHCRJ5irLrdATczvREWeAW +ysUsWNc8e89ihmpQfTU2Zqf7N+cox9jQraVplI/owd8k+BsHMYeB2F326CjYSlKA +rBPuUBQemMc= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH +# Subject: CN=D-TRUST BR Root CA 1 2020 O=D-Trust GmbH +# Label: "D-TRUST BR Root CA 1 2020" +# Serial: 165870826978392376648679885835942448534 +# MD5 Fingerprint: b5:aa:4b:d5:ed:f7:e3:55:2e:8f:72:0a:f3:75:b8:ed +# SHA1 Fingerprint: 1f:5b:98:f0:e3:b5:f7:74:3c:ed:e6:b0:36:7d:32:cd:f4:09:41:67 +# SHA256 Fingerprint: e5:9a:aa:81:60:09:c2:2b:ff:5b:25:ba:d3:7d:f3:06:f0:49:79:7c:1f:81:d8:5a:b0:89:e6:57:bd:8f:00:44 +-----BEGIN CERTIFICATE----- +MIIC2zCCAmCgAwIBAgIQfMmPK4TX3+oPyWWa00tNljAKBggqhkjOPQQDAzBIMQsw +CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS +VVNUIEJSIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTA5NDUwMFoXDTM1MDIxMTA5 +NDQ1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG +A1UEAxMZRC1UUlVTVCBCUiBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB +BAAiA2IABMbLxyjR+4T1mu9CFCDhQ2tuda38KwOE1HaTJddZO0Flax7mNCq7dPYS +zuht56vkPE4/RAiLzRZxy7+SmfSk1zxQVFKQhYN4lGdnoxwJGT11NIXe7WB9xwy0 +QVK5buXuQqOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHOREKv/ +VbNafAkl1bK6CKBrqx9tMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g +PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2JyX3Jvb3Rf +Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l +dC9DTj1ELVRSVVNUJTIwQlIlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 +c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO +PQQDAwNpADBmAjEAlJAtE/rhY/hhY+ithXhUkZy4kzg+GkHaQBZTQgjKL47xPoFW +wKrY7RjEsK70PvomAjEA8yjixtsrmfu3Ubgko6SUeho/5jbiA1czijDLgsfWFBHV +dWNbFJWcHwHP2NVypw87 +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH +# Subject: CN=D-TRUST EV Root CA 1 2020 O=D-Trust GmbH +# Label: "D-TRUST EV Root CA 1 2020" +# Serial: 126288379621884218666039612629459926992 +# MD5 Fingerprint: 8c:2d:9d:70:9f:48:99:11:06:11:fb:e9:cb:30:c0:6e +# SHA1 Fingerprint: 61:db:8c:21:59:69:03:90:d8:7c:9c:12:86:54:cf:9d:3d:f4:dd:07 +# SHA256 Fingerprint: 08:17:0d:1a:a3:64:53:90:1a:2f:95:92:45:e3:47:db:0c:8d:37:ab:aa:bc:56:b8:1a:a1:00:dc:95:89:70:db +-----BEGIN CERTIFICATE----- +MIIC2zCCAmCgAwIBAgIQXwJB13qHfEwDo6yWjfv/0DAKBggqhkjOPQQDAzBIMQsw +CQYDVQQGEwJERTEVMBMGA1UEChMMRC1UcnVzdCBHbWJIMSIwIAYDVQQDExlELVRS +VVNUIEVWIFJvb3QgQ0EgMSAyMDIwMB4XDTIwMDIxMTEwMDAwMFoXDTM1MDIxMTA5 +NTk1OVowSDELMAkGA1UEBhMCREUxFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEiMCAG +A1UEAxMZRC1UUlVTVCBFViBSb290IENBIDEgMjAyMDB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPEL3YZDIBnfl4XoIkqbz52Yv7QFJsnL46bSj8WeeHsxiamJrSc8ZRCC +/N/DnU7wMyPE0jL1HLDfMxddxfCxivnvubcUyilKwg+pf3VlSSowZ/Rk99Yad9rD +wpdhQntJraOCAQ0wggEJMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFH8QARY3 +OqQo5FD4pPfsazK2/umLMA4GA1UdDwEB/wQEAwIBBjCBxgYDVR0fBIG+MIG7MD6g +PKA6hjhodHRwOi8vY3JsLmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X2V2X3Jvb3Rf +Y2FfMV8yMDIwLmNybDB5oHegdYZzbGRhcDovL2RpcmVjdG9yeS5kLXRydXN0Lm5l +dC9DTj1ELVRSVVNUJTIwRVYlMjBSb290JTIwQ0ElMjAxJTIwMjAyMCxPPUQtVHJ1 +c3QlMjBHbWJILEM9REU/Y2VydGlmaWNhdGVyZXZvY2F0aW9ubGlzdDAKBggqhkjO +PQQDAwNpADBmAjEAyjzGKnXCXnViOTYAYFqLwZOZzNnbQTs7h5kXO9XMT8oi96CA +y/m0sRtW9XLS/BnRAjEAkfcwkz8QRitxpNA7RJvAKQIFskF3UfN5Wp6OFKBOQtJb +gfM0agPnIjhQW+0ZT0MW +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. +# Subject: CN=DigiCert TLS ECC P384 Root G5 O=DigiCert, Inc. +# Label: "DigiCert TLS ECC P384 Root G5" +# Serial: 13129116028163249804115411775095713523 +# MD5 Fingerprint: d3:71:04:6a:43:1c:db:a6:59:e1:a8:a3:aa:c5:71:ed +# SHA1 Fingerprint: 17:f3:de:5e:9f:0f:19:e9:8e:f6:1f:32:26:6e:20:c4:07:ae:30:ee +# SHA256 Fingerprint: 01:8e:13:f0:77:25:32:cf:80:9b:d1:b1:72:81:86:72:83:fc:48:c6:e1:3b:e9:c6:98:12:85:4a:49:0c:1b:05 +-----BEGIN CERTIFICATE----- +MIICGTCCAZ+gAwIBAgIQCeCTZaz32ci5PhwLBCou8zAKBggqhkjOPQQDAzBOMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJjAkBgNVBAMTHURp +Z2lDZXJ0IFRMUyBFQ0MgUDM4NCBSb290IEc1MB4XDTIxMDExNTAwMDAwMFoXDTQ2 +MDExNDIzNTk1OVowTjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJ +bmMuMSYwJAYDVQQDEx1EaWdpQ2VydCBUTFMgRUNDIFAzODQgUm9vdCBHNTB2MBAG +ByqGSM49AgEGBSuBBAAiA2IABMFEoc8Rl1Ca3iOCNQfN0MsYndLxf3c1TzvdlHJS +7cI7+Oz6e2tYIOyZrsn8aLN1udsJ7MgT9U7GCh1mMEy7H0cKPGEQQil8pQgO4CLp +0zVozptjn4S1mU1YoI71VOeVyaNCMEAwHQYDVR0OBBYEFMFRRVBZqz7nLFr6ICIS +B4CIfBFqMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MAoGCCqGSM49 +BAMDA2gAMGUCMQCJao1H5+z8blUD2WdsJk6Dxv3J+ysTvLd6jLRl0mlpYxNjOyZQ +LgGheQaRnUi/wr4CMEfDFXuxoJGZSZOoPHzoRgaLLPIxAJSdYsiJvRmEFOml+wG4 +DXZDjC5Ty3zfDBeWUA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. +# Subject: CN=DigiCert TLS RSA4096 Root G5 O=DigiCert, Inc. +# Label: "DigiCert TLS RSA4096 Root G5" +# Serial: 11930366277458970227240571539258396554 +# MD5 Fingerprint: ac:fe:f7:34:96:a9:f2:b3:b4:12:4b:e4:27:41:6f:e1 +# SHA1 Fingerprint: a7:88:49:dc:5d:7c:75:8c:8c:de:39:98:56:b3:aa:d0:b2:a5:71:35 +# SHA256 Fingerprint: 37:1a:00:dc:05:33:b3:72:1a:7e:eb:40:e8:41:9e:70:79:9d:2b:0a:0f:2c:1d:80:69:31:65:f7:ce:c4:ad:75 +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCPm0eKj6ftpqMzeJ3nzPijANBgkqhkiG9w0BAQwFADBN +MQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xJTAjBgNVBAMT +HERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwHhcNMjEwMTE1MDAwMDAwWhcN +NDYwMTE0MjM1OTU5WjBNMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGlnaUNlcnQs +IEluYy4xJTAjBgNVBAMTHERpZ2lDZXJ0IFRMUyBSU0E0MDk2IFJvb3QgRzUwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCz0PTJeRGd/fxmgefM1eS87IE+ +ajWOLrfn3q/5B03PMJ3qCQuZvWxX2hhKuHisOjmopkisLnLlvevxGs3npAOpPxG0 +2C+JFvuUAT27L/gTBaF4HI4o4EXgg/RZG5Wzrn4DReW+wkL+7vI8toUTmDKdFqgp +wgscONyfMXdcvyej/Cestyu9dJsXLfKB2l2w4SMXPohKEiPQ6s+d3gMXsUJKoBZM +pG2T6T867jp8nVid9E6P/DsjyG244gXazOvswzH016cpVIDPRFtMbzCe88zdH5RD +nU1/cHAN1DrRN/BsnZvAFJNY781BOHW8EwOVfH/jXOnVDdXifBBiqmvwPXbzP6Po +sMH976pXTayGpxi0KcEsDr9kvimM2AItzVwv8n/vFfQMFawKsPHTDU9qTXeXAaDx +Zre3zu/O7Oyldcqs4+Fj97ihBMi8ez9dLRYiVu1ISf6nL3kwJZu6ay0/nTvEF+cd +Lvvyz6b84xQslpghjLSR6Rlgg/IwKwZzUNWYOwbpx4oMYIwo+FKbbuH2TbsGJJvX +KyY//SovcfXWJL5/MZ4PbeiPT02jP/816t9JXkGPhvnxd3lLG7SjXi/7RgLQZhNe +XoVPzthwiHvOAbWWl9fNff2C+MIkwcoBOU+NosEUQB+cZtUMCUbW8tDRSHZWOkPL +tgoRObqME2wGtZ7P6wIDAQABo0IwQDAdBgNVHQ4EFgQUUTMc7TZArxfTJc1paPKv +TiM+s0EwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcN +AQEMBQADggIBAGCmr1tfV9qJ20tQqcQjNSH/0GEwhJG3PxDPJY7Jv0Y02cEhJhxw +GXIeo8mH/qlDZJY6yFMECrZBu8RHANmfGBg7sg7zNOok992vIGCukihfNudd5N7H +PNtQOa27PShNlnx2xlv0wdsUpasZYgcYQF+Xkdycx6u1UQ3maVNVzDl92sURVXLF +O4uJ+DQtpBflF+aZfTCIITfNMBc9uPK8qHWgQ9w+iUuQrm0D4ByjoJYJu32jtyoQ +REtGBzRj7TG5BO6jm5qu5jF49OokYTurWGT/u4cnYiWB39yhL/btp/96j1EuMPik +AdKFOV8BmZZvWltwGUb+hmA+rYAQCd05JS9Yf7vSdPD3Rh9GOUrYU9DzLjtxpdRv +/PNn5AeP3SYZ4Y1b+qOTEZvpyDrDVWiakuFSdjjo4bq9+0/V77PnSIMx8IIh47a+ +p6tv75/fTM8BuGJqIz3nCU2AG3swpMPdB380vqQmsvZB6Akd4yCYqjdP//fx4ilw +MUc/dNAUFvohigLVigmUdy7yWSiLfFCSCmZ4OIN1xLVaqBHG5cGdZlXPU8Sv13WF +qUITVuwhd4GTWgzqltlJyqEI8pc7bZsEGCREjnwB8twl2F6GmrE52/WRMmrRpnCK +ovfepEWFJqgejF0pW8hL2JpqA15w8oVPbEtoL8pU9ozaMv7Da4M/OMZ+ +-----END CERTIFICATE----- + +# Issuer: CN=Certainly Root R1 O=Certainly +# Subject: CN=Certainly Root R1 O=Certainly +# Label: "Certainly Root R1" +# Serial: 188833316161142517227353805653483829216 +# MD5 Fingerprint: 07:70:d4:3e:82:87:a0:fa:33:36:13:f4:fa:33:e7:12 +# SHA1 Fingerprint: a0:50:ee:0f:28:71:f4:27:b2:12:6d:6f:50:96:25:ba:cc:86:42:af +# SHA256 Fingerprint: 77:b8:2c:d8:64:4c:43:05:f7:ac:c5:cb:15:6b:45:67:50:04:03:3d:51:c6:0c:62:02:a8:e0:c3:34:67:d3:a0 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIRAI4P+UuQcWhlM1T01EQ5t+AwDQYJKoZIhvcNAQELBQAw +PTELMAkGA1UEBhMCVVMxEjAQBgNVBAoTCUNlcnRhaW5seTEaMBgGA1UEAxMRQ2Vy +dGFpbmx5IFJvb3QgUjEwHhcNMjEwNDAxMDAwMDAwWhcNNDYwNDAxMDAwMDAwWjA9 +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0 +YWlubHkgUm9vdCBSMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANA2 +1B/q3avk0bbm+yLA3RMNansiExyXPGhjZjKcA7WNpIGD2ngwEc/csiu+kr+O5MQT +vqRoTNoCaBZ0vrLdBORrKt03H2As2/X3oXyVtwxwhi7xOu9S98zTm/mLvg7fMbed +aFySpvXl8wo0tf97ouSHocavFwDvA5HtqRxOcT3Si2yJ9HiG5mpJoM610rCrm/b0 +1C7jcvk2xusVtyWMOvwlDbMicyF0yEqWYZL1LwsYpfSt4u5BvQF5+paMjRcCMLT5 +r3gajLQ2EBAHBXDQ9DGQilHFhiZ5shGIXsXwClTNSaa/ApzSRKft43jvRl5tcdF5 +cBxGX1HpyTfcX35pe0HfNEXgO4T0oYoKNp43zGJS4YkNKPl6I7ENPT2a/Z2B7yyQ +wHtETrtJ4A5KVpK8y7XdeReJkd5hiXSSqOMyhb5OhaRLWcsrxXiOcVTQAjeZjOVJ +6uBUcqQRBi8LjMFbvrWhsFNunLhgkR9Za/kt9JQKl7XsxXYDVBtlUrpMklZRNaBA +2CnbrlJ2Oy0wQJuK0EJWtLeIAaSHO1OWzaMWj/Nmqhexx2DgwUMFDO6bW2BvBlyH +Wyf5QBGenDPBt+U1VwV/J84XIIwc/PH72jEpSe31C4SnT8H2TsIonPru4K8H+zMR +eiFPCyEQtkA6qyI6BJyLm4SGcprSp6XEtHWRqSsjAgMBAAGjQjBAMA4GA1UdDwEB +/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTgqj8ljZ9EXME66C6u +d0yEPmcM9DANBgkqhkiG9w0BAQsFAAOCAgEAuVevuBLaV4OPaAszHQNTVfSVcOQr +PbA56/qJYv331hgELyE03fFo8NWWWt7CgKPBjcZq91l3rhVkz1t5BXdm6ozTaw3d +8VkswTOlMIAVRQdFGjEitpIAq5lNOo93r6kiyi9jyhXWx8bwPWz8HA2YEGGeEaIi +1wrykXprOQ4vMMM2SZ/g6Q8CRFA3lFV96p/2O7qUpUzpvD5RtOjKkjZUbVwlKNrd +rRT90+7iIgXr0PK3aBLXWopBGsaSpVo7Y0VPv+E6dyIvXL9G+VoDhRNCX8reU9di +taY1BMJH/5n9hN9czulegChB8n3nHpDYT3Y+gjwN/KUD+nsa2UUeYNrEjvn8K8l7 +lcUq/6qJ34IxD3L/DCfXCh5WAFAeDJDBlrXYFIW7pw0WwfgHJBu6haEaBQmAupVj +yTrsJZ9/nbqkRxWbRHDxakvWOF5D8xh+UG7pWijmZeZ3Gzr9Hb4DJqPb1OG7fpYn +Kx3upPvaJVQTA945xsMfTZDsjxtK0hzthZU4UHlG1sGQUDGpXJpuHfUzVounmdLy +yCwzk5Iwx06MZTMQZBf9JBeW0Y3COmor6xOLRPIh80oat3df1+2IpHLlOR+Vnb5n +wXARPbv0+Em34yaXOp/SX3z7wJl8OSngex2/DaeP0ik0biQVy96QXr8axGbqwua6 +OV+KmalBWQewLK8= +-----END CERTIFICATE----- + +# Issuer: CN=Certainly Root E1 O=Certainly +# Subject: CN=Certainly Root E1 O=Certainly +# Label: "Certainly Root E1" +# Serial: 8168531406727139161245376702891150584 +# MD5 Fingerprint: 0a:9e:ca:cd:3e:52:50:c6:36:f3:4b:a3:ed:a7:53:e9 +# SHA1 Fingerprint: f9:e1:6d:dc:01:89:cf:d5:82:45:63:3e:c5:37:7d:c2:eb:93:6f:2b +# SHA256 Fingerprint: b4:58:5f:22:e4:ac:75:6a:4e:86:12:a1:36:1c:5d:9d:03:1a:93:fd:84:fe:bb:77:8f:a3:06:8b:0f:c4:2d:c2 +-----BEGIN CERTIFICATE----- +MIIB9zCCAX2gAwIBAgIQBiUzsUcDMydc+Y2aub/M+DAKBggqhkjOPQQDAzA9MQsw +CQYDVQQGEwJVUzESMBAGA1UEChMJQ2VydGFpbmx5MRowGAYDVQQDExFDZXJ0YWlu +bHkgUm9vdCBFMTAeFw0yMTA0MDEwMDAwMDBaFw00NjA0MDEwMDAwMDBaMD0xCzAJ +BgNVBAYTAlVTMRIwEAYDVQQKEwlDZXJ0YWlubHkxGjAYBgNVBAMTEUNlcnRhaW5s +eSBSb290IEUxMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE3m/4fxzf7flHh4axpMCK ++IKXgOqPyEpeKn2IaKcBYhSRJHpcnqMXfYqGITQYUBsQ3tA3SybHGWCA6TS9YBk2 +QNYphwk8kXr2vBMj3VlOBF7PyAIcGFPBMdjaIOlEjeR2o0IwQDAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU8ygYy2R17ikq6+2uI1g4 +hevIIgcwCgYIKoZIzj0EAwMDaAAwZQIxALGOWiDDshliTd6wT99u0nCK8Z9+aozm +ut6Dacpps6kFtZaSF4fC0urQe87YQVt8rgIwRt7qy12a7DLCZRawTDBcMPPaTnOG +BtjOiQRINzf43TNRnXCve1XYAS59BWQOhriR +-----END CERTIFICATE----- + +# Issuer: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. +# Subject: CN=Security Communication RootCA3 O=SECOM Trust Systems CO.,LTD. +# Label: "Security Communication RootCA3" +# Serial: 16247922307909811815 +# MD5 Fingerprint: 1c:9a:16:ff:9e:5c:e0:4d:8a:14:01:f4:35:5d:29:26 +# SHA1 Fingerprint: c3:03:c8:22:74:92:e5:61:a2:9c:5f:79:91:2b:1e:44:13:91:30:3a +# SHA256 Fingerprint: 24:a5:5c:2a:b0:51:44:2d:06:17:76:65:41:23:9a:4a:d0:32:d7:c5:51:75:aa:34:ff:de:2f:bc:4f:5c:52:94 +-----BEGIN CERTIFICATE----- +MIIFfzCCA2egAwIBAgIJAOF8N0D9G/5nMA0GCSqGSIb3DQEBDAUAMF0xCzAJBgNV +BAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScw +JQYDVQQDEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTMwHhcNMTYwNjE2 +MDYxNzE2WhcNMzgwMTE4MDYxNzE2WjBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc +U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UEAxMeU2VjdXJpdHkg +Q29tbXVuaWNhdGlvbiBSb290Q0EzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC +CgKCAgEA48lySfcw3gl8qUCBWNO0Ot26YQ+TUG5pPDXC7ltzkBtnTCHsXzW7OT4r +CmDvu20rhvtxosis5FaU+cmvsXLUIKx00rgVrVH+hXShuRD+BYD5UpOzQD11EKzA +lrenfna84xtSGc4RHwsENPXY9Wk8d/Nk9A2qhd7gCVAEF5aEt8iKvE1y/By7z/MG +TfmfZPd+pmaGNXHIEYBMwXFAWB6+oHP2/D5Q4eAvJj1+XCO1eXDe+uDRpdYMQXF7 +9+qMHIjH7Iv10S9VlkZ8WjtYO/u62C21Jdp6Ts9EriGmnpjKIG58u4iFW/vAEGK7 +8vknR+/RiTlDxN/e4UG/VHMgly1s2vPUB6PmudhvrvyMGS7TZ2crldtYXLVqAvO4 +g160a75BflcJdURQVc1aEWEhCmHCqYj9E7wtiS/NYeCVvsq1e+F7NGcLH7YMx3we +GVPKp7FKFSBWFHA9K4IsD50VHUeAR/94mQ4xr28+j+2GaR57GIgUssL8gjMunEst ++3A7caoreyYn8xrC3PsXuKHqy6C0rtOUfnrQq8PsOC0RLoi/1D+tEjtCrI8Cbn3M +0V9hvqG8OmpI6iZVIhZdXw3/JzOfGAN0iltSIEdrRU0id4xVJ/CvHozJgyJUt5rQ +T9nO/NkuHJYosQLTA70lUhw0Zk8jq/R3gpYd0VcwCBEF/VfR2ccCAwEAAaNCMEAw +HQYDVR0OBBYEFGQUfPxYchamCik0FW8qy7z8r6irMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBDAUAA4ICAQDcAiMI4u8hOscNtybS +YpOnpSNyByCCYN8Y11StaSWSntkUz5m5UoHPrmyKO1o5yGwBQ8IibQLwYs1OY0PA +FNr0Y/Dq9HHuTofjcan0yVflLl8cebsjqodEV+m9NU1Bu0soo5iyG9kLFwfl9+qd +9XbXv8S2gVj/yP9kaWJ5rW4OH3/uHWnlt3Jxs/6lATWUVCvAUm2PVcTJ0rjLyjQI +UYWg9by0F1jqClx6vWPGOi//lkkZhOpn2ASxYfQAW0q3nHE3GYV5v4GwxxMOdnE+ +OoAGrgYWp421wsTL/0ClXI2lyTrtcoHKXJg80jQDdwj98ClZXSEIx2C/pHF7uNke +gr4Jr2VvKKu/S7XuPghHJ6APbw+LP6yVGPO5DtxnVW5inkYO0QR4ynKudtml+LLf +iAlhi+8kTtFZP1rUPcmTPCtk9YENFpb3ksP+MW/oKjJ0DvRMmEoYDjBU1cXrvMUV +nuiZIesnKwkK2/HmcBhWuwzkvvnoEKQTkrgc4NtnHVMDpCKn3F2SEDzq//wbEBrD +2NCcnWXL0CsnMQMeNuE9dnUM/0Umud1RvCPHX9jYhxBAEg09ODfnRDwYwFMJZI// +1ZqmfHAuc1Uh6N//g7kdPjIe1qZ9LPFm6Vwdp6POXiUyK+OVrCoHzrQoeIY8Laad +TdJ0MN1kURXbg4NR16/9M51NZg== +-----END CERTIFICATE----- + +# Issuer: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. +# Subject: CN=Security Communication ECC RootCA1 O=SECOM Trust Systems CO.,LTD. +# Label: "Security Communication ECC RootCA1" +# Serial: 15446673492073852651 +# MD5 Fingerprint: 7e:43:b0:92:68:ec:05:43:4c:98:ab:5d:35:2e:7e:86 +# SHA1 Fingerprint: b8:0e:26:a9:bf:d2:b2:3b:c0:ef:46:c9:ba:c7:bb:f6:1d:0d:41:41 +# SHA256 Fingerprint: e7:4f:bd:a5:5b:d5:64:c4:73:a3:6b:44:1a:a7:99:c8:a6:8e:07:74:40:e8:28:8b:9f:a1:e5:0e:4b:ba:ca:11 +-----BEGIN CERTIFICATE----- +MIICODCCAb6gAwIBAgIJANZdm7N4gS7rMAoGCCqGSM49BAMDMGExCzAJBgNVBAYT +AkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSswKQYD +VQQDEyJTZWN1cml0eSBDb21tdW5pY2F0aW9uIEVDQyBSb290Q0ExMB4XDTE2MDYx +NjA1MTUyOFoXDTM4MDExODA1MTUyOFowYTELMAkGA1UEBhMCSlAxJTAjBgNVBAoT +HFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xKzApBgNVBAMTIlNlY3VyaXR5 +IENvbW11bmljYXRpb24gRUNDIFJvb3RDQTEwdjAQBgcqhkjOPQIBBgUrgQQAIgNi +AASkpW9gAwPDvTH00xecK4R1rOX9PVdu12O/5gSJko6BnOPpR27KkBLIE+Cnnfdl +dB9sELLo5OnvbYUymUSxXv3MdhDYW72ixvnWQuRXdtyQwjWpS4g8EkdtXP9JTxpK +ULGjQjBAMB0GA1UdDgQWBBSGHOf+LaVKiwj+KBH6vqNm+GBZLzAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjAVXUI9/Lbu +9zuxNuie9sRGKEkz0FhDKmMpzE2xtHqiuQ04pV1IKv3LsnNdo4gIxwwCMQDAqy0O +be0YottT6SXbVQjgUMzfRGEWgqtJsLKB7HOHeLRMsmIbEvoWTSVLY70eN9k= +-----END CERTIFICATE----- + +# Issuer: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY +# Subject: CN=BJCA Global Root CA1 O=BEIJING CERTIFICATE AUTHORITY +# Label: "BJCA Global Root CA1" +# Serial: 113562791157148395269083148143378328608 +# MD5 Fingerprint: 42:32:99:76:43:33:36:24:35:07:82:9b:28:f9:d0:90 +# SHA1 Fingerprint: d5:ec:8d:7b:4c:ba:79:f4:e7:e8:cb:9d:6b:ae:77:83:10:03:21:6a +# SHA256 Fingerprint: f3:89:6f:88:fe:7c:0a:88:27:66:a7:fa:6a:d2:74:9f:b5:7a:7f:3e:98:fb:76:9c:1f:a7:b0:9c:2c:44:d5:ae +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIQVW9l47TZkGobCdFsPsBsIDANBgkqhkiG9w0BAQsFADBU +MQswCQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRI +T1JJVFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0ExMB4XDTE5MTIxOTAz +MTYxN1oXDTQ0MTIxMjAzMTYxN1owVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJF +SUpJTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2Jh +bCBSb290IENBMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAPFmCL3Z +xRVhy4QEQaVpN3cdwbB7+sN3SJATcmTRuHyQNZ0YeYjjlwE8R4HyDqKYDZ4/N+AZ +spDyRhySsTphzvq3Rp4Dhtczbu33RYx2N95ulpH3134rhxfVizXuhJFyV9xgw8O5 +58dnJCNPYwpj9mZ9S1WnP3hkSWkSl+BMDdMJoDIwOvqfwPKcxRIqLhy1BDPapDgR +at7GGPZHOiJBhyL8xIkoVNiMpTAK+BcWyqw3/XmnkRd4OJmtWO2y3syJfQOcs4ll +5+M7sSKGjwZteAf9kRJ/sGsciQ35uMt0WwfCyPQ10WRjeulumijWML3mG90Vr4Tq +nMfK9Q7q8l0ph49pczm+LiRvRSGsxdRpJQaDrXpIhRMsDQa4bHlW/KNnMoH1V6XK +V0Jp6VwkYe/iMBhORJhVb3rCk9gZtt58R4oRTklH2yiUAguUSiz5EtBP6DF+bHq/ +pj+bOT0CFqMYs2esWz8sgytnOYFcuX6U1WTdno9uruh8W7TXakdI136z1C2OVnZO +z2nxbkRs1CTqjSShGL+9V/6pmTW12xB3uD1IutbB5/EjPtffhZ0nPNRAvQoMvfXn +jSXWgXSHRtQpdaJCbPdzied9v3pKH9MiyRVVz99vfFXQpIsHETdfg6YmV6YBW37+ +WGgHqel62bno/1Afq8K0wM7o6v0PvY1NuLxxAgMBAAGjQjBAMB0GA1UdDgQWBBTF +7+3M2I0hxkjk49cULqcWk+WYATAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE +AwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAUoKsITQfI/Ki2Pm4rzc2IInRNwPWaZ+4 +YRC6ojGYWUfo0Q0lHhVBDOAqVdVXUsv45Mdpox1NcQJeXyFFYEhcCY5JEMEE3Kli +awLwQ8hOnThJdMkycFRtwUf8jrQ2ntScvd0g1lPJGKm1Vrl2i5VnZu69mP6u775u ++2D2/VnGKhs/I0qUJDAnyIm860Qkmss9vk/Ves6OF8tiwdneHg56/0OGNFK8YT88 +X7vZdrRTvJez/opMEi4r89fO4aL/3Xtw+zuhTaRjAv04l5U/BXCga99igUOLtFkN +SoxUnMW7gZ/NfaXvCyUeOiDbHPwfmGcCCtRzRBPbUYQaVQNW4AB+dAb/OMRyHdOo +P2gxXdMJxy6MW2Pg6Nwe0uxhHvLe5e/2mXZgLR6UcnHGCyoyx5JO1UbXHfmpGQrI ++pXObSOYqgs4rZpWDW+N8TEAiMEXnM0ZNjX+VVOg4DwzX5Ze4jLp3zO7Bkqp2IRz +znfSxqxx4VyjHQy7Ct9f4qNx2No3WqB4K/TUfet27fJhcKVlmtOJNBir+3I+17Q9 +eVzYH6Eze9mCUAyTF6ps3MKCuwJXNq+YJyo5UOGwifUll35HaBC07HPKs5fRJNz2 +YqAo07WjuGS3iGJCz51TzZm+ZGiPTx4SSPfSKcOYKMryMguTjClPPGAyzQWWYezy +r/6zcCwupvI= +-----END CERTIFICATE----- + +# Issuer: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY +# Subject: CN=BJCA Global Root CA2 O=BEIJING CERTIFICATE AUTHORITY +# Label: "BJCA Global Root CA2" +# Serial: 58605626836079930195615843123109055211 +# MD5 Fingerprint: 5e:0a:f6:47:5f:a6:14:e8:11:01:95:3f:4d:01:eb:3c +# SHA1 Fingerprint: f4:27:86:eb:6e:b8:6d:88:31:67:02:fb:ba:66:a4:53:00:aa:7a:a6 +# SHA256 Fingerprint: 57:4d:f6:93:1e:27:80:39:66:7b:72:0a:fd:c1:60:0f:c2:7e:b6:6d:d3:09:29:79:fb:73:85:64:87:21:28:82 +-----BEGIN CERTIFICATE----- +MIICJTCCAaugAwIBAgIQLBcIfWQqwP6FGFkGz7RK6zAKBggqhkjOPQQDAzBUMQsw +CQYDVQQGEwJDTjEmMCQGA1UECgwdQkVJSklORyBDRVJUSUZJQ0FURSBBVVRIT1JJ +VFkxHTAbBgNVBAMMFEJKQ0EgR2xvYmFsIFJvb3QgQ0EyMB4XDTE5MTIxOTAzMTgy +MVoXDTQ0MTIxMjAzMTgyMVowVDELMAkGA1UEBhMCQ04xJjAkBgNVBAoMHUJFSUpJ +TkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZMR0wGwYDVQQDDBRCSkNBIEdsb2JhbCBS +b290IENBMjB2MBAGByqGSM49AgEGBSuBBAAiA2IABJ3LgJGNU2e1uVCxA/jlSR9B +IgmwUVJY1is0j8USRhTFiy8shP8sbqjV8QnjAyEUxEM9fMEsxEtqSs3ph+B99iK+ ++kpRuDCK/eHeGBIK9ke35xe/J4rUQUyWPGCWwf0VHKNCMEAwHQYDVR0OBBYEFNJK +sVF/BvDRgh9Obl+rg/xI1LCRMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMAoGCCqGSM49BAMDA2gAMGUCMBq8W9f+qdJUDkpd0m2xQNz0Q9XSSpkZElaA +94M04TVOSG0ED1cxMDAtsaqdAzjbBgIxAMvMh1PLet8gUXOQwKhbYdDFUDn9hf7B +43j4ptZLvZuHjw/l1lOWqzzIQNph91Oj9w== +-----END CERTIFICATE----- + +# Issuer: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited +# Subject: CN=Sectigo Public Server Authentication Root E46 O=Sectigo Limited +# Label: "Sectigo Public Server Authentication Root E46" +# Serial: 88989738453351742415770396670917916916 +# MD5 Fingerprint: 28:23:f8:b2:98:5c:37:16:3b:3e:46:13:4e:b0:b3:01 +# SHA1 Fingerprint: ec:8a:39:6c:40:f0:2e:bc:42:75:d4:9f:ab:1c:1a:5b:67:be:d2:9a +# SHA256 Fingerprint: c9:0f:26:f0:fb:1b:40:18:b2:22:27:51:9b:5c:a2:b5:3e:2c:a5:b3:be:5c:f1:8e:fe:1b:ef:47:38:0c:53:83 +-----BEGIN CERTIFICATE----- +MIICOjCCAcGgAwIBAgIQQvLM2htpN0RfFf51KBC49DAKBggqhkjOPQQDAzBfMQsw +CQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1T +ZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwHhcN +MjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEYMBYG +A1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1YmxpYyBT +ZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAR2+pmpbiDt+dd34wc7qNs9Xzjoq1WmVk/WSOrsfy2qw7LFeeyZYX8QeccC +WvkEN/U0NSt3zn8gj1KjAIns1aeibVvjS5KToID1AZTc8GgHHs3u/iVStSBDHBv+ +6xnOQ6OjQjBAMB0GA1UdDgQWBBTRItpMWfFLXyY4qp3W7usNw/upYTAOBgNVHQ8B +Af8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNnADBkAjAn7qRa +qCG76UeXlImldCBteU/IvZNeWBj7LRoAasm4PdCkT0RHlAFWovgzJQxC36oCMB3q +4S6ILuH5px0CMk7yn2xVdOOurvulGu7t0vzCAxHrRVxgED1cf5kDW21USAGKcw== +-----END CERTIFICATE----- + +# Issuer: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited +# Subject: CN=Sectigo Public Server Authentication Root R46 O=Sectigo Limited +# Label: "Sectigo Public Server Authentication Root R46" +# Serial: 156256931880233212765902055439220583700 +# MD5 Fingerprint: 32:10:09:52:00:d5:7e:6c:43:df:15:c0:b1:16:93:e5 +# SHA1 Fingerprint: ad:98:f9:f3:e4:7d:75:3b:65:d4:82:b3:a4:52:17:bb:6e:f5:e4:38 +# SHA256 Fingerprint: 7b:b6:47:a6:2a:ee:ac:88:bf:25:7a:a5:22:d0:1f:fe:a3:95:e0:ab:45:c7:3f:93:f6:56:54:ec:38:f2:5a:06 +-----BEGIN CERTIFICATE----- +MIIFijCCA3KgAwIBAgIQdY39i658BwD6qSWn4cetFDANBgkqhkiG9w0BAQwFADBf +MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQD +Ey1TZWN0aWdvIFB1YmxpYyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYw +HhcNMjEwMzIyMDAwMDAwWhcNNDYwMzIxMjM1OTU5WjBfMQswCQYDVQQGEwJHQjEY +MBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTYwNAYDVQQDEy1TZWN0aWdvIFB1Ymxp +YyBTZXJ2ZXIgQXV0aGVudGljYXRpb24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCTvtU2UnXYASOgHEdCSe5jtrch/cSV1UgrJnwUUxDa +ef0rty2k1Cz66jLdScK5vQ9IPXtamFSvnl0xdE8H/FAh3aTPaE8bEmNtJZlMKpnz +SDBh+oF8HqcIStw+KxwfGExxqjWMrfhu6DtK2eWUAtaJhBOqbchPM8xQljeSM9xf +iOefVNlI8JhD1mb9nxc4Q8UBUQvX4yMPFF1bFOdLvt30yNoDN9HWOaEhUTCDsG3X +ME6WW5HwcCSrv0WBZEMNvSE6Lzzpng3LILVCJ8zab5vuZDCQOc2TZYEhMbUjUDM3 +IuM47fgxMMxF/mL50V0yeUKH32rMVhlATc6qu/m1dkmU8Sf4kaWD5QazYw6A3OAS +VYCmO2a0OYctyPDQ0RTp5A1NDvZdV3LFOxxHVp3i1fuBYYzMTYCQNFu31xR13NgE +SJ/AwSiItOkcyqex8Va3e0lMWeUgFaiEAin6OJRpmkkGj80feRQXEgyDet4fsZfu ++Zd4KKTIRJLpfSYFplhym3kT2BFfrsU4YjRosoYwjviQYZ4ybPUHNs2iTG7sijbt +8uaZFURww3y8nDnAtOFr94MlI1fZEoDlSfB1D++N6xybVCi0ITz8fAr/73trdf+L +HaAZBav6+CuBQug4urv7qv094PPK306Xlynt8xhW6aWWrL3DkJiy4Pmi1KZHQ3xt +zwIDAQABo0IwQDAdBgNVHQ4EFgQUVnNYZJX5khqwEioEYnmhQBWIIUkwDgYDVR0P +AQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAC9c +mTz8Bl6MlC5w6tIyMY208FHVvArzZJ8HXtXBc2hkeqK5Duj5XYUtqDdFqij0lgVQ +YKlJfp/imTYpE0RHap1VIDzYm/EDMrraQKFz6oOht0SmDpkBm+S8f74TlH7Kph52 +gDY9hAaLMyZlbcp+nv4fjFg4exqDsQ+8FxG75gbMY/qB8oFM2gsQa6H61SilzwZA +Fv97fRheORKkU55+MkIQpiGRqRxOF3yEvJ+M0ejf5lG5Nkc/kLnHvALcWxxPDkjB +JYOcCj+esQMzEhonrPcibCTRAUH4WAP+JWgiH5paPHxsnnVI84HxZmduTILA7rpX +DhjvLpr3Etiga+kFpaHpaPi8TD8SHkXoUsCjvxInebnMMTzD9joiFgOgyY9mpFui +TdaBJQbpdqQACj7LzTWb4OE4y2BThihCQRxEV+ioratF4yUQvNs+ZUH7G6aXD+u5 +dHn5HrwdVw1Hr8Mvn4dGp+smWg9WY7ViYG4A++MnESLn/pmPNPW56MORcr3Ywx65 +LvKRRFHQV80MNNVIIb/bE/FmJUNS0nAiNs2fxBx1IK1jcmMGDw4nztJqDby1ORrp +0XZ60Vzk50lJLVU3aPAaOpg+VBeHVOmmJ1CJeyAvP/+/oYtKR5j/K3tJPsMpRmAY +QqszKbrAKbkTidOIijlBO8n9pu0f9GBj39ItVQGL +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation +# Subject: CN=SSL.com TLS RSA Root CA 2022 O=SSL Corporation +# Label: "SSL.com TLS RSA Root CA 2022" +# Serial: 148535279242832292258835760425842727825 +# MD5 Fingerprint: d8:4e:c6:59:30:d8:fe:a0:d6:7a:5a:2c:2c:69:78:da +# SHA1 Fingerprint: ec:2c:83:40:72:af:26:95:10:ff:0e:f2:03:ee:31:70:f6:78:9d:ca +# SHA256 Fingerprint: 8f:af:7d:2e:2c:b4:70:9b:b8:e0:b3:36:66:bf:75:a5:dd:45:b5:de:48:0f:8e:a8:d4:bf:e6:be:bc:17:f2:ed +-----BEGIN CERTIFICATE----- +MIIFiTCCA3GgAwIBAgIQb77arXO9CEDii02+1PdbkTANBgkqhkiG9w0BAQsFADBO +MQswCQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQD +DBxTU0wuY29tIFRMUyBSU0EgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzQyMloX +DTQ2MDgxOTE2MzQyMVowTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jw +b3JhdGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgUlNBIFJvb3QgQ0EgMjAyMjCC +AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANCkCXJPQIgSYT41I57u9nTP +L3tYPc48DRAokC+X94xI2KDYJbFMsBFMF3NQ0CJKY7uB0ylu1bUJPiYYf7ISf5OY +t6/wNr/y7hienDtSxUcZXXTzZGbVXcdotL8bHAajvI9AI7YexoS9UcQbOcGV0ins +S657Lb85/bRi3pZ7QcacoOAGcvvwB5cJOYF0r/c0WRFXCsJbwST0MXMwgsadugL3 +PnxEX4MN8/HdIGkWCVDi1FW24IBydm5MR7d1VVm0U3TZlMZBrViKMWYPHqIbKUBO +L9975hYsLfy/7PO0+r4Y9ptJ1O4Fbtk085zx7AGL0SDGD6C1vBdOSHtRwvzpXGk3 +R2azaPgVKPC506QVzFpPulJwoxJF3ca6TvvC0PeoUidtbnm1jPx7jMEWTO6Af77w +dr5BUxIzrlo4QqvXDz5BjXYHMtWrifZOZ9mxQnUjbvPNQrL8VfVThxc7wDNY8VLS ++YCk8OjwO4s4zKTGkH8PnP2L0aPP2oOnaclQNtVcBdIKQXTbYxE3waWglksejBYS +d66UNHsef8JmAOSqg+qKkK3ONkRN0VHpvB/zagX9wHQfJRlAUW7qglFA35u5CCoG +AtUjHBPW6dvbxrB6y3snm/vg1UYk7RBLY0ulBY+6uB0rpvqR4pJSvezrZ5dtmi2f +gTIFZzL7SAg/2SW4BCUvAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0j +BBgwFoAU+y437uOEeicuzRk1sTN8/9REQrkwHQYDVR0OBBYEFPsuN+7jhHonLs0Z +NbEzfP/UREK5MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAjYlt +hEUY8U+zoO9opMAdrDC8Z2awms22qyIZZtM7QbUQnRC6cm4pJCAcAZli05bg4vsM +QtfhWsSWTVTNj8pDU/0quOr4ZcoBwq1gaAafORpR2eCNJvkLTqVTJXojpBzOCBvf +R4iyrT7gJ4eLSYwfqUdYe5byiB0YrrPRpgqU+tvT5TgKa3kSM/tKWTcWQA673vWJ +DPFs0/dRa1419dvAJuoSc06pkZCmF8NsLzjUo3KUQyxi4U5cMj29TH0ZR6LDSeeW +P4+a0zvkEdiLA9z2tmBVGKaBUfPhqBVq6+AL8BQx1rmMRTqoENjwuSfr98t67wVy +lrXEj5ZzxOhWc5y8aVFjvO9nHEMaX3cZHxj4HCUp+UmZKbaSPaKDN7EgkaibMOlq +bLQjk2UEqxHzDh1TJElTHaE/nUiSEeJ9DU/1172iWD54nR4fK/4huxoTtrEoZP2w +AgDHbICivRZQIA9ygV/MlP+7mea6kMvq+cYMwq7FGc4zoWtcu358NFcXrfA/rs3q +r5nsLFR+jM4uElZI7xc7P0peYNLcdDa8pUNjyw9bowJWCZ4kLOGGgYz+qxcs+sji +Mho6/4UIyYOf8kpIEFR3N+2ivEC+5BB09+Rbu7nzifmPQdjH5FCQNYA+HLhNkNPU +98OwoX6EyneSMSy4kLGCenROmxMmtNVQZlR4rmA= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation +# Subject: CN=SSL.com TLS ECC Root CA 2022 O=SSL Corporation +# Label: "SSL.com TLS ECC Root CA 2022" +# Serial: 26605119622390491762507526719404364228 +# MD5 Fingerprint: 99:d7:5c:f1:51:36:cc:e9:ce:d9:19:2e:77:71:56:c5 +# SHA1 Fingerprint: 9f:5f:d9:1a:54:6d:f5:0c:71:f0:ee:7a:bd:17:49:98:84:73:e2:39 +# SHA256 Fingerprint: c3:2f:fd:9f:46:f9:36:d1:6c:36:73:99:09:59:43:4b:9a:d6:0a:af:bb:9e:7c:f3:36:54:f1:44:cc:1b:a1:43 +-----BEGIN CERTIFICATE----- +MIICOjCCAcCgAwIBAgIQFAP1q/s3ixdAW+JDsqXRxDAKBggqhkjOPQQDAzBOMQsw +CQYDVQQGEwJVUzEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMSUwIwYDVQQDDBxT +U0wuY29tIFRMUyBFQ0MgUm9vdCBDQSAyMDIyMB4XDTIyMDgyNTE2MzM0OFoXDTQ2 +MDgxOTE2MzM0N1owTjELMAkGA1UEBhMCVVMxGDAWBgNVBAoMD1NTTCBDb3Jwb3Jh +dGlvbjElMCMGA1UEAwwcU1NMLmNvbSBUTFMgRUNDIFJvb3QgQ0EgMjAyMjB2MBAG +ByqGSM49AgEGBSuBBAAiA2IABEUpNXP6wrgjzhR9qLFNoFs27iosU8NgCTWyJGYm +acCzldZdkkAZDsalE3D07xJRKF3nzL35PIXBz5SQySvOkkJYWWf9lCcQZIxPBLFN +SeR7T5v15wj4A4j3p8OSSxlUgaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSME +GDAWgBSJjy+j6CugFFR781a4Jl9nOAuc0DAdBgNVHQ4EFgQUiY8vo+groBRUe/NW +uCZfZzgLnNAwDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMDA2gAMGUCMFXjIlbp +15IkWE8elDIPDAI2wv2sdDJO4fscgIijzPvX6yv/N33w7deedWo1dlJF4AIxAMeN +b0Igj762TVntd00pxCAgRWSGOlDGxK0tk/UYfXLtqc/ErFc2KAhl3zx5Zn6g6g== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos +# Subject: CN=Atos TrustedRoot Root CA ECC TLS 2021 O=Atos +# Label: "Atos TrustedRoot Root CA ECC TLS 2021" +# Serial: 81873346711060652204712539181482831616 +# MD5 Fingerprint: 16:9f:ad:f1:70:ad:79:d6:ed:29:b4:d1:c5:79:70:a8 +# SHA1 Fingerprint: 9e:bc:75:10:42:b3:02:f3:81:f4:f7:30:62:d4:8f:c3:a7:51:b2:dd +# SHA256 Fingerprint: b2:fa:e5:3e:14:cc:d7:ab:92:12:06:47:01:ae:27:9c:1d:89:88:fa:cb:77:5f:a8:a0:08:91:4e:66:39:88:a8 +-----BEGIN CERTIFICATE----- +MIICFTCCAZugAwIBAgIQPZg7pmY9kGP3fiZXOATvADAKBggqhkjOPQQDAzBMMS4w +LAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgRUNDIFRMUyAyMDIxMQ0w +CwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTI2MjNaFw00MTA0 +MTcwOTI2MjJaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBDQSBF +Q0MgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMHYwEAYHKoZI +zj0CAQYFK4EEACIDYgAEloZYKDcKZ9Cg3iQZGeHkBQcfl+3oZIK59sRxUM6KDP/X +tXa7oWyTbIOiaG6l2b4siJVBzV3dscqDY4PMwL502eCdpO5KTlbgmClBk1IQ1SQ4 +AjJn8ZQSb+/Xxd4u/RmAo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR2 +KCXWfeBmmnoJsmo7jjPXNtNPojAOBgNVHQ8BAf8EBAMCAYYwCgYIKoZIzj0EAwMD +aAAwZQIwW5kp85wxtolrbNa9d+F851F+uDrNozZffPc8dz7kUK2o59JZDCaOMDtu +CCrCp1rIAjEAmeMM56PDr9NJLkaCI2ZdyQAUEv049OGYa3cpetskz2VAv9LcjBHo +9H1/IISpQuQo +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos +# Subject: CN=Atos TrustedRoot Root CA RSA TLS 2021 O=Atos +# Label: "Atos TrustedRoot Root CA RSA TLS 2021" +# Serial: 111436099570196163832749341232207667876 +# MD5 Fingerprint: d4:d3:46:b8:9a:c0:9c:76:5d:9e:3a:c3:b9:99:31:d2 +# SHA1 Fingerprint: 18:52:3b:0d:06:37:e4:d6:3a:df:23:e4:98:fb:5b:16:fb:86:74:48 +# SHA256 Fingerprint: 81:a9:08:8e:a5:9f:b3:64:c5:48:a6:f8:55:59:09:9b:6f:04:05:ef:bf:18:e5:32:4e:c9:f4:57:ba:00:11:2f +-----BEGIN CERTIFICATE----- +MIIFZDCCA0ygAwIBAgIQU9XP5hmTC/srBRLYwiqipDANBgkqhkiG9w0BAQwFADBM +MS4wLAYDVQQDDCVBdG9zIFRydXN0ZWRSb290IFJvb3QgQ0EgUlNBIFRMUyAyMDIx +MQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0yMTA0MjIwOTIxMTBaFw00 +MTA0MTcwOTIxMDlaMEwxLjAsBgNVBAMMJUF0b3MgVHJ1c3RlZFJvb3QgUm9vdCBD +QSBSU0EgVExTIDIwMjExDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRFMIICIjAN +BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtoAOxHm9BYx9sKOdTSJNy/BBl01Z +4NH+VoyX8te9j2y3I49f1cTYQcvyAh5x5en2XssIKl4w8i1mx4QbZFc4nXUtVsYv +Ye+W/CBGvevUez8/fEc4BKkbqlLfEzfTFRVOvV98r61jx3ncCHvVoOX3W3WsgFWZ +kmGbzSoXfduP9LVq6hdKZChmFSlsAvFr1bqjM9xaZ6cF4r9lthawEO3NUDPJcFDs +GY6wx/J0W2tExn2WuZgIWWbeKQGb9Cpt0xU6kGpn8bRrZtkh68rZYnxGEFzedUln +nkL5/nWpo63/dgpnQOPF943HhZpZnmKaau1Fh5hnstVKPNe0OwANwI8f4UDErmwh +3El+fsqyjW22v5MvoVw+j8rtgI5Y4dtXz4U2OLJxpAmMkokIiEjxQGMYsluMWuPD +0xeqqxmjLBvk1cbiZnrXghmmOxYsL3GHX0WelXOTwkKBIROW1527k2gV+p2kHYzy +geBYBr3JtuP2iV2J+axEoctr+hbxx1A9JNr3w+SH1VbxT5Aw+kUJWdo0zuATHAR8 +ANSbhqRAvNncTFd+rrcztl524WWLZt+NyteYr842mIycg5kDcPOvdO3GDjbnvezB +c6eUWsuSZIKmAMFwoW4sKeFYV+xafJlrJaSQOoD0IJ2azsct+bJLKZWD6TWNp0lI +pw9MGZHQ9b8Q4HECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU +dEmZ0f+0emhFdcN+tNzMzjkz2ggwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB +DAUAA4ICAQAjQ1MkYlxt/T7Cz1UAbMVWiLkO3TriJQ2VSpfKgInuKs1l+NsW4AmS +4BjHeJi78+xCUvuppILXTdiK/ORO/auQxDh1MoSf/7OwKwIzNsAQkG8dnK/haZPs +o0UvFJ/1TCplQ3IM98P4lYsU84UgYt1UU90s3BiVaU+DR3BAM1h3Egyi61IxHkzJ +qM7F78PRreBrAwA0JrRUITWXAdxfG/F851X6LWh3e9NpzNMOa7pNdkTWwhWaJuyw +xfW70Xp0wmzNxbVe9kzmWy2B27O3Opee7c9GslA9hGCZcbUztVdF5kJHdWoOsAgM +rr3e97sPWD2PAzHoPYJQyi9eDF20l74gNAf0xBLh7tew2VktafcxBPTy+av5EzH4 +AXcOPUIjJsyacmdRIXrMPIWo6iFqO9taPKU0nprALN+AnCng33eU0aKAQv9qTFsR +0PXNor6uzFFcw9VUewyu1rkGd4Di7wcaaMxZUa1+XGdrudviB0JbuAEFWDlN5LuY +o7Ey7Nmj1m+UI/87tyll5gfp77YZ6ufCOB0yiJA8EytuzO+rdwY0d4RPcuSBhPm5 +dDTedk+SKlOxJTnbPP/lPqYO5Wue/9vsL3SD3460s6neFE3/MaNFcyT6lSnMEpcE +oji2jbDwN/zIIX8/syQbPYtuzE2wFg2WHYMfRsCbvUOZ58SWLs5fyQ== +-----END CERTIFICATE----- + +# Issuer: CN=TrustAsia Global Root CA G3 O=TrustAsia Technologies, Inc. +# Subject: CN=TrustAsia Global Root CA G3 O=TrustAsia Technologies, Inc. +# Label: "TrustAsia Global Root CA G3" +# Serial: 576386314500428537169965010905813481816650257167 +# MD5 Fingerprint: 30:42:1b:b7:bb:81:75:35:e4:16:4f:53:d2:94:de:04 +# SHA1 Fingerprint: 63:cf:b6:c1:27:2b:56:e4:88:8e:1c:23:9a:b6:2e:81:47:24:c3:c7 +# SHA256 Fingerprint: e0:d3:22:6a:eb:11:63:c2:e4:8f:f9:be:3b:50:b4:c6:43:1b:e7:bb:1e:ac:c5:c3:6b:5d:5e:c5:09:03:9a:08 +-----BEGIN CERTIFICATE----- +MIIFpTCCA42gAwIBAgIUZPYOZXdhaqs7tOqFhLuxibhxkw8wDQYJKoZIhvcNAQEM +BQAwWjELMAkGA1UEBhMCQ04xJTAjBgNVBAoMHFRydXN0QXNpYSBUZWNobm9sb2dp +ZXMsIEluYy4xJDAiBgNVBAMMG1RydXN0QXNpYSBHbG9iYWwgUm9vdCBDQSBHMzAe +Fw0yMTA1MjAwMjEwMTlaFw00NjA1MTkwMjEwMTlaMFoxCzAJBgNVBAYTAkNOMSUw +IwYDVQQKDBxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDDBtU +cnVzdEFzaWEgR2xvYmFsIFJvb3QgQ0EgRzMwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQDAMYJhkuSUGwoqZdC+BqmHO1ES6nBBruL7dOoKjbmzTNyPtxNS +T1QY4SxzlZHFZjtqz6xjbYdT8PfxObegQ2OwxANdV6nnRM7EoYNl9lA+sX4WuDqK +AtCWHwDNBSHvBm3dIZwZQ0WhxeiAysKtQGIXBsaqvPPW5vxQfmZCHzyLpnl5hkA1 +nyDvP+uLRx+PjsXUjrYsyUQE49RDdT/VP68czH5GX6zfZBCK70bwkPAPLfSIC7Ep +qq+FqklYqL9joDiR5rPmd2jE+SoZhLsO4fWvieylL1AgdB4SQXMeJNnKziyhWTXA +yB1GJ2Faj/lN03J5Zh6fFZAhLf3ti1ZwA0pJPn9pMRJpxx5cynoTi+jm9WAPzJMs +hH/x/Gr8m0ed262IPfN2dTPXS6TIi/n1Q1hPy8gDVI+lhXgEGvNz8teHHUGf59gX +zhqcD0r83ERoVGjiQTz+LISGNzzNPy+i2+f3VANfWdP3kXjHi3dqFuVJhZBFcnAv +kV34PmVACxmZySYgWmjBNb9Pp1Hx2BErW+Canig7CjoKH8GB5S7wprlppYiU5msT +f9FkPz2ccEblooV7WIQn3MSAPmeamseaMQ4w7OYXQJXZRe0Blqq/DPNL0WP3E1jA +uPP6Z92bfW1K/zJMtSU7/xxnD4UiWQWRkUF3gdCFTIcQcf+eQxuulXUtgQIDAQAB +o2MwYTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFEDk5PIj7zjKsK5Xf/Ih +MBY027ySMB0GA1UdDgQWBBRA5OTyI+84yrCuV3/yITAWNNu8kjAOBgNVHQ8BAf8E +BAMCAQYwDQYJKoZIhvcNAQEMBQADggIBACY7UeFNOPMyGLS0XuFlXsSUT9SnYaP4 +wM8zAQLpw6o1D/GUE3d3NZ4tVlFEbuHGLige/9rsR82XRBf34EzC4Xx8MnpmyFq2 +XFNFV1pF1AWZLy4jVe5jaN/TG3inEpQGAHUNcoTpLrxaatXeL1nHo+zSh2bbt1S1 +JKv0Q3jbSwTEb93mPmY+KfJLaHEih6D4sTNjduMNhXJEIlU/HHzp/LgV6FL6qj6j +ITk1dImmasI5+njPtqzn59ZW/yOSLlALqbUHM/Q4X6RJpstlcHboCoWASzY9M/eV +VHUl2qzEc4Jl6VL1XP04lQJqaTDFHApXB64ipCz5xUG3uOyfT0gA+QEEVcys+TIx +xHWVBqB/0Y0n3bOppHKH/lmLmnp0Ft0WpWIp6zqW3IunaFnT63eROfjXy9mPX1on +AX1daBli2MjN9LdyR75bl87yraKZk62Uy5P2EgmVtqvXO9A/EcswFi55gORngS1d +7XB4tmBZrOFdRWOPyN9yaFvqHbgB8X7754qz41SgOAngPN5C8sLtLpvzHzW2Ntjj +gKGLzZlkD8Kqq7HK9W+eQ42EVJmzbsASZthwEPEGNTNDqJwuuhQxzhB/HIbjj9LV ++Hfsm6vxL2PZQl/gZ4FkkfGXL/xuJvYz+NO1+MRiqzFRJQJ6+N1rZdVtTTDIZbpo +FGWsJwt0ivKH +-----END CERTIFICATE----- + +# Issuer: CN=TrustAsia Global Root CA G4 O=TrustAsia Technologies, Inc. +# Subject: CN=TrustAsia Global Root CA G4 O=TrustAsia Technologies, Inc. +# Label: "TrustAsia Global Root CA G4" +# Serial: 451799571007117016466790293371524403291602933463 +# MD5 Fingerprint: 54:dd:b2:d7:5f:d8:3e:ed:7c:e0:0b:2e:cc:ed:eb:eb +# SHA1 Fingerprint: 57:73:a5:61:5d:80:b2:e6:ac:38:82:fc:68:07:31:ac:9f:b5:92:5a +# SHA256 Fingerprint: be:4b:56:cb:50:56:c0:13:6a:52:6d:f4:44:50:8d:aa:36:a0:b5:4f:42:e4:ac:38:f7:2a:f4:70:e4:79:65:4c +-----BEGIN CERTIFICATE----- +MIICVTCCAdygAwIBAgIUTyNkuI6XY57GU4HBdk7LKnQV1tcwCgYIKoZIzj0EAwMw +WjELMAkGA1UEBhMCQ04xJTAjBgNVBAoMHFRydXN0QXNpYSBUZWNobm9sb2dpZXMs +IEluYy4xJDAiBgNVBAMMG1RydXN0QXNpYSBHbG9iYWwgUm9vdCBDQSBHNDAeFw0y +MTA1MjAwMjEwMjJaFw00NjA1MTkwMjEwMjJaMFoxCzAJBgNVBAYTAkNOMSUwIwYD +VQQKDBxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDDBtUcnVz +dEFzaWEgR2xvYmFsIFJvb3QgQ0EgRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATx +s8045CVD5d4ZCbuBeaIVXxVjAd7Cq92zphtnS4CDr5nLrBfbK5bKfFJV4hrhPVbw +LxYI+hW8m7tH5j/uqOFMjPXTNvk4XatwmkcN4oFBButJ+bAp3TPsUKV/eSm4IJij +YzBhMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUpbtKl86zK3+kMd6Xg1mD +pm9xy94wHQYDVR0OBBYEFKW7SpfOsyt/pDHel4NZg6ZvccveMA4GA1UdDwEB/wQE +AwIBBjAKBggqhkjOPQQDAwNnADBkAjBe8usGzEkxn0AAbbd+NvBNEU/zy4k6LHiR +UKNbwMp1JvK/kF0LgoxgKJ/GcJpo5PECMFxYDlZ2z1jD1xCMuo6u47xkdUfFVZDj +/bpV6wfEU6s3qe4hsiFbYI89MvHVI5TWWA== +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust ECC Root-01 O=CommScope +# Subject: CN=CommScope Public Trust ECC Root-01 O=CommScope +# Label: "CommScope Public Trust ECC Root-01" +# Serial: 385011430473757362783587124273108818652468453534 +# MD5 Fingerprint: 3a:40:a7:fc:03:8c:9c:38:79:2f:3a:a2:6c:b6:0a:16 +# SHA1 Fingerprint: 07:86:c0:d8:dd:8e:c0:80:98:06:98:d0:58:7a:ef:de:a6:cc:a2:5d +# SHA256 Fingerprint: 11:43:7c:da:7b:b4:5e:41:36:5f:45:b3:9a:38:98:6b:0d:e0:0d:ef:34:8e:0c:7b:b0:87:36:33:80:0b:c3:8b +-----BEGIN CERTIFICATE----- +MIICHTCCAaOgAwIBAgIUQ3CCd89NXTTxyq4yLzf39H91oJ4wCgYIKoZIzj0EAwMw +TjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwiQ29t +bVNjb3BlIFB1YmxpYyBUcnVzdCBFQ0MgUm9vdC0wMTAeFw0yMTA0MjgxNzM1NDNa +Fw00NjA0MjgxNzM1NDJaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21tU2Nv +cGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgRUNDIFJvb3QtMDEw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAARLNumuV16ocNfQj3Rid8NeeqrltqLxeP0C +flfdkXmcbLlSiFS8LwS+uM32ENEp7LXQoMPwiXAZu1FlxUOcw5tjnSCDPgYLpkJE +hRGnSjot6dZoL0hOUysHP029uax3OVejQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSOB2LAUN3GGQYARnQE9/OufXVNMDAKBggq +hkjOPQQDAwNoADBlAjEAnDPfQeMjqEI2Jpc1XHvr20v4qotzVRVcrHgpD7oh2MSg +2NED3W3ROT3Ek2DS43KyAjB8xX6I01D1HiXo+k515liWpDVfG2XqYZpwI7UNo5uS +Um9poIyNStDuiw7LR47QjRE= +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust ECC Root-02 O=CommScope +# Subject: CN=CommScope Public Trust ECC Root-02 O=CommScope +# Label: "CommScope Public Trust ECC Root-02" +# Serial: 234015080301808452132356021271193974922492992893 +# MD5 Fingerprint: 59:b0:44:d5:65:4d:b8:5c:55:19:92:02:b6:d1:94:b2 +# SHA1 Fingerprint: 3c:3f:ef:57:0f:fe:65:93:86:9e:a0:fe:b0:f6:ed:8e:d1:13:c7:e5 +# SHA256 Fingerprint: 2f:fb:7f:81:3b:bb:b3:c8:9a:b4:e8:16:2d:0f:16:d7:15:09:a8:30:cc:9d:73:c2:62:e5:14:08:75:d1:ad:4a +-----BEGIN CERTIFICATE----- +MIICHDCCAaOgAwIBAgIUKP2ZYEFHpgE6yhR7H+/5aAiDXX0wCgYIKoZIzj0EAwMw +TjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwiQ29t +bVNjb3BlIFB1YmxpYyBUcnVzdCBFQ0MgUm9vdC0wMjAeFw0yMTA0MjgxNzQ0NTRa +Fw00NjA0MjgxNzQ0NTNaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21tU2Nv +cGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgRUNDIFJvb3QtMDIw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAR4MIHoYx7l63FRD/cHB8o5mXxO1Q/MMDAL +j2aTPs+9xYa9+bG3tD60B8jzljHz7aRP+KNOjSkVWLjVb3/ubCK1sK9IRQq9qEmU +v4RDsNuESgMjGWdqb8FuvAY5N9GIIvejQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTmGHX/72DehKT1RsfeSlXjMjZ59TAKBggq +hkjOPQQDAwNnADBkAjAmc0l6tqvmSfR9Uj/UQQSugEODZXW5hYA4O9Zv5JOGq4/n +ich/m35rChJVYaoR4HkCMHfoMXGsPHED1oQmHhS48zs73u1Z/GtMMH9ZzkXpc2AV +mkzw5l4lIhVtwodZ0LKOag== +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust RSA Root-01 O=CommScope +# Subject: CN=CommScope Public Trust RSA Root-01 O=CommScope +# Label: "CommScope Public Trust RSA Root-01" +# Serial: 354030733275608256394402989253558293562031411421 +# MD5 Fingerprint: 0e:b4:15:bc:87:63:5d:5d:02:73:d4:26:38:68:73:d8 +# SHA1 Fingerprint: 6d:0a:5f:f7:b4:23:06:b4:85:b3:b7:97:64:fc:ac:75:f5:33:f2:93 +# SHA256 Fingerprint: 02:bd:f9:6e:2a:45:dd:9b:f1:8f:c7:e1:db:df:21:a0:37:9b:a3:c9:c2:61:03:44:cf:d8:d6:06:fe:c1:ed:81 +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIUPgNJgXUWdDGOTKvVxZAplsU5EN0wDQYJKoZIhvcNAQEL +BQAwTjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwi +Q29tbVNjb3BlIFB1YmxpYyBUcnVzdCBSU0EgUm9vdC0wMTAeFw0yMTA0MjgxNjQ1 +NTRaFw00NjA0MjgxNjQ1NTNaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21t +U2NvcGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgUlNBIFJvb3Qt +MDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwSGWjDR1C45FtnYSk +YZYSwu3D2iM0GXb26v1VWvZVAVMP8syMl0+5UMuzAURWlv2bKOx7dAvnQmtVzslh +suitQDy6uUEKBU8bJoWPQ7VAtYXR1HHcg0Hz9kXHgKKEUJdGzqAMxGBWBB0HW0al +DrJLpA6lfO741GIDuZNqihS4cPgugkY4Iw50x2tBt9Apo52AsH53k2NC+zSDO3Oj +WiE260f6GBfZumbCk6SP/F2krfxQapWsvCQz0b2If4b19bJzKo98rwjyGpg/qYFl +P8GMicWWMJoKz/TUyDTtnS+8jTiGU+6Xn6myY5QXjQ/cZip8UlF1y5mO6D1cv547 +KI2DAg+pn3LiLCuz3GaXAEDQpFSOm117RTYm1nJD68/A6g3czhLmfTifBSeolz7p +UcZsBSjBAg/pGG3svZwG1KdJ9FQFa2ww8esD1eo9anbCyxooSU1/ZOD6K9pzg4H/ +kQO9lLvkuI6cMmPNn7togbGEW682v3fuHX/3SZtS7NJ3Wn2RnU3COS3kuoL4b/JO +Hg9O5j9ZpSPcPYeoKFgo0fEbNttPxP/hjFtyjMcmAyejOQoBqsCyMWCDIqFPEgkB +Ea801M/XrmLTBQe0MXXgDW1XT2mH+VepuhX2yFJtocucH+X8eKg1mp9BFM6ltM6U +CBwJrVbl2rZJmkrqYxhTnCwuwwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUN12mmnQywsL5x6YVEFm45P3luG0wDQYJ +KoZIhvcNAQELBQADggIBAK+nz97/4L1CjU3lIpbfaOp9TSp90K09FlxD533Ahuh6 +NWPxzIHIxgvoLlI1pKZJkGNRrDSsBTtXAOnTYtPZKdVUvhwQkZyybf5Z/Xn36lbQ +nmhUQo8mUuJM3y+Xpi/SB5io82BdS5pYV4jvguX6r2yBS5KPQJqTRlnLX3gWsWc+ +QgvfKNmwrZggvkN80V4aCRckjXtdlemrwWCrWxhkgPut4AZ9HcpZuPN4KWfGVh2v +trV0KnahP/t1MJ+UXjulYPPLXAziDslg+MkfFoom3ecnf+slpoq9uC02EJqxWE2a +aE9gVOX2RhOOiKy8IUISrcZKiX2bwdgt6ZYD9KJ0DLwAHb/WNyVntHKLr4W96ioD +j8z7PEQkguIBpQtZtjSNMgsSDesnwv1B10A8ckYpwIzqug/xBpMu95yo9GA+o/E4 +Xo4TwbM6l4c/ksp4qRyv0LAbJh6+cOx69TOY6lz/KwsETkPdY34Op054A5U+1C0w +lREQKC6/oAI+/15Z0wUOlV9TRe9rh9VIzRamloPh37MG88EU26fsHItdkJANclHn +YfkUyq+Dj7+vsQpZXdxc1+SWrVtgHdqul7I52Qb1dgAT+GhMIbA1xNxVssnBQVoc +icCMb3SgazNNtQEo/a2tiRc7ppqEvOuM6sRxJKi6KfkIsidWNTJf6jn7MZrVGczw +-----END CERTIFICATE----- + +# Issuer: CN=CommScope Public Trust RSA Root-02 O=CommScope +# Subject: CN=CommScope Public Trust RSA Root-02 O=CommScope +# Label: "CommScope Public Trust RSA Root-02" +# Serial: 480062499834624527752716769107743131258796508494 +# MD5 Fingerprint: e1:29:f9:62:7b:76:e2:96:6d:f3:d4:d7:0f:ae:1f:aa +# SHA1 Fingerprint: ea:b0:e2:52:1b:89:93:4c:11:68:f2:d8:9a:ac:22:4c:a3:8a:57:ae +# SHA256 Fingerprint: ff:e9:43:d7:93:42:4b:4f:7c:44:0c:1c:3d:64:8d:53:63:f3:4b:82:dc:87:aa:7a:9f:11:8f:c5:de:e1:01:f1 +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIUVBa/O345lXGN0aoApYYNK496BU4wDQYJKoZIhvcNAQEL +BQAwTjELMAkGA1UEBhMCVVMxEjAQBgNVBAoMCUNvbW1TY29wZTErMCkGA1UEAwwi +Q29tbVNjb3BlIFB1YmxpYyBUcnVzdCBSU0EgUm9vdC0wMjAeFw0yMTA0MjgxNzE2 +NDNaFw00NjA0MjgxNzE2NDJaME4xCzAJBgNVBAYTAlVTMRIwEAYDVQQKDAlDb21t +U2NvcGUxKzApBgNVBAMMIkNvbW1TY29wZSBQdWJsaWMgVHJ1c3QgUlNBIFJvb3Qt +MDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDh+g77aAASyE3VrCLE +NQE7xVTlWXZjpX/rwcRqmL0yjReA61260WI9JSMZNRTpf4mnG2I81lDnNJUDMrG0 +kyI9p+Kx7eZ7Ti6Hmw0zdQreqjXnfuU2mKKuJZ6VszKWpCtYHu8//mI0SFHRtI1C +rWDaSWqVcN3SAOLMV2MCe5bdSZdbkk6V0/nLKR8YSvgBKtJjCW4k6YnS5cciTNxz +hkcAqg2Ijq6FfUrpuzNPDlJwnZXjfG2WWy09X6GDRl224yW4fKcZgBzqZUPckXk2 +LHR88mcGyYnJ27/aaL8j7dxrrSiDeS/sOKUNNwFnJ5rpM9kzXzehxfCrPfp4sOcs +n/Y+n2Dg70jpkEUeBVF4GiwSLFworA2iI540jwXmojPOEXcT1A6kHkIfhs1w/tku +FT0du7jyU1fbzMZ0KZwYszZ1OC4PVKH4kh+Jlk+71O6d6Ts2QrUKOyrUZHk2EOH5 +kQMreyBUzQ0ZGshBMjTRsJnhkB4BQDa1t/qp5Xd1pCKBXbCL5CcSD1SIxtuFdOa3 +wNemKfrb3vOTlycEVS8KbzfFPROvCgCpLIscgSjX74Yxqa7ybrjKaixUR9gqiC6v +wQcQeKwRoi9C8DfF8rhW3Q5iLc4tVn5V8qdE9isy9COoR+jUKgF4z2rDN6ieZdIs +5fq6M8EGRPbmz6UNp2YINIos8wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUR9DnsSL/nSz12Vdgs7GxcJXvYXowDQYJ +KoZIhvcNAQELBQADggIBAIZpsU0v6Z9PIpNojuQhmaPORVMbc0RTAIFhzTHjCLqB +KCh6krm2qMhDnscTJk3C2OVVnJJdUNjCK9v+5qiXz1I6JMNlZFxHMaNlNRPDk7n3 ++VGXu6TwYofF1gbTl4MgqX67tiHCpQ2EAOHyJxCDut0DgdXdaMNmEMjRdrSzbyme +APnCKfWxkxlSaRosTKCL4BWaMS/TiJVZbuXEs1DIFAhKm4sTg7GkcrI7djNB3Nyq +pgdvHSQSn8h2vS/ZjvQs7rfSOBAkNlEv41xdgSGn2rtO/+YHqP65DSdsu3BaVXoT +6fEqSWnHX4dXTEN5bTpl6TBcQe7rd6VzEojov32u5cSoHw2OHG1QAk8mGEPej1WF +sQs3BWDJVTkSBKEqz3EWnzZRSb9wO55nnPt7eck5HHisd5FUmrh1CoFSl+NmYWvt +PjgelmFV4ZFUjO2MJB+ByRCac5krFk5yAD9UG/iNuovnFNa2RU9g7Jauwy8CTl2d +lklyALKrdVwPaFsdZcJfMw8eD/A7hvWwTruc9+olBdytoptLFwG+Qt81IR2tq670 +v64fG9PiO/yzcnMcmyiQiRM9HcEARwmWmjgb3bHPDcK0RPOWlc4yOo80nOAXx17O +rg3bhzjlP1v9mxnhMUF6cKojawHhRUzNlM47ni3niAIi9G7oyOzWPPO5std3eqx7 +-----END CERTIFICATE----- + +# Issuer: CN=Telekom Security TLS ECC Root 2020 O=Deutsche Telekom Security GmbH +# Subject: CN=Telekom Security TLS ECC Root 2020 O=Deutsche Telekom Security GmbH +# Label: "Telekom Security TLS ECC Root 2020" +# Serial: 72082518505882327255703894282316633856 +# MD5 Fingerprint: c1:ab:fe:6a:10:2c:03:8d:bc:1c:22:32:c0:85:a7:fd +# SHA1 Fingerprint: c0:f8:96:c5:a9:3b:01:06:21:07:da:18:42:48:bc:e9:9d:88:d5:ec +# SHA256 Fingerprint: 57:8a:f4:de:d0:85:3f:4e:59:98:db:4a:ea:f9:cb:ea:8d:94:5f:60:b6:20:a3:8d:1a:3c:13:b2:bc:7b:a8:e1 +-----BEGIN CERTIFICATE----- +MIICQjCCAcmgAwIBAgIQNjqWjMlcsljN0AFdxeVXADAKBggqhkjOPQQDAzBjMQsw +CQYDVQQGEwJERTEnMCUGA1UECgweRGV1dHNjaGUgVGVsZWtvbSBTZWN1cml0eSBH +bWJIMSswKQYDVQQDDCJUZWxla29tIFNlY3VyaXR5IFRMUyBFQ0MgUm9vdCAyMDIw +MB4XDTIwMDgyNTA3NDgyMFoXDTQ1MDgyNTIzNTk1OVowYzELMAkGA1UEBhMCREUx +JzAlBgNVBAoMHkRldXRzY2hlIFRlbGVrb20gU2VjdXJpdHkgR21iSDErMCkGA1UE +AwwiVGVsZWtvbSBTZWN1cml0eSBUTFMgRUNDIFJvb3QgMjAyMDB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABM6//leov9Wq9xCazbzREaK9Z0LMkOsVGJDZos0MKiXrPk/O +tdKPD/M12kOLAoC+b1EkHQ9rK8qfwm9QMuU3ILYg/4gND21Ju9sGpIeQkpT0CdDP +f8iAC8GXs7s1J8nCG6NCMEAwHQYDVR0OBBYEFONyzG6VmUex5rNhTNHLq+O6zd6f +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMAoGCCqGSM49BAMDA2cA +MGQCMHVSi7ekEE+uShCLsoRbQuHmKjYC2qBuGT8lv9pZMo7k+5Dck2TOrbRBR2Di +z6fLHgIwN0GMZt9Ba9aDAEH9L1r3ULRn0SyocddDypwnJJGDSA3PzfdUga/sf+Rn +27iQ7t0l +-----END CERTIFICATE----- + +# Issuer: CN=Telekom Security TLS RSA Root 2023 O=Deutsche Telekom Security GmbH +# Subject: CN=Telekom Security TLS RSA Root 2023 O=Deutsche Telekom Security GmbH +# Label: "Telekom Security TLS RSA Root 2023" +# Serial: 44676229530606711399881795178081572759 +# MD5 Fingerprint: bf:5b:eb:54:40:cd:48:71:c4:20:8d:7d:de:0a:42:f2 +# SHA1 Fingerprint: 54:d3:ac:b3:bd:57:56:f6:85:9d:ce:e5:c3:21:e2:d4:ad:83:d0:93 +# SHA256 Fingerprint: ef:c6:5c:ad:bb:59:ad:b6:ef:e8:4d:a2:23:11:b3:56:24:b7:1b:3b:1e:a0:da:8b:66:55:17:4e:c8:97:86:46 +-----BEGIN CERTIFICATE----- +MIIFszCCA5ugAwIBAgIQIZxULej27HF3+k7ow3BXlzANBgkqhkiG9w0BAQwFADBj +MQswCQYDVQQGEwJERTEnMCUGA1UECgweRGV1dHNjaGUgVGVsZWtvbSBTZWN1cml0 +eSBHbWJIMSswKQYDVQQDDCJUZWxla29tIFNlY3VyaXR5IFRMUyBSU0EgUm9vdCAy +MDIzMB4XDTIzMDMyODEyMTY0NVoXDTQ4MDMyNzIzNTk1OVowYzELMAkGA1UEBhMC +REUxJzAlBgNVBAoMHkRldXRzY2hlIFRlbGVrb20gU2VjdXJpdHkgR21iSDErMCkG +A1UEAwwiVGVsZWtvbSBTZWN1cml0eSBUTFMgUlNBIFJvb3QgMjAyMzCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAO01oYGA88tKaVvC+1GDrib94W7zgRJ9 +cUD/h3VCKSHtgVIs3xLBGYSJwb3FKNXVS2xE1kzbB5ZKVXrKNoIENqil/Cf2SfHV +cp6R+SPWcHu79ZvB7JPPGeplfohwoHP89v+1VmLhc2o0mD6CuKyVU/QBoCcHcqMA +U6DksquDOFczJZSfvkgdmOGjup5czQRxUX11eKvzWarE4GC+j4NSuHUaQTXtvPM6 +Y+mpFEXX5lLRbtLevOP1Czvm4MS9Q2QTps70mDdsipWol8hHD/BeEIvnHRz+sTug +BTNoBUGCwQMrAcjnj02r6LX2zWtEtefdi+zqJbQAIldNsLGyMcEWzv/9FIS3R/qy +8XDe24tsNlikfLMR0cN3f1+2JeANxdKz+bi4d9s3cXFH42AYTyS2dTd4uaNir73J +co4vzLuu2+QVUhkHM/tqty1LkCiCc/4YizWN26cEar7qwU02OxY2kTLvtkCJkUPg +8qKrBC7m8kwOFjQgrIfBLX7JZkcXFBGk8/ehJImr2BrIoVyxo/eMbcgByU/J7MT8 +rFEz0ciD0cmfHdRHNCk+y7AO+oMLKFjlKdw/fKifybYKu6boRhYPluV75Gp6SG12 +mAWl3G0eQh5C2hrgUve1g8Aae3g1LDj1H/1Joy7SWWO/gLCMk3PLNaaZlSJhZQNg ++y+TS/qanIA7AgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtqeX +gj10hZv3PJ+TmpV5dVKMbUcwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS2 +p5eCPXSFm/c8n5OalXl1UoxtRzANBgkqhkiG9w0BAQwFAAOCAgEAqMxhpr51nhVQ +pGv7qHBFfLp+sVr8WyP6Cnf4mHGCDG3gXkaqk/QeoMPhk9tLrbKmXauw1GLLXrtm +9S3ul0A8Yute1hTWjOKWi0FpkzXmuZlrYrShF2Y0pmtjxrlO8iLpWA1WQdH6DErw +M807u20hOq6OcrXDSvvpfeWxm4bu4uB9tPcy/SKE8YXJN3nptT+/XOR0so8RYgDd +GGah2XsjX/GO1WfoVNpbOms2b/mBsTNHM3dA+VKq3dSDz4V4mZqTuXNnQkYRIer+ +CqkbGmVps4+uFrb2S1ayLfmlyOw7YqPta9BO1UAJpB+Y1zqlklkg5LB9zVtzaL1t +xKITDmcZuI1CfmwMmm6gJC3VRRvcxAIU/oVbZZfKTpBQCHpCNfnqwmbU+AGuHrS+ +w6jv/naaoqYfRvaE7fzbzsQCzndILIyy7MMAo+wsVRjBfhnu4S/yrYObnqsZ38aK +L4x35bcF7DvB7L6Gs4a8wPfc5+pbrrLMtTWGS9DiP7bY+A4A7l3j941Y/8+LN+lj +X273CXE2whJdV/LItM3z7gLfEdxquVeEHVlNjM7IDiPCtyaaEBRx/pOyiriA8A4Q +ntOoUAw3gi/q4Iqd4Sw5/7W0cwDk90imc6y/st53BIe0o82bNSQ3+pCTE4FCxpgm +dTdmQRCsu/WU48IxK63nI1bMNSWSs1A= +-----END CERTIFICATE----- + +# Issuer: CN=FIRMAPROFESIONAL CA ROOT-A WEB O=Firmaprofesional SA +# Subject: CN=FIRMAPROFESIONAL CA ROOT-A WEB O=Firmaprofesional SA +# Label: "FIRMAPROFESIONAL CA ROOT-A WEB" +# Serial: 65916896770016886708751106294915943533 +# MD5 Fingerprint: 82:b2:ad:45:00:82:b0:66:63:f8:5f:c3:67:4e:ce:a3 +# SHA1 Fingerprint: a8:31:11:74:a6:14:15:0d:ca:77:dd:0e:e4:0c:5d:58:fc:a0:72:a5 +# SHA256 Fingerprint: be:f2:56:da:f2:6e:9c:69:bd:ec:16:02:35:97:98:f3:ca:f7:18:21:a0:3e:01:82:57:c5:3c:65:61:7f:3d:4a +-----BEGIN CERTIFICATE----- +MIICejCCAgCgAwIBAgIQMZch7a+JQn81QYehZ1ZMbTAKBggqhkjOPQQDAzBuMQsw +CQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTEYMBYGA1UE +YQwPVkFURVMtQTYyNjM0MDY4MScwJQYDVQQDDB5GSVJNQVBST0ZFU0lPTkFMIENB +IFJPT1QtQSBXRUIwHhcNMjIwNDA2MDkwMTM2WhcNNDcwMzMxMDkwMTM2WjBuMQsw +CQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTEYMBYGA1UE +YQwPVkFURVMtQTYyNjM0MDY4MScwJQYDVQQDDB5GSVJNQVBST0ZFU0lPTkFMIENB +IFJPT1QtQSBXRUIwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARHU+osEaR3xyrq89Zf +e9MEkVz6iMYiuYMQYneEMy3pA4jU4DP37XcsSmDq5G+tbbT4TIqk5B/K6k84Si6C +cyvHZpsKjECcfIr28jlgst7L7Ljkb+qbXbdTkBgyVcUgt5SjYzBhMA8GA1UdEwEB +/wQFMAMBAf8wHwYDVR0jBBgwFoAUk+FDY1w8ndYn81LsF7Kpryz3dvgwHQYDVR0O +BBYEFJPhQ2NcPJ3WJ/NS7Beyqa8s93b4MA4GA1UdDwEB/wQEAwIBBjAKBggqhkjO +PQQDAwNoADBlAjAdfKR7w4l1M+E7qUW/Runpod3JIha3RxEL2Jq68cgLcFBTApFw +hVmpHqTm6iMxoAACMQD94vizrxa5HnPEluPBMBnYfubDl94cT7iJLzPrSA8Z94dG +XSaQpYXFuXqUPoeovQA= +-----END CERTIFICATE----- diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/core.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/core.py new file mode 100644 index 00000000..70e0c3bd --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/core.py @@ -0,0 +1,114 @@ +""" +certifi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem or its contents. +""" +import sys +import atexit + +def exit_cacert_ctx() -> None: + _CACERT_CTX.__exit__(None, None, None) # type: ignore[union-attr] + + +if sys.version_info >= (3, 11): + + from importlib.resources import as_file, files + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = as_file(files("pip._vendor.certifi").joinpath("cacert.pem")) + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + atexit.register(exit_cacert_ctx) + + return _CACERT_PATH + + def contents() -> str: + return files("pip._vendor.certifi").joinpath("cacert.pem").read_text(encoding="ascii") + +elif sys.version_info >= (3, 7): + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where() -> str: + # This is slightly terrible, but we want to delay extracting the + # file in cases where we're inside of a zipimport situation until + # someone actually calls where(), but we don't want to re-extract + # the file on every call of where(), so we'll do it once then store + # it in a global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you + # to manage the cleanup of this file, so it doesn't actually + # return a path, it returns a context manager that will give + # you the path when you enter it and will do any cleanup when + # you leave it. In the common case of not needing a temporary + # file, it will just return the file system location and the + # __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_CTX = get_path("pip._vendor.certifi", "cacert.pem") + _CACERT_PATH = str(_CACERT_CTX.__enter__()) + atexit.register(exit_cacert_ctx) + + return _CACERT_PATH + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") + +else: + import os + import types + from typing import Union + + Package = Union[types.ModuleType, str] + Resource = Union[str, "os.PathLike"] + + # This fallback will work for Python versions prior to 3.7 that lack the + # importlib.resources module but relies on the existing `where` function + # so won't address issues with environments like PyOxidizer that don't set + # __file__ on modules. + def read_text( + package: Package, + resource: Resource, + encoding: str = 'utf-8', + errors: str = 'strict' + ) -> str: + with open(where(), encoding=encoding) as data: + return data.read() + + # If we don't have importlib.resources, then we will just do the old logic + # of assuming we're on the filesystem and munge the path directly. + def where() -> str: + f = os.path.dirname(__file__) + + return os.path.join(f, "cacert.pem") + + def contents() -> str: + return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py new file mode 100644 index 00000000..e999438f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import logging + +__version__ = '0.3.8' + + +class DistlibException(Exception): + pass + + +try: + from logging import NullHandler +except ImportError: # pragma: no cover + + class NullHandler(logging.Handler): + + def handle(self, record): + pass + + def emit(self, record): + pass + + def createLock(self): + self.lock = None + + +logger = logging.getLogger(__name__) +logger.addHandler(NullHandler()) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cfb39259548a69b0cf1f99f97f90a51b52b995e3 GIT binary patch literal 1318 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py new file mode 100644 index 00000000..e93dc27a --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py @@ -0,0 +1,1138 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import absolute_import + +import os +import re +import shutil +import sys + +try: + import ssl +except ImportError: # pragma: no cover + ssl = None + +if sys.version_info[0] < 3: # pragma: no cover + from StringIO import StringIO + string_types = basestring, + text_type = unicode + from types import FileType as file_type + import __builtin__ as builtins + import ConfigParser as configparser + from urlparse import urlparse, urlunparse, urljoin, urlsplit, urlunsplit + from urllib import (urlretrieve, quote as _quote, unquote, url2pathname, + pathname2url, ContentTooShortError, splittype) + + def quote(s): + if isinstance(s, unicode): + s = s.encode('utf-8') + return _quote(s) + + import urllib2 + from urllib2 import (Request, urlopen, URLError, HTTPError, + HTTPBasicAuthHandler, HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib2 import HTTPSHandler + import httplib + import xmlrpclib + import Queue as queue + from HTMLParser import HTMLParser + import htmlentitydefs + raw_input = raw_input + from itertools import ifilter as filter + from itertools import ifilterfalse as filterfalse + + # Leaving this around for now, in case it needs resurrecting in some way + # _userprog = None + # def splituser(host): + # """splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'.""" + # global _userprog + # if _userprog is None: + # import re + # _userprog = re.compile('^(.*)@(.*)$') + + # match = _userprog.match(host) + # if match: return match.group(1, 2) + # return None, host + +else: # pragma: no cover + from io import StringIO + string_types = str, + text_type = str + from io import TextIOWrapper as file_type + import builtins + import configparser + from urllib.parse import (urlparse, urlunparse, urljoin, quote, unquote, + urlsplit, urlunsplit, splittype) + from urllib.request import (urlopen, urlretrieve, Request, url2pathname, + pathname2url, HTTPBasicAuthHandler, + HTTPPasswordMgr, HTTPHandler, + HTTPRedirectHandler, build_opener) + if ssl: + from urllib.request import HTTPSHandler + from urllib.error import HTTPError, URLError, ContentTooShortError + import http.client as httplib + import urllib.request as urllib2 + import xmlrpc.client as xmlrpclib + import queue + from html.parser import HTMLParser + import html.entities as htmlentitydefs + raw_input = input + from itertools import filterfalse + filter = filter + +try: + from ssl import match_hostname, CertificateError +except ImportError: # pragma: no cover + + class CertificateError(ValueError): + pass + + def _dnsname_match(dn, hostname, max_wildcards=1): + """Matching according to RFC 6125, section 6.4.3 + + http://tools.ietf.org/html/rfc6125#section-6.4.3 + """ + pats = [] + if not dn: + return False + + parts = dn.split('.') + leftmost, remainder = parts[0], parts[1:] + + wildcards = leftmost.count('*') + if wildcards > max_wildcards: + # Issue #17980: avoid denials of service by refusing more + # than one wildcard per fragment. A survey of established + # policy among SSL implementations showed it to be a + # reasonable choice. + raise CertificateError( + "too many wildcards in certificate DNS name: " + repr(dn)) + + # speed up common case w/o wildcards + if not wildcards: + return dn.lower() == hostname.lower() + + # RFC 6125, section 6.4.3, subitem 1. + # The client SHOULD NOT attempt to match a presented identifier in which + # the wildcard character comprises a label other than the left-most label. + if leftmost == '*': + # When '*' is a fragment by itself, it matches a non-empty dotless + # fragment. + pats.append('[^.]+') + elif leftmost.startswith('xn--') or hostname.startswith('xn--'): + # RFC 6125, section 6.4.3, subitem 3. + # The client SHOULD NOT attempt to match a presented identifier + # where the wildcard character is embedded within an A-label or + # U-label of an internationalized domain name. + pats.append(re.escape(leftmost)) + else: + # Otherwise, '*' matches any dotless string, e.g. www* + pats.append(re.escape(leftmost).replace(r'\*', '[^.]*')) + + # add the remaining fragments, ignore any wildcards + for frag in remainder: + pats.append(re.escape(frag)) + + pat = re.compile(r'\A' + r'\.'.join(pats) + r'\Z', re.IGNORECASE) + return pat.match(hostname) + + def match_hostname(cert, hostname): + """Verify that *cert* (in decoded format as returned by + SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125 + rules are followed, but IP addresses are not accepted for *hostname*. + + CertificateError is raised on failure. On success, the function + returns nothing. + """ + if not cert: + raise ValueError("empty or no certificate, match_hostname needs a " + "SSL socket or SSL context with either " + "CERT_OPTIONAL or CERT_REQUIRED") + dnsnames = [] + san = cert.get('subjectAltName', ()) + for key, value in san: + if key == 'DNS': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if not dnsnames: + # The subject is only checked when there is no dNSName entry + # in subjectAltName + for sub in cert.get('subject', ()): + for key, value in sub: + # XXX according to RFC 2818, the most specific Common Name + # must be used. + if key == 'commonName': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if len(dnsnames) > 1: + raise CertificateError("hostname %r " + "doesn't match either of %s" % + (hostname, ', '.join(map(repr, dnsnames)))) + elif len(dnsnames) == 1: + raise CertificateError("hostname %r " + "doesn't match %r" % + (hostname, dnsnames[0])) + else: + raise CertificateError("no appropriate commonName or " + "subjectAltName fields were found") + + +try: + from types import SimpleNamespace as Container +except ImportError: # pragma: no cover + + class Container(object): + """ + A generic container for when multiple values need to be returned + """ + + def __init__(self, **kwargs): + self.__dict__.update(kwargs) + + +try: + from shutil import which +except ImportError: # pragma: no cover + # Implementation from Python 3.3 + def which(cmd, mode=os.F_OK | os.X_OK, path=None): + """Given a command, mode, and a PATH string, return the path which + conforms to the given mode on the PATH, or None if there is no such + file. + + `mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result + of os.environ.get("PATH"), or can be overridden with a custom search + path. + + """ + + # Check that a given file can be accessed with the correct mode. + # Additionally check that `file` is not a directory, as on Windows + # directories pass the os.access check. + def _access_check(fn, mode): + return (os.path.exists(fn) and os.access(fn, mode) + and not os.path.isdir(fn)) + + # If we're given a path with a directory part, look it up directly rather + # than referring to PATH directories. This includes checking relative to the + # current directory, e.g. ./script + if os.path.dirname(cmd): + if _access_check(cmd, mode): + return cmd + return None + + if path is None: + path = os.environ.get("PATH", os.defpath) + if not path: + return None + path = path.split(os.pathsep) + + if sys.platform == "win32": + # The current directory takes precedence on Windows. + if os.curdir not in path: + path.insert(0, os.curdir) + + # PATHEXT is necessary to check on Windows. + pathext = os.environ.get("PATHEXT", "").split(os.pathsep) + # See if the given file matches any of the expected path extensions. + # This will allow us to short circuit when given "python.exe". + # If it does match, only test that one, otherwise we have to try + # others. + if any(cmd.lower().endswith(ext.lower()) for ext in pathext): + files = [cmd] + else: + files = [cmd + ext for ext in pathext] + else: + # On other platforms you don't have things like PATHEXT to tell you + # what file suffixes are executable, so just pass on cmd as-is. + files = [cmd] + + seen = set() + for dir in path: + normdir = os.path.normcase(dir) + if normdir not in seen: + seen.add(normdir) + for thefile in files: + name = os.path.join(dir, thefile) + if _access_check(name, mode): + return name + return None + + +# ZipFile is a context manager in 2.7, but not in 2.6 + +from zipfile import ZipFile as BaseZipFile + +if hasattr(BaseZipFile, '__enter__'): # pragma: no cover + ZipFile = BaseZipFile +else: # pragma: no cover + from zipfile import ZipExtFile as BaseZipExtFile + + class ZipExtFile(BaseZipExtFile): + + def __init__(self, base): + self.__dict__.update(base.__dict__) + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + class ZipFile(BaseZipFile): + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.close() + # return None, so if an exception occurred, it will propagate + + def open(self, *args, **kwargs): + base = BaseZipFile.open(self, *args, **kwargs) + return ZipExtFile(base) + + +try: + from platform import python_implementation +except ImportError: # pragma: no cover + + def python_implementation(): + """Return a string identifying the Python implementation.""" + if 'PyPy' in sys.version: + return 'PyPy' + if os.name == 'java': + return 'Jython' + if sys.version.startswith('IronPython'): + return 'IronPython' + return 'CPython' + + +import sysconfig + +try: + callable = callable +except NameError: # pragma: no cover + from collections.abc import Callable + + def callable(obj): + return isinstance(obj, Callable) + + +try: + fsencode = os.fsencode + fsdecode = os.fsdecode +except AttributeError: # pragma: no cover + # Issue #99: on some systems (e.g. containerised), + # sys.getfilesystemencoding() returns None, and we need a real value, + # so fall back to utf-8. From the CPython 2.7 docs relating to Unix and + # sys.getfilesystemencoding(): the return value is "the user’s preference + # according to the result of nl_langinfo(CODESET), or None if the + # nl_langinfo(CODESET) failed." + _fsencoding = sys.getfilesystemencoding() or 'utf-8' + if _fsencoding == 'mbcs': + _fserrors = 'strict' + else: + _fserrors = 'surrogateescape' + + def fsencode(filename): + if isinstance(filename, bytes): + return filename + elif isinstance(filename, text_type): + return filename.encode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + def fsdecode(filename): + if isinstance(filename, text_type): + return filename + elif isinstance(filename, bytes): + return filename.decode(_fsencoding, _fserrors) + else: + raise TypeError("expect bytes or str, not %s" % + type(filename).__name__) + + +try: + from tokenize import detect_encoding +except ImportError: # pragma: no cover + from codecs import BOM_UTF8, lookup + + cookie_re = re.compile(r"coding[:=]\s*([-\w.]+)") + + def _get_normal_name(orig_enc): + """Imitates get_normal_name in tokenizer.c.""" + # Only care about the first 12 characters. + enc = orig_enc[:12].lower().replace("_", "-") + if enc == "utf-8" or enc.startswith("utf-8-"): + return "utf-8" + if enc in ("latin-1", "iso-8859-1", "iso-latin-1") or \ + enc.startswith(("latin-1-", "iso-8859-1-", "iso-latin-1-")): + return "iso-8859-1" + return orig_enc + + def detect_encoding(readline): + """ + The detect_encoding() function is used to detect the encoding that should + be used to decode a Python source file. It requires one argument, readline, + in the same way as the tokenize() generator. + + It will call readline a maximum of twice, and return the encoding used + (as a string) and a list of any lines (left as bytes) it has read in. + + It detects the encoding from the presence of a utf-8 bom or an encoding + cookie as specified in pep-0263. If both a bom and a cookie are present, + but disagree, a SyntaxError will be raised. If the encoding cookie is an + invalid charset, raise a SyntaxError. Note that if a utf-8 bom is found, + 'utf-8-sig' is returned. + + If no encoding is specified, then the default of 'utf-8' will be returned. + """ + try: + filename = readline.__self__.name + except AttributeError: + filename = None + bom_found = False + encoding = None + default = 'utf-8' + + def read_or_stop(): + try: + return readline() + except StopIteration: + return b'' + + def find_cookie(line): + try: + # Decode as UTF-8. Either the line is an encoding declaration, + # in which case it should be pure ASCII, or it must be UTF-8 + # per default encoding. + line_string = line.decode('utf-8') + except UnicodeDecodeError: + msg = "invalid or missing encoding declaration" + if filename is not None: + msg = '{} for {!r}'.format(msg, filename) + raise SyntaxError(msg) + + matches = cookie_re.findall(line_string) + if not matches: + return None + encoding = _get_normal_name(matches[0]) + try: + codec = lookup(encoding) + except LookupError: + # This behaviour mimics the Python interpreter + if filename is None: + msg = "unknown encoding: " + encoding + else: + msg = "unknown encoding for {!r}: {}".format( + filename, encoding) + raise SyntaxError(msg) + + if bom_found: + if codec.name != 'utf-8': + # This behaviour mimics the Python interpreter + if filename is None: + msg = 'encoding problem: utf-8' + else: + msg = 'encoding problem for {!r}: utf-8'.format( + filename) + raise SyntaxError(msg) + encoding += '-sig' + return encoding + + first = read_or_stop() + if first.startswith(BOM_UTF8): + bom_found = True + first = first[3:] + default = 'utf-8-sig' + if not first: + return default, [] + + encoding = find_cookie(first) + if encoding: + return encoding, [first] + + second = read_or_stop() + if not second: + return default, [first] + + encoding = find_cookie(second) + if encoding: + return encoding, [first, second] + + return default, [first, second] + + +# For converting & <-> & etc. +try: + from html import escape +except ImportError: + from cgi import escape +if sys.version_info[:2] < (3, 4): + unescape = HTMLParser().unescape +else: + from html import unescape + +try: + from collections import ChainMap +except ImportError: # pragma: no cover + from collections import MutableMapping + + try: + from reprlib import recursive_repr as _recursive_repr + except ImportError: + + def _recursive_repr(fillvalue='...'): + ''' + Decorator to make a repr function return fillvalue for a recursive + call + ''' + + def decorating_function(user_function): + repr_running = set() + + def wrapper(self): + key = id(self), get_ident() + if key in repr_running: + return fillvalue + repr_running.add(key) + try: + result = user_function(self) + finally: + repr_running.discard(key) + return result + + # Can't use functools.wraps() here because of bootstrap issues + wrapper.__module__ = getattr(user_function, '__module__') + wrapper.__doc__ = getattr(user_function, '__doc__') + wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__annotations__ = getattr(user_function, + '__annotations__', {}) + return wrapper + + return decorating_function + + class ChainMap(MutableMapping): + ''' + A ChainMap groups multiple dicts (or other mappings) together + to create a single, updateable view. + + The underlying mappings are stored in a list. That list is public and can + accessed or updated using the *maps* attribute. There is no other state. + + Lookups search the underlying mappings successively until a key is found. + In contrast, writes, updates, and deletions only operate on the first + mapping. + ''' + + def __init__(self, *maps): + '''Initialize a ChainMap by setting *maps* to the given mappings. + If no mappings are provided, a single empty dictionary is used. + + ''' + self.maps = list(maps) or [{}] # always at least one map + + def __missing__(self, key): + raise KeyError(key) + + def __getitem__(self, key): + for mapping in self.maps: + try: + return mapping[ + key] # can't use 'key in mapping' with defaultdict + except KeyError: + pass + return self.__missing__( + key) # support subclasses that define __missing__ + + def get(self, key, default=None): + return self[key] if key in self else default + + def __len__(self): + return len(set().union( + *self.maps)) # reuses stored hash values if possible + + def __iter__(self): + return iter(set().union(*self.maps)) + + def __contains__(self, key): + return any(key in m for m in self.maps) + + def __bool__(self): + return any(self.maps) + + @_recursive_repr() + def __repr__(self): + return '{0.__class__.__name__}({1})'.format( + self, ', '.join(map(repr, self.maps))) + + @classmethod + def fromkeys(cls, iterable, *args): + 'Create a ChainMap with a single dict created from the iterable.' + return cls(dict.fromkeys(iterable, *args)) + + def copy(self): + 'New ChainMap or subclass with a new copy of maps[0] and refs to maps[1:]' + return self.__class__(self.maps[0].copy(), *self.maps[1:]) + + __copy__ = copy + + def new_child(self): # like Django's Context.push() + 'New ChainMap with a new dict followed by all previous maps.' + return self.__class__({}, *self.maps) + + @property + def parents(self): # like Django's Context.pop() + 'New ChainMap from maps[1:].' + return self.__class__(*self.maps[1:]) + + def __setitem__(self, key, value): + self.maps[0][key] = value + + def __delitem__(self, key): + try: + del self.maps[0][key] + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def popitem(self): + 'Remove and return an item pair from maps[0]. Raise KeyError is maps[0] is empty.' + try: + return self.maps[0].popitem() + except KeyError: + raise KeyError('No keys found in the first mapping.') + + def pop(self, key, *args): + 'Remove *key* from maps[0] and return its value. Raise KeyError if *key* not in maps[0].' + try: + return self.maps[0].pop(key, *args) + except KeyError: + raise KeyError( + 'Key not found in the first mapping: {!r}'.format(key)) + + def clear(self): + 'Clear maps[0], leaving maps[1:] intact.' + self.maps[0].clear() + + +try: + from importlib.util import cache_from_source # Python >= 3.4 +except ImportError: # pragma: no cover + + def cache_from_source(path, debug_override=None): + assert path.endswith('.py') + if debug_override is None: + debug_override = __debug__ + if debug_override: + suffix = 'c' + else: + suffix = 'o' + return path + suffix + + +try: + from collections import OrderedDict +except ImportError: # pragma: no cover + # {{{ http://code.activestate.com/recipes/576693/ (r9) + # Backport of OrderedDict() class that runs on Python 2.4, 2.5, 2.6, 2.7 and pypy. + # Passes Python2.7's test suite and incorporates all the latest updates. + try: + from thread import get_ident as _get_ident + except ImportError: + from dummy_thread import get_ident as _get_ident + + try: + from _abcoll import KeysView, ValuesView, ItemsView + except ImportError: + pass + + class OrderedDict(dict): + 'Dictionary that remembers insertion order' + + # An inherited dict maps keys to values. + # The inherited dict provides __getitem__, __len__, __contains__, and get. + # The remaining methods are order-aware. + # Big-O running times for all methods are the same as for regular dictionaries. + + # The internal self.__map dictionary maps keys to links in a doubly linked list. + # The circular doubly linked list starts and ends with a sentinel element. + # The sentinel element never gets deleted (this simplifies the algorithm). + # Each link is stored as a list of length three: [PREV, NEXT, KEY]. + + def __init__(self, *args, **kwds): + '''Initialize an ordered dictionary. Signature is the same as for + regular dictionaries, but keyword arguments are not recommended + because their insertion order is arbitrary. + + ''' + if len(args) > 1: + raise TypeError('expected at most 1 arguments, got %d' % + len(args)) + try: + self.__root + except AttributeError: + self.__root = root = [] # sentinel node + root[:] = [root, root, None] + self.__map = {} + self.__update(*args, **kwds) + + def __setitem__(self, key, value, dict_setitem=dict.__setitem__): + 'od.__setitem__(i, y) <==> od[i]=y' + # Setting a new item creates a new link which goes at the end of the linked + # list, and the inherited dictionary is updated with the new key/value pair. + if key not in self: + root = self.__root + last = root[0] + last[1] = root[0] = self.__map[key] = [last, root, key] + dict_setitem(self, key, value) + + def __delitem__(self, key, dict_delitem=dict.__delitem__): + 'od.__delitem__(y) <==> del od[y]' + # Deleting an existing item uses self.__map to find the link which is + # then removed by updating the links in the predecessor and successor nodes. + dict_delitem(self, key) + link_prev, link_next, key = self.__map.pop(key) + link_prev[1] = link_next + link_next[0] = link_prev + + def __iter__(self): + 'od.__iter__() <==> iter(od)' + root = self.__root + curr = root[1] + while curr is not root: + yield curr[2] + curr = curr[1] + + def __reversed__(self): + 'od.__reversed__() <==> reversed(od)' + root = self.__root + curr = root[0] + while curr is not root: + yield curr[2] + curr = curr[0] + + def clear(self): + 'od.clear() -> None. Remove all items from od.' + try: + for node in self.__map.itervalues(): + del node[:] + root = self.__root + root[:] = [root, root, None] + self.__map.clear() + except AttributeError: + pass + dict.clear(self) + + def popitem(self, last=True): + '''od.popitem() -> (k, v), return and remove a (key, value) pair. + Pairs are returned in LIFO order if last is true or FIFO order if false. + + ''' + if not self: + raise KeyError('dictionary is empty') + root = self.__root + if last: + link = root[0] + link_prev = link[0] + link_prev[1] = root + root[0] = link_prev + else: + link = root[1] + link_next = link[1] + root[1] = link_next + link_next[0] = root + key = link[2] + del self.__map[key] + value = dict.pop(self, key) + return key, value + + # -- the following methods do not depend on the internal structure -- + + def keys(self): + 'od.keys() -> list of keys in od' + return list(self) + + def values(self): + 'od.values() -> list of values in od' + return [self[key] for key in self] + + def items(self): + 'od.items() -> list of (key, value) pairs in od' + return [(key, self[key]) for key in self] + + def iterkeys(self): + 'od.iterkeys() -> an iterator over the keys in od' + return iter(self) + + def itervalues(self): + 'od.itervalues -> an iterator over the values in od' + for k in self: + yield self[k] + + def iteritems(self): + 'od.iteritems -> an iterator over the (key, value) items in od' + for k in self: + yield (k, self[k]) + + def update(*args, **kwds): + '''od.update(E, **F) -> None. Update od from dict/iterable E and F. + + If E is a dict instance, does: for k in E: od[k] = E[k] + If E has a .keys() method, does: for k in E.keys(): od[k] = E[k] + Or if E is an iterable of items, does: for k, v in E: od[k] = v + In either case, this is followed by: for k, v in F.items(): od[k] = v + + ''' + if len(args) > 2: + raise TypeError('update() takes at most 2 positional ' + 'arguments (%d given)' % (len(args), )) + elif not args: + raise TypeError('update() takes at least 1 argument (0 given)') + self = args[0] + # Make progressively weaker assumptions about "other" + other = () + if len(args) == 2: + other = args[1] + if isinstance(other, dict): + for key in other: + self[key] = other[key] + elif hasattr(other, 'keys'): + for key in other.keys(): + self[key] = other[key] + else: + for key, value in other: + self[key] = value + for key, value in kwds.items(): + self[key] = value + + __update = update # let subclasses override update without breaking __init__ + + __marker = object() + + def pop(self, key, default=__marker): + '''od.pop(k[,d]) -> v, remove specified key and return the corresponding value. + If key is not found, d is returned if given, otherwise KeyError is raised. + + ''' + if key in self: + result = self[key] + del self[key] + return result + if default is self.__marker: + raise KeyError(key) + return default + + def setdefault(self, key, default=None): + 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od' + if key in self: + return self[key] + self[key] = default + return default + + def __repr__(self, _repr_running=None): + 'od.__repr__() <==> repr(od)' + if not _repr_running: + _repr_running = {} + call_key = id(self), _get_ident() + if call_key in _repr_running: + return '...' + _repr_running[call_key] = 1 + try: + if not self: + return '%s()' % (self.__class__.__name__, ) + return '%s(%r)' % (self.__class__.__name__, self.items()) + finally: + del _repr_running[call_key] + + def __reduce__(self): + 'Return state information for pickling' + items = [[k, self[k]] for k in self] + inst_dict = vars(self).copy() + for k in vars(OrderedDict()): + inst_dict.pop(k, None) + if inst_dict: + return (self.__class__, (items, ), inst_dict) + return self.__class__, (items, ) + + def copy(self): + 'od.copy() -> a shallow copy of od' + return self.__class__(self) + + @classmethod + def fromkeys(cls, iterable, value=None): + '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S + and values equal to v (which defaults to None). + + ''' + d = cls() + for key in iterable: + d[key] = value + return d + + def __eq__(self, other): + '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive + while comparison to a regular mapping is order-insensitive. + + ''' + if isinstance(other, OrderedDict): + return len(self) == len( + other) and self.items() == other.items() + return dict.__eq__(self, other) + + def __ne__(self, other): + return not self == other + + # -- the following methods are only used in Python 2.7 -- + + def viewkeys(self): + "od.viewkeys() -> a set-like object providing a view on od's keys" + return KeysView(self) + + def viewvalues(self): + "od.viewvalues() -> an object providing a view on od's values" + return ValuesView(self) + + def viewitems(self): + "od.viewitems() -> a set-like object providing a view on od's items" + return ItemsView(self) + + +try: + from logging.config import BaseConfigurator, valid_ident +except ImportError: # pragma: no cover + IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) + + def valid_ident(s): + m = IDENTIFIER.match(s) + if not m: + raise ValueError('Not a valid Python identifier: %r' % s) + return True + + # The ConvertingXXX classes are wrappers around standard Python containers, + # and they serve to convert any suitable values in the container. The + # conversion converts base dicts, lists and tuples to their wrapped + # equivalents, whereas strings which match a conversion format are converted + # appropriately. + # + # Each wrapper should have a configurator attribute holding the actual + # configurator to use for conversion. + + class ConvertingDict(dict): + """A converting dictionary wrapper.""" + + def __getitem__(self, key): + value = dict.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def get(self, key, default=None): + value = dict.get(self, key, default) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, key, default=None): + value = dict.pop(self, key, default) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class ConvertingList(list): + """A converting list wrapper.""" + + def __getitem__(self, key): + value = list.__getitem__(self, key) + result = self.configurator.convert(value) + # If the converted value is different, save for next time + if value is not result: + self[key] = result + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + def pop(self, idx=-1): + value = list.pop(self, idx) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + return result + + class ConvertingTuple(tuple): + """A converting tuple wrapper.""" + + def __getitem__(self, key): + value = tuple.__getitem__(self, key) + result = self.configurator.convert(value) + if value is not result: + if type(result) in (ConvertingDict, ConvertingList, + ConvertingTuple): + result.parent = self + result.key = key + return result + + class BaseConfigurator(object): + """ + The configurator base class which defines some useful defaults. + """ + + CONVERT_PATTERN = re.compile(r'^(?P[a-z]+)://(?P.*)$') + + WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') + DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') + INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') + DIGIT_PATTERN = re.compile(r'^\d+$') + + value_converters = { + 'ext': 'ext_convert', + 'cfg': 'cfg_convert', + } + + # We might want to use a different one, e.g. importlib + importer = staticmethod(__import__) + + def __init__(self, config): + self.config = ConvertingDict(config) + self.config.configurator = self + + def resolve(self, s): + """ + Resolve strings to objects using standard import and attribute + syntax. + """ + name = s.split('.') + used = name.pop(0) + try: + found = self.importer(used) + for frag in name: + used += '.' + frag + try: + found = getattr(found, frag) + except AttributeError: + self.importer(used) + found = getattr(found, frag) + return found + except ImportError: + e, tb = sys.exc_info()[1:] + v = ValueError('Cannot resolve %r: %s' % (s, e)) + v.__cause__, v.__traceback__ = e, tb + raise v + + def ext_convert(self, value): + """Default converter for the ext:// protocol.""" + return self.resolve(value) + + def cfg_convert(self, value): + """Default converter for the cfg:// protocol.""" + rest = value + m = self.WORD_PATTERN.match(rest) + if m is None: + raise ValueError("Unable to convert %r" % value) + else: + rest = rest[m.end():] + d = self.config[m.groups()[0]] + while rest: + m = self.DOT_PATTERN.match(rest) + if m: + d = d[m.groups()[0]] + else: + m = self.INDEX_PATTERN.match(rest) + if m: + idx = m.groups()[0] + if not self.DIGIT_PATTERN.match(idx): + d = d[idx] + else: + try: + n = int( + idx + ) # try as number first (most likely) + d = d[n] + except TypeError: + d = d[idx] + if m: + rest = rest[m.end():] + else: + raise ValueError('Unable to convert ' + '%r at %r' % (value, rest)) + # rest should be empty + return d + + def convert(self, value): + """ + Convert values to an appropriate type. dicts, lists and tuples are + replaced by their converting alternatives. Strings are checked to + see if they have a conversion format and are converted if they do. + """ + if not isinstance(value, ConvertingDict) and isinstance( + value, dict): + value = ConvertingDict(value) + value.configurator = self + elif not isinstance(value, ConvertingList) and isinstance( + value, list): + value = ConvertingList(value) + value.configurator = self + elif not isinstance(value, ConvertingTuple) and isinstance(value, tuple): + value = ConvertingTuple(value) + value.configurator = self + elif isinstance(value, string_types): + m = self.CONVERT_PATTERN.match(value) + if m: + d = m.groupdict() + prefix = d['prefix'] + converter = self.value_converters.get(prefix, None) + if converter: + suffix = d['suffix'] + converter = getattr(self, converter) + value = converter(suffix) + return value + + def configure_custom(self, config): + """Configure an object with a user-supplied factory.""" + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) + result = c(**kwargs) + if props: + for name, value in props.items(): + setattr(result, name, value) + return result + + def as_tuple(self, value): + """Utility function which converts lists to tuples.""" + if isinstance(value, list): + value = tuple(value) + return value diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/database.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/database.py new file mode 100644 index 00000000..eb3765f1 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/database.py @@ -0,0 +1,1359 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""PEP 376 implementation.""" + +from __future__ import unicode_literals + +import base64 +import codecs +import contextlib +import hashlib +import logging +import os +import posixpath +import sys +import zipimport + +from . import DistlibException, resources +from .compat import StringIO +from .version import get_scheme, UnsupportedVersionError +from .metadata import (Metadata, METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME) +from .util import (parse_requirement, cached_property, parse_name_and_version, + read_exports, write_exports, CSVReader, CSVWriter) + +__all__ = [ + 'Distribution', 'BaseInstalledDistribution', 'InstalledDistribution', + 'EggInfoDistribution', 'DistributionPath' +] + +logger = logging.getLogger(__name__) + +EXPORTS_FILENAME = 'pydist-exports.json' +COMMANDS_FILENAME = 'pydist-commands.json' + +DIST_FILES = ('INSTALLER', METADATA_FILENAME, 'RECORD', 'REQUESTED', + 'RESOURCES', EXPORTS_FILENAME, 'SHARED') + +DISTINFO_EXT = '.dist-info' + + +class _Cache(object): + """ + A simple cache mapping names and .dist-info paths to distributions + """ + + def __init__(self): + """ + Initialise an instance. There is normally one for each DistributionPath. + """ + self.name = {} + self.path = {} + self.generated = False + + def clear(self): + """ + Clear the cache, setting it to its initial state. + """ + self.name.clear() + self.path.clear() + self.generated = False + + def add(self, dist): + """ + Add a distribution to the cache. + :param dist: The distribution to add. + """ + if dist.path not in self.path: + self.path[dist.path] = dist + self.name.setdefault(dist.key, []).append(dist) + + +class DistributionPath(object): + """ + Represents a set of distributions installed on a path (typically sys.path). + """ + + def __init__(self, path=None, include_egg=False): + """ + Create an instance from a path, optionally including legacy (distutils/ + setuptools/distribute) distributions. + :param path: The path to use, as a list of directories. If not specified, + sys.path is used. + :param include_egg: If True, this instance will look for and return legacy + distributions as well as those based on PEP 376. + """ + if path is None: + path = sys.path + self.path = path + self._include_dist = True + self._include_egg = include_egg + + self._cache = _Cache() + self._cache_egg = _Cache() + self._cache_enabled = True + self._scheme = get_scheme('default') + + def _get_cache_enabled(self): + return self._cache_enabled + + def _set_cache_enabled(self, value): + self._cache_enabled = value + + cache_enabled = property(_get_cache_enabled, _set_cache_enabled) + + def clear_cache(self): + """ + Clears the internal cache. + """ + self._cache.clear() + self._cache_egg.clear() + + def _yield_distributions(self): + """ + Yield .dist-info and/or .egg(-info) distributions. + """ + # We need to check if we've seen some resources already, because on + # some Linux systems (e.g. some Debian/Ubuntu variants) there are + # symlinks which alias other files in the environment. + seen = set() + for path in self.path: + finder = resources.finder_for_path(path) + if finder is None: + continue + r = finder.find('') + if not r or not r.is_container: + continue + rset = sorted(r.resources) + for entry in rset: + r = finder.find(entry) + if not r or r.path in seen: + continue + try: + if self._include_dist and entry.endswith(DISTINFO_EXT): + possible_filenames = [ + METADATA_FILENAME, WHEEL_METADATA_FILENAME, + LEGACY_METADATA_FILENAME + ] + for metadata_filename in possible_filenames: + metadata_path = posixpath.join( + entry, metadata_filename) + pydist = finder.find(metadata_path) + if pydist: + break + else: + continue + + with contextlib.closing(pydist.as_stream()) as stream: + metadata = Metadata(fileobj=stream, + scheme='legacy') + logger.debug('Found %s', r.path) + seen.add(r.path) + yield new_dist_class(r.path, + metadata=metadata, + env=self) + elif self._include_egg and entry.endswith( + ('.egg-info', '.egg')): + logger.debug('Found %s', r.path) + seen.add(r.path) + yield old_dist_class(r.path, self) + except Exception as e: + msg = 'Unable to read distribution at %s, perhaps due to bad metadata: %s' + logger.warning(msg, r.path, e) + import warnings + warnings.warn(msg % (r.path, e), stacklevel=2) + + def _generate_cache(self): + """ + Scan the path for distributions and populate the cache with + those that are found. + """ + gen_dist = not self._cache.generated + gen_egg = self._include_egg and not self._cache_egg.generated + if gen_dist or gen_egg: + for dist in self._yield_distributions(): + if isinstance(dist, InstalledDistribution): + self._cache.add(dist) + else: + self._cache_egg.add(dist) + + if gen_dist: + self._cache.generated = True + if gen_egg: + self._cache_egg.generated = True + + @classmethod + def distinfo_dirname(cls, name, version): + """ + The *name* and *version* parameters are converted into their + filename-escaped form, i.e. any ``'-'`` characters are replaced + with ``'_'`` other than the one in ``'dist-info'`` and the one + separating the name from the version number. + + :parameter name: is converted to a standard distribution name by replacing + any runs of non- alphanumeric characters with a single + ``'-'``. + :type name: string + :parameter version: is converted to a standard version string. Spaces + become dots, and all other non-alphanumeric characters + (except dots) become dashes, with runs of multiple + dashes condensed to a single dash. + :type version: string + :returns: directory name + :rtype: string""" + name = name.replace('-', '_') + return '-'.join([name, version]) + DISTINFO_EXT + + def get_distributions(self): + """ + Provides an iterator that looks for distributions and returns + :class:`InstalledDistribution` or + :class:`EggInfoDistribution` instances for each one of them. + + :rtype: iterator of :class:`InstalledDistribution` and + :class:`EggInfoDistribution` instances + """ + if not self._cache_enabled: + for dist in self._yield_distributions(): + yield dist + else: + self._generate_cache() + + for dist in self._cache.path.values(): + yield dist + + if self._include_egg: + for dist in self._cache_egg.path.values(): + yield dist + + def get_distribution(self, name): + """ + Looks for a named distribution on the path. + + This function only returns the first result found, as no more than one + value is expected. If nothing is found, ``None`` is returned. + + :rtype: :class:`InstalledDistribution`, :class:`EggInfoDistribution` + or ``None`` + """ + result = None + name = name.lower() + if not self._cache_enabled: + for dist in self._yield_distributions(): + if dist.key == name: + result = dist + break + else: + self._generate_cache() + + if name in self._cache.name: + result = self._cache.name[name][0] + elif self._include_egg and name in self._cache_egg.name: + result = self._cache_egg.name[name][0] + return result + + def provides_distribution(self, name, version=None): + """ + Iterates over all distributions to find which distributions provide *name*. + If a *version* is provided, it will be used to filter the results. + + This function only returns the first result found, since no more than + one values are expected. If the directory is not found, returns ``None``. + + :parameter version: a version specifier that indicates the version + required, conforming to the format in ``PEP-345`` + + :type name: string + :type version: string + """ + matcher = None + if version is not None: + try: + matcher = self._scheme.matcher('%s (%s)' % (name, version)) + except ValueError: + raise DistlibException('invalid name or version: %r, %r' % + (name, version)) + + for dist in self.get_distributions(): + # We hit a problem on Travis where enum34 was installed and doesn't + # have a provides attribute ... + if not hasattr(dist, 'provides'): + logger.debug('No "provides": %s', dist) + else: + provided = dist.provides + + for p in provided: + p_name, p_ver = parse_name_and_version(p) + if matcher is None: + if p_name == name: + yield dist + break + else: + if p_name == name and matcher.match(p_ver): + yield dist + break + + def get_file_path(self, name, relative_path): + """ + Return the path to a resource file. + """ + dist = self.get_distribution(name) + if dist is None: + raise LookupError('no distribution named %r found' % name) + return dist.get_resource_path(relative_path) + + def get_exported_entries(self, category, name=None): + """ + Return all of the exported entries in a particular category. + + :param category: The category to search for entries. + :param name: If specified, only entries with that name are returned. + """ + for dist in self.get_distributions(): + r = dist.exports + if category in r: + d = r[category] + if name is not None: + if name in d: + yield d[name] + else: + for v in d.values(): + yield v + + +class Distribution(object): + """ + A base class for distributions, whether installed or from indexes. + Either way, it must have some metadata, so that's all that's needed + for construction. + """ + + build_time_dependency = False + """ + Set to True if it's known to be only a build-time dependency (i.e. + not needed after installation). + """ + + requested = False + """A boolean that indicates whether the ``REQUESTED`` metadata file is + present (in other words, whether the package was installed by user + request or it was installed as a dependency).""" + + def __init__(self, metadata): + """ + Initialise an instance. + :param metadata: The instance of :class:`Metadata` describing this + distribution. + """ + self.metadata = metadata + self.name = metadata.name + self.key = self.name.lower() # for case-insensitive comparisons + self.version = metadata.version + self.locator = None + self.digest = None + self.extras = None # additional features requested + self.context = None # environment marker overrides + self.download_urls = set() + self.digests = {} + + @property + def source_url(self): + """ + The source archive download URL for this distribution. + """ + return self.metadata.source_url + + download_url = source_url # Backward compatibility + + @property + def name_and_version(self): + """ + A utility property which displays the name and version in parentheses. + """ + return '%s (%s)' % (self.name, self.version) + + @property + def provides(self): + """ + A set of distribution names and versions provided by this distribution. + :return: A set of "name (version)" strings. + """ + plist = self.metadata.provides + s = '%s (%s)' % (self.name, self.version) + if s not in plist: + plist.append(s) + return plist + + def _get_requirements(self, req_attr): + md = self.metadata + reqts = getattr(md, req_attr) + logger.debug('%s: got requirements %r from metadata: %r', self.name, + req_attr, reqts) + return set( + md.get_requirements(reqts, extras=self.extras, env=self.context)) + + @property + def run_requires(self): + return self._get_requirements('run_requires') + + @property + def meta_requires(self): + return self._get_requirements('meta_requires') + + @property + def build_requires(self): + return self._get_requirements('build_requires') + + @property + def test_requires(self): + return self._get_requirements('test_requires') + + @property + def dev_requires(self): + return self._get_requirements('dev_requires') + + def matches_requirement(self, req): + """ + Say if this instance matches (fulfills) a requirement. + :param req: The requirement to match. + :rtype req: str + :return: True if it matches, else False. + """ + # Requirement may contain extras - parse to lose those + # from what's passed to the matcher + r = parse_requirement(req) + scheme = get_scheme(self.metadata.scheme) + try: + matcher = scheme.matcher(r.requirement) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + result = False + for p in self.provides: + p_name, p_ver = parse_name_and_version(p) + if p_name != name: + continue + try: + result = matcher.match(p_ver) + break + except UnsupportedVersionError: + pass + return result + + def __repr__(self): + """ + Return a textual representation of this instance, + """ + if self.source_url: + suffix = ' [%s]' % self.source_url + else: + suffix = '' + return '' % (self.name, self.version, suffix) + + def __eq__(self, other): + """ + See if this distribution is the same as another. + :param other: The distribution to compare with. To be equal to one + another. distributions must have the same type, name, + version and source_url. + :return: True if it is the same, else False. + """ + if type(other) is not type(self): + result = False + else: + result = (self.name == other.name and self.version == other.version + and self.source_url == other.source_url) + return result + + def __hash__(self): + """ + Compute hash in a way which matches the equality test. + """ + return hash(self.name) + hash(self.version) + hash(self.source_url) + + +class BaseInstalledDistribution(Distribution): + """ + This is the base class for installed distributions (whether PEP 376 or + legacy). + """ + + hasher = None + + def __init__(self, metadata, path, env=None): + """ + Initialise an instance. + :param metadata: An instance of :class:`Metadata` which describes the + distribution. This will normally have been initialised + from a metadata file in the ``path``. + :param path: The path of the ``.dist-info`` or ``.egg-info`` + directory for the distribution. + :param env: This is normally the :class:`DistributionPath` + instance where this distribution was found. + """ + super(BaseInstalledDistribution, self).__init__(metadata) + self.path = path + self.dist_path = env + + def get_hash(self, data, hasher=None): + """ + Get the hash of some data, using a particular hash algorithm, if + specified. + + :param data: The data to be hashed. + :type data: bytes + :param hasher: The name of a hash implementation, supported by hashlib, + or ``None``. Examples of valid values are ``'sha1'``, + ``'sha224'``, ``'sha384'``, '``sha256'``, ``'md5'`` and + ``'sha512'``. If no hasher is specified, the ``hasher`` + attribute of the :class:`InstalledDistribution` instance + is used. If the hasher is determined to be ``None``, MD5 + is used as the hashing algorithm. + :returns: The hash of the data. If a hasher was explicitly specified, + the returned hash will be prefixed with the specified hasher + followed by '='. + :rtype: str + """ + if hasher is None: + hasher = self.hasher + if hasher is None: + hasher = hashlib.md5 + prefix = '' + else: + hasher = getattr(hashlib, hasher) + prefix = '%s=' % self.hasher + digest = hasher(data).digest() + digest = base64.urlsafe_b64encode(digest).rstrip(b'=').decode('ascii') + return '%s%s' % (prefix, digest) + + +class InstalledDistribution(BaseInstalledDistribution): + """ + Created with the *path* of the ``.dist-info`` directory provided to the + constructor. It reads the metadata contained in ``pydist.json`` when it is + instantiated., or uses a passed in Metadata instance (useful for when + dry-run mode is being used). + """ + + hasher = 'sha256' + + def __init__(self, path, metadata=None, env=None): + self.modules = [] + self.finder = finder = resources.finder_for_path(path) + if finder is None: + raise ValueError('finder unavailable for %s' % path) + if env and env._cache_enabled and path in env._cache.path: + metadata = env._cache.path[path].metadata + elif metadata is None: + r = finder.find(METADATA_FILENAME) + # Temporary - for Wheel 0.23 support + if r is None: + r = finder.find(WHEEL_METADATA_FILENAME) + # Temporary - for legacy support + if r is None: + r = finder.find(LEGACY_METADATA_FILENAME) + if r is None: + raise ValueError('no %s found in %s' % + (METADATA_FILENAME, path)) + with contextlib.closing(r.as_stream()) as stream: + metadata = Metadata(fileobj=stream, scheme='legacy') + + super(InstalledDistribution, self).__init__(metadata, path, env) + + if env and env._cache_enabled: + env._cache.add(self) + + r = finder.find('REQUESTED') + self.requested = r is not None + p = os.path.join(path, 'top_level.txt') + if os.path.exists(p): + with open(p, 'rb') as f: + data = f.read().decode('utf-8') + self.modules = data.splitlines() + + def __repr__(self): + return '' % ( + self.name, self.version, self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def _get_records(self): + """ + Get the list of installed files for the distribution + :return: A list of tuples of path, hash and size. Note that hash and + size might be ``None`` for some entries. The path is exactly + as stored in the file (which is as in PEP 376). + """ + results = [] + r = self.get_distinfo_resource('RECORD') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as record_reader: + # Base location is parent dir of .dist-info dir + # base_location = os.path.dirname(self.path) + # base_location = os.path.abspath(base_location) + for row in record_reader: + missing = [None for i in range(len(row), 3)] + path, checksum, size = row + missing + # if not os.path.isabs(path): + # path = path.replace('/', os.sep) + # path = os.path.join(base_location, path) + results.append((path, checksum, size)) + return results + + @cached_property + def exports(self): + """ + Return the information exported by this distribution. + :return: A dictionary of exports, mapping an export category to a dict + of :class:`ExportEntry` instances describing the individual + export entries, and keyed by name. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + result = self.read_exports() + return result + + def read_exports(self): + """ + Read exports data from a file in .ini format. + + :return: A dictionary of exports, mapping an export category to a list + of :class:`ExportEntry` instances describing the individual + export entries. + """ + result = {} + r = self.get_distinfo_resource(EXPORTS_FILENAME) + if r: + with contextlib.closing(r.as_stream()) as stream: + result = read_exports(stream) + return result + + def write_exports(self, exports): + """ + Write a dictionary of exports to a file in .ini format. + :param exports: A dictionary of exports, mapping an export category to + a list of :class:`ExportEntry` instances describing the + individual export entries. + """ + rf = self.get_distinfo_file(EXPORTS_FILENAME) + with open(rf, 'w') as f: + write_exports(exports, f) + + def get_resource_path(self, relative_path): + """ + NOTE: This API may change in the future. + + Return the absolute path to a resource file with the given relative + path. + + :param relative_path: The path, relative to .dist-info, of the resource + of interest. + :return: The absolute path where the resource is to be found. + """ + r = self.get_distinfo_resource('RESOURCES') + with contextlib.closing(r.as_stream()) as stream: + with CSVReader(stream=stream) as resources_reader: + for relative, destination in resources_reader: + if relative == relative_path: + return destination + raise KeyError('no resource file with relative path %r ' + 'is installed' % relative_path) + + def list_installed_files(self): + """ + Iterates over the ``RECORD`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: iterator of (path, hash, size) + """ + for result in self._get_records(): + yield result + + def write_installed_files(self, paths, prefix, dry_run=False): + """ + Writes the ``RECORD`` file, using the ``paths`` iterable passed in. Any + existing ``RECORD`` file is silently overwritten. + + prefix is used to determine when to write absolute paths. + """ + prefix = os.path.join(prefix, '') + base = os.path.dirname(self.path) + base_under_prefix = base.startswith(prefix) + base = os.path.join(base, '') + record_path = self.get_distinfo_file('RECORD') + logger.info('creating %s', record_path) + if dry_run: + return None + with CSVWriter(record_path) as writer: + for path in paths: + if os.path.isdir(path) or path.endswith(('.pyc', '.pyo')): + # do not put size and hash, as in PEP-376 + hash_value = size = '' + else: + size = '%d' % os.path.getsize(path) + with open(path, 'rb') as fp: + hash_value = self.get_hash(fp.read()) + if path.startswith(base) or (base_under_prefix + and path.startswith(prefix)): + path = os.path.relpath(path, base) + writer.writerow((path, hash_value, size)) + + # add the RECORD file itself + if record_path.startswith(base): + record_path = os.path.relpath(record_path, base) + writer.writerow((record_path, '', '')) + return record_path + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + base = os.path.dirname(self.path) + record_path = self.get_distinfo_file('RECORD') + for path, hash_value, size in self.list_installed_files(): + if not os.path.isabs(path): + path = os.path.join(base, path) + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + elif os.path.isfile(path): + actual_size = str(os.path.getsize(path)) + if size and actual_size != size: + mismatches.append((path, 'size', size, actual_size)) + elif hash_value: + if '=' in hash_value: + hasher = hash_value.split('=', 1)[0] + else: + hasher = None + + with open(path, 'rb') as f: + actual_hash = self.get_hash(f.read(), hasher) + if actual_hash != hash_value: + mismatches.append( + (path, 'hash', hash_value, actual_hash)) + return mismatches + + @cached_property + def shared_locations(self): + """ + A dictionary of shared locations whose keys are in the set 'prefix', + 'purelib', 'platlib', 'scripts', 'headers', 'data' and 'namespace'. + The corresponding value is the absolute path of that category for + this distribution, and takes into account any paths selected by the + user at installation time (e.g. via command-line arguments). In the + case of the 'namespace' key, this would be a list of absolute paths + for the roots of namespace packages in this distribution. + + The first time this property is accessed, the relevant information is + read from the SHARED file in the .dist-info directory. + """ + result = {} + shared_path = os.path.join(self.path, 'SHARED') + if os.path.isfile(shared_path): + with codecs.open(shared_path, 'r', encoding='utf-8') as f: + lines = f.read().splitlines() + for line in lines: + key, value = line.split('=', 1) + if key == 'namespace': + result.setdefault(key, []).append(value) + else: + result[key] = value + return result + + def write_shared_locations(self, paths, dry_run=False): + """ + Write shared location information to the SHARED file in .dist-info. + :param paths: A dictionary as described in the documentation for + :meth:`shared_locations`. + :param dry_run: If True, the action is logged but no file is actually + written. + :return: The path of the file written to. + """ + shared_path = os.path.join(self.path, 'SHARED') + logger.info('creating %s', shared_path) + if dry_run: + return None + lines = [] + for key in ('prefix', 'lib', 'headers', 'scripts', 'data'): + path = paths[key] + if os.path.isdir(paths[key]): + lines.append('%s=%s' % (key, path)) + for ns in paths.get('namespace', ()): + lines.append('namespace=%s' % ns) + + with codecs.open(shared_path, 'w', encoding='utf-8') as f: + f.write('\n'.join(lines)) + return shared_path + + def get_distinfo_resource(self, path): + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + finder = resources.finder_for_path(self.path) + if finder is None: + raise DistlibException('Unable to get a finder for %s' % self.path) + return finder.find(path) + + def get_distinfo_file(self, path): + """ + Returns a path located under the ``.dist-info`` directory. Returns a + string representing the path. + + :parameter path: a ``'/'``-separated path relative to the + ``.dist-info`` directory or an absolute path; + If *path* is an absolute path and doesn't start + with the ``.dist-info`` directory path, + a :class:`DistlibException` is raised + :type path: str + :rtype: str + """ + # Check if it is an absolute path # XXX use relpath, add tests + if path.find(os.sep) >= 0: + # it's an absolute path? + distinfo_dirname, path = path.split(os.sep)[-2:] + if distinfo_dirname != self.path.split(os.sep)[-1]: + raise DistlibException( + 'dist-info file %r does not belong to the %r %s ' + 'distribution' % (path, self.name, self.version)) + + # The file must be relative + if path not in DIST_FILES: + raise DistlibException('invalid path for a dist-info file: ' + '%r at %r' % (path, self.path)) + + return os.path.join(self.path, path) + + def list_distinfo_files(self): + """ + Iterates over the ``RECORD`` entries and returns paths for each line if + the path is pointing to a file located in the ``.dist-info`` directory + or one of its subdirectories. + + :returns: iterator of paths + """ + base = os.path.dirname(self.path) + for path, checksum, size in self._get_records(): + # XXX add separator or use real relpath algo + if not os.path.isabs(path): + path = os.path.join(base, path) + if path.startswith(self.path): + yield path + + def __eq__(self, other): + return (isinstance(other, InstalledDistribution) + and self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +class EggInfoDistribution(BaseInstalledDistribution): + """Created with the *path* of the ``.egg-info`` directory or file provided + to the constructor. It reads the metadata contained in the file itself, or + if the given path happens to be a directory, the metadata is read from the + file ``PKG-INFO`` under that directory.""" + + requested = True # as we have no way of knowing, assume it was + shared_locations = {} + + def __init__(self, path, env=None): + + def set_name_and_version(s, n, v): + s.name = n + s.key = n.lower() # for case-insensitive comparisons + s.version = v + + self.path = path + self.dist_path = env + if env and env._cache_enabled and path in env._cache_egg.path: + metadata = env._cache_egg.path[path].metadata + set_name_and_version(self, metadata.name, metadata.version) + else: + metadata = self._get_metadata(path) + + # Need to be set before caching + set_name_and_version(self, metadata.name, metadata.version) + + if env and env._cache_enabled: + env._cache_egg.add(self) + super(EggInfoDistribution, self).__init__(metadata, path, env) + + def _get_metadata(self, path): + requires = None + + def parse_requires_data(data): + """Create a list of dependencies from a requires.txt file. + + *data*: the contents of a setuptools-produced requires.txt file. + """ + reqs = [] + lines = data.splitlines() + for line in lines: + line = line.strip() + # sectioned files have bare newlines (separating sections) + if not line: # pragma: no cover + continue + if line.startswith('['): # pragma: no cover + logger.warning( + 'Unexpected line: quitting requirement scan: %r', line) + break + r = parse_requirement(line) + if not r: # pragma: no cover + logger.warning('Not recognised as a requirement: %r', line) + continue + if r.extras: # pragma: no cover + logger.warning('extra requirements in requires.txt are ' + 'not supported') + if not r.constraints: + reqs.append(r.name) + else: + cons = ', '.join('%s%s' % c for c in r.constraints) + reqs.append('%s (%s)' % (r.name, cons)) + return reqs + + def parse_requires_path(req_path): + """Create a list of dependencies from a requires.txt file. + + *req_path*: the path to a setuptools-produced requires.txt file. + """ + + reqs = [] + try: + with codecs.open(req_path, 'r', 'utf-8') as fp: + reqs = parse_requires_data(fp.read()) + except IOError: + pass + return reqs + + tl_path = tl_data = None + if path.endswith('.egg'): + if os.path.isdir(path): + p = os.path.join(path, 'EGG-INFO') + meta_path = os.path.join(p, 'PKG-INFO') + metadata = Metadata(path=meta_path, scheme='legacy') + req_path = os.path.join(p, 'requires.txt') + tl_path = os.path.join(p, 'top_level.txt') + requires = parse_requires_path(req_path) + else: + # FIXME handle the case where zipfile is not available + zipf = zipimport.zipimporter(path) + fileobj = StringIO( + zipf.get_data('EGG-INFO/PKG-INFO').decode('utf8')) + metadata = Metadata(fileobj=fileobj, scheme='legacy') + try: + data = zipf.get_data('EGG-INFO/requires.txt') + tl_data = zipf.get_data('EGG-INFO/top_level.txt').decode( + 'utf-8') + requires = parse_requires_data(data.decode('utf-8')) + except IOError: + requires = None + elif path.endswith('.egg-info'): + if os.path.isdir(path): + req_path = os.path.join(path, 'requires.txt') + requires = parse_requires_path(req_path) + path = os.path.join(path, 'PKG-INFO') + tl_path = os.path.join(path, 'top_level.txt') + metadata = Metadata(path=path, scheme='legacy') + else: + raise DistlibException('path must end with .egg-info or .egg, ' + 'got %r' % path) + + if requires: + metadata.add_requirements(requires) + # look for top-level modules in top_level.txt, if present + if tl_data is None: + if tl_path is not None and os.path.exists(tl_path): + with open(tl_path, 'rb') as f: + tl_data = f.read().decode('utf-8') + if not tl_data: + tl_data = [] + else: + tl_data = tl_data.splitlines() + self.modules = tl_data + return metadata + + def __repr__(self): + return '' % (self.name, self.version, + self.path) + + def __str__(self): + return "%s %s" % (self.name, self.version) + + def check_installed_files(self): + """ + Checks that the hashes and sizes of the files in ``RECORD`` are + matched by the files themselves. Returns a (possibly empty) list of + mismatches. Each entry in the mismatch list will be a tuple consisting + of the path, 'exists', 'size' or 'hash' according to what didn't match + (existence is checked first, then size, then hash), the expected + value and the actual value. + """ + mismatches = [] + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + for path, _, _ in self.list_installed_files(): + if path == record_path: + continue + if not os.path.exists(path): + mismatches.append((path, 'exists', True, False)) + return mismatches + + def list_installed_files(self): + """ + Iterates over the ``installed-files.txt`` entries and returns a tuple + ``(path, hash, size)`` for each line. + + :returns: a list of (path, hash, size) + """ + + def _md5(path): + f = open(path, 'rb') + try: + content = f.read() + finally: + f.close() + return hashlib.md5(content).hexdigest() + + def _size(path): + return os.stat(path).st_size + + record_path = os.path.join(self.path, 'installed-files.txt') + result = [] + if os.path.exists(record_path): + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + p = os.path.normpath(os.path.join(self.path, line)) + # "./" is present as a marker between installed files + # and installation metadata files + if not os.path.exists(p): + logger.warning('Non-existent file: %s', p) + if p.endswith(('.pyc', '.pyo')): + continue + # otherwise fall through and fail + if not os.path.isdir(p): + result.append((p, _md5(p), _size(p))) + result.append((record_path, None, None)) + return result + + def list_distinfo_files(self, absolute=False): + """ + Iterates over the ``installed-files.txt`` entries and returns paths for + each line if the path is pointing to a file located in the + ``.egg-info`` directory or one of its subdirectories. + + :parameter absolute: If *absolute* is ``True``, each returned path is + transformed into a local absolute path. Otherwise the + raw value from ``installed-files.txt`` is returned. + :type absolute: boolean + :returns: iterator of paths + """ + record_path = os.path.join(self.path, 'installed-files.txt') + if os.path.exists(record_path): + skip = True + with codecs.open(record_path, 'r', encoding='utf-8') as f: + for line in f: + line = line.strip() + if line == './': + skip = False + continue + if not skip: + p = os.path.normpath(os.path.join(self.path, line)) + if p.startswith(self.path): + if absolute: + yield p + else: + yield line + + def __eq__(self, other): + return (isinstance(other, EggInfoDistribution) + and self.path == other.path) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + __hash__ = object.__hash__ + + +new_dist_class = InstalledDistribution +old_dist_class = EggInfoDistribution + + +class DependencyGraph(object): + """ + Represents a dependency graph between distributions. + + The dependency relationships are stored in an ``adjacency_list`` that maps + distributions to a list of ``(other, label)`` tuples where ``other`` + is a distribution and the edge is labeled with ``label`` (i.e. the version + specifier, if such was provided). Also, for more efficient traversal, for + every distribution ``x``, a list of predecessors is kept in + ``reverse_list[x]``. An edge from distribution ``a`` to + distribution ``b`` means that ``a`` depends on ``b``. If any missing + dependencies are found, they are stored in ``missing``, which is a + dictionary that maps distributions to a list of requirements that were not + provided by any other distributions. + """ + + def __init__(self): + self.adjacency_list = {} + self.reverse_list = {} + self.missing = {} + + def add_distribution(self, distribution): + """Add the *distribution* to the graph. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + """ + self.adjacency_list[distribution] = [] + self.reverse_list[distribution] = [] + # self.missing[distribution] = [] + + def add_edge(self, x, y, label=None): + """Add an edge from distribution *x* to distribution *y* with the given + *label*. + + :type x: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type y: :class:`distutils2.database.InstalledDistribution` or + :class:`distutils2.database.EggInfoDistribution` + :type label: ``str`` or ``None`` + """ + self.adjacency_list[x].append((y, label)) + # multiple edges are allowed, so be careful + if x not in self.reverse_list[y]: + self.reverse_list[y].append(x) + + def add_missing(self, distribution, requirement): + """ + Add a missing *requirement* for the given *distribution*. + + :type distribution: :class:`distutils2.database.InstalledDistribution` + or :class:`distutils2.database.EggInfoDistribution` + :type requirement: ``str`` + """ + logger.debug('%s missing %r', distribution, requirement) + self.missing.setdefault(distribution, []).append(requirement) + + def _repr_dist(self, dist): + return '%s %s' % (dist.name, dist.version) + + def repr_node(self, dist, level=1): + """Prints only a subgraph""" + output = [self._repr_dist(dist)] + for other, label in self.adjacency_list[dist]: + dist = self._repr_dist(other) + if label is not None: + dist = '%s [%s]' % (dist, label) + output.append(' ' * level + str(dist)) + suboutput = self.repr_node(other, level + 1) + subs = suboutput.split('\n') + output.extend(subs[1:]) + return '\n'.join(output) + + def to_dot(self, f, skip_disconnected=True): + """Writes a DOT output for the graph to the provided file *f*. + + If *skip_disconnected* is set to ``True``, then all distributions + that are not dependent on any other distribution are skipped. + + :type f: has to support ``file``-like operations + :type skip_disconnected: ``bool`` + """ + disconnected = [] + + f.write("digraph dependencies {\n") + for dist, adjs in self.adjacency_list.items(): + if len(adjs) == 0 and not skip_disconnected: + disconnected.append(dist) + for other, label in adjs: + if label is not None: + f.write('"%s" -> "%s" [label="%s"]\n' % + (dist.name, other.name, label)) + else: + f.write('"%s" -> "%s"\n' % (dist.name, other.name)) + if not skip_disconnected and len(disconnected) > 0: + f.write('subgraph disconnected {\n') + f.write('label = "Disconnected"\n') + f.write('bgcolor = red\n') + + for dist in disconnected: + f.write('"%s"' % dist.name) + f.write('\n') + f.write('}\n') + f.write('}\n') + + def topological_sort(self): + """ + Perform a topological sort of the graph. + :return: A tuple, the first element of which is a topologically sorted + list of distributions, and the second element of which is a + list of distributions that cannot be sorted because they have + circular dependencies and so form a cycle. + """ + result = [] + # Make a shallow copy of the adjacency list + alist = {} + for k, v in self.adjacency_list.items(): + alist[k] = v[:] + while True: + # See what we can remove in this run + to_remove = [] + for k, v in list(alist.items())[:]: + if not v: + to_remove.append(k) + del alist[k] + if not to_remove: + # What's left in alist (if anything) is a cycle. + break + # Remove from the adjacency list of others + for k, v in alist.items(): + alist[k] = [(d, r) for d, r in v if d not in to_remove] + logger.debug('Moving to result: %s', + ['%s (%s)' % (d.name, d.version) for d in to_remove]) + result.extend(to_remove) + return result, list(alist.keys()) + + def __repr__(self): + """Representation of the graph""" + output = [] + for dist, adjs in self.adjacency_list.items(): + output.append(self.repr_node(dist)) + return '\n'.join(output) + + +def make_graph(dists, scheme='default'): + """Makes a dependency graph from the given distributions. + + :parameter dists: a list of distributions + :type dists: list of :class:`distutils2.database.InstalledDistribution` and + :class:`distutils2.database.EggInfoDistribution` instances + :rtype: a :class:`DependencyGraph` instance + """ + scheme = get_scheme(scheme) + graph = DependencyGraph() + provided = {} # maps names to lists of (version, dist) tuples + + # first, build the graph and find out what's provided + for dist in dists: + graph.add_distribution(dist) + + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + provided.setdefault(name, []).append((version, dist)) + + # now make the edges + for dist in dists: + requires = (dist.run_requires | dist.meta_requires + | dist.build_requires | dist.dev_requires) + for req in requires: + try: + matcher = scheme.matcher(req) + except UnsupportedVersionError: + # XXX compat-mode if cannot read the version + logger.warning('could not read version %r - using name only', + req) + name = req.split()[0] + matcher = scheme.matcher(name) + + name = matcher.key # case-insensitive + + matched = False + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + graph.add_edge(dist, provider, req) + matched = True + break + if not matched: + graph.add_missing(dist, req) + return graph + + +def get_dependent_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + dependent on *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + dep = [dist] # dependent distributions + todo = graph.reverse_list[dist] # list of nodes we should inspect + + while todo: + d = todo.pop() + dep.append(d) + for succ in graph.reverse_list[d]: + if succ not in dep: + todo.append(succ) + + dep.pop(0) # remove dist from dep, was there to prevent infinite loops + return dep + + +def get_required_dists(dists, dist): + """Recursively generate a list of distributions from *dists* that are + required by *dist*. + + :param dists: a list of distributions + :param dist: a distribution, member of *dists* for which we are interested + in finding the dependencies. + """ + if dist not in dists: + raise DistlibException('given distribution %r is not a member ' + 'of the list' % dist.name) + graph = make_graph(dists) + + req = set() # required distributions + todo = graph.adjacency_list[dist] # list of nodes we should inspect + seen = set(t[0] for t in todo) # already added to todo + + while todo: + d = todo.pop()[0] + req.add(d) + pred_list = graph.adjacency_list[d] + for pred in pred_list: + d = pred[0] + if d not in req and d not in seen: + seen.add(d) + todo.append(pred) + return req + + +def make_dist(name, version, **kwargs): + """ + A convenience method for making a dist given just a name and version. + """ + summary = kwargs.pop('summary', 'Placeholder for summary') + md = Metadata(**kwargs) + md.name = name + md.version = version + md.summary = summary or 'Placeholder for summary' + return Distribution(md) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/index.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/index.py new file mode 100644 index 00000000..56cd2867 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/index.py @@ -0,0 +1,508 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import hashlib +import logging +import os +import shutil +import subprocess +import tempfile +try: + from threading import Thread +except ImportError: # pragma: no cover + from dummy_threading import Thread + +from . import DistlibException +from .compat import (HTTPBasicAuthHandler, Request, HTTPPasswordMgr, + urlparse, build_opener, string_types) +from .util import zip_dir, ServerProxy + +logger = logging.getLogger(__name__) + +DEFAULT_INDEX = 'https://pypi.org/pypi' +DEFAULT_REALM = 'pypi' + + +class PackageIndex(object): + """ + This class represents a package index compatible with PyPI, the Python + Package Index. + """ + + boundary = b'----------ThIs_Is_tHe_distlib_index_bouNdaRY_$' + + def __init__(self, url=None): + """ + Initialise an instance. + + :param url: The URL of the index. If not specified, the URL for PyPI is + used. + """ + self.url = url or DEFAULT_INDEX + self.read_configuration() + scheme, netloc, path, params, query, frag = urlparse(self.url) + if params or query or frag or scheme not in ('http', 'https'): + raise DistlibException('invalid repository: %s' % self.url) + self.password_handler = None + self.ssl_verifier = None + self.gpg = None + self.gpg_home = None + with open(os.devnull, 'w') as sink: + # Use gpg by default rather than gpg2, as gpg2 insists on + # prompting for passwords + for s in ('gpg', 'gpg2'): + try: + rc = subprocess.check_call([s, '--version'], stdout=sink, + stderr=sink) + if rc == 0: + self.gpg = s + break + except OSError: + pass + + def _get_pypirc_command(self): + """ + Get the distutils command for interacting with PyPI configurations. + :return: the command. + """ + from .util import _get_pypirc_command as cmd + return cmd() + + def read_configuration(self): + """ + Read the PyPI access configuration as supported by distutils. This populates + ``username``, ``password``, ``realm`` and ``url`` attributes from the + configuration. + """ + from .util import _load_pypirc + cfg = _load_pypirc(self) + self.username = cfg.get('username') + self.password = cfg.get('password') + self.realm = cfg.get('realm', 'pypi') + self.url = cfg.get('repository', self.url) + + def save_configuration(self): + """ + Save the PyPI access configuration. You must have set ``username`` and + ``password`` attributes before calling this method. + """ + self.check_credentials() + from .util import _store_pypirc + _store_pypirc(self) + + def check_credentials(self): + """ + Check that ``username`` and ``password`` have been set, and raise an + exception if not. + """ + if self.username is None or self.password is None: + raise DistlibException('username and password must be set') + pm = HTTPPasswordMgr() + _, netloc, _, _, _, _ = urlparse(self.url) + pm.add_password(self.realm, netloc, self.username, self.password) + self.password_handler = HTTPBasicAuthHandler(pm) + + def register(self, metadata): # pragma: no cover + """ + Register a distribution on PyPI, using the provided metadata. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the distribution to be + registered. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + metadata.validate() + d = metadata.todict() + d[':action'] = 'verify' + request = self.encode_request(d.items(), []) + self.send_request(request) + d[':action'] = 'submit' + request = self.encode_request(d.items(), []) + return self.send_request(request) + + def _reader(self, name, stream, outbuf): + """ + Thread runner for reading lines of from a subprocess into a buffer. + + :param name: The logical name of the stream (used for logging only). + :param stream: The stream to read from. This will typically a pipe + connected to the output stream of a subprocess. + :param outbuf: The list to append the read lines to. + """ + while True: + s = stream.readline() + if not s: + break + s = s.decode('utf-8').rstrip() + outbuf.append(s) + logger.debug('%s: %s' % (name, s)) + stream.close() + + def get_sign_command(self, filename, signer, sign_password, keystore=None): # pragma: no cover + """ + Return a suitable command for signing a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The signing command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + if sign_password is not None: + cmd.extend(['--batch', '--passphrase-fd', '0']) + td = tempfile.mkdtemp() + sf = os.path.join(td, os.path.basename(filename) + '.asc') + cmd.extend(['--detach-sign', '--armor', '--local-user', + signer, '--output', sf, filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd, sf + + def run_command(self, cmd, input_data=None): + """ + Run a command in a child process , passing it any input data specified. + + :param cmd: The command to run. + :param input_data: If specified, this must be a byte string containing + data to be sent to the child process. + :return: A tuple consisting of the subprocess' exit code, a list of + lines read from the subprocess' ``stdout``, and a list of + lines read from the subprocess' ``stderr``. + """ + kwargs = { + 'stdout': subprocess.PIPE, + 'stderr': subprocess.PIPE, + } + if input_data is not None: + kwargs['stdin'] = subprocess.PIPE + stdout = [] + stderr = [] + p = subprocess.Popen(cmd, **kwargs) + # We don't use communicate() here because we may need to + # get clever with interacting with the command + t1 = Thread(target=self._reader, args=('stdout', p.stdout, stdout)) + t1.start() + t2 = Thread(target=self._reader, args=('stderr', p.stderr, stderr)) + t2.start() + if input_data is not None: + p.stdin.write(input_data) + p.stdin.close() + + p.wait() + t1.join() + t2.join() + return p.returncode, stdout, stderr + + def sign_file(self, filename, signer, sign_password, keystore=None): # pragma: no cover + """ + Sign a file. + + :param filename: The pathname to the file to be signed. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The absolute pathname of the file where the signature is + stored. + """ + cmd, sig_file = self.get_sign_command(filename, signer, sign_password, + keystore) + rc, stdout, stderr = self.run_command(cmd, + sign_password.encode('utf-8')) + if rc != 0: + raise DistlibException('sign command failed with error ' + 'code %s' % rc) + return sig_file + + def upload_file(self, metadata, filename, signer=None, sign_password=None, + filetype='sdist', pyversion='source', keystore=None): + """ + Upload a release file to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the file to be uploaded. + :param filename: The pathname of the file to be uploaded. + :param signer: The identifier of the signer of the file. + :param sign_password: The passphrase for the signer's + private key used for signing. + :param filetype: The type of the file being uploaded. This is the + distutils command which produced that file, e.g. + ``sdist`` or ``bdist_wheel``. + :param pyversion: The version of Python which the release relates + to. For code compatible with any Python, this would + be ``source``, otherwise it would be e.g. ``3.2``. + :param keystore: The path to a directory which contains the keys + used in signing. If not specified, the instance's + ``gpg_home`` attribute is used instead. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.exists(filename): + raise DistlibException('not found: %s' % filename) + metadata.validate() + d = metadata.todict() + sig_file = None + if signer: + if not self.gpg: + logger.warning('no signing program available - not signed') + else: + sig_file = self.sign_file(filename, signer, sign_password, + keystore) + with open(filename, 'rb') as f: + file_data = f.read() + md5_digest = hashlib.md5(file_data).hexdigest() + sha256_digest = hashlib.sha256(file_data).hexdigest() + d.update({ + ':action': 'file_upload', + 'protocol_version': '1', + 'filetype': filetype, + 'pyversion': pyversion, + 'md5_digest': md5_digest, + 'sha256_digest': sha256_digest, + }) + files = [('content', os.path.basename(filename), file_data)] + if sig_file: + with open(sig_file, 'rb') as f: + sig_data = f.read() + files.append(('gpg_signature', os.path.basename(sig_file), + sig_data)) + shutil.rmtree(os.path.dirname(sig_file)) + request = self.encode_request(d.items(), files) + return self.send_request(request) + + def upload_documentation(self, metadata, doc_dir): # pragma: no cover + """ + Upload documentation to the index. + + :param metadata: A :class:`Metadata` instance defining at least a name + and version number for the documentation to be + uploaded. + :param doc_dir: The pathname of the directory which contains the + documentation. This should be the directory that + contains the ``index.html`` for the documentation. + :return: The HTTP response received from PyPI upon submission of the + request. + """ + self.check_credentials() + if not os.path.isdir(doc_dir): + raise DistlibException('not a directory: %r' % doc_dir) + fn = os.path.join(doc_dir, 'index.html') + if not os.path.exists(fn): + raise DistlibException('not found: %r' % fn) + metadata.validate() + name, version = metadata.name, metadata.version + zip_data = zip_dir(doc_dir).getvalue() + fields = [(':action', 'doc_upload'), + ('name', name), ('version', version)] + files = [('content', name, zip_data)] + request = self.encode_request(fields, files) + return self.send_request(request) + + def get_verify_command(self, signature_filename, data_filename, + keystore=None): + """ + Return a suitable command for verifying a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: The verifying command as a list suitable to be + passed to :class:`subprocess.Popen`. + """ + cmd = [self.gpg, '--status-fd', '2', '--no-tty'] + if keystore is None: + keystore = self.gpg_home + if keystore: + cmd.extend(['--homedir', keystore]) + cmd.extend(['--verify', signature_filename, data_filename]) + logger.debug('invoking: %s', ' '.join(cmd)) + return cmd + + def verify_signature(self, signature_filename, data_filename, + keystore=None): + """ + Verify a signature for a file. + + :param signature_filename: The pathname to the file containing the + signature. + :param data_filename: The pathname to the file containing the + signed data. + :param keystore: The path to a directory which contains the keys + used in verification. If not specified, the + instance's ``gpg_home`` attribute is used instead. + :return: True if the signature was verified, else False. + """ + if not self.gpg: + raise DistlibException('verification unavailable because gpg ' + 'unavailable') + cmd = self.get_verify_command(signature_filename, data_filename, + keystore) + rc, stdout, stderr = self.run_command(cmd) + if rc not in (0, 1): + raise DistlibException('verify command failed with error code %s' % rc) + return rc == 0 + + def download_file(self, url, destfile, digest=None, reporthook=None): + """ + This is a convenience method for downloading a file from an URL. + Normally, this will be a file from the index, though currently + no check is made for this (i.e. a file can be downloaded from + anywhere). + + The method is just like the :func:`urlretrieve` function in the + standard library, except that it allows digest computation to be + done during download and checking that the downloaded data + matched any expected value. + + :param url: The URL of the file to be downloaded (assumed to be + available via an HTTP GET request). + :param destfile: The pathname where the downloaded file is to be + saved. + :param digest: If specified, this must be a (hasher, value) + tuple, where hasher is the algorithm used (e.g. + ``'md5'``) and ``value`` is the expected value. + :param reporthook: The same as for :func:`urlretrieve` in the + standard library. + """ + if digest is None: + digester = None + logger.debug('No digest specified') + else: + if isinstance(digest, (list, tuple)): + hasher, digest = digest + else: + hasher = 'md5' + digester = getattr(hashlib, hasher)() + logger.debug('Digest specified: %s' % digest) + # The following code is equivalent to urlretrieve. + # We need to do it this way so that we can compute the + # digest of the file as we go. + with open(destfile, 'wb') as dfp: + # addinfourl is not a context manager on 2.x + # so we have to use try/finally + sfp = self.send_request(Request(url)) + try: + headers = sfp.info() + blocksize = 8192 + size = -1 + read = 0 + blocknum = 0 + if "content-length" in headers: + size = int(headers["Content-Length"]) + if reporthook: + reporthook(blocknum, blocksize, size) + while True: + block = sfp.read(blocksize) + if not block: + break + read += len(block) + dfp.write(block) + if digester: + digester.update(block) + blocknum += 1 + if reporthook: + reporthook(blocknum, blocksize, size) + finally: + sfp.close() + + # check that we got the whole file, if we can + if size >= 0 and read < size: + raise DistlibException( + 'retrieval incomplete: got only %d out of %d bytes' + % (read, size)) + # if we have a digest, it must match. + if digester: + actual = digester.hexdigest() + if digest != actual: + raise DistlibException('%s digest mismatch for %s: expected ' + '%s, got %s' % (hasher, destfile, + digest, actual)) + logger.debug('Digest verified: %s', digest) + + def send_request(self, req): + """ + Send a standard library :class:`Request` to PyPI and return its + response. + + :param req: The request to send. + :return: The HTTP response from PyPI (a standard library HTTPResponse). + """ + handlers = [] + if self.password_handler: + handlers.append(self.password_handler) + if self.ssl_verifier: + handlers.append(self.ssl_verifier) + opener = build_opener(*handlers) + return opener.open(req) + + def encode_request(self, fields, files): + """ + Encode fields and files for posting to an HTTP server. + + :param fields: The fields to send as a list of (fieldname, value) + tuples. + :param files: The files to send as a list of (fieldname, filename, + file_bytes) tuple. + """ + # Adapted from packaging, which in turn was adapted from + # http://code.activestate.com/recipes/146306 + + parts = [] + boundary = self.boundary + for k, values in fields: + if not isinstance(values, (list, tuple)): + values = [values] + + for v in values: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"' % + k).encode('utf-8'), + b'', + v.encode('utf-8'))) + for key, filename, value in files: + parts.extend(( + b'--' + boundary, + ('Content-Disposition: form-data; name="%s"; filename="%s"' % + (key, filename)).encode('utf-8'), + b'', + value)) + + parts.extend((b'--' + boundary + b'--', b'')) + + body = b'\r\n'.join(parts) + ct = b'multipart/form-data; boundary=' + boundary + headers = { + 'Content-type': ct, + 'Content-length': str(len(body)) + } + return Request(self.url, body, headers) + + def search(self, terms, operator=None): # pragma: no cover + if isinstance(terms, string_types): + terms = {'name': terms} + rpc_proxy = ServerProxy(self.url, timeout=3.0) + try: + return rpc_proxy.search(terms, operator or 'and') + finally: + rpc_proxy('close')() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py new file mode 100644 index 00000000..f9f0788f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py @@ -0,0 +1,1303 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# + +import gzip +from io import BytesIO +import json +import logging +import os +import posixpath +import re +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import zlib + +from . import DistlibException +from .compat import (urljoin, urlparse, urlunparse, url2pathname, pathname2url, + queue, quote, unescape, build_opener, + HTTPRedirectHandler as BaseRedirectHandler, text_type, + Request, HTTPError, URLError) +from .database import Distribution, DistributionPath, make_dist +from .metadata import Metadata, MetadataInvalidError +from .util import (cached_property, ensure_slash, split_filename, get_project_data, + parse_requirement, parse_name_and_version, ServerProxy, + normalize_name) +from .version import get_scheme, UnsupportedVersionError +from .wheel import Wheel, is_compatible + +logger = logging.getLogger(__name__) + +HASHER_HASH = re.compile(r'^(\w+)=([a-f0-9]+)') +CHARSET = re.compile(r';\s*charset\s*=\s*(.*)\s*$', re.I) +HTML_CONTENT_TYPE = re.compile('text/html|application/x(ht)?ml') +DEFAULT_INDEX = 'https://pypi.org/pypi' + + +def get_all_distribution_names(url=None): + """ + Return all distribution names known by an index. + :param url: The URL of the index. + :return: A list of all known distribution names. + """ + if url is None: + url = DEFAULT_INDEX + client = ServerProxy(url, timeout=3.0) + try: + return client.list_packages() + finally: + client('close')() + + +class RedirectHandler(BaseRedirectHandler): + """ + A class to work around a bug in some Python 3.2.x releases. + """ + # There's a bug in the base version for some 3.2.x + # (e.g. 3.2.2 on Ubuntu Oneiric). If a Location header + # returns e.g. /abc, it bails because it says the scheme '' + # is bogus, when actually it should use the request's + # URL for the scheme. See Python issue #13696. + def http_error_302(self, req, fp, code, msg, headers): + # Some servers (incorrectly) return multiple Location headers + # (so probably same goes for URI). Use first header. + newurl = None + for key in ('location', 'uri'): + if key in headers: + newurl = headers[key] + break + if newurl is None: # pragma: no cover + return + urlparts = urlparse(newurl) + if urlparts.scheme == '': + newurl = urljoin(req.get_full_url(), newurl) + if hasattr(headers, 'replace_header'): + headers.replace_header(key, newurl) + else: + headers[key] = newurl + return BaseRedirectHandler.http_error_302(self, req, fp, code, msg, + headers) + + http_error_301 = http_error_303 = http_error_307 = http_error_302 + + +class Locator(object): + """ + A base class for locators - things that locate distributions. + """ + source_extensions = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz') + binary_extensions = ('.egg', '.exe', '.whl') + excluded_extensions = ('.pdf',) + + # A list of tags indicating which wheels you want to match. The default + # value of None matches against the tags compatible with the running + # Python. If you want to match other values, set wheel_tags on a locator + # instance to a list of tuples (pyver, abi, arch) which you want to match. + wheel_tags = None + + downloadable_extensions = source_extensions + ('.whl',) + + def __init__(self, scheme='default'): + """ + Initialise an instance. + :param scheme: Because locators look for most recent versions, they + need to know the version scheme to use. This specifies + the current PEP-recommended scheme - use ``'legacy'`` + if you need to support existing distributions on PyPI. + """ + self._cache = {} + self.scheme = scheme + # Because of bugs in some of the handlers on some of the platforms, + # we use our own opener rather than just using urlopen. + self.opener = build_opener(RedirectHandler()) + # If get_project() is called from locate(), the matcher instance + # is set from the requirement passed to locate(). See issue #18 for + # why this can be useful to know. + self.matcher = None + self.errors = queue.Queue() + + def get_errors(self): + """ + Return any errors which have occurred. + """ + result = [] + while not self.errors.empty(): # pragma: no cover + try: + e = self.errors.get(False) + result.append(e) + except self.errors.Empty: + continue + self.errors.task_done() + return result + + def clear_errors(self): + """ + Clear any errors which may have been logged. + """ + # Just get the errors and throw them away + self.get_errors() + + def clear_cache(self): + self._cache.clear() + + def _get_scheme(self): + return self._scheme + + def _set_scheme(self, value): + self._scheme = value + + scheme = property(_get_scheme, _set_scheme) + + def _get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This should be implemented in subclasses. + + If called from a locate() request, self.matcher will be set to a + matcher for the requirement to satisfy, otherwise it will be None. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Please implement in the subclass') + + def get_project(self, name): + """ + For a given project, get a dictionary mapping available versions to Distribution + instances. + + This calls _get_project to do all the work, and just implements a caching layer on top. + """ + if self._cache is None: # pragma: no cover + result = self._get_project(name) + elif name in self._cache: + result = self._cache[name] + else: + self.clear_errors() + result = self._get_project(name) + self._cache[name] = result + return result + + def score_url(self, url): + """ + Give an url a score which can be used to choose preferred URLs + for a given project release. + """ + t = urlparse(url) + basename = posixpath.basename(t.path) + compatible = True + is_wheel = basename.endswith('.whl') + is_downloadable = basename.endswith(self.downloadable_extensions) + if is_wheel: + compatible = is_compatible(Wheel(basename), self.wheel_tags) + return (t.scheme == 'https', 'pypi.org' in t.netloc, + is_downloadable, is_wheel, compatible, basename) + + def prefer_url(self, url1, url2): + """ + Choose one of two URLs where both are candidates for distribution + archives for the same version of a distribution (for example, + .tar.gz vs. zip). + + The current implementation favours https:// URLs over http://, archives + from PyPI over those from other locations, wheel compatibility (if a + wheel) and then the archive name. + """ + result = url2 + if url1: + s1 = self.score_url(url1) + s2 = self.score_url(url2) + if s1 > s2: + result = url1 + if result != url2: + logger.debug('Not replacing %r with %r', url1, url2) + else: + logger.debug('Replacing %r with %r', url1, url2) + return result + + def split_filename(self, filename, project_name): + """ + Attempt to split a filename in project name, version and Python version. + """ + return split_filename(filename, project_name) + + def convert_url_to_download_info(self, url, project_name): + """ + See if a URL is a candidate for a download URL for a project (the URL + has typically been scraped from an HTML page). + + If it is, a dictionary is returned with keys "name", "version", + "filename" and "url"; otherwise, None is returned. + """ + def same_project(name1, name2): + return normalize_name(name1) == normalize_name(name2) + + result = None + scheme, netloc, path, params, query, frag = urlparse(url) + if frag.lower().startswith('egg='): # pragma: no cover + logger.debug('%s: version hint in fragment: %r', + project_name, frag) + m = HASHER_HASH.match(frag) + if m: + algo, digest = m.groups() + else: + algo, digest = None, None + origpath = path + if path and path[-1] == '/': # pragma: no cover + path = path[:-1] + if path.endswith('.whl'): + try: + wheel = Wheel(path) + if not is_compatible(wheel, self.wheel_tags): + logger.debug('Wheel not compatible: %s', path) + else: + if project_name is None: + include = True + else: + include = same_project(wheel.name, project_name) + if include: + result = { + 'name': wheel.name, + 'version': wheel.version, + 'filename': wheel.filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + 'python-version': ', '.join( + ['.'.join(list(v[2:])) for v in wheel.pyver]), + } + except Exception: # pragma: no cover + logger.warning('invalid path for wheel: %s', path) + elif not path.endswith(self.downloadable_extensions): # pragma: no cover + logger.debug('Not downloadable: %s', path) + else: # downloadable extension + path = filename = posixpath.basename(path) + for ext in self.downloadable_extensions: + if path.endswith(ext): + path = path[:-len(ext)] + t = self.split_filename(path, project_name) + if not t: # pragma: no cover + logger.debug('No match for project/version: %s', path) + else: + name, version, pyver = t + if not project_name or same_project(project_name, name): + result = { + 'name': name, + 'version': version, + 'filename': filename, + 'url': urlunparse((scheme, netloc, origpath, + params, query, '')), + } + if pyver: # pragma: no cover + result['python-version'] = pyver + break + if result and algo: + result['%s_digest' % algo] = digest + return result + + def _get_digest(self, info): + """ + Get a digest from a dictionary by looking at a "digests" dictionary + or keys of the form 'algo_digest'. + + Returns a 2-tuple (algo, digest) if found, else None. Currently + looks only for SHA256, then MD5. + """ + result = None + if 'digests' in info: + digests = info['digests'] + for algo in ('sha256', 'md5'): + if algo in digests: + result = (algo, digests[algo]) + break + if not result: + for algo in ('sha256', 'md5'): + key = '%s_digest' % algo + if key in info: + result = (algo, info[key]) + break + return result + + def _update_version_data(self, result, info): + """ + Update a result dictionary (the final result from _get_project) with a + dictionary for a specific version, which typically holds information + gleaned from a filename or URL for an archive for the distribution. + """ + name = info.pop('name') + version = info.pop('version') + if version in result: + dist = result[version] + md = dist.metadata + else: + dist = make_dist(name, version, scheme=self.scheme) + md = dist.metadata + dist.digest = digest = self._get_digest(info) + url = info['url'] + result['digests'][url] = digest + if md.source_url != info['url']: + md.source_url = self.prefer_url(md.source_url, url) + result['urls'].setdefault(version, set()).add(url) + dist.locator = self + result[version] = dist + + def locate(self, requirement, prereleases=False): + """ + Find the most recent distribution which matches the given + requirement. + + :param requirement: A requirement of the form 'foo (1.0)' or perhaps + 'foo (>= 1.0, < 2.0, != 1.3)' + :param prereleases: If ``True``, allow pre-release versions + to be located. Otherwise, pre-release versions + are not returned. + :return: A :class:`Distribution` instance, or ``None`` if no such + distribution could be located. + """ + result = None + r = parse_requirement(requirement) + if r is None: # pragma: no cover + raise DistlibException('Not a valid requirement: %r' % requirement) + scheme = get_scheme(self.scheme) + self.matcher = matcher = scheme.matcher(r.requirement) + logger.debug('matcher: %s (%s)', matcher, type(matcher).__name__) + versions = self.get_project(r.name) + if len(versions) > 2: # urls and digests keys are present + # sometimes, versions are invalid + slist = [] + vcls = matcher.version_class + for k in versions: + if k in ('urls', 'digests'): + continue + try: + if not matcher.match(k): + pass # logger.debug('%s did not match %r', matcher, k) + else: + if prereleases or not vcls(k).is_prerelease: + slist.append(k) + except Exception: # pragma: no cover + logger.warning('error matching %s with %r', matcher, k) + pass # slist.append(k) + if len(slist) > 1: + slist = sorted(slist, key=scheme.key) + if slist: + logger.debug('sorted list: %s', slist) + version = slist[-1] + result = versions[version] + if result: + if r.extras: + result.extras = r.extras + result.download_urls = versions.get('urls', {}).get(version, set()) + d = {} + sd = versions.get('digests', {}) + for url in result.download_urls: + if url in sd: # pragma: no cover + d[url] = sd[url] + result.digests = d + self.matcher = None + return result + + +class PyPIRPCLocator(Locator): + """ + This locator uses XML-RPC to locate distributions. It therefore + cannot be used with simple mirrors (that only mirror file content). + """ + def __init__(self, url, **kwargs): + """ + Initialise an instance. + + :param url: The URL to use for XML-RPC. + :param kwargs: Passed to the superclass constructor. + """ + super(PyPIRPCLocator, self).__init__(**kwargs) + self.base_url = url + self.client = ServerProxy(url, timeout=3.0) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + return set(self.client.list_packages()) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + versions = self.client.package_releases(name, True) + for v in versions: + urls = self.client.release_urls(name, v) + data = self.client.release_data(name, v) + metadata = Metadata(scheme=self.scheme) + metadata.name = data['name'] + metadata.version = data['version'] + metadata.license = data.get('license') + metadata.keywords = data.get('keywords', []) + metadata.summary = data.get('summary') + dist = Distribution(metadata) + if urls: + info = urls[0] + metadata.source_url = info['url'] + dist.digest = self._get_digest(info) + dist.locator = self + result[v] = dist + for info in urls: + url = info['url'] + digest = self._get_digest(info) + result['urls'].setdefault(v, set()).add(url) + result['digests'][url] = digest + return result + + +class PyPIJSONLocator(Locator): + """ + This locator uses PyPI's JSON interface. It's very limited in functionality + and probably not worth using. + """ + def __init__(self, url, **kwargs): + super(PyPIJSONLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + url = urljoin(self.base_url, '%s/json' % quote(name)) + try: + resp = self.opener.open(url) + data = resp.read().decode() # for now + d = json.loads(data) + md = Metadata(scheme=self.scheme) + data = d['info'] + md.name = data['name'] + md.version = data['version'] + md.license = data.get('license') + md.keywords = data.get('keywords', []) + md.summary = data.get('summary') + dist = Distribution(md) + dist.locator = self + # urls = d['urls'] + result[md.version] = dist + for info in d['urls']: + url = info['url'] + dist.download_urls.add(url) + dist.digests[url] = self._get_digest(info) + result['urls'].setdefault(md.version, set()).add(url) + result['digests'][url] = self._get_digest(info) + # Now get other releases + for version, infos in d['releases'].items(): + if version == md.version: + continue # already done + omd = Metadata(scheme=self.scheme) + omd.name = md.name + omd.version = version + odist = Distribution(omd) + odist.locator = self + result[version] = odist + for info in infos: + url = info['url'] + odist.download_urls.add(url) + odist.digests[url] = self._get_digest(info) + result['urls'].setdefault(version, set()).add(url) + result['digests'][url] = self._get_digest(info) +# for info in urls: +# md.source_url = info['url'] +# dist.digest = self._get_digest(info) +# dist.locator = self +# for info in urls: +# url = info['url'] +# result['urls'].setdefault(md.version, set()).add(url) +# result['digests'][url] = self._get_digest(info) + except Exception as e: + self.errors.put(text_type(e)) + logger.exception('JSON fetch failed: %s', e) + return result + + +class Page(object): + """ + This class represents a scraped HTML page. + """ + # The following slightly hairy-looking regex just looks for the contents of + # an anchor link, which has an attribute "href" either immediately preceded + # or immediately followed by a "rel" attribute. The attribute values can be + # declared with double quotes, single quotes or no quotes - which leads to + # the length of the expression. + _href = re.compile(""" +(rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*))\\s+)? +href\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)) +(\\s+rel\\s*=\\s*(?:"(?P[^"]*)"|'(?P[^']*)'|(?P[^>\\s\n]*)))? +""", re.I | re.S | re.X) + _base = re.compile(r"""]+)""", re.I | re.S) + + def __init__(self, data, url): + """ + Initialise an instance with the Unicode page contents and the URL they + came from. + """ + self.data = data + self.base_url = self.url = url + m = self._base.search(self.data) + if m: + self.base_url = m.group(1) + + _clean_re = re.compile(r'[^a-z0-9$&+,/:;=?@.#%_\\|-]', re.I) + + @cached_property + def links(self): + """ + Return the URLs of all the links on a page together with information + about their "rel" attribute, for determining which ones to treat as + downloads and which ones to queue for further scraping. + """ + def clean(url): + "Tidy up an URL." + scheme, netloc, path, params, query, frag = urlparse(url) + return urlunparse((scheme, netloc, quote(path), + params, query, frag)) + + result = set() + for match in self._href.finditer(self.data): + d = match.groupdict('') + rel = (d['rel1'] or d['rel2'] or d['rel3'] or + d['rel4'] or d['rel5'] or d['rel6']) + url = d['url1'] or d['url2'] or d['url3'] + url = urljoin(self.base_url, url) + url = unescape(url) + url = self._clean_re.sub(lambda m: '%%%2x' % ord(m.group(0)), url) + result.add((url, rel)) + # We sort the result, hoping to bring the most recent versions + # to the front + result = sorted(result, key=lambda t: t[0], reverse=True) + return result + + +class SimpleScrapingLocator(Locator): + """ + A locator which scrapes HTML pages to locate downloads for a distribution. + This runs multiple threads to do the I/O; performance is at least as good + as pip's PackageFinder, which works in an analogous fashion. + """ + + # These are used to deal with various Content-Encoding schemes. + decoders = { + 'deflate': zlib.decompress, + 'gzip': lambda b: gzip.GzipFile(fileobj=BytesIO(b)).read(), + 'none': lambda b: b, + } + + def __init__(self, url, timeout=None, num_workers=10, **kwargs): + """ + Initialise an instance. + :param url: The root URL to use for scraping. + :param timeout: The timeout, in seconds, to be applied to requests. + This defaults to ``None`` (no timeout specified). + :param num_workers: The number of worker threads you want to do I/O, + This defaults to 10. + :param kwargs: Passed to the superclass. + """ + super(SimpleScrapingLocator, self).__init__(**kwargs) + self.base_url = ensure_slash(url) + self.timeout = timeout + self._page_cache = {} + self._seen = set() + self._to_fetch = queue.Queue() + self._bad_hosts = set() + self.skip_externals = False + self.num_workers = num_workers + self._lock = threading.RLock() + # See issue #45: we need to be resilient when the locator is used + # in a thread, e.g. with concurrent.futures. We can't use self._lock + # as it is for coordinating our internal threads - the ones created + # in _prepare_threads. + self._gplock = threading.RLock() + self.platform_check = False # See issue #112 + + def _prepare_threads(self): + """ + Threads are created only when get_project is called, and terminate + before it returns. They are there primarily to parallelise I/O (i.e. + fetching web pages). + """ + self._threads = [] + for i in range(self.num_workers): + t = threading.Thread(target=self._fetch) + t.daemon = True + t.start() + self._threads.append(t) + + def _wait_threads(self): + """ + Tell all the threads to terminate (by sending a sentinel value) and + wait for them to do so. + """ + # Note that you need two loops, since you can't say which + # thread will get each sentinel + for t in self._threads: + self._to_fetch.put(None) # sentinel + for t in self._threads: + t.join() + self._threads = [] + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + with self._gplock: + self.result = result + self.project_name = name + url = urljoin(self.base_url, '%s/' % quote(name)) + self._seen.clear() + self._page_cache.clear() + self._prepare_threads() + try: + logger.debug('Queueing %s', url) + self._to_fetch.put(url) + self._to_fetch.join() + finally: + self._wait_threads() + del self.result + return result + + platform_dependent = re.compile(r'\b(linux_(i\d86|x86_64|arm\w+)|' + r'win(32|_amd64)|macosx_?\d+)\b', re.I) + + def _is_platform_dependent(self, url): + """ + Does an URL refer to a platform-specific download? + """ + return self.platform_dependent.search(url) + + def _process_download(self, url): + """ + See if an URL is a suitable download for a project. + + If it is, register information in the result dictionary (for + _get_project) about the specific version it's for. + + Note that the return value isn't actually used other than as a boolean + value. + """ + if self.platform_check and self._is_platform_dependent(url): + info = None + else: + info = self.convert_url_to_download_info(url, self.project_name) + logger.debug('process_download: %s -> %s', url, info) + if info: + with self._lock: # needed because self.result is shared + self._update_version_data(self.result, info) + return info + + def _should_queue(self, link, referrer, rel): + """ + Determine whether a link URL from a referring page and with a + particular "rel" attribute should be queued for scraping. + """ + scheme, netloc, path, _, _, _ = urlparse(link) + if path.endswith(self.source_extensions + self.binary_extensions + + self.excluded_extensions): + result = False + elif self.skip_externals and not link.startswith(self.base_url): + result = False + elif not referrer.startswith(self.base_url): + result = False + elif rel not in ('homepage', 'download'): + result = False + elif scheme not in ('http', 'https', 'ftp'): + result = False + elif self._is_platform_dependent(link): + result = False + else: + host = netloc.split(':', 1)[0] + if host.lower() == 'localhost': + result = False + else: + result = True + logger.debug('should_queue: %s (%s) from %s -> %s', link, rel, + referrer, result) + return result + + def _fetch(self): + """ + Get a URL to fetch from the work queue, get the HTML page, examine its + links for download candidates and candidates for further scraping. + + This is a handy method to run in a thread. + """ + while True: + url = self._to_fetch.get() + try: + if url: + page = self.get_page(url) + if page is None: # e.g. after an error + continue + for link, rel in page.links: + if link not in self._seen: + try: + self._seen.add(link) + if (not self._process_download(link) and + self._should_queue(link, url, rel)): + logger.debug('Queueing %s from %s', link, url) + self._to_fetch.put(link) + except MetadataInvalidError: # e.g. invalid versions + pass + except Exception as e: # pragma: no cover + self.errors.put(text_type(e)) + finally: + # always do this, to avoid hangs :-) + self._to_fetch.task_done() + if not url: + # logger.debug('Sentinel seen, quitting.') + break + + def get_page(self, url): + """ + Get the HTML for an URL, possibly from an in-memory cache. + + XXX TODO Note: this cache is never actually cleared. It's assumed that + the data won't get stale over the lifetime of a locator instance (not + necessarily true for the default_locator). + """ + # http://peak.telecommunity.com/DevCenter/EasyInstall#package-index-api + scheme, netloc, path, _, _, _ = urlparse(url) + if scheme == 'file' and os.path.isdir(url2pathname(path)): + url = urljoin(ensure_slash(url), 'index.html') + + if url in self._page_cache: + result = self._page_cache[url] + logger.debug('Returning %s from cache: %s', url, result) + else: + host = netloc.split(':', 1)[0] + result = None + if host in self._bad_hosts: + logger.debug('Skipping %s due to bad host %s', url, host) + else: + req = Request(url, headers={'Accept-encoding': 'identity'}) + try: + logger.debug('Fetching %s', url) + resp = self.opener.open(req, timeout=self.timeout) + logger.debug('Fetched %s', url) + headers = resp.info() + content_type = headers.get('Content-Type', '') + if HTML_CONTENT_TYPE.match(content_type): + final_url = resp.geturl() + data = resp.read() + encoding = headers.get('Content-Encoding') + if encoding: + decoder = self.decoders[encoding] # fail if not found + data = decoder(data) + encoding = 'utf-8' + m = CHARSET.search(content_type) + if m: + encoding = m.group(1) + try: + data = data.decode(encoding) + except UnicodeError: # pragma: no cover + data = data.decode('latin-1') # fallback + result = Page(data, final_url) + self._page_cache[final_url] = result + except HTTPError as e: + if e.code != 404: + logger.exception('Fetch failed: %s: %s', url, e) + except URLError as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + with self._lock: + self._bad_hosts.add(host) + except Exception as e: # pragma: no cover + logger.exception('Fetch failed: %s: %s', url, e) + finally: + self._page_cache[url] = result # even if None (failure) + return result + + _distname_re = re.compile(']*>([^<]+)<') + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + page = self.get_page(self.base_url) + if not page: + raise DistlibException('Unable to get %s' % self.base_url) + for match in self._distname_re.finditer(page.data): + result.add(match.group(1)) + return result + + +class DirectoryLocator(Locator): + """ + This class locates distributions in a directory tree. + """ + + def __init__(self, path, **kwargs): + """ + Initialise an instance. + :param path: The root of the directory tree to search. + :param kwargs: Passed to the superclass constructor, + except for: + * recursive - if True (the default), subdirectories are + recursed into. If False, only the top-level directory + is searched, + """ + self.recursive = kwargs.pop('recursive', True) + super(DirectoryLocator, self).__init__(**kwargs) + path = os.path.abspath(path) + if not os.path.isdir(path): # pragma: no cover + raise DistlibException('Not a directory: %r' % path) + self.base_dir = path + + def should_include(self, filename, parent): + """ + Should a filename be considered as a candidate for a distribution + archive? As well as the filename, the directory which contains it + is provided, though not used by the current implementation. + """ + return filename.endswith(self.downloadable_extensions) + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, name) + if info: + self._update_version_data(result, info) + if not self.recursive: + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for root, dirs, files in os.walk(self.base_dir): + for fn in files: + if self.should_include(fn, root): + fn = os.path.join(root, fn) + url = urlunparse(('file', '', + pathname2url(os.path.abspath(fn)), + '', '', '')) + info = self.convert_url_to_download_info(url, None) + if info: + result.add(info['name']) + if not self.recursive: + break + return result + + +class JSONLocator(Locator): + """ + This locator uses special extended metadata (not available on PyPI) and is + the basis of performant dependency resolution in distlib. Other locators + require archive downloads before dependencies can be determined! As you + might imagine, that can be slow. + """ + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + raise NotImplementedError('Not available from this locator') + + def _get_project(self, name): + result = {'urls': {}, 'digests': {}} + data = get_project_data(name) + if data: + for info in data.get('files', []): + if info['ptype'] != 'sdist' or info['pyversion'] != 'source': + continue + # We don't store summary in project metadata as it makes + # the data bigger for no benefit during dependency + # resolution + dist = make_dist(data['name'], info['version'], + summary=data.get('summary', + 'Placeholder for summary'), + scheme=self.scheme) + md = dist.metadata + md.source_url = info['url'] + # TODO SHA256 digest + if 'digest' in info and info['digest']: + dist.digest = ('md5', info['digest']) + md.dependencies = info.get('requirements', {}) + dist.exports = info.get('exports', {}) + result[dist.version] = dist + result['urls'].setdefault(dist.version, set()).add(info['url']) + return result + + +class DistPathLocator(Locator): + """ + This locator finds installed distributions in a path. It can be useful for + adding to an :class:`AggregatingLocator`. + """ + def __init__(self, distpath, **kwargs): + """ + Initialise an instance. + + :param distpath: A :class:`DistributionPath` instance to search. + """ + super(DistPathLocator, self).__init__(**kwargs) + assert isinstance(distpath, DistributionPath) + self.distpath = distpath + + def _get_project(self, name): + dist = self.distpath.get_distribution(name) + if dist is None: + result = {'urls': {}, 'digests': {}} + else: + result = { + dist.version: dist, + 'urls': {dist.version: set([dist.source_url])}, + 'digests': {dist.version: set([None])} + } + return result + + +class AggregatingLocator(Locator): + """ + This class allows you to chain and/or merge a list of locators. + """ + def __init__(self, *locators, **kwargs): + """ + Initialise an instance. + + :param locators: The list of locators to search. + :param kwargs: Passed to the superclass constructor, + except for: + * merge - if False (the default), the first successful + search from any of the locators is returned. If True, + the results from all locators are merged (this can be + slow). + """ + self.merge = kwargs.pop('merge', False) + self.locators = locators + super(AggregatingLocator, self).__init__(**kwargs) + + def clear_cache(self): + super(AggregatingLocator, self).clear_cache() + for locator in self.locators: + locator.clear_cache() + + def _set_scheme(self, value): + self._scheme = value + for locator in self.locators: + locator.scheme = value + + scheme = property(Locator.scheme.fget, _set_scheme) + + def _get_project(self, name): + result = {} + for locator in self.locators: + d = locator.get_project(name) + if d: + if self.merge: + files = result.get('urls', {}) + digests = result.get('digests', {}) + # next line could overwrite result['urls'], result['digests'] + result.update(d) + df = result.get('urls') + if files and df: + for k, v in files.items(): + if k in df: + df[k] |= v + else: + df[k] = v + dd = result.get('digests') + if digests and dd: + dd.update(digests) + else: + # See issue #18. If any dists are found and we're looking + # for specific constraints, we only return something if + # a match is found. For example, if a DirectoryLocator + # returns just foo (1.0) while we're looking for + # foo (>= 2.0), we'll pretend there was nothing there so + # that subsequent locators can be queried. Otherwise we + # would just return foo (1.0) which would then lead to a + # failure to find foo (>= 2.0), because other locators + # weren't searched. Note that this only matters when + # merge=False. + if self.matcher is None: + found = True + else: + found = False + for k in d: + if self.matcher.match(k): + found = True + break + if found: + result = d + break + return result + + def get_distribution_names(self): + """ + Return all the distribution names known to this locator. + """ + result = set() + for locator in self.locators: + try: + result |= locator.get_distribution_names() + except NotImplementedError: + pass + return result + + +# We use a legacy scheme simply because most of the dists on PyPI use legacy +# versions which don't conform to PEP 440. +default_locator = AggregatingLocator( + # JSONLocator(), # don't use as PEP 426 is withdrawn + SimpleScrapingLocator('https://pypi.org/simple/', + timeout=3.0), + scheme='legacy') + +locate = default_locator.locate + + +class DependencyFinder(object): + """ + Locate dependencies for distributions. + """ + + def __init__(self, locator=None): + """ + Initialise an instance, using the specified locator + to locate distributions. + """ + self.locator = locator or default_locator + self.scheme = get_scheme(self.locator.scheme) + + def add_distribution(self, dist): + """ + Add a distribution to the finder. This will update internal information + about who provides what. + :param dist: The distribution to add. + """ + logger.debug('adding distribution %s', dist) + name = dist.key + self.dists_by_name[name] = dist + self.dists[(name, dist.version)] = dist + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Add to provided: %s, %s, %s', name, version, dist) + self.provided.setdefault(name, set()).add((version, dist)) + + def remove_distribution(self, dist): + """ + Remove a distribution from the finder. This will update internal + information about who provides what. + :param dist: The distribution to remove. + """ + logger.debug('removing distribution %s', dist) + name = dist.key + del self.dists_by_name[name] + del self.dists[(name, dist.version)] + for p in dist.provides: + name, version = parse_name_and_version(p) + logger.debug('Remove from provided: %s, %s, %s', name, version, dist) + s = self.provided[name] + s.remove((version, dist)) + if not s: + del self.provided[name] + + def get_matcher(self, reqt): + """ + Get a version matcher for a requirement. + :param reqt: The requirement + :type reqt: str + :return: A version matcher (an instance of + :class:`distlib.version.Matcher`). + """ + try: + matcher = self.scheme.matcher(reqt) + except UnsupportedVersionError: # pragma: no cover + # XXX compat-mode if cannot read the version + name = reqt.split()[0] + matcher = self.scheme.matcher(name) + return matcher + + def find_providers(self, reqt): + """ + Find the distributions which can fulfill a requirement. + + :param reqt: The requirement. + :type reqt: str + :return: A set of distribution which can fulfill the requirement. + """ + matcher = self.get_matcher(reqt) + name = matcher.key # case-insensitive + result = set() + provided = self.provided + if name in provided: + for version, provider in provided[name]: + try: + match = matcher.match(version) + except UnsupportedVersionError: + match = False + + if match: + result.add(provider) + break + return result + + def try_to_replace(self, provider, other, problems): + """ + Attempt to replace one provider with another. This is typically used + when resolving dependencies from multiple sources, e.g. A requires + (B >= 1.0) while C requires (B >= 1.1). + + For successful replacement, ``provider`` must meet all the requirements + which ``other`` fulfills. + + :param provider: The provider we are trying to replace with. + :param other: The provider we're trying to replace. + :param problems: If False is returned, this will contain what + problems prevented replacement. This is currently + a tuple of the literal string 'cantreplace', + ``provider``, ``other`` and the set of requirements + that ``provider`` couldn't fulfill. + :return: True if we can replace ``other`` with ``provider``, else + False. + """ + rlist = self.reqts[other] + unmatched = set() + for s in rlist: + matcher = self.get_matcher(s) + if not matcher.match(provider.version): + unmatched.add(s) + if unmatched: + # can't replace other with provider + problems.add(('cantreplace', provider, other, + frozenset(unmatched))) + result = False + else: + # can replace other with provider + self.remove_distribution(other) + del self.reqts[other] + for s in rlist: + self.reqts.setdefault(provider, set()).add(s) + self.add_distribution(provider) + result = True + return result + + def find(self, requirement, meta_extras=None, prereleases=False): + """ + Find a distribution and all distributions it depends on. + + :param requirement: The requirement specifying the distribution to + find, or a Distribution instance. + :param meta_extras: A list of meta extras such as :test:, :build: and + so on. + :param prereleases: If ``True``, allow pre-release versions to be + returned - otherwise, don't return prereleases + unless they're all that's available. + + Return a set of :class:`Distribution` instances and a set of + problems. + + The distributions returned should be such that they have the + :attr:`required` attribute set to ``True`` if they were + from the ``requirement`` passed to ``find()``, and they have the + :attr:`build_time_dependency` attribute set to ``True`` unless they + are post-installation dependencies of the ``requirement``. + + The problems should be a tuple consisting of the string + ``'unsatisfied'`` and the requirement which couldn't be satisfied + by any distribution known to the locator. + """ + + self.provided = {} + self.dists = {} + self.dists_by_name = {} + self.reqts = {} + + meta_extras = set(meta_extras or []) + if ':*:' in meta_extras: + meta_extras.remove(':*:') + # :meta: and :run: are implicitly included + meta_extras |= set([':test:', ':build:', ':dev:']) + + if isinstance(requirement, Distribution): + dist = odist = requirement + logger.debug('passed %s as requirement', odist) + else: + dist = odist = self.locator.locate(requirement, + prereleases=prereleases) + if dist is None: + raise DistlibException('Unable to locate %r' % requirement) + logger.debug('located %s', odist) + dist.requested = True + problems = set() + todo = set([dist]) + install_dists = set([odist]) + while todo: + dist = todo.pop() + name = dist.key # case-insensitive + if name not in self.dists_by_name: + self.add_distribution(dist) + else: + # import pdb; pdb.set_trace() + other = self.dists_by_name[name] + if other != dist: + self.try_to_replace(dist, other, problems) + + ireqts = dist.run_requires | dist.meta_requires + sreqts = dist.build_requires + ereqts = set() + if meta_extras and dist in install_dists: + for key in ('test', 'build', 'dev'): + e = ':%s:' % key + if e in meta_extras: + ereqts |= getattr(dist, '%s_requires' % key) + all_reqts = ireqts | sreqts | ereqts + for r in all_reqts: + providers = self.find_providers(r) + if not providers: + logger.debug('No providers found for %r', r) + provider = self.locator.locate(r, prereleases=prereleases) + # If no provider is found and we didn't consider + # prereleases, consider them now. + if provider is None and not prereleases: + provider = self.locator.locate(r, prereleases=True) + if provider is None: + logger.debug('Cannot satisfy %r', r) + problems.add(('unsatisfied', r)) + else: + n, v = provider.key, provider.version + if (n, v) not in self.dists: + todo.add(provider) + providers.add(provider) + if r in ireqts and dist in install_dists: + install_dists.add(provider) + logger.debug('Adding %s to install_dists', + provider.name_and_version) + for p in providers: + name = p.key + if name not in self.dists_by_name: + self.reqts.setdefault(p, set()).add(r) + else: + other = self.dists_by_name[name] + if other != p: + # see if other can be replaced by p + self.try_to_replace(p, other, problems) + + dists = set(self.dists.values()) + for dist in dists: + dist.build_time_dependency = dist not in install_dists + if dist.build_time_dependency: + logger.debug('%s is a build-time dependency only.', + dist.name_and_version) + logger.debug('find done for %s', odist) + return dists, problems diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py new file mode 100644 index 00000000..420dcf12 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py @@ -0,0 +1,384 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Class representing the list of files in a distribution. + +Equivalent to distutils.filelist, but fixes some problems. +""" +import fnmatch +import logging +import os +import re +import sys + +from . import DistlibException +from .compat import fsdecode +from .util import convert_path + + +__all__ = ['Manifest'] + +logger = logging.getLogger(__name__) + +# a \ followed by some spaces + EOL +_COLLAPSE_PATTERN = re.compile('\\\\w*\n', re.M) +_COMMENTED_LINE = re.compile('#.*?(?=\n)|\n(?=$)', re.M | re.S) + +# +# Due to the different results returned by fnmatch.translate, we need +# to do slightly different processing for Python 2.7 and 3.2 ... this needed +# to be brought in for Python 3.6 onwards. +# +_PYTHON_VERSION = sys.version_info[:2] + + +class Manifest(object): + """ + A list of files built by exploring the filesystem and filtered by applying various + patterns to what we find there. + """ + + def __init__(self, base=None): + """ + Initialise an instance. + + :param base: The base directory to explore under. + """ + self.base = os.path.abspath(os.path.normpath(base or os.getcwd())) + self.prefix = self.base + os.sep + self.allfiles = None + self.files = set() + + # + # Public API + # + + def findall(self): + """Find all files under the base and set ``allfiles`` to the absolute + pathnames of files found. + """ + from stat import S_ISREG, S_ISDIR, S_ISLNK + + self.allfiles = allfiles = [] + root = self.base + stack = [root] + pop = stack.pop + push = stack.append + + while stack: + root = pop() + names = os.listdir(root) + + for name in names: + fullname = os.path.join(root, name) + + # Avoid excess stat calls -- just one will do, thank you! + stat = os.stat(fullname) + mode = stat.st_mode + if S_ISREG(mode): + allfiles.append(fsdecode(fullname)) + elif S_ISDIR(mode) and not S_ISLNK(mode): + push(fullname) + + def add(self, item): + """ + Add a file to the manifest. + + :param item: The pathname to add. This can be relative to the base. + """ + if not item.startswith(self.prefix): + item = os.path.join(self.base, item) + self.files.add(os.path.normpath(item)) + + def add_many(self, items): + """ + Add a list of files to the manifest. + + :param items: The pathnames to add. These can be relative to the base. + """ + for item in items: + self.add(item) + + def sorted(self, wantdirs=False): + """ + Return sorted files in directory order + """ + + def add_dir(dirs, d): + dirs.add(d) + logger.debug('add_dir added %s', d) + if d != self.base: + parent, _ = os.path.split(d) + assert parent not in ('', '/') + add_dir(dirs, parent) + + result = set(self.files) # make a copy! + if wantdirs: + dirs = set() + for f in result: + add_dir(dirs, os.path.dirname(f)) + result |= dirs + return [os.path.join(*path_tuple) for path_tuple in + sorted(os.path.split(path) for path in result)] + + def clear(self): + """Clear all collected files.""" + self.files = set() + self.allfiles = [] + + def process_directive(self, directive): + """ + Process a directive which either adds some files from ``allfiles`` to + ``files``, or removes some files from ``files``. + + :param directive: The directive to process. This should be in a format + compatible with distutils ``MANIFEST.in`` files: + + http://docs.python.org/distutils/sourcedist.html#commands + """ + # Parse the line: split it up, make sure the right number of words + # is there, and return the relevant words. 'action' is always + # defined: it's the first word of the line. Which of the other + # three are defined depends on the action; it'll be either + # patterns, (dir and patterns), or (dirpattern). + action, patterns, thedir, dirpattern = self._parse_directive(directive) + + # OK, now we know that the action is valid and we have the + # right number of words on the line for that action -- so we + # can proceed with minimal error-checking. + if action == 'include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=True): + logger.warning('no files found matching %r', pattern) + + elif action == 'exclude': + for pattern in patterns: + self._exclude_pattern(pattern, anchor=True) + + elif action == 'global-include': + for pattern in patterns: + if not self._include_pattern(pattern, anchor=False): + logger.warning('no files found matching %r ' + 'anywhere in distribution', pattern) + + elif action == 'global-exclude': + for pattern in patterns: + self._exclude_pattern(pattern, anchor=False) + + elif action == 'recursive-include': + for pattern in patterns: + if not self._include_pattern(pattern, prefix=thedir): + logger.warning('no files found matching %r ' + 'under directory %r', pattern, thedir) + + elif action == 'recursive-exclude': + for pattern in patterns: + self._exclude_pattern(pattern, prefix=thedir) + + elif action == 'graft': + if not self._include_pattern(None, prefix=dirpattern): + logger.warning('no directories found matching %r', + dirpattern) + + elif action == 'prune': + if not self._exclude_pattern(None, prefix=dirpattern): + logger.warning('no previously-included directories found ' + 'matching %r', dirpattern) + else: # pragma: no cover + # This should never happen, as it should be caught in + # _parse_template_line + raise DistlibException( + 'invalid action %r' % action) + + # + # Private API + # + + def _parse_directive(self, directive): + """ + Validate a directive. + :param directive: The directive to validate. + :return: A tuple of action, patterns, thedir, dir_patterns + """ + words = directive.split() + if len(words) == 1 and words[0] not in ('include', 'exclude', + 'global-include', + 'global-exclude', + 'recursive-include', + 'recursive-exclude', + 'graft', 'prune'): + # no action given, let's use the default 'include' + words.insert(0, 'include') + + action = words[0] + patterns = thedir = dir_pattern = None + + if action in ('include', 'exclude', + 'global-include', 'global-exclude'): + if len(words) < 2: + raise DistlibException( + '%r expects ...' % action) + + patterns = [convert_path(word) for word in words[1:]] + + elif action in ('recursive-include', 'recursive-exclude'): + if len(words) < 3: + raise DistlibException( + '%r expects

    ...' % action) + + thedir = convert_path(words[1]) + patterns = [convert_path(word) for word in words[2:]] + + elif action in ('graft', 'prune'): + if len(words) != 2: + raise DistlibException( + '%r expects a single ' % action) + + dir_pattern = convert_path(words[1]) + + else: + raise DistlibException('unknown action %r' % action) + + return action, patterns, thedir, dir_pattern + + def _include_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Select strings (presumably filenames) from 'self.files' that + match 'pattern', a Unix-style wildcard (glob) pattern. + + Patterns are not quite the same as implemented by the 'fnmatch' + module: '*' and '?' match non-special characters, where "special" + is platform-dependent: slash on Unix; colon, slash, and backslash on + DOS/Windows; and colon on Mac OS. + + If 'anchor' is true (the default), then the pattern match is more + stringent: "*.py" will match "foo.py" but not "foo/bar.py". If + 'anchor' is false, both of these will match. + + If 'prefix' is supplied, then only filenames starting with 'prefix' + (itself a pattern) and ending with 'pattern', with anything in between + them, will match. 'anchor' is ignored in this case. + + If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and + 'pattern' is assumed to be either a string containing a regex or a + regex object -- no translation is done, the regex is just compiled + and used as-is. + + Selected strings will be added to self.files. + + Return True if files are found. + """ + # XXX docstring lying about what the special chars are? + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + + # delayed loading of allfiles list + if self.allfiles is None: + self.findall() + + for name in self.allfiles: + if pattern_re.search(name): + self.files.add(name) + found = True + return found + + def _exclude_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Remove strings (presumably filenames) from 'files' that match + 'pattern'. + + Other parameters are the same as for 'include_pattern()', above. + The list 'self.files' is modified in place. Return True if files are + found. + + This API is public to allow e.g. exclusion of SCM subdirs, e.g. when + packaging source distributions + """ + found = False + pattern_re = self._translate_pattern(pattern, anchor, prefix, is_regex) + for f in list(self.files): + if pattern_re.search(f): + self.files.remove(f) + found = True + return found + + def _translate_pattern(self, pattern, anchor=True, prefix=None, + is_regex=False): + """Translate a shell-like wildcard pattern to a compiled regular + expression. + + Return the compiled regex. If 'is_regex' true, + then 'pattern' is directly compiled to a regex (if it's a string) + or just returned as-is (assumes it's a regex object). + """ + if is_regex: + if isinstance(pattern, str): + return re.compile(pattern) + else: + return pattern + + if _PYTHON_VERSION > (3, 2): + # ditch start and end characters + start, _, end = self._glob_to_re('_').partition('_') + + if pattern: + pattern_re = self._glob_to_re(pattern) + if _PYTHON_VERSION > (3, 2): + assert pattern_re.startswith(start) and pattern_re.endswith(end) + else: + pattern_re = '' + + base = re.escape(os.path.join(self.base, '')) + if prefix is not None: + # ditch end of pattern character + if _PYTHON_VERSION <= (3, 2): + empty_pattern = self._glob_to_re('') + prefix_re = self._glob_to_re(prefix)[:-len(empty_pattern)] + else: + prefix_re = self._glob_to_re(prefix) + assert prefix_re.startswith(start) and prefix_re.endswith(end) + prefix_re = prefix_re[len(start): len(prefix_re) - len(end)] + sep = os.sep + if os.sep == '\\': + sep = r'\\' + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + sep.join((prefix_re, + '.*' + pattern_re)) + else: + pattern_re = pattern_re[len(start): len(pattern_re) - len(end)] + pattern_re = r'%s%s%s%s.*%s%s' % (start, base, prefix_re, sep, + pattern_re, end) + else: # no prefix -- respect anchor flag + if anchor: + if _PYTHON_VERSION <= (3, 2): + pattern_re = '^' + base + pattern_re + else: + pattern_re = r'%s%s%s' % (start, base, pattern_re[len(start):]) + + return re.compile(pattern_re) + + def _glob_to_re(self, pattern): + """Translate a shell-like glob pattern to a regular expression. + + Return a string containing the regex. Differs from + 'fnmatch.translate()' in that '*' does not match "special characters" + (which are platform-specific). + """ + pattern_re = fnmatch.translate(pattern) + + # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which + # IMHO is wrong -- '?' and '*' aren't supposed to match slash in Unix, + # and by extension they shouldn't match such "special characters" under + # any OS. So change all non-escaped dots in the RE to match any + # character except the special characters (currently: just os.sep). + sep = os.sep + if os.sep == '\\': + # we're using a regex to manipulate a regex, so we need + # to escape the backslash twice + sep = r'\\\\' + escaped = r'\1[^%s]' % sep + pattern_re = re.sub(r'((? y, + '!=': lambda x, y: x != y, + '<': lambda x, y: x < y, + '<=': lambda x, y: x == y or x < y, + '>': lambda x, y: x > y, + '>=': lambda x, y: x == y or x > y, + 'and': lambda x, y: x and y, + 'or': lambda x, y: x or y, + 'in': lambda x, y: x in y, + 'not in': lambda x, y: x not in y, + } + + def evaluate(self, expr, context): + """ + Evaluate a marker expression returned by the :func:`parse_requirement` + function in the specified context. + """ + if isinstance(expr, string_types): + if expr[0] in '\'"': + result = expr[1:-1] + else: + if expr not in context: + raise SyntaxError('unknown variable: %s' % expr) + result = context[expr] + else: + assert isinstance(expr, dict) + op = expr['op'] + if op not in self.operations: + raise NotImplementedError('op not implemented: %s' % op) + elhs = expr['lhs'] + erhs = expr['rhs'] + if _is_literal(expr['lhs']) and _is_literal(expr['rhs']): + raise SyntaxError('invalid comparison: %s %s %s' % + (elhs, op, erhs)) + + lhs = self.evaluate(elhs, context) + rhs = self.evaluate(erhs, context) + if ((_is_version_marker(elhs) or _is_version_marker(erhs)) + and op in ('<', '<=', '>', '>=', '===', '==', '!=', '~=')): + lhs = LV(lhs) + rhs = LV(rhs) + elif _is_version_marker(elhs) and op in ('in', 'not in'): + lhs = LV(lhs) + rhs = _get_versions(rhs) + result = self.operations[op](lhs, rhs) + return result + + +_DIGITS = re.compile(r'\d+\.\d+') + + +def default_context(): + + def format_full_version(info): + version = '%s.%s.%s' % (info.major, info.minor, info.micro) + kind = info.releaselevel + if kind != 'final': + version += kind[0] + str(info.serial) + return version + + if hasattr(sys, 'implementation'): + implementation_version = format_full_version( + sys.implementation.version) + implementation_name = sys.implementation.name + else: + implementation_version = '0' + implementation_name = '' + + ppv = platform.python_version() + m = _DIGITS.match(ppv) + pv = m.group(0) + result = { + 'implementation_name': implementation_name, + 'implementation_version': implementation_version, + 'os_name': os.name, + 'platform_machine': platform.machine(), + 'platform_python_implementation': platform.python_implementation(), + 'platform_release': platform.release(), + 'platform_system': platform.system(), + 'platform_version': platform.version(), + 'platform_in_venv': str(in_venv()), + 'python_full_version': ppv, + 'python_version': pv, + 'sys_platform': sys.platform, + } + return result + + +DEFAULT_CONTEXT = default_context() +del default_context + +evaluator = Evaluator() + + +def interpret(marker, execution_context=None): + """ + Interpret a marker and return a result depending on environment. + + :param marker: The marker to interpret. + :type marker: str + :param execution_context: The context used for name lookup. + :type execution_context: mapping + """ + try: + expr, rest = parse_marker(marker) + except Exception as e: + raise SyntaxError('Unable to interpret marker syntax: %s: %s' % + (marker, e)) + if rest and rest[0] != '#': + raise SyntaxError('unexpected trailing data in marker: %s: %s' % + (marker, rest)) + context = dict(DEFAULT_CONTEXT) + if execution_context: + context.update(execution_context) + return evaluator.evaluate(expr, context) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py new file mode 100644 index 00000000..7189aeef --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py @@ -0,0 +1,1068 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +"""Implementation of the Metadata for Python packages PEPs. + +Supports all metadata formats (1.0, 1.1, 1.2, 1.3/2.1 and 2.2). +""" +from __future__ import unicode_literals + +import codecs +from email import message_from_file +import json +import logging +import re + + +from . import DistlibException, __version__ +from .compat import StringIO, string_types, text_type +from .markers import interpret +from .util import extract_by_key, get_extras +from .version import get_scheme, PEP440_VERSION_RE + +logger = logging.getLogger(__name__) + + +class MetadataMissingError(DistlibException): + """A required metadata is missing""" + + +class MetadataConflictError(DistlibException): + """Attempt to read or write metadata fields that are conflictual.""" + + +class MetadataUnrecognizedVersionError(DistlibException): + """Unknown metadata version number.""" + + +class MetadataInvalidError(DistlibException): + """A metadata value is invalid""" + +# public API of this module +__all__ = ['Metadata', 'PKG_INFO_ENCODING', 'PKG_INFO_PREFERRED_VERSION'] + +# Encoding used for the PKG-INFO files +PKG_INFO_ENCODING = 'utf-8' + +# preferred version. Hopefully will be changed +# to 1.2 once PEP 345 is supported everywhere +PKG_INFO_PREFERRED_VERSION = '1.1' + +_LINE_PREFIX_1_2 = re.compile('\n \\|') +_LINE_PREFIX_PRE_1_2 = re.compile('\n ') +_241_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'License') + +_314_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'License', 'Classifier', 'Download-URL', 'Obsoletes', + 'Provides', 'Requires') + +_314_MARKERS = ('Obsoletes', 'Provides', 'Requires', 'Classifier', + 'Download-URL') + +_345_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', + 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External') + +_345_MARKERS = ('Provides-Dist', 'Requires-Dist', 'Requires-Python', + 'Obsoletes-Dist', 'Requires-External', 'Maintainer', + 'Maintainer-email', 'Project-URL') + +_426_FIELDS = ('Metadata-Version', 'Name', 'Version', 'Platform', + 'Supported-Platform', 'Summary', 'Description', + 'Keywords', 'Home-page', 'Author', 'Author-email', + 'Maintainer', 'Maintainer-email', 'License', + 'Classifier', 'Download-URL', 'Obsoletes-Dist', + 'Project-URL', 'Provides-Dist', 'Requires-Dist', + 'Requires-Python', 'Requires-External', 'Private-Version', + 'Obsoleted-By', 'Setup-Requires-Dist', 'Extension', + 'Provides-Extra') + +_426_MARKERS = ('Private-Version', 'Provides-Extra', 'Obsoleted-By', + 'Setup-Requires-Dist', 'Extension') + +# See issue #106: Sometimes 'Requires' and 'Provides' occur wrongly in +# the metadata. Include them in the tuple literal below to allow them +# (for now). +# Ditto for Obsoletes - see issue #140. +_566_FIELDS = _426_FIELDS + ('Description-Content-Type', + 'Requires', 'Provides', 'Obsoletes') + +_566_MARKERS = ('Description-Content-Type',) + +_643_MARKERS = ('Dynamic', 'License-File') + +_643_FIELDS = _566_FIELDS + _643_MARKERS + +_ALL_FIELDS = set() +_ALL_FIELDS.update(_241_FIELDS) +_ALL_FIELDS.update(_314_FIELDS) +_ALL_FIELDS.update(_345_FIELDS) +_ALL_FIELDS.update(_426_FIELDS) +_ALL_FIELDS.update(_566_FIELDS) +_ALL_FIELDS.update(_643_FIELDS) + +EXTRA_RE = re.compile(r'''extra\s*==\s*("([^"]+)"|'([^']+)')''') + + +def _version2fieldlist(version): + if version == '1.0': + return _241_FIELDS + elif version == '1.1': + return _314_FIELDS + elif version == '1.2': + return _345_FIELDS + elif version in ('1.3', '2.1'): + # avoid adding field names if already there + return _345_FIELDS + tuple(f for f in _566_FIELDS if f not in _345_FIELDS) + elif version == '2.0': + raise ValueError('Metadata 2.0 is withdrawn and not supported') + # return _426_FIELDS + elif version == '2.2': + return _643_FIELDS + raise MetadataUnrecognizedVersionError(version) + + +def _best_version(fields): + """Detect the best version depending on the fields used.""" + def _has_marker(keys, markers): + return any(marker in keys for marker in markers) + + keys = [key for key, value in fields.items() if value not in ([], 'UNKNOWN', None)] + possible_versions = ['1.0', '1.1', '1.2', '1.3', '2.1', '2.2'] # 2.0 removed + + # first let's try to see if a field is not part of one of the version + for key in keys: + if key not in _241_FIELDS and '1.0' in possible_versions: + possible_versions.remove('1.0') + logger.debug('Removed 1.0 due to %s', key) + if key not in _314_FIELDS and '1.1' in possible_versions: + possible_versions.remove('1.1') + logger.debug('Removed 1.1 due to %s', key) + if key not in _345_FIELDS and '1.2' in possible_versions: + possible_versions.remove('1.2') + logger.debug('Removed 1.2 due to %s', key) + if key not in _566_FIELDS and '1.3' in possible_versions: + possible_versions.remove('1.3') + logger.debug('Removed 1.3 due to %s', key) + if key not in _566_FIELDS and '2.1' in possible_versions: + if key != 'Description': # In 2.1, description allowed after headers + possible_versions.remove('2.1') + logger.debug('Removed 2.1 due to %s', key) + if key not in _643_FIELDS and '2.2' in possible_versions: + possible_versions.remove('2.2') + logger.debug('Removed 2.2 due to %s', key) + # if key not in _426_FIELDS and '2.0' in possible_versions: + # possible_versions.remove('2.0') + # logger.debug('Removed 2.0 due to %s', key) + + # possible_version contains qualified versions + if len(possible_versions) == 1: + return possible_versions[0] # found ! + elif len(possible_versions) == 0: + logger.debug('Out of options - unknown metadata set: %s', fields) + raise MetadataConflictError('Unknown metadata set') + + # let's see if one unique marker is found + is_1_1 = '1.1' in possible_versions and _has_marker(keys, _314_MARKERS) + is_1_2 = '1.2' in possible_versions and _has_marker(keys, _345_MARKERS) + is_2_1 = '2.1' in possible_versions and _has_marker(keys, _566_MARKERS) + # is_2_0 = '2.0' in possible_versions and _has_marker(keys, _426_MARKERS) + is_2_2 = '2.2' in possible_versions and _has_marker(keys, _643_MARKERS) + if int(is_1_1) + int(is_1_2) + int(is_2_1) + int(is_2_2) > 1: + raise MetadataConflictError('You used incompatible 1.1/1.2/2.1/2.2 fields') + + # we have the choice, 1.0, or 1.2, 2.1 or 2.2 + # - 1.0 has a broken Summary field but works with all tools + # - 1.1 is to avoid + # - 1.2 fixes Summary but has little adoption + # - 2.1 adds more features + # - 2.2 is the latest + if not is_1_1 and not is_1_2 and not is_2_1 and not is_2_2: + # we couldn't find any specific marker + if PKG_INFO_PREFERRED_VERSION in possible_versions: + return PKG_INFO_PREFERRED_VERSION + if is_1_1: + return '1.1' + if is_1_2: + return '1.2' + if is_2_1: + return '2.1' + # if is_2_2: + # return '2.2' + + return '2.2' + +# This follows the rules about transforming keys as described in +# https://www.python.org/dev/peps/pep-0566/#id17 +_ATTR2FIELD = { + name.lower().replace("-", "_"): name for name in _ALL_FIELDS +} +_FIELD2ATTR = {field: attr for attr, field in _ATTR2FIELD.items()} + +_PREDICATE_FIELDS = ('Requires-Dist', 'Obsoletes-Dist', 'Provides-Dist') +_VERSIONS_FIELDS = ('Requires-Python',) +_VERSION_FIELDS = ('Version',) +_LISTFIELDS = ('Platform', 'Classifier', 'Obsoletes', + 'Requires', 'Provides', 'Obsoletes-Dist', + 'Provides-Dist', 'Requires-Dist', 'Requires-External', + 'Project-URL', 'Supported-Platform', 'Setup-Requires-Dist', + 'Provides-Extra', 'Extension', 'License-File') +_LISTTUPLEFIELDS = ('Project-URL',) + +_ELEMENTSFIELD = ('Keywords',) + +_UNICODEFIELDS = ('Author', 'Maintainer', 'Summary', 'Description') + +_MISSING = object() + +_FILESAFE = re.compile('[^A-Za-z0-9.]+') + + +def _get_name_and_version(name, version, for_filename=False): + """Return the distribution name with version. + + If for_filename is true, return a filename-escaped form.""" + if for_filename: + # For both name and version any runs of non-alphanumeric or '.' + # characters are replaced with a single '-'. Additionally any + # spaces in the version string become '.' + name = _FILESAFE.sub('-', name) + version = _FILESAFE.sub('-', version.replace(' ', '.')) + return '%s-%s' % (name, version) + + +class LegacyMetadata(object): + """The legacy metadata of a release. + + Supports versions 1.0, 1.1, 1.2, 2.0 and 1.3/2.1 (auto-detected). You can + instantiate the class with one of these arguments (or none): + - *path*, the path to a metadata file + - *fileobj* give a file-like object with metadata as content + - *mapping* is a dict-like object + - *scheme* is a version scheme name + """ + # TODO document the mapping API and UNKNOWN default key + + def __init__(self, path=None, fileobj=None, mapping=None, + scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._fields = {} + self.requires_files = [] + self._dependencies = None + self.scheme = scheme + if path is not None: + self.read(path) + elif fileobj is not None: + self.read_file(fileobj) + elif mapping is not None: + self.update(mapping) + self.set_metadata_version() + + def set_metadata_version(self): + self._fields['Metadata-Version'] = _best_version(self._fields) + + def _write_field(self, fileobj, name, value): + fileobj.write('%s: %s\n' % (name, value)) + + def __getitem__(self, name): + return self.get(name) + + def __setitem__(self, name, value): + return self.set(name, value) + + def __delitem__(self, name): + field_name = self._convert_name(name) + try: + del self._fields[field_name] + except KeyError: + raise KeyError(name) + + def __contains__(self, name): + return (name in self._fields or + self._convert_name(name) in self._fields) + + def _convert_name(self, name): + if name in _ALL_FIELDS: + return name + name = name.replace('-', '_').lower() + return _ATTR2FIELD.get(name, name) + + def _default_value(self, name): + if name in _LISTFIELDS or name in _ELEMENTSFIELD: + return [] + return 'UNKNOWN' + + def _remove_line_prefix(self, value): + if self.metadata_version in ('1.0', '1.1'): + return _LINE_PREFIX_PRE_1_2.sub('\n', value) + else: + return _LINE_PREFIX_1_2.sub('\n', value) + + def __getattr__(self, name): + if name in _ATTR2FIELD: + return self[name] + raise AttributeError(name) + + # + # Public API + # + +# dependencies = property(_get_dependencies, _set_dependencies) + + def get_fullname(self, filesafe=False): + """Return the distribution name with version. + + If filesafe is true, return a filename-escaped form.""" + return _get_name_and_version(self['Name'], self['Version'], filesafe) + + def is_field(self, name): + """return True if name is a valid metadata key""" + name = self._convert_name(name) + return name in _ALL_FIELDS + + def is_multi_field(self, name): + name = self._convert_name(name) + return name in _LISTFIELDS + + def read(self, filepath): + """Read the metadata values from a file path.""" + fp = codecs.open(filepath, 'r', encoding='utf-8') + try: + self.read_file(fp) + finally: + fp.close() + + def read_file(self, fileob): + """Read the metadata values from a file object.""" + msg = message_from_file(fileob) + self._fields['Metadata-Version'] = msg['metadata-version'] + + # When reading, get all the fields we can + for field in _ALL_FIELDS: + if field not in msg: + continue + if field in _LISTFIELDS: + # we can have multiple lines + values = msg.get_all(field) + if field in _LISTTUPLEFIELDS and values is not None: + values = [tuple(value.split(',')) for value in values] + self.set(field, values) + else: + # single line + value = msg[field] + if value is not None and value != 'UNKNOWN': + self.set(field, value) + + # PEP 566 specifies that the body be used for the description, if + # available + body = msg.get_payload() + self["Description"] = body if body else self["Description"] + # logger.debug('Attempting to set metadata for %s', self) + # self.set_metadata_version() + + def write(self, filepath, skip_unknown=False): + """Write the metadata fields to filepath.""" + fp = codecs.open(filepath, 'w', encoding='utf-8') + try: + self.write_file(fp, skip_unknown) + finally: + fp.close() + + def write_file(self, fileobject, skip_unknown=False): + """Write the PKG-INFO format data to a file object.""" + self.set_metadata_version() + + for field in _version2fieldlist(self['Metadata-Version']): + values = self.get(field) + if skip_unknown and values in ('UNKNOWN', [], ['UNKNOWN']): + continue + if field in _ELEMENTSFIELD: + self._write_field(fileobject, field, ','.join(values)) + continue + if field not in _LISTFIELDS: + if field == 'Description': + if self.metadata_version in ('1.0', '1.1'): + values = values.replace('\n', '\n ') + else: + values = values.replace('\n', '\n |') + values = [values] + + if field in _LISTTUPLEFIELDS: + values = [','.join(value) for value in values] + + for value in values: + self._write_field(fileobject, field, value) + + def update(self, other=None, **kwargs): + """Set metadata values from the given iterable `other` and kwargs. + + Behavior is like `dict.update`: If `other` has a ``keys`` method, + they are looped over and ``self[key]`` is assigned ``other[key]``. + Else, ``other`` is an iterable of ``(key, value)`` iterables. + + Keys that don't match a metadata field or that have an empty value are + dropped. + """ + def _set(key, value): + if key in _ATTR2FIELD and value: + self.set(self._convert_name(key), value) + + if not other: + # other is None or empty container + pass + elif hasattr(other, 'keys'): + for k in other.keys(): + _set(k, other[k]) + else: + for k, v in other: + _set(k, v) + + if kwargs: + for k, v in kwargs.items(): + _set(k, v) + + def set(self, name, value): + """Control then set a metadata field.""" + name = self._convert_name(name) + + if ((name in _ELEMENTSFIELD or name == 'Platform') and + not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [v.strip() for v in value.split(',')] + else: + value = [] + elif (name in _LISTFIELDS and + not isinstance(value, (list, tuple))): + if isinstance(value, string_types): + value = [value] + else: + value = [] + + if logger.isEnabledFor(logging.WARNING): + project_name = self['Name'] + + scheme = get_scheme(self.scheme) + if name in _PREDICATE_FIELDS and value is not None: + for v in value: + # check that the values are valid + if not scheme.is_valid_matcher(v.split(';')[0]): + logger.warning( + "'%s': '%s' is not valid (field '%s')", + project_name, v, name) + # FIXME this rejects UNKNOWN, is that right? + elif name in _VERSIONS_FIELDS and value is not None: + if not scheme.is_valid_constraint_list(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", + project_name, value, name) + elif name in _VERSION_FIELDS and value is not None: + if not scheme.is_valid_version(value): + logger.warning("'%s': '%s' is not a valid version (field '%s')", + project_name, value, name) + + if name in _UNICODEFIELDS: + if name == 'Description': + value = self._remove_line_prefix(value) + + self._fields[name] = value + + def get(self, name, default=_MISSING): + """Get a metadata field.""" + name = self._convert_name(name) + if name not in self._fields: + if default is _MISSING: + default = self._default_value(name) + return default + if name in _UNICODEFIELDS: + value = self._fields[name] + return value + elif name in _LISTFIELDS: + value = self._fields[name] + if value is None: + return [] + res = [] + for val in value: + if name not in _LISTTUPLEFIELDS: + res.append(val) + else: + # That's for Project-URL + res.append((val[0], val[1])) + return res + + elif name in _ELEMENTSFIELD: + value = self._fields[name] + if isinstance(value, string_types): + return value.split(',') + return self._fields[name] + + def check(self, strict=False): + """Check if the metadata is compliant. If strict is True then raise if + no Name or Version are provided""" + self.set_metadata_version() + + # XXX should check the versions (if the file was loaded) + missing, warnings = [], [] + + for attr in ('Name', 'Version'): # required by PEP 345 + if attr not in self: + missing.append(attr) + + if strict and missing != []: + msg = 'missing required metadata: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + + for attr in ('Home-page', 'Author'): + if attr not in self: + missing.append(attr) + + # checking metadata 1.2 (XXX needs to check 1.1, 1.0) + if self['Metadata-Version'] != '1.2': + return missing, warnings + + scheme = get_scheme(self.scheme) + + def are_valid_constraints(value): + for v in value: + if not scheme.is_valid_matcher(v.split(';')[0]): + return False + return True + + for fields, controller in ((_PREDICATE_FIELDS, are_valid_constraints), + (_VERSIONS_FIELDS, + scheme.is_valid_constraint_list), + (_VERSION_FIELDS, + scheme.is_valid_version)): + for field in fields: + value = self.get(field, None) + if value is not None and not controller(value): + warnings.append("Wrong value for '%s': %s" % (field, value)) + + return missing, warnings + + def todict(self, skip_missing=False): + """Return fields as a dict. + + Field names will be converted to use the underscore-lowercase style + instead of hyphen-mixed case (i.e. home_page instead of Home-page). + This is as per https://www.python.org/dev/peps/pep-0566/#id17. + """ + self.set_metadata_version() + + fields = _version2fieldlist(self['Metadata-Version']) + + data = {} + + for field_name in fields: + if not skip_missing or field_name in self._fields: + key = _FIELD2ATTR[field_name] + if key != 'project_url': + data[key] = self[field_name] + else: + data[key] = [','.join(u) for u in self[field_name]] + + return data + + def add_requirements(self, requirements): + if self['Metadata-Version'] == '1.1': + # we can't have 1.1 metadata *and* Setuptools requires + for field in ('Obsoletes', 'Requires', 'Provides'): + if field in self: + del self[field] + self['Requires-Dist'] += requirements + + # Mapping API + # TODO could add iter* variants + + def keys(self): + return list(_version2fieldlist(self['Metadata-Version'])) + + def __iter__(self): + for key in self.keys(): + yield key + + def values(self): + return [self[key] for key in self.keys()] + + def items(self): + return [(key, self[key]) for key in self.keys()] + + def __repr__(self): + return '<%s %s %s>' % (self.__class__.__name__, self.name, + self.version) + + +METADATA_FILENAME = 'pydist.json' +WHEEL_METADATA_FILENAME = 'metadata.json' +LEGACY_METADATA_FILENAME = 'METADATA' + + +class Metadata(object): + """ + The metadata of a release. This implementation uses 2.1 + metadata where possible. If not possible, it wraps a LegacyMetadata + instance which handles the key-value metadata format. + """ + + METADATA_VERSION_MATCHER = re.compile(r'^\d+(\.\d+)*$') + + NAME_MATCHER = re.compile('^[0-9A-Z]([0-9A-Z_.-]*[0-9A-Z])?$', re.I) + + FIELDNAME_MATCHER = re.compile('^[A-Z]([0-9A-Z-]*[0-9A-Z])?$', re.I) + + VERSION_MATCHER = PEP440_VERSION_RE + + SUMMARY_MATCHER = re.compile('.{1,2047}') + + METADATA_VERSION = '2.0' + + GENERATOR = 'distlib (%s)' % __version__ + + MANDATORY_KEYS = { + 'name': (), + 'version': (), + 'summary': ('legacy',), + } + + INDEX_KEYS = ('name version license summary description author ' + 'author_email keywords platform home_page classifiers ' + 'download_url') + + DEPENDENCY_KEYS = ('extras run_requires test_requires build_requires ' + 'dev_requires provides meta_requires obsoleted_by ' + 'supports_environments') + + SYNTAX_VALIDATORS = { + 'metadata_version': (METADATA_VERSION_MATCHER, ()), + 'name': (NAME_MATCHER, ('legacy',)), + 'version': (VERSION_MATCHER, ('legacy',)), + 'summary': (SUMMARY_MATCHER, ('legacy',)), + 'dynamic': (FIELDNAME_MATCHER, ('legacy',)), + } + + __slots__ = ('_legacy', '_data', 'scheme') + + def __init__(self, path=None, fileobj=None, mapping=None, + scheme='default'): + if [path, fileobj, mapping].count(None) < 2: + raise TypeError('path, fileobj and mapping are exclusive') + self._legacy = None + self._data = None + self.scheme = scheme + #import pdb; pdb.set_trace() + if mapping is not None: + try: + self._validate_mapping(mapping, scheme) + self._data = mapping + except MetadataUnrecognizedVersionError: + self._legacy = LegacyMetadata(mapping=mapping, scheme=scheme) + self.validate() + else: + data = None + if path: + with open(path, 'rb') as f: + data = f.read() + elif fileobj: + data = fileobj.read() + if data is None: + # Initialised with no args - to be added + self._data = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + else: + if not isinstance(data, text_type): + data = data.decode('utf-8') + try: + self._data = json.loads(data) + self._validate_mapping(self._data, scheme) + except ValueError: + # Note: MetadataUnrecognizedVersionError does not + # inherit from ValueError (it's a DistlibException, + # which should not inherit from ValueError). + # The ValueError comes from the json.load - if that + # succeeds and we get a validation error, we want + # that to propagate + self._legacy = LegacyMetadata(fileobj=StringIO(data), + scheme=scheme) + self.validate() + + common_keys = set(('name', 'version', 'license', 'keywords', 'summary')) + + none_list = (None, list) + none_dict = (None, dict) + + mapped_keys = { + 'run_requires': ('Requires-Dist', list), + 'build_requires': ('Setup-Requires-Dist', list), + 'dev_requires': none_list, + 'test_requires': none_list, + 'meta_requires': none_list, + 'extras': ('Provides-Extra', list), + 'modules': none_list, + 'namespaces': none_list, + 'exports': none_dict, + 'commands': none_dict, + 'classifiers': ('Classifier', list), + 'source_url': ('Download-URL', None), + 'metadata_version': ('Metadata-Version', None), + } + + del none_list, none_dict + + def __getattribute__(self, key): + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, maker = mapped[key] + if self._legacy: + if lk is None: + result = None if maker is None else maker() + else: + result = self._legacy.get(lk) + else: + value = None if maker is None else maker() + if key not in ('commands', 'exports', 'modules', 'namespaces', + 'classifiers'): + result = self._data.get(key, value) + else: + # special cases for PEP 459 + sentinel = object() + result = sentinel + d = self._data.get('extensions') + if d: + if key == 'commands': + result = d.get('python.commands', value) + elif key == 'classifiers': + d = d.get('python.details') + if d: + result = d.get(key, value) + else: + d = d.get('python.exports') + if not d: + d = self._data.get('python.exports') + if d: + result = d.get(key, value) + if result is sentinel: + result = value + elif key not in common: + result = object.__getattribute__(self, key) + elif self._legacy: + result = self._legacy.get(key) + else: + result = self._data.get(key) + return result + + def _validate_value(self, key, value, scheme=None): + if key in self.SYNTAX_VALIDATORS: + pattern, exclusions = self.SYNTAX_VALIDATORS[key] + if (scheme or self.scheme) not in exclusions: + m = pattern.match(value) + if not m: + raise MetadataInvalidError("'%s' is an invalid value for " + "the '%s' property" % (value, + key)) + + def __setattr__(self, key, value): + self._validate_value(key, value) + common = object.__getattribute__(self, 'common_keys') + mapped = object.__getattribute__(self, 'mapped_keys') + if key in mapped: + lk, _ = mapped[key] + if self._legacy: + if lk is None: + raise NotImplementedError + self._legacy[lk] = value + elif key not in ('commands', 'exports', 'modules', 'namespaces', + 'classifiers'): + self._data[key] = value + else: + # special cases for PEP 459 + d = self._data.setdefault('extensions', {}) + if key == 'commands': + d['python.commands'] = value + elif key == 'classifiers': + d = d.setdefault('python.details', {}) + d[key] = value + else: + d = d.setdefault('python.exports', {}) + d[key] = value + elif key not in common: + object.__setattr__(self, key, value) + else: + if key == 'keywords': + if isinstance(value, string_types): + value = value.strip() + if value: + value = value.split() + else: + value = [] + if self._legacy: + self._legacy[key] = value + else: + self._data[key] = value + + @property + def name_and_version(self): + return _get_name_and_version(self.name, self.version, True) + + @property + def provides(self): + if self._legacy: + result = self._legacy['Provides-Dist'] + else: + result = self._data.setdefault('provides', []) + s = '%s (%s)' % (self.name, self.version) + if s not in result: + result.append(s) + return result + + @provides.setter + def provides(self, value): + if self._legacy: + self._legacy['Provides-Dist'] = value + else: + self._data['provides'] = value + + def get_requirements(self, reqts, extras=None, env=None): + """ + Base method to get dependencies, given a set of extras + to satisfy and an optional environment context. + :param reqts: A list of sometimes-wanted dependencies, + perhaps dependent on extras and environment. + :param extras: A list of optional components being requested. + :param env: An optional environment for marker evaluation. + """ + if self._legacy: + result = reqts + else: + result = [] + extras = get_extras(extras or [], self.extras) + for d in reqts: + if 'extra' not in d and 'environment' not in d: + # unconditional + include = True + else: + if 'extra' not in d: + # Not extra-dependent - only environment-dependent + include = True + else: + include = d.get('extra') in extras + if include: + # Not excluded because of extras, check environment + marker = d.get('environment') + if marker: + include = interpret(marker, env) + if include: + result.extend(d['requires']) + for key in ('build', 'dev', 'test'): + e = ':%s:' % key + if e in extras: + extras.remove(e) + # A recursive call, but it should terminate since 'test' + # has been removed from the extras + reqts = self._data.get('%s_requires' % key, []) + result.extend(self.get_requirements(reqts, extras=extras, + env=env)) + return result + + @property + def dictionary(self): + if self._legacy: + return self._from_legacy() + return self._data + + @property + def dependencies(self): + if self._legacy: + raise NotImplementedError + else: + return extract_by_key(self._data, self.DEPENDENCY_KEYS) + + @dependencies.setter + def dependencies(self, value): + if self._legacy: + raise NotImplementedError + else: + self._data.update(value) + + def _validate_mapping(self, mapping, scheme): + if mapping.get('metadata_version') != self.METADATA_VERSION: + raise MetadataUnrecognizedVersionError() + missing = [] + for key, exclusions in self.MANDATORY_KEYS.items(): + if key not in mapping: + if scheme not in exclusions: + missing.append(key) + if missing: + msg = 'Missing metadata items: %s' % ', '.join(missing) + raise MetadataMissingError(msg) + for k, v in mapping.items(): + self._validate_value(k, v, scheme) + + def validate(self): + if self._legacy: + missing, warnings = self._legacy.check(True) + if missing or warnings: + logger.warning('Metadata: missing: %s, warnings: %s', + missing, warnings) + else: + self._validate_mapping(self._data, self.scheme) + + def todict(self): + if self._legacy: + return self._legacy.todict(True) + else: + result = extract_by_key(self._data, self.INDEX_KEYS) + return result + + def _from_legacy(self): + assert self._legacy and not self._data + result = { + 'metadata_version': self.METADATA_VERSION, + 'generator': self.GENERATOR, + } + lmd = self._legacy.todict(True) # skip missing ones + for k in ('name', 'version', 'license', 'summary', 'description', + 'classifier'): + if k in lmd: + if k == 'classifier': + nk = 'classifiers' + else: + nk = k + result[nk] = lmd[k] + kw = lmd.get('Keywords', []) + if kw == ['']: + kw = [] + result['keywords'] = kw + keys = (('requires_dist', 'run_requires'), + ('setup_requires_dist', 'build_requires')) + for ok, nk in keys: + if ok in lmd and lmd[ok]: + result[nk] = [{'requires': lmd[ok]}] + result['provides'] = self.provides + author = {} + maintainer = {} + return result + + LEGACY_MAPPING = { + 'name': 'Name', + 'version': 'Version', + ('extensions', 'python.details', 'license'): 'License', + 'summary': 'Summary', + 'description': 'Description', + ('extensions', 'python.project', 'project_urls', 'Home'): 'Home-page', + ('extensions', 'python.project', 'contacts', 0, 'name'): 'Author', + ('extensions', 'python.project', 'contacts', 0, 'email'): 'Author-email', + 'source_url': 'Download-URL', + ('extensions', 'python.details', 'classifiers'): 'Classifier', + } + + def _to_legacy(self): + def process_entries(entries): + reqts = set() + for e in entries: + extra = e.get('extra') + env = e.get('environment') + rlist = e['requires'] + for r in rlist: + if not env and not extra: + reqts.add(r) + else: + marker = '' + if extra: + marker = 'extra == "%s"' % extra + if env: + if marker: + marker = '(%s) and %s' % (env, marker) + else: + marker = env + reqts.add(';'.join((r, marker))) + return reqts + + assert self._data and not self._legacy + result = LegacyMetadata() + nmd = self._data + # import pdb; pdb.set_trace() + for nk, ok in self.LEGACY_MAPPING.items(): + if not isinstance(nk, tuple): + if nk in nmd: + result[ok] = nmd[nk] + else: + d = nmd + found = True + for k in nk: + try: + d = d[k] + except (KeyError, IndexError): + found = False + break + if found: + result[ok] = d + r1 = process_entries(self.run_requires + self.meta_requires) + r2 = process_entries(self.build_requires + self.dev_requires) + if self.extras: + result['Provides-Extra'] = sorted(self.extras) + result['Requires-Dist'] = sorted(r1) + result['Setup-Requires-Dist'] = sorted(r2) + # TODO: any other fields wanted + return result + + def write(self, path=None, fileobj=None, legacy=False, skip_unknown=True): + if [path, fileobj].count(None) != 1: + raise ValueError('Exactly one of path and fileobj is needed') + self.validate() + if legacy: + if self._legacy: + legacy_md = self._legacy + else: + legacy_md = self._to_legacy() + if path: + legacy_md.write(path, skip_unknown=skip_unknown) + else: + legacy_md.write_file(fileobj, skip_unknown=skip_unknown) + else: + if self._legacy: + d = self._from_legacy() + else: + d = self._data + if fileobj: + json.dump(d, fileobj, ensure_ascii=True, indent=2, + sort_keys=True) + else: + with codecs.open(path, 'w', 'utf-8') as f: + json.dump(d, f, ensure_ascii=True, indent=2, + sort_keys=True) + + def add_requirements(self, requirements): + if self._legacy: + self._legacy.add_requirements(requirements) + else: + run_requires = self._data.setdefault('run_requires', []) + always = None + for entry in run_requires: + if 'environment' not in entry and 'extra' not in entry: + always = entry + break + if always is None: + always = { 'requires': requirements } + run_requires.insert(0, always) + else: + rset = set(always['requires']) | set(requirements) + always['requires'] = sorted(rset) + + def __repr__(self): + name = self.name or '(no name)' + version = self.version or 'no version' + return '<%s %s %s (%s)>' % (self.__class__.__name__, + self.metadata_version, name, version) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py new file mode 100644 index 00000000..fef52aa1 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py @@ -0,0 +1,358 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2017 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import bisect +import io +import logging +import os +import pkgutil +import sys +import types +import zipimport + +from . import DistlibException +from .util import cached_property, get_cache_base, Cache + +logger = logging.getLogger(__name__) + + +cache = None # created when needed + + +class ResourceCache(Cache): + def __init__(self, base=None): + if base is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('resource-cache')) + super(ResourceCache, self).__init__(base) + + def is_stale(self, resource, path): + """ + Is the cache stale for the given resource? + + :param resource: The :class:`Resource` being cached. + :param path: The path of the resource in the cache. + :return: True if the cache is stale. + """ + # Cache invalidation is a hard problem :-) + return True + + def get(self, resource): + """ + Get a resource into the cache, + + :param resource: A :class:`Resource` instance. + :return: The pathname of the resource in the cache. + """ + prefix, path = resource.finder.get_cache_info(resource) + if prefix is None: + result = path + else: + result = os.path.join(self.base, self.prefix_to_dir(prefix), path) + dirname = os.path.dirname(result) + if not os.path.isdir(dirname): + os.makedirs(dirname) + if not os.path.exists(result): + stale = True + else: + stale = self.is_stale(resource, path) + if stale: + # write the bytes of the resource to the cache location + with open(result, 'wb') as f: + f.write(resource.bytes) + return result + + +class ResourceBase(object): + def __init__(self, finder, name): + self.finder = finder + self.name = name + + +class Resource(ResourceBase): + """ + A class representing an in-package resource, such as a data file. This is + not normally instantiated by user code, but rather by a + :class:`ResourceFinder` which manages the resource. + """ + is_container = False # Backwards compatibility + + def as_stream(self): + """ + Get the resource as a stream. + + This is not a property to make it obvious that it returns a new stream + each time. + """ + return self.finder.get_stream(self) + + @cached_property + def file_path(self): + global cache + if cache is None: + cache = ResourceCache() + return cache.get(self) + + @cached_property + def bytes(self): + return self.finder.get_bytes(self) + + @cached_property + def size(self): + return self.finder.get_size(self) + + +class ResourceContainer(ResourceBase): + is_container = True # Backwards compatibility + + @cached_property + def resources(self): + return self.finder.get_resources(self) + + +class ResourceFinder(object): + """ + Resource finder for file system resources. + """ + + if sys.platform.startswith('java'): + skipped_extensions = ('.pyc', '.pyo', '.class') + else: + skipped_extensions = ('.pyc', '.pyo') + + def __init__(self, module): + self.module = module + self.loader = getattr(module, '__loader__', None) + self.base = os.path.dirname(getattr(module, '__file__', '')) + + def _adjust_path(self, path): + return os.path.realpath(path) + + def _make_path(self, resource_name): + # Issue #50: need to preserve type of path on Python 2.x + # like os.path._get_sep + if isinstance(resource_name, bytes): # should only happen on 2.x + sep = b'/' + else: + sep = '/' + parts = resource_name.split(sep) + parts.insert(0, self.base) + result = os.path.join(*parts) + return self._adjust_path(result) + + def _find(self, path): + return os.path.exists(path) + + def get_cache_info(self, resource): + return None, resource.path + + def find(self, resource_name): + path = self._make_path(resource_name) + if not self._find(path): + result = None + else: + if self._is_directory(path): + result = ResourceContainer(self, resource_name) + else: + result = Resource(self, resource_name) + result.path = path + return result + + def get_stream(self, resource): + return open(resource.path, 'rb') + + def get_bytes(self, resource): + with open(resource.path, 'rb') as f: + return f.read() + + def get_size(self, resource): + return os.path.getsize(resource.path) + + def get_resources(self, resource): + def allowed(f): + return (f != '__pycache__' and not + f.endswith(self.skipped_extensions)) + return set([f for f in os.listdir(resource.path) if allowed(f)]) + + def is_container(self, resource): + return self._is_directory(resource.path) + + _is_directory = staticmethod(os.path.isdir) + + def iterator(self, resource_name): + resource = self.find(resource_name) + if resource is not None: + todo = [resource] + while todo: + resource = todo.pop(0) + yield resource + if resource.is_container: + rname = resource.name + for name in resource.resources: + if not rname: + new_name = name + else: + new_name = '/'.join([rname, name]) + child = self.find(new_name) + if child.is_container: + todo.append(child) + else: + yield child + + +class ZipResourceFinder(ResourceFinder): + """ + Resource finder for resources in .zip files. + """ + def __init__(self, module): + super(ZipResourceFinder, self).__init__(module) + archive = self.loader.archive + self.prefix_len = 1 + len(archive) + # PyPy doesn't have a _files attr on zipimporter, and you can't set one + if hasattr(self.loader, '_files'): + self._files = self.loader._files + else: + self._files = zipimport._zip_directory_cache[archive] + self.index = sorted(self._files) + + def _adjust_path(self, path): + return path + + def _find(self, path): + path = path[self.prefix_len:] + if path in self._files: + result = True + else: + if path and path[-1] != os.sep: + path = path + os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + if not result: + logger.debug('_find failed: %r %r', path, self.loader.prefix) + else: + logger.debug('_find worked: %r %r', path, self.loader.prefix) + return result + + def get_cache_info(self, resource): + prefix = self.loader.archive + path = resource.path[1 + len(prefix):] + return prefix, path + + def get_bytes(self, resource): + return self.loader.get_data(resource.path) + + def get_stream(self, resource): + return io.BytesIO(self.get_bytes(resource)) + + def get_size(self, resource): + path = resource.path[self.prefix_len:] + return self._files[path][3] + + def get_resources(self, resource): + path = resource.path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + plen = len(path) + result = set() + i = bisect.bisect(self.index, path) + while i < len(self.index): + if not self.index[i].startswith(path): + break + s = self.index[i][plen:] + result.add(s.split(os.sep, 1)[0]) # only immediate children + i += 1 + return result + + def _is_directory(self, path): + path = path[self.prefix_len:] + if path and path[-1] != os.sep: + path += os.sep + i = bisect.bisect(self.index, path) + try: + result = self.index[i].startswith(path) + except IndexError: + result = False + return result + + +_finder_registry = { + type(None): ResourceFinder, + zipimport.zipimporter: ZipResourceFinder +} + +try: + # In Python 3.6, _frozen_importlib -> _frozen_importlib_external + try: + import _frozen_importlib_external as _fi + except ImportError: + import _frozen_importlib as _fi + _finder_registry[_fi.SourceFileLoader] = ResourceFinder + _finder_registry[_fi.FileFinder] = ResourceFinder + # See issue #146 + _finder_registry[_fi.SourcelessFileLoader] = ResourceFinder + del _fi +except (ImportError, AttributeError): + pass + + +def register_finder(loader, finder_maker): + _finder_registry[type(loader)] = finder_maker + + +_finder_cache = {} + + +def finder(package): + """ + Return a resource finder for a package. + :param package: The name of the package. + :return: A :class:`ResourceFinder` instance for the package. + """ + if package in _finder_cache: + result = _finder_cache[package] + else: + if package not in sys.modules: + __import__(package) + module = sys.modules[package] + path = getattr(module, '__path__', None) + if path is None: + raise DistlibException('You cannot get a finder for a module, ' + 'only for a package') + loader = getattr(module, '__loader__', None) + finder_maker = _finder_registry.get(type(loader)) + if finder_maker is None: + raise DistlibException('Unable to locate finder for %r' % package) + result = finder_maker(module) + _finder_cache[package] = result + return result + + +_dummy_module = types.ModuleType(str('__dummy__')) + + +def finder_for_path(path): + """ + Return a resource finder for a path, which should represent a container. + + :param path: The path. + :return: A :class:`ResourceFinder` instance for the path. + """ + result = None + # calls any path hooks, gets importer into cache + pkgutil.get_importer(path) + loader = sys.path_importer_cache.get(path) + finder = _finder_registry.get(type(loader)) + if finder: + module = _dummy_module + module.__file__ = os.path.join(path, '') + module.__loader__ = loader + result = finder(module) + return result diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py new file mode 100644 index 00000000..e16292b8 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py @@ -0,0 +1,466 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from io import BytesIO +import logging +import os +import re +import struct +import sys +import time +from zipfile import ZipInfo + +from .compat import sysconfig, detect_encoding, ZipFile +from .resources import finder +from .util import (FileOperator, get_export_entry, convert_path, + get_executable, get_platform, in_venv) + +logger = logging.getLogger(__name__) + +_DEFAULT_MANIFEST = ''' + + + + + + + + + + + + +'''.strip() + +# check if Python is called on the first line with this expression +FIRST_LINE_RE = re.compile(b'^#!.*pythonw?[0-9.]*([ \t].*)?$') +SCRIPT_TEMPLATE = r'''# -*- coding: utf-8 -*- +import re +import sys +from %(module)s import %(import_name)s +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(%(func)s()) +''' + +# Pre-fetch the contents of all executable wrapper stubs. +# This is to address https://github.com/pypa/pip/issues/12666. +# When updating pip, we rename the old pip in place before installing the +# new version. If we try to fetch a wrapper *after* that rename, the finder +# machinery will be confused as the package is no longer available at the +# location where it was imported from. So we load everything into memory in +# advance. + +# Issue 31: don't hardcode an absolute package name, but +# determine it relative to the current package +distlib_package = __name__.rsplit('.', 1)[0] + +WRAPPERS = { + r.name: r.bytes + for r in finder(distlib_package).iterator("") + if r.name.endswith(".exe") +} + + +def enquote_executable(executable): + if ' ' in executable: + # make sure we quote only the executable in case of env + # for example /usr/bin/env "/dir with spaces/bin/jython" + # instead of "/usr/bin/env /dir with spaces/bin/jython" + # otherwise whole + if executable.startswith('/usr/bin/env '): + env, _executable = executable.split(' ', 1) + if ' ' in _executable and not _executable.startswith('"'): + executable = '%s "%s"' % (env, _executable) + else: + if not executable.startswith('"'): + executable = '"%s"' % executable + return executable + + +# Keep the old name around (for now), as there is at least one project using it! +_enquote_executable = enquote_executable + + +class ScriptMaker(object): + """ + A class to copy or create scripts from source scripts or callable + specifications. + """ + script_template = SCRIPT_TEMPLATE + + executable = None # for shebangs + + def __init__(self, + source_dir, + target_dir, + add_launchers=True, + dry_run=False, + fileop=None): + self.source_dir = source_dir + self.target_dir = target_dir + self.add_launchers = add_launchers + self.force = False + self.clobber = False + # It only makes sense to set mode bits on POSIX. + self.set_mode = (os.name == 'posix') or (os.name == 'java' + and os._name == 'posix') + self.variants = set(('', 'X.Y')) + self._fileop = fileop or FileOperator(dry_run) + + self._is_nt = os.name == 'nt' or (os.name == 'java' + and os._name == 'nt') + self.version_info = sys.version_info + + def _get_alternate_executable(self, executable, options): + if options.get('gui', False) and self._is_nt: # pragma: no cover + dn, fn = os.path.split(executable) + fn = fn.replace('python', 'pythonw') + executable = os.path.join(dn, fn) + return executable + + if sys.platform.startswith('java'): # pragma: no cover + + def _is_shell(self, executable): + """ + Determine if the specified executable is a script + (contains a #! line) + """ + try: + with open(executable) as fp: + return fp.read(2) == '#!' + except (OSError, IOError): + logger.warning('Failed to open %s', executable) + return False + + def _fix_jython_executable(self, executable): + if self._is_shell(executable): + # Workaround for Jython is not needed on Linux systems. + import java + + if java.lang.System.getProperty('os.name') == 'Linux': + return executable + elif executable.lower().endswith('jython.exe'): + # Use wrapper exe for Jython on Windows + return executable + return '/usr/bin/env %s' % executable + + def _build_shebang(self, executable, post_interp): + """ + Build a shebang line. In the simple case (on Windows, or a shebang line + which is not too long or contains spaces) use a simple formulation for + the shebang. Otherwise, use /bin/sh as the executable, with a contrived + shebang which allows the script to run either under Python or sh, using + suitable quoting. Thanks to Harald Nordgren for his input. + + See also: http://www.in-ulm.de/~mascheck/various/shebang/#length + https://hg.mozilla.org/mozilla-central/file/tip/mach + """ + if os.name != 'posix': + simple_shebang = True + else: + # Add 3 for '#!' prefix and newline suffix. + shebang_length = len(executable) + len(post_interp) + 3 + if sys.platform == 'darwin': + max_shebang_length = 512 + else: + max_shebang_length = 127 + simple_shebang = ((b' ' not in executable) + and (shebang_length <= max_shebang_length)) + + if simple_shebang: + result = b'#!' + executable + post_interp + b'\n' + else: + result = b'#!/bin/sh\n' + result += b"'''exec' " + executable + post_interp + b' "$0" "$@"\n' + result += b"' '''" + return result + + def _get_shebang(self, encoding, post_interp=b'', options=None): + enquote = True + if self.executable: + executable = self.executable + enquote = False # assume this will be taken care of + elif not sysconfig.is_python_build(): + executable = get_executable() + elif in_venv(): # pragma: no cover + executable = os.path.join( + sysconfig.get_path('scripts'), + 'python%s' % sysconfig.get_config_var('EXE')) + else: # pragma: no cover + if os.name == 'nt': + # for Python builds from source on Windows, no Python executables with + # a version suffix are created, so we use python.exe + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s' % (sysconfig.get_config_var('EXE'))) + else: + executable = os.path.join( + sysconfig.get_config_var('BINDIR'), + 'python%s%s' % (sysconfig.get_config_var('VERSION'), + sysconfig.get_config_var('EXE'))) + if options: + executable = self._get_alternate_executable(executable, options) + + if sys.platform.startswith('java'): # pragma: no cover + executable = self._fix_jython_executable(executable) + + # Normalise case for Windows - COMMENTED OUT + # executable = os.path.normcase(executable) + # N.B. The normalising operation above has been commented out: See + # issue #124. Although paths in Windows are generally case-insensitive, + # they aren't always. For example, a path containing a ẞ (which is a + # LATIN CAPITAL LETTER SHARP S - U+1E9E) is normcased to ß (which is a + # LATIN SMALL LETTER SHARP S' - U+00DF). The two are not considered by + # Windows as equivalent in path names. + + # If the user didn't specify an executable, it may be necessary to + # cater for executable paths with spaces (not uncommon on Windows) + if enquote: + executable = enquote_executable(executable) + # Issue #51: don't use fsencode, since we later try to + # check that the shebang is decodable using utf-8. + executable = executable.encode('utf-8') + # in case of IronPython, play safe and enable frames support + if (sys.platform == 'cli' and '-X:Frames' not in post_interp + and '-X:FullFrames' not in post_interp): # pragma: no cover + post_interp += b' -X:Frames' + shebang = self._build_shebang(executable, post_interp) + # Python parser starts to read a script using UTF-8 until + # it gets a #coding:xxx cookie. The shebang has to be the + # first line of a file, the #coding:xxx cookie cannot be + # written before. So the shebang has to be decodable from + # UTF-8. + try: + shebang.decode('utf-8') + except UnicodeDecodeError: # pragma: no cover + raise ValueError('The shebang (%r) is not decodable from utf-8' % + shebang) + # If the script is encoded to a custom encoding (use a + # #coding:xxx cookie), the shebang has to be decodable from + # the script encoding too. + if encoding != 'utf-8': + try: + shebang.decode(encoding) + except UnicodeDecodeError: # pragma: no cover + raise ValueError('The shebang (%r) is not decodable ' + 'from the script encoding (%r)' % + (shebang, encoding)) + return shebang + + def _get_script_text(self, entry): + return self.script_template % dict( + module=entry.prefix, + import_name=entry.suffix.split('.')[0], + func=entry.suffix) + + manifest = _DEFAULT_MANIFEST + + def get_manifest(self, exename): + base = os.path.basename(exename) + return self.manifest % base + + def _write_script(self, names, shebang, script_bytes, filenames, ext): + use_launcher = self.add_launchers and self._is_nt + linesep = os.linesep.encode('utf-8') + if not shebang.endswith(linesep): + shebang += linesep + if not use_launcher: + script_bytes = shebang + script_bytes + else: # pragma: no cover + if ext == 'py': + launcher = self._get_launcher('t') + else: + launcher = self._get_launcher('w') + stream = BytesIO() + with ZipFile(stream, 'w') as zf: + source_date_epoch = os.environ.get('SOURCE_DATE_EPOCH') + if source_date_epoch: + date_time = time.gmtime(int(source_date_epoch))[:6] + zinfo = ZipInfo(filename='__main__.py', + date_time=date_time) + zf.writestr(zinfo, script_bytes) + else: + zf.writestr('__main__.py', script_bytes) + zip_data = stream.getvalue() + script_bytes = launcher + shebang + zip_data + for name in names: + outname = os.path.join(self.target_dir, name) + if use_launcher: # pragma: no cover + n, e = os.path.splitext(outname) + if e.startswith('.py'): + outname = n + outname = '%s.exe' % outname + try: + self._fileop.write_binary_file(outname, script_bytes) + except Exception: + # Failed writing an executable - it might be in use. + logger.warning('Failed to write executable - trying to ' + 'use .deleteme logic') + dfname = '%s.deleteme' % outname + if os.path.exists(dfname): + os.remove(dfname) # Not allowed to fail here + os.rename(outname, dfname) # nor here + self._fileop.write_binary_file(outname, script_bytes) + logger.debug('Able to replace executable using ' + '.deleteme logic') + try: + os.remove(dfname) + except Exception: + pass # still in use - ignore error + else: + if self._is_nt and not outname.endswith( + '.' + ext): # pragma: no cover + outname = '%s.%s' % (outname, ext) + if os.path.exists(outname) and not self.clobber: + logger.warning('Skipping existing file %s', outname) + continue + self._fileop.write_binary_file(outname, script_bytes) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + + variant_separator = '-' + + def get_script_filenames(self, name): + result = set() + if '' in self.variants: + result.add(name) + if 'X' in self.variants: + result.add('%s%s' % (name, self.version_info[0])) + if 'X.Y' in self.variants: + result.add('%s%s%s.%s' % + (name, self.variant_separator, self.version_info[0], + self.version_info[1])) + return result + + def _make_script(self, entry, filenames, options=None): + post_interp = b'' + if options: + args = options.get('interpreter_args', []) + if args: + args = ' %s' % ' '.join(args) + post_interp = args.encode('utf-8') + shebang = self._get_shebang('utf-8', post_interp, options=options) + script = self._get_script_text(entry).encode('utf-8') + scriptnames = self.get_script_filenames(entry.name) + if options and options.get('gui', False): + ext = 'pyw' + else: + ext = 'py' + self._write_script(scriptnames, shebang, script, filenames, ext) + + def _copy_script(self, script, filenames): + adjust = False + script = os.path.join(self.source_dir, convert_path(script)) + outname = os.path.join(self.target_dir, os.path.basename(script)) + if not self.force and not self._fileop.newer(script, outname): + logger.debug('not copying %s (up-to-date)', script) + return + + # Always open the file, but ignore failures in dry-run mode -- + # that way, we'll get accurate feedback if we can read the + # script. + try: + f = open(script, 'rb') + except IOError: # pragma: no cover + if not self.dry_run: + raise + f = None + else: + first_line = f.readline() + if not first_line: # pragma: no cover + logger.warning('%s is an empty file (skipping)', script) + return + + match = FIRST_LINE_RE.match(first_line.replace(b'\r\n', b'\n')) + if match: + adjust = True + post_interp = match.group(1) or b'' + + if not adjust: + if f: + f.close() + self._fileop.copy_file(script, outname) + if self.set_mode: + self._fileop.set_executable_mode([outname]) + filenames.append(outname) + else: + logger.info('copying and adjusting %s -> %s', script, + self.target_dir) + if not self._fileop.dry_run: + encoding, lines = detect_encoding(f.readline) + f.seek(0) + shebang = self._get_shebang(encoding, post_interp) + if b'pythonw' in first_line: # pragma: no cover + ext = 'pyw' + else: + ext = 'py' + n = os.path.basename(outname) + self._write_script([n], shebang, f.read(), filenames, ext) + if f: + f.close() + + @property + def dry_run(self): + return self._fileop.dry_run + + @dry_run.setter + def dry_run(self, value): + self._fileop.dry_run = value + + if os.name == 'nt' or (os.name == 'java' + and os._name == 'nt'): # pragma: no cover + # Executable launcher support. + # Launchers are from https://bitbucket.org/vinay.sajip/simple_launcher/ + + def _get_launcher(self, kind): + if struct.calcsize('P') == 8: # 64-bit + bits = '64' + else: + bits = '32' + platform_suffix = '-arm' if get_platform() == 'win-arm64' else '' + name = '%s%s%s.exe' % (kind, bits, platform_suffix) + if name not in WRAPPERS: + msg = ('Unable to find resource %s in package %s' % + (name, distlib_package)) + raise ValueError(msg) + return WRAPPERS[name] + + # Public API follows + + def make(self, specification, options=None): + """ + Make a script. + + :param specification: The specification, which is either a valid export + entry specification (to make a script from a + callable) or a filename (to make a script by + copying from a source location). + :param options: A dictionary of options controlling script generation. + :return: A list of all absolute pathnames written to. + """ + filenames = [] + entry = get_export_entry(specification) + if entry is None: + self._copy_script(specification, filenames) + else: + self._make_script(entry, filenames, options=options) + return filenames + + def make_multiple(self, specifications, options=None): + """ + Take a list of specifications and make scripts from them, + :param specifications: A list of specifications. + :return: A list of all absolute pathnames written to, + """ + filenames = [] + for specification in specifications: + filenames.extend(self.make(specification, options)) + return filenames diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe new file mode 100644 index 0000000000000000000000000000000000000000..52154f0be32cc2bdbf98af131d477900667d0abd GIT binary patch literal 97792 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

    XMwe#*Lv$g8jIpIBEV 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 w+IyK^N3WCD*(>mhAj=irKyR>D9b+D<@QBhV6U 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

    qx{CqlSNQ_YhQ()VtG-D; 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 z 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 bB!6W7g#4-b3-g!cLzth+PZapSNrC?c%T_@< literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py new file mode 100644 index 00000000..4a5a30e1 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py @@ -0,0 +1,1099 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2013-2023 Vinay Sajip. +# Licensed to the Python Software Foundation under a contributor agreement. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +from __future__ import unicode_literals + +import base64 +import codecs +import datetime +from email import message_from_file +import hashlib +import json +import logging +import os +import posixpath +import re +import shutil +import sys +import tempfile +import zipfile + +from . import __version__, DistlibException +from .compat import sysconfig, ZipFile, fsdecode, text_type, filter +from .database import InstalledDistribution +from .metadata import Metadata, WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME +from .util import (FileOperator, convert_path, CSVReader, CSVWriter, Cache, + cached_property, get_cache_base, read_exports, tempdir, + get_platform) +from .version import NormalizedVersion, UnsupportedVersionError + +logger = logging.getLogger(__name__) + +cache = None # created when needed + +if hasattr(sys, 'pypy_version_info'): # pragma: no cover + IMP_PREFIX = 'pp' +elif sys.platform.startswith('java'): # pragma: no cover + IMP_PREFIX = 'jy' +elif sys.platform == 'cli': # pragma: no cover + IMP_PREFIX = 'ip' +else: + IMP_PREFIX = 'cp' + +VER_SUFFIX = sysconfig.get_config_var('py_version_nodot') +if not VER_SUFFIX: # pragma: no cover + VER_SUFFIX = '%s%s' % sys.version_info[:2] +PYVER = 'py' + VER_SUFFIX +IMPVER = IMP_PREFIX + VER_SUFFIX + +ARCH = get_platform().replace('-', '_').replace('.', '_') + +ABI = sysconfig.get_config_var('SOABI') +if ABI and ABI.startswith('cpython-'): + ABI = ABI.replace('cpython-', 'cp').split('-')[0] +else: + + def _derive_abi(): + parts = ['cp', VER_SUFFIX] + if sysconfig.get_config_var('Py_DEBUG'): + parts.append('d') + if IMP_PREFIX == 'cp': + vi = sys.version_info[:2] + if vi < (3, 8): + wpm = sysconfig.get_config_var('WITH_PYMALLOC') + if wpm is None: + wpm = True + if wpm: + parts.append('m') + if vi < (3, 3): + us = sysconfig.get_config_var('Py_UNICODE_SIZE') + if us == 4 or (us is None and sys.maxunicode == 0x10FFFF): + parts.append('u') + return ''.join(parts) + + ABI = _derive_abi() + del _derive_abi + +FILENAME_RE = re.compile( + r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))? +-(?P\w+\d+(\.\w+\d+)*) +-(?P\w+) +-(?P\w+(\.\w+)*) +\.whl$ +''', re.IGNORECASE | re.VERBOSE) + +NAME_VERSION_RE = re.compile( + r''' +(?P[^-]+) +-(?P\d+[^-]*) +(-(?P\d+[^-]*))?$ +''', re.IGNORECASE | re.VERBOSE) + +SHEBANG_RE = re.compile(br'\s*#![^\r\n]*') +SHEBANG_DETAIL_RE = re.compile(br'^(\s*#!("[^"]+"|\S+))\s+(.*)$') +SHEBANG_PYTHON = b'#!python' +SHEBANG_PYTHONW = b'#!pythonw' + +if os.sep == '/': + to_posix = lambda o: o +else: + to_posix = lambda o: o.replace(os.sep, '/') + +if sys.version_info[0] < 3: + import imp +else: + imp = None + import importlib.machinery + import importlib.util + + +def _get_suffixes(): + if imp: + return [s[0] for s in imp.get_suffixes()] + else: + return importlib.machinery.EXTENSION_SUFFIXES + + +def _load_dynamic(name, path): + # https://docs.python.org/3/library/importlib.html#importing-a-source-file-directly + if imp: + return imp.load_dynamic(name, path) + else: + spec = importlib.util.spec_from_file_location(name, path) + module = importlib.util.module_from_spec(spec) + sys.modules[name] = module + spec.loader.exec_module(module) + return module + + +class Mounter(object): + + def __init__(self): + self.impure_wheels = {} + self.libs = {} + + def add(self, pathname, extensions): + self.impure_wheels[pathname] = extensions + self.libs.update(extensions) + + def remove(self, pathname): + extensions = self.impure_wheels.pop(pathname) + for k, v in extensions: + if k in self.libs: + del self.libs[k] + + def find_module(self, fullname, path=None): + if fullname in self.libs: + result = self + else: + result = None + return result + + def load_module(self, fullname): + if fullname in sys.modules: + result = sys.modules[fullname] + else: + if fullname not in self.libs: + raise ImportError('unable to find extension for %s' % fullname) + result = _load_dynamic(fullname, self.libs[fullname]) + result.__loader__ = self + parts = fullname.rsplit('.', 1) + if len(parts) > 1: + result.__package__ = parts[0] + return result + + +_hook = Mounter() + + +class Wheel(object): + """ + Class to build and install from Wheel files (PEP 427). + """ + + wheel_version = (1, 1) + hash_kind = 'sha256' + + def __init__(self, filename=None, sign=False, verify=False): + """ + Initialise an instance using a (valid) filename. + """ + self.sign = sign + self.should_verify = verify + self.buildver = '' + self.pyver = [PYVER] + self.abi = ['none'] + self.arch = ['any'] + self.dirname = os.getcwd() + if filename is None: + self.name = 'dummy' + self.version = '0.1' + self._filename = self.filename + else: + m = NAME_VERSION_RE.match(filename) + if m: + info = m.groupdict('') + self.name = info['nm'] + # Reinstate the local version separator + self.version = info['vn'].replace('_', '-') + self.buildver = info['bn'] + self._filename = self.filename + else: + dirname, filename = os.path.split(filename) + m = FILENAME_RE.match(filename) + if not m: + raise DistlibException('Invalid name or ' + 'filename: %r' % filename) + if dirname: + self.dirname = os.path.abspath(dirname) + self._filename = filename + info = m.groupdict('') + self.name = info['nm'] + self.version = info['vn'] + self.buildver = info['bn'] + self.pyver = info['py'].split('.') + self.abi = info['bi'].split('.') + self.arch = info['ar'].split('.') + + @property + def filename(self): + """ + Build and return a filename from the various components. + """ + if self.buildver: + buildver = '-' + self.buildver + else: + buildver = '' + pyver = '.'.join(self.pyver) + abi = '.'.join(self.abi) + arch = '.'.join(self.arch) + # replace - with _ as a local version separator + version = self.version.replace('-', '_') + return '%s-%s%s-%s-%s-%s.whl' % (self.name, version, buildver, pyver, + abi, arch) + + @property + def exists(self): + path = os.path.join(self.dirname, self.filename) + return os.path.isfile(path) + + @property + def tags(self): + for pyver in self.pyver: + for abi in self.abi: + for arch in self.arch: + yield pyver, abi, arch + + @cached_property + def metadata(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + wrapper = codecs.getreader('utf-8') + with ZipFile(pathname, 'r') as zf: + self.get_wheel_metadata(zf) + # wv = wheel_metadata['Wheel-Version'].split('.', 1) + # file_version = tuple([int(i) for i in wv]) + # if file_version < (1, 1): + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME, + # LEGACY_METADATA_FILENAME] + # else: + # fns = [WHEEL_METADATA_FILENAME, METADATA_FILENAME] + fns = [WHEEL_METADATA_FILENAME, LEGACY_METADATA_FILENAME] + result = None + for fn in fns: + try: + metadata_filename = posixpath.join(info_dir, fn) + with zf.open(metadata_filename) as bf: + wf = wrapper(bf) + result = Metadata(fileobj=wf) + if result: + break + except KeyError: + pass + if not result: + raise ValueError('Invalid wheel, because metadata is ' + 'missing: looked in %s' % ', '.join(fns)) + return result + + def get_wheel_metadata(self, zf): + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + metadata_filename = posixpath.join(info_dir, 'WHEEL') + with zf.open(metadata_filename) as bf: + wf = codecs.getreader('utf-8')(bf) + message = message_from_file(wf) + return dict(message) + + @cached_property + def info(self): + pathname = os.path.join(self.dirname, self.filename) + with ZipFile(pathname, 'r') as zf: + result = self.get_wheel_metadata(zf) + return result + + def process_shebang(self, data): + m = SHEBANG_RE.match(data) + if m: + end = m.end() + shebang, data_after_shebang = data[:end], data[end:] + # Preserve any arguments after the interpreter + if b'pythonw' in shebang.lower(): + shebang_python = SHEBANG_PYTHONW + else: + shebang_python = SHEBANG_PYTHON + m = SHEBANG_DETAIL_RE.match(shebang) + if m: + args = b' ' + m.groups()[-1] + else: + args = b'' + shebang = shebang_python + args + data = shebang + data_after_shebang + else: + cr = data.find(b'\r') + lf = data.find(b'\n') + if cr < 0 or cr > lf: + term = b'\n' + else: + if data[cr:cr + 2] == b'\r\n': + term = b'\r\n' + else: + term = b'\r' + data = SHEBANG_PYTHON + term + data + return data + + def get_hash(self, data, hash_kind=None): + if hash_kind is None: + hash_kind = self.hash_kind + try: + hasher = getattr(hashlib, hash_kind) + except AttributeError: + raise DistlibException('Unsupported hash algorithm: %r' % + hash_kind) + result = hasher(data).digest() + result = base64.urlsafe_b64encode(result).rstrip(b'=').decode('ascii') + return hash_kind, result + + def write_record(self, records, record_path, archive_record_path): + records = list(records) # make a copy, as mutated + records.append((archive_record_path, '', '')) + with CSVWriter(record_path) as writer: + for row in records: + writer.writerow(row) + + def write_records(self, info, libdir, archive_paths): + records = [] + distinfo, info_dir = info + # hasher = getattr(hashlib, self.hash_kind) + for ap, p in archive_paths: + with open(p, 'rb') as f: + data = f.read() + digest = '%s=%s' % self.get_hash(data) + size = os.path.getsize(p) + records.append((ap, digest, size)) + + p = os.path.join(distinfo, 'RECORD') + ap = to_posix(os.path.join(info_dir, 'RECORD')) + self.write_record(records, p, ap) + archive_paths.append((ap, p)) + + def build_zip(self, pathname, archive_paths): + with ZipFile(pathname, 'w', zipfile.ZIP_DEFLATED) as zf: + for ap, p in archive_paths: + logger.debug('Wrote %s to %s in wheel', p, ap) + zf.write(p, ap) + + def build(self, paths, tags=None, wheel_version=None): + """ + Build a wheel from files in specified paths, and use any specified tags + when determining the name of the wheel. + """ + if tags is None: + tags = {} + + libkey = list(filter(lambda o: o in paths, ('purelib', 'platlib')))[0] + if libkey == 'platlib': + is_pure = 'false' + default_pyver = [IMPVER] + default_abi = [ABI] + default_arch = [ARCH] + else: + is_pure = 'true' + default_pyver = [PYVER] + default_abi = ['none'] + default_arch = ['any'] + + self.pyver = tags.get('pyver', default_pyver) + self.abi = tags.get('abi', default_abi) + self.arch = tags.get('arch', default_arch) + + libdir = paths[libkey] + + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + archive_paths = [] + + # First, stuff which is not in site-packages + for key in ('data', 'headers', 'scripts'): + if key not in paths: + continue + path = paths[key] + if os.path.isdir(path): + for root, dirs, files in os.walk(path): + for fn in files: + p = fsdecode(os.path.join(root, fn)) + rp = os.path.relpath(p, path) + ap = to_posix(os.path.join(data_dir, key, rp)) + archive_paths.append((ap, p)) + if key == 'scripts' and not p.endswith('.exe'): + with open(p, 'rb') as f: + data = f.read() + data = self.process_shebang(data) + with open(p, 'wb') as f: + f.write(data) + + # Now, stuff which is in site-packages, other than the + # distinfo stuff. + path = libdir + distinfo = None + for root, dirs, files in os.walk(path): + if root == path: + # At the top level only, save distinfo for later + # and skip it for now + for i, dn in enumerate(dirs): + dn = fsdecode(dn) + if dn.endswith('.dist-info'): + distinfo = os.path.join(root, dn) + del dirs[i] + break + assert distinfo, '.dist-info directory expected, not found' + + for fn in files: + # comment out next suite to leave .pyc files in + if fsdecode(fn).endswith(('.pyc', '.pyo')): + continue + p = os.path.join(root, fn) + rp = to_posix(os.path.relpath(p, path)) + archive_paths.append((rp, p)) + + # Now distinfo. Assumed to be flat, i.e. os.listdir is enough. + files = os.listdir(distinfo) + for fn in files: + if fn not in ('RECORD', 'INSTALLER', 'SHARED', 'WHEEL'): + p = fsdecode(os.path.join(distinfo, fn)) + ap = to_posix(os.path.join(info_dir, fn)) + archive_paths.append((ap, p)) + + wheel_metadata = [ + 'Wheel-Version: %d.%d' % (wheel_version or self.wheel_version), + 'Generator: distlib %s' % __version__, + 'Root-Is-Purelib: %s' % is_pure, + ] + for pyver, abi, arch in self.tags: + wheel_metadata.append('Tag: %s-%s-%s' % (pyver, abi, arch)) + p = os.path.join(distinfo, 'WHEEL') + with open(p, 'w') as f: + f.write('\n'.join(wheel_metadata)) + ap = to_posix(os.path.join(info_dir, 'WHEEL')) + archive_paths.append((ap, p)) + + # sort the entries by archive path. Not needed by any spec, but it + # keeps the archive listing and RECORD tidier than they would otherwise + # be. Use the number of path segments to keep directory entries together, + # and keep the dist-info stuff at the end. + def sorter(t): + ap = t[0] + n = ap.count('/') + if '.dist-info' in ap: + n += 10000 + return (n, ap) + + archive_paths = sorted(archive_paths, key=sorter) + + # Now, at last, RECORD. + # Paths in here are archive paths - nothing else makes sense. + self.write_records((distinfo, info_dir), libdir, archive_paths) + # Now, ready to build the zip file + pathname = os.path.join(self.dirname, self.filename) + self.build_zip(pathname, archive_paths) + return pathname + + def skip_entry(self, arcname): + """ + Determine whether an archive entry should be skipped when verifying + or installing. + """ + # The signature file won't be in RECORD, + # and we don't currently don't do anything with it + # We also skip directories, as they won't be in RECORD + # either. See: + # + # https://github.com/pypa/wheel/issues/294 + # https://github.com/pypa/wheel/issues/287 + # https://github.com/pypa/wheel/pull/289 + # + return arcname.endswith(('/', '/RECORD.jws')) + + def install(self, paths, maker, **kwargs): + """ + Install a wheel to the specified paths. If kwarg ``warner`` is + specified, it should be a callable, which will be called with two + tuples indicating the wheel version of this software and the wheel + version in the file, if there is a discrepancy in the versions. + This can be used to issue any warnings to raise any exceptions. + If kwarg ``lib_only`` is True, only the purelib/platlib files are + installed, and the headers, scripts, data and dist-info metadata are + not written. If kwarg ``bytecode_hashed_invalidation`` is True, written + bytecode will try to use file-hash based invalidation (PEP-552) on + supported interpreter versions (CPython 2.7+). + + The return value is a :class:`InstalledDistribution` instance unless + ``options.lib_only`` is True, in which case the return value is ``None``. + """ + + dry_run = maker.dry_run + warner = kwargs.get('warner') + lib_only = kwargs.get('lib_only', False) + bc_hashed_invalidation = kwargs.get('bytecode_hashed_invalidation', + False) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message = message_from_file(wf) + wv = message['Wheel-Version'].split('.', 1) + file_version = tuple([int(i) for i in wv]) + if (file_version != self.wheel_version) and warner: + warner(self.wheel_version, file_version) + + if message['Root-Is-Purelib'] == 'true': + libdir = paths['purelib'] + else: + libdir = paths['platlib'] + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + data_pfx = posixpath.join(data_dir, '') + info_pfx = posixpath.join(info_dir, '') + script_pfx = posixpath.join(data_dir, 'scripts', '') + + # make a new instance rather than a copy of maker's, + # as we mutate it + fileop = FileOperator(dry_run=dry_run) + fileop.record = True # so we can rollback if needed + + bc = not sys.dont_write_bytecode # Double negatives. Lovely! + + outfiles = [] # for RECORD writing + + # for script copying/shebang processing + workdir = tempfile.mkdtemp() + # set target dir later + # we default add_launchers to False, as the + # Python Launcher should be used instead + maker.source_dir = workdir + maker.target_dir = None + try: + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + if lib_only and u_arcname.startswith((info_pfx, data_pfx)): + logger.debug('lib_only: skipping %s', u_arcname) + continue + is_script = (u_arcname.startswith(script_pfx) + and not u_arcname.endswith('.exe')) + + if u_arcname.startswith(data_pfx): + _, where, rp = u_arcname.split('/', 2) + outfile = os.path.join(paths[where], convert_path(rp)) + else: + # meant for site-packages. + if u_arcname in (wheel_metadata_name, record_name): + continue + outfile = os.path.join(libdir, convert_path(u_arcname)) + if not is_script: + with zf.open(arcname) as bf: + fileop.copy_stream(bf, outfile) + # Issue #147: permission bits aren't preserved. Using + # zf.extract(zinfo, libdir) should have worked, but didn't, + # see https://www.thetopsites.net/article/53834422.shtml + # So ... manually preserve permission bits as given in zinfo + if os.name == 'posix': + # just set the normal permission bits + os.chmod(outfile, + (zinfo.external_attr >> 16) & 0x1FF) + outfiles.append(outfile) + # Double check the digest of the written file + if not dry_run and row[1]: + with open(outfile, 'rb') as bf: + data = bf.read() + _, newdigest = self.get_hash(data, kind) + if newdigest != digest: + raise DistlibException('digest mismatch ' + 'on write for ' + '%s' % outfile) + if bc and outfile.endswith('.py'): + try: + pyc = fileop.byte_compile( + outfile, + hashed_invalidation=bc_hashed_invalidation) + outfiles.append(pyc) + except Exception: + # Don't give up if byte-compilation fails, + # but log it and perhaps warn the user + logger.warning('Byte-compilation failed', + exc_info=True) + else: + fn = os.path.basename(convert_path(arcname)) + workname = os.path.join(workdir, fn) + with zf.open(arcname) as bf: + fileop.copy_stream(bf, workname) + + dn, fn = os.path.split(outfile) + maker.target_dir = dn + filenames = maker.make(fn) + fileop.set_executable_mode(filenames) + outfiles.extend(filenames) + + if lib_only: + logger.debug('lib_only: returning None') + dist = None + else: + # Generate scripts + + # Try to get pydist.json so we can see if there are + # any commands to generate. If this fails (e.g. because + # of a legacy wheel), log a warning but don't give up. + commands = None + file_version = self.info['Wheel-Version'] + if file_version == '1.0': + # Use legacy info + ep = posixpath.join(info_dir, 'entry_points.txt') + try: + with zf.open(ep) as bwf: + epdata = read_exports(bwf) + commands = {} + for key in ('console', 'gui'): + k = '%s_scripts' % key + if k in epdata: + commands['wrap_%s' % key] = d = {} + for v in epdata[k].values(): + s = '%s:%s' % (v.prefix, v.suffix) + if v.flags: + s += ' [%s]' % ','.join(v.flags) + d[v.name] = s + except Exception: + logger.warning('Unable to read legacy script ' + 'metadata, so cannot generate ' + 'scripts') + else: + try: + with zf.open(metadata_name) as bwf: + wf = wrapper(bwf) + commands = json.load(wf).get('extensions') + if commands: + commands = commands.get('python.commands') + except Exception: + logger.warning('Unable to read JSON metadata, so ' + 'cannot generate scripts') + if commands: + console_scripts = commands.get('wrap_console', {}) + gui_scripts = commands.get('wrap_gui', {}) + if console_scripts or gui_scripts: + script_dir = paths.get('scripts', '') + if not os.path.isdir(script_dir): + raise ValueError('Valid script path not ' + 'specified') + maker.target_dir = script_dir + for k, v in console_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script) + fileop.set_executable_mode(filenames) + + if gui_scripts: + options = {'gui': True} + for k, v in gui_scripts.items(): + script = '%s = %s' % (k, v) + filenames = maker.make(script, options) + fileop.set_executable_mode(filenames) + + p = os.path.join(libdir, info_dir) + dist = InstalledDistribution(p) + + # Write SHARED + paths = dict(paths) # don't change passed in dict + del paths['purelib'] + del paths['platlib'] + paths['lib'] = libdir + p = dist.write_shared_locations(paths, dry_run) + if p: + outfiles.append(p) + + # Write RECORD + dist.write_installed_files(outfiles, paths['prefix'], + dry_run) + return dist + except Exception: # pragma: no cover + logger.exception('installation failed.') + fileop.rollback() + raise + finally: + shutil.rmtree(workdir) + + def _get_dylib_cache(self): + global cache + if cache is None: + # Use native string to avoid issues on 2.x: see Python #20140. + base = os.path.join(get_cache_base(), str('dylib-cache'), + '%s.%s' % sys.version_info[:2]) + cache = Cache(base) + return cache + + def _get_extensions(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + arcname = posixpath.join(info_dir, 'EXTENSIONS') + wrapper = codecs.getreader('utf-8') + result = [] + with ZipFile(pathname, 'r') as zf: + try: + with zf.open(arcname) as bf: + wf = wrapper(bf) + extensions = json.load(wf) + cache = self._get_dylib_cache() + prefix = cache.prefix_to_dir(pathname) + cache_base = os.path.join(cache.base, prefix) + if not os.path.isdir(cache_base): + os.makedirs(cache_base) + for name, relpath in extensions.items(): + dest = os.path.join(cache_base, convert_path(relpath)) + if not os.path.exists(dest): + extract = True + else: + file_time = os.stat(dest).st_mtime + file_time = datetime.datetime.fromtimestamp( + file_time) + info = zf.getinfo(relpath) + wheel_time = datetime.datetime(*info.date_time) + extract = wheel_time > file_time + if extract: + zf.extract(relpath, cache_base) + result.append((name, dest)) + except KeyError: + pass + return result + + def is_compatible(self): + """ + Determine if a wheel is compatible with the running system. + """ + return is_compatible(self) + + def is_mountable(self): + """ + Determine if a wheel is asserted as mountable by its metadata. + """ + return True # for now - metadata details TBD + + def mount(self, append=False): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if not self.is_compatible(): + msg = 'Wheel %s not compatible with this Python.' % pathname + raise DistlibException(msg) + if not self.is_mountable(): + msg = 'Wheel %s is marked as not mountable.' % pathname + raise DistlibException(msg) + if pathname in sys.path: + logger.debug('%s already in path', pathname) + else: + if append: + sys.path.append(pathname) + else: + sys.path.insert(0, pathname) + extensions = self._get_extensions() + if extensions: + if _hook not in sys.meta_path: + sys.meta_path.append(_hook) + _hook.add(pathname, extensions) + + def unmount(self): + pathname = os.path.abspath(os.path.join(self.dirname, self.filename)) + if pathname not in sys.path: + logger.debug('%s not in path', pathname) + else: + sys.path.remove(pathname) + if pathname in _hook.impure_wheels: + _hook.remove(pathname) + if not _hook.impure_wheels: + if _hook in sys.meta_path: + sys.meta_path.remove(_hook) + + def verify(self): + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + # data_dir = '%s.data' % name_ver + info_dir = '%s.dist-info' % name_ver + + # metadata_name = posixpath.join(info_dir, LEGACY_METADATA_FILENAME) + wheel_metadata_name = posixpath.join(info_dir, 'WHEEL') + record_name = posixpath.join(info_dir, 'RECORD') + + wrapper = codecs.getreader('utf-8') + + with ZipFile(pathname, 'r') as zf: + with zf.open(wheel_metadata_name) as bwf: + wf = wrapper(bwf) + message_from_file(wf) + # wv = message['Wheel-Version'].split('.', 1) + # file_version = tuple([int(i) for i in wv]) + # TODO version verification + + records = {} + with zf.open(record_name) as bf: + with CSVReader(stream=bf) as reader: + for row in reader: + p = row[0] + records[p] = row + + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + # See issue #115: some wheels have .. in their entries, but + # in the filename ... e.g. __main__..py ! So the check is + # updated to look for .. in the directory portions + p = u_arcname.split('/') + if '..' in p: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + + if self.skip_entry(u_arcname): + continue + row = records[u_arcname] + if row[2] and str(zinfo.file_size) != row[2]: + raise DistlibException('size mismatch for ' + '%s' % u_arcname) + if row[1]: + kind, value = row[1].split('=', 1) + with zf.open(arcname) as bf: + data = bf.read() + _, digest = self.get_hash(data, kind) + if digest != value: + raise DistlibException('digest mismatch for ' + '%s' % arcname) + + def update(self, modifier, dest_dir=None, **kwargs): + """ + Update the contents of a wheel in a generic way. The modifier should + be a callable which expects a dictionary argument: its keys are + archive-entry paths, and its values are absolute filesystem paths + where the contents the corresponding archive entries can be found. The + modifier is free to change the contents of the files pointed to, add + new entries and remove entries, before returning. This method will + extract the entire contents of the wheel to a temporary location, call + the modifier, and then use the passed (and possibly updated) + dictionary to write a new wheel. If ``dest_dir`` is specified, the new + wheel is written there -- otherwise, the original wheel is overwritten. + + The modifier should return True if it updated the wheel, else False. + This method returns the same value the modifier returns. + """ + + def get_version(path_map, info_dir): + version = path = None + key = '%s/%s' % (info_dir, LEGACY_METADATA_FILENAME) + if key not in path_map: + key = '%s/PKG-INFO' % info_dir + if key in path_map: + path = path_map[key] + version = Metadata(path=path).version + return version, path + + def update_version(version, path): + updated = None + try: + NormalizedVersion(version) + i = version.find('-') + if i < 0: + updated = '%s+1' % version + else: + parts = [int(s) for s in version[i + 1:].split('.')] + parts[-1] += 1 + updated = '%s+%s' % (version[:i], '.'.join( + str(i) for i in parts)) + except UnsupportedVersionError: + logger.debug( + 'Cannot update non-compliant (PEP-440) ' + 'version %r', version) + if updated: + md = Metadata(path=path) + md.version = updated + legacy = path.endswith(LEGACY_METADATA_FILENAME) + md.write(path=path, legacy=legacy) + logger.debug('Version updated from %r to %r', version, updated) + + pathname = os.path.join(self.dirname, self.filename) + name_ver = '%s-%s' % (self.name, self.version) + info_dir = '%s.dist-info' % name_ver + record_name = posixpath.join(info_dir, 'RECORD') + with tempdir() as workdir: + with ZipFile(pathname, 'r') as zf: + path_map = {} + for zinfo in zf.infolist(): + arcname = zinfo.filename + if isinstance(arcname, text_type): + u_arcname = arcname + else: + u_arcname = arcname.decode('utf-8') + if u_arcname == record_name: + continue + if '..' in u_arcname: + raise DistlibException('invalid entry in ' + 'wheel: %r' % u_arcname) + zf.extract(zinfo, workdir) + path = os.path.join(workdir, convert_path(u_arcname)) + path_map[u_arcname] = path + + # Remember the version. + original_version, _ = get_version(path_map, info_dir) + # Files extracted. Call the modifier. + modified = modifier(path_map, **kwargs) + if modified: + # Something changed - need to build a new wheel. + current_version, path = get_version(path_map, info_dir) + if current_version and (current_version == original_version): + # Add or update local version to signify changes. + update_version(current_version, path) + # Decide where the new wheel goes. + if dest_dir is None: + fd, newpath = tempfile.mkstemp(suffix='.whl', + prefix='wheel-update-', + dir=workdir) + os.close(fd) + else: + if not os.path.isdir(dest_dir): + raise DistlibException('Not a directory: %r' % + dest_dir) + newpath = os.path.join(dest_dir, self.filename) + archive_paths = list(path_map.items()) + distinfo = os.path.join(workdir, info_dir) + info = distinfo, info_dir + self.write_records(info, workdir, archive_paths) + self.build_zip(newpath, archive_paths) + if dest_dir is None: + shutil.copyfile(newpath, pathname) + return modified + + +def _get_glibc_version(): + import platform + ver = platform.libc_ver() + result = [] + if ver[0] == 'glibc': + for s in ver[1].split('.'): + result.append(int(s) if s.isdigit() else 0) + result = tuple(result) + return result + + +def compatible_tags(): + """ + Return (pyver, abi, arch) tuples compatible with this Python. + """ + versions = [VER_SUFFIX] + major = VER_SUFFIX[0] + for minor in range(sys.version_info[1] - 1, -1, -1): + versions.append(''.join([major, str(minor)])) + + abis = [] + for suffix in _get_suffixes(): + if suffix.startswith('.abi'): + abis.append(suffix.split('.', 2)[1]) + abis.sort() + if ABI != 'none': + abis.insert(0, ABI) + abis.append('none') + result = [] + + arches = [ARCH] + if sys.platform == 'darwin': + m = re.match(r'(\w+)_(\d+)_(\d+)_(\w+)$', ARCH) + if m: + name, major, minor, arch = m.groups() + minor = int(minor) + matches = [arch] + if arch in ('i386', 'ppc'): + matches.append('fat') + if arch in ('i386', 'ppc', 'x86_64'): + matches.append('fat3') + if arch in ('ppc64', 'x86_64'): + matches.append('fat64') + if arch in ('i386', 'x86_64'): + matches.append('intel') + if arch in ('i386', 'x86_64', 'intel', 'ppc', 'ppc64'): + matches.append('universal') + while minor >= 0: + for match in matches: + s = '%s_%s_%s_%s' % (name, major, minor, match) + if s != ARCH: # already there + arches.append(s) + minor -= 1 + + # Most specific - our Python version, ABI and arch + for abi in abis: + for arch in arches: + result.append((''.join((IMP_PREFIX, versions[0])), abi, arch)) + # manylinux + if abi != 'none' and sys.platform.startswith('linux'): + arch = arch.replace('linux_', '') + parts = _get_glibc_version() + if len(parts) == 2: + if parts >= (2, 5): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux1_%s' % arch)) + if parts >= (2, 12): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2010_%s' % arch)) + if parts >= (2, 17): + result.append((''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux2014_%s' % arch)) + result.append( + (''.join((IMP_PREFIX, versions[0])), abi, + 'manylinux_%s_%s_%s' % (parts[0], parts[1], arch))) + + # where no ABI / arch dependency, but IMP_PREFIX dependency + for i, version in enumerate(versions): + result.append((''.join((IMP_PREFIX, version)), 'none', 'any')) + if i == 0: + result.append((''.join((IMP_PREFIX, version[0])), 'none', 'any')) + + # no IMP_PREFIX, ABI or arch dependency + for i, version in enumerate(versions): + result.append((''.join(('py', version)), 'none', 'any')) + if i == 0: + result.append((''.join(('py', version[0])), 'none', 'any')) + + return set(result) + + +COMPATIBLE_TAGS = compatible_tags() + +del compatible_tags + + +def is_compatible(wheel, tags=None): + if not isinstance(wheel, Wheel): + wheel = Wheel(wheel) # assume it's a filename + result = False + if tags is None: + tags = COMPATIBLE_TAGS + for ver, abi, arch in tags: + if ver in wheel.pyver and abi in wheel.abi and arch in wheel.arch: + result = True + break + return result diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py new file mode 100644 index 00000000..7686fe85 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py @@ -0,0 +1,54 @@ +from .distro import ( + NORMALIZED_DISTRO_ID, + NORMALIZED_LSB_ID, + NORMALIZED_OS_ID, + LinuxDistribution, + __version__, + build_number, + codename, + distro_release_attr, + distro_release_info, + id, + info, + like, + linux_distribution, + lsb_release_attr, + lsb_release_info, + major_version, + minor_version, + name, + os_release_attr, + os_release_info, + uname_attr, + uname_info, + version, + version_parts, +) + +__all__ = [ + "NORMALIZED_DISTRO_ID", + "NORMALIZED_LSB_ID", + "NORMALIZED_OS_ID", + "LinuxDistribution", + "build_number", + "codename", + "distro_release_attr", + "distro_release_info", + "id", + "info", + "like", + "linux_distribution", + "lsb_release_attr", + "lsb_release_info", + "major_version", + "minor_version", + "name", + "os_release_attr", + "os_release_info", + "uname_attr", + "uname_info", + "version", + "version_parts", +] + +__version__ = __version__ diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py new file mode 100644 index 00000000..0c01d5b0 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py @@ -0,0 +1,4 @@ +from .distro import main + +if __name__ == "__main__": + main() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d268ab1853f8778f2be0eaf558b2532bdb614808 GIT binary patch literal 1009 zcmcJOzi$&U6vyu_*Cb7H&Ce!j2gKM6t;G*@LP($>R4KHmW%6R(?RJl)CG@vP@o0ysSj&(4T`h~C0c?qEyFrphYGDgl~$ofYY@-?Hs}V_X&oB0 z0ZrP37HvVBwxL5iut_(eOS{mcJ?PWE>r9;3`|Q#!ZZlsN2L2D%mLK#@=kVzG)w9t7 zeKBOigOfMMN973t_CcNz&fzZeRgDG|*xkxEl#?3^oYO~yK%z`i`q{tZCn_Zgn6G-EE!k?=9wmp0Ydf(!z;JWU$x8-`*&Oflg4?p+&RquW2 O>akPb{!mr-Z0K(kdKSO{ literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..090d4729e4f502a114af91e09632ce2219c656dd GIT binary patch literal 341 zcmXv~u}Z{15Z%oN3Ci_)Uyu{-2DKHj(oU>xmQ6Bb_mb>}-8B+>!OGTe5I@Dv&VV3T z*&SSG+lV$`eHg$qDM&$U($E`92}VU!rG(fd zB1m61LP~npvswH@!(c{-xDiSZ3Fl+w{A$LAokBTpjb%YGGFmjq`3qT(7Qas*O@pvB zxkTNdtW_@I+L|R+9>LxDOh`S?YXuH%hZda8K{$urK^dIDi>$^=)M$k_7EpIks|?!S zOQTN~N5|ll$9XIAN|flJRW0xibrHn>o56P5McWU_X=94p8qe(brSU2^4Qa(FrJrQ~ Wi|sw$zq5mnIC;2OF%nO066imm#9)E| literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2321ff3cc7dd345750bda18b3ff960ab10da474a GIT binary patch literal 53841 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 for more information. +""" + +import argparse +import json +import logging +import os +import re +import shlex +import subprocess +import sys +import warnings +from typing import ( + Any, + Callable, + Dict, + Iterable, + Optional, + Sequence, + TextIO, + Tuple, + Type, +) + +try: + from typing import TypedDict +except ImportError: + # Python 3.7 + TypedDict = dict + +__version__ = "1.9.0" + + +class VersionDict(TypedDict): + major: str + minor: str + build_number: str + + +class InfoDict(TypedDict): + id: str + version: str + version_parts: VersionDict + like: str + codename: str + + +_UNIXCONFDIR = os.environ.get("UNIXCONFDIR", "/etc") +_UNIXUSRLIBDIR = os.environ.get("UNIXUSRLIBDIR", "/usr/lib") +_OS_RELEASE_BASENAME = "os-release" + +#: Translation table for normalizing the "ID" attribute defined in os-release +#: files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as defined in the os-release file, translated to lower case, +#: with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_OS_ID = { + "ol": "oracle", # Oracle Linux + "opensuse-leap": "opensuse", # Newer versions of OpenSuSE report as opensuse-leap +} + +#: Translation table for normalizing the "Distributor ID" attribute returned by +#: the lsb_release command, for use by the :func:`distro.id` method. +#: +#: * Key: Value as returned by the lsb_release command, translated to lower +#: case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_LSB_ID = { + "enterpriseenterpriseas": "oracle", # Oracle Enterprise Linux 4 + "enterpriseenterpriseserver": "oracle", # Oracle Linux 5 + "redhatenterpriseworkstation": "rhel", # RHEL 6, 7 Workstation + "redhatenterpriseserver": "rhel", # RHEL 6, 7 Server + "redhatenterprisecomputenode": "rhel", # RHEL 6 ComputeNode +} + +#: Translation table for normalizing the distro ID derived from the file name +#: of distro release files, for use by the :func:`distro.id` method. +#: +#: * Key: Value as derived from the file name of a distro release file, +#: translated to lower case, with blanks translated to underscores. +#: +#: * Value: Normalized value. +NORMALIZED_DISTRO_ID = { + "redhat": "rhel", # RHEL 6.x, 7.x +} + +# Pattern for content of distro release file (reversed) +_DISTRO_RELEASE_CONTENT_REVERSED_PATTERN = re.compile( + r"(?:[^)]*\)(.*)\()? *(?:STL )?([\d.+\-a-z]*\d) *(?:esaeler *)?(.+)" +) + +# Pattern for base file name of distro release file +_DISTRO_RELEASE_BASENAME_PATTERN = re.compile(r"(\w+)[-_](release|version)$") + +# Base file names to be looked up for if _UNIXCONFDIR is not readable. +_DISTRO_RELEASE_BASENAMES = [ + "SuSE-release", + "altlinux-release", + "arch-release", + "base-release", + "centos-release", + "fedora-release", + "gentoo-release", + "mageia-release", + "mandrake-release", + "mandriva-release", + "mandrivalinux-release", + "manjaro-release", + "oracle-release", + "redhat-release", + "rocky-release", + "sl-release", + "slackware-version", +] + +# Base file names to be ignored when searching for distro release file +_DISTRO_RELEASE_IGNORE_BASENAMES = ( + "debian_version", + "lsb-release", + "oem-release", + _OS_RELEASE_BASENAME, + "system-release", + "plesk-release", + "iredmail-release", + "board-release", + "ec2_version", +) + + +def linux_distribution(full_distribution_name: bool = True) -> Tuple[str, str, str]: + """ + .. deprecated:: 1.6.0 + + :func:`distro.linux_distribution()` is deprecated. It should only be + used as a compatibility shim with Python's + :py:func:`platform.linux_distribution()`. Please use :func:`distro.id`, + :func:`distro.version` and :func:`distro.name` instead. + + Return information about the current OS distribution as a tuple + ``(id_name, version, codename)`` with items as follows: + + * ``id_name``: If *full_distribution_name* is false, the result of + :func:`distro.id`. Otherwise, the result of :func:`distro.name`. + + * ``version``: The result of :func:`distro.version`. + + * ``codename``: The extra item (usually in parentheses) after the + os-release version number, or the result of :func:`distro.codename`. + + The interface of this function is compatible with the original + :py:func:`platform.linux_distribution` function, supporting a subset of + its parameters. + + The data it returns may not exactly be the same, because it uses more data + sources than the original function, and that may lead to different data if + the OS distribution is not consistent across multiple data sources it + provides (there are indeed such distributions ...). + + Another reason for differences is the fact that the :func:`distro.id` + method normalizes the distro ID string to a reliable machine-readable value + for a number of popular OS distributions. + """ + warnings.warn( + "distro.linux_distribution() is deprecated. It should only be used as a " + "compatibility shim with Python's platform.linux_distribution(). Please use " + "distro.id(), distro.version() and distro.name() instead.", + DeprecationWarning, + stacklevel=2, + ) + return _distro.linux_distribution(full_distribution_name) + + +def id() -> str: + """ + Return the distro ID of the current distribution, as a + machine-readable string. + + For a number of OS distributions, the returned distro ID value is + *reliable*, in the sense that it is documented and that it does not change + across releases of the distribution. + + This package maintains the following reliable distro ID values: + + ============== ========================================= + Distro ID Distribution + ============== ========================================= + "ubuntu" Ubuntu + "debian" Debian + "rhel" RedHat Enterprise Linux + "centos" CentOS + "fedora" Fedora + "sles" SUSE Linux Enterprise Server + "opensuse" openSUSE + "amzn" Amazon Linux + "arch" Arch Linux + "buildroot" Buildroot + "cloudlinux" CloudLinux OS + "exherbo" Exherbo Linux + "gentoo" GenToo Linux + "ibm_powerkvm" IBM PowerKVM + "kvmibm" KVM for IBM z Systems + "linuxmint" Linux Mint + "mageia" Mageia + "mandriva" Mandriva Linux + "parallels" Parallels + "pidora" Pidora + "raspbian" Raspbian + "oracle" Oracle Linux (and Oracle Enterprise Linux) + "scientific" Scientific Linux + "slackware" Slackware + "xenserver" XenServer + "openbsd" OpenBSD + "netbsd" NetBSD + "freebsd" FreeBSD + "midnightbsd" MidnightBSD + "rocky" Rocky Linux + "aix" AIX + "guix" Guix System + "altlinux" ALT Linux + ============== ========================================= + + If you have a need to get distros for reliable IDs added into this set, + or if you find that the :func:`distro.id` function returns a different + distro ID for one of the listed distros, please create an issue in the + `distro issue tracker`_. + + **Lookup hierarchy and transformations:** + + First, the ID is obtained from the following sources, in the specified + order. The first available and non-empty value is used: + + * the value of the "ID" attribute of the os-release file, + + * the value of the "Distributor ID" attribute returned by the lsb_release + command, + + * the first part of the file name of the distro release file, + + The so determined ID value then passes the following transformations, + before it is returned by this method: + + * it is translated to lower case, + + * blanks (which should not be there anyway) are translated to underscores, + + * a normalization of the ID is performed, based upon + `normalization tables`_. The purpose of this normalization is to ensure + that the ID is as reliable as possible, even across incompatible changes + in the OS distributions. A common reason for an incompatible change is + the addition of an os-release file, or the addition of the lsb_release + command, with ID values that differ from what was previously determined + from the distro release file name. + """ + return _distro.id() + + +def name(pretty: bool = False) -> str: + """ + Return the name of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the name is returned without version or codename. + (e.g. "CentOS Linux") + + If *pretty* is true, the version and codename are appended. + (e.g. "CentOS Linux 7.1.1503 (Core)") + + **Lookup hierarchy:** + + The name is obtained from the following sources, in the specified order. + The first available and non-empty value is used: + + * If *pretty* is false: + + - the value of the "NAME" attribute of the os-release file, + + - the value of the "Distributor ID" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file. + + * If *pretty* is true: + + - the value of the "PRETTY_NAME" attribute of the os-release file, + + - the value of the "Description" attribute returned by the lsb_release + command, + + - the value of the "" field of the distro release file, appended + with the value of the pretty version ("" and "" + fields) of the distro release file, if available. + """ + return _distro.name(pretty) + + +def version(pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the current OS distribution, as a human-readable + string. + + If *pretty* is false, the version is returned without codename (e.g. + "7.0"). + + If *pretty* is true, the codename in parenthesis is appended, if the + codename is non-empty (e.g. "7.0 (Maipo)"). + + Some distributions provide version numbers with different precisions in + the different sources of distribution information. Examining the different + sources in a fixed priority order does not always yield the most precise + version (e.g. for Debian 8.2, or CentOS 7.1). + + Some other distributions may not provide this kind of information. In these + cases, an empty string would be returned. This behavior can be observed + with rolling releases distributions (e.g. Arch Linux). + + The *best* parameter can be used to control the approach for the returned + version: + + If *best* is false, the first non-empty version number in priority order of + the examined sources is returned. + + If *best* is true, the most precise version number out of all examined + sources is returned. + + **Lookup hierarchy:** + + In all cases, the version number is obtained from the following sources. + If *best* is false, this order represents the priority order: + + * the value of the "VERSION_ID" attribute of the os-release file, + * the value of the "Release" attribute returned by the lsb_release + command, + * the version number parsed from the "" field of the first line + of the distro release file, + * the version number parsed from the "PRETTY_NAME" attribute of the + os-release file, if it follows the format of the distro release files. + * the version number parsed from the "Description" attribute returned by + the lsb_release command, if it follows the format of the distro release + files. + """ + return _distro.version(pretty, best) + + +def version_parts(best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the current OS distribution as a tuple + ``(major, minor, build_number)`` with items as follows: + + * ``major``: The result of :func:`distro.major_version`. + + * ``minor``: The result of :func:`distro.minor_version`. + + * ``build_number``: The result of :func:`distro.build_number`. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.version_parts(best) + + +def major_version(best: bool = False) -> str: + """ + Return the major version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The major version is the first + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.major_version(best) + + +def minor_version(best: bool = False) -> str: + """ + Return the minor version of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The minor version is the second + part of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.minor_version(best) + + +def build_number(best: bool = False) -> str: + """ + Return the build number of the current OS distribution, as a string, + if provided. + Otherwise, the empty string is returned. The build number is the third part + of the dot-separated version string. + + For a description of the *best* parameter, see the :func:`distro.version` + method. + """ + return _distro.build_number(best) + + +def like() -> str: + """ + Return a space-separated list of distro IDs of distributions that are + closely related to the current OS distribution in regards to packaging + and programming interfaces, for example distributions the current + distribution is a derivative from. + + **Lookup hierarchy:** + + This information item is only provided by the os-release file. + For details, see the description of the "ID_LIKE" attribute in the + `os-release man page + `_. + """ + return _distro.like() + + +def codename() -> str: + """ + Return the codename for the release of the current OS distribution, + as a string. + + If the distribution does not have a codename, an empty string is returned. + + Note that the returned codename is not always really a codename. For + example, openSUSE returns "x86_64". This function does not handle such + cases in any special way and just returns the string it finds, if any. + + **Lookup hierarchy:** + + * the codename within the "VERSION" attribute of the os-release file, if + provided, + + * the value of the "Codename" attribute returned by the lsb_release + command, + + * the value of the "" field of the distro release file. + """ + return _distro.codename() + + +def info(pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information items about the current OS + distribution in a dictionary, as shown in the following example: + + .. sourcecode:: python + + { + 'id': 'rhel', + 'version': '7.0', + 'version_parts': { + 'major': '7', + 'minor': '0', + 'build_number': '' + }, + 'like': 'fedora', + 'codename': 'Maipo' + } + + The dictionary structure and keys are always the same, regardless of which + information items are available in the underlying data sources. The values + for the various keys are as follows: + + * ``id``: The result of :func:`distro.id`. + + * ``version``: The result of :func:`distro.version`. + + * ``version_parts -> major``: The result of :func:`distro.major_version`. + + * ``version_parts -> minor``: The result of :func:`distro.minor_version`. + + * ``version_parts -> build_number``: The result of + :func:`distro.build_number`. + + * ``like``: The result of :func:`distro.like`. + + * ``codename``: The result of :func:`distro.codename`. + + For a description of the *pretty* and *best* parameters, see the + :func:`distro.version` method. + """ + return _distro.info(pretty, best) + + +def os_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the os-release file data source of the current OS distribution. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_info() + + +def lsb_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the lsb_release command data source of the current OS distribution. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_info() + + +def distro_release_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_info() + + +def uname_info() -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information items + from the distro release file data source of the current OS distribution. + """ + return _distro.uname_info() + + +def os_release_attr(attribute: str) -> str: + """ + Return a single named information item from the os-release file data source + of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `os-release file`_ for details about these information items. + """ + return _distro.os_release_attr(attribute) + + +def lsb_release_attr(attribute: str) -> str: + """ + Return a single named information item from the lsb_release command output + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `lsb_release command output`_ for details about these information + items. + """ + return _distro.lsb_release_attr(attribute) + + +def distro_release_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + + See `distro release file`_ for details about these information items. + """ + return _distro.distro_release_attr(attribute) + + +def uname_attr(attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the current OS distribution. + + Parameters: + + * ``attribute`` (string): Key of the information item. + + Returns: + + * (string): Value of the information item, if the item exists. + The empty string, if the item does not exist. + """ + return _distro.uname_attr(attribute) + + +try: + from functools import cached_property +except ImportError: + # Python < 3.8 + class cached_property: # type: ignore + """A version of @property which caches the value. On access, it calls the + underlying function and sets the value in `__dict__` so future accesses + will not re-call the property. + """ + + def __init__(self, f: Callable[[Any], Any]) -> None: + self._fname = f.__name__ + self._f = f + + def __get__(self, obj: Any, owner: Type[Any]) -> Any: + assert obj is not None, f"call {self._fname} on an instance" + ret = obj.__dict__[self._fname] = self._f(obj) + return ret + + +class LinuxDistribution: + """ + Provides information about a OS distribution. + + This package creates a private module-global instance of this class with + default initialization arguments, that is used by the + `consolidated accessor functions`_ and `single source accessor functions`_. + By using default initialization arguments, that module-global instance + returns data about the current OS distribution (i.e. the distro this + package runs on). + + Normally, it is not necessary to create additional instances of this class. + However, in situations where control is needed over the exact data sources + that are used, instances of this class can be created with a specific + distro release file, or a specific os-release file, or without invoking the + lsb_release command. + """ + + def __init__( + self, + include_lsb: Optional[bool] = None, + os_release_file: str = "", + distro_release_file: str = "", + include_uname: Optional[bool] = None, + root_dir: Optional[str] = None, + include_oslevel: Optional[bool] = None, + ) -> None: + """ + The initialization method of this class gathers information from the + available data sources, and stores that in private instance attributes. + Subsequent access to the information items uses these private instance + attributes, so that the data sources are read only once. + + Parameters: + + * ``include_lsb`` (bool): Controls whether the + `lsb_release command output`_ is included as a data source. + + If the lsb_release command is not available in the program execution + path, the data source for the lsb_release command will be empty. + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is to be used as a data source. + + An empty string (the default) will cause the default path name to + be used (see `os-release file`_ for details). + + If the specified or defaulted os-release file does not exist, the + data source for the os-release file will be empty. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is to be used as a data source. + + An empty string (the default) will cause a default search algorithm + to be used (see `distro release file`_ for details). + + If the specified distro release file does not exist, or if no default + distro release file can be found, the data source for the distro + release file will be empty. + + * ``include_uname`` (bool): Controls whether uname command output is + included as a data source. If the uname command is not available in + the program execution path the data source for the uname command will + be empty. + + * ``root_dir`` (string): The absolute path to the root directory to use + to find distro-related information files. Note that ``include_*`` + parameters must not be enabled in combination with ``root_dir``. + + * ``include_oslevel`` (bool): Controls whether (AIX) oslevel command + output is included as a data source. If the oslevel command is not + available in the program execution path the data source will be + empty. + + Public instance attributes: + + * ``os_release_file`` (string): The path name of the + `os-release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``distro_release_file`` (string): The path name of the + `distro release file`_ that is actually used as a data source. The + empty string if no distro release file is used as a data source. + + * ``include_lsb`` (bool): The result of the ``include_lsb`` parameter. + This controls whether the lsb information will be loaded. + + * ``include_uname`` (bool): The result of the ``include_uname`` + parameter. This controls whether the uname information will + be loaded. + + * ``include_oslevel`` (bool): The result of the ``include_oslevel`` + parameter. This controls whether (AIX) oslevel information will be + loaded. + + * ``root_dir`` (string): The result of the ``root_dir`` parameter. + The absolute path to the root directory to use to find distro-related + information files. + + Raises: + + * :py:exc:`ValueError`: Initialization parameters combination is not + supported. + + * :py:exc:`OSError`: Some I/O issue with an os-release file or distro + release file. + + * :py:exc:`UnicodeError`: A data source has unexpected characters or + uses an unexpected encoding. + """ + self.root_dir = root_dir + self.etc_dir = os.path.join(root_dir, "etc") if root_dir else _UNIXCONFDIR + self.usr_lib_dir = ( + os.path.join(root_dir, "usr/lib") if root_dir else _UNIXUSRLIBDIR + ) + + if os_release_file: + self.os_release_file = os_release_file + else: + etc_dir_os_release_file = os.path.join(self.etc_dir, _OS_RELEASE_BASENAME) + usr_lib_os_release_file = os.path.join( + self.usr_lib_dir, _OS_RELEASE_BASENAME + ) + + # NOTE: The idea is to respect order **and** have it set + # at all times for API backwards compatibility. + if os.path.isfile(etc_dir_os_release_file) or not os.path.isfile( + usr_lib_os_release_file + ): + self.os_release_file = etc_dir_os_release_file + else: + self.os_release_file = usr_lib_os_release_file + + self.distro_release_file = distro_release_file or "" # updated later + + is_root_dir_defined = root_dir is not None + if is_root_dir_defined and (include_lsb or include_uname or include_oslevel): + raise ValueError( + "Including subprocess data sources from specific root_dir is disallowed" + " to prevent false information" + ) + self.include_lsb = ( + include_lsb if include_lsb is not None else not is_root_dir_defined + ) + self.include_uname = ( + include_uname if include_uname is not None else not is_root_dir_defined + ) + self.include_oslevel = ( + include_oslevel if include_oslevel is not None else not is_root_dir_defined + ) + + def __repr__(self) -> str: + """Return repr of all info""" + return ( + "LinuxDistribution(" + "os_release_file={self.os_release_file!r}, " + "distro_release_file={self.distro_release_file!r}, " + "include_lsb={self.include_lsb!r}, " + "include_uname={self.include_uname!r}, " + "include_oslevel={self.include_oslevel!r}, " + "root_dir={self.root_dir!r}, " + "_os_release_info={self._os_release_info!r}, " + "_lsb_release_info={self._lsb_release_info!r}, " + "_distro_release_info={self._distro_release_info!r}, " + "_uname_info={self._uname_info!r}, " + "_oslevel_info={self._oslevel_info!r})".format(self=self) + ) + + def linux_distribution( + self, full_distribution_name: bool = True + ) -> Tuple[str, str, str]: + """ + Return information about the OS distribution that is compatible + with Python's :func:`platform.linux_distribution`, supporting a subset + of its parameters. + + For details, see :func:`distro.linux_distribution`. + """ + return ( + self.name() if full_distribution_name else self.id(), + self.version(), + self._os_release_info.get("release_codename") or self.codename(), + ) + + def id(self) -> str: + """Return the distro ID of the OS distribution, as a string. + + For details, see :func:`distro.id`. + """ + + def normalize(distro_id: str, table: Dict[str, str]) -> str: + distro_id = distro_id.lower().replace(" ", "_") + return table.get(distro_id, distro_id) + + distro_id = self.os_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_OS_ID) + + distro_id = self.lsb_release_attr("distributor_id") + if distro_id: + return normalize(distro_id, NORMALIZED_LSB_ID) + + distro_id = self.distro_release_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + distro_id = self.uname_attr("id") + if distro_id: + return normalize(distro_id, NORMALIZED_DISTRO_ID) + + return "" + + def name(self, pretty: bool = False) -> str: + """ + Return the name of the OS distribution, as a string. + + For details, see :func:`distro.name`. + """ + name = ( + self.os_release_attr("name") + or self.lsb_release_attr("distributor_id") + or self.distro_release_attr("name") + or self.uname_attr("name") + ) + if pretty: + name = self.os_release_attr("pretty_name") or self.lsb_release_attr( + "description" + ) + if not name: + name = self.distro_release_attr("name") or self.uname_attr("name") + version = self.version(pretty=True) + if version: + name = f"{name} {version}" + return name or "" + + def version(self, pretty: bool = False, best: bool = False) -> str: + """ + Return the version of the OS distribution, as a string. + + For details, see :func:`distro.version`. + """ + versions = [ + self.os_release_attr("version_id"), + self.lsb_release_attr("release"), + self.distro_release_attr("version_id"), + self._parse_distro_release_content(self.os_release_attr("pretty_name")).get( + "version_id", "" + ), + self._parse_distro_release_content( + self.lsb_release_attr("description") + ).get("version_id", ""), + self.uname_attr("release"), + ] + if self.uname_attr("id").startswith("aix"): + # On AIX platforms, prefer oslevel command output. + versions.insert(0, self.oslevel_info()) + elif self.id() == "debian" or "debian" in self.like().split(): + # On Debian-like, add debian_version file content to candidates list. + versions.append(self._debian_version) + version = "" + if best: + # This algorithm uses the last version in priority order that has + # the best precision. If the versions are not in conflict, that + # does not matter; otherwise, using the last one instead of the + # first one might be considered a surprise. + for v in versions: + if v.count(".") > version.count(".") or version == "": + version = v + else: + for v in versions: + if v != "": + version = v + break + if pretty and version and self.codename(): + version = f"{version} ({self.codename()})" + return version + + def version_parts(self, best: bool = False) -> Tuple[str, str, str]: + """ + Return the version of the OS distribution, as a tuple of version + numbers. + + For details, see :func:`distro.version_parts`. + """ + version_str = self.version(best=best) + if version_str: + version_regex = re.compile(r"(\d+)\.?(\d+)?\.?(\d+)?") + matches = version_regex.match(version_str) + if matches: + major, minor, build_number = matches.groups() + return major, minor or "", build_number or "" + return "", "", "" + + def major_version(self, best: bool = False) -> str: + """ + Return the major version number of the current distribution. + + For details, see :func:`distro.major_version`. + """ + return self.version_parts(best)[0] + + def minor_version(self, best: bool = False) -> str: + """ + Return the minor version number of the current distribution. + + For details, see :func:`distro.minor_version`. + """ + return self.version_parts(best)[1] + + def build_number(self, best: bool = False) -> str: + """ + Return the build number of the current distribution. + + For details, see :func:`distro.build_number`. + """ + return self.version_parts(best)[2] + + def like(self) -> str: + """ + Return the IDs of distributions that are like the OS distribution. + + For details, see :func:`distro.like`. + """ + return self.os_release_attr("id_like") or "" + + def codename(self) -> str: + """ + Return the codename of the OS distribution. + + For details, see :func:`distro.codename`. + """ + try: + # Handle os_release specially since distros might purposefully set + # this to empty string to have no codename + return self._os_release_info["codename"] + except KeyError: + return ( + self.lsb_release_attr("codename") + or self.distro_release_attr("codename") + or "" + ) + + def info(self, pretty: bool = False, best: bool = False) -> InfoDict: + """ + Return certain machine-readable information about the OS + distribution. + + For details, see :func:`distro.info`. + """ + return InfoDict( + id=self.id(), + version=self.version(pretty, best), + version_parts=VersionDict( + major=self.major_version(best), + minor=self.minor_version(best), + build_number=self.build_number(best), + ), + like=self.like(), + codename=self.codename(), + ) + + def os_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the os-release file data source of the OS distribution. + + For details, see :func:`distro.os_release_info`. + """ + return self._os_release_info + + def lsb_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the lsb_release command data source of the OS + distribution. + + For details, see :func:`distro.lsb_release_info`. + """ + return self._lsb_release_info + + def distro_release_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the distro release file data source of the OS + distribution. + + For details, see :func:`distro.distro_release_info`. + """ + return self._distro_release_info + + def uname_info(self) -> Dict[str, str]: + """ + Return a dictionary containing key-value pairs for the information + items from the uname command data source of the OS distribution. + + For details, see :func:`distro.uname_info`. + """ + return self._uname_info + + def oslevel_info(self) -> str: + """ + Return AIX' oslevel command output. + """ + return self._oslevel_info + + def os_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the os-release file data + source of the OS distribution. + + For details, see :func:`distro.os_release_attr`. + """ + return self._os_release_info.get(attribute, "") + + def lsb_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the lsb_release command + output data source of the OS distribution. + + For details, see :func:`distro.lsb_release_attr`. + """ + return self._lsb_release_info.get(attribute, "") + + def distro_release_attr(self, attribute: str) -> str: + """ + Return a single named information item from the distro release file + data source of the OS distribution. + + For details, see :func:`distro.distro_release_attr`. + """ + return self._distro_release_info.get(attribute, "") + + def uname_attr(self, attribute: str) -> str: + """ + Return a single named information item from the uname command + output data source of the OS distribution. + + For details, see :func:`distro.uname_attr`. + """ + return self._uname_info.get(attribute, "") + + @cached_property + def _os_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified os-release file. + + Returns: + A dictionary containing all information items. + """ + if os.path.isfile(self.os_release_file): + with open(self.os_release_file, encoding="utf-8") as release_file: + return self._parse_os_release_content(release_file) + return {} + + @staticmethod + def _parse_os_release_content(lines: TextIO) -> Dict[str, str]: + """ + Parse the lines of an os-release file. + + Parameters: + + * lines: Iterable through the lines in the os-release file. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + lexer = shlex.shlex(lines, posix=True) + lexer.whitespace_split = True + + tokens = list(lexer) + for token in tokens: + # At this point, all shell-like parsing has been done (i.e. + # comments processed, quotes and backslash escape sequences + # processed, multi-line values assembled, trailing newlines + # stripped, etc.), so the tokens are now either: + # * variable assignments: var=value + # * commands or their arguments (not allowed in os-release) + # Ignore any tokens that are not variable assignments + if "=" in token: + k, v = token.split("=", 1) + props[k.lower()] = v + + if "version" in props: + # extract release codename (if any) from version attribute + match = re.search(r"\((\D+)\)|,\s*(\D+)", props["version"]) + if match: + release_codename = match.group(1) or match.group(2) + props["codename"] = props["release_codename"] = release_codename + + if "version_codename" in props: + # os-release added a version_codename field. Use that in + # preference to anything else Note that some distros purposefully + # do not have code names. They should be setting + # version_codename="" + props["codename"] = props["version_codename"] + elif "ubuntu_codename" in props: + # Same as above but a non-standard field name used on older Ubuntus + props["codename"] = props["ubuntu_codename"] + + return props + + @cached_property + def _lsb_release_info(self) -> Dict[str, str]: + """ + Get the information items from the lsb_release command output. + + Returns: + A dictionary containing all information items. + """ + if not self.include_lsb: + return {} + try: + cmd = ("lsb_release", "-a") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + # Command not found or lsb_release returned error + except (OSError, subprocess.CalledProcessError): + return {} + content = self._to_str(stdout).splitlines() + return self._parse_lsb_release_content(content) + + @staticmethod + def _parse_lsb_release_content(lines: Iterable[str]) -> Dict[str, str]: + """ + Parse the output of the lsb_release command. + + Parameters: + + * lines: Iterable through the lines of the lsb_release output. + Each line must be a unicode string or a UTF-8 encoded byte + string. + + Returns: + A dictionary containing all information items. + """ + props = {} + for line in lines: + kv = line.strip("\n").split(":", 1) + if len(kv) != 2: + # Ignore lines without colon. + continue + k, v = kv + props.update({k.replace(" ", "_").lower(): v.strip()}) + return props + + @cached_property + def _uname_info(self) -> Dict[str, str]: + if not self.include_uname: + return {} + try: + cmd = ("uname", "-rs") + stdout = subprocess.check_output(cmd, stderr=subprocess.DEVNULL) + except OSError: + return {} + content = self._to_str(stdout).splitlines() + return self._parse_uname_content(content) + + @cached_property + def _oslevel_info(self) -> str: + if not self.include_oslevel: + return "" + try: + stdout = subprocess.check_output("oslevel", stderr=subprocess.DEVNULL) + except (OSError, subprocess.CalledProcessError): + return "" + return self._to_str(stdout).strip() + + @cached_property + def _debian_version(self) -> str: + try: + with open( + os.path.join(self.etc_dir, "debian_version"), encoding="ascii" + ) as fp: + return fp.readline().rstrip() + except FileNotFoundError: + return "" + + @staticmethod + def _parse_uname_content(lines: Sequence[str]) -> Dict[str, str]: + if not lines: + return {} + props = {} + match = re.search(r"^([^\s]+)\s+([\d\.]+)", lines[0].strip()) + if match: + name, version = match.groups() + + # This is to prevent the Linux kernel version from + # appearing as the 'best' version on otherwise + # identifiable distributions. + if name == "Linux": + return {} + props["id"] = name.lower() + props["name"] = name + props["release"] = version + return props + + @staticmethod + def _to_str(bytestring: bytes) -> str: + encoding = sys.getfilesystemencoding() + return bytestring.decode(encoding) + + @cached_property + def _distro_release_info(self) -> Dict[str, str]: + """ + Get the information items from the specified distro release file. + + Returns: + A dictionary containing all information items. + """ + if self.distro_release_file: + # If it was specified, we use it and parse what we can, even if + # its file name or content does not match the expected pattern. + distro_info = self._parse_distro_release_file(self.distro_release_file) + basename = os.path.basename(self.distro_release_file) + # The file name pattern for user-specified distro release files + # is somewhat more tolerant (compared to when searching for the + # file), because we want to use what was specified as best as + # possible. + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + else: + try: + basenames = [ + basename + for basename in os.listdir(self.etc_dir) + if basename not in _DISTRO_RELEASE_IGNORE_BASENAMES + and os.path.isfile(os.path.join(self.etc_dir, basename)) + ] + # We sort for repeatability in cases where there are multiple + # distro specific files; e.g. CentOS, Oracle, Enterprise all + # containing `redhat-release` on top of their own. + basenames.sort() + except OSError: + # This may occur when /etc is not readable but we can't be + # sure about the *-release files. Check common entries of + # /etc for information. If they turn out to not be there the + # error is handled in `_parse_distro_release_file()`. + basenames = _DISTRO_RELEASE_BASENAMES + for basename in basenames: + match = _DISTRO_RELEASE_BASENAME_PATTERN.match(basename) + if match is None: + continue + filepath = os.path.join(self.etc_dir, basename) + distro_info = self._parse_distro_release_file(filepath) + # The name is always present if the pattern matches. + if "name" not in distro_info: + continue + self.distro_release_file = filepath + break + else: # the loop didn't "break": no candidate. + return {} + + if match is not None: + distro_info["id"] = match.group(1) + + # CloudLinux < 7: manually enrich info with proper id. + if "cloudlinux" in distro_info.get("name", "").lower(): + distro_info["id"] = "cloudlinux" + + return distro_info + + def _parse_distro_release_file(self, filepath: str) -> Dict[str, str]: + """ + Parse a distro release file. + + Parameters: + + * filepath: Path name of the distro release file. + + Returns: + A dictionary containing all information items. + """ + try: + with open(filepath, encoding="utf-8") as fp: + # Only parse the first line. For instance, on SLES there + # are multiple lines. We don't want them... + return self._parse_distro_release_content(fp.readline()) + except OSError: + # Ignore not being able to read a specific, seemingly version + # related file. + # See https://github.com/python-distro/distro/issues/162 + return {} + + @staticmethod + def _parse_distro_release_content(line: str) -> Dict[str, str]: + """ + Parse a line from a distro release file. + + Parameters: + * line: Line from the distro release file. Must be a unicode string + or a UTF-8 encoded byte string. + + Returns: + A dictionary containing all information items. + """ + matches = _DISTRO_RELEASE_CONTENT_REVERSED_PATTERN.match(line.strip()[::-1]) + distro_info = {} + if matches: + # regexp ensures non-None + distro_info["name"] = matches.group(3)[::-1] + if matches.group(2): + distro_info["version_id"] = matches.group(2)[::-1] + if matches.group(1): + distro_info["codename"] = matches.group(1)[::-1] + elif line: + distro_info["name"] = line.strip() + return distro_info + + +_distro = LinuxDistribution() + + +def main() -> None: + logger = logging.getLogger(__name__) + logger.setLevel(logging.DEBUG) + logger.addHandler(logging.StreamHandler(sys.stdout)) + + parser = argparse.ArgumentParser(description="OS distro info tool") + parser.add_argument( + "--json", "-j", help="Output in machine readable format", action="store_true" + ) + + parser.add_argument( + "--root-dir", + "-r", + type=str, + dest="root_dir", + help="Path to the root filesystem directory (defaults to /)", + ) + + args = parser.parse_args() + + if args.root_dir: + dist = LinuxDistribution( + include_lsb=False, + include_uname=False, + include_oslevel=False, + root_dir=args.root_dir, + ) + else: + dist = _distro + + if args.json: + logger.info(json.dumps(dist.info(), indent=4, sort_keys=True)) + else: + logger.info("Name: %s", dist.name(pretty=True)) + distribution_version = dist.version(pretty=True) + logger.info("Version: %s", distribution_version) + distribution_codename = dist.codename() + logger.info("Codename: %s", distribution_codename) + + +if __name__ == "__main__": + main() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/py.typed b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distro/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py new file mode 100644 index 00000000..a40eeafc --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py @@ -0,0 +1,44 @@ +from .package_data import __version__ +from .core import ( + IDNABidiError, + IDNAError, + InvalidCodepoint, + InvalidCodepointContext, + alabel, + check_bidi, + check_hyphen_ok, + check_initial_combiner, + check_label, + check_nfc, + decode, + encode, + ulabel, + uts46_remap, + valid_contextj, + valid_contexto, + valid_label_length, + valid_string_length, +) +from .intranges import intranges_contain + +__all__ = [ + "IDNABidiError", + "IDNAError", + "InvalidCodepoint", + "InvalidCodepointContext", + "alabel", + "check_bidi", + "check_hyphen_ok", + "check_initial_combiner", + "check_label", + "check_nfc", + "decode", + "encode", + "intranges_contain", + "ulabel", + "uts46_remap", + "valid_contextj", + "valid_contexto", + "valid_label_length", + "valid_string_length", +] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5aca8f20ec19f3e3e401e71356e591f82e58c733 GIT binary patch literal 930 zcmbu7Igb-D6o5TBCdcGXHcNr%kT%7x#UUz$1Pemjte|ycIWuO)8y_Rv38bW_r>En$ z@DD6eQPCk*XeBD_OrTgK8eDwy-W$Km?|tg`yTG5LBa*+Y1Mnp%zfWy1Tv{)@2N}pB z4n%~aD9ANl6LnM<4b%`#)D$s_MGLh=8?{9Tbwn3+MS>F1Lp{+)eK9}-F+@W#LL)Io zV=+M!F-21`L$h7HIzJF|G>tFp`Qs-n zW6!i!+I50jiK8>QA)IBWDx;-h(z?UzmQy7yePdlrI9XEex@kev6<+#qZdl31wk)W` zYUSpYfk|c=;W$-d$t2Y-sq9sRPNm3Ksf#n3`qVC_vih#8E6LiL`wy_Df|PEsE71qr z6>@P+S8h`M-+5wAWo`>Mt!&0>CiA_~Kg`&-sEN#}*@YuaE~dKSA5Av{;(%5_JD?K~ z2CkEUUO+!!5HJjw2aE#70h54fz%1av<9u<$^-7YiNKSD^EYW^(fNP{m)Bj5S&#bQV zr_)`Hu7xq-9OIAR(x(SM-@!r&3NMr&h7`2mEG^&*tuE-wQfOY=B`M@_${93N`(=Vg zr;r#!t${i5o|Y^*eNO#!iB%d>xq+N5VY#)1lJ`#T+=Yf&dc5!4z><~FZ>7xqWtK?- zF%D~j@kzOL?T12TYfc~OTfVrk#pc-KTRn=R&*1h|Z5q|Cz~A_B1fs?F#w@A5ZRwld F;}=6{18V>P literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6741d3adf9d28db767e444236a0e495448fa91b GIT binary patch literal 5025 zcmd6rO>7&-6@X{S-Q`lGOi9#_MJcux|2 zxnyToHmFj88wjY31hL!(5P{_20zKGpQS?$E1zNzp8R$if5{OI8~e2N0N{osrDJls>b7}6R9F=+OiFzOwlS;}P^`;u44JlvLClD8*p2W^dy0+wE|+*NPmq^p)q+_C{IePG%56w4NF z=?BY3x&v(cA7d*zx@eHw?f}~Ww;gofM6G2(jCQ~r$%%d2 zZD>bjjs%i*hl7uB#=?>%`uZV-rV?F_vbJu+fRI+jbu@ zvbOZ*Y$i!<_R<6{$q!DHs13SrZo|*aTQERmXDW){_Y_>g;MR6|SZ#&l2LFX#Jix=Ppx zQ$U18hArCiRGOt!i{Sumcaj=6-L`1bo@!uqT=AA(U?FmDHyVN`ZVu5@kdZdB;$U1@OhMPy99=P3h$9+3gI5b{D z^*1eOa=F4|g`(Bt)Z9h>Z1@DWC z8b{_uO`MlMc9r9!PrERdXsNjZwsIua+Qr7bhY zs4bb9q;A==n#ll^7-E{AJzGqqbtBxsa6W76&juiC%lyhSZNJ4-9a)Uc;ZVysfu=?AUR&4Vv7*1_>gg+|Kk2{T_VLi?{=vII-lo>PaLv0U7X3{hy_T1Ld#d2y zb!BYbOWM2FcaWXk%h_w$>+P!@gEtNrI$mD%7Zv|U?xpe7rrv_myC@a|UHLax0=+9r zFJH!qu$Q5m#df3ULD37s7AMo`Bxepo--_))aR9|$6i9l9H|R|<6zJBOLm(E&x@(uz zcO7^G(Vu`f5Pdqvqub~199Vhd+?~LK zIE&;u7D1Y`2ue7Mlr1c(lBCv$Ri#IbE){lES>&yMukw%qlP*jHRz^pn3ih9Dc|Gl1+0UfJHu_uaD^OK0I#yg z(}+dT2t9cQC?{+`iV+ZYLzz8rRX?3Pjwi8+Jmo!FC68nBDl}{U3&eLLPv~KwGr#xu z?#}~z?+4qLto+-n!RHsp9&Y1N=Vl)DJ&8yC|1*#Lq`hsnxdUZ}w?H2REv05uHnigO%?CHNn|-!>{y5 z5X&S7{~h4(F(FH8FS10LVPH}XIZ}If-70GnRq9pE9%ohMU7c0MuOt>uIu8~;shkwL zggpGgb*t>J!CTHfVJrB~*}re!!LWxN0}KAr;a;-cqSt&)=lW-xbk3<`wjYi#tmq}a zqLmzIV4A^Sm-!pYw7vZCbkczL9|E-255Elg7Ub*9=O5gC9E^z*-Q##70h6jMJ`xI9KfZ~_ei6Y5-p~IcF7*8`=H#ppJ4(V{(*fdU*V_uC)4B=gXv;>nmBY@<=vDR> z*x@Xie+IGc76jo-a_9?k=pJdjN4#H>fdUzL5PWWF|MKXy(Uo1JtHDDnq-jHJ5e62I zUmd?PzCj?lF}Pdk%eSv}jutvcHwa`ljtaf?D#&d71X}kl9mw~ug@y{Dp$!7r4Q0D- uUGWKW9v)2)T_3#h(%K7$3h>u=xP+SZ5D}U#%fAl%DzFsz0+t_-;C}#_eJI%g literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1735405513fc5e0e2c8e979885abc2fa54dab45b GIT binary patch literal 936 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 bI=X&yH;{$hK!n{uM7qIPxbzs)L_q&9J{8k% literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72dbd5213a46c7a3ef9160046527c3e4c1a22cd2 GIT binary patch literal 99525 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4c8492ec7f0097acb9be6ebe7886dc5e30892a1 GIT binary patch literal 265 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/codec.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/codec.py new file mode 100644 index 00000000..c855a4de --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/codec.py @@ -0,0 +1,118 @@ +from .core import encode, decode, alabel, ulabel, IDNAError +import codecs +import re +from typing import Any, Tuple, Optional + +_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]') + +class Codec(codecs.Codec): + + def encode(self, data: str, errors: str = 'strict') -> Tuple[bytes, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return b"", 0 + + return encode(data), len(data) + + def decode(self, data: bytes, errors: str = 'strict') -> Tuple[str, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return '', 0 + + return decode(data), len(data) + +class IncrementalEncoder(codecs.BufferedIncrementalEncoder): + def _buffer_encode(self, data: str, errors: str, final: bool) -> Tuple[bytes, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return b'', 0 + + labels = _unicode_dots_re.split(data) + trailing_dot = b'' + if labels: + if not labels[-1]: + trailing_dot = b'.' + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = b'.' + + result = [] + size = 0 + for label in labels: + result.append(alabel(label)) + if size: + size += 1 + size += len(label) + + # Join with U+002E + result_bytes = b'.'.join(result) + trailing_dot + size += len(trailing_dot) + return result_bytes, size + +class IncrementalDecoder(codecs.BufferedIncrementalDecoder): + def _buffer_decode(self, data: Any, errors: str, final: bool) -> Tuple[str, int]: + if errors != 'strict': + raise IDNAError('Unsupported error handling \"{}\"'.format(errors)) + + if not data: + return ('', 0) + + if not isinstance(data, str): + data = str(data, 'ascii') + + labels = _unicode_dots_re.split(data) + trailing_dot = '' + if labels: + if not labels[-1]: + trailing_dot = '.' + del labels[-1] + elif not final: + # Keep potentially unfinished label until the next call + del labels[-1] + if labels: + trailing_dot = '.' + + result = [] + size = 0 + for label in labels: + result.append(ulabel(label)) + if size: + size += 1 + size += len(label) + + result_str = '.'.join(result) + trailing_dot + size += len(trailing_dot) + return (result_str, size) + + +class StreamWriter(Codec, codecs.StreamWriter): + pass + + +class StreamReader(Codec, codecs.StreamReader): + pass + + +def search_function(name: str) -> Optional[codecs.CodecInfo]: + if name != 'idna2008': + return None + return codecs.CodecInfo( + name=name, + encode=Codec().encode, + decode=Codec().decode, + incrementalencoder=IncrementalEncoder, + incrementaldecoder=IncrementalDecoder, + streamwriter=StreamWriter, + streamreader=StreamReader, + ) + +codecs.register(search_function) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/compat.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/compat.py new file mode 100644 index 00000000..786e6bda --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/compat.py @@ -0,0 +1,13 @@ +from .core import * +from .codec import * +from typing import Any, Union + +def ToASCII(label: str) -> bytes: + return encode(label) + +def ToUnicode(label: Union[bytes, bytearray]) -> str: + return decode(label) + +def nameprep(s: Any) -> None: + raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol') + diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/core.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/core.py new file mode 100644 index 00000000..0dae61ac --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/core.py @@ -0,0 +1,395 @@ +from . import idnadata +import bisect +import unicodedata +import re +from typing import Union, Optional +from .intranges import intranges_contain + +_virama_combining_class = 9 +_alabel_prefix = b'xn--' +_unicode_dots_re = re.compile('[\u002e\u3002\uff0e\uff61]') + +class IDNAError(UnicodeError): + """ Base exception for all IDNA-encoding related problems """ + pass + + +class IDNABidiError(IDNAError): + """ Exception when bidirectional requirements are not satisfied """ + pass + + +class InvalidCodepoint(IDNAError): + """ Exception when a disallowed or unallocated codepoint is used """ + pass + + +class InvalidCodepointContext(IDNAError): + """ Exception when the codepoint is not valid in the context it is used """ + pass + + +def _combining_class(cp: int) -> int: + v = unicodedata.combining(chr(cp)) + if v == 0: + if not unicodedata.name(chr(cp)): + raise ValueError('Unknown character in unicodedata') + return v + +def _is_script(cp: str, script: str) -> bool: + return intranges_contain(ord(cp), idnadata.scripts[script]) + +def _punycode(s: str) -> bytes: + return s.encode('punycode') + +def _unot(s: int) -> str: + return 'U+{:04X}'.format(s) + + +def valid_label_length(label: Union[bytes, str]) -> bool: + if len(label) > 63: + return False + return True + + +def valid_string_length(label: Union[bytes, str], trailing_dot: bool) -> bool: + if len(label) > (254 if trailing_dot else 253): + return False + return True + + +def check_bidi(label: str, check_ltr: bool = False) -> bool: + # Bidi rules should only be applied if string contains RTL characters + bidi_label = False + for (idx, cp) in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + if direction == '': + # String likely comes from a newer version of Unicode + raise IDNABidiError('Unknown directionality in label {} at position {}'.format(repr(label), idx)) + if direction in ['R', 'AL', 'AN']: + bidi_label = True + if not bidi_label and not check_ltr: + return True + + # Bidi rule 1 + direction = unicodedata.bidirectional(label[0]) + if direction in ['R', 'AL']: + rtl = True + elif direction == 'L': + rtl = False + else: + raise IDNABidiError('First codepoint in label {} must be directionality L, R or AL'.format(repr(label))) + + valid_ending = False + number_type = None # type: Optional[str] + for (idx, cp) in enumerate(label, 1): + direction = unicodedata.bidirectional(cp) + + if rtl: + # Bidi rule 2 + if not direction in ['R', 'AL', 'AN', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: + raise IDNABidiError('Invalid direction for codepoint at position {} in a right-to-left label'.format(idx)) + # Bidi rule 3 + if direction in ['R', 'AL', 'EN', 'AN']: + valid_ending = True + elif direction != 'NSM': + valid_ending = False + # Bidi rule 4 + if direction in ['AN', 'EN']: + if not number_type: + number_type = direction + else: + if number_type != direction: + raise IDNABidiError('Can not mix numeral types in a right-to-left label') + else: + # Bidi rule 5 + if not direction in ['L', 'EN', 'ES', 'CS', 'ET', 'ON', 'BN', 'NSM']: + raise IDNABidiError('Invalid direction for codepoint at position {} in a left-to-right label'.format(idx)) + # Bidi rule 6 + if direction in ['L', 'EN']: + valid_ending = True + elif direction != 'NSM': + valid_ending = False + + if not valid_ending: + raise IDNABidiError('Label ends with illegal codepoint directionality') + + return True + + +def check_initial_combiner(label: str) -> bool: + if unicodedata.category(label[0])[0] == 'M': + raise IDNAError('Label begins with an illegal combining character') + return True + + +def check_hyphen_ok(label: str) -> bool: + if label[2:4] == '--': + raise IDNAError('Label has disallowed hyphens in 3rd and 4th position') + if label[0] == '-' or label[-1] == '-': + raise IDNAError('Label must not start or end with a hyphen') + return True + + +def check_nfc(label: str) -> None: + if unicodedata.normalize('NFC', label) != label: + raise IDNAError('Label must be in Normalization Form C') + + +def valid_contextj(label: str, pos: int) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x200c: + + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + + ok = False + for i in range(pos-1, -1, -1): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord('T'): + continue + elif joining_type in [ord('L'), ord('D')]: + ok = True + break + else: + break + + if not ok: + return False + + ok = False + for i in range(pos+1, len(label)): + joining_type = idnadata.joining_types.get(ord(label[i])) + if joining_type == ord('T'): + continue + elif joining_type in [ord('R'), ord('D')]: + ok = True + break + else: + break + return ok + + if cp_value == 0x200d: + + if pos > 0: + if _combining_class(ord(label[pos - 1])) == _virama_combining_class: + return True + return False + + else: + + return False + + +def valid_contexto(label: str, pos: int, exception: bool = False) -> bool: + cp_value = ord(label[pos]) + + if cp_value == 0x00b7: + if 0 < pos < len(label)-1: + if ord(label[pos - 1]) == 0x006c and ord(label[pos + 1]) == 0x006c: + return True + return False + + elif cp_value == 0x0375: + if pos < len(label)-1 and len(label) > 1: + return _is_script(label[pos + 1], 'Greek') + return False + + elif cp_value == 0x05f3 or cp_value == 0x05f4: + if pos > 0: + return _is_script(label[pos - 1], 'Hebrew') + return False + + elif cp_value == 0x30fb: + for cp in label: + if cp == '\u30fb': + continue + if _is_script(cp, 'Hiragana') or _is_script(cp, 'Katakana') or _is_script(cp, 'Han'): + return True + return False + + elif 0x660 <= cp_value <= 0x669: + for cp in label: + if 0x6f0 <= ord(cp) <= 0x06f9: + return False + return True + + elif 0x6f0 <= cp_value <= 0x6f9: + for cp in label: + if 0x660 <= ord(cp) <= 0x0669: + return False + return True + + return False + + +def check_label(label: Union[str, bytes, bytearray]) -> None: + if isinstance(label, (bytes, bytearray)): + label = label.decode('utf-8') + if len(label) == 0: + raise IDNAError('Empty Label') + + check_nfc(label) + check_hyphen_ok(label) + check_initial_combiner(label) + + for (pos, cp) in enumerate(label): + cp_value = ord(cp) + if intranges_contain(cp_value, idnadata.codepoint_classes['PVALID']): + continue + elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTJ']): + if not valid_contextj(label, pos): + raise InvalidCodepointContext('Joiner {} not allowed at position {} in {}'.format( + _unot(cp_value), pos+1, repr(label))) + elif intranges_contain(cp_value, idnadata.codepoint_classes['CONTEXTO']): + if not valid_contexto(label, pos): + raise InvalidCodepointContext('Codepoint {} not allowed at position {} in {}'.format(_unot(cp_value), pos+1, repr(label))) + else: + raise InvalidCodepoint('Codepoint {} at position {} of {} not allowed'.format(_unot(cp_value), pos+1, repr(label))) + + check_bidi(label) + + +def alabel(label: str) -> bytes: + try: + label_bytes = label.encode('ascii') + ulabel(label_bytes) + if not valid_label_length(label_bytes): + raise IDNAError('Label too long') + return label_bytes + except UnicodeEncodeError: + pass + + check_label(label) + label_bytes = _alabel_prefix + _punycode(label) + + if not valid_label_length(label_bytes): + raise IDNAError('Label too long') + + return label_bytes + + +def ulabel(label: Union[str, bytes, bytearray]) -> str: + if not isinstance(label, (bytes, bytearray)): + try: + label_bytes = label.encode('ascii') + except UnicodeEncodeError: + check_label(label) + return label + else: + label_bytes = label + + label_bytes = label_bytes.lower() + if label_bytes.startswith(_alabel_prefix): + label_bytes = label_bytes[len(_alabel_prefix):] + if not label_bytes: + raise IDNAError('Malformed A-label, no Punycode eligible content found') + if label_bytes.decode('ascii')[-1] == '-': + raise IDNAError('A-label must not end with a hyphen') + else: + check_label(label_bytes) + return label_bytes.decode('ascii') + + try: + label = label_bytes.decode('punycode') + except UnicodeError: + raise IDNAError('Invalid A-label') + check_label(label) + return label + + +def uts46_remap(domain: str, std3_rules: bool = True, transitional: bool = False) -> str: + """Re-map the characters in the string according to UTS46 processing.""" + from .uts46data import uts46data + output = '' + + for pos, char in enumerate(domain): + code_point = ord(char) + try: + uts46row = uts46data[code_point if code_point < 256 else + bisect.bisect_left(uts46data, (code_point, 'Z')) - 1] + status = uts46row[1] + replacement = None # type: Optional[str] + if len(uts46row) == 3: + replacement = uts46row[2] + if (status == 'V' or + (status == 'D' and not transitional) or + (status == '3' and not std3_rules and replacement is None)): + output += char + elif replacement is not None and (status == 'M' or + (status == '3' and not std3_rules) or + (status == 'D' and transitional)): + output += replacement + elif status != 'I': + raise IndexError() + except IndexError: + raise InvalidCodepoint( + 'Codepoint {} not allowed at position {} in {}'.format( + _unot(code_point), pos + 1, repr(domain))) + + return unicodedata.normalize('NFC', output) + + +def encode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False, transitional: bool = False) -> bytes: + if not isinstance(s, str): + try: + s = str(s, 'ascii') + except UnicodeDecodeError: + raise IDNAError('should pass a unicode string to the function rather than a byte string.') + if uts46: + s = uts46_remap(s, std3_rules, transitional) + trailing_dot = False + result = [] + if strict: + labels = s.split('.') + else: + labels = _unicode_dots_re.split(s) + if not labels or labels == ['']: + raise IDNAError('Empty domain') + if labels[-1] == '': + del labels[-1] + trailing_dot = True + for label in labels: + s = alabel(label) + if s: + result.append(s) + else: + raise IDNAError('Empty label') + if trailing_dot: + result.append(b'') + s = b'.'.join(result) + if not valid_string_length(s, trailing_dot): + raise IDNAError('Domain too long') + return s + + +def decode(s: Union[str, bytes, bytearray], strict: bool = False, uts46: bool = False, std3_rules: bool = False) -> str: + try: + if not isinstance(s, str): + s = str(s, 'ascii') + except UnicodeDecodeError: + raise IDNAError('Invalid ASCII in A-label') + if uts46: + s = uts46_remap(s, std3_rules, False) + trailing_dot = False + result = [] + if not strict: + labels = _unicode_dots_re.split(s) + else: + labels = s.split('.') + if not labels or labels == ['']: + raise IDNAError('Empty domain') + if not labels[-1]: + del labels[-1] + trailing_dot = True + for label in labels: + s = ulabel(label) + if s: + result.append(s) + else: + raise IDNAError('Empty label') + if trailing_dot: + result.append('') + return '.'.join(result) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py new file mode 100644 index 00000000..c61dcf97 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py @@ -0,0 +1,4245 @@ +# This file is automatically generated by tools/idna-data + +__version__ = '15.1.0' +scripts = { + 'Greek': ( + 0x37000000374, + 0x37500000378, + 0x37a0000037e, + 0x37f00000380, + 0x38400000385, + 0x38600000387, + 0x3880000038b, + 0x38c0000038d, + 0x38e000003a2, + 0x3a3000003e2, + 0x3f000000400, + 0x1d2600001d2b, + 0x1d5d00001d62, + 0x1d6600001d6b, + 0x1dbf00001dc0, + 0x1f0000001f16, + 0x1f1800001f1e, + 0x1f2000001f46, + 0x1f4800001f4e, + 0x1f5000001f58, + 0x1f5900001f5a, + 0x1f5b00001f5c, + 0x1f5d00001f5e, + 0x1f5f00001f7e, + 0x1f8000001fb5, + 0x1fb600001fc5, + 0x1fc600001fd4, + 0x1fd600001fdc, + 0x1fdd00001ff0, + 0x1ff200001ff5, + 0x1ff600001fff, + 0x212600002127, + 0xab650000ab66, + 0x101400001018f, + 0x101a0000101a1, + 0x1d2000001d246, + ), + 'Han': ( + 0x2e8000002e9a, + 0x2e9b00002ef4, + 0x2f0000002fd6, + 0x300500003006, + 0x300700003008, + 0x30210000302a, + 0x30380000303c, + 0x340000004dc0, + 0x4e000000a000, + 0xf9000000fa6e, + 0xfa700000fada, + 0x16fe200016fe4, + 0x16ff000016ff2, + 0x200000002a6e0, + 0x2a7000002b73a, + 0x2b7400002b81e, + 0x2b8200002cea2, + 0x2ceb00002ebe1, + 0x2ebf00002ee5e, + 0x2f8000002fa1e, + 0x300000003134b, + 0x31350000323b0, + ), + 'Hebrew': ( + 0x591000005c8, + 0x5d0000005eb, + 0x5ef000005f5, + 0xfb1d0000fb37, + 0xfb380000fb3d, + 0xfb3e0000fb3f, + 0xfb400000fb42, + 0xfb430000fb45, + 0xfb460000fb50, + ), + 'Hiragana': ( + 0x304100003097, + 0x309d000030a0, + 0x1b0010001b120, + 0x1b1320001b133, + 0x1b1500001b153, + 0x1f2000001f201, + ), + 'Katakana': ( + 0x30a1000030fb, + 0x30fd00003100, + 0x31f000003200, + 0x32d0000032ff, + 0x330000003358, + 0xff660000ff70, + 0xff710000ff9e, + 0x1aff00001aff4, + 0x1aff50001affc, + 0x1affd0001afff, + 0x1b0000001b001, + 0x1b1200001b123, + 0x1b1550001b156, + 0x1b1640001b168, + ), +} +joining_types = { + 0xad: 84, + 0x300: 84, + 0x301: 84, + 0x302: 84, + 0x303: 84, + 0x304: 84, + 0x305: 84, + 0x306: 84, + 0x307: 84, + 0x308: 84, + 0x309: 84, + 0x30a: 84, + 0x30b: 84, + 0x30c: 84, + 0x30d: 84, + 0x30e: 84, + 0x30f: 84, + 0x310: 84, + 0x311: 84, + 0x312: 84, + 0x313: 84, + 0x314: 84, + 0x315: 84, + 0x316: 84, + 0x317: 84, + 0x318: 84, + 0x319: 84, + 0x31a: 84, + 0x31b: 84, + 0x31c: 84, + 0x31d: 84, + 0x31e: 84, + 0x31f: 84, + 0x320: 84, + 0x321: 84, + 0x322: 84, + 0x323: 84, + 0x324: 84, + 0x325: 84, + 0x326: 84, + 0x327: 84, + 0x328: 84, + 0x329: 84, + 0x32a: 84, + 0x32b: 84, + 0x32c: 84, + 0x32d: 84, + 0x32e: 84, + 0x32f: 84, + 0x330: 84, + 0x331: 84, + 0x332: 84, + 0x333: 84, + 0x334: 84, + 0x335: 84, + 0x336: 84, + 0x337: 84, + 0x338: 84, + 0x339: 84, + 0x33a: 84, + 0x33b: 84, + 0x33c: 84, + 0x33d: 84, + 0x33e: 84, + 0x33f: 84, + 0x340: 84, + 0x341: 84, + 0x342: 84, + 0x343: 84, + 0x344: 84, + 0x345: 84, + 0x346: 84, + 0x347: 84, + 0x348: 84, + 0x349: 84, + 0x34a: 84, + 0x34b: 84, + 0x34c: 84, + 0x34d: 84, + 0x34e: 84, + 0x34f: 84, + 0x350: 84, + 0x351: 84, + 0x352: 84, + 0x353: 84, + 0x354: 84, + 0x355: 84, + 0x356: 84, + 0x357: 84, + 0x358: 84, + 0x359: 84, + 0x35a: 84, + 0x35b: 84, + 0x35c: 84, + 0x35d: 84, + 0x35e: 84, + 0x35f: 84, + 0x360: 84, + 0x361: 84, + 0x362: 84, + 0x363: 84, + 0x364: 84, + 0x365: 84, + 0x366: 84, + 0x367: 84, + 0x368: 84, + 0x369: 84, + 0x36a: 84, + 0x36b: 84, + 0x36c: 84, + 0x36d: 84, + 0x36e: 84, + 0x36f: 84, + 0x483: 84, + 0x484: 84, + 0x485: 84, + 0x486: 84, + 0x487: 84, + 0x488: 84, + 0x489: 84, + 0x591: 84, + 0x592: 84, + 0x593: 84, + 0x594: 84, + 0x595: 84, + 0x596: 84, + 0x597: 84, + 0x598: 84, + 0x599: 84, + 0x59a: 84, + 0x59b: 84, + 0x59c: 84, + 0x59d: 84, + 0x59e: 84, + 0x59f: 84, + 0x5a0: 84, + 0x5a1: 84, + 0x5a2: 84, + 0x5a3: 84, + 0x5a4: 84, + 0x5a5: 84, + 0x5a6: 84, + 0x5a7: 84, + 0x5a8: 84, + 0x5a9: 84, + 0x5aa: 84, + 0x5ab: 84, + 0x5ac: 84, + 0x5ad: 84, + 0x5ae: 84, + 0x5af: 84, + 0x5b0: 84, + 0x5b1: 84, + 0x5b2: 84, + 0x5b3: 84, + 0x5b4: 84, + 0x5b5: 84, + 0x5b6: 84, + 0x5b7: 84, + 0x5b8: 84, + 0x5b9: 84, + 0x5ba: 84, + 0x5bb: 84, + 0x5bc: 84, + 0x5bd: 84, + 0x5bf: 84, + 0x5c1: 84, + 0x5c2: 84, + 0x5c4: 84, + 0x5c5: 84, + 0x5c7: 84, + 0x610: 84, + 0x611: 84, + 0x612: 84, + 0x613: 84, + 0x614: 84, + 0x615: 84, + 0x616: 84, + 0x617: 84, + 0x618: 84, + 0x619: 84, + 0x61a: 84, + 0x61c: 84, + 0x620: 68, + 0x622: 82, + 0x623: 82, + 0x624: 82, + 0x625: 82, + 0x626: 68, + 0x627: 82, + 0x628: 68, + 0x629: 82, + 0x62a: 68, + 0x62b: 68, + 0x62c: 68, + 0x62d: 68, + 0x62e: 68, + 0x62f: 82, + 0x630: 82, + 0x631: 82, + 0x632: 82, + 0x633: 68, + 0x634: 68, + 0x635: 68, + 0x636: 68, + 0x637: 68, + 0x638: 68, + 0x639: 68, + 0x63a: 68, + 0x63b: 68, + 0x63c: 68, + 0x63d: 68, + 0x63e: 68, + 0x63f: 68, + 0x640: 67, + 0x641: 68, + 0x642: 68, + 0x643: 68, + 0x644: 68, + 0x645: 68, + 0x646: 68, + 0x647: 68, + 0x648: 82, + 0x649: 68, + 0x64a: 68, + 0x64b: 84, + 0x64c: 84, + 0x64d: 84, + 0x64e: 84, + 0x64f: 84, + 0x650: 84, + 0x651: 84, + 0x652: 84, + 0x653: 84, + 0x654: 84, + 0x655: 84, + 0x656: 84, + 0x657: 84, + 0x658: 84, + 0x659: 84, + 0x65a: 84, + 0x65b: 84, + 0x65c: 84, + 0x65d: 84, + 0x65e: 84, + 0x65f: 84, + 0x66e: 68, + 0x66f: 68, + 0x670: 84, + 0x671: 82, + 0x672: 82, + 0x673: 82, + 0x675: 82, + 0x676: 82, + 0x677: 82, + 0x678: 68, + 0x679: 68, + 0x67a: 68, + 0x67b: 68, + 0x67c: 68, + 0x67d: 68, + 0x67e: 68, + 0x67f: 68, + 0x680: 68, + 0x681: 68, + 0x682: 68, + 0x683: 68, + 0x684: 68, + 0x685: 68, + 0x686: 68, + 0x687: 68, + 0x688: 82, + 0x689: 82, + 0x68a: 82, + 0x68b: 82, + 0x68c: 82, + 0x68d: 82, + 0x68e: 82, + 0x68f: 82, + 0x690: 82, + 0x691: 82, + 0x692: 82, + 0x693: 82, + 0x694: 82, + 0x695: 82, + 0x696: 82, + 0x697: 82, + 0x698: 82, + 0x699: 82, + 0x69a: 68, + 0x69b: 68, + 0x69c: 68, + 0x69d: 68, + 0x69e: 68, + 0x69f: 68, + 0x6a0: 68, + 0x6a1: 68, + 0x6a2: 68, + 0x6a3: 68, + 0x6a4: 68, + 0x6a5: 68, + 0x6a6: 68, + 0x6a7: 68, + 0x6a8: 68, + 0x6a9: 68, + 0x6aa: 68, + 0x6ab: 68, + 0x6ac: 68, + 0x6ad: 68, + 0x6ae: 68, + 0x6af: 68, + 0x6b0: 68, + 0x6b1: 68, + 0x6b2: 68, + 0x6b3: 68, + 0x6b4: 68, + 0x6b5: 68, + 0x6b6: 68, + 0x6b7: 68, + 0x6b8: 68, + 0x6b9: 68, + 0x6ba: 68, + 0x6bb: 68, + 0x6bc: 68, + 0x6bd: 68, + 0x6be: 68, + 0x6bf: 68, + 0x6c0: 82, + 0x6c1: 68, + 0x6c2: 68, + 0x6c3: 82, + 0x6c4: 82, + 0x6c5: 82, + 0x6c6: 82, + 0x6c7: 82, + 0x6c8: 82, + 0x6c9: 82, + 0x6ca: 82, + 0x6cb: 82, + 0x6cc: 68, + 0x6cd: 82, + 0x6ce: 68, + 0x6cf: 82, + 0x6d0: 68, + 0x6d1: 68, + 0x6d2: 82, + 0x6d3: 82, + 0x6d5: 82, + 0x6d6: 84, + 0x6d7: 84, + 0x6d8: 84, + 0x6d9: 84, + 0x6da: 84, + 0x6db: 84, + 0x6dc: 84, + 0x6df: 84, + 0x6e0: 84, + 0x6e1: 84, + 0x6e2: 84, + 0x6e3: 84, + 0x6e4: 84, + 0x6e7: 84, + 0x6e8: 84, + 0x6ea: 84, + 0x6eb: 84, + 0x6ec: 84, + 0x6ed: 84, + 0x6ee: 82, + 0x6ef: 82, + 0x6fa: 68, + 0x6fb: 68, + 0x6fc: 68, + 0x6ff: 68, + 0x70f: 84, + 0x710: 82, + 0x711: 84, + 0x712: 68, + 0x713: 68, + 0x714: 68, + 0x715: 82, + 0x716: 82, + 0x717: 82, + 0x718: 82, + 0x719: 82, + 0x71a: 68, + 0x71b: 68, + 0x71c: 68, + 0x71d: 68, + 0x71e: 82, + 0x71f: 68, + 0x720: 68, + 0x721: 68, + 0x722: 68, + 0x723: 68, + 0x724: 68, + 0x725: 68, + 0x726: 68, + 0x727: 68, + 0x728: 82, + 0x729: 68, + 0x72a: 82, + 0x72b: 68, + 0x72c: 82, + 0x72d: 68, + 0x72e: 68, + 0x72f: 82, + 0x730: 84, + 0x731: 84, + 0x732: 84, + 0x733: 84, + 0x734: 84, + 0x735: 84, + 0x736: 84, + 0x737: 84, + 0x738: 84, + 0x739: 84, + 0x73a: 84, + 0x73b: 84, + 0x73c: 84, + 0x73d: 84, + 0x73e: 84, + 0x73f: 84, + 0x740: 84, + 0x741: 84, + 0x742: 84, + 0x743: 84, + 0x744: 84, + 0x745: 84, + 0x746: 84, + 0x747: 84, + 0x748: 84, + 0x749: 84, + 0x74a: 84, + 0x74d: 82, + 0x74e: 68, + 0x74f: 68, + 0x750: 68, + 0x751: 68, + 0x752: 68, + 0x753: 68, + 0x754: 68, + 0x755: 68, + 0x756: 68, + 0x757: 68, + 0x758: 68, + 0x759: 82, + 0x75a: 82, + 0x75b: 82, + 0x75c: 68, + 0x75d: 68, + 0x75e: 68, + 0x75f: 68, + 0x760: 68, + 0x761: 68, + 0x762: 68, + 0x763: 68, + 0x764: 68, + 0x765: 68, + 0x766: 68, + 0x767: 68, + 0x768: 68, + 0x769: 68, + 0x76a: 68, + 0x76b: 82, + 0x76c: 82, + 0x76d: 68, + 0x76e: 68, + 0x76f: 68, + 0x770: 68, + 0x771: 82, + 0x772: 68, + 0x773: 82, + 0x774: 82, + 0x775: 68, + 0x776: 68, + 0x777: 68, + 0x778: 82, + 0x779: 82, + 0x77a: 68, + 0x77b: 68, + 0x77c: 68, + 0x77d: 68, + 0x77e: 68, + 0x77f: 68, + 0x7a6: 84, + 0x7a7: 84, + 0x7a8: 84, + 0x7a9: 84, + 0x7aa: 84, + 0x7ab: 84, + 0x7ac: 84, + 0x7ad: 84, + 0x7ae: 84, + 0x7af: 84, + 0x7b0: 84, + 0x7ca: 68, + 0x7cb: 68, + 0x7cc: 68, + 0x7cd: 68, + 0x7ce: 68, + 0x7cf: 68, + 0x7d0: 68, + 0x7d1: 68, + 0x7d2: 68, + 0x7d3: 68, + 0x7d4: 68, + 0x7d5: 68, + 0x7d6: 68, + 0x7d7: 68, + 0x7d8: 68, + 0x7d9: 68, + 0x7da: 68, + 0x7db: 68, + 0x7dc: 68, + 0x7dd: 68, + 0x7de: 68, + 0x7df: 68, + 0x7e0: 68, + 0x7e1: 68, + 0x7e2: 68, + 0x7e3: 68, + 0x7e4: 68, + 0x7e5: 68, + 0x7e6: 68, + 0x7e7: 68, + 0x7e8: 68, + 0x7e9: 68, + 0x7ea: 68, + 0x7eb: 84, + 0x7ec: 84, + 0x7ed: 84, + 0x7ee: 84, + 0x7ef: 84, + 0x7f0: 84, + 0x7f1: 84, + 0x7f2: 84, + 0x7f3: 84, + 0x7fa: 67, + 0x7fd: 84, + 0x816: 84, + 0x817: 84, + 0x818: 84, + 0x819: 84, + 0x81b: 84, + 0x81c: 84, + 0x81d: 84, + 0x81e: 84, + 0x81f: 84, + 0x820: 84, + 0x821: 84, + 0x822: 84, + 0x823: 84, + 0x825: 84, + 0x826: 84, + 0x827: 84, + 0x829: 84, + 0x82a: 84, + 0x82b: 84, + 0x82c: 84, + 0x82d: 84, + 0x840: 82, + 0x841: 68, + 0x842: 68, + 0x843: 68, + 0x844: 68, + 0x845: 68, + 0x846: 82, + 0x847: 82, + 0x848: 68, + 0x849: 82, + 0x84a: 68, + 0x84b: 68, + 0x84c: 68, + 0x84d: 68, + 0x84e: 68, + 0x84f: 68, + 0x850: 68, + 0x851: 68, + 0x852: 68, + 0x853: 68, + 0x854: 82, + 0x855: 68, + 0x856: 82, + 0x857: 82, + 0x858: 82, + 0x859: 84, + 0x85a: 84, + 0x85b: 84, + 0x860: 68, + 0x862: 68, + 0x863: 68, + 0x864: 68, + 0x865: 68, + 0x867: 82, + 0x868: 68, + 0x869: 82, + 0x86a: 82, + 0x870: 82, + 0x871: 82, + 0x872: 82, + 0x873: 82, + 0x874: 82, + 0x875: 82, + 0x876: 82, + 0x877: 82, + 0x878: 82, + 0x879: 82, + 0x87a: 82, + 0x87b: 82, + 0x87c: 82, + 0x87d: 82, + 0x87e: 82, + 0x87f: 82, + 0x880: 82, + 0x881: 82, + 0x882: 82, + 0x883: 67, + 0x884: 67, + 0x885: 67, + 0x886: 68, + 0x889: 68, + 0x88a: 68, + 0x88b: 68, + 0x88c: 68, + 0x88d: 68, + 0x88e: 82, + 0x898: 84, + 0x899: 84, + 0x89a: 84, + 0x89b: 84, + 0x89c: 84, + 0x89d: 84, + 0x89e: 84, + 0x89f: 84, + 0x8a0: 68, + 0x8a1: 68, + 0x8a2: 68, + 0x8a3: 68, + 0x8a4: 68, + 0x8a5: 68, + 0x8a6: 68, + 0x8a7: 68, + 0x8a8: 68, + 0x8a9: 68, + 0x8aa: 82, + 0x8ab: 82, + 0x8ac: 82, + 0x8ae: 82, + 0x8af: 68, + 0x8b0: 68, + 0x8b1: 82, + 0x8b2: 82, + 0x8b3: 68, + 0x8b4: 68, + 0x8b5: 68, + 0x8b6: 68, + 0x8b7: 68, + 0x8b8: 68, + 0x8b9: 82, + 0x8ba: 68, + 0x8bb: 68, + 0x8bc: 68, + 0x8bd: 68, + 0x8be: 68, + 0x8bf: 68, + 0x8c0: 68, + 0x8c1: 68, + 0x8c2: 68, + 0x8c3: 68, + 0x8c4: 68, + 0x8c5: 68, + 0x8c6: 68, + 0x8c7: 68, + 0x8c8: 68, + 0x8ca: 84, + 0x8cb: 84, + 0x8cc: 84, + 0x8cd: 84, + 0x8ce: 84, + 0x8cf: 84, + 0x8d0: 84, + 0x8d1: 84, + 0x8d2: 84, + 0x8d3: 84, + 0x8d4: 84, + 0x8d5: 84, + 0x8d6: 84, + 0x8d7: 84, + 0x8d8: 84, + 0x8d9: 84, + 0x8da: 84, + 0x8db: 84, + 0x8dc: 84, + 0x8dd: 84, + 0x8de: 84, + 0x8df: 84, + 0x8e0: 84, + 0x8e1: 84, + 0x8e3: 84, + 0x8e4: 84, + 0x8e5: 84, + 0x8e6: 84, + 0x8e7: 84, + 0x8e8: 84, + 0x8e9: 84, + 0x8ea: 84, + 0x8eb: 84, + 0x8ec: 84, + 0x8ed: 84, + 0x8ee: 84, + 0x8ef: 84, + 0x8f0: 84, + 0x8f1: 84, + 0x8f2: 84, + 0x8f3: 84, + 0x8f4: 84, + 0x8f5: 84, + 0x8f6: 84, + 0x8f7: 84, + 0x8f8: 84, + 0x8f9: 84, + 0x8fa: 84, + 0x8fb: 84, + 0x8fc: 84, + 0x8fd: 84, + 0x8fe: 84, + 0x8ff: 84, + 0x900: 84, + 0x901: 84, + 0x902: 84, + 0x93a: 84, + 0x93c: 84, + 0x941: 84, + 0x942: 84, + 0x943: 84, + 0x944: 84, + 0x945: 84, + 0x946: 84, + 0x947: 84, + 0x948: 84, + 0x94d: 84, + 0x951: 84, + 0x952: 84, + 0x953: 84, + 0x954: 84, + 0x955: 84, + 0x956: 84, + 0x957: 84, + 0x962: 84, + 0x963: 84, + 0x981: 84, + 0x9bc: 84, + 0x9c1: 84, + 0x9c2: 84, + 0x9c3: 84, + 0x9c4: 84, + 0x9cd: 84, + 0x9e2: 84, + 0x9e3: 84, + 0x9fe: 84, + 0xa01: 84, + 0xa02: 84, + 0xa3c: 84, + 0xa41: 84, + 0xa42: 84, + 0xa47: 84, + 0xa48: 84, + 0xa4b: 84, + 0xa4c: 84, + 0xa4d: 84, + 0xa51: 84, + 0xa70: 84, + 0xa71: 84, + 0xa75: 84, + 0xa81: 84, + 0xa82: 84, + 0xabc: 84, + 0xac1: 84, + 0xac2: 84, + 0xac3: 84, + 0xac4: 84, + 0xac5: 84, + 0xac7: 84, + 0xac8: 84, + 0xacd: 84, + 0xae2: 84, + 0xae3: 84, + 0xafa: 84, + 0xafb: 84, + 0xafc: 84, + 0xafd: 84, + 0xafe: 84, + 0xaff: 84, + 0xb01: 84, + 0xb3c: 84, + 0xb3f: 84, + 0xb41: 84, + 0xb42: 84, + 0xb43: 84, + 0xb44: 84, + 0xb4d: 84, + 0xb55: 84, + 0xb56: 84, + 0xb62: 84, + 0xb63: 84, + 0xb82: 84, + 0xbc0: 84, + 0xbcd: 84, + 0xc00: 84, + 0xc04: 84, + 0xc3c: 84, + 0xc3e: 84, + 0xc3f: 84, + 0xc40: 84, + 0xc46: 84, + 0xc47: 84, + 0xc48: 84, + 0xc4a: 84, + 0xc4b: 84, + 0xc4c: 84, + 0xc4d: 84, + 0xc55: 84, + 0xc56: 84, + 0xc62: 84, + 0xc63: 84, + 0xc81: 84, + 0xcbc: 84, + 0xcbf: 84, + 0xcc6: 84, + 0xccc: 84, + 0xccd: 84, + 0xce2: 84, + 0xce3: 84, + 0xd00: 84, + 0xd01: 84, + 0xd3b: 84, + 0xd3c: 84, + 0xd41: 84, + 0xd42: 84, + 0xd43: 84, + 0xd44: 84, + 0xd4d: 84, + 0xd62: 84, + 0xd63: 84, + 0xd81: 84, + 0xdca: 84, + 0xdd2: 84, + 0xdd3: 84, + 0xdd4: 84, + 0xdd6: 84, + 0xe31: 84, + 0xe34: 84, + 0xe35: 84, + 0xe36: 84, + 0xe37: 84, + 0xe38: 84, + 0xe39: 84, + 0xe3a: 84, + 0xe47: 84, + 0xe48: 84, + 0xe49: 84, + 0xe4a: 84, + 0xe4b: 84, + 0xe4c: 84, + 0xe4d: 84, + 0xe4e: 84, + 0xeb1: 84, + 0xeb4: 84, + 0xeb5: 84, + 0xeb6: 84, + 0xeb7: 84, + 0xeb8: 84, + 0xeb9: 84, + 0xeba: 84, + 0xebb: 84, + 0xebc: 84, + 0xec8: 84, + 0xec9: 84, + 0xeca: 84, + 0xecb: 84, + 0xecc: 84, + 0xecd: 84, + 0xece: 84, + 0xf18: 84, + 0xf19: 84, + 0xf35: 84, + 0xf37: 84, + 0xf39: 84, + 0xf71: 84, + 0xf72: 84, + 0xf73: 84, + 0xf74: 84, + 0xf75: 84, + 0xf76: 84, + 0xf77: 84, + 0xf78: 84, + 0xf79: 84, + 0xf7a: 84, + 0xf7b: 84, + 0xf7c: 84, + 0xf7d: 84, + 0xf7e: 84, + 0xf80: 84, + 0xf81: 84, + 0xf82: 84, + 0xf83: 84, + 0xf84: 84, + 0xf86: 84, + 0xf87: 84, + 0xf8d: 84, + 0xf8e: 84, + 0xf8f: 84, + 0xf90: 84, + 0xf91: 84, + 0xf92: 84, + 0xf93: 84, + 0xf94: 84, + 0xf95: 84, + 0xf96: 84, + 0xf97: 84, + 0xf99: 84, + 0xf9a: 84, + 0xf9b: 84, + 0xf9c: 84, + 0xf9d: 84, + 0xf9e: 84, + 0xf9f: 84, + 0xfa0: 84, + 0xfa1: 84, + 0xfa2: 84, + 0xfa3: 84, + 0xfa4: 84, + 0xfa5: 84, + 0xfa6: 84, + 0xfa7: 84, + 0xfa8: 84, + 0xfa9: 84, + 0xfaa: 84, + 0xfab: 84, + 0xfac: 84, + 0xfad: 84, + 0xfae: 84, + 0xfaf: 84, + 0xfb0: 84, + 0xfb1: 84, + 0xfb2: 84, + 0xfb3: 84, + 0xfb4: 84, + 0xfb5: 84, + 0xfb6: 84, + 0xfb7: 84, + 0xfb8: 84, + 0xfb9: 84, + 0xfba: 84, + 0xfbb: 84, + 0xfbc: 84, + 0xfc6: 84, + 0x102d: 84, + 0x102e: 84, + 0x102f: 84, + 0x1030: 84, + 0x1032: 84, + 0x1033: 84, + 0x1034: 84, + 0x1035: 84, + 0x1036: 84, + 0x1037: 84, + 0x1039: 84, + 0x103a: 84, + 0x103d: 84, + 0x103e: 84, + 0x1058: 84, + 0x1059: 84, + 0x105e: 84, + 0x105f: 84, + 0x1060: 84, + 0x1071: 84, + 0x1072: 84, + 0x1073: 84, + 0x1074: 84, + 0x1082: 84, + 0x1085: 84, + 0x1086: 84, + 0x108d: 84, + 0x109d: 84, + 0x135d: 84, + 0x135e: 84, + 0x135f: 84, + 0x1712: 84, + 0x1713: 84, + 0x1714: 84, + 0x1732: 84, + 0x1733: 84, + 0x1752: 84, + 0x1753: 84, + 0x1772: 84, + 0x1773: 84, + 0x17b4: 84, + 0x17b5: 84, + 0x17b7: 84, + 0x17b8: 84, + 0x17b9: 84, + 0x17ba: 84, + 0x17bb: 84, + 0x17bc: 84, + 0x17bd: 84, + 0x17c6: 84, + 0x17c9: 84, + 0x17ca: 84, + 0x17cb: 84, + 0x17cc: 84, + 0x17cd: 84, + 0x17ce: 84, + 0x17cf: 84, + 0x17d0: 84, + 0x17d1: 84, + 0x17d2: 84, + 0x17d3: 84, + 0x17dd: 84, + 0x1807: 68, + 0x180a: 67, + 0x180b: 84, + 0x180c: 84, + 0x180d: 84, + 0x180f: 84, + 0x1820: 68, + 0x1821: 68, + 0x1822: 68, + 0x1823: 68, + 0x1824: 68, + 0x1825: 68, + 0x1826: 68, + 0x1827: 68, + 0x1828: 68, + 0x1829: 68, + 0x182a: 68, + 0x182b: 68, + 0x182c: 68, + 0x182d: 68, + 0x182e: 68, + 0x182f: 68, + 0x1830: 68, + 0x1831: 68, + 0x1832: 68, + 0x1833: 68, + 0x1834: 68, + 0x1835: 68, + 0x1836: 68, + 0x1837: 68, + 0x1838: 68, + 0x1839: 68, + 0x183a: 68, + 0x183b: 68, + 0x183c: 68, + 0x183d: 68, + 0x183e: 68, + 0x183f: 68, + 0x1840: 68, + 0x1841: 68, + 0x1842: 68, + 0x1843: 68, + 0x1844: 68, + 0x1845: 68, + 0x1846: 68, + 0x1847: 68, + 0x1848: 68, + 0x1849: 68, + 0x184a: 68, + 0x184b: 68, + 0x184c: 68, + 0x184d: 68, + 0x184e: 68, + 0x184f: 68, + 0x1850: 68, + 0x1851: 68, + 0x1852: 68, + 0x1853: 68, + 0x1854: 68, + 0x1855: 68, + 0x1856: 68, + 0x1857: 68, + 0x1858: 68, + 0x1859: 68, + 0x185a: 68, + 0x185b: 68, + 0x185c: 68, + 0x185d: 68, + 0x185e: 68, + 0x185f: 68, + 0x1860: 68, + 0x1861: 68, + 0x1862: 68, + 0x1863: 68, + 0x1864: 68, + 0x1865: 68, + 0x1866: 68, + 0x1867: 68, + 0x1868: 68, + 0x1869: 68, + 0x186a: 68, + 0x186b: 68, + 0x186c: 68, + 0x186d: 68, + 0x186e: 68, + 0x186f: 68, + 0x1870: 68, + 0x1871: 68, + 0x1872: 68, + 0x1873: 68, + 0x1874: 68, + 0x1875: 68, + 0x1876: 68, + 0x1877: 68, + 0x1878: 68, + 0x1885: 84, + 0x1886: 84, + 0x1887: 68, + 0x1888: 68, + 0x1889: 68, + 0x188a: 68, + 0x188b: 68, + 0x188c: 68, + 0x188d: 68, + 0x188e: 68, + 0x188f: 68, + 0x1890: 68, + 0x1891: 68, + 0x1892: 68, + 0x1893: 68, + 0x1894: 68, + 0x1895: 68, + 0x1896: 68, + 0x1897: 68, + 0x1898: 68, + 0x1899: 68, + 0x189a: 68, + 0x189b: 68, + 0x189c: 68, + 0x189d: 68, + 0x189e: 68, + 0x189f: 68, + 0x18a0: 68, + 0x18a1: 68, + 0x18a2: 68, + 0x18a3: 68, + 0x18a4: 68, + 0x18a5: 68, + 0x18a6: 68, + 0x18a7: 68, + 0x18a8: 68, + 0x18a9: 84, + 0x18aa: 68, + 0x1920: 84, + 0x1921: 84, + 0x1922: 84, + 0x1927: 84, + 0x1928: 84, + 0x1932: 84, + 0x1939: 84, + 0x193a: 84, + 0x193b: 84, + 0x1a17: 84, + 0x1a18: 84, + 0x1a1b: 84, + 0x1a56: 84, + 0x1a58: 84, + 0x1a59: 84, + 0x1a5a: 84, + 0x1a5b: 84, + 0x1a5c: 84, + 0x1a5d: 84, + 0x1a5e: 84, + 0x1a60: 84, + 0x1a62: 84, + 0x1a65: 84, + 0x1a66: 84, + 0x1a67: 84, + 0x1a68: 84, + 0x1a69: 84, + 0x1a6a: 84, + 0x1a6b: 84, + 0x1a6c: 84, + 0x1a73: 84, + 0x1a74: 84, + 0x1a75: 84, + 0x1a76: 84, + 0x1a77: 84, + 0x1a78: 84, + 0x1a79: 84, + 0x1a7a: 84, + 0x1a7b: 84, + 0x1a7c: 84, + 0x1a7f: 84, + 0x1ab0: 84, + 0x1ab1: 84, + 0x1ab2: 84, + 0x1ab3: 84, + 0x1ab4: 84, + 0x1ab5: 84, + 0x1ab6: 84, + 0x1ab7: 84, + 0x1ab8: 84, + 0x1ab9: 84, + 0x1aba: 84, + 0x1abb: 84, + 0x1abc: 84, + 0x1abd: 84, + 0x1abe: 84, + 0x1abf: 84, + 0x1ac0: 84, + 0x1ac1: 84, + 0x1ac2: 84, + 0x1ac3: 84, + 0x1ac4: 84, + 0x1ac5: 84, + 0x1ac6: 84, + 0x1ac7: 84, + 0x1ac8: 84, + 0x1ac9: 84, + 0x1aca: 84, + 0x1acb: 84, + 0x1acc: 84, + 0x1acd: 84, + 0x1ace: 84, + 0x1b00: 84, + 0x1b01: 84, + 0x1b02: 84, + 0x1b03: 84, + 0x1b34: 84, + 0x1b36: 84, + 0x1b37: 84, + 0x1b38: 84, + 0x1b39: 84, + 0x1b3a: 84, + 0x1b3c: 84, + 0x1b42: 84, + 0x1b6b: 84, + 0x1b6c: 84, + 0x1b6d: 84, + 0x1b6e: 84, + 0x1b6f: 84, + 0x1b70: 84, + 0x1b71: 84, + 0x1b72: 84, + 0x1b73: 84, + 0x1b80: 84, + 0x1b81: 84, + 0x1ba2: 84, + 0x1ba3: 84, + 0x1ba4: 84, + 0x1ba5: 84, + 0x1ba8: 84, + 0x1ba9: 84, + 0x1bab: 84, + 0x1bac: 84, + 0x1bad: 84, + 0x1be6: 84, + 0x1be8: 84, + 0x1be9: 84, + 0x1bed: 84, + 0x1bef: 84, + 0x1bf0: 84, + 0x1bf1: 84, + 0x1c2c: 84, + 0x1c2d: 84, + 0x1c2e: 84, + 0x1c2f: 84, + 0x1c30: 84, + 0x1c31: 84, + 0x1c32: 84, + 0x1c33: 84, + 0x1c36: 84, + 0x1c37: 84, + 0x1cd0: 84, + 0x1cd1: 84, + 0x1cd2: 84, + 0x1cd4: 84, + 0x1cd5: 84, + 0x1cd6: 84, + 0x1cd7: 84, + 0x1cd8: 84, + 0x1cd9: 84, + 0x1cda: 84, + 0x1cdb: 84, + 0x1cdc: 84, + 0x1cdd: 84, + 0x1cde: 84, + 0x1cdf: 84, + 0x1ce0: 84, + 0x1ce2: 84, + 0x1ce3: 84, + 0x1ce4: 84, + 0x1ce5: 84, + 0x1ce6: 84, + 0x1ce7: 84, + 0x1ce8: 84, + 0x1ced: 84, + 0x1cf4: 84, + 0x1cf8: 84, + 0x1cf9: 84, + 0x1dc0: 84, + 0x1dc1: 84, + 0x1dc2: 84, + 0x1dc3: 84, + 0x1dc4: 84, + 0x1dc5: 84, + 0x1dc6: 84, + 0x1dc7: 84, + 0x1dc8: 84, + 0x1dc9: 84, + 0x1dca: 84, + 0x1dcb: 84, + 0x1dcc: 84, + 0x1dcd: 84, + 0x1dce: 84, + 0x1dcf: 84, + 0x1dd0: 84, + 0x1dd1: 84, + 0x1dd2: 84, + 0x1dd3: 84, + 0x1dd4: 84, + 0x1dd5: 84, + 0x1dd6: 84, + 0x1dd7: 84, + 0x1dd8: 84, + 0x1dd9: 84, + 0x1dda: 84, + 0x1ddb: 84, + 0x1ddc: 84, + 0x1ddd: 84, + 0x1dde: 84, + 0x1ddf: 84, + 0x1de0: 84, + 0x1de1: 84, + 0x1de2: 84, + 0x1de3: 84, + 0x1de4: 84, + 0x1de5: 84, + 0x1de6: 84, + 0x1de7: 84, + 0x1de8: 84, + 0x1de9: 84, + 0x1dea: 84, + 0x1deb: 84, + 0x1dec: 84, + 0x1ded: 84, + 0x1dee: 84, + 0x1def: 84, + 0x1df0: 84, + 0x1df1: 84, + 0x1df2: 84, + 0x1df3: 84, + 0x1df4: 84, + 0x1df5: 84, + 0x1df6: 84, + 0x1df7: 84, + 0x1df8: 84, + 0x1df9: 84, + 0x1dfa: 84, + 0x1dfb: 84, + 0x1dfc: 84, + 0x1dfd: 84, + 0x1dfe: 84, + 0x1dff: 84, + 0x200b: 84, + 0x200d: 67, + 0x200e: 84, + 0x200f: 84, + 0x202a: 84, + 0x202b: 84, + 0x202c: 84, + 0x202d: 84, + 0x202e: 84, + 0x2060: 84, + 0x2061: 84, + 0x2062: 84, + 0x2063: 84, + 0x2064: 84, + 0x206a: 84, + 0x206b: 84, + 0x206c: 84, + 0x206d: 84, + 0x206e: 84, + 0x206f: 84, + 0x20d0: 84, + 0x20d1: 84, + 0x20d2: 84, + 0x20d3: 84, + 0x20d4: 84, + 0x20d5: 84, + 0x20d6: 84, + 0x20d7: 84, + 0x20d8: 84, + 0x20d9: 84, + 0x20da: 84, + 0x20db: 84, + 0x20dc: 84, + 0x20dd: 84, + 0x20de: 84, + 0x20df: 84, + 0x20e0: 84, + 0x20e1: 84, + 0x20e2: 84, + 0x20e3: 84, + 0x20e4: 84, + 0x20e5: 84, + 0x20e6: 84, + 0x20e7: 84, + 0x20e8: 84, + 0x20e9: 84, + 0x20ea: 84, + 0x20eb: 84, + 0x20ec: 84, + 0x20ed: 84, + 0x20ee: 84, + 0x20ef: 84, + 0x20f0: 84, + 0x2cef: 84, + 0x2cf0: 84, + 0x2cf1: 84, + 0x2d7f: 84, + 0x2de0: 84, + 0x2de1: 84, + 0x2de2: 84, + 0x2de3: 84, + 0x2de4: 84, + 0x2de5: 84, + 0x2de6: 84, + 0x2de7: 84, + 0x2de8: 84, + 0x2de9: 84, + 0x2dea: 84, + 0x2deb: 84, + 0x2dec: 84, + 0x2ded: 84, + 0x2dee: 84, + 0x2def: 84, + 0x2df0: 84, + 0x2df1: 84, + 0x2df2: 84, + 0x2df3: 84, + 0x2df4: 84, + 0x2df5: 84, + 0x2df6: 84, + 0x2df7: 84, + 0x2df8: 84, + 0x2df9: 84, + 0x2dfa: 84, + 0x2dfb: 84, + 0x2dfc: 84, + 0x2dfd: 84, + 0x2dfe: 84, + 0x2dff: 84, + 0x302a: 84, + 0x302b: 84, + 0x302c: 84, + 0x302d: 84, + 0x3099: 84, + 0x309a: 84, + 0xa66f: 84, + 0xa670: 84, + 0xa671: 84, + 0xa672: 84, + 0xa674: 84, + 0xa675: 84, + 0xa676: 84, + 0xa677: 84, + 0xa678: 84, + 0xa679: 84, + 0xa67a: 84, + 0xa67b: 84, + 0xa67c: 84, + 0xa67d: 84, + 0xa69e: 84, + 0xa69f: 84, + 0xa6f0: 84, + 0xa6f1: 84, + 0xa802: 84, + 0xa806: 84, + 0xa80b: 84, + 0xa825: 84, + 0xa826: 84, + 0xa82c: 84, + 0xa840: 68, + 0xa841: 68, + 0xa842: 68, + 0xa843: 68, + 0xa844: 68, + 0xa845: 68, + 0xa846: 68, + 0xa847: 68, + 0xa848: 68, + 0xa849: 68, + 0xa84a: 68, + 0xa84b: 68, + 0xa84c: 68, + 0xa84d: 68, + 0xa84e: 68, + 0xa84f: 68, + 0xa850: 68, + 0xa851: 68, + 0xa852: 68, + 0xa853: 68, + 0xa854: 68, + 0xa855: 68, + 0xa856: 68, + 0xa857: 68, + 0xa858: 68, + 0xa859: 68, + 0xa85a: 68, + 0xa85b: 68, + 0xa85c: 68, + 0xa85d: 68, + 0xa85e: 68, + 0xa85f: 68, + 0xa860: 68, + 0xa861: 68, + 0xa862: 68, + 0xa863: 68, + 0xa864: 68, + 0xa865: 68, + 0xa866: 68, + 0xa867: 68, + 0xa868: 68, + 0xa869: 68, + 0xa86a: 68, + 0xa86b: 68, + 0xa86c: 68, + 0xa86d: 68, + 0xa86e: 68, + 0xa86f: 68, + 0xa870: 68, + 0xa871: 68, + 0xa872: 76, + 0xa8c4: 84, + 0xa8c5: 84, + 0xa8e0: 84, + 0xa8e1: 84, + 0xa8e2: 84, + 0xa8e3: 84, + 0xa8e4: 84, + 0xa8e5: 84, + 0xa8e6: 84, + 0xa8e7: 84, + 0xa8e8: 84, + 0xa8e9: 84, + 0xa8ea: 84, + 0xa8eb: 84, + 0xa8ec: 84, + 0xa8ed: 84, + 0xa8ee: 84, + 0xa8ef: 84, + 0xa8f0: 84, + 0xa8f1: 84, + 0xa8ff: 84, + 0xa926: 84, + 0xa927: 84, + 0xa928: 84, + 0xa929: 84, + 0xa92a: 84, + 0xa92b: 84, + 0xa92c: 84, + 0xa92d: 84, + 0xa947: 84, + 0xa948: 84, + 0xa949: 84, + 0xa94a: 84, + 0xa94b: 84, + 0xa94c: 84, + 0xa94d: 84, + 0xa94e: 84, + 0xa94f: 84, + 0xa950: 84, + 0xa951: 84, + 0xa980: 84, + 0xa981: 84, + 0xa982: 84, + 0xa9b3: 84, + 0xa9b6: 84, + 0xa9b7: 84, + 0xa9b8: 84, + 0xa9b9: 84, + 0xa9bc: 84, + 0xa9bd: 84, + 0xa9e5: 84, + 0xaa29: 84, + 0xaa2a: 84, + 0xaa2b: 84, + 0xaa2c: 84, + 0xaa2d: 84, + 0xaa2e: 84, + 0xaa31: 84, + 0xaa32: 84, + 0xaa35: 84, + 0xaa36: 84, + 0xaa43: 84, + 0xaa4c: 84, + 0xaa7c: 84, + 0xaab0: 84, + 0xaab2: 84, + 0xaab3: 84, + 0xaab4: 84, + 0xaab7: 84, + 0xaab8: 84, + 0xaabe: 84, + 0xaabf: 84, + 0xaac1: 84, + 0xaaec: 84, + 0xaaed: 84, + 0xaaf6: 84, + 0xabe5: 84, + 0xabe8: 84, + 0xabed: 84, + 0xfb1e: 84, + 0xfe00: 84, + 0xfe01: 84, + 0xfe02: 84, + 0xfe03: 84, + 0xfe04: 84, + 0xfe05: 84, + 0xfe06: 84, + 0xfe07: 84, + 0xfe08: 84, + 0xfe09: 84, + 0xfe0a: 84, + 0xfe0b: 84, + 0xfe0c: 84, + 0xfe0d: 84, + 0xfe0e: 84, + 0xfe0f: 84, + 0xfe20: 84, + 0xfe21: 84, + 0xfe22: 84, + 0xfe23: 84, + 0xfe24: 84, + 0xfe25: 84, + 0xfe26: 84, + 0xfe27: 84, + 0xfe28: 84, + 0xfe29: 84, + 0xfe2a: 84, + 0xfe2b: 84, + 0xfe2c: 84, + 0xfe2d: 84, + 0xfe2e: 84, + 0xfe2f: 84, + 0xfeff: 84, + 0xfff9: 84, + 0xfffa: 84, + 0xfffb: 84, + 0x101fd: 84, + 0x102e0: 84, + 0x10376: 84, + 0x10377: 84, + 0x10378: 84, + 0x10379: 84, + 0x1037a: 84, + 0x10a01: 84, + 0x10a02: 84, + 0x10a03: 84, + 0x10a05: 84, + 0x10a06: 84, + 0x10a0c: 84, + 0x10a0d: 84, + 0x10a0e: 84, + 0x10a0f: 84, + 0x10a38: 84, + 0x10a39: 84, + 0x10a3a: 84, + 0x10a3f: 84, + 0x10ac0: 68, + 0x10ac1: 68, + 0x10ac2: 68, + 0x10ac3: 68, + 0x10ac4: 68, + 0x10ac5: 82, + 0x10ac7: 82, + 0x10ac9: 82, + 0x10aca: 82, + 0x10acd: 76, + 0x10ace: 82, + 0x10acf: 82, + 0x10ad0: 82, + 0x10ad1: 82, + 0x10ad2: 82, + 0x10ad3: 68, + 0x10ad4: 68, + 0x10ad5: 68, + 0x10ad6: 68, + 0x10ad7: 76, + 0x10ad8: 68, + 0x10ad9: 68, + 0x10ada: 68, + 0x10adb: 68, + 0x10adc: 68, + 0x10add: 82, + 0x10ade: 68, + 0x10adf: 68, + 0x10ae0: 68, + 0x10ae1: 82, + 0x10ae4: 82, + 0x10ae5: 84, + 0x10ae6: 84, + 0x10aeb: 68, + 0x10aec: 68, + 0x10aed: 68, + 0x10aee: 68, + 0x10aef: 82, + 0x10b80: 68, + 0x10b81: 82, + 0x10b82: 68, + 0x10b83: 82, + 0x10b84: 82, + 0x10b85: 82, + 0x10b86: 68, + 0x10b87: 68, + 0x10b88: 68, + 0x10b89: 82, + 0x10b8a: 68, + 0x10b8b: 68, + 0x10b8c: 82, + 0x10b8d: 68, + 0x10b8e: 82, + 0x10b8f: 82, + 0x10b90: 68, + 0x10b91: 82, + 0x10ba9: 82, + 0x10baa: 82, + 0x10bab: 82, + 0x10bac: 82, + 0x10bad: 68, + 0x10bae: 68, + 0x10d00: 76, + 0x10d01: 68, + 0x10d02: 68, + 0x10d03: 68, + 0x10d04: 68, + 0x10d05: 68, + 0x10d06: 68, + 0x10d07: 68, + 0x10d08: 68, + 0x10d09: 68, + 0x10d0a: 68, + 0x10d0b: 68, + 0x10d0c: 68, + 0x10d0d: 68, + 0x10d0e: 68, + 0x10d0f: 68, + 0x10d10: 68, + 0x10d11: 68, + 0x10d12: 68, + 0x10d13: 68, + 0x10d14: 68, + 0x10d15: 68, + 0x10d16: 68, + 0x10d17: 68, + 0x10d18: 68, + 0x10d19: 68, + 0x10d1a: 68, + 0x10d1b: 68, + 0x10d1c: 68, + 0x10d1d: 68, + 0x10d1e: 68, + 0x10d1f: 68, + 0x10d20: 68, + 0x10d21: 68, + 0x10d22: 82, + 0x10d23: 68, + 0x10d24: 84, + 0x10d25: 84, + 0x10d26: 84, + 0x10d27: 84, + 0x10eab: 84, + 0x10eac: 84, + 0x10efd: 84, + 0x10efe: 84, + 0x10eff: 84, + 0x10f30: 68, + 0x10f31: 68, + 0x10f32: 68, + 0x10f33: 82, + 0x10f34: 68, + 0x10f35: 68, + 0x10f36: 68, + 0x10f37: 68, + 0x10f38: 68, + 0x10f39: 68, + 0x10f3a: 68, + 0x10f3b: 68, + 0x10f3c: 68, + 0x10f3d: 68, + 0x10f3e: 68, + 0x10f3f: 68, + 0x10f40: 68, + 0x10f41: 68, + 0x10f42: 68, + 0x10f43: 68, + 0x10f44: 68, + 0x10f46: 84, + 0x10f47: 84, + 0x10f48: 84, + 0x10f49: 84, + 0x10f4a: 84, + 0x10f4b: 84, + 0x10f4c: 84, + 0x10f4d: 84, + 0x10f4e: 84, + 0x10f4f: 84, + 0x10f50: 84, + 0x10f51: 68, + 0x10f52: 68, + 0x10f53: 68, + 0x10f54: 82, + 0x10f70: 68, + 0x10f71: 68, + 0x10f72: 68, + 0x10f73: 68, + 0x10f74: 82, + 0x10f75: 82, + 0x10f76: 68, + 0x10f77: 68, + 0x10f78: 68, + 0x10f79: 68, + 0x10f7a: 68, + 0x10f7b: 68, + 0x10f7c: 68, + 0x10f7d: 68, + 0x10f7e: 68, + 0x10f7f: 68, + 0x10f80: 68, + 0x10f81: 68, + 0x10f82: 84, + 0x10f83: 84, + 0x10f84: 84, + 0x10f85: 84, + 0x10fb0: 68, + 0x10fb2: 68, + 0x10fb3: 68, + 0x10fb4: 82, + 0x10fb5: 82, + 0x10fb6: 82, + 0x10fb8: 68, + 0x10fb9: 82, + 0x10fba: 82, + 0x10fbb: 68, + 0x10fbc: 68, + 0x10fbd: 82, + 0x10fbe: 68, + 0x10fbf: 68, + 0x10fc1: 68, + 0x10fc2: 82, + 0x10fc3: 82, + 0x10fc4: 68, + 0x10fc9: 82, + 0x10fca: 68, + 0x10fcb: 76, + 0x11001: 84, + 0x11038: 84, + 0x11039: 84, + 0x1103a: 84, + 0x1103b: 84, + 0x1103c: 84, + 0x1103d: 84, + 0x1103e: 84, + 0x1103f: 84, + 0x11040: 84, + 0x11041: 84, + 0x11042: 84, + 0x11043: 84, + 0x11044: 84, + 0x11045: 84, + 0x11046: 84, + 0x11070: 84, + 0x11073: 84, + 0x11074: 84, + 0x1107f: 84, + 0x11080: 84, + 0x11081: 84, + 0x110b3: 84, + 0x110b4: 84, + 0x110b5: 84, + 0x110b6: 84, + 0x110b9: 84, + 0x110ba: 84, + 0x110c2: 84, + 0x11100: 84, + 0x11101: 84, + 0x11102: 84, + 0x11127: 84, + 0x11128: 84, + 0x11129: 84, + 0x1112a: 84, + 0x1112b: 84, + 0x1112d: 84, + 0x1112e: 84, + 0x1112f: 84, + 0x11130: 84, + 0x11131: 84, + 0x11132: 84, + 0x11133: 84, + 0x11134: 84, + 0x11173: 84, + 0x11180: 84, + 0x11181: 84, + 0x111b6: 84, + 0x111b7: 84, + 0x111b8: 84, + 0x111b9: 84, + 0x111ba: 84, + 0x111bb: 84, + 0x111bc: 84, + 0x111bd: 84, + 0x111be: 84, + 0x111c9: 84, + 0x111ca: 84, + 0x111cb: 84, + 0x111cc: 84, + 0x111cf: 84, + 0x1122f: 84, + 0x11230: 84, + 0x11231: 84, + 0x11234: 84, + 0x11236: 84, + 0x11237: 84, + 0x1123e: 84, + 0x11241: 84, + 0x112df: 84, + 0x112e3: 84, + 0x112e4: 84, + 0x112e5: 84, + 0x112e6: 84, + 0x112e7: 84, + 0x112e8: 84, + 0x112e9: 84, + 0x112ea: 84, + 0x11300: 84, + 0x11301: 84, + 0x1133b: 84, + 0x1133c: 84, + 0x11340: 84, + 0x11366: 84, + 0x11367: 84, + 0x11368: 84, + 0x11369: 84, + 0x1136a: 84, + 0x1136b: 84, + 0x1136c: 84, + 0x11370: 84, + 0x11371: 84, + 0x11372: 84, + 0x11373: 84, + 0x11374: 84, + 0x11438: 84, + 0x11439: 84, + 0x1143a: 84, + 0x1143b: 84, + 0x1143c: 84, + 0x1143d: 84, + 0x1143e: 84, + 0x1143f: 84, + 0x11442: 84, + 0x11443: 84, + 0x11444: 84, + 0x11446: 84, + 0x1145e: 84, + 0x114b3: 84, + 0x114b4: 84, + 0x114b5: 84, + 0x114b6: 84, + 0x114b7: 84, + 0x114b8: 84, + 0x114ba: 84, + 0x114bf: 84, + 0x114c0: 84, + 0x114c2: 84, + 0x114c3: 84, + 0x115b2: 84, + 0x115b3: 84, + 0x115b4: 84, + 0x115b5: 84, + 0x115bc: 84, + 0x115bd: 84, + 0x115bf: 84, + 0x115c0: 84, + 0x115dc: 84, + 0x115dd: 84, + 0x11633: 84, + 0x11634: 84, + 0x11635: 84, + 0x11636: 84, + 0x11637: 84, + 0x11638: 84, + 0x11639: 84, + 0x1163a: 84, + 0x1163d: 84, + 0x1163f: 84, + 0x11640: 84, + 0x116ab: 84, + 0x116ad: 84, + 0x116b0: 84, + 0x116b1: 84, + 0x116b2: 84, + 0x116b3: 84, + 0x116b4: 84, + 0x116b5: 84, + 0x116b7: 84, + 0x1171d: 84, + 0x1171e: 84, + 0x1171f: 84, + 0x11722: 84, + 0x11723: 84, + 0x11724: 84, + 0x11725: 84, + 0x11727: 84, + 0x11728: 84, + 0x11729: 84, + 0x1172a: 84, + 0x1172b: 84, + 0x1182f: 84, + 0x11830: 84, + 0x11831: 84, + 0x11832: 84, + 0x11833: 84, + 0x11834: 84, + 0x11835: 84, + 0x11836: 84, + 0x11837: 84, + 0x11839: 84, + 0x1183a: 84, + 0x1193b: 84, + 0x1193c: 84, + 0x1193e: 84, + 0x11943: 84, + 0x119d4: 84, + 0x119d5: 84, + 0x119d6: 84, + 0x119d7: 84, + 0x119da: 84, + 0x119db: 84, + 0x119e0: 84, + 0x11a01: 84, + 0x11a02: 84, + 0x11a03: 84, + 0x11a04: 84, + 0x11a05: 84, + 0x11a06: 84, + 0x11a07: 84, + 0x11a08: 84, + 0x11a09: 84, + 0x11a0a: 84, + 0x11a33: 84, + 0x11a34: 84, + 0x11a35: 84, + 0x11a36: 84, + 0x11a37: 84, + 0x11a38: 84, + 0x11a3b: 84, + 0x11a3c: 84, + 0x11a3d: 84, + 0x11a3e: 84, + 0x11a47: 84, + 0x11a51: 84, + 0x11a52: 84, + 0x11a53: 84, + 0x11a54: 84, + 0x11a55: 84, + 0x11a56: 84, + 0x11a59: 84, + 0x11a5a: 84, + 0x11a5b: 84, + 0x11a8a: 84, + 0x11a8b: 84, + 0x11a8c: 84, + 0x11a8d: 84, + 0x11a8e: 84, + 0x11a8f: 84, + 0x11a90: 84, + 0x11a91: 84, + 0x11a92: 84, + 0x11a93: 84, + 0x11a94: 84, + 0x11a95: 84, + 0x11a96: 84, + 0x11a98: 84, + 0x11a99: 84, + 0x11c30: 84, + 0x11c31: 84, + 0x11c32: 84, + 0x11c33: 84, + 0x11c34: 84, + 0x11c35: 84, + 0x11c36: 84, + 0x11c38: 84, + 0x11c39: 84, + 0x11c3a: 84, + 0x11c3b: 84, + 0x11c3c: 84, + 0x11c3d: 84, + 0x11c3f: 84, + 0x11c92: 84, + 0x11c93: 84, + 0x11c94: 84, + 0x11c95: 84, + 0x11c96: 84, + 0x11c97: 84, + 0x11c98: 84, + 0x11c99: 84, + 0x11c9a: 84, + 0x11c9b: 84, + 0x11c9c: 84, + 0x11c9d: 84, + 0x11c9e: 84, + 0x11c9f: 84, + 0x11ca0: 84, + 0x11ca1: 84, + 0x11ca2: 84, + 0x11ca3: 84, + 0x11ca4: 84, + 0x11ca5: 84, + 0x11ca6: 84, + 0x11ca7: 84, + 0x11caa: 84, + 0x11cab: 84, + 0x11cac: 84, + 0x11cad: 84, + 0x11cae: 84, + 0x11caf: 84, + 0x11cb0: 84, + 0x11cb2: 84, + 0x11cb3: 84, + 0x11cb5: 84, + 0x11cb6: 84, + 0x11d31: 84, + 0x11d32: 84, + 0x11d33: 84, + 0x11d34: 84, + 0x11d35: 84, + 0x11d36: 84, + 0x11d3a: 84, + 0x11d3c: 84, + 0x11d3d: 84, + 0x11d3f: 84, + 0x11d40: 84, + 0x11d41: 84, + 0x11d42: 84, + 0x11d43: 84, + 0x11d44: 84, + 0x11d45: 84, + 0x11d47: 84, + 0x11d90: 84, + 0x11d91: 84, + 0x11d95: 84, + 0x11d97: 84, + 0x11ef3: 84, + 0x11ef4: 84, + 0x11f00: 84, + 0x11f01: 84, + 0x11f36: 84, + 0x11f37: 84, + 0x11f38: 84, + 0x11f39: 84, + 0x11f3a: 84, + 0x11f40: 84, + 0x11f42: 84, + 0x13430: 84, + 0x13431: 84, + 0x13432: 84, + 0x13433: 84, + 0x13434: 84, + 0x13435: 84, + 0x13436: 84, + 0x13437: 84, + 0x13438: 84, + 0x13439: 84, + 0x1343a: 84, + 0x1343b: 84, + 0x1343c: 84, + 0x1343d: 84, + 0x1343e: 84, + 0x1343f: 84, + 0x13440: 84, + 0x13447: 84, + 0x13448: 84, + 0x13449: 84, + 0x1344a: 84, + 0x1344b: 84, + 0x1344c: 84, + 0x1344d: 84, + 0x1344e: 84, + 0x1344f: 84, + 0x13450: 84, + 0x13451: 84, + 0x13452: 84, + 0x13453: 84, + 0x13454: 84, + 0x13455: 84, + 0x16af0: 84, + 0x16af1: 84, + 0x16af2: 84, + 0x16af3: 84, + 0x16af4: 84, + 0x16b30: 84, + 0x16b31: 84, + 0x16b32: 84, + 0x16b33: 84, + 0x16b34: 84, + 0x16b35: 84, + 0x16b36: 84, + 0x16f4f: 84, + 0x16f8f: 84, + 0x16f90: 84, + 0x16f91: 84, + 0x16f92: 84, + 0x16fe4: 84, + 0x1bc9d: 84, + 0x1bc9e: 84, + 0x1bca0: 84, + 0x1bca1: 84, + 0x1bca2: 84, + 0x1bca3: 84, + 0x1cf00: 84, + 0x1cf01: 84, + 0x1cf02: 84, + 0x1cf03: 84, + 0x1cf04: 84, + 0x1cf05: 84, + 0x1cf06: 84, + 0x1cf07: 84, + 0x1cf08: 84, + 0x1cf09: 84, + 0x1cf0a: 84, + 0x1cf0b: 84, + 0x1cf0c: 84, + 0x1cf0d: 84, + 0x1cf0e: 84, + 0x1cf0f: 84, + 0x1cf10: 84, + 0x1cf11: 84, + 0x1cf12: 84, + 0x1cf13: 84, + 0x1cf14: 84, + 0x1cf15: 84, + 0x1cf16: 84, + 0x1cf17: 84, + 0x1cf18: 84, + 0x1cf19: 84, + 0x1cf1a: 84, + 0x1cf1b: 84, + 0x1cf1c: 84, + 0x1cf1d: 84, + 0x1cf1e: 84, + 0x1cf1f: 84, + 0x1cf20: 84, + 0x1cf21: 84, + 0x1cf22: 84, + 0x1cf23: 84, + 0x1cf24: 84, + 0x1cf25: 84, + 0x1cf26: 84, + 0x1cf27: 84, + 0x1cf28: 84, + 0x1cf29: 84, + 0x1cf2a: 84, + 0x1cf2b: 84, + 0x1cf2c: 84, + 0x1cf2d: 84, + 0x1cf30: 84, + 0x1cf31: 84, + 0x1cf32: 84, + 0x1cf33: 84, + 0x1cf34: 84, + 0x1cf35: 84, + 0x1cf36: 84, + 0x1cf37: 84, + 0x1cf38: 84, + 0x1cf39: 84, + 0x1cf3a: 84, + 0x1cf3b: 84, + 0x1cf3c: 84, + 0x1cf3d: 84, + 0x1cf3e: 84, + 0x1cf3f: 84, + 0x1cf40: 84, + 0x1cf41: 84, + 0x1cf42: 84, + 0x1cf43: 84, + 0x1cf44: 84, + 0x1cf45: 84, + 0x1cf46: 84, + 0x1d167: 84, + 0x1d168: 84, + 0x1d169: 84, + 0x1d173: 84, + 0x1d174: 84, + 0x1d175: 84, + 0x1d176: 84, + 0x1d177: 84, + 0x1d178: 84, + 0x1d179: 84, + 0x1d17a: 84, + 0x1d17b: 84, + 0x1d17c: 84, + 0x1d17d: 84, + 0x1d17e: 84, + 0x1d17f: 84, + 0x1d180: 84, + 0x1d181: 84, + 0x1d182: 84, + 0x1d185: 84, + 0x1d186: 84, + 0x1d187: 84, + 0x1d188: 84, + 0x1d189: 84, + 0x1d18a: 84, + 0x1d18b: 84, + 0x1d1aa: 84, + 0x1d1ab: 84, + 0x1d1ac: 84, + 0x1d1ad: 84, + 0x1d242: 84, + 0x1d243: 84, + 0x1d244: 84, + 0x1da00: 84, + 0x1da01: 84, + 0x1da02: 84, + 0x1da03: 84, + 0x1da04: 84, + 0x1da05: 84, + 0x1da06: 84, + 0x1da07: 84, + 0x1da08: 84, + 0x1da09: 84, + 0x1da0a: 84, + 0x1da0b: 84, + 0x1da0c: 84, + 0x1da0d: 84, + 0x1da0e: 84, + 0x1da0f: 84, + 0x1da10: 84, + 0x1da11: 84, + 0x1da12: 84, + 0x1da13: 84, + 0x1da14: 84, + 0x1da15: 84, + 0x1da16: 84, + 0x1da17: 84, + 0x1da18: 84, + 0x1da19: 84, + 0x1da1a: 84, + 0x1da1b: 84, + 0x1da1c: 84, + 0x1da1d: 84, + 0x1da1e: 84, + 0x1da1f: 84, + 0x1da20: 84, + 0x1da21: 84, + 0x1da22: 84, + 0x1da23: 84, + 0x1da24: 84, + 0x1da25: 84, + 0x1da26: 84, + 0x1da27: 84, + 0x1da28: 84, + 0x1da29: 84, + 0x1da2a: 84, + 0x1da2b: 84, + 0x1da2c: 84, + 0x1da2d: 84, + 0x1da2e: 84, + 0x1da2f: 84, + 0x1da30: 84, + 0x1da31: 84, + 0x1da32: 84, + 0x1da33: 84, + 0x1da34: 84, + 0x1da35: 84, + 0x1da36: 84, + 0x1da3b: 84, + 0x1da3c: 84, + 0x1da3d: 84, + 0x1da3e: 84, + 0x1da3f: 84, + 0x1da40: 84, + 0x1da41: 84, + 0x1da42: 84, + 0x1da43: 84, + 0x1da44: 84, + 0x1da45: 84, + 0x1da46: 84, + 0x1da47: 84, + 0x1da48: 84, + 0x1da49: 84, + 0x1da4a: 84, + 0x1da4b: 84, + 0x1da4c: 84, + 0x1da4d: 84, + 0x1da4e: 84, + 0x1da4f: 84, + 0x1da50: 84, + 0x1da51: 84, + 0x1da52: 84, + 0x1da53: 84, + 0x1da54: 84, + 0x1da55: 84, + 0x1da56: 84, + 0x1da57: 84, + 0x1da58: 84, + 0x1da59: 84, + 0x1da5a: 84, + 0x1da5b: 84, + 0x1da5c: 84, + 0x1da5d: 84, + 0x1da5e: 84, + 0x1da5f: 84, + 0x1da60: 84, + 0x1da61: 84, + 0x1da62: 84, + 0x1da63: 84, + 0x1da64: 84, + 0x1da65: 84, + 0x1da66: 84, + 0x1da67: 84, + 0x1da68: 84, + 0x1da69: 84, + 0x1da6a: 84, + 0x1da6b: 84, + 0x1da6c: 84, + 0x1da75: 84, + 0x1da84: 84, + 0x1da9b: 84, + 0x1da9c: 84, + 0x1da9d: 84, + 0x1da9e: 84, + 0x1da9f: 84, + 0x1daa1: 84, + 0x1daa2: 84, + 0x1daa3: 84, + 0x1daa4: 84, + 0x1daa5: 84, + 0x1daa6: 84, + 0x1daa7: 84, + 0x1daa8: 84, + 0x1daa9: 84, + 0x1daaa: 84, + 0x1daab: 84, + 0x1daac: 84, + 0x1daad: 84, + 0x1daae: 84, + 0x1daaf: 84, + 0x1e000: 84, + 0x1e001: 84, + 0x1e002: 84, + 0x1e003: 84, + 0x1e004: 84, + 0x1e005: 84, + 0x1e006: 84, + 0x1e008: 84, + 0x1e009: 84, + 0x1e00a: 84, + 0x1e00b: 84, + 0x1e00c: 84, + 0x1e00d: 84, + 0x1e00e: 84, + 0x1e00f: 84, + 0x1e010: 84, + 0x1e011: 84, + 0x1e012: 84, + 0x1e013: 84, + 0x1e014: 84, + 0x1e015: 84, + 0x1e016: 84, + 0x1e017: 84, + 0x1e018: 84, + 0x1e01b: 84, + 0x1e01c: 84, + 0x1e01d: 84, + 0x1e01e: 84, + 0x1e01f: 84, + 0x1e020: 84, + 0x1e021: 84, + 0x1e023: 84, + 0x1e024: 84, + 0x1e026: 84, + 0x1e027: 84, + 0x1e028: 84, + 0x1e029: 84, + 0x1e02a: 84, + 0x1e08f: 84, + 0x1e130: 84, + 0x1e131: 84, + 0x1e132: 84, + 0x1e133: 84, + 0x1e134: 84, + 0x1e135: 84, + 0x1e136: 84, + 0x1e2ae: 84, + 0x1e2ec: 84, + 0x1e2ed: 84, + 0x1e2ee: 84, + 0x1e2ef: 84, + 0x1e4ec: 84, + 0x1e4ed: 84, + 0x1e4ee: 84, + 0x1e4ef: 84, + 0x1e8d0: 84, + 0x1e8d1: 84, + 0x1e8d2: 84, + 0x1e8d3: 84, + 0x1e8d4: 84, + 0x1e8d5: 84, + 0x1e8d6: 84, + 0x1e900: 68, + 0x1e901: 68, + 0x1e902: 68, + 0x1e903: 68, + 0x1e904: 68, + 0x1e905: 68, + 0x1e906: 68, + 0x1e907: 68, + 0x1e908: 68, + 0x1e909: 68, + 0x1e90a: 68, + 0x1e90b: 68, + 0x1e90c: 68, + 0x1e90d: 68, + 0x1e90e: 68, + 0x1e90f: 68, + 0x1e910: 68, + 0x1e911: 68, + 0x1e912: 68, + 0x1e913: 68, + 0x1e914: 68, + 0x1e915: 68, + 0x1e916: 68, + 0x1e917: 68, + 0x1e918: 68, + 0x1e919: 68, + 0x1e91a: 68, + 0x1e91b: 68, + 0x1e91c: 68, + 0x1e91d: 68, + 0x1e91e: 68, + 0x1e91f: 68, + 0x1e920: 68, + 0x1e921: 68, + 0x1e922: 68, + 0x1e923: 68, + 0x1e924: 68, + 0x1e925: 68, + 0x1e926: 68, + 0x1e927: 68, + 0x1e928: 68, + 0x1e929: 68, + 0x1e92a: 68, + 0x1e92b: 68, + 0x1e92c: 68, + 0x1e92d: 68, + 0x1e92e: 68, + 0x1e92f: 68, + 0x1e930: 68, + 0x1e931: 68, + 0x1e932: 68, + 0x1e933: 68, + 0x1e934: 68, + 0x1e935: 68, + 0x1e936: 68, + 0x1e937: 68, + 0x1e938: 68, + 0x1e939: 68, + 0x1e93a: 68, + 0x1e93b: 68, + 0x1e93c: 68, + 0x1e93d: 68, + 0x1e93e: 68, + 0x1e93f: 68, + 0x1e940: 68, + 0x1e941: 68, + 0x1e942: 68, + 0x1e943: 68, + 0x1e944: 84, + 0x1e945: 84, + 0x1e946: 84, + 0x1e947: 84, + 0x1e948: 84, + 0x1e949: 84, + 0x1e94a: 84, + 0x1e94b: 84, + 0xe0001: 84, + 0xe0020: 84, + 0xe0021: 84, + 0xe0022: 84, + 0xe0023: 84, + 0xe0024: 84, + 0xe0025: 84, + 0xe0026: 84, + 0xe0027: 84, + 0xe0028: 84, + 0xe0029: 84, + 0xe002a: 84, + 0xe002b: 84, + 0xe002c: 84, + 0xe002d: 84, + 0xe002e: 84, + 0xe002f: 84, + 0xe0030: 84, + 0xe0031: 84, + 0xe0032: 84, + 0xe0033: 84, + 0xe0034: 84, + 0xe0035: 84, + 0xe0036: 84, + 0xe0037: 84, + 0xe0038: 84, + 0xe0039: 84, + 0xe003a: 84, + 0xe003b: 84, + 0xe003c: 84, + 0xe003d: 84, + 0xe003e: 84, + 0xe003f: 84, + 0xe0040: 84, + 0xe0041: 84, + 0xe0042: 84, + 0xe0043: 84, + 0xe0044: 84, + 0xe0045: 84, + 0xe0046: 84, + 0xe0047: 84, + 0xe0048: 84, + 0xe0049: 84, + 0xe004a: 84, + 0xe004b: 84, + 0xe004c: 84, + 0xe004d: 84, + 0xe004e: 84, + 0xe004f: 84, + 0xe0050: 84, + 0xe0051: 84, + 0xe0052: 84, + 0xe0053: 84, + 0xe0054: 84, + 0xe0055: 84, + 0xe0056: 84, + 0xe0057: 84, + 0xe0058: 84, + 0xe0059: 84, + 0xe005a: 84, + 0xe005b: 84, + 0xe005c: 84, + 0xe005d: 84, + 0xe005e: 84, + 0xe005f: 84, + 0xe0060: 84, + 0xe0061: 84, + 0xe0062: 84, + 0xe0063: 84, + 0xe0064: 84, + 0xe0065: 84, + 0xe0066: 84, + 0xe0067: 84, + 0xe0068: 84, + 0xe0069: 84, + 0xe006a: 84, + 0xe006b: 84, + 0xe006c: 84, + 0xe006d: 84, + 0xe006e: 84, + 0xe006f: 84, + 0xe0070: 84, + 0xe0071: 84, + 0xe0072: 84, + 0xe0073: 84, + 0xe0074: 84, + 0xe0075: 84, + 0xe0076: 84, + 0xe0077: 84, + 0xe0078: 84, + 0xe0079: 84, + 0xe007a: 84, + 0xe007b: 84, + 0xe007c: 84, + 0xe007d: 84, + 0xe007e: 84, + 0xe007f: 84, + 0xe0100: 84, + 0xe0101: 84, + 0xe0102: 84, + 0xe0103: 84, + 0xe0104: 84, + 0xe0105: 84, + 0xe0106: 84, + 0xe0107: 84, + 0xe0108: 84, + 0xe0109: 84, + 0xe010a: 84, + 0xe010b: 84, + 0xe010c: 84, + 0xe010d: 84, + 0xe010e: 84, + 0xe010f: 84, + 0xe0110: 84, + 0xe0111: 84, + 0xe0112: 84, + 0xe0113: 84, + 0xe0114: 84, + 0xe0115: 84, + 0xe0116: 84, + 0xe0117: 84, + 0xe0118: 84, + 0xe0119: 84, + 0xe011a: 84, + 0xe011b: 84, + 0xe011c: 84, + 0xe011d: 84, + 0xe011e: 84, + 0xe011f: 84, + 0xe0120: 84, + 0xe0121: 84, + 0xe0122: 84, + 0xe0123: 84, + 0xe0124: 84, + 0xe0125: 84, + 0xe0126: 84, + 0xe0127: 84, + 0xe0128: 84, + 0xe0129: 84, + 0xe012a: 84, + 0xe012b: 84, + 0xe012c: 84, + 0xe012d: 84, + 0xe012e: 84, + 0xe012f: 84, + 0xe0130: 84, + 0xe0131: 84, + 0xe0132: 84, + 0xe0133: 84, + 0xe0134: 84, + 0xe0135: 84, + 0xe0136: 84, + 0xe0137: 84, + 0xe0138: 84, + 0xe0139: 84, + 0xe013a: 84, + 0xe013b: 84, + 0xe013c: 84, + 0xe013d: 84, + 0xe013e: 84, + 0xe013f: 84, + 0xe0140: 84, + 0xe0141: 84, + 0xe0142: 84, + 0xe0143: 84, + 0xe0144: 84, + 0xe0145: 84, + 0xe0146: 84, + 0xe0147: 84, + 0xe0148: 84, + 0xe0149: 84, + 0xe014a: 84, + 0xe014b: 84, + 0xe014c: 84, + 0xe014d: 84, + 0xe014e: 84, + 0xe014f: 84, + 0xe0150: 84, + 0xe0151: 84, + 0xe0152: 84, + 0xe0153: 84, + 0xe0154: 84, + 0xe0155: 84, + 0xe0156: 84, + 0xe0157: 84, + 0xe0158: 84, + 0xe0159: 84, + 0xe015a: 84, + 0xe015b: 84, + 0xe015c: 84, + 0xe015d: 84, + 0xe015e: 84, + 0xe015f: 84, + 0xe0160: 84, + 0xe0161: 84, + 0xe0162: 84, + 0xe0163: 84, + 0xe0164: 84, + 0xe0165: 84, + 0xe0166: 84, + 0xe0167: 84, + 0xe0168: 84, + 0xe0169: 84, + 0xe016a: 84, + 0xe016b: 84, + 0xe016c: 84, + 0xe016d: 84, + 0xe016e: 84, + 0xe016f: 84, + 0xe0170: 84, + 0xe0171: 84, + 0xe0172: 84, + 0xe0173: 84, + 0xe0174: 84, + 0xe0175: 84, + 0xe0176: 84, + 0xe0177: 84, + 0xe0178: 84, + 0xe0179: 84, + 0xe017a: 84, + 0xe017b: 84, + 0xe017c: 84, + 0xe017d: 84, + 0xe017e: 84, + 0xe017f: 84, + 0xe0180: 84, + 0xe0181: 84, + 0xe0182: 84, + 0xe0183: 84, + 0xe0184: 84, + 0xe0185: 84, + 0xe0186: 84, + 0xe0187: 84, + 0xe0188: 84, + 0xe0189: 84, + 0xe018a: 84, + 0xe018b: 84, + 0xe018c: 84, + 0xe018d: 84, + 0xe018e: 84, + 0xe018f: 84, + 0xe0190: 84, + 0xe0191: 84, + 0xe0192: 84, + 0xe0193: 84, + 0xe0194: 84, + 0xe0195: 84, + 0xe0196: 84, + 0xe0197: 84, + 0xe0198: 84, + 0xe0199: 84, + 0xe019a: 84, + 0xe019b: 84, + 0xe019c: 84, + 0xe019d: 84, + 0xe019e: 84, + 0xe019f: 84, + 0xe01a0: 84, + 0xe01a1: 84, + 0xe01a2: 84, + 0xe01a3: 84, + 0xe01a4: 84, + 0xe01a5: 84, + 0xe01a6: 84, + 0xe01a7: 84, + 0xe01a8: 84, + 0xe01a9: 84, + 0xe01aa: 84, + 0xe01ab: 84, + 0xe01ac: 84, + 0xe01ad: 84, + 0xe01ae: 84, + 0xe01af: 84, + 0xe01b0: 84, + 0xe01b1: 84, + 0xe01b2: 84, + 0xe01b3: 84, + 0xe01b4: 84, + 0xe01b5: 84, + 0xe01b6: 84, + 0xe01b7: 84, + 0xe01b8: 84, + 0xe01b9: 84, + 0xe01ba: 84, + 0xe01bb: 84, + 0xe01bc: 84, + 0xe01bd: 84, + 0xe01be: 84, + 0xe01bf: 84, + 0xe01c0: 84, + 0xe01c1: 84, + 0xe01c2: 84, + 0xe01c3: 84, + 0xe01c4: 84, + 0xe01c5: 84, + 0xe01c6: 84, + 0xe01c7: 84, + 0xe01c8: 84, + 0xe01c9: 84, + 0xe01ca: 84, + 0xe01cb: 84, + 0xe01cc: 84, + 0xe01cd: 84, + 0xe01ce: 84, + 0xe01cf: 84, + 0xe01d0: 84, + 0xe01d1: 84, + 0xe01d2: 84, + 0xe01d3: 84, + 0xe01d4: 84, + 0xe01d5: 84, + 0xe01d6: 84, + 0xe01d7: 84, + 0xe01d8: 84, + 0xe01d9: 84, + 0xe01da: 84, + 0xe01db: 84, + 0xe01dc: 84, + 0xe01dd: 84, + 0xe01de: 84, + 0xe01df: 84, + 0xe01e0: 84, + 0xe01e1: 84, + 0xe01e2: 84, + 0xe01e3: 84, + 0xe01e4: 84, + 0xe01e5: 84, + 0xe01e6: 84, + 0xe01e7: 84, + 0xe01e8: 84, + 0xe01e9: 84, + 0xe01ea: 84, + 0xe01eb: 84, + 0xe01ec: 84, + 0xe01ed: 84, + 0xe01ee: 84, + 0xe01ef: 84, +} +codepoint_classes = { + 'PVALID': ( + 0x2d0000002e, + 0x300000003a, + 0x610000007b, + 0xdf000000f7, + 0xf800000100, + 0x10100000102, + 0x10300000104, + 0x10500000106, + 0x10700000108, + 0x1090000010a, + 0x10b0000010c, + 0x10d0000010e, + 0x10f00000110, + 0x11100000112, + 0x11300000114, + 0x11500000116, + 0x11700000118, + 0x1190000011a, + 0x11b0000011c, + 0x11d0000011e, + 0x11f00000120, + 0x12100000122, + 0x12300000124, + 0x12500000126, + 0x12700000128, + 0x1290000012a, + 0x12b0000012c, + 0x12d0000012e, + 0x12f00000130, + 0x13100000132, + 0x13500000136, + 0x13700000139, + 0x13a0000013b, + 0x13c0000013d, + 0x13e0000013f, + 0x14200000143, + 0x14400000145, + 0x14600000147, + 0x14800000149, + 0x14b0000014c, + 0x14d0000014e, + 0x14f00000150, + 0x15100000152, + 0x15300000154, + 0x15500000156, + 0x15700000158, + 0x1590000015a, + 0x15b0000015c, + 0x15d0000015e, + 0x15f00000160, + 0x16100000162, + 0x16300000164, + 0x16500000166, + 0x16700000168, + 0x1690000016a, + 0x16b0000016c, + 0x16d0000016e, + 0x16f00000170, + 0x17100000172, + 0x17300000174, + 0x17500000176, + 0x17700000178, + 0x17a0000017b, + 0x17c0000017d, + 0x17e0000017f, + 0x18000000181, + 0x18300000184, + 0x18500000186, + 0x18800000189, + 0x18c0000018e, + 0x19200000193, + 0x19500000196, + 0x1990000019c, + 0x19e0000019f, + 0x1a1000001a2, + 0x1a3000001a4, + 0x1a5000001a6, + 0x1a8000001a9, + 0x1aa000001ac, + 0x1ad000001ae, + 0x1b0000001b1, + 0x1b4000001b5, + 0x1b6000001b7, + 0x1b9000001bc, + 0x1bd000001c4, + 0x1ce000001cf, + 0x1d0000001d1, + 0x1d2000001d3, + 0x1d4000001d5, + 0x1d6000001d7, + 0x1d8000001d9, + 0x1da000001db, + 0x1dc000001de, + 0x1df000001e0, + 0x1e1000001e2, + 0x1e3000001e4, + 0x1e5000001e6, + 0x1e7000001e8, + 0x1e9000001ea, + 0x1eb000001ec, + 0x1ed000001ee, + 0x1ef000001f1, + 0x1f5000001f6, + 0x1f9000001fa, + 0x1fb000001fc, + 0x1fd000001fe, + 0x1ff00000200, + 0x20100000202, + 0x20300000204, + 0x20500000206, + 0x20700000208, + 0x2090000020a, + 0x20b0000020c, + 0x20d0000020e, + 0x20f00000210, + 0x21100000212, + 0x21300000214, + 0x21500000216, + 0x21700000218, + 0x2190000021a, + 0x21b0000021c, + 0x21d0000021e, + 0x21f00000220, + 0x22100000222, + 0x22300000224, + 0x22500000226, + 0x22700000228, + 0x2290000022a, + 0x22b0000022c, + 0x22d0000022e, + 0x22f00000230, + 0x23100000232, + 0x2330000023a, + 0x23c0000023d, + 0x23f00000241, + 0x24200000243, + 0x24700000248, + 0x2490000024a, + 0x24b0000024c, + 0x24d0000024e, + 0x24f000002b0, + 0x2b9000002c2, + 0x2c6000002d2, + 0x2ec000002ed, + 0x2ee000002ef, + 0x30000000340, + 0x34200000343, + 0x3460000034f, + 0x35000000370, + 0x37100000372, + 0x37300000374, + 0x37700000378, + 0x37b0000037e, + 0x39000000391, + 0x3ac000003cf, + 0x3d7000003d8, + 0x3d9000003da, + 0x3db000003dc, + 0x3dd000003de, + 0x3df000003e0, + 0x3e1000003e2, + 0x3e3000003e4, + 0x3e5000003e6, + 0x3e7000003e8, + 0x3e9000003ea, + 0x3eb000003ec, + 0x3ed000003ee, + 0x3ef000003f0, + 0x3f3000003f4, + 0x3f8000003f9, + 0x3fb000003fd, + 0x43000000460, + 0x46100000462, + 0x46300000464, + 0x46500000466, + 0x46700000468, + 0x4690000046a, + 0x46b0000046c, + 0x46d0000046e, + 0x46f00000470, + 0x47100000472, + 0x47300000474, + 0x47500000476, + 0x47700000478, + 0x4790000047a, + 0x47b0000047c, + 0x47d0000047e, + 0x47f00000480, + 0x48100000482, + 0x48300000488, + 0x48b0000048c, + 0x48d0000048e, + 0x48f00000490, + 0x49100000492, + 0x49300000494, + 0x49500000496, + 0x49700000498, + 0x4990000049a, + 0x49b0000049c, + 0x49d0000049e, + 0x49f000004a0, + 0x4a1000004a2, + 0x4a3000004a4, + 0x4a5000004a6, + 0x4a7000004a8, + 0x4a9000004aa, + 0x4ab000004ac, + 0x4ad000004ae, + 0x4af000004b0, + 0x4b1000004b2, + 0x4b3000004b4, + 0x4b5000004b6, + 0x4b7000004b8, + 0x4b9000004ba, + 0x4bb000004bc, + 0x4bd000004be, + 0x4bf000004c0, + 0x4c2000004c3, + 0x4c4000004c5, + 0x4c6000004c7, + 0x4c8000004c9, + 0x4ca000004cb, + 0x4cc000004cd, + 0x4ce000004d0, + 0x4d1000004d2, + 0x4d3000004d4, + 0x4d5000004d6, + 0x4d7000004d8, + 0x4d9000004da, + 0x4db000004dc, + 0x4dd000004de, + 0x4df000004e0, + 0x4e1000004e2, + 0x4e3000004e4, + 0x4e5000004e6, + 0x4e7000004e8, + 0x4e9000004ea, + 0x4eb000004ec, + 0x4ed000004ee, + 0x4ef000004f0, + 0x4f1000004f2, + 0x4f3000004f4, + 0x4f5000004f6, + 0x4f7000004f8, + 0x4f9000004fa, + 0x4fb000004fc, + 0x4fd000004fe, + 0x4ff00000500, + 0x50100000502, + 0x50300000504, + 0x50500000506, + 0x50700000508, + 0x5090000050a, + 0x50b0000050c, + 0x50d0000050e, + 0x50f00000510, + 0x51100000512, + 0x51300000514, + 0x51500000516, + 0x51700000518, + 0x5190000051a, + 0x51b0000051c, + 0x51d0000051e, + 0x51f00000520, + 0x52100000522, + 0x52300000524, + 0x52500000526, + 0x52700000528, + 0x5290000052a, + 0x52b0000052c, + 0x52d0000052e, + 0x52f00000530, + 0x5590000055a, + 0x56000000587, + 0x58800000589, + 0x591000005be, + 0x5bf000005c0, + 0x5c1000005c3, + 0x5c4000005c6, + 0x5c7000005c8, + 0x5d0000005eb, + 0x5ef000005f3, + 0x6100000061b, + 0x62000000640, + 0x64100000660, + 0x66e00000675, + 0x679000006d4, + 0x6d5000006dd, + 0x6df000006e9, + 0x6ea000006f0, + 0x6fa00000700, + 0x7100000074b, + 0x74d000007b2, + 0x7c0000007f6, + 0x7fd000007fe, + 0x8000000082e, + 0x8400000085c, + 0x8600000086b, + 0x87000000888, + 0x8890000088f, + 0x898000008e2, + 0x8e300000958, + 0x96000000964, + 0x96600000970, + 0x97100000984, + 0x9850000098d, + 0x98f00000991, + 0x993000009a9, + 0x9aa000009b1, + 0x9b2000009b3, + 0x9b6000009ba, + 0x9bc000009c5, + 0x9c7000009c9, + 0x9cb000009cf, + 0x9d7000009d8, + 0x9e0000009e4, + 0x9e6000009f2, + 0x9fc000009fd, + 0x9fe000009ff, + 0xa0100000a04, + 0xa0500000a0b, + 0xa0f00000a11, + 0xa1300000a29, + 0xa2a00000a31, + 0xa3200000a33, + 0xa3500000a36, + 0xa3800000a3a, + 0xa3c00000a3d, + 0xa3e00000a43, + 0xa4700000a49, + 0xa4b00000a4e, + 0xa5100000a52, + 0xa5c00000a5d, + 0xa6600000a76, + 0xa8100000a84, + 0xa8500000a8e, + 0xa8f00000a92, + 0xa9300000aa9, + 0xaaa00000ab1, + 0xab200000ab4, + 0xab500000aba, + 0xabc00000ac6, + 0xac700000aca, + 0xacb00000ace, + 0xad000000ad1, + 0xae000000ae4, + 0xae600000af0, + 0xaf900000b00, + 0xb0100000b04, + 0xb0500000b0d, + 0xb0f00000b11, + 0xb1300000b29, + 0xb2a00000b31, + 0xb3200000b34, + 0xb3500000b3a, + 0xb3c00000b45, + 0xb4700000b49, + 0xb4b00000b4e, + 0xb5500000b58, + 0xb5f00000b64, + 0xb6600000b70, + 0xb7100000b72, + 0xb8200000b84, + 0xb8500000b8b, + 0xb8e00000b91, + 0xb9200000b96, + 0xb9900000b9b, + 0xb9c00000b9d, + 0xb9e00000ba0, + 0xba300000ba5, + 0xba800000bab, + 0xbae00000bba, + 0xbbe00000bc3, + 0xbc600000bc9, + 0xbca00000bce, + 0xbd000000bd1, + 0xbd700000bd8, + 0xbe600000bf0, + 0xc0000000c0d, + 0xc0e00000c11, + 0xc1200000c29, + 0xc2a00000c3a, + 0xc3c00000c45, + 0xc4600000c49, + 0xc4a00000c4e, + 0xc5500000c57, + 0xc5800000c5b, + 0xc5d00000c5e, + 0xc6000000c64, + 0xc6600000c70, + 0xc8000000c84, + 0xc8500000c8d, + 0xc8e00000c91, + 0xc9200000ca9, + 0xcaa00000cb4, + 0xcb500000cba, + 0xcbc00000cc5, + 0xcc600000cc9, + 0xcca00000cce, + 0xcd500000cd7, + 0xcdd00000cdf, + 0xce000000ce4, + 0xce600000cf0, + 0xcf100000cf4, + 0xd0000000d0d, + 0xd0e00000d11, + 0xd1200000d45, + 0xd4600000d49, + 0xd4a00000d4f, + 0xd5400000d58, + 0xd5f00000d64, + 0xd6600000d70, + 0xd7a00000d80, + 0xd8100000d84, + 0xd8500000d97, + 0xd9a00000db2, + 0xdb300000dbc, + 0xdbd00000dbe, + 0xdc000000dc7, + 0xdca00000dcb, + 0xdcf00000dd5, + 0xdd600000dd7, + 0xdd800000de0, + 0xde600000df0, + 0xdf200000df4, + 0xe0100000e33, + 0xe3400000e3b, + 0xe4000000e4f, + 0xe5000000e5a, + 0xe8100000e83, + 0xe8400000e85, + 0xe8600000e8b, + 0xe8c00000ea4, + 0xea500000ea6, + 0xea700000eb3, + 0xeb400000ebe, + 0xec000000ec5, + 0xec600000ec7, + 0xec800000ecf, + 0xed000000eda, + 0xede00000ee0, + 0xf0000000f01, + 0xf0b00000f0c, + 0xf1800000f1a, + 0xf2000000f2a, + 0xf3500000f36, + 0xf3700000f38, + 0xf3900000f3a, + 0xf3e00000f43, + 0xf4400000f48, + 0xf4900000f4d, + 0xf4e00000f52, + 0xf5300000f57, + 0xf5800000f5c, + 0xf5d00000f69, + 0xf6a00000f6d, + 0xf7100000f73, + 0xf7400000f75, + 0xf7a00000f81, + 0xf8200000f85, + 0xf8600000f93, + 0xf9400000f98, + 0xf9900000f9d, + 0xf9e00000fa2, + 0xfa300000fa7, + 0xfa800000fac, + 0xfad00000fb9, + 0xfba00000fbd, + 0xfc600000fc7, + 0x10000000104a, + 0x10500000109e, + 0x10d0000010fb, + 0x10fd00001100, + 0x120000001249, + 0x124a0000124e, + 0x125000001257, + 0x125800001259, + 0x125a0000125e, + 0x126000001289, + 0x128a0000128e, + 0x1290000012b1, + 0x12b2000012b6, + 0x12b8000012bf, + 0x12c0000012c1, + 0x12c2000012c6, + 0x12c8000012d7, + 0x12d800001311, + 0x131200001316, + 0x13180000135b, + 0x135d00001360, + 0x138000001390, + 0x13a0000013f6, + 0x14010000166d, + 0x166f00001680, + 0x16810000169b, + 0x16a0000016eb, + 0x16f1000016f9, + 0x170000001716, + 0x171f00001735, + 0x174000001754, + 0x17600000176d, + 0x176e00001771, + 0x177200001774, + 0x1780000017b4, + 0x17b6000017d4, + 0x17d7000017d8, + 0x17dc000017de, + 0x17e0000017ea, + 0x18100000181a, + 0x182000001879, + 0x1880000018ab, + 0x18b0000018f6, + 0x19000000191f, + 0x19200000192c, + 0x19300000193c, + 0x19460000196e, + 0x197000001975, + 0x1980000019ac, + 0x19b0000019ca, + 0x19d0000019da, + 0x1a0000001a1c, + 0x1a2000001a5f, + 0x1a6000001a7d, + 0x1a7f00001a8a, + 0x1a9000001a9a, + 0x1aa700001aa8, + 0x1ab000001abe, + 0x1abf00001acf, + 0x1b0000001b4d, + 0x1b5000001b5a, + 0x1b6b00001b74, + 0x1b8000001bf4, + 0x1c0000001c38, + 0x1c4000001c4a, + 0x1c4d00001c7e, + 0x1cd000001cd3, + 0x1cd400001cfb, + 0x1d0000001d2c, + 0x1d2f00001d30, + 0x1d3b00001d3c, + 0x1d4e00001d4f, + 0x1d6b00001d78, + 0x1d7900001d9b, + 0x1dc000001e00, + 0x1e0100001e02, + 0x1e0300001e04, + 0x1e0500001e06, + 0x1e0700001e08, + 0x1e0900001e0a, + 0x1e0b00001e0c, + 0x1e0d00001e0e, + 0x1e0f00001e10, + 0x1e1100001e12, + 0x1e1300001e14, + 0x1e1500001e16, + 0x1e1700001e18, + 0x1e1900001e1a, + 0x1e1b00001e1c, + 0x1e1d00001e1e, + 0x1e1f00001e20, + 0x1e2100001e22, + 0x1e2300001e24, + 0x1e2500001e26, + 0x1e2700001e28, + 0x1e2900001e2a, + 0x1e2b00001e2c, + 0x1e2d00001e2e, + 0x1e2f00001e30, + 0x1e3100001e32, + 0x1e3300001e34, + 0x1e3500001e36, + 0x1e3700001e38, + 0x1e3900001e3a, + 0x1e3b00001e3c, + 0x1e3d00001e3e, + 0x1e3f00001e40, + 0x1e4100001e42, + 0x1e4300001e44, + 0x1e4500001e46, + 0x1e4700001e48, + 0x1e4900001e4a, + 0x1e4b00001e4c, + 0x1e4d00001e4e, + 0x1e4f00001e50, + 0x1e5100001e52, + 0x1e5300001e54, + 0x1e5500001e56, + 0x1e5700001e58, + 0x1e5900001e5a, + 0x1e5b00001e5c, + 0x1e5d00001e5e, + 0x1e5f00001e60, + 0x1e6100001e62, + 0x1e6300001e64, + 0x1e6500001e66, + 0x1e6700001e68, + 0x1e6900001e6a, + 0x1e6b00001e6c, + 0x1e6d00001e6e, + 0x1e6f00001e70, + 0x1e7100001e72, + 0x1e7300001e74, + 0x1e7500001e76, + 0x1e7700001e78, + 0x1e7900001e7a, + 0x1e7b00001e7c, + 0x1e7d00001e7e, + 0x1e7f00001e80, + 0x1e8100001e82, + 0x1e8300001e84, + 0x1e8500001e86, + 0x1e8700001e88, + 0x1e8900001e8a, + 0x1e8b00001e8c, + 0x1e8d00001e8e, + 0x1e8f00001e90, + 0x1e9100001e92, + 0x1e9300001e94, + 0x1e9500001e9a, + 0x1e9c00001e9e, + 0x1e9f00001ea0, + 0x1ea100001ea2, + 0x1ea300001ea4, + 0x1ea500001ea6, + 0x1ea700001ea8, + 0x1ea900001eaa, + 0x1eab00001eac, + 0x1ead00001eae, + 0x1eaf00001eb0, + 0x1eb100001eb2, + 0x1eb300001eb4, + 0x1eb500001eb6, + 0x1eb700001eb8, + 0x1eb900001eba, + 0x1ebb00001ebc, + 0x1ebd00001ebe, + 0x1ebf00001ec0, + 0x1ec100001ec2, + 0x1ec300001ec4, + 0x1ec500001ec6, + 0x1ec700001ec8, + 0x1ec900001eca, + 0x1ecb00001ecc, + 0x1ecd00001ece, + 0x1ecf00001ed0, + 0x1ed100001ed2, + 0x1ed300001ed4, + 0x1ed500001ed6, + 0x1ed700001ed8, + 0x1ed900001eda, + 0x1edb00001edc, + 0x1edd00001ede, + 0x1edf00001ee0, + 0x1ee100001ee2, + 0x1ee300001ee4, + 0x1ee500001ee6, + 0x1ee700001ee8, + 0x1ee900001eea, + 0x1eeb00001eec, + 0x1eed00001eee, + 0x1eef00001ef0, + 0x1ef100001ef2, + 0x1ef300001ef4, + 0x1ef500001ef6, + 0x1ef700001ef8, + 0x1ef900001efa, + 0x1efb00001efc, + 0x1efd00001efe, + 0x1eff00001f08, + 0x1f1000001f16, + 0x1f2000001f28, + 0x1f3000001f38, + 0x1f4000001f46, + 0x1f5000001f58, + 0x1f6000001f68, + 0x1f7000001f71, + 0x1f7200001f73, + 0x1f7400001f75, + 0x1f7600001f77, + 0x1f7800001f79, + 0x1f7a00001f7b, + 0x1f7c00001f7d, + 0x1fb000001fb2, + 0x1fb600001fb7, + 0x1fc600001fc7, + 0x1fd000001fd3, + 0x1fd600001fd8, + 0x1fe000001fe3, + 0x1fe400001fe8, + 0x1ff600001ff7, + 0x214e0000214f, + 0x218400002185, + 0x2c3000002c60, + 0x2c6100002c62, + 0x2c6500002c67, + 0x2c6800002c69, + 0x2c6a00002c6b, + 0x2c6c00002c6d, + 0x2c7100002c72, + 0x2c7300002c75, + 0x2c7600002c7c, + 0x2c8100002c82, + 0x2c8300002c84, + 0x2c8500002c86, + 0x2c8700002c88, + 0x2c8900002c8a, + 0x2c8b00002c8c, + 0x2c8d00002c8e, + 0x2c8f00002c90, + 0x2c9100002c92, + 0x2c9300002c94, + 0x2c9500002c96, + 0x2c9700002c98, + 0x2c9900002c9a, + 0x2c9b00002c9c, + 0x2c9d00002c9e, + 0x2c9f00002ca0, + 0x2ca100002ca2, + 0x2ca300002ca4, + 0x2ca500002ca6, + 0x2ca700002ca8, + 0x2ca900002caa, + 0x2cab00002cac, + 0x2cad00002cae, + 0x2caf00002cb0, + 0x2cb100002cb2, + 0x2cb300002cb4, + 0x2cb500002cb6, + 0x2cb700002cb8, + 0x2cb900002cba, + 0x2cbb00002cbc, + 0x2cbd00002cbe, + 0x2cbf00002cc0, + 0x2cc100002cc2, + 0x2cc300002cc4, + 0x2cc500002cc6, + 0x2cc700002cc8, + 0x2cc900002cca, + 0x2ccb00002ccc, + 0x2ccd00002cce, + 0x2ccf00002cd0, + 0x2cd100002cd2, + 0x2cd300002cd4, + 0x2cd500002cd6, + 0x2cd700002cd8, + 0x2cd900002cda, + 0x2cdb00002cdc, + 0x2cdd00002cde, + 0x2cdf00002ce0, + 0x2ce100002ce2, + 0x2ce300002ce5, + 0x2cec00002ced, + 0x2cee00002cf2, + 0x2cf300002cf4, + 0x2d0000002d26, + 0x2d2700002d28, + 0x2d2d00002d2e, + 0x2d3000002d68, + 0x2d7f00002d97, + 0x2da000002da7, + 0x2da800002daf, + 0x2db000002db7, + 0x2db800002dbf, + 0x2dc000002dc7, + 0x2dc800002dcf, + 0x2dd000002dd7, + 0x2dd800002ddf, + 0x2de000002e00, + 0x2e2f00002e30, + 0x300500003008, + 0x302a0000302e, + 0x303c0000303d, + 0x304100003097, + 0x30990000309b, + 0x309d0000309f, + 0x30a1000030fb, + 0x30fc000030ff, + 0x310500003130, + 0x31a0000031c0, + 0x31f000003200, + 0x340000004dc0, + 0x4e000000a48d, + 0xa4d00000a4fe, + 0xa5000000a60d, + 0xa6100000a62c, + 0xa6410000a642, + 0xa6430000a644, + 0xa6450000a646, + 0xa6470000a648, + 0xa6490000a64a, + 0xa64b0000a64c, + 0xa64d0000a64e, + 0xa64f0000a650, + 0xa6510000a652, + 0xa6530000a654, + 0xa6550000a656, + 0xa6570000a658, + 0xa6590000a65a, + 0xa65b0000a65c, + 0xa65d0000a65e, + 0xa65f0000a660, + 0xa6610000a662, + 0xa6630000a664, + 0xa6650000a666, + 0xa6670000a668, + 0xa6690000a66a, + 0xa66b0000a66c, + 0xa66d0000a670, + 0xa6740000a67e, + 0xa67f0000a680, + 0xa6810000a682, + 0xa6830000a684, + 0xa6850000a686, + 0xa6870000a688, + 0xa6890000a68a, + 0xa68b0000a68c, + 0xa68d0000a68e, + 0xa68f0000a690, + 0xa6910000a692, + 0xa6930000a694, + 0xa6950000a696, + 0xa6970000a698, + 0xa6990000a69a, + 0xa69b0000a69c, + 0xa69e0000a6e6, + 0xa6f00000a6f2, + 0xa7170000a720, + 0xa7230000a724, + 0xa7250000a726, + 0xa7270000a728, + 0xa7290000a72a, + 0xa72b0000a72c, + 0xa72d0000a72e, + 0xa72f0000a732, + 0xa7330000a734, + 0xa7350000a736, + 0xa7370000a738, + 0xa7390000a73a, + 0xa73b0000a73c, + 0xa73d0000a73e, + 0xa73f0000a740, + 0xa7410000a742, + 0xa7430000a744, + 0xa7450000a746, + 0xa7470000a748, + 0xa7490000a74a, + 0xa74b0000a74c, + 0xa74d0000a74e, + 0xa74f0000a750, + 0xa7510000a752, + 0xa7530000a754, + 0xa7550000a756, + 0xa7570000a758, + 0xa7590000a75a, + 0xa75b0000a75c, + 0xa75d0000a75e, + 0xa75f0000a760, + 0xa7610000a762, + 0xa7630000a764, + 0xa7650000a766, + 0xa7670000a768, + 0xa7690000a76a, + 0xa76b0000a76c, + 0xa76d0000a76e, + 0xa76f0000a770, + 0xa7710000a779, + 0xa77a0000a77b, + 0xa77c0000a77d, + 0xa77f0000a780, + 0xa7810000a782, + 0xa7830000a784, + 0xa7850000a786, + 0xa7870000a789, + 0xa78c0000a78d, + 0xa78e0000a790, + 0xa7910000a792, + 0xa7930000a796, + 0xa7970000a798, + 0xa7990000a79a, + 0xa79b0000a79c, + 0xa79d0000a79e, + 0xa79f0000a7a0, + 0xa7a10000a7a2, + 0xa7a30000a7a4, + 0xa7a50000a7a6, + 0xa7a70000a7a8, + 0xa7a90000a7aa, + 0xa7af0000a7b0, + 0xa7b50000a7b6, + 0xa7b70000a7b8, + 0xa7b90000a7ba, + 0xa7bb0000a7bc, + 0xa7bd0000a7be, + 0xa7bf0000a7c0, + 0xa7c10000a7c2, + 0xa7c30000a7c4, + 0xa7c80000a7c9, + 0xa7ca0000a7cb, + 0xa7d10000a7d2, + 0xa7d30000a7d4, + 0xa7d50000a7d6, + 0xa7d70000a7d8, + 0xa7d90000a7da, + 0xa7f60000a7f8, + 0xa7fa0000a828, + 0xa82c0000a82d, + 0xa8400000a874, + 0xa8800000a8c6, + 0xa8d00000a8da, + 0xa8e00000a8f8, + 0xa8fb0000a8fc, + 0xa8fd0000a92e, + 0xa9300000a954, + 0xa9800000a9c1, + 0xa9cf0000a9da, + 0xa9e00000a9ff, + 0xaa000000aa37, + 0xaa400000aa4e, + 0xaa500000aa5a, + 0xaa600000aa77, + 0xaa7a0000aac3, + 0xaadb0000aade, + 0xaae00000aaf0, + 0xaaf20000aaf7, + 0xab010000ab07, + 0xab090000ab0f, + 0xab110000ab17, + 0xab200000ab27, + 0xab280000ab2f, + 0xab300000ab5b, + 0xab600000ab69, + 0xabc00000abeb, + 0xabec0000abee, + 0xabf00000abfa, + 0xac000000d7a4, + 0xfa0e0000fa10, + 0xfa110000fa12, + 0xfa130000fa15, + 0xfa1f0000fa20, + 0xfa210000fa22, + 0xfa230000fa25, + 0xfa270000fa2a, + 0xfb1e0000fb1f, + 0xfe200000fe30, + 0xfe730000fe74, + 0x100000001000c, + 0x1000d00010027, + 0x100280001003b, + 0x1003c0001003e, + 0x1003f0001004e, + 0x100500001005e, + 0x10080000100fb, + 0x101fd000101fe, + 0x102800001029d, + 0x102a0000102d1, + 0x102e0000102e1, + 0x1030000010320, + 0x1032d00010341, + 0x103420001034a, + 0x103500001037b, + 0x103800001039e, + 0x103a0000103c4, + 0x103c8000103d0, + 0x104280001049e, + 0x104a0000104aa, + 0x104d8000104fc, + 0x1050000010528, + 0x1053000010564, + 0x10597000105a2, + 0x105a3000105b2, + 0x105b3000105ba, + 0x105bb000105bd, + 0x1060000010737, + 0x1074000010756, + 0x1076000010768, + 0x1078000010781, + 0x1080000010806, + 0x1080800010809, + 0x1080a00010836, + 0x1083700010839, + 0x1083c0001083d, + 0x1083f00010856, + 0x1086000010877, + 0x108800001089f, + 0x108e0000108f3, + 0x108f4000108f6, + 0x1090000010916, + 0x109200001093a, + 0x10980000109b8, + 0x109be000109c0, + 0x10a0000010a04, + 0x10a0500010a07, + 0x10a0c00010a14, + 0x10a1500010a18, + 0x10a1900010a36, + 0x10a3800010a3b, + 0x10a3f00010a40, + 0x10a6000010a7d, + 0x10a8000010a9d, + 0x10ac000010ac8, + 0x10ac900010ae7, + 0x10b0000010b36, + 0x10b4000010b56, + 0x10b6000010b73, + 0x10b8000010b92, + 0x10c0000010c49, + 0x10cc000010cf3, + 0x10d0000010d28, + 0x10d3000010d3a, + 0x10e8000010eaa, + 0x10eab00010ead, + 0x10eb000010eb2, + 0x10efd00010f1d, + 0x10f2700010f28, + 0x10f3000010f51, + 0x10f7000010f86, + 0x10fb000010fc5, + 0x10fe000010ff7, + 0x1100000011047, + 0x1106600011076, + 0x1107f000110bb, + 0x110c2000110c3, + 0x110d0000110e9, + 0x110f0000110fa, + 0x1110000011135, + 0x1113600011140, + 0x1114400011148, + 0x1115000011174, + 0x1117600011177, + 0x11180000111c5, + 0x111c9000111cd, + 0x111ce000111db, + 0x111dc000111dd, + 0x1120000011212, + 0x1121300011238, + 0x1123e00011242, + 0x1128000011287, + 0x1128800011289, + 0x1128a0001128e, + 0x1128f0001129e, + 0x1129f000112a9, + 0x112b0000112eb, + 0x112f0000112fa, + 0x1130000011304, + 0x113050001130d, + 0x1130f00011311, + 0x1131300011329, + 0x1132a00011331, + 0x1133200011334, + 0x113350001133a, + 0x1133b00011345, + 0x1134700011349, + 0x1134b0001134e, + 0x1135000011351, + 0x1135700011358, + 0x1135d00011364, + 0x113660001136d, + 0x1137000011375, + 0x114000001144b, + 0x114500001145a, + 0x1145e00011462, + 0x11480000114c6, + 0x114c7000114c8, + 0x114d0000114da, + 0x11580000115b6, + 0x115b8000115c1, + 0x115d8000115de, + 0x1160000011641, + 0x1164400011645, + 0x116500001165a, + 0x11680000116b9, + 0x116c0000116ca, + 0x117000001171b, + 0x1171d0001172c, + 0x117300001173a, + 0x1174000011747, + 0x118000001183b, + 0x118c0000118ea, + 0x118ff00011907, + 0x119090001190a, + 0x1190c00011914, + 0x1191500011917, + 0x1191800011936, + 0x1193700011939, + 0x1193b00011944, + 0x119500001195a, + 0x119a0000119a8, + 0x119aa000119d8, + 0x119da000119e2, + 0x119e3000119e5, + 0x11a0000011a3f, + 0x11a4700011a48, + 0x11a5000011a9a, + 0x11a9d00011a9e, + 0x11ab000011af9, + 0x11c0000011c09, + 0x11c0a00011c37, + 0x11c3800011c41, + 0x11c5000011c5a, + 0x11c7200011c90, + 0x11c9200011ca8, + 0x11ca900011cb7, + 0x11d0000011d07, + 0x11d0800011d0a, + 0x11d0b00011d37, + 0x11d3a00011d3b, + 0x11d3c00011d3e, + 0x11d3f00011d48, + 0x11d5000011d5a, + 0x11d6000011d66, + 0x11d6700011d69, + 0x11d6a00011d8f, + 0x11d9000011d92, + 0x11d9300011d99, + 0x11da000011daa, + 0x11ee000011ef7, + 0x11f0000011f11, + 0x11f1200011f3b, + 0x11f3e00011f43, + 0x11f5000011f5a, + 0x11fb000011fb1, + 0x120000001239a, + 0x1248000012544, + 0x12f9000012ff1, + 0x1300000013430, + 0x1344000013456, + 0x1440000014647, + 0x1680000016a39, + 0x16a4000016a5f, + 0x16a6000016a6a, + 0x16a7000016abf, + 0x16ac000016aca, + 0x16ad000016aee, + 0x16af000016af5, + 0x16b0000016b37, + 0x16b4000016b44, + 0x16b5000016b5a, + 0x16b6300016b78, + 0x16b7d00016b90, + 0x16e6000016e80, + 0x16f0000016f4b, + 0x16f4f00016f88, + 0x16f8f00016fa0, + 0x16fe000016fe2, + 0x16fe300016fe5, + 0x16ff000016ff2, + 0x17000000187f8, + 0x1880000018cd6, + 0x18d0000018d09, + 0x1aff00001aff4, + 0x1aff50001affc, + 0x1affd0001afff, + 0x1b0000001b123, + 0x1b1320001b133, + 0x1b1500001b153, + 0x1b1550001b156, + 0x1b1640001b168, + 0x1b1700001b2fc, + 0x1bc000001bc6b, + 0x1bc700001bc7d, + 0x1bc800001bc89, + 0x1bc900001bc9a, + 0x1bc9d0001bc9f, + 0x1cf000001cf2e, + 0x1cf300001cf47, + 0x1da000001da37, + 0x1da3b0001da6d, + 0x1da750001da76, + 0x1da840001da85, + 0x1da9b0001daa0, + 0x1daa10001dab0, + 0x1df000001df1f, + 0x1df250001df2b, + 0x1e0000001e007, + 0x1e0080001e019, + 0x1e01b0001e022, + 0x1e0230001e025, + 0x1e0260001e02b, + 0x1e08f0001e090, + 0x1e1000001e12d, + 0x1e1300001e13e, + 0x1e1400001e14a, + 0x1e14e0001e14f, + 0x1e2900001e2af, + 0x1e2c00001e2fa, + 0x1e4d00001e4fa, + 0x1e7e00001e7e7, + 0x1e7e80001e7ec, + 0x1e7ed0001e7ef, + 0x1e7f00001e7ff, + 0x1e8000001e8c5, + 0x1e8d00001e8d7, + 0x1e9220001e94c, + 0x1e9500001e95a, + 0x200000002a6e0, + 0x2a7000002b73a, + 0x2b7400002b81e, + 0x2b8200002cea2, + 0x2ceb00002ebe1, + 0x2ebf00002ee5e, + 0x300000003134b, + 0x31350000323b0, + ), + 'CONTEXTJ': ( + 0x200c0000200e, + ), + 'CONTEXTO': ( + 0xb7000000b8, + 0x37500000376, + 0x5f3000005f5, + 0x6600000066a, + 0x6f0000006fa, + 0x30fb000030fc, + ), +} diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py new file mode 100644 index 00000000..6a43b047 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py @@ -0,0 +1,54 @@ +""" +Given a list of integers, made up of (hopefully) a small number of long runs +of consecutive integers, compute a representation of the form +((start1, end1), (start2, end2) ...). Then answer the question "was x present +in the original list?" in time O(log(# runs)). +""" + +import bisect +from typing import List, Tuple + +def intranges_from_list(list_: List[int]) -> Tuple[int, ...]: + """Represent a list of integers as a sequence of ranges: + ((start_0, end_0), (start_1, end_1), ...), such that the original + integers are exactly those x such that start_i <= x < end_i for some i. + + Ranges are encoded as single integers (start << 32 | end), not as tuples. + """ + + sorted_list = sorted(list_) + ranges = [] + last_write = -1 + for i in range(len(sorted_list)): + if i+1 < len(sorted_list): + if sorted_list[i] == sorted_list[i+1]-1: + continue + current_range = sorted_list[last_write+1:i+1] + ranges.append(_encode_range(current_range[0], current_range[-1] + 1)) + last_write = i + + return tuple(ranges) + +def _encode_range(start: int, end: int) -> int: + return (start << 32) | end + +def _decode_range(r: int) -> Tuple[int, int]: + return (r >> 32), (r & ((1 << 32) - 1)) + + +def intranges_contain(int_: int, ranges: Tuple[int, ...]) -> bool: + """Determine if `int_` falls into one of the ranges in `ranges`.""" + tuple_ = _encode_range(int_, 0) + pos = bisect.bisect_left(ranges, tuple_) + # we could be immediately ahead of a tuple (start, end) + # with start < int_ <= end + if pos > 0: + left, right = _decode_range(ranges[pos-1]) + if left <= int_ < right: + return True + # or we could be immediately behind a tuple (int_, end) + if pos < len(ranges): + left, _ = _decode_range(ranges[pos]) + if left == int_: + return True + return False diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py new file mode 100644 index 00000000..ed811133 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py @@ -0,0 +1,2 @@ +__version__ = '3.7' + diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/py.typed b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py new file mode 100644 index 00000000..6a1eddbf --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py @@ -0,0 +1,8598 @@ +# This file is automatically generated by tools/idna-data +# vim: set fileencoding=utf-8 : + +from typing import List, Tuple, Union + + +"""IDNA Mapping Table from UTS46.""" + + +__version__ = '15.1.0' +def _seg_0() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x0, '3'), + (0x1, '3'), + (0x2, '3'), + (0x3, '3'), + (0x4, '3'), + (0x5, '3'), + (0x6, '3'), + (0x7, '3'), + (0x8, '3'), + (0x9, '3'), + (0xA, '3'), + (0xB, '3'), + (0xC, '3'), + (0xD, '3'), + (0xE, '3'), + (0xF, '3'), + (0x10, '3'), + (0x11, '3'), + (0x12, '3'), + (0x13, '3'), + (0x14, '3'), + (0x15, '3'), + (0x16, '3'), + (0x17, '3'), + (0x18, '3'), + (0x19, '3'), + (0x1A, '3'), + (0x1B, '3'), + (0x1C, '3'), + (0x1D, '3'), + (0x1E, '3'), + (0x1F, '3'), + (0x20, '3'), + (0x21, '3'), + (0x22, '3'), + (0x23, '3'), + (0x24, '3'), + (0x25, '3'), + (0x26, '3'), + (0x27, '3'), + (0x28, '3'), + (0x29, '3'), + (0x2A, '3'), + (0x2B, '3'), + (0x2C, '3'), + (0x2D, 'V'), + (0x2E, 'V'), + (0x2F, '3'), + (0x30, 'V'), + (0x31, 'V'), + (0x32, 'V'), + (0x33, 'V'), + (0x34, 'V'), + (0x35, 'V'), + (0x36, 'V'), + (0x37, 'V'), + (0x38, 'V'), + (0x39, 'V'), + (0x3A, '3'), + (0x3B, '3'), + (0x3C, '3'), + (0x3D, '3'), + (0x3E, '3'), + (0x3F, '3'), + (0x40, '3'), + (0x41, 'M', 'a'), + (0x42, 'M', 'b'), + (0x43, 'M', 'c'), + (0x44, 'M', 'd'), + (0x45, 'M', 'e'), + (0x46, 'M', 'f'), + (0x47, 'M', 'g'), + (0x48, 'M', 'h'), + (0x49, 'M', 'i'), + (0x4A, 'M', 'j'), + (0x4B, 'M', 'k'), + (0x4C, 'M', 'l'), + (0x4D, 'M', 'm'), + (0x4E, 'M', 'n'), + (0x4F, 'M', 'o'), + (0x50, 'M', 'p'), + (0x51, 'M', 'q'), + (0x52, 'M', 'r'), + (0x53, 'M', 's'), + (0x54, 'M', 't'), + (0x55, 'M', 'u'), + (0x56, 'M', 'v'), + (0x57, 'M', 'w'), + (0x58, 'M', 'x'), + (0x59, 'M', 'y'), + (0x5A, 'M', 'z'), + (0x5B, '3'), + (0x5C, '3'), + (0x5D, '3'), + (0x5E, '3'), + (0x5F, '3'), + (0x60, '3'), + (0x61, 'V'), + (0x62, 'V'), + (0x63, 'V'), + ] + +def _seg_1() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x64, 'V'), + (0x65, 'V'), + (0x66, 'V'), + (0x67, 'V'), + (0x68, 'V'), + (0x69, 'V'), + (0x6A, 'V'), + (0x6B, 'V'), + (0x6C, 'V'), + (0x6D, 'V'), + (0x6E, 'V'), + (0x6F, 'V'), + (0x70, 'V'), + (0x71, 'V'), + (0x72, 'V'), + (0x73, 'V'), + (0x74, 'V'), + (0x75, 'V'), + (0x76, 'V'), + (0x77, 'V'), + (0x78, 'V'), + (0x79, 'V'), + (0x7A, 'V'), + (0x7B, '3'), + (0x7C, '3'), + (0x7D, '3'), + (0x7E, '3'), + (0x7F, '3'), + (0x80, 'X'), + (0x81, 'X'), + (0x82, 'X'), + (0x83, 'X'), + (0x84, 'X'), + (0x85, 'X'), + (0x86, 'X'), + (0x87, 'X'), + (0x88, 'X'), + (0x89, 'X'), + (0x8A, 'X'), + (0x8B, 'X'), + (0x8C, 'X'), + (0x8D, 'X'), + (0x8E, 'X'), + (0x8F, 'X'), + (0x90, 'X'), + (0x91, 'X'), + (0x92, 'X'), + (0x93, 'X'), + (0x94, 'X'), + (0x95, 'X'), + (0x96, 'X'), + (0x97, 'X'), + (0x98, 'X'), + (0x99, 'X'), + (0x9A, 'X'), + (0x9B, 'X'), + (0x9C, 'X'), + (0x9D, 'X'), + (0x9E, 'X'), + (0x9F, 'X'), + (0xA0, '3', ' '), + (0xA1, 'V'), + (0xA2, 'V'), + (0xA3, 'V'), + (0xA4, 'V'), + (0xA5, 'V'), + (0xA6, 'V'), + (0xA7, 'V'), + (0xA8, '3', ' ̈'), + (0xA9, 'V'), + (0xAA, 'M', 'a'), + (0xAB, 'V'), + (0xAC, 'V'), + (0xAD, 'I'), + (0xAE, 'V'), + (0xAF, '3', ' ̄'), + (0xB0, 'V'), + (0xB1, 'V'), + (0xB2, 'M', '2'), + (0xB3, 'M', '3'), + (0xB4, '3', ' ́'), + (0xB5, 'M', 'μ'), + (0xB6, 'V'), + (0xB7, 'V'), + (0xB8, '3', ' ̧'), + (0xB9, 'M', '1'), + (0xBA, 'M', 'o'), + (0xBB, 'V'), + (0xBC, 'M', '1⁄4'), + (0xBD, 'M', '1⁄2'), + (0xBE, 'M', '3⁄4'), + (0xBF, 'V'), + (0xC0, 'M', 'à'), + (0xC1, 'M', 'á'), + (0xC2, 'M', 'â'), + (0xC3, 'M', 'ã'), + (0xC4, 'M', 'ä'), + (0xC5, 'M', 'å'), + (0xC6, 'M', 'æ'), + (0xC7, 'M', 'ç'), + ] + +def _seg_2() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC8, 'M', 'è'), + (0xC9, 'M', 'é'), + (0xCA, 'M', 'ê'), + (0xCB, 'M', 'ë'), + (0xCC, 'M', 'ì'), + (0xCD, 'M', 'í'), + (0xCE, 'M', 'î'), + (0xCF, 'M', 'ï'), + (0xD0, 'M', 'ð'), + (0xD1, 'M', 'ñ'), + (0xD2, 'M', 'ò'), + (0xD3, 'M', 'ó'), + (0xD4, 'M', 'ô'), + (0xD5, 'M', 'õ'), + (0xD6, 'M', 'ö'), + (0xD7, 'V'), + (0xD8, 'M', 'ø'), + (0xD9, 'M', 'ù'), + (0xDA, 'M', 'ú'), + (0xDB, 'M', 'û'), + (0xDC, 'M', 'ü'), + (0xDD, 'M', 'ý'), + (0xDE, 'M', 'þ'), + (0xDF, 'D', 'ss'), + (0xE0, 'V'), + (0xE1, 'V'), + (0xE2, 'V'), + (0xE3, 'V'), + (0xE4, 'V'), + (0xE5, 'V'), + (0xE6, 'V'), + (0xE7, 'V'), + (0xE8, 'V'), + (0xE9, 'V'), + (0xEA, 'V'), + (0xEB, 'V'), + (0xEC, 'V'), + (0xED, 'V'), + (0xEE, 'V'), + (0xEF, 'V'), + (0xF0, 'V'), + (0xF1, 'V'), + (0xF2, 'V'), + (0xF3, 'V'), + (0xF4, 'V'), + (0xF5, 'V'), + (0xF6, 'V'), + (0xF7, 'V'), + (0xF8, 'V'), + (0xF9, 'V'), + (0xFA, 'V'), + (0xFB, 'V'), + (0xFC, 'V'), + (0xFD, 'V'), + (0xFE, 'V'), + (0xFF, 'V'), + (0x100, 'M', 'ā'), + (0x101, 'V'), + (0x102, 'M', 'ă'), + (0x103, 'V'), + (0x104, 'M', 'ą'), + (0x105, 'V'), + (0x106, 'M', 'ć'), + (0x107, 'V'), + (0x108, 'M', 'ĉ'), + (0x109, 'V'), + (0x10A, 'M', 'ċ'), + (0x10B, 'V'), + (0x10C, 'M', 'č'), + (0x10D, 'V'), + (0x10E, 'M', 'ď'), + (0x10F, 'V'), + (0x110, 'M', 'đ'), + (0x111, 'V'), + (0x112, 'M', 'ē'), + (0x113, 'V'), + (0x114, 'M', 'ĕ'), + (0x115, 'V'), + (0x116, 'M', 'ė'), + (0x117, 'V'), + (0x118, 'M', 'ę'), + (0x119, 'V'), + (0x11A, 'M', 'ě'), + (0x11B, 'V'), + (0x11C, 'M', 'ĝ'), + (0x11D, 'V'), + (0x11E, 'M', 'ğ'), + (0x11F, 'V'), + (0x120, 'M', 'ġ'), + (0x121, 'V'), + (0x122, 'M', 'ģ'), + (0x123, 'V'), + (0x124, 'M', 'ĥ'), + (0x125, 'V'), + (0x126, 'M', 'ħ'), + (0x127, 'V'), + (0x128, 'M', 'ĩ'), + (0x129, 'V'), + (0x12A, 'M', 'ī'), + (0x12B, 'V'), + ] + +def _seg_3() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x12C, 'M', 'ĭ'), + (0x12D, 'V'), + (0x12E, 'M', 'į'), + (0x12F, 'V'), + (0x130, 'M', 'i̇'), + (0x131, 'V'), + (0x132, 'M', 'ij'), + (0x134, 'M', 'ĵ'), + (0x135, 'V'), + (0x136, 'M', 'ķ'), + (0x137, 'V'), + (0x139, 'M', 'ĺ'), + (0x13A, 'V'), + (0x13B, 'M', 'ļ'), + (0x13C, 'V'), + (0x13D, 'M', 'ľ'), + (0x13E, 'V'), + (0x13F, 'M', 'l·'), + (0x141, 'M', 'ł'), + (0x142, 'V'), + (0x143, 'M', 'ń'), + (0x144, 'V'), + (0x145, 'M', 'ņ'), + (0x146, 'V'), + (0x147, 'M', 'ň'), + (0x148, 'V'), + (0x149, 'M', 'ʼn'), + (0x14A, 'M', 'ŋ'), + (0x14B, 'V'), + (0x14C, 'M', 'ō'), + (0x14D, 'V'), + (0x14E, 'M', 'ŏ'), + (0x14F, 'V'), + (0x150, 'M', 'ő'), + (0x151, 'V'), + (0x152, 'M', 'œ'), + (0x153, 'V'), + (0x154, 'M', 'ŕ'), + (0x155, 'V'), + (0x156, 'M', 'ŗ'), + (0x157, 'V'), + (0x158, 'M', 'ř'), + (0x159, 'V'), + (0x15A, 'M', 'ś'), + (0x15B, 'V'), + (0x15C, 'M', 'ŝ'), + (0x15D, 'V'), + (0x15E, 'M', 'ş'), + (0x15F, 'V'), + (0x160, 'M', 'š'), + (0x161, 'V'), + (0x162, 'M', 'ţ'), + (0x163, 'V'), + (0x164, 'M', 'ť'), + (0x165, 'V'), + (0x166, 'M', 'ŧ'), + (0x167, 'V'), + (0x168, 'M', 'ũ'), + (0x169, 'V'), + (0x16A, 'M', 'ū'), + (0x16B, 'V'), + (0x16C, 'M', 'ŭ'), + (0x16D, 'V'), + (0x16E, 'M', 'ů'), + (0x16F, 'V'), + (0x170, 'M', 'ű'), + (0x171, 'V'), + (0x172, 'M', 'ų'), + (0x173, 'V'), + (0x174, 'M', 'ŵ'), + (0x175, 'V'), + (0x176, 'M', 'ŷ'), + (0x177, 'V'), + (0x178, 'M', 'ÿ'), + (0x179, 'M', 'ź'), + (0x17A, 'V'), + (0x17B, 'M', 'ż'), + (0x17C, 'V'), + (0x17D, 'M', 'ž'), + (0x17E, 'V'), + (0x17F, 'M', 's'), + (0x180, 'V'), + (0x181, 'M', 'ɓ'), + (0x182, 'M', 'ƃ'), + (0x183, 'V'), + (0x184, 'M', 'ƅ'), + (0x185, 'V'), + (0x186, 'M', 'ɔ'), + (0x187, 'M', 'ƈ'), + (0x188, 'V'), + (0x189, 'M', 'ɖ'), + (0x18A, 'M', 'ɗ'), + (0x18B, 'M', 'ƌ'), + (0x18C, 'V'), + (0x18E, 'M', 'ǝ'), + (0x18F, 'M', 'ə'), + (0x190, 'M', 'ɛ'), + (0x191, 'M', 'ƒ'), + (0x192, 'V'), + (0x193, 'M', 'ɠ'), + ] + +def _seg_4() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x194, 'M', 'ɣ'), + (0x195, 'V'), + (0x196, 'M', 'ɩ'), + (0x197, 'M', 'ɨ'), + (0x198, 'M', 'ƙ'), + (0x199, 'V'), + (0x19C, 'M', 'ɯ'), + (0x19D, 'M', 'ɲ'), + (0x19E, 'V'), + (0x19F, 'M', 'ɵ'), + (0x1A0, 'M', 'ơ'), + (0x1A1, 'V'), + (0x1A2, 'M', 'ƣ'), + (0x1A3, 'V'), + (0x1A4, 'M', 'ƥ'), + (0x1A5, 'V'), + (0x1A6, 'M', 'ʀ'), + (0x1A7, 'M', 'ƨ'), + (0x1A8, 'V'), + (0x1A9, 'M', 'ʃ'), + (0x1AA, 'V'), + (0x1AC, 'M', 'ƭ'), + (0x1AD, 'V'), + (0x1AE, 'M', 'ʈ'), + (0x1AF, 'M', 'ư'), + (0x1B0, 'V'), + (0x1B1, 'M', 'ʊ'), + (0x1B2, 'M', 'ʋ'), + (0x1B3, 'M', 'ƴ'), + (0x1B4, 'V'), + (0x1B5, 'M', 'ƶ'), + (0x1B6, 'V'), + (0x1B7, 'M', 'ʒ'), + (0x1B8, 'M', 'ƹ'), + (0x1B9, 'V'), + (0x1BC, 'M', 'ƽ'), + (0x1BD, 'V'), + (0x1C4, 'M', 'dž'), + (0x1C7, 'M', 'lj'), + (0x1CA, 'M', 'nj'), + (0x1CD, 'M', 'ǎ'), + (0x1CE, 'V'), + (0x1CF, 'M', 'ǐ'), + (0x1D0, 'V'), + (0x1D1, 'M', 'ǒ'), + (0x1D2, 'V'), + (0x1D3, 'M', 'ǔ'), + (0x1D4, 'V'), + (0x1D5, 'M', 'ǖ'), + (0x1D6, 'V'), + (0x1D7, 'M', 'ǘ'), + (0x1D8, 'V'), + (0x1D9, 'M', 'ǚ'), + (0x1DA, 'V'), + (0x1DB, 'M', 'ǜ'), + (0x1DC, 'V'), + (0x1DE, 'M', 'ǟ'), + (0x1DF, 'V'), + (0x1E0, 'M', 'ǡ'), + (0x1E1, 'V'), + (0x1E2, 'M', 'ǣ'), + (0x1E3, 'V'), + (0x1E4, 'M', 'ǥ'), + (0x1E5, 'V'), + (0x1E6, 'M', 'ǧ'), + (0x1E7, 'V'), + (0x1E8, 'M', 'ǩ'), + (0x1E9, 'V'), + (0x1EA, 'M', 'ǫ'), + (0x1EB, 'V'), + (0x1EC, 'M', 'ǭ'), + (0x1ED, 'V'), + (0x1EE, 'M', 'ǯ'), + (0x1EF, 'V'), + (0x1F1, 'M', 'dz'), + (0x1F4, 'M', 'ǵ'), + (0x1F5, 'V'), + (0x1F6, 'M', 'ƕ'), + (0x1F7, 'M', 'ƿ'), + (0x1F8, 'M', 'ǹ'), + (0x1F9, 'V'), + (0x1FA, 'M', 'ǻ'), + (0x1FB, 'V'), + (0x1FC, 'M', 'ǽ'), + (0x1FD, 'V'), + (0x1FE, 'M', 'ǿ'), + (0x1FF, 'V'), + (0x200, 'M', 'ȁ'), + (0x201, 'V'), + (0x202, 'M', 'ȃ'), + (0x203, 'V'), + (0x204, 'M', 'ȅ'), + (0x205, 'V'), + (0x206, 'M', 'ȇ'), + (0x207, 'V'), + (0x208, 'M', 'ȉ'), + (0x209, 'V'), + (0x20A, 'M', 'ȋ'), + (0x20B, 'V'), + (0x20C, 'M', 'ȍ'), + ] + +def _seg_5() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x20D, 'V'), + (0x20E, 'M', 'ȏ'), + (0x20F, 'V'), + (0x210, 'M', 'ȑ'), + (0x211, 'V'), + (0x212, 'M', 'ȓ'), + (0x213, 'V'), + (0x214, 'M', 'ȕ'), + (0x215, 'V'), + (0x216, 'M', 'ȗ'), + (0x217, 'V'), + (0x218, 'M', 'ș'), + (0x219, 'V'), + (0x21A, 'M', 'ț'), + (0x21B, 'V'), + (0x21C, 'M', 'ȝ'), + (0x21D, 'V'), + (0x21E, 'M', 'ȟ'), + (0x21F, 'V'), + (0x220, 'M', 'ƞ'), + (0x221, 'V'), + (0x222, 'M', 'ȣ'), + (0x223, 'V'), + (0x224, 'M', 'ȥ'), + (0x225, 'V'), + (0x226, 'M', 'ȧ'), + (0x227, 'V'), + (0x228, 'M', 'ȩ'), + (0x229, 'V'), + (0x22A, 'M', 'ȫ'), + (0x22B, 'V'), + (0x22C, 'M', 'ȭ'), + (0x22D, 'V'), + (0x22E, 'M', 'ȯ'), + (0x22F, 'V'), + (0x230, 'M', 'ȱ'), + (0x231, 'V'), + (0x232, 'M', 'ȳ'), + (0x233, 'V'), + (0x23A, 'M', 'ⱥ'), + (0x23B, 'M', 'ȼ'), + (0x23C, 'V'), + (0x23D, 'M', 'ƚ'), + (0x23E, 'M', 'ⱦ'), + (0x23F, 'V'), + (0x241, 'M', 'ɂ'), + (0x242, 'V'), + (0x243, 'M', 'ƀ'), + (0x244, 'M', 'ʉ'), + (0x245, 'M', 'ʌ'), + (0x246, 'M', 'ɇ'), + (0x247, 'V'), + (0x248, 'M', 'ɉ'), + (0x249, 'V'), + (0x24A, 'M', 'ɋ'), + (0x24B, 'V'), + (0x24C, 'M', 'ɍ'), + (0x24D, 'V'), + (0x24E, 'M', 'ɏ'), + (0x24F, 'V'), + (0x2B0, 'M', 'h'), + (0x2B1, 'M', 'ɦ'), + (0x2B2, 'M', 'j'), + (0x2B3, 'M', 'r'), + (0x2B4, 'M', 'ɹ'), + (0x2B5, 'M', 'ɻ'), + (0x2B6, 'M', 'ʁ'), + (0x2B7, 'M', 'w'), + (0x2B8, 'M', 'y'), + (0x2B9, 'V'), + (0x2D8, '3', ' ̆'), + (0x2D9, '3', ' ̇'), + (0x2DA, '3', ' ̊'), + (0x2DB, '3', ' ̨'), + (0x2DC, '3', ' ̃'), + (0x2DD, '3', ' ̋'), + (0x2DE, 'V'), + (0x2E0, 'M', 'ɣ'), + (0x2E1, 'M', 'l'), + (0x2E2, 'M', 's'), + (0x2E3, 'M', 'x'), + (0x2E4, 'M', 'ʕ'), + (0x2E5, 'V'), + (0x340, 'M', '̀'), + (0x341, 'M', '́'), + (0x342, 'V'), + (0x343, 'M', '̓'), + (0x344, 'M', '̈́'), + (0x345, 'M', 'ι'), + (0x346, 'V'), + (0x34F, 'I'), + (0x350, 'V'), + (0x370, 'M', 'ͱ'), + (0x371, 'V'), + (0x372, 'M', 'ͳ'), + (0x373, 'V'), + (0x374, 'M', 'ʹ'), + (0x375, 'V'), + (0x376, 'M', 'ͷ'), + (0x377, 'V'), + ] + +def _seg_6() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x378, 'X'), + (0x37A, '3', ' ι'), + (0x37B, 'V'), + (0x37E, '3', ';'), + (0x37F, 'M', 'ϳ'), + (0x380, 'X'), + (0x384, '3', ' ́'), + (0x385, '3', ' ̈́'), + (0x386, 'M', 'ά'), + (0x387, 'M', '·'), + (0x388, 'M', 'έ'), + (0x389, 'M', 'ή'), + (0x38A, 'M', 'ί'), + (0x38B, 'X'), + (0x38C, 'M', 'ό'), + (0x38D, 'X'), + (0x38E, 'M', 'ύ'), + (0x38F, 'M', 'ώ'), + (0x390, 'V'), + (0x391, 'M', 'α'), + (0x392, 'M', 'β'), + (0x393, 'M', 'γ'), + (0x394, 'M', 'δ'), + (0x395, 'M', 'ε'), + (0x396, 'M', 'ζ'), + (0x397, 'M', 'η'), + (0x398, 'M', 'θ'), + (0x399, 'M', 'ι'), + (0x39A, 'M', 'κ'), + (0x39B, 'M', 'λ'), + (0x39C, 'M', 'μ'), + (0x39D, 'M', 'ν'), + (0x39E, 'M', 'ξ'), + (0x39F, 'M', 'ο'), + (0x3A0, 'M', 'π'), + (0x3A1, 'M', 'ρ'), + (0x3A2, 'X'), + (0x3A3, 'M', 'σ'), + (0x3A4, 'M', 'τ'), + (0x3A5, 'M', 'υ'), + (0x3A6, 'M', 'φ'), + (0x3A7, 'M', 'χ'), + (0x3A8, 'M', 'ψ'), + (0x3A9, 'M', 'ω'), + (0x3AA, 'M', 'ϊ'), + (0x3AB, 'M', 'ϋ'), + (0x3AC, 'V'), + (0x3C2, 'D', 'σ'), + (0x3C3, 'V'), + (0x3CF, 'M', 'ϗ'), + (0x3D0, 'M', 'β'), + (0x3D1, 'M', 'θ'), + (0x3D2, 'M', 'υ'), + (0x3D3, 'M', 'ύ'), + (0x3D4, 'M', 'ϋ'), + (0x3D5, 'M', 'φ'), + (0x3D6, 'M', 'π'), + (0x3D7, 'V'), + (0x3D8, 'M', 'ϙ'), + (0x3D9, 'V'), + (0x3DA, 'M', 'ϛ'), + (0x3DB, 'V'), + (0x3DC, 'M', 'ϝ'), + (0x3DD, 'V'), + (0x3DE, 'M', 'ϟ'), + (0x3DF, 'V'), + (0x3E0, 'M', 'ϡ'), + (0x3E1, 'V'), + (0x3E2, 'M', 'ϣ'), + (0x3E3, 'V'), + (0x3E4, 'M', 'ϥ'), + (0x3E5, 'V'), + (0x3E6, 'M', 'ϧ'), + (0x3E7, 'V'), + (0x3E8, 'M', 'ϩ'), + (0x3E9, 'V'), + (0x3EA, 'M', 'ϫ'), + (0x3EB, 'V'), + (0x3EC, 'M', 'ϭ'), + (0x3ED, 'V'), + (0x3EE, 'M', 'ϯ'), + (0x3EF, 'V'), + (0x3F0, 'M', 'κ'), + (0x3F1, 'M', 'ρ'), + (0x3F2, 'M', 'σ'), + (0x3F3, 'V'), + (0x3F4, 'M', 'θ'), + (0x3F5, 'M', 'ε'), + (0x3F6, 'V'), + (0x3F7, 'M', 'ϸ'), + (0x3F8, 'V'), + (0x3F9, 'M', 'σ'), + (0x3FA, 'M', 'ϻ'), + (0x3FB, 'V'), + (0x3FD, 'M', 'ͻ'), + (0x3FE, 'M', 'ͼ'), + (0x3FF, 'M', 'ͽ'), + (0x400, 'M', 'ѐ'), + (0x401, 'M', 'ё'), + (0x402, 'M', 'ђ'), + ] + +def _seg_7() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x403, 'M', 'ѓ'), + (0x404, 'M', 'є'), + (0x405, 'M', 'ѕ'), + (0x406, 'M', 'і'), + (0x407, 'M', 'ї'), + (0x408, 'M', 'ј'), + (0x409, 'M', 'љ'), + (0x40A, 'M', 'њ'), + (0x40B, 'M', 'ћ'), + (0x40C, 'M', 'ќ'), + (0x40D, 'M', 'ѝ'), + (0x40E, 'M', 'ў'), + (0x40F, 'M', 'џ'), + (0x410, 'M', 'а'), + (0x411, 'M', 'б'), + (0x412, 'M', 'в'), + (0x413, 'M', 'г'), + (0x414, 'M', 'д'), + (0x415, 'M', 'е'), + (0x416, 'M', 'ж'), + (0x417, 'M', 'з'), + (0x418, 'M', 'и'), + (0x419, 'M', 'й'), + (0x41A, 'M', 'к'), + (0x41B, 'M', 'л'), + (0x41C, 'M', 'м'), + (0x41D, 'M', 'н'), + (0x41E, 'M', 'о'), + (0x41F, 'M', 'п'), + (0x420, 'M', 'р'), + (0x421, 'M', 'с'), + (0x422, 'M', 'т'), + (0x423, 'M', 'у'), + (0x424, 'M', 'ф'), + (0x425, 'M', 'х'), + (0x426, 'M', 'ц'), + (0x427, 'M', 'ч'), + (0x428, 'M', 'ш'), + (0x429, 'M', 'щ'), + (0x42A, 'M', 'ъ'), + (0x42B, 'M', 'ы'), + (0x42C, 'M', 'ь'), + (0x42D, 'M', 'э'), + (0x42E, 'M', 'ю'), + (0x42F, 'M', 'я'), + (0x430, 'V'), + (0x460, 'M', 'ѡ'), + (0x461, 'V'), + (0x462, 'M', 'ѣ'), + (0x463, 'V'), + (0x464, 'M', 'ѥ'), + (0x465, 'V'), + (0x466, 'M', 'ѧ'), + (0x467, 'V'), + (0x468, 'M', 'ѩ'), + (0x469, 'V'), + (0x46A, 'M', 'ѫ'), + (0x46B, 'V'), + (0x46C, 'M', 'ѭ'), + (0x46D, 'V'), + (0x46E, 'M', 'ѯ'), + (0x46F, 'V'), + (0x470, 'M', 'ѱ'), + (0x471, 'V'), + (0x472, 'M', 'ѳ'), + (0x473, 'V'), + (0x474, 'M', 'ѵ'), + (0x475, 'V'), + (0x476, 'M', 'ѷ'), + (0x477, 'V'), + (0x478, 'M', 'ѹ'), + (0x479, 'V'), + (0x47A, 'M', 'ѻ'), + (0x47B, 'V'), + (0x47C, 'M', 'ѽ'), + (0x47D, 'V'), + (0x47E, 'M', 'ѿ'), + (0x47F, 'V'), + (0x480, 'M', 'ҁ'), + (0x481, 'V'), + (0x48A, 'M', 'ҋ'), + (0x48B, 'V'), + (0x48C, 'M', 'ҍ'), + (0x48D, 'V'), + (0x48E, 'M', 'ҏ'), + (0x48F, 'V'), + (0x490, 'M', 'ґ'), + (0x491, 'V'), + (0x492, 'M', 'ғ'), + (0x493, 'V'), + (0x494, 'M', 'ҕ'), + (0x495, 'V'), + (0x496, 'M', 'җ'), + (0x497, 'V'), + (0x498, 'M', 'ҙ'), + (0x499, 'V'), + (0x49A, 'M', 'қ'), + (0x49B, 'V'), + (0x49C, 'M', 'ҝ'), + (0x49D, 'V'), + ] + +def _seg_8() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x49E, 'M', 'ҟ'), + (0x49F, 'V'), + (0x4A0, 'M', 'ҡ'), + (0x4A1, 'V'), + (0x4A2, 'M', 'ң'), + (0x4A3, 'V'), + (0x4A4, 'M', 'ҥ'), + (0x4A5, 'V'), + (0x4A6, 'M', 'ҧ'), + (0x4A7, 'V'), + (0x4A8, 'M', 'ҩ'), + (0x4A9, 'V'), + (0x4AA, 'M', 'ҫ'), + (0x4AB, 'V'), + (0x4AC, 'M', 'ҭ'), + (0x4AD, 'V'), + (0x4AE, 'M', 'ү'), + (0x4AF, 'V'), + (0x4B0, 'M', 'ұ'), + (0x4B1, 'V'), + (0x4B2, 'M', 'ҳ'), + (0x4B3, 'V'), + (0x4B4, 'M', 'ҵ'), + (0x4B5, 'V'), + (0x4B6, 'M', 'ҷ'), + (0x4B7, 'V'), + (0x4B8, 'M', 'ҹ'), + (0x4B9, 'V'), + (0x4BA, 'M', 'һ'), + (0x4BB, 'V'), + (0x4BC, 'M', 'ҽ'), + (0x4BD, 'V'), + (0x4BE, 'M', 'ҿ'), + (0x4BF, 'V'), + (0x4C0, 'X'), + (0x4C1, 'M', 'ӂ'), + (0x4C2, 'V'), + (0x4C3, 'M', 'ӄ'), + (0x4C4, 'V'), + (0x4C5, 'M', 'ӆ'), + (0x4C6, 'V'), + (0x4C7, 'M', 'ӈ'), + (0x4C8, 'V'), + (0x4C9, 'M', 'ӊ'), + (0x4CA, 'V'), + (0x4CB, 'M', 'ӌ'), + (0x4CC, 'V'), + (0x4CD, 'M', 'ӎ'), + (0x4CE, 'V'), + (0x4D0, 'M', 'ӑ'), + (0x4D1, 'V'), + (0x4D2, 'M', 'ӓ'), + (0x4D3, 'V'), + (0x4D4, 'M', 'ӕ'), + (0x4D5, 'V'), + (0x4D6, 'M', 'ӗ'), + (0x4D7, 'V'), + (0x4D8, 'M', 'ә'), + (0x4D9, 'V'), + (0x4DA, 'M', 'ӛ'), + (0x4DB, 'V'), + (0x4DC, 'M', 'ӝ'), + (0x4DD, 'V'), + (0x4DE, 'M', 'ӟ'), + (0x4DF, 'V'), + (0x4E0, 'M', 'ӡ'), + (0x4E1, 'V'), + (0x4E2, 'M', 'ӣ'), + (0x4E3, 'V'), + (0x4E4, 'M', 'ӥ'), + (0x4E5, 'V'), + (0x4E6, 'M', 'ӧ'), + (0x4E7, 'V'), + (0x4E8, 'M', 'ө'), + (0x4E9, 'V'), + (0x4EA, 'M', 'ӫ'), + (0x4EB, 'V'), + (0x4EC, 'M', 'ӭ'), + (0x4ED, 'V'), + (0x4EE, 'M', 'ӯ'), + (0x4EF, 'V'), + (0x4F0, 'M', 'ӱ'), + (0x4F1, 'V'), + (0x4F2, 'M', 'ӳ'), + (0x4F3, 'V'), + (0x4F4, 'M', 'ӵ'), + (0x4F5, 'V'), + (0x4F6, 'M', 'ӷ'), + (0x4F7, 'V'), + (0x4F8, 'M', 'ӹ'), + (0x4F9, 'V'), + (0x4FA, 'M', 'ӻ'), + (0x4FB, 'V'), + (0x4FC, 'M', 'ӽ'), + (0x4FD, 'V'), + (0x4FE, 'M', 'ӿ'), + (0x4FF, 'V'), + (0x500, 'M', 'ԁ'), + (0x501, 'V'), + (0x502, 'M', 'ԃ'), + ] + +def _seg_9() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x503, 'V'), + (0x504, 'M', 'ԅ'), + (0x505, 'V'), + (0x506, 'M', 'ԇ'), + (0x507, 'V'), + (0x508, 'M', 'ԉ'), + (0x509, 'V'), + (0x50A, 'M', 'ԋ'), + (0x50B, 'V'), + (0x50C, 'M', 'ԍ'), + (0x50D, 'V'), + (0x50E, 'M', 'ԏ'), + (0x50F, 'V'), + (0x510, 'M', 'ԑ'), + (0x511, 'V'), + (0x512, 'M', 'ԓ'), + (0x513, 'V'), + (0x514, 'M', 'ԕ'), + (0x515, 'V'), + (0x516, 'M', 'ԗ'), + (0x517, 'V'), + (0x518, 'M', 'ԙ'), + (0x519, 'V'), + (0x51A, 'M', 'ԛ'), + (0x51B, 'V'), + (0x51C, 'M', 'ԝ'), + (0x51D, 'V'), + (0x51E, 'M', 'ԟ'), + (0x51F, 'V'), + (0x520, 'M', 'ԡ'), + (0x521, 'V'), + (0x522, 'M', 'ԣ'), + (0x523, 'V'), + (0x524, 'M', 'ԥ'), + (0x525, 'V'), + (0x526, 'M', 'ԧ'), + (0x527, 'V'), + (0x528, 'M', 'ԩ'), + (0x529, 'V'), + (0x52A, 'M', 'ԫ'), + (0x52B, 'V'), + (0x52C, 'M', 'ԭ'), + (0x52D, 'V'), + (0x52E, 'M', 'ԯ'), + (0x52F, 'V'), + (0x530, 'X'), + (0x531, 'M', 'ա'), + (0x532, 'M', 'բ'), + (0x533, 'M', 'գ'), + (0x534, 'M', 'դ'), + (0x535, 'M', 'ե'), + (0x536, 'M', 'զ'), + (0x537, 'M', 'է'), + (0x538, 'M', 'ը'), + (0x539, 'M', 'թ'), + (0x53A, 'M', 'ժ'), + (0x53B, 'M', 'ի'), + (0x53C, 'M', 'լ'), + (0x53D, 'M', 'խ'), + (0x53E, 'M', 'ծ'), + (0x53F, 'M', 'կ'), + (0x540, 'M', 'հ'), + (0x541, 'M', 'ձ'), + (0x542, 'M', 'ղ'), + (0x543, 'M', 'ճ'), + (0x544, 'M', 'մ'), + (0x545, 'M', 'յ'), + (0x546, 'M', 'ն'), + (0x547, 'M', 'շ'), + (0x548, 'M', 'ո'), + (0x549, 'M', 'չ'), + (0x54A, 'M', 'պ'), + (0x54B, 'M', 'ջ'), + (0x54C, 'M', 'ռ'), + (0x54D, 'M', 'ս'), + (0x54E, 'M', 'վ'), + (0x54F, 'M', 'տ'), + (0x550, 'M', 'ր'), + (0x551, 'M', 'ց'), + (0x552, 'M', 'ւ'), + (0x553, 'M', 'փ'), + (0x554, 'M', 'ք'), + (0x555, 'M', 'օ'), + (0x556, 'M', 'ֆ'), + (0x557, 'X'), + (0x559, 'V'), + (0x587, 'M', 'եւ'), + (0x588, 'V'), + (0x58B, 'X'), + (0x58D, 'V'), + (0x590, 'X'), + (0x591, 'V'), + (0x5C8, 'X'), + (0x5D0, 'V'), + (0x5EB, 'X'), + (0x5EF, 'V'), + (0x5F5, 'X'), + (0x606, 'V'), + (0x61C, 'X'), + (0x61D, 'V'), + ] + +def _seg_10() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x675, 'M', 'اٴ'), + (0x676, 'M', 'وٴ'), + (0x677, 'M', 'ۇٴ'), + (0x678, 'M', 'يٴ'), + (0x679, 'V'), + (0x6DD, 'X'), + (0x6DE, 'V'), + (0x70E, 'X'), + (0x710, 'V'), + (0x74B, 'X'), + (0x74D, 'V'), + (0x7B2, 'X'), + (0x7C0, 'V'), + (0x7FB, 'X'), + (0x7FD, 'V'), + (0x82E, 'X'), + (0x830, 'V'), + (0x83F, 'X'), + (0x840, 'V'), + (0x85C, 'X'), + (0x85E, 'V'), + (0x85F, 'X'), + (0x860, 'V'), + (0x86B, 'X'), + (0x870, 'V'), + (0x88F, 'X'), + (0x898, 'V'), + (0x8E2, 'X'), + (0x8E3, 'V'), + (0x958, 'M', 'क़'), + (0x959, 'M', 'ख़'), + (0x95A, 'M', 'ग़'), + (0x95B, 'M', 'ज़'), + (0x95C, 'M', 'ड़'), + (0x95D, 'M', 'ढ़'), + (0x95E, 'M', 'फ़'), + (0x95F, 'M', 'य़'), + (0x960, 'V'), + (0x984, 'X'), + (0x985, 'V'), + (0x98D, 'X'), + (0x98F, 'V'), + (0x991, 'X'), + (0x993, 'V'), + (0x9A9, 'X'), + (0x9AA, 'V'), + (0x9B1, 'X'), + (0x9B2, 'V'), + (0x9B3, 'X'), + (0x9B6, 'V'), + (0x9BA, 'X'), + (0x9BC, 'V'), + (0x9C5, 'X'), + (0x9C7, 'V'), + (0x9C9, 'X'), + (0x9CB, 'V'), + (0x9CF, 'X'), + (0x9D7, 'V'), + (0x9D8, 'X'), + (0x9DC, 'M', 'ড়'), + (0x9DD, 'M', 'ঢ়'), + (0x9DE, 'X'), + (0x9DF, 'M', 'য়'), + (0x9E0, 'V'), + (0x9E4, 'X'), + (0x9E6, 'V'), + (0x9FF, 'X'), + (0xA01, 'V'), + (0xA04, 'X'), + (0xA05, 'V'), + (0xA0B, 'X'), + (0xA0F, 'V'), + (0xA11, 'X'), + (0xA13, 'V'), + (0xA29, 'X'), + (0xA2A, 'V'), + (0xA31, 'X'), + (0xA32, 'V'), + (0xA33, 'M', 'ਲ਼'), + (0xA34, 'X'), + (0xA35, 'V'), + (0xA36, 'M', 'ਸ਼'), + (0xA37, 'X'), + (0xA38, 'V'), + (0xA3A, 'X'), + (0xA3C, 'V'), + (0xA3D, 'X'), + (0xA3E, 'V'), + (0xA43, 'X'), + (0xA47, 'V'), + (0xA49, 'X'), + (0xA4B, 'V'), + (0xA4E, 'X'), + (0xA51, 'V'), + (0xA52, 'X'), + (0xA59, 'M', 'ਖ਼'), + (0xA5A, 'M', 'ਗ਼'), + (0xA5B, 'M', 'ਜ਼'), + (0xA5C, 'V'), + (0xA5D, 'X'), + ] + +def _seg_11() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA5E, 'M', 'ਫ਼'), + (0xA5F, 'X'), + (0xA66, 'V'), + (0xA77, 'X'), + (0xA81, 'V'), + (0xA84, 'X'), + (0xA85, 'V'), + (0xA8E, 'X'), + (0xA8F, 'V'), + (0xA92, 'X'), + (0xA93, 'V'), + (0xAA9, 'X'), + (0xAAA, 'V'), + (0xAB1, 'X'), + (0xAB2, 'V'), + (0xAB4, 'X'), + (0xAB5, 'V'), + (0xABA, 'X'), + (0xABC, 'V'), + (0xAC6, 'X'), + (0xAC7, 'V'), + (0xACA, 'X'), + (0xACB, 'V'), + (0xACE, 'X'), + (0xAD0, 'V'), + (0xAD1, 'X'), + (0xAE0, 'V'), + (0xAE4, 'X'), + (0xAE6, 'V'), + (0xAF2, 'X'), + (0xAF9, 'V'), + (0xB00, 'X'), + (0xB01, 'V'), + (0xB04, 'X'), + (0xB05, 'V'), + (0xB0D, 'X'), + (0xB0F, 'V'), + (0xB11, 'X'), + (0xB13, 'V'), + (0xB29, 'X'), + (0xB2A, 'V'), + (0xB31, 'X'), + (0xB32, 'V'), + (0xB34, 'X'), + (0xB35, 'V'), + (0xB3A, 'X'), + (0xB3C, 'V'), + (0xB45, 'X'), + (0xB47, 'V'), + (0xB49, 'X'), + (0xB4B, 'V'), + (0xB4E, 'X'), + (0xB55, 'V'), + (0xB58, 'X'), + (0xB5C, 'M', 'ଡ଼'), + (0xB5D, 'M', 'ଢ଼'), + (0xB5E, 'X'), + (0xB5F, 'V'), + (0xB64, 'X'), + (0xB66, 'V'), + (0xB78, 'X'), + (0xB82, 'V'), + (0xB84, 'X'), + (0xB85, 'V'), + (0xB8B, 'X'), + (0xB8E, 'V'), + (0xB91, 'X'), + (0xB92, 'V'), + (0xB96, 'X'), + (0xB99, 'V'), + (0xB9B, 'X'), + (0xB9C, 'V'), + (0xB9D, 'X'), + (0xB9E, 'V'), + (0xBA0, 'X'), + (0xBA3, 'V'), + (0xBA5, 'X'), + (0xBA8, 'V'), + (0xBAB, 'X'), + (0xBAE, 'V'), + (0xBBA, 'X'), + (0xBBE, 'V'), + (0xBC3, 'X'), + (0xBC6, 'V'), + (0xBC9, 'X'), + (0xBCA, 'V'), + (0xBCE, 'X'), + (0xBD0, 'V'), + (0xBD1, 'X'), + (0xBD7, 'V'), + (0xBD8, 'X'), + (0xBE6, 'V'), + (0xBFB, 'X'), + (0xC00, 'V'), + (0xC0D, 'X'), + (0xC0E, 'V'), + (0xC11, 'X'), + (0xC12, 'V'), + (0xC29, 'X'), + (0xC2A, 'V'), + ] + +def _seg_12() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xC3A, 'X'), + (0xC3C, 'V'), + (0xC45, 'X'), + (0xC46, 'V'), + (0xC49, 'X'), + (0xC4A, 'V'), + (0xC4E, 'X'), + (0xC55, 'V'), + (0xC57, 'X'), + (0xC58, 'V'), + (0xC5B, 'X'), + (0xC5D, 'V'), + (0xC5E, 'X'), + (0xC60, 'V'), + (0xC64, 'X'), + (0xC66, 'V'), + (0xC70, 'X'), + (0xC77, 'V'), + (0xC8D, 'X'), + (0xC8E, 'V'), + (0xC91, 'X'), + (0xC92, 'V'), + (0xCA9, 'X'), + (0xCAA, 'V'), + (0xCB4, 'X'), + (0xCB5, 'V'), + (0xCBA, 'X'), + (0xCBC, 'V'), + (0xCC5, 'X'), + (0xCC6, 'V'), + (0xCC9, 'X'), + (0xCCA, 'V'), + (0xCCE, 'X'), + (0xCD5, 'V'), + (0xCD7, 'X'), + (0xCDD, 'V'), + (0xCDF, 'X'), + (0xCE0, 'V'), + (0xCE4, 'X'), + (0xCE6, 'V'), + (0xCF0, 'X'), + (0xCF1, 'V'), + (0xCF4, 'X'), + (0xD00, 'V'), + (0xD0D, 'X'), + (0xD0E, 'V'), + (0xD11, 'X'), + (0xD12, 'V'), + (0xD45, 'X'), + (0xD46, 'V'), + (0xD49, 'X'), + (0xD4A, 'V'), + (0xD50, 'X'), + (0xD54, 'V'), + (0xD64, 'X'), + (0xD66, 'V'), + (0xD80, 'X'), + (0xD81, 'V'), + (0xD84, 'X'), + (0xD85, 'V'), + (0xD97, 'X'), + (0xD9A, 'V'), + (0xDB2, 'X'), + (0xDB3, 'V'), + (0xDBC, 'X'), + (0xDBD, 'V'), + (0xDBE, 'X'), + (0xDC0, 'V'), + (0xDC7, 'X'), + (0xDCA, 'V'), + (0xDCB, 'X'), + (0xDCF, 'V'), + (0xDD5, 'X'), + (0xDD6, 'V'), + (0xDD7, 'X'), + (0xDD8, 'V'), + (0xDE0, 'X'), + (0xDE6, 'V'), + (0xDF0, 'X'), + (0xDF2, 'V'), + (0xDF5, 'X'), + (0xE01, 'V'), + (0xE33, 'M', 'ํา'), + (0xE34, 'V'), + (0xE3B, 'X'), + (0xE3F, 'V'), + (0xE5C, 'X'), + (0xE81, 'V'), + (0xE83, 'X'), + (0xE84, 'V'), + (0xE85, 'X'), + (0xE86, 'V'), + (0xE8B, 'X'), + (0xE8C, 'V'), + (0xEA4, 'X'), + (0xEA5, 'V'), + (0xEA6, 'X'), + (0xEA7, 'V'), + (0xEB3, 'M', 'ໍາ'), + (0xEB4, 'V'), + ] + +def _seg_13() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xEBE, 'X'), + (0xEC0, 'V'), + (0xEC5, 'X'), + (0xEC6, 'V'), + (0xEC7, 'X'), + (0xEC8, 'V'), + (0xECF, 'X'), + (0xED0, 'V'), + (0xEDA, 'X'), + (0xEDC, 'M', 'ຫນ'), + (0xEDD, 'M', 'ຫມ'), + (0xEDE, 'V'), + (0xEE0, 'X'), + (0xF00, 'V'), + (0xF0C, 'M', '་'), + (0xF0D, 'V'), + (0xF43, 'M', 'གྷ'), + (0xF44, 'V'), + (0xF48, 'X'), + (0xF49, 'V'), + (0xF4D, 'M', 'ཌྷ'), + (0xF4E, 'V'), + (0xF52, 'M', 'དྷ'), + (0xF53, 'V'), + (0xF57, 'M', 'བྷ'), + (0xF58, 'V'), + (0xF5C, 'M', 'ཛྷ'), + (0xF5D, 'V'), + (0xF69, 'M', 'ཀྵ'), + (0xF6A, 'V'), + (0xF6D, 'X'), + (0xF71, 'V'), + (0xF73, 'M', 'ཱི'), + (0xF74, 'V'), + (0xF75, 'M', 'ཱུ'), + (0xF76, 'M', 'ྲྀ'), + (0xF77, 'M', 'ྲཱྀ'), + (0xF78, 'M', 'ླྀ'), + (0xF79, 'M', 'ླཱྀ'), + (0xF7A, 'V'), + (0xF81, 'M', 'ཱྀ'), + (0xF82, 'V'), + (0xF93, 'M', 'ྒྷ'), + (0xF94, 'V'), + (0xF98, 'X'), + (0xF99, 'V'), + (0xF9D, 'M', 'ྜྷ'), + (0xF9E, 'V'), + (0xFA2, 'M', 'ྡྷ'), + (0xFA3, 'V'), + (0xFA7, 'M', 'ྦྷ'), + (0xFA8, 'V'), + (0xFAC, 'M', 'ྫྷ'), + (0xFAD, 'V'), + (0xFB9, 'M', 'ྐྵ'), + (0xFBA, 'V'), + (0xFBD, 'X'), + (0xFBE, 'V'), + (0xFCD, 'X'), + (0xFCE, 'V'), + (0xFDB, 'X'), + (0x1000, 'V'), + (0x10A0, 'X'), + (0x10C7, 'M', 'ⴧ'), + (0x10C8, 'X'), + (0x10CD, 'M', 'ⴭ'), + (0x10CE, 'X'), + (0x10D0, 'V'), + (0x10FC, 'M', 'ნ'), + (0x10FD, 'V'), + (0x115F, 'X'), + (0x1161, 'V'), + (0x1249, 'X'), + (0x124A, 'V'), + (0x124E, 'X'), + (0x1250, 'V'), + (0x1257, 'X'), + (0x1258, 'V'), + (0x1259, 'X'), + (0x125A, 'V'), + (0x125E, 'X'), + (0x1260, 'V'), + (0x1289, 'X'), + (0x128A, 'V'), + (0x128E, 'X'), + (0x1290, 'V'), + (0x12B1, 'X'), + (0x12B2, 'V'), + (0x12B6, 'X'), + (0x12B8, 'V'), + (0x12BF, 'X'), + (0x12C0, 'V'), + (0x12C1, 'X'), + (0x12C2, 'V'), + (0x12C6, 'X'), + (0x12C8, 'V'), + (0x12D7, 'X'), + (0x12D8, 'V'), + (0x1311, 'X'), + (0x1312, 'V'), + ] + +def _seg_14() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1316, 'X'), + (0x1318, 'V'), + (0x135B, 'X'), + (0x135D, 'V'), + (0x137D, 'X'), + (0x1380, 'V'), + (0x139A, 'X'), + (0x13A0, 'V'), + (0x13F6, 'X'), + (0x13F8, 'M', 'Ᏸ'), + (0x13F9, 'M', 'Ᏹ'), + (0x13FA, 'M', 'Ᏺ'), + (0x13FB, 'M', 'Ᏻ'), + (0x13FC, 'M', 'Ᏼ'), + (0x13FD, 'M', 'Ᏽ'), + (0x13FE, 'X'), + (0x1400, 'V'), + (0x1680, 'X'), + (0x1681, 'V'), + (0x169D, 'X'), + (0x16A0, 'V'), + (0x16F9, 'X'), + (0x1700, 'V'), + (0x1716, 'X'), + (0x171F, 'V'), + (0x1737, 'X'), + (0x1740, 'V'), + (0x1754, 'X'), + (0x1760, 'V'), + (0x176D, 'X'), + (0x176E, 'V'), + (0x1771, 'X'), + (0x1772, 'V'), + (0x1774, 'X'), + (0x1780, 'V'), + (0x17B4, 'X'), + (0x17B6, 'V'), + (0x17DE, 'X'), + (0x17E0, 'V'), + (0x17EA, 'X'), + (0x17F0, 'V'), + (0x17FA, 'X'), + (0x1800, 'V'), + (0x1806, 'X'), + (0x1807, 'V'), + (0x180B, 'I'), + (0x180E, 'X'), + (0x180F, 'I'), + (0x1810, 'V'), + (0x181A, 'X'), + (0x1820, 'V'), + (0x1879, 'X'), + (0x1880, 'V'), + (0x18AB, 'X'), + (0x18B0, 'V'), + (0x18F6, 'X'), + (0x1900, 'V'), + (0x191F, 'X'), + (0x1920, 'V'), + (0x192C, 'X'), + (0x1930, 'V'), + (0x193C, 'X'), + (0x1940, 'V'), + (0x1941, 'X'), + (0x1944, 'V'), + (0x196E, 'X'), + (0x1970, 'V'), + (0x1975, 'X'), + (0x1980, 'V'), + (0x19AC, 'X'), + (0x19B0, 'V'), + (0x19CA, 'X'), + (0x19D0, 'V'), + (0x19DB, 'X'), + (0x19DE, 'V'), + (0x1A1C, 'X'), + (0x1A1E, 'V'), + (0x1A5F, 'X'), + (0x1A60, 'V'), + (0x1A7D, 'X'), + (0x1A7F, 'V'), + (0x1A8A, 'X'), + (0x1A90, 'V'), + (0x1A9A, 'X'), + (0x1AA0, 'V'), + (0x1AAE, 'X'), + (0x1AB0, 'V'), + (0x1ACF, 'X'), + (0x1B00, 'V'), + (0x1B4D, 'X'), + (0x1B50, 'V'), + (0x1B7F, 'X'), + (0x1B80, 'V'), + (0x1BF4, 'X'), + (0x1BFC, 'V'), + (0x1C38, 'X'), + (0x1C3B, 'V'), + (0x1C4A, 'X'), + (0x1C4D, 'V'), + (0x1C80, 'M', 'в'), + ] + +def _seg_15() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1C81, 'M', 'д'), + (0x1C82, 'M', 'о'), + (0x1C83, 'M', 'с'), + (0x1C84, 'M', 'т'), + (0x1C86, 'M', 'ъ'), + (0x1C87, 'M', 'ѣ'), + (0x1C88, 'M', 'ꙋ'), + (0x1C89, 'X'), + (0x1C90, 'M', 'ა'), + (0x1C91, 'M', 'ბ'), + (0x1C92, 'M', 'გ'), + (0x1C93, 'M', 'დ'), + (0x1C94, 'M', 'ე'), + (0x1C95, 'M', 'ვ'), + (0x1C96, 'M', 'ზ'), + (0x1C97, 'M', 'თ'), + (0x1C98, 'M', 'ი'), + (0x1C99, 'M', 'კ'), + (0x1C9A, 'M', 'ლ'), + (0x1C9B, 'M', 'მ'), + (0x1C9C, 'M', 'ნ'), + (0x1C9D, 'M', 'ო'), + (0x1C9E, 'M', 'პ'), + (0x1C9F, 'M', 'ჟ'), + (0x1CA0, 'M', 'რ'), + (0x1CA1, 'M', 'ს'), + (0x1CA2, 'M', 'ტ'), + (0x1CA3, 'M', 'უ'), + (0x1CA4, 'M', 'ფ'), + (0x1CA5, 'M', 'ქ'), + (0x1CA6, 'M', 'ღ'), + (0x1CA7, 'M', 'ყ'), + (0x1CA8, 'M', 'შ'), + (0x1CA9, 'M', 'ჩ'), + (0x1CAA, 'M', 'ც'), + (0x1CAB, 'M', 'ძ'), + (0x1CAC, 'M', 'წ'), + (0x1CAD, 'M', 'ჭ'), + (0x1CAE, 'M', 'ხ'), + (0x1CAF, 'M', 'ჯ'), + (0x1CB0, 'M', 'ჰ'), + (0x1CB1, 'M', 'ჱ'), + (0x1CB2, 'M', 'ჲ'), + (0x1CB3, 'M', 'ჳ'), + (0x1CB4, 'M', 'ჴ'), + (0x1CB5, 'M', 'ჵ'), + (0x1CB6, 'M', 'ჶ'), + (0x1CB7, 'M', 'ჷ'), + (0x1CB8, 'M', 'ჸ'), + (0x1CB9, 'M', 'ჹ'), + (0x1CBA, 'M', 'ჺ'), + (0x1CBB, 'X'), + (0x1CBD, 'M', 'ჽ'), + (0x1CBE, 'M', 'ჾ'), + (0x1CBF, 'M', 'ჿ'), + (0x1CC0, 'V'), + (0x1CC8, 'X'), + (0x1CD0, 'V'), + (0x1CFB, 'X'), + (0x1D00, 'V'), + (0x1D2C, 'M', 'a'), + (0x1D2D, 'M', 'æ'), + (0x1D2E, 'M', 'b'), + (0x1D2F, 'V'), + (0x1D30, 'M', 'd'), + (0x1D31, 'M', 'e'), + (0x1D32, 'M', 'ǝ'), + (0x1D33, 'M', 'g'), + (0x1D34, 'M', 'h'), + (0x1D35, 'M', 'i'), + (0x1D36, 'M', 'j'), + (0x1D37, 'M', 'k'), + (0x1D38, 'M', 'l'), + (0x1D39, 'M', 'm'), + (0x1D3A, 'M', 'n'), + (0x1D3B, 'V'), + (0x1D3C, 'M', 'o'), + (0x1D3D, 'M', 'ȣ'), + (0x1D3E, 'M', 'p'), + (0x1D3F, 'M', 'r'), + (0x1D40, 'M', 't'), + (0x1D41, 'M', 'u'), + (0x1D42, 'M', 'w'), + (0x1D43, 'M', 'a'), + (0x1D44, 'M', 'ɐ'), + (0x1D45, 'M', 'ɑ'), + (0x1D46, 'M', 'ᴂ'), + (0x1D47, 'M', 'b'), + (0x1D48, 'M', 'd'), + (0x1D49, 'M', 'e'), + (0x1D4A, 'M', 'ə'), + (0x1D4B, 'M', 'ɛ'), + (0x1D4C, 'M', 'ɜ'), + (0x1D4D, 'M', 'g'), + (0x1D4E, 'V'), + (0x1D4F, 'M', 'k'), + (0x1D50, 'M', 'm'), + (0x1D51, 'M', 'ŋ'), + (0x1D52, 'M', 'o'), + (0x1D53, 'M', 'ɔ'), + ] + +def _seg_16() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D54, 'M', 'ᴖ'), + (0x1D55, 'M', 'ᴗ'), + (0x1D56, 'M', 'p'), + (0x1D57, 'M', 't'), + (0x1D58, 'M', 'u'), + (0x1D59, 'M', 'ᴝ'), + (0x1D5A, 'M', 'ɯ'), + (0x1D5B, 'M', 'v'), + (0x1D5C, 'M', 'ᴥ'), + (0x1D5D, 'M', 'β'), + (0x1D5E, 'M', 'γ'), + (0x1D5F, 'M', 'δ'), + (0x1D60, 'M', 'φ'), + (0x1D61, 'M', 'χ'), + (0x1D62, 'M', 'i'), + (0x1D63, 'M', 'r'), + (0x1D64, 'M', 'u'), + (0x1D65, 'M', 'v'), + (0x1D66, 'M', 'β'), + (0x1D67, 'M', 'γ'), + (0x1D68, 'M', 'ρ'), + (0x1D69, 'M', 'φ'), + (0x1D6A, 'M', 'χ'), + (0x1D6B, 'V'), + (0x1D78, 'M', 'н'), + (0x1D79, 'V'), + (0x1D9B, 'M', 'ɒ'), + (0x1D9C, 'M', 'c'), + (0x1D9D, 'M', 'ɕ'), + (0x1D9E, 'M', 'ð'), + (0x1D9F, 'M', 'ɜ'), + (0x1DA0, 'M', 'f'), + (0x1DA1, 'M', 'ɟ'), + (0x1DA2, 'M', 'ɡ'), + (0x1DA3, 'M', 'ɥ'), + (0x1DA4, 'M', 'ɨ'), + (0x1DA5, 'M', 'ɩ'), + (0x1DA6, 'M', 'ɪ'), + (0x1DA7, 'M', 'ᵻ'), + (0x1DA8, 'M', 'ʝ'), + (0x1DA9, 'M', 'ɭ'), + (0x1DAA, 'M', 'ᶅ'), + (0x1DAB, 'M', 'ʟ'), + (0x1DAC, 'M', 'ɱ'), + (0x1DAD, 'M', 'ɰ'), + (0x1DAE, 'M', 'ɲ'), + (0x1DAF, 'M', 'ɳ'), + (0x1DB0, 'M', 'ɴ'), + (0x1DB1, 'M', 'ɵ'), + (0x1DB2, 'M', 'ɸ'), + (0x1DB3, 'M', 'ʂ'), + (0x1DB4, 'M', 'ʃ'), + (0x1DB5, 'M', 'ƫ'), + (0x1DB6, 'M', 'ʉ'), + (0x1DB7, 'M', 'ʊ'), + (0x1DB8, 'M', 'ᴜ'), + (0x1DB9, 'M', 'ʋ'), + (0x1DBA, 'M', 'ʌ'), + (0x1DBB, 'M', 'z'), + (0x1DBC, 'M', 'ʐ'), + (0x1DBD, 'M', 'ʑ'), + (0x1DBE, 'M', 'ʒ'), + (0x1DBF, 'M', 'θ'), + (0x1DC0, 'V'), + (0x1E00, 'M', 'ḁ'), + (0x1E01, 'V'), + (0x1E02, 'M', 'ḃ'), + (0x1E03, 'V'), + (0x1E04, 'M', 'ḅ'), + (0x1E05, 'V'), + (0x1E06, 'M', 'ḇ'), + (0x1E07, 'V'), + (0x1E08, 'M', 'ḉ'), + (0x1E09, 'V'), + (0x1E0A, 'M', 'ḋ'), + (0x1E0B, 'V'), + (0x1E0C, 'M', 'ḍ'), + (0x1E0D, 'V'), + (0x1E0E, 'M', 'ḏ'), + (0x1E0F, 'V'), + (0x1E10, 'M', 'ḑ'), + (0x1E11, 'V'), + (0x1E12, 'M', 'ḓ'), + (0x1E13, 'V'), + (0x1E14, 'M', 'ḕ'), + (0x1E15, 'V'), + (0x1E16, 'M', 'ḗ'), + (0x1E17, 'V'), + (0x1E18, 'M', 'ḙ'), + (0x1E19, 'V'), + (0x1E1A, 'M', 'ḛ'), + (0x1E1B, 'V'), + (0x1E1C, 'M', 'ḝ'), + (0x1E1D, 'V'), + (0x1E1E, 'M', 'ḟ'), + (0x1E1F, 'V'), + (0x1E20, 'M', 'ḡ'), + (0x1E21, 'V'), + (0x1E22, 'M', 'ḣ'), + (0x1E23, 'V'), + ] + +def _seg_17() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E24, 'M', 'ḥ'), + (0x1E25, 'V'), + (0x1E26, 'M', 'ḧ'), + (0x1E27, 'V'), + (0x1E28, 'M', 'ḩ'), + (0x1E29, 'V'), + (0x1E2A, 'M', 'ḫ'), + (0x1E2B, 'V'), + (0x1E2C, 'M', 'ḭ'), + (0x1E2D, 'V'), + (0x1E2E, 'M', 'ḯ'), + (0x1E2F, 'V'), + (0x1E30, 'M', 'ḱ'), + (0x1E31, 'V'), + (0x1E32, 'M', 'ḳ'), + (0x1E33, 'V'), + (0x1E34, 'M', 'ḵ'), + (0x1E35, 'V'), + (0x1E36, 'M', 'ḷ'), + (0x1E37, 'V'), + (0x1E38, 'M', 'ḹ'), + (0x1E39, 'V'), + (0x1E3A, 'M', 'ḻ'), + (0x1E3B, 'V'), + (0x1E3C, 'M', 'ḽ'), + (0x1E3D, 'V'), + (0x1E3E, 'M', 'ḿ'), + (0x1E3F, 'V'), + (0x1E40, 'M', 'ṁ'), + (0x1E41, 'V'), + (0x1E42, 'M', 'ṃ'), + (0x1E43, 'V'), + (0x1E44, 'M', 'ṅ'), + (0x1E45, 'V'), + (0x1E46, 'M', 'ṇ'), + (0x1E47, 'V'), + (0x1E48, 'M', 'ṉ'), + (0x1E49, 'V'), + (0x1E4A, 'M', 'ṋ'), + (0x1E4B, 'V'), + (0x1E4C, 'M', 'ṍ'), + (0x1E4D, 'V'), + (0x1E4E, 'M', 'ṏ'), + (0x1E4F, 'V'), + (0x1E50, 'M', 'ṑ'), + (0x1E51, 'V'), + (0x1E52, 'M', 'ṓ'), + (0x1E53, 'V'), + (0x1E54, 'M', 'ṕ'), + (0x1E55, 'V'), + (0x1E56, 'M', 'ṗ'), + (0x1E57, 'V'), + (0x1E58, 'M', 'ṙ'), + (0x1E59, 'V'), + (0x1E5A, 'M', 'ṛ'), + (0x1E5B, 'V'), + (0x1E5C, 'M', 'ṝ'), + (0x1E5D, 'V'), + (0x1E5E, 'M', 'ṟ'), + (0x1E5F, 'V'), + (0x1E60, 'M', 'ṡ'), + (0x1E61, 'V'), + (0x1E62, 'M', 'ṣ'), + (0x1E63, 'V'), + (0x1E64, 'M', 'ṥ'), + (0x1E65, 'V'), + (0x1E66, 'M', 'ṧ'), + (0x1E67, 'V'), + (0x1E68, 'M', 'ṩ'), + (0x1E69, 'V'), + (0x1E6A, 'M', 'ṫ'), + (0x1E6B, 'V'), + (0x1E6C, 'M', 'ṭ'), + (0x1E6D, 'V'), + (0x1E6E, 'M', 'ṯ'), + (0x1E6F, 'V'), + (0x1E70, 'M', 'ṱ'), + (0x1E71, 'V'), + (0x1E72, 'M', 'ṳ'), + (0x1E73, 'V'), + (0x1E74, 'M', 'ṵ'), + (0x1E75, 'V'), + (0x1E76, 'M', 'ṷ'), + (0x1E77, 'V'), + (0x1E78, 'M', 'ṹ'), + (0x1E79, 'V'), + (0x1E7A, 'M', 'ṻ'), + (0x1E7B, 'V'), + (0x1E7C, 'M', 'ṽ'), + (0x1E7D, 'V'), + (0x1E7E, 'M', 'ṿ'), + (0x1E7F, 'V'), + (0x1E80, 'M', 'ẁ'), + (0x1E81, 'V'), + (0x1E82, 'M', 'ẃ'), + (0x1E83, 'V'), + (0x1E84, 'M', 'ẅ'), + (0x1E85, 'V'), + (0x1E86, 'M', 'ẇ'), + (0x1E87, 'V'), + ] + +def _seg_18() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E88, 'M', 'ẉ'), + (0x1E89, 'V'), + (0x1E8A, 'M', 'ẋ'), + (0x1E8B, 'V'), + (0x1E8C, 'M', 'ẍ'), + (0x1E8D, 'V'), + (0x1E8E, 'M', 'ẏ'), + (0x1E8F, 'V'), + (0x1E90, 'M', 'ẑ'), + (0x1E91, 'V'), + (0x1E92, 'M', 'ẓ'), + (0x1E93, 'V'), + (0x1E94, 'M', 'ẕ'), + (0x1E95, 'V'), + (0x1E9A, 'M', 'aʾ'), + (0x1E9B, 'M', 'ṡ'), + (0x1E9C, 'V'), + (0x1E9E, 'M', 'ß'), + (0x1E9F, 'V'), + (0x1EA0, 'M', 'ạ'), + (0x1EA1, 'V'), + (0x1EA2, 'M', 'ả'), + (0x1EA3, 'V'), + (0x1EA4, 'M', 'ấ'), + (0x1EA5, 'V'), + (0x1EA6, 'M', 'ầ'), + (0x1EA7, 'V'), + (0x1EA8, 'M', 'ẩ'), + (0x1EA9, 'V'), + (0x1EAA, 'M', 'ẫ'), + (0x1EAB, 'V'), + (0x1EAC, 'M', 'ậ'), + (0x1EAD, 'V'), + (0x1EAE, 'M', 'ắ'), + (0x1EAF, 'V'), + (0x1EB0, 'M', 'ằ'), + (0x1EB1, 'V'), + (0x1EB2, 'M', 'ẳ'), + (0x1EB3, 'V'), + (0x1EB4, 'M', 'ẵ'), + (0x1EB5, 'V'), + (0x1EB6, 'M', 'ặ'), + (0x1EB7, 'V'), + (0x1EB8, 'M', 'ẹ'), + (0x1EB9, 'V'), + (0x1EBA, 'M', 'ẻ'), + (0x1EBB, 'V'), + (0x1EBC, 'M', 'ẽ'), + (0x1EBD, 'V'), + (0x1EBE, 'M', 'ế'), + (0x1EBF, 'V'), + (0x1EC0, 'M', 'ề'), + (0x1EC1, 'V'), + (0x1EC2, 'M', 'ể'), + (0x1EC3, 'V'), + (0x1EC4, 'M', 'ễ'), + (0x1EC5, 'V'), + (0x1EC6, 'M', 'ệ'), + (0x1EC7, 'V'), + (0x1EC8, 'M', 'ỉ'), + (0x1EC9, 'V'), + (0x1ECA, 'M', 'ị'), + (0x1ECB, 'V'), + (0x1ECC, 'M', 'ọ'), + (0x1ECD, 'V'), + (0x1ECE, 'M', 'ỏ'), + (0x1ECF, 'V'), + (0x1ED0, 'M', 'ố'), + (0x1ED1, 'V'), + (0x1ED2, 'M', 'ồ'), + (0x1ED3, 'V'), + (0x1ED4, 'M', 'ổ'), + (0x1ED5, 'V'), + (0x1ED6, 'M', 'ỗ'), + (0x1ED7, 'V'), + (0x1ED8, 'M', 'ộ'), + (0x1ED9, 'V'), + (0x1EDA, 'M', 'ớ'), + (0x1EDB, 'V'), + (0x1EDC, 'M', 'ờ'), + (0x1EDD, 'V'), + (0x1EDE, 'M', 'ở'), + (0x1EDF, 'V'), + (0x1EE0, 'M', 'ỡ'), + (0x1EE1, 'V'), + (0x1EE2, 'M', 'ợ'), + (0x1EE3, 'V'), + (0x1EE4, 'M', 'ụ'), + (0x1EE5, 'V'), + (0x1EE6, 'M', 'ủ'), + (0x1EE7, 'V'), + (0x1EE8, 'M', 'ứ'), + (0x1EE9, 'V'), + (0x1EEA, 'M', 'ừ'), + (0x1EEB, 'V'), + (0x1EEC, 'M', 'ử'), + (0x1EED, 'V'), + (0x1EEE, 'M', 'ữ'), + (0x1EEF, 'V'), + (0x1EF0, 'M', 'ự'), + ] + +def _seg_19() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EF1, 'V'), + (0x1EF2, 'M', 'ỳ'), + (0x1EF3, 'V'), + (0x1EF4, 'M', 'ỵ'), + (0x1EF5, 'V'), + (0x1EF6, 'M', 'ỷ'), + (0x1EF7, 'V'), + (0x1EF8, 'M', 'ỹ'), + (0x1EF9, 'V'), + (0x1EFA, 'M', 'ỻ'), + (0x1EFB, 'V'), + (0x1EFC, 'M', 'ỽ'), + (0x1EFD, 'V'), + (0x1EFE, 'M', 'ỿ'), + (0x1EFF, 'V'), + (0x1F08, 'M', 'ἀ'), + (0x1F09, 'M', 'ἁ'), + (0x1F0A, 'M', 'ἂ'), + (0x1F0B, 'M', 'ἃ'), + (0x1F0C, 'M', 'ἄ'), + (0x1F0D, 'M', 'ἅ'), + (0x1F0E, 'M', 'ἆ'), + (0x1F0F, 'M', 'ἇ'), + (0x1F10, 'V'), + (0x1F16, 'X'), + (0x1F18, 'M', 'ἐ'), + (0x1F19, 'M', 'ἑ'), + (0x1F1A, 'M', 'ἒ'), + (0x1F1B, 'M', 'ἓ'), + (0x1F1C, 'M', 'ἔ'), + (0x1F1D, 'M', 'ἕ'), + (0x1F1E, 'X'), + (0x1F20, 'V'), + (0x1F28, 'M', 'ἠ'), + (0x1F29, 'M', 'ἡ'), + (0x1F2A, 'M', 'ἢ'), + (0x1F2B, 'M', 'ἣ'), + (0x1F2C, 'M', 'ἤ'), + (0x1F2D, 'M', 'ἥ'), + (0x1F2E, 'M', 'ἦ'), + (0x1F2F, 'M', 'ἧ'), + (0x1F30, 'V'), + (0x1F38, 'M', 'ἰ'), + (0x1F39, 'M', 'ἱ'), + (0x1F3A, 'M', 'ἲ'), + (0x1F3B, 'M', 'ἳ'), + (0x1F3C, 'M', 'ἴ'), + (0x1F3D, 'M', 'ἵ'), + (0x1F3E, 'M', 'ἶ'), + (0x1F3F, 'M', 'ἷ'), + (0x1F40, 'V'), + (0x1F46, 'X'), + (0x1F48, 'M', 'ὀ'), + (0x1F49, 'M', 'ὁ'), + (0x1F4A, 'M', 'ὂ'), + (0x1F4B, 'M', 'ὃ'), + (0x1F4C, 'M', 'ὄ'), + (0x1F4D, 'M', 'ὅ'), + (0x1F4E, 'X'), + (0x1F50, 'V'), + (0x1F58, 'X'), + (0x1F59, 'M', 'ὑ'), + (0x1F5A, 'X'), + (0x1F5B, 'M', 'ὓ'), + (0x1F5C, 'X'), + (0x1F5D, 'M', 'ὕ'), + (0x1F5E, 'X'), + (0x1F5F, 'M', 'ὗ'), + (0x1F60, 'V'), + (0x1F68, 'M', 'ὠ'), + (0x1F69, 'M', 'ὡ'), + (0x1F6A, 'M', 'ὢ'), + (0x1F6B, 'M', 'ὣ'), + (0x1F6C, 'M', 'ὤ'), + (0x1F6D, 'M', 'ὥ'), + (0x1F6E, 'M', 'ὦ'), + (0x1F6F, 'M', 'ὧ'), + (0x1F70, 'V'), + (0x1F71, 'M', 'ά'), + (0x1F72, 'V'), + (0x1F73, 'M', 'έ'), + (0x1F74, 'V'), + (0x1F75, 'M', 'ή'), + (0x1F76, 'V'), + (0x1F77, 'M', 'ί'), + (0x1F78, 'V'), + (0x1F79, 'M', 'ό'), + (0x1F7A, 'V'), + (0x1F7B, 'M', 'ύ'), + (0x1F7C, 'V'), + (0x1F7D, 'M', 'ώ'), + (0x1F7E, 'X'), + (0x1F80, 'M', 'ἀι'), + (0x1F81, 'M', 'ἁι'), + (0x1F82, 'M', 'ἂι'), + (0x1F83, 'M', 'ἃι'), + (0x1F84, 'M', 'ἄι'), + (0x1F85, 'M', 'ἅι'), + (0x1F86, 'M', 'ἆι'), + (0x1F87, 'M', 'ἇι'), + ] + +def _seg_20() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F88, 'M', 'ἀι'), + (0x1F89, 'M', 'ἁι'), + (0x1F8A, 'M', 'ἂι'), + (0x1F8B, 'M', 'ἃι'), + (0x1F8C, 'M', 'ἄι'), + (0x1F8D, 'M', 'ἅι'), + (0x1F8E, 'M', 'ἆι'), + (0x1F8F, 'M', 'ἇι'), + (0x1F90, 'M', 'ἠι'), + (0x1F91, 'M', 'ἡι'), + (0x1F92, 'M', 'ἢι'), + (0x1F93, 'M', 'ἣι'), + (0x1F94, 'M', 'ἤι'), + (0x1F95, 'M', 'ἥι'), + (0x1F96, 'M', 'ἦι'), + (0x1F97, 'M', 'ἧι'), + (0x1F98, 'M', 'ἠι'), + (0x1F99, 'M', 'ἡι'), + (0x1F9A, 'M', 'ἢι'), + (0x1F9B, 'M', 'ἣι'), + (0x1F9C, 'M', 'ἤι'), + (0x1F9D, 'M', 'ἥι'), + (0x1F9E, 'M', 'ἦι'), + (0x1F9F, 'M', 'ἧι'), + (0x1FA0, 'M', 'ὠι'), + (0x1FA1, 'M', 'ὡι'), + (0x1FA2, 'M', 'ὢι'), + (0x1FA3, 'M', 'ὣι'), + (0x1FA4, 'M', 'ὤι'), + (0x1FA5, 'M', 'ὥι'), + (0x1FA6, 'M', 'ὦι'), + (0x1FA7, 'M', 'ὧι'), + (0x1FA8, 'M', 'ὠι'), + (0x1FA9, 'M', 'ὡι'), + (0x1FAA, 'M', 'ὢι'), + (0x1FAB, 'M', 'ὣι'), + (0x1FAC, 'M', 'ὤι'), + (0x1FAD, 'M', 'ὥι'), + (0x1FAE, 'M', 'ὦι'), + (0x1FAF, 'M', 'ὧι'), + (0x1FB0, 'V'), + (0x1FB2, 'M', 'ὰι'), + (0x1FB3, 'M', 'αι'), + (0x1FB4, 'M', 'άι'), + (0x1FB5, 'X'), + (0x1FB6, 'V'), + (0x1FB7, 'M', 'ᾶι'), + (0x1FB8, 'M', 'ᾰ'), + (0x1FB9, 'M', 'ᾱ'), + (0x1FBA, 'M', 'ὰ'), + (0x1FBB, 'M', 'ά'), + (0x1FBC, 'M', 'αι'), + (0x1FBD, '3', ' ̓'), + (0x1FBE, 'M', 'ι'), + (0x1FBF, '3', ' ̓'), + (0x1FC0, '3', ' ͂'), + (0x1FC1, '3', ' ̈͂'), + (0x1FC2, 'M', 'ὴι'), + (0x1FC3, 'M', 'ηι'), + (0x1FC4, 'M', 'ήι'), + (0x1FC5, 'X'), + (0x1FC6, 'V'), + (0x1FC7, 'M', 'ῆι'), + (0x1FC8, 'M', 'ὲ'), + (0x1FC9, 'M', 'έ'), + (0x1FCA, 'M', 'ὴ'), + (0x1FCB, 'M', 'ή'), + (0x1FCC, 'M', 'ηι'), + (0x1FCD, '3', ' ̓̀'), + (0x1FCE, '3', ' ̓́'), + (0x1FCF, '3', ' ̓͂'), + (0x1FD0, 'V'), + (0x1FD3, 'M', 'ΐ'), + (0x1FD4, 'X'), + (0x1FD6, 'V'), + (0x1FD8, 'M', 'ῐ'), + (0x1FD9, 'M', 'ῑ'), + (0x1FDA, 'M', 'ὶ'), + (0x1FDB, 'M', 'ί'), + (0x1FDC, 'X'), + (0x1FDD, '3', ' ̔̀'), + (0x1FDE, '3', ' ̔́'), + (0x1FDF, '3', ' ̔͂'), + (0x1FE0, 'V'), + (0x1FE3, 'M', 'ΰ'), + (0x1FE4, 'V'), + (0x1FE8, 'M', 'ῠ'), + (0x1FE9, 'M', 'ῡ'), + (0x1FEA, 'M', 'ὺ'), + (0x1FEB, 'M', 'ύ'), + (0x1FEC, 'M', 'ῥ'), + (0x1FED, '3', ' ̈̀'), + (0x1FEE, '3', ' ̈́'), + (0x1FEF, '3', '`'), + (0x1FF0, 'X'), + (0x1FF2, 'M', 'ὼι'), + (0x1FF3, 'M', 'ωι'), + (0x1FF4, 'M', 'ώι'), + (0x1FF5, 'X'), + (0x1FF6, 'V'), + ] + +def _seg_21() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FF7, 'M', 'ῶι'), + (0x1FF8, 'M', 'ὸ'), + (0x1FF9, 'M', 'ό'), + (0x1FFA, 'M', 'ὼ'), + (0x1FFB, 'M', 'ώ'), + (0x1FFC, 'M', 'ωι'), + (0x1FFD, '3', ' ́'), + (0x1FFE, '3', ' ̔'), + (0x1FFF, 'X'), + (0x2000, '3', ' '), + (0x200B, 'I'), + (0x200C, 'D', ''), + (0x200E, 'X'), + (0x2010, 'V'), + (0x2011, 'M', '‐'), + (0x2012, 'V'), + (0x2017, '3', ' ̳'), + (0x2018, 'V'), + (0x2024, 'X'), + (0x2027, 'V'), + (0x2028, 'X'), + (0x202F, '3', ' '), + (0x2030, 'V'), + (0x2033, 'M', '′′'), + (0x2034, 'M', '′′′'), + (0x2035, 'V'), + (0x2036, 'M', '‵‵'), + (0x2037, 'M', '‵‵‵'), + (0x2038, 'V'), + (0x203C, '3', '!!'), + (0x203D, 'V'), + (0x203E, '3', ' ̅'), + (0x203F, 'V'), + (0x2047, '3', '??'), + (0x2048, '3', '?!'), + (0x2049, '3', '!?'), + (0x204A, 'V'), + (0x2057, 'M', '′′′′'), + (0x2058, 'V'), + (0x205F, '3', ' '), + (0x2060, 'I'), + (0x2061, 'X'), + (0x2064, 'I'), + (0x2065, 'X'), + (0x2070, 'M', '0'), + (0x2071, 'M', 'i'), + (0x2072, 'X'), + (0x2074, 'M', '4'), + (0x2075, 'M', '5'), + (0x2076, 'M', '6'), + (0x2077, 'M', '7'), + (0x2078, 'M', '8'), + (0x2079, 'M', '9'), + (0x207A, '3', '+'), + (0x207B, 'M', '−'), + (0x207C, '3', '='), + (0x207D, '3', '('), + (0x207E, '3', ')'), + (0x207F, 'M', 'n'), + (0x2080, 'M', '0'), + (0x2081, 'M', '1'), + (0x2082, 'M', '2'), + (0x2083, 'M', '3'), + (0x2084, 'M', '4'), + (0x2085, 'M', '5'), + (0x2086, 'M', '6'), + (0x2087, 'M', '7'), + (0x2088, 'M', '8'), + (0x2089, 'M', '9'), + (0x208A, '3', '+'), + (0x208B, 'M', '−'), + (0x208C, '3', '='), + (0x208D, '3', '('), + (0x208E, '3', ')'), + (0x208F, 'X'), + (0x2090, 'M', 'a'), + (0x2091, 'M', 'e'), + (0x2092, 'M', 'o'), + (0x2093, 'M', 'x'), + (0x2094, 'M', 'ə'), + (0x2095, 'M', 'h'), + (0x2096, 'M', 'k'), + (0x2097, 'M', 'l'), + (0x2098, 'M', 'm'), + (0x2099, 'M', 'n'), + (0x209A, 'M', 'p'), + (0x209B, 'M', 's'), + (0x209C, 'M', 't'), + (0x209D, 'X'), + (0x20A0, 'V'), + (0x20A8, 'M', 'rs'), + (0x20A9, 'V'), + (0x20C1, 'X'), + (0x20D0, 'V'), + (0x20F1, 'X'), + (0x2100, '3', 'a/c'), + (0x2101, '3', 'a/s'), + (0x2102, 'M', 'c'), + (0x2103, 'M', '°c'), + (0x2104, 'V'), + ] + +def _seg_22() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2105, '3', 'c/o'), + (0x2106, '3', 'c/u'), + (0x2107, 'M', 'ɛ'), + (0x2108, 'V'), + (0x2109, 'M', '°f'), + (0x210A, 'M', 'g'), + (0x210B, 'M', 'h'), + (0x210F, 'M', 'ħ'), + (0x2110, 'M', 'i'), + (0x2112, 'M', 'l'), + (0x2114, 'V'), + (0x2115, 'M', 'n'), + (0x2116, 'M', 'no'), + (0x2117, 'V'), + (0x2119, 'M', 'p'), + (0x211A, 'M', 'q'), + (0x211B, 'M', 'r'), + (0x211E, 'V'), + (0x2120, 'M', 'sm'), + (0x2121, 'M', 'tel'), + (0x2122, 'M', 'tm'), + (0x2123, 'V'), + (0x2124, 'M', 'z'), + (0x2125, 'V'), + (0x2126, 'M', 'ω'), + (0x2127, 'V'), + (0x2128, 'M', 'z'), + (0x2129, 'V'), + (0x212A, 'M', 'k'), + (0x212B, 'M', 'å'), + (0x212C, 'M', 'b'), + (0x212D, 'M', 'c'), + (0x212E, 'V'), + (0x212F, 'M', 'e'), + (0x2131, 'M', 'f'), + (0x2132, 'X'), + (0x2133, 'M', 'm'), + (0x2134, 'M', 'o'), + (0x2135, 'M', 'א'), + (0x2136, 'M', 'ב'), + (0x2137, 'M', 'ג'), + (0x2138, 'M', 'ד'), + (0x2139, 'M', 'i'), + (0x213A, 'V'), + (0x213B, 'M', 'fax'), + (0x213C, 'M', 'π'), + (0x213D, 'M', 'γ'), + (0x213F, 'M', 'π'), + (0x2140, 'M', '∑'), + (0x2141, 'V'), + (0x2145, 'M', 'd'), + (0x2147, 'M', 'e'), + (0x2148, 'M', 'i'), + (0x2149, 'M', 'j'), + (0x214A, 'V'), + (0x2150, 'M', '1⁄7'), + (0x2151, 'M', '1⁄9'), + (0x2152, 'M', '1⁄10'), + (0x2153, 'M', '1⁄3'), + (0x2154, 'M', '2⁄3'), + (0x2155, 'M', '1⁄5'), + (0x2156, 'M', '2⁄5'), + (0x2157, 'M', '3⁄5'), + (0x2158, 'M', '4⁄5'), + (0x2159, 'M', '1⁄6'), + (0x215A, 'M', '5⁄6'), + (0x215B, 'M', '1⁄8'), + (0x215C, 'M', '3⁄8'), + (0x215D, 'M', '5⁄8'), + (0x215E, 'M', '7⁄8'), + (0x215F, 'M', '1⁄'), + (0x2160, 'M', 'i'), + (0x2161, 'M', 'ii'), + (0x2162, 'M', 'iii'), + (0x2163, 'M', 'iv'), + (0x2164, 'M', 'v'), + (0x2165, 'M', 'vi'), + (0x2166, 'M', 'vii'), + (0x2167, 'M', 'viii'), + (0x2168, 'M', 'ix'), + (0x2169, 'M', 'x'), + (0x216A, 'M', 'xi'), + (0x216B, 'M', 'xii'), + (0x216C, 'M', 'l'), + (0x216D, 'M', 'c'), + (0x216E, 'M', 'd'), + (0x216F, 'M', 'm'), + (0x2170, 'M', 'i'), + (0x2171, 'M', 'ii'), + (0x2172, 'M', 'iii'), + (0x2173, 'M', 'iv'), + (0x2174, 'M', 'v'), + (0x2175, 'M', 'vi'), + (0x2176, 'M', 'vii'), + (0x2177, 'M', 'viii'), + (0x2178, 'M', 'ix'), + (0x2179, 'M', 'x'), + (0x217A, 'M', 'xi'), + (0x217B, 'M', 'xii'), + (0x217C, 'M', 'l'), + ] + +def _seg_23() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x217D, 'M', 'c'), + (0x217E, 'M', 'd'), + (0x217F, 'M', 'm'), + (0x2180, 'V'), + (0x2183, 'X'), + (0x2184, 'V'), + (0x2189, 'M', '0⁄3'), + (0x218A, 'V'), + (0x218C, 'X'), + (0x2190, 'V'), + (0x222C, 'M', '∫∫'), + (0x222D, 'M', '∫∫∫'), + (0x222E, 'V'), + (0x222F, 'M', '∮∮'), + (0x2230, 'M', '∮∮∮'), + (0x2231, 'V'), + (0x2329, 'M', '〈'), + (0x232A, 'M', '〉'), + (0x232B, 'V'), + (0x2427, 'X'), + (0x2440, 'V'), + (0x244B, 'X'), + (0x2460, 'M', '1'), + (0x2461, 'M', '2'), + (0x2462, 'M', '3'), + (0x2463, 'M', '4'), + (0x2464, 'M', '5'), + (0x2465, 'M', '6'), + (0x2466, 'M', '7'), + (0x2467, 'M', '8'), + (0x2468, 'M', '9'), + (0x2469, 'M', '10'), + (0x246A, 'M', '11'), + (0x246B, 'M', '12'), + (0x246C, 'M', '13'), + (0x246D, 'M', '14'), + (0x246E, 'M', '15'), + (0x246F, 'M', '16'), + (0x2470, 'M', '17'), + (0x2471, 'M', '18'), + (0x2472, 'M', '19'), + (0x2473, 'M', '20'), + (0x2474, '3', '(1)'), + (0x2475, '3', '(2)'), + (0x2476, '3', '(3)'), + (0x2477, '3', '(4)'), + (0x2478, '3', '(5)'), + (0x2479, '3', '(6)'), + (0x247A, '3', '(7)'), + (0x247B, '3', '(8)'), + (0x247C, '3', '(9)'), + (0x247D, '3', '(10)'), + (0x247E, '3', '(11)'), + (0x247F, '3', '(12)'), + (0x2480, '3', '(13)'), + (0x2481, '3', '(14)'), + (0x2482, '3', '(15)'), + (0x2483, '3', '(16)'), + (0x2484, '3', '(17)'), + (0x2485, '3', '(18)'), + (0x2486, '3', '(19)'), + (0x2487, '3', '(20)'), + (0x2488, 'X'), + (0x249C, '3', '(a)'), + (0x249D, '3', '(b)'), + (0x249E, '3', '(c)'), + (0x249F, '3', '(d)'), + (0x24A0, '3', '(e)'), + (0x24A1, '3', '(f)'), + (0x24A2, '3', '(g)'), + (0x24A3, '3', '(h)'), + (0x24A4, '3', '(i)'), + (0x24A5, '3', '(j)'), + (0x24A6, '3', '(k)'), + (0x24A7, '3', '(l)'), + (0x24A8, '3', '(m)'), + (0x24A9, '3', '(n)'), + (0x24AA, '3', '(o)'), + (0x24AB, '3', '(p)'), + (0x24AC, '3', '(q)'), + (0x24AD, '3', '(r)'), + (0x24AE, '3', '(s)'), + (0x24AF, '3', '(t)'), + (0x24B0, '3', '(u)'), + (0x24B1, '3', '(v)'), + (0x24B2, '3', '(w)'), + (0x24B3, '3', '(x)'), + (0x24B4, '3', '(y)'), + (0x24B5, '3', '(z)'), + (0x24B6, 'M', 'a'), + (0x24B7, 'M', 'b'), + (0x24B8, 'M', 'c'), + (0x24B9, 'M', 'd'), + (0x24BA, 'M', 'e'), + (0x24BB, 'M', 'f'), + (0x24BC, 'M', 'g'), + (0x24BD, 'M', 'h'), + (0x24BE, 'M', 'i'), + (0x24BF, 'M', 'j'), + (0x24C0, 'M', 'k'), + ] + +def _seg_24() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x24C1, 'M', 'l'), + (0x24C2, 'M', 'm'), + (0x24C3, 'M', 'n'), + (0x24C4, 'M', 'o'), + (0x24C5, 'M', 'p'), + (0x24C6, 'M', 'q'), + (0x24C7, 'M', 'r'), + (0x24C8, 'M', 's'), + (0x24C9, 'M', 't'), + (0x24CA, 'M', 'u'), + (0x24CB, 'M', 'v'), + (0x24CC, 'M', 'w'), + (0x24CD, 'M', 'x'), + (0x24CE, 'M', 'y'), + (0x24CF, 'M', 'z'), + (0x24D0, 'M', 'a'), + (0x24D1, 'M', 'b'), + (0x24D2, 'M', 'c'), + (0x24D3, 'M', 'd'), + (0x24D4, 'M', 'e'), + (0x24D5, 'M', 'f'), + (0x24D6, 'M', 'g'), + (0x24D7, 'M', 'h'), + (0x24D8, 'M', 'i'), + (0x24D9, 'M', 'j'), + (0x24DA, 'M', 'k'), + (0x24DB, 'M', 'l'), + (0x24DC, 'M', 'm'), + (0x24DD, 'M', 'n'), + (0x24DE, 'M', 'o'), + (0x24DF, 'M', 'p'), + (0x24E0, 'M', 'q'), + (0x24E1, 'M', 'r'), + (0x24E2, 'M', 's'), + (0x24E3, 'M', 't'), + (0x24E4, 'M', 'u'), + (0x24E5, 'M', 'v'), + (0x24E6, 'M', 'w'), + (0x24E7, 'M', 'x'), + (0x24E8, 'M', 'y'), + (0x24E9, 'M', 'z'), + (0x24EA, 'M', '0'), + (0x24EB, 'V'), + (0x2A0C, 'M', '∫∫∫∫'), + (0x2A0D, 'V'), + (0x2A74, '3', '::='), + (0x2A75, '3', '=='), + (0x2A76, '3', '==='), + (0x2A77, 'V'), + (0x2ADC, 'M', '⫝̸'), + (0x2ADD, 'V'), + (0x2B74, 'X'), + (0x2B76, 'V'), + (0x2B96, 'X'), + (0x2B97, 'V'), + (0x2C00, 'M', 'ⰰ'), + (0x2C01, 'M', 'ⰱ'), + (0x2C02, 'M', 'ⰲ'), + (0x2C03, 'M', 'ⰳ'), + (0x2C04, 'M', 'ⰴ'), + (0x2C05, 'M', 'ⰵ'), + (0x2C06, 'M', 'ⰶ'), + (0x2C07, 'M', 'ⰷ'), + (0x2C08, 'M', 'ⰸ'), + (0x2C09, 'M', 'ⰹ'), + (0x2C0A, 'M', 'ⰺ'), + (0x2C0B, 'M', 'ⰻ'), + (0x2C0C, 'M', 'ⰼ'), + (0x2C0D, 'M', 'ⰽ'), + (0x2C0E, 'M', 'ⰾ'), + (0x2C0F, 'M', 'ⰿ'), + (0x2C10, 'M', 'ⱀ'), + (0x2C11, 'M', 'ⱁ'), + (0x2C12, 'M', 'ⱂ'), + (0x2C13, 'M', 'ⱃ'), + (0x2C14, 'M', 'ⱄ'), + (0x2C15, 'M', 'ⱅ'), + (0x2C16, 'M', 'ⱆ'), + (0x2C17, 'M', 'ⱇ'), + (0x2C18, 'M', 'ⱈ'), + (0x2C19, 'M', 'ⱉ'), + (0x2C1A, 'M', 'ⱊ'), + (0x2C1B, 'M', 'ⱋ'), + (0x2C1C, 'M', 'ⱌ'), + (0x2C1D, 'M', 'ⱍ'), + (0x2C1E, 'M', 'ⱎ'), + (0x2C1F, 'M', 'ⱏ'), + (0x2C20, 'M', 'ⱐ'), + (0x2C21, 'M', 'ⱑ'), + (0x2C22, 'M', 'ⱒ'), + (0x2C23, 'M', 'ⱓ'), + (0x2C24, 'M', 'ⱔ'), + (0x2C25, 'M', 'ⱕ'), + (0x2C26, 'M', 'ⱖ'), + (0x2C27, 'M', 'ⱗ'), + (0x2C28, 'M', 'ⱘ'), + (0x2C29, 'M', 'ⱙ'), + (0x2C2A, 'M', 'ⱚ'), + (0x2C2B, 'M', 'ⱛ'), + (0x2C2C, 'M', 'ⱜ'), + ] + +def _seg_25() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2C2D, 'M', 'ⱝ'), + (0x2C2E, 'M', 'ⱞ'), + (0x2C2F, 'M', 'ⱟ'), + (0x2C30, 'V'), + (0x2C60, 'M', 'ⱡ'), + (0x2C61, 'V'), + (0x2C62, 'M', 'ɫ'), + (0x2C63, 'M', 'ᵽ'), + (0x2C64, 'M', 'ɽ'), + (0x2C65, 'V'), + (0x2C67, 'M', 'ⱨ'), + (0x2C68, 'V'), + (0x2C69, 'M', 'ⱪ'), + (0x2C6A, 'V'), + (0x2C6B, 'M', 'ⱬ'), + (0x2C6C, 'V'), + (0x2C6D, 'M', 'ɑ'), + (0x2C6E, 'M', 'ɱ'), + (0x2C6F, 'M', 'ɐ'), + (0x2C70, 'M', 'ɒ'), + (0x2C71, 'V'), + (0x2C72, 'M', 'ⱳ'), + (0x2C73, 'V'), + (0x2C75, 'M', 'ⱶ'), + (0x2C76, 'V'), + (0x2C7C, 'M', 'j'), + (0x2C7D, 'M', 'v'), + (0x2C7E, 'M', 'ȿ'), + (0x2C7F, 'M', 'ɀ'), + (0x2C80, 'M', 'ⲁ'), + (0x2C81, 'V'), + (0x2C82, 'M', 'ⲃ'), + (0x2C83, 'V'), + (0x2C84, 'M', 'ⲅ'), + (0x2C85, 'V'), + (0x2C86, 'M', 'ⲇ'), + (0x2C87, 'V'), + (0x2C88, 'M', 'ⲉ'), + (0x2C89, 'V'), + (0x2C8A, 'M', 'ⲋ'), + (0x2C8B, 'V'), + (0x2C8C, 'M', 'ⲍ'), + (0x2C8D, 'V'), + (0x2C8E, 'M', 'ⲏ'), + (0x2C8F, 'V'), + (0x2C90, 'M', 'ⲑ'), + (0x2C91, 'V'), + (0x2C92, 'M', 'ⲓ'), + (0x2C93, 'V'), + (0x2C94, 'M', 'ⲕ'), + (0x2C95, 'V'), + (0x2C96, 'M', 'ⲗ'), + (0x2C97, 'V'), + (0x2C98, 'M', 'ⲙ'), + (0x2C99, 'V'), + (0x2C9A, 'M', 'ⲛ'), + (0x2C9B, 'V'), + (0x2C9C, 'M', 'ⲝ'), + (0x2C9D, 'V'), + (0x2C9E, 'M', 'ⲟ'), + (0x2C9F, 'V'), + (0x2CA0, 'M', 'ⲡ'), + (0x2CA1, 'V'), + (0x2CA2, 'M', 'ⲣ'), + (0x2CA3, 'V'), + (0x2CA4, 'M', 'ⲥ'), + (0x2CA5, 'V'), + (0x2CA6, 'M', 'ⲧ'), + (0x2CA7, 'V'), + (0x2CA8, 'M', 'ⲩ'), + (0x2CA9, 'V'), + (0x2CAA, 'M', 'ⲫ'), + (0x2CAB, 'V'), + (0x2CAC, 'M', 'ⲭ'), + (0x2CAD, 'V'), + (0x2CAE, 'M', 'ⲯ'), + (0x2CAF, 'V'), + (0x2CB0, 'M', 'ⲱ'), + (0x2CB1, 'V'), + (0x2CB2, 'M', 'ⲳ'), + (0x2CB3, 'V'), + (0x2CB4, 'M', 'ⲵ'), + (0x2CB5, 'V'), + (0x2CB6, 'M', 'ⲷ'), + (0x2CB7, 'V'), + (0x2CB8, 'M', 'ⲹ'), + (0x2CB9, 'V'), + (0x2CBA, 'M', 'ⲻ'), + (0x2CBB, 'V'), + (0x2CBC, 'M', 'ⲽ'), + (0x2CBD, 'V'), + (0x2CBE, 'M', 'ⲿ'), + (0x2CBF, 'V'), + (0x2CC0, 'M', 'ⳁ'), + (0x2CC1, 'V'), + (0x2CC2, 'M', 'ⳃ'), + (0x2CC3, 'V'), + (0x2CC4, 'M', 'ⳅ'), + (0x2CC5, 'V'), + (0x2CC6, 'M', 'ⳇ'), + ] + +def _seg_26() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2CC7, 'V'), + (0x2CC8, 'M', 'ⳉ'), + (0x2CC9, 'V'), + (0x2CCA, 'M', 'ⳋ'), + (0x2CCB, 'V'), + (0x2CCC, 'M', 'ⳍ'), + (0x2CCD, 'V'), + (0x2CCE, 'M', 'ⳏ'), + (0x2CCF, 'V'), + (0x2CD0, 'M', 'ⳑ'), + (0x2CD1, 'V'), + (0x2CD2, 'M', 'ⳓ'), + (0x2CD3, 'V'), + (0x2CD4, 'M', 'ⳕ'), + (0x2CD5, 'V'), + (0x2CD6, 'M', 'ⳗ'), + (0x2CD7, 'V'), + (0x2CD8, 'M', 'ⳙ'), + (0x2CD9, 'V'), + (0x2CDA, 'M', 'ⳛ'), + (0x2CDB, 'V'), + (0x2CDC, 'M', 'ⳝ'), + (0x2CDD, 'V'), + (0x2CDE, 'M', 'ⳟ'), + (0x2CDF, 'V'), + (0x2CE0, 'M', 'ⳡ'), + (0x2CE1, 'V'), + (0x2CE2, 'M', 'ⳣ'), + (0x2CE3, 'V'), + (0x2CEB, 'M', 'ⳬ'), + (0x2CEC, 'V'), + (0x2CED, 'M', 'ⳮ'), + (0x2CEE, 'V'), + (0x2CF2, 'M', 'ⳳ'), + (0x2CF3, 'V'), + (0x2CF4, 'X'), + (0x2CF9, 'V'), + (0x2D26, 'X'), + (0x2D27, 'V'), + (0x2D28, 'X'), + (0x2D2D, 'V'), + (0x2D2E, 'X'), + (0x2D30, 'V'), + (0x2D68, 'X'), + (0x2D6F, 'M', 'ⵡ'), + (0x2D70, 'V'), + (0x2D71, 'X'), + (0x2D7F, 'V'), + (0x2D97, 'X'), + (0x2DA0, 'V'), + (0x2DA7, 'X'), + (0x2DA8, 'V'), + (0x2DAF, 'X'), + (0x2DB0, 'V'), + (0x2DB7, 'X'), + (0x2DB8, 'V'), + (0x2DBF, 'X'), + (0x2DC0, 'V'), + (0x2DC7, 'X'), + (0x2DC8, 'V'), + (0x2DCF, 'X'), + (0x2DD0, 'V'), + (0x2DD7, 'X'), + (0x2DD8, 'V'), + (0x2DDF, 'X'), + (0x2DE0, 'V'), + (0x2E5E, 'X'), + (0x2E80, 'V'), + (0x2E9A, 'X'), + (0x2E9B, 'V'), + (0x2E9F, 'M', '母'), + (0x2EA0, 'V'), + (0x2EF3, 'M', '龟'), + (0x2EF4, 'X'), + (0x2F00, 'M', '一'), + (0x2F01, 'M', '丨'), + (0x2F02, 'M', '丶'), + (0x2F03, 'M', '丿'), + (0x2F04, 'M', '乙'), + (0x2F05, 'M', '亅'), + (0x2F06, 'M', '二'), + (0x2F07, 'M', '亠'), + (0x2F08, 'M', '人'), + (0x2F09, 'M', '儿'), + (0x2F0A, 'M', '入'), + (0x2F0B, 'M', '八'), + (0x2F0C, 'M', '冂'), + (0x2F0D, 'M', '冖'), + (0x2F0E, 'M', '冫'), + (0x2F0F, 'M', '几'), + (0x2F10, 'M', '凵'), + (0x2F11, 'M', '刀'), + (0x2F12, 'M', '力'), + (0x2F13, 'M', '勹'), + (0x2F14, 'M', '匕'), + (0x2F15, 'M', '匚'), + (0x2F16, 'M', '匸'), + (0x2F17, 'M', '十'), + (0x2F18, 'M', '卜'), + (0x2F19, 'M', '卩'), + ] + +def _seg_27() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F1A, 'M', '厂'), + (0x2F1B, 'M', '厶'), + (0x2F1C, 'M', '又'), + (0x2F1D, 'M', '口'), + (0x2F1E, 'M', '囗'), + (0x2F1F, 'M', '土'), + (0x2F20, 'M', '士'), + (0x2F21, 'M', '夂'), + (0x2F22, 'M', '夊'), + (0x2F23, 'M', '夕'), + (0x2F24, 'M', '大'), + (0x2F25, 'M', '女'), + (0x2F26, 'M', '子'), + (0x2F27, 'M', '宀'), + (0x2F28, 'M', '寸'), + (0x2F29, 'M', '小'), + (0x2F2A, 'M', '尢'), + (0x2F2B, 'M', '尸'), + (0x2F2C, 'M', '屮'), + (0x2F2D, 'M', '山'), + (0x2F2E, 'M', '巛'), + (0x2F2F, 'M', '工'), + (0x2F30, 'M', '己'), + (0x2F31, 'M', '巾'), + (0x2F32, 'M', '干'), + (0x2F33, 'M', '幺'), + (0x2F34, 'M', '广'), + (0x2F35, 'M', '廴'), + (0x2F36, 'M', '廾'), + (0x2F37, 'M', '弋'), + (0x2F38, 'M', '弓'), + (0x2F39, 'M', '彐'), + (0x2F3A, 'M', '彡'), + (0x2F3B, 'M', '彳'), + (0x2F3C, 'M', '心'), + (0x2F3D, 'M', '戈'), + (0x2F3E, 'M', '戶'), + (0x2F3F, 'M', '手'), + (0x2F40, 'M', '支'), + (0x2F41, 'M', '攴'), + (0x2F42, 'M', '文'), + (0x2F43, 'M', '斗'), + (0x2F44, 'M', '斤'), + (0x2F45, 'M', '方'), + (0x2F46, 'M', '无'), + (0x2F47, 'M', '日'), + (0x2F48, 'M', '曰'), + (0x2F49, 'M', '月'), + (0x2F4A, 'M', '木'), + (0x2F4B, 'M', '欠'), + (0x2F4C, 'M', '止'), + (0x2F4D, 'M', '歹'), + (0x2F4E, 'M', '殳'), + (0x2F4F, 'M', '毋'), + (0x2F50, 'M', '比'), + (0x2F51, 'M', '毛'), + (0x2F52, 'M', '氏'), + (0x2F53, 'M', '气'), + (0x2F54, 'M', '水'), + (0x2F55, 'M', '火'), + (0x2F56, 'M', '爪'), + (0x2F57, 'M', '父'), + (0x2F58, 'M', '爻'), + (0x2F59, 'M', '爿'), + (0x2F5A, 'M', '片'), + (0x2F5B, 'M', '牙'), + (0x2F5C, 'M', '牛'), + (0x2F5D, 'M', '犬'), + (0x2F5E, 'M', '玄'), + (0x2F5F, 'M', '玉'), + (0x2F60, 'M', '瓜'), + (0x2F61, 'M', '瓦'), + (0x2F62, 'M', '甘'), + (0x2F63, 'M', '生'), + (0x2F64, 'M', '用'), + (0x2F65, 'M', '田'), + (0x2F66, 'M', '疋'), + (0x2F67, 'M', '疒'), + (0x2F68, 'M', '癶'), + (0x2F69, 'M', '白'), + (0x2F6A, 'M', '皮'), + (0x2F6B, 'M', '皿'), + (0x2F6C, 'M', '目'), + (0x2F6D, 'M', '矛'), + (0x2F6E, 'M', '矢'), + (0x2F6F, 'M', '石'), + (0x2F70, 'M', '示'), + (0x2F71, 'M', '禸'), + (0x2F72, 'M', '禾'), + (0x2F73, 'M', '穴'), + (0x2F74, 'M', '立'), + (0x2F75, 'M', '竹'), + (0x2F76, 'M', '米'), + (0x2F77, 'M', '糸'), + (0x2F78, 'M', '缶'), + (0x2F79, 'M', '网'), + (0x2F7A, 'M', '羊'), + (0x2F7B, 'M', '羽'), + (0x2F7C, 'M', '老'), + (0x2F7D, 'M', '而'), + ] + +def _seg_28() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F7E, 'M', '耒'), + (0x2F7F, 'M', '耳'), + (0x2F80, 'M', '聿'), + (0x2F81, 'M', '肉'), + (0x2F82, 'M', '臣'), + (0x2F83, 'M', '自'), + (0x2F84, 'M', '至'), + (0x2F85, 'M', '臼'), + (0x2F86, 'M', '舌'), + (0x2F87, 'M', '舛'), + (0x2F88, 'M', '舟'), + (0x2F89, 'M', '艮'), + (0x2F8A, 'M', '色'), + (0x2F8B, 'M', '艸'), + (0x2F8C, 'M', '虍'), + (0x2F8D, 'M', '虫'), + (0x2F8E, 'M', '血'), + (0x2F8F, 'M', '行'), + (0x2F90, 'M', '衣'), + (0x2F91, 'M', '襾'), + (0x2F92, 'M', '見'), + (0x2F93, 'M', '角'), + (0x2F94, 'M', '言'), + (0x2F95, 'M', '谷'), + (0x2F96, 'M', '豆'), + (0x2F97, 'M', '豕'), + (0x2F98, 'M', '豸'), + (0x2F99, 'M', '貝'), + (0x2F9A, 'M', '赤'), + (0x2F9B, 'M', '走'), + (0x2F9C, 'M', '足'), + (0x2F9D, 'M', '身'), + (0x2F9E, 'M', '車'), + (0x2F9F, 'M', '辛'), + (0x2FA0, 'M', '辰'), + (0x2FA1, 'M', '辵'), + (0x2FA2, 'M', '邑'), + (0x2FA3, 'M', '酉'), + (0x2FA4, 'M', '釆'), + (0x2FA5, 'M', '里'), + (0x2FA6, 'M', '金'), + (0x2FA7, 'M', '長'), + (0x2FA8, 'M', '門'), + (0x2FA9, 'M', '阜'), + (0x2FAA, 'M', '隶'), + (0x2FAB, 'M', '隹'), + (0x2FAC, 'M', '雨'), + (0x2FAD, 'M', '靑'), + (0x2FAE, 'M', '非'), + (0x2FAF, 'M', '面'), + (0x2FB0, 'M', '革'), + (0x2FB1, 'M', '韋'), + (0x2FB2, 'M', '韭'), + (0x2FB3, 'M', '音'), + (0x2FB4, 'M', '頁'), + (0x2FB5, 'M', '風'), + (0x2FB6, 'M', '飛'), + (0x2FB7, 'M', '食'), + (0x2FB8, 'M', '首'), + (0x2FB9, 'M', '香'), + (0x2FBA, 'M', '馬'), + (0x2FBB, 'M', '骨'), + (0x2FBC, 'M', '高'), + (0x2FBD, 'M', '髟'), + (0x2FBE, 'M', '鬥'), + (0x2FBF, 'M', '鬯'), + (0x2FC0, 'M', '鬲'), + (0x2FC1, 'M', '鬼'), + (0x2FC2, 'M', '魚'), + (0x2FC3, 'M', '鳥'), + (0x2FC4, 'M', '鹵'), + (0x2FC5, 'M', '鹿'), + (0x2FC6, 'M', '麥'), + (0x2FC7, 'M', '麻'), + (0x2FC8, 'M', '黃'), + (0x2FC9, 'M', '黍'), + (0x2FCA, 'M', '黑'), + (0x2FCB, 'M', '黹'), + (0x2FCC, 'M', '黽'), + (0x2FCD, 'M', '鼎'), + (0x2FCE, 'M', '鼓'), + (0x2FCF, 'M', '鼠'), + (0x2FD0, 'M', '鼻'), + (0x2FD1, 'M', '齊'), + (0x2FD2, 'M', '齒'), + (0x2FD3, 'M', '龍'), + (0x2FD4, 'M', '龜'), + (0x2FD5, 'M', '龠'), + (0x2FD6, 'X'), + (0x3000, '3', ' '), + (0x3001, 'V'), + (0x3002, 'M', '.'), + (0x3003, 'V'), + (0x3036, 'M', '〒'), + (0x3037, 'V'), + (0x3038, 'M', '十'), + (0x3039, 'M', '卄'), + (0x303A, 'M', '卅'), + (0x303B, 'V'), + (0x3040, 'X'), + ] + +def _seg_29() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3041, 'V'), + (0x3097, 'X'), + (0x3099, 'V'), + (0x309B, '3', ' ゙'), + (0x309C, '3', ' ゚'), + (0x309D, 'V'), + (0x309F, 'M', 'より'), + (0x30A0, 'V'), + (0x30FF, 'M', 'コト'), + (0x3100, 'X'), + (0x3105, 'V'), + (0x3130, 'X'), + (0x3131, 'M', 'ᄀ'), + (0x3132, 'M', 'ᄁ'), + (0x3133, 'M', 'ᆪ'), + (0x3134, 'M', 'ᄂ'), + (0x3135, 'M', 'ᆬ'), + (0x3136, 'M', 'ᆭ'), + (0x3137, 'M', 'ᄃ'), + (0x3138, 'M', 'ᄄ'), + (0x3139, 'M', 'ᄅ'), + (0x313A, 'M', 'ᆰ'), + (0x313B, 'M', 'ᆱ'), + (0x313C, 'M', 'ᆲ'), + (0x313D, 'M', 'ᆳ'), + (0x313E, 'M', 'ᆴ'), + (0x313F, 'M', 'ᆵ'), + (0x3140, 'M', 'ᄚ'), + (0x3141, 'M', 'ᄆ'), + (0x3142, 'M', 'ᄇ'), + (0x3143, 'M', 'ᄈ'), + (0x3144, 'M', 'ᄡ'), + (0x3145, 'M', 'ᄉ'), + (0x3146, 'M', 'ᄊ'), + (0x3147, 'M', 'ᄋ'), + (0x3148, 'M', 'ᄌ'), + (0x3149, 'M', 'ᄍ'), + (0x314A, 'M', 'ᄎ'), + (0x314B, 'M', 'ᄏ'), + (0x314C, 'M', 'ᄐ'), + (0x314D, 'M', 'ᄑ'), + (0x314E, 'M', 'ᄒ'), + (0x314F, 'M', 'ᅡ'), + (0x3150, 'M', 'ᅢ'), + (0x3151, 'M', 'ᅣ'), + (0x3152, 'M', 'ᅤ'), + (0x3153, 'M', 'ᅥ'), + (0x3154, 'M', 'ᅦ'), + (0x3155, 'M', 'ᅧ'), + (0x3156, 'M', 'ᅨ'), + (0x3157, 'M', 'ᅩ'), + (0x3158, 'M', 'ᅪ'), + (0x3159, 'M', 'ᅫ'), + (0x315A, 'M', 'ᅬ'), + (0x315B, 'M', 'ᅭ'), + (0x315C, 'M', 'ᅮ'), + (0x315D, 'M', 'ᅯ'), + (0x315E, 'M', 'ᅰ'), + (0x315F, 'M', 'ᅱ'), + (0x3160, 'M', 'ᅲ'), + (0x3161, 'M', 'ᅳ'), + (0x3162, 'M', 'ᅴ'), + (0x3163, 'M', 'ᅵ'), + (0x3164, 'X'), + (0x3165, 'M', 'ᄔ'), + (0x3166, 'M', 'ᄕ'), + (0x3167, 'M', 'ᇇ'), + (0x3168, 'M', 'ᇈ'), + (0x3169, 'M', 'ᇌ'), + (0x316A, 'M', 'ᇎ'), + (0x316B, 'M', 'ᇓ'), + (0x316C, 'M', 'ᇗ'), + (0x316D, 'M', 'ᇙ'), + (0x316E, 'M', 'ᄜ'), + (0x316F, 'M', 'ᇝ'), + (0x3170, 'M', 'ᇟ'), + (0x3171, 'M', 'ᄝ'), + (0x3172, 'M', 'ᄞ'), + (0x3173, 'M', 'ᄠ'), + (0x3174, 'M', 'ᄢ'), + (0x3175, 'M', 'ᄣ'), + (0x3176, 'M', 'ᄧ'), + (0x3177, 'M', 'ᄩ'), + (0x3178, 'M', 'ᄫ'), + (0x3179, 'M', 'ᄬ'), + (0x317A, 'M', 'ᄭ'), + (0x317B, 'M', 'ᄮ'), + (0x317C, 'M', 'ᄯ'), + (0x317D, 'M', 'ᄲ'), + (0x317E, 'M', 'ᄶ'), + (0x317F, 'M', 'ᅀ'), + (0x3180, 'M', 'ᅇ'), + (0x3181, 'M', 'ᅌ'), + (0x3182, 'M', 'ᇱ'), + (0x3183, 'M', 'ᇲ'), + (0x3184, 'M', 'ᅗ'), + (0x3185, 'M', 'ᅘ'), + (0x3186, 'M', 'ᅙ'), + (0x3187, 'M', 'ᆄ'), + (0x3188, 'M', 'ᆅ'), + ] + +def _seg_30() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3189, 'M', 'ᆈ'), + (0x318A, 'M', 'ᆑ'), + (0x318B, 'M', 'ᆒ'), + (0x318C, 'M', 'ᆔ'), + (0x318D, 'M', 'ᆞ'), + (0x318E, 'M', 'ᆡ'), + (0x318F, 'X'), + (0x3190, 'V'), + (0x3192, 'M', '一'), + (0x3193, 'M', '二'), + (0x3194, 'M', '三'), + (0x3195, 'M', '四'), + (0x3196, 'M', '上'), + (0x3197, 'M', '中'), + (0x3198, 'M', '下'), + (0x3199, 'M', '甲'), + (0x319A, 'M', '乙'), + (0x319B, 'M', '丙'), + (0x319C, 'M', '丁'), + (0x319D, 'M', '天'), + (0x319E, 'M', '地'), + (0x319F, 'M', '人'), + (0x31A0, 'V'), + (0x31E4, 'X'), + (0x31F0, 'V'), + (0x3200, '3', '(ᄀ)'), + (0x3201, '3', '(ᄂ)'), + (0x3202, '3', '(ᄃ)'), + (0x3203, '3', '(ᄅ)'), + (0x3204, '3', '(ᄆ)'), + (0x3205, '3', '(ᄇ)'), + (0x3206, '3', '(ᄉ)'), + (0x3207, '3', '(ᄋ)'), + (0x3208, '3', '(ᄌ)'), + (0x3209, '3', '(ᄎ)'), + (0x320A, '3', '(ᄏ)'), + (0x320B, '3', '(ᄐ)'), + (0x320C, '3', '(ᄑ)'), + (0x320D, '3', '(ᄒ)'), + (0x320E, '3', '(가)'), + (0x320F, '3', '(나)'), + (0x3210, '3', '(다)'), + (0x3211, '3', '(라)'), + (0x3212, '3', '(마)'), + (0x3213, '3', '(바)'), + (0x3214, '3', '(사)'), + (0x3215, '3', '(아)'), + (0x3216, '3', '(자)'), + (0x3217, '3', '(차)'), + (0x3218, '3', '(카)'), + (0x3219, '3', '(타)'), + (0x321A, '3', '(파)'), + (0x321B, '3', '(하)'), + (0x321C, '3', '(주)'), + (0x321D, '3', '(오전)'), + (0x321E, '3', '(오후)'), + (0x321F, 'X'), + (0x3220, '3', '(一)'), + (0x3221, '3', '(二)'), + (0x3222, '3', '(三)'), + (0x3223, '3', '(四)'), + (0x3224, '3', '(五)'), + (0x3225, '3', '(六)'), + (0x3226, '3', '(七)'), + (0x3227, '3', '(八)'), + (0x3228, '3', '(九)'), + (0x3229, '3', '(十)'), + (0x322A, '3', '(月)'), + (0x322B, '3', '(火)'), + (0x322C, '3', '(水)'), + (0x322D, '3', '(木)'), + (0x322E, '3', '(金)'), + (0x322F, '3', '(土)'), + (0x3230, '3', '(日)'), + (0x3231, '3', '(株)'), + (0x3232, '3', '(有)'), + (0x3233, '3', '(社)'), + (0x3234, '3', '(名)'), + (0x3235, '3', '(特)'), + (0x3236, '3', '(財)'), + (0x3237, '3', '(祝)'), + (0x3238, '3', '(労)'), + (0x3239, '3', '(代)'), + (0x323A, '3', '(呼)'), + (0x323B, '3', '(学)'), + (0x323C, '3', '(監)'), + (0x323D, '3', '(企)'), + (0x323E, '3', '(資)'), + (0x323F, '3', '(協)'), + (0x3240, '3', '(祭)'), + (0x3241, '3', '(休)'), + (0x3242, '3', '(自)'), + (0x3243, '3', '(至)'), + (0x3244, 'M', '問'), + (0x3245, 'M', '幼'), + (0x3246, 'M', '文'), + (0x3247, 'M', '箏'), + (0x3248, 'V'), + (0x3250, 'M', 'pte'), + (0x3251, 'M', '21'), + ] + +def _seg_31() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x3252, 'M', '22'), + (0x3253, 'M', '23'), + (0x3254, 'M', '24'), + (0x3255, 'M', '25'), + (0x3256, 'M', '26'), + (0x3257, 'M', '27'), + (0x3258, 'M', '28'), + (0x3259, 'M', '29'), + (0x325A, 'M', '30'), + (0x325B, 'M', '31'), + (0x325C, 'M', '32'), + (0x325D, 'M', '33'), + (0x325E, 'M', '34'), + (0x325F, 'M', '35'), + (0x3260, 'M', 'ᄀ'), + (0x3261, 'M', 'ᄂ'), + (0x3262, 'M', 'ᄃ'), + (0x3263, 'M', 'ᄅ'), + (0x3264, 'M', 'ᄆ'), + (0x3265, 'M', 'ᄇ'), + (0x3266, 'M', 'ᄉ'), + (0x3267, 'M', 'ᄋ'), + (0x3268, 'M', 'ᄌ'), + (0x3269, 'M', 'ᄎ'), + (0x326A, 'M', 'ᄏ'), + (0x326B, 'M', 'ᄐ'), + (0x326C, 'M', 'ᄑ'), + (0x326D, 'M', 'ᄒ'), + (0x326E, 'M', '가'), + (0x326F, 'M', '나'), + (0x3270, 'M', '다'), + (0x3271, 'M', '라'), + (0x3272, 'M', '마'), + (0x3273, 'M', '바'), + (0x3274, 'M', '사'), + (0x3275, 'M', '아'), + (0x3276, 'M', '자'), + (0x3277, 'M', '차'), + (0x3278, 'M', '카'), + (0x3279, 'M', '타'), + (0x327A, 'M', '파'), + (0x327B, 'M', '하'), + (0x327C, 'M', '참고'), + (0x327D, 'M', '주의'), + (0x327E, 'M', '우'), + (0x327F, 'V'), + (0x3280, 'M', '一'), + (0x3281, 'M', '二'), + (0x3282, 'M', '三'), + (0x3283, 'M', '四'), + (0x3284, 'M', '五'), + (0x3285, 'M', '六'), + (0x3286, 'M', '七'), + (0x3287, 'M', '八'), + (0x3288, 'M', '九'), + (0x3289, 'M', '十'), + (0x328A, 'M', '月'), + (0x328B, 'M', '火'), + (0x328C, 'M', '水'), + (0x328D, 'M', '木'), + (0x328E, 'M', '金'), + (0x328F, 'M', '土'), + (0x3290, 'M', '日'), + (0x3291, 'M', '株'), + (0x3292, 'M', '有'), + (0x3293, 'M', '社'), + (0x3294, 'M', '名'), + (0x3295, 'M', '特'), + (0x3296, 'M', '財'), + (0x3297, 'M', '祝'), + (0x3298, 'M', '労'), + (0x3299, 'M', '秘'), + (0x329A, 'M', '男'), + (0x329B, 'M', '女'), + (0x329C, 'M', '適'), + (0x329D, 'M', '優'), + (0x329E, 'M', '印'), + (0x329F, 'M', '注'), + (0x32A0, 'M', '項'), + (0x32A1, 'M', '休'), + (0x32A2, 'M', '写'), + (0x32A3, 'M', '正'), + (0x32A4, 'M', '上'), + (0x32A5, 'M', '中'), + (0x32A6, 'M', '下'), + (0x32A7, 'M', '左'), + (0x32A8, 'M', '右'), + (0x32A9, 'M', '医'), + (0x32AA, 'M', '宗'), + (0x32AB, 'M', '学'), + (0x32AC, 'M', '監'), + (0x32AD, 'M', '企'), + (0x32AE, 'M', '資'), + (0x32AF, 'M', '協'), + (0x32B0, 'M', '夜'), + (0x32B1, 'M', '36'), + (0x32B2, 'M', '37'), + (0x32B3, 'M', '38'), + (0x32B4, 'M', '39'), + (0x32B5, 'M', '40'), + ] + +def _seg_32() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x32B6, 'M', '41'), + (0x32B7, 'M', '42'), + (0x32B8, 'M', '43'), + (0x32B9, 'M', '44'), + (0x32BA, 'M', '45'), + (0x32BB, 'M', '46'), + (0x32BC, 'M', '47'), + (0x32BD, 'M', '48'), + (0x32BE, 'M', '49'), + (0x32BF, 'M', '50'), + (0x32C0, 'M', '1月'), + (0x32C1, 'M', '2月'), + (0x32C2, 'M', '3月'), + (0x32C3, 'M', '4月'), + (0x32C4, 'M', '5月'), + (0x32C5, 'M', '6月'), + (0x32C6, 'M', '7月'), + (0x32C7, 'M', '8月'), + (0x32C8, 'M', '9月'), + (0x32C9, 'M', '10月'), + (0x32CA, 'M', '11月'), + (0x32CB, 'M', '12月'), + (0x32CC, 'M', 'hg'), + (0x32CD, 'M', 'erg'), + (0x32CE, 'M', 'ev'), + (0x32CF, 'M', 'ltd'), + (0x32D0, 'M', 'ア'), + (0x32D1, 'M', 'イ'), + (0x32D2, 'M', 'ウ'), + (0x32D3, 'M', 'エ'), + (0x32D4, 'M', 'オ'), + (0x32D5, 'M', 'カ'), + (0x32D6, 'M', 'キ'), + (0x32D7, 'M', 'ク'), + (0x32D8, 'M', 'ケ'), + (0x32D9, 'M', 'コ'), + (0x32DA, 'M', 'サ'), + (0x32DB, 'M', 'シ'), + (0x32DC, 'M', 'ス'), + (0x32DD, 'M', 'セ'), + (0x32DE, 'M', 'ソ'), + (0x32DF, 'M', 'タ'), + (0x32E0, 'M', 'チ'), + (0x32E1, 'M', 'ツ'), + (0x32E2, 'M', 'テ'), + (0x32E3, 'M', 'ト'), + (0x32E4, 'M', 'ナ'), + (0x32E5, 'M', 'ニ'), + (0x32E6, 'M', 'ヌ'), + (0x32E7, 'M', 'ネ'), + (0x32E8, 'M', 'ノ'), + (0x32E9, 'M', 'ハ'), + (0x32EA, 'M', 'ヒ'), + (0x32EB, 'M', 'フ'), + (0x32EC, 'M', 'ヘ'), + (0x32ED, 'M', 'ホ'), + (0x32EE, 'M', 'マ'), + (0x32EF, 'M', 'ミ'), + (0x32F0, 'M', 'ム'), + (0x32F1, 'M', 'メ'), + (0x32F2, 'M', 'モ'), + (0x32F3, 'M', 'ヤ'), + (0x32F4, 'M', 'ユ'), + (0x32F5, 'M', 'ヨ'), + (0x32F6, 'M', 'ラ'), + (0x32F7, 'M', 'リ'), + (0x32F8, 'M', 'ル'), + (0x32F9, 'M', 'レ'), + (0x32FA, 'M', 'ロ'), + (0x32FB, 'M', 'ワ'), + (0x32FC, 'M', 'ヰ'), + (0x32FD, 'M', 'ヱ'), + (0x32FE, 'M', 'ヲ'), + (0x32FF, 'M', '令和'), + (0x3300, 'M', 'アパート'), + (0x3301, 'M', 'アルファ'), + (0x3302, 'M', 'アンペア'), + (0x3303, 'M', 'アール'), + (0x3304, 'M', 'イニング'), + (0x3305, 'M', 'インチ'), + (0x3306, 'M', 'ウォン'), + (0x3307, 'M', 'エスクード'), + (0x3308, 'M', 'エーカー'), + (0x3309, 'M', 'オンス'), + (0x330A, 'M', 'オーム'), + (0x330B, 'M', 'カイリ'), + (0x330C, 'M', 'カラット'), + (0x330D, 'M', 'カロリー'), + (0x330E, 'M', 'ガロン'), + (0x330F, 'M', 'ガンマ'), + (0x3310, 'M', 'ギガ'), + (0x3311, 'M', 'ギニー'), + (0x3312, 'M', 'キュリー'), + (0x3313, 'M', 'ギルダー'), + (0x3314, 'M', 'キロ'), + (0x3315, 'M', 'キログラム'), + (0x3316, 'M', 'キロメートル'), + (0x3317, 'M', 'キロワット'), + (0x3318, 'M', 'グラム'), + (0x3319, 'M', 'グラムトン'), + ] + +def _seg_33() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x331A, 'M', 'クルゼイロ'), + (0x331B, 'M', 'クローネ'), + (0x331C, 'M', 'ケース'), + (0x331D, 'M', 'コルナ'), + (0x331E, 'M', 'コーポ'), + (0x331F, 'M', 'サイクル'), + (0x3320, 'M', 'サンチーム'), + (0x3321, 'M', 'シリング'), + (0x3322, 'M', 'センチ'), + (0x3323, 'M', 'セント'), + (0x3324, 'M', 'ダース'), + (0x3325, 'M', 'デシ'), + (0x3326, 'M', 'ドル'), + (0x3327, 'M', 'トン'), + (0x3328, 'M', 'ナノ'), + (0x3329, 'M', 'ノット'), + (0x332A, 'M', 'ハイツ'), + (0x332B, 'M', 'パーセント'), + (0x332C, 'M', 'パーツ'), + (0x332D, 'M', 'バーレル'), + (0x332E, 'M', 'ピアストル'), + (0x332F, 'M', 'ピクル'), + (0x3330, 'M', 'ピコ'), + (0x3331, 'M', 'ビル'), + (0x3332, 'M', 'ファラッド'), + (0x3333, 'M', 'フィート'), + (0x3334, 'M', 'ブッシェル'), + (0x3335, 'M', 'フラン'), + (0x3336, 'M', 'ヘクタール'), + (0x3337, 'M', 'ペソ'), + (0x3338, 'M', 'ペニヒ'), + (0x3339, 'M', 'ヘルツ'), + (0x333A, 'M', 'ペンス'), + (0x333B, 'M', 'ページ'), + (0x333C, 'M', 'ベータ'), + (0x333D, 'M', 'ポイント'), + (0x333E, 'M', 'ボルト'), + (0x333F, 'M', 'ホン'), + (0x3340, 'M', 'ポンド'), + (0x3341, 'M', 'ホール'), + (0x3342, 'M', 'ホーン'), + (0x3343, 'M', 'マイクロ'), + (0x3344, 'M', 'マイル'), + (0x3345, 'M', 'マッハ'), + (0x3346, 'M', 'マルク'), + (0x3347, 'M', 'マンション'), + (0x3348, 'M', 'ミクロン'), + (0x3349, 'M', 'ミリ'), + (0x334A, 'M', 'ミリバール'), + (0x334B, 'M', 'メガ'), + (0x334C, 'M', 'メガトン'), + (0x334D, 'M', 'メートル'), + (0x334E, 'M', 'ヤード'), + (0x334F, 'M', 'ヤール'), + (0x3350, 'M', 'ユアン'), + (0x3351, 'M', 'リットル'), + (0x3352, 'M', 'リラ'), + (0x3353, 'M', 'ルピー'), + (0x3354, 'M', 'ルーブル'), + (0x3355, 'M', 'レム'), + (0x3356, 'M', 'レントゲン'), + (0x3357, 'M', 'ワット'), + (0x3358, 'M', '0点'), + (0x3359, 'M', '1点'), + (0x335A, 'M', '2点'), + (0x335B, 'M', '3点'), + (0x335C, 'M', '4点'), + (0x335D, 'M', '5点'), + (0x335E, 'M', '6点'), + (0x335F, 'M', '7点'), + (0x3360, 'M', '8点'), + (0x3361, 'M', '9点'), + (0x3362, 'M', '10点'), + (0x3363, 'M', '11点'), + (0x3364, 'M', '12点'), + (0x3365, 'M', '13点'), + (0x3366, 'M', '14点'), + (0x3367, 'M', '15点'), + (0x3368, 'M', '16点'), + (0x3369, 'M', '17点'), + (0x336A, 'M', '18点'), + (0x336B, 'M', '19点'), + (0x336C, 'M', '20点'), + (0x336D, 'M', '21点'), + (0x336E, 'M', '22点'), + (0x336F, 'M', '23点'), + (0x3370, 'M', '24点'), + (0x3371, 'M', 'hpa'), + (0x3372, 'M', 'da'), + (0x3373, 'M', 'au'), + (0x3374, 'M', 'bar'), + (0x3375, 'M', 'ov'), + (0x3376, 'M', 'pc'), + (0x3377, 'M', 'dm'), + (0x3378, 'M', 'dm2'), + (0x3379, 'M', 'dm3'), + (0x337A, 'M', 'iu'), + (0x337B, 'M', '平成'), + (0x337C, 'M', '昭和'), + (0x337D, 'M', '大正'), + ] + +def _seg_34() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x337E, 'M', '明治'), + (0x337F, 'M', '株式会社'), + (0x3380, 'M', 'pa'), + (0x3381, 'M', 'na'), + (0x3382, 'M', 'μa'), + (0x3383, 'M', 'ma'), + (0x3384, 'M', 'ka'), + (0x3385, 'M', 'kb'), + (0x3386, 'M', 'mb'), + (0x3387, 'M', 'gb'), + (0x3388, 'M', 'cal'), + (0x3389, 'M', 'kcal'), + (0x338A, 'M', 'pf'), + (0x338B, 'M', 'nf'), + (0x338C, 'M', 'μf'), + (0x338D, 'M', 'μg'), + (0x338E, 'M', 'mg'), + (0x338F, 'M', 'kg'), + (0x3390, 'M', 'hz'), + (0x3391, 'M', 'khz'), + (0x3392, 'M', 'mhz'), + (0x3393, 'M', 'ghz'), + (0x3394, 'M', 'thz'), + (0x3395, 'M', 'μl'), + (0x3396, 'M', 'ml'), + (0x3397, 'M', 'dl'), + (0x3398, 'M', 'kl'), + (0x3399, 'M', 'fm'), + (0x339A, 'M', 'nm'), + (0x339B, 'M', 'μm'), + (0x339C, 'M', 'mm'), + (0x339D, 'M', 'cm'), + (0x339E, 'M', 'km'), + (0x339F, 'M', 'mm2'), + (0x33A0, 'M', 'cm2'), + (0x33A1, 'M', 'm2'), + (0x33A2, 'M', 'km2'), + (0x33A3, 'M', 'mm3'), + (0x33A4, 'M', 'cm3'), + (0x33A5, 'M', 'm3'), + (0x33A6, 'M', 'km3'), + (0x33A7, 'M', 'm∕s'), + (0x33A8, 'M', 'm∕s2'), + (0x33A9, 'M', 'pa'), + (0x33AA, 'M', 'kpa'), + (0x33AB, 'M', 'mpa'), + (0x33AC, 'M', 'gpa'), + (0x33AD, 'M', 'rad'), + (0x33AE, 'M', 'rad∕s'), + (0x33AF, 'M', 'rad∕s2'), + (0x33B0, 'M', 'ps'), + (0x33B1, 'M', 'ns'), + (0x33B2, 'M', 'μs'), + (0x33B3, 'M', 'ms'), + (0x33B4, 'M', 'pv'), + (0x33B5, 'M', 'nv'), + (0x33B6, 'M', 'μv'), + (0x33B7, 'M', 'mv'), + (0x33B8, 'M', 'kv'), + (0x33B9, 'M', 'mv'), + (0x33BA, 'M', 'pw'), + (0x33BB, 'M', 'nw'), + (0x33BC, 'M', 'μw'), + (0x33BD, 'M', 'mw'), + (0x33BE, 'M', 'kw'), + (0x33BF, 'M', 'mw'), + (0x33C0, 'M', 'kω'), + (0x33C1, 'M', 'mω'), + (0x33C2, 'X'), + (0x33C3, 'M', 'bq'), + (0x33C4, 'M', 'cc'), + (0x33C5, 'M', 'cd'), + (0x33C6, 'M', 'c∕kg'), + (0x33C7, 'X'), + (0x33C8, 'M', 'db'), + (0x33C9, 'M', 'gy'), + (0x33CA, 'M', 'ha'), + (0x33CB, 'M', 'hp'), + (0x33CC, 'M', 'in'), + (0x33CD, 'M', 'kk'), + (0x33CE, 'M', 'km'), + (0x33CF, 'M', 'kt'), + (0x33D0, 'M', 'lm'), + (0x33D1, 'M', 'ln'), + (0x33D2, 'M', 'log'), + (0x33D3, 'M', 'lx'), + (0x33D4, 'M', 'mb'), + (0x33D5, 'M', 'mil'), + (0x33D6, 'M', 'mol'), + (0x33D7, 'M', 'ph'), + (0x33D8, 'X'), + (0x33D9, 'M', 'ppm'), + (0x33DA, 'M', 'pr'), + (0x33DB, 'M', 'sr'), + (0x33DC, 'M', 'sv'), + (0x33DD, 'M', 'wb'), + (0x33DE, 'M', 'v∕m'), + (0x33DF, 'M', 'a∕m'), + (0x33E0, 'M', '1日'), + (0x33E1, 'M', '2日'), + ] + +def _seg_35() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x33E2, 'M', '3日'), + (0x33E3, 'M', '4日'), + (0x33E4, 'M', '5日'), + (0x33E5, 'M', '6日'), + (0x33E6, 'M', '7日'), + (0x33E7, 'M', '8日'), + (0x33E8, 'M', '9日'), + (0x33E9, 'M', '10日'), + (0x33EA, 'M', '11日'), + (0x33EB, 'M', '12日'), + (0x33EC, 'M', '13日'), + (0x33ED, 'M', '14日'), + (0x33EE, 'M', '15日'), + (0x33EF, 'M', '16日'), + (0x33F0, 'M', '17日'), + (0x33F1, 'M', '18日'), + (0x33F2, 'M', '19日'), + (0x33F3, 'M', '20日'), + (0x33F4, 'M', '21日'), + (0x33F5, 'M', '22日'), + (0x33F6, 'M', '23日'), + (0x33F7, 'M', '24日'), + (0x33F8, 'M', '25日'), + (0x33F9, 'M', '26日'), + (0x33FA, 'M', '27日'), + (0x33FB, 'M', '28日'), + (0x33FC, 'M', '29日'), + (0x33FD, 'M', '30日'), + (0x33FE, 'M', '31日'), + (0x33FF, 'M', 'gal'), + (0x3400, 'V'), + (0xA48D, 'X'), + (0xA490, 'V'), + (0xA4C7, 'X'), + (0xA4D0, 'V'), + (0xA62C, 'X'), + (0xA640, 'M', 'ꙁ'), + (0xA641, 'V'), + (0xA642, 'M', 'ꙃ'), + (0xA643, 'V'), + (0xA644, 'M', 'ꙅ'), + (0xA645, 'V'), + (0xA646, 'M', 'ꙇ'), + (0xA647, 'V'), + (0xA648, 'M', 'ꙉ'), + (0xA649, 'V'), + (0xA64A, 'M', 'ꙋ'), + (0xA64B, 'V'), + (0xA64C, 'M', 'ꙍ'), + (0xA64D, 'V'), + (0xA64E, 'M', 'ꙏ'), + (0xA64F, 'V'), + (0xA650, 'M', 'ꙑ'), + (0xA651, 'V'), + (0xA652, 'M', 'ꙓ'), + (0xA653, 'V'), + (0xA654, 'M', 'ꙕ'), + (0xA655, 'V'), + (0xA656, 'M', 'ꙗ'), + (0xA657, 'V'), + (0xA658, 'M', 'ꙙ'), + (0xA659, 'V'), + (0xA65A, 'M', 'ꙛ'), + (0xA65B, 'V'), + (0xA65C, 'M', 'ꙝ'), + (0xA65D, 'V'), + (0xA65E, 'M', 'ꙟ'), + (0xA65F, 'V'), + (0xA660, 'M', 'ꙡ'), + (0xA661, 'V'), + (0xA662, 'M', 'ꙣ'), + (0xA663, 'V'), + (0xA664, 'M', 'ꙥ'), + (0xA665, 'V'), + (0xA666, 'M', 'ꙧ'), + (0xA667, 'V'), + (0xA668, 'M', 'ꙩ'), + (0xA669, 'V'), + (0xA66A, 'M', 'ꙫ'), + (0xA66B, 'V'), + (0xA66C, 'M', 'ꙭ'), + (0xA66D, 'V'), + (0xA680, 'M', 'ꚁ'), + (0xA681, 'V'), + (0xA682, 'M', 'ꚃ'), + (0xA683, 'V'), + (0xA684, 'M', 'ꚅ'), + (0xA685, 'V'), + (0xA686, 'M', 'ꚇ'), + (0xA687, 'V'), + (0xA688, 'M', 'ꚉ'), + (0xA689, 'V'), + (0xA68A, 'M', 'ꚋ'), + (0xA68B, 'V'), + (0xA68C, 'M', 'ꚍ'), + (0xA68D, 'V'), + (0xA68E, 'M', 'ꚏ'), + (0xA68F, 'V'), + (0xA690, 'M', 'ꚑ'), + (0xA691, 'V'), + ] + +def _seg_36() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA692, 'M', 'ꚓ'), + (0xA693, 'V'), + (0xA694, 'M', 'ꚕ'), + (0xA695, 'V'), + (0xA696, 'M', 'ꚗ'), + (0xA697, 'V'), + (0xA698, 'M', 'ꚙ'), + (0xA699, 'V'), + (0xA69A, 'M', 'ꚛ'), + (0xA69B, 'V'), + (0xA69C, 'M', 'ъ'), + (0xA69D, 'M', 'ь'), + (0xA69E, 'V'), + (0xA6F8, 'X'), + (0xA700, 'V'), + (0xA722, 'M', 'ꜣ'), + (0xA723, 'V'), + (0xA724, 'M', 'ꜥ'), + (0xA725, 'V'), + (0xA726, 'M', 'ꜧ'), + (0xA727, 'V'), + (0xA728, 'M', 'ꜩ'), + (0xA729, 'V'), + (0xA72A, 'M', 'ꜫ'), + (0xA72B, 'V'), + (0xA72C, 'M', 'ꜭ'), + (0xA72D, 'V'), + (0xA72E, 'M', 'ꜯ'), + (0xA72F, 'V'), + (0xA732, 'M', 'ꜳ'), + (0xA733, 'V'), + (0xA734, 'M', 'ꜵ'), + (0xA735, 'V'), + (0xA736, 'M', 'ꜷ'), + (0xA737, 'V'), + (0xA738, 'M', 'ꜹ'), + (0xA739, 'V'), + (0xA73A, 'M', 'ꜻ'), + (0xA73B, 'V'), + (0xA73C, 'M', 'ꜽ'), + (0xA73D, 'V'), + (0xA73E, 'M', 'ꜿ'), + (0xA73F, 'V'), + (0xA740, 'M', 'ꝁ'), + (0xA741, 'V'), + (0xA742, 'M', 'ꝃ'), + (0xA743, 'V'), + (0xA744, 'M', 'ꝅ'), + (0xA745, 'V'), + (0xA746, 'M', 'ꝇ'), + (0xA747, 'V'), + (0xA748, 'M', 'ꝉ'), + (0xA749, 'V'), + (0xA74A, 'M', 'ꝋ'), + (0xA74B, 'V'), + (0xA74C, 'M', 'ꝍ'), + (0xA74D, 'V'), + (0xA74E, 'M', 'ꝏ'), + (0xA74F, 'V'), + (0xA750, 'M', 'ꝑ'), + (0xA751, 'V'), + (0xA752, 'M', 'ꝓ'), + (0xA753, 'V'), + (0xA754, 'M', 'ꝕ'), + (0xA755, 'V'), + (0xA756, 'M', 'ꝗ'), + (0xA757, 'V'), + (0xA758, 'M', 'ꝙ'), + (0xA759, 'V'), + (0xA75A, 'M', 'ꝛ'), + (0xA75B, 'V'), + (0xA75C, 'M', 'ꝝ'), + (0xA75D, 'V'), + (0xA75E, 'M', 'ꝟ'), + (0xA75F, 'V'), + (0xA760, 'M', 'ꝡ'), + (0xA761, 'V'), + (0xA762, 'M', 'ꝣ'), + (0xA763, 'V'), + (0xA764, 'M', 'ꝥ'), + (0xA765, 'V'), + (0xA766, 'M', 'ꝧ'), + (0xA767, 'V'), + (0xA768, 'M', 'ꝩ'), + (0xA769, 'V'), + (0xA76A, 'M', 'ꝫ'), + (0xA76B, 'V'), + (0xA76C, 'M', 'ꝭ'), + (0xA76D, 'V'), + (0xA76E, 'M', 'ꝯ'), + (0xA76F, 'V'), + (0xA770, 'M', 'ꝯ'), + (0xA771, 'V'), + (0xA779, 'M', 'ꝺ'), + (0xA77A, 'V'), + (0xA77B, 'M', 'ꝼ'), + (0xA77C, 'V'), + (0xA77D, 'M', 'ᵹ'), + (0xA77E, 'M', 'ꝿ'), + (0xA77F, 'V'), + ] + +def _seg_37() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA780, 'M', 'ꞁ'), + (0xA781, 'V'), + (0xA782, 'M', 'ꞃ'), + (0xA783, 'V'), + (0xA784, 'M', 'ꞅ'), + (0xA785, 'V'), + (0xA786, 'M', 'ꞇ'), + (0xA787, 'V'), + (0xA78B, 'M', 'ꞌ'), + (0xA78C, 'V'), + (0xA78D, 'M', 'ɥ'), + (0xA78E, 'V'), + (0xA790, 'M', 'ꞑ'), + (0xA791, 'V'), + (0xA792, 'M', 'ꞓ'), + (0xA793, 'V'), + (0xA796, 'M', 'ꞗ'), + (0xA797, 'V'), + (0xA798, 'M', 'ꞙ'), + (0xA799, 'V'), + (0xA79A, 'M', 'ꞛ'), + (0xA79B, 'V'), + (0xA79C, 'M', 'ꞝ'), + (0xA79D, 'V'), + (0xA79E, 'M', 'ꞟ'), + (0xA79F, 'V'), + (0xA7A0, 'M', 'ꞡ'), + (0xA7A1, 'V'), + (0xA7A2, 'M', 'ꞣ'), + (0xA7A3, 'V'), + (0xA7A4, 'M', 'ꞥ'), + (0xA7A5, 'V'), + (0xA7A6, 'M', 'ꞧ'), + (0xA7A7, 'V'), + (0xA7A8, 'M', 'ꞩ'), + (0xA7A9, 'V'), + (0xA7AA, 'M', 'ɦ'), + (0xA7AB, 'M', 'ɜ'), + (0xA7AC, 'M', 'ɡ'), + (0xA7AD, 'M', 'ɬ'), + (0xA7AE, 'M', 'ɪ'), + (0xA7AF, 'V'), + (0xA7B0, 'M', 'ʞ'), + (0xA7B1, 'M', 'ʇ'), + (0xA7B2, 'M', 'ʝ'), + (0xA7B3, 'M', 'ꭓ'), + (0xA7B4, 'M', 'ꞵ'), + (0xA7B5, 'V'), + (0xA7B6, 'M', 'ꞷ'), + (0xA7B7, 'V'), + (0xA7B8, 'M', 'ꞹ'), + (0xA7B9, 'V'), + (0xA7BA, 'M', 'ꞻ'), + (0xA7BB, 'V'), + (0xA7BC, 'M', 'ꞽ'), + (0xA7BD, 'V'), + (0xA7BE, 'M', 'ꞿ'), + (0xA7BF, 'V'), + (0xA7C0, 'M', 'ꟁ'), + (0xA7C1, 'V'), + (0xA7C2, 'M', 'ꟃ'), + (0xA7C3, 'V'), + (0xA7C4, 'M', 'ꞔ'), + (0xA7C5, 'M', 'ʂ'), + (0xA7C6, 'M', 'ᶎ'), + (0xA7C7, 'M', 'ꟈ'), + (0xA7C8, 'V'), + (0xA7C9, 'M', 'ꟊ'), + (0xA7CA, 'V'), + (0xA7CB, 'X'), + (0xA7D0, 'M', 'ꟑ'), + (0xA7D1, 'V'), + (0xA7D2, 'X'), + (0xA7D3, 'V'), + (0xA7D4, 'X'), + (0xA7D5, 'V'), + (0xA7D6, 'M', 'ꟗ'), + (0xA7D7, 'V'), + (0xA7D8, 'M', 'ꟙ'), + (0xA7D9, 'V'), + (0xA7DA, 'X'), + (0xA7F2, 'M', 'c'), + (0xA7F3, 'M', 'f'), + (0xA7F4, 'M', 'q'), + (0xA7F5, 'M', 'ꟶ'), + (0xA7F6, 'V'), + (0xA7F8, 'M', 'ħ'), + (0xA7F9, 'M', 'œ'), + (0xA7FA, 'V'), + (0xA82D, 'X'), + (0xA830, 'V'), + (0xA83A, 'X'), + (0xA840, 'V'), + (0xA878, 'X'), + (0xA880, 'V'), + (0xA8C6, 'X'), + (0xA8CE, 'V'), + (0xA8DA, 'X'), + (0xA8E0, 'V'), + (0xA954, 'X'), + ] + +def _seg_38() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xA95F, 'V'), + (0xA97D, 'X'), + (0xA980, 'V'), + (0xA9CE, 'X'), + (0xA9CF, 'V'), + (0xA9DA, 'X'), + (0xA9DE, 'V'), + (0xA9FF, 'X'), + (0xAA00, 'V'), + (0xAA37, 'X'), + (0xAA40, 'V'), + (0xAA4E, 'X'), + (0xAA50, 'V'), + (0xAA5A, 'X'), + (0xAA5C, 'V'), + (0xAAC3, 'X'), + (0xAADB, 'V'), + (0xAAF7, 'X'), + (0xAB01, 'V'), + (0xAB07, 'X'), + (0xAB09, 'V'), + (0xAB0F, 'X'), + (0xAB11, 'V'), + (0xAB17, 'X'), + (0xAB20, 'V'), + (0xAB27, 'X'), + (0xAB28, 'V'), + (0xAB2F, 'X'), + (0xAB30, 'V'), + (0xAB5C, 'M', 'ꜧ'), + (0xAB5D, 'M', 'ꬷ'), + (0xAB5E, 'M', 'ɫ'), + (0xAB5F, 'M', 'ꭒ'), + (0xAB60, 'V'), + (0xAB69, 'M', 'ʍ'), + (0xAB6A, 'V'), + (0xAB6C, 'X'), + (0xAB70, 'M', 'Ꭰ'), + (0xAB71, 'M', 'Ꭱ'), + (0xAB72, 'M', 'Ꭲ'), + (0xAB73, 'M', 'Ꭳ'), + (0xAB74, 'M', 'Ꭴ'), + (0xAB75, 'M', 'Ꭵ'), + (0xAB76, 'M', 'Ꭶ'), + (0xAB77, 'M', 'Ꭷ'), + (0xAB78, 'M', 'Ꭸ'), + (0xAB79, 'M', 'Ꭹ'), + (0xAB7A, 'M', 'Ꭺ'), + (0xAB7B, 'M', 'Ꭻ'), + (0xAB7C, 'M', 'Ꭼ'), + (0xAB7D, 'M', 'Ꭽ'), + (0xAB7E, 'M', 'Ꭾ'), + (0xAB7F, 'M', 'Ꭿ'), + (0xAB80, 'M', 'Ꮀ'), + (0xAB81, 'M', 'Ꮁ'), + (0xAB82, 'M', 'Ꮂ'), + (0xAB83, 'M', 'Ꮃ'), + (0xAB84, 'M', 'Ꮄ'), + (0xAB85, 'M', 'Ꮅ'), + (0xAB86, 'M', 'Ꮆ'), + (0xAB87, 'M', 'Ꮇ'), + (0xAB88, 'M', 'Ꮈ'), + (0xAB89, 'M', 'Ꮉ'), + (0xAB8A, 'M', 'Ꮊ'), + (0xAB8B, 'M', 'Ꮋ'), + (0xAB8C, 'M', 'Ꮌ'), + (0xAB8D, 'M', 'Ꮍ'), + (0xAB8E, 'M', 'Ꮎ'), + (0xAB8F, 'M', 'Ꮏ'), + (0xAB90, 'M', 'Ꮐ'), + (0xAB91, 'M', 'Ꮑ'), + (0xAB92, 'M', 'Ꮒ'), + (0xAB93, 'M', 'Ꮓ'), + (0xAB94, 'M', 'Ꮔ'), + (0xAB95, 'M', 'Ꮕ'), + (0xAB96, 'M', 'Ꮖ'), + (0xAB97, 'M', 'Ꮗ'), + (0xAB98, 'M', 'Ꮘ'), + (0xAB99, 'M', 'Ꮙ'), + (0xAB9A, 'M', 'Ꮚ'), + (0xAB9B, 'M', 'Ꮛ'), + (0xAB9C, 'M', 'Ꮜ'), + (0xAB9D, 'M', 'Ꮝ'), + (0xAB9E, 'M', 'Ꮞ'), + (0xAB9F, 'M', 'Ꮟ'), + (0xABA0, 'M', 'Ꮠ'), + (0xABA1, 'M', 'Ꮡ'), + (0xABA2, 'M', 'Ꮢ'), + (0xABA3, 'M', 'Ꮣ'), + (0xABA4, 'M', 'Ꮤ'), + (0xABA5, 'M', 'Ꮥ'), + (0xABA6, 'M', 'Ꮦ'), + (0xABA7, 'M', 'Ꮧ'), + (0xABA8, 'M', 'Ꮨ'), + (0xABA9, 'M', 'Ꮩ'), + (0xABAA, 'M', 'Ꮪ'), + (0xABAB, 'M', 'Ꮫ'), + (0xABAC, 'M', 'Ꮬ'), + (0xABAD, 'M', 'Ꮭ'), + (0xABAE, 'M', 'Ꮮ'), + ] + +def _seg_39() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xABAF, 'M', 'Ꮯ'), + (0xABB0, 'M', 'Ꮰ'), + (0xABB1, 'M', 'Ꮱ'), + (0xABB2, 'M', 'Ꮲ'), + (0xABB3, 'M', 'Ꮳ'), + (0xABB4, 'M', 'Ꮴ'), + (0xABB5, 'M', 'Ꮵ'), + (0xABB6, 'M', 'Ꮶ'), + (0xABB7, 'M', 'Ꮷ'), + (0xABB8, 'M', 'Ꮸ'), + (0xABB9, 'M', 'Ꮹ'), + (0xABBA, 'M', 'Ꮺ'), + (0xABBB, 'M', 'Ꮻ'), + (0xABBC, 'M', 'Ꮼ'), + (0xABBD, 'M', 'Ꮽ'), + (0xABBE, 'M', 'Ꮾ'), + (0xABBF, 'M', 'Ꮿ'), + (0xABC0, 'V'), + (0xABEE, 'X'), + (0xABF0, 'V'), + (0xABFA, 'X'), + (0xAC00, 'V'), + (0xD7A4, 'X'), + (0xD7B0, 'V'), + (0xD7C7, 'X'), + (0xD7CB, 'V'), + (0xD7FC, 'X'), + (0xF900, 'M', '豈'), + (0xF901, 'M', '更'), + (0xF902, 'M', '車'), + (0xF903, 'M', '賈'), + (0xF904, 'M', '滑'), + (0xF905, 'M', '串'), + (0xF906, 'M', '句'), + (0xF907, 'M', '龜'), + (0xF909, 'M', '契'), + (0xF90A, 'M', '金'), + (0xF90B, 'M', '喇'), + (0xF90C, 'M', '奈'), + (0xF90D, 'M', '懶'), + (0xF90E, 'M', '癩'), + (0xF90F, 'M', '羅'), + (0xF910, 'M', '蘿'), + (0xF911, 'M', '螺'), + (0xF912, 'M', '裸'), + (0xF913, 'M', '邏'), + (0xF914, 'M', '樂'), + (0xF915, 'M', '洛'), + (0xF916, 'M', '烙'), + (0xF917, 'M', '珞'), + (0xF918, 'M', '落'), + (0xF919, 'M', '酪'), + (0xF91A, 'M', '駱'), + (0xF91B, 'M', '亂'), + (0xF91C, 'M', '卵'), + (0xF91D, 'M', '欄'), + (0xF91E, 'M', '爛'), + (0xF91F, 'M', '蘭'), + (0xF920, 'M', '鸞'), + (0xF921, 'M', '嵐'), + (0xF922, 'M', '濫'), + (0xF923, 'M', '藍'), + (0xF924, 'M', '襤'), + (0xF925, 'M', '拉'), + (0xF926, 'M', '臘'), + (0xF927, 'M', '蠟'), + (0xF928, 'M', '廊'), + (0xF929, 'M', '朗'), + (0xF92A, 'M', '浪'), + (0xF92B, 'M', '狼'), + (0xF92C, 'M', '郎'), + (0xF92D, 'M', '來'), + (0xF92E, 'M', '冷'), + (0xF92F, 'M', '勞'), + (0xF930, 'M', '擄'), + (0xF931, 'M', '櫓'), + (0xF932, 'M', '爐'), + (0xF933, 'M', '盧'), + (0xF934, 'M', '老'), + (0xF935, 'M', '蘆'), + (0xF936, 'M', '虜'), + (0xF937, 'M', '路'), + (0xF938, 'M', '露'), + (0xF939, 'M', '魯'), + (0xF93A, 'M', '鷺'), + (0xF93B, 'M', '碌'), + (0xF93C, 'M', '祿'), + (0xF93D, 'M', '綠'), + (0xF93E, 'M', '菉'), + (0xF93F, 'M', '錄'), + (0xF940, 'M', '鹿'), + (0xF941, 'M', '論'), + (0xF942, 'M', '壟'), + (0xF943, 'M', '弄'), + (0xF944, 'M', '籠'), + (0xF945, 'M', '聾'), + (0xF946, 'M', '牢'), + (0xF947, 'M', '磊'), + (0xF948, 'M', '賂'), + (0xF949, 'M', '雷'), + ] + +def _seg_40() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF94A, 'M', '壘'), + (0xF94B, 'M', '屢'), + (0xF94C, 'M', '樓'), + (0xF94D, 'M', '淚'), + (0xF94E, 'M', '漏'), + (0xF94F, 'M', '累'), + (0xF950, 'M', '縷'), + (0xF951, 'M', '陋'), + (0xF952, 'M', '勒'), + (0xF953, 'M', '肋'), + (0xF954, 'M', '凜'), + (0xF955, 'M', '凌'), + (0xF956, 'M', '稜'), + (0xF957, 'M', '綾'), + (0xF958, 'M', '菱'), + (0xF959, 'M', '陵'), + (0xF95A, 'M', '讀'), + (0xF95B, 'M', '拏'), + (0xF95C, 'M', '樂'), + (0xF95D, 'M', '諾'), + (0xF95E, 'M', '丹'), + (0xF95F, 'M', '寧'), + (0xF960, 'M', '怒'), + (0xF961, 'M', '率'), + (0xF962, 'M', '異'), + (0xF963, 'M', '北'), + (0xF964, 'M', '磻'), + (0xF965, 'M', '便'), + (0xF966, 'M', '復'), + (0xF967, 'M', '不'), + (0xF968, 'M', '泌'), + (0xF969, 'M', '數'), + (0xF96A, 'M', '索'), + (0xF96B, 'M', '參'), + (0xF96C, 'M', '塞'), + (0xF96D, 'M', '省'), + (0xF96E, 'M', '葉'), + (0xF96F, 'M', '說'), + (0xF970, 'M', '殺'), + (0xF971, 'M', '辰'), + (0xF972, 'M', '沈'), + (0xF973, 'M', '拾'), + (0xF974, 'M', '若'), + (0xF975, 'M', '掠'), + (0xF976, 'M', '略'), + (0xF977, 'M', '亮'), + (0xF978, 'M', '兩'), + (0xF979, 'M', '凉'), + (0xF97A, 'M', '梁'), + (0xF97B, 'M', '糧'), + (0xF97C, 'M', '良'), + (0xF97D, 'M', '諒'), + (0xF97E, 'M', '量'), + (0xF97F, 'M', '勵'), + (0xF980, 'M', '呂'), + (0xF981, 'M', '女'), + (0xF982, 'M', '廬'), + (0xF983, 'M', '旅'), + (0xF984, 'M', '濾'), + (0xF985, 'M', '礪'), + (0xF986, 'M', '閭'), + (0xF987, 'M', '驪'), + (0xF988, 'M', '麗'), + (0xF989, 'M', '黎'), + (0xF98A, 'M', '力'), + (0xF98B, 'M', '曆'), + (0xF98C, 'M', '歷'), + (0xF98D, 'M', '轢'), + (0xF98E, 'M', '年'), + (0xF98F, 'M', '憐'), + (0xF990, 'M', '戀'), + (0xF991, 'M', '撚'), + (0xF992, 'M', '漣'), + (0xF993, 'M', '煉'), + (0xF994, 'M', '璉'), + (0xF995, 'M', '秊'), + (0xF996, 'M', '練'), + (0xF997, 'M', '聯'), + (0xF998, 'M', '輦'), + (0xF999, 'M', '蓮'), + (0xF99A, 'M', '連'), + (0xF99B, 'M', '鍊'), + (0xF99C, 'M', '列'), + (0xF99D, 'M', '劣'), + (0xF99E, 'M', '咽'), + (0xF99F, 'M', '烈'), + (0xF9A0, 'M', '裂'), + (0xF9A1, 'M', '說'), + (0xF9A2, 'M', '廉'), + (0xF9A3, 'M', '念'), + (0xF9A4, 'M', '捻'), + (0xF9A5, 'M', '殮'), + (0xF9A6, 'M', '簾'), + (0xF9A7, 'M', '獵'), + (0xF9A8, 'M', '令'), + (0xF9A9, 'M', '囹'), + (0xF9AA, 'M', '寧'), + (0xF9AB, 'M', '嶺'), + (0xF9AC, 'M', '怜'), + (0xF9AD, 'M', '玲'), + ] + +def _seg_41() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xF9AE, 'M', '瑩'), + (0xF9AF, 'M', '羚'), + (0xF9B0, 'M', '聆'), + (0xF9B1, 'M', '鈴'), + (0xF9B2, 'M', '零'), + (0xF9B3, 'M', '靈'), + (0xF9B4, 'M', '領'), + (0xF9B5, 'M', '例'), + (0xF9B6, 'M', '禮'), + (0xF9B7, 'M', '醴'), + (0xF9B8, 'M', '隸'), + (0xF9B9, 'M', '惡'), + (0xF9BA, 'M', '了'), + (0xF9BB, 'M', '僚'), + (0xF9BC, 'M', '寮'), + (0xF9BD, 'M', '尿'), + (0xF9BE, 'M', '料'), + (0xF9BF, 'M', '樂'), + (0xF9C0, 'M', '燎'), + (0xF9C1, 'M', '療'), + (0xF9C2, 'M', '蓼'), + (0xF9C3, 'M', '遼'), + (0xF9C4, 'M', '龍'), + (0xF9C5, 'M', '暈'), + (0xF9C6, 'M', '阮'), + (0xF9C7, 'M', '劉'), + (0xF9C8, 'M', '杻'), + (0xF9C9, 'M', '柳'), + (0xF9CA, 'M', '流'), + (0xF9CB, 'M', '溜'), + (0xF9CC, 'M', '琉'), + (0xF9CD, 'M', '留'), + (0xF9CE, 'M', '硫'), + (0xF9CF, 'M', '紐'), + (0xF9D0, 'M', '類'), + (0xF9D1, 'M', '六'), + (0xF9D2, 'M', '戮'), + (0xF9D3, 'M', '陸'), + (0xF9D4, 'M', '倫'), + (0xF9D5, 'M', '崙'), + (0xF9D6, 'M', '淪'), + (0xF9D7, 'M', '輪'), + (0xF9D8, 'M', '律'), + (0xF9D9, 'M', '慄'), + (0xF9DA, 'M', '栗'), + (0xF9DB, 'M', '率'), + (0xF9DC, 'M', '隆'), + (0xF9DD, 'M', '利'), + (0xF9DE, 'M', '吏'), + (0xF9DF, 'M', '履'), + (0xF9E0, 'M', '易'), + (0xF9E1, 'M', '李'), + (0xF9E2, 'M', '梨'), + (0xF9E3, 'M', '泥'), + (0xF9E4, 'M', '理'), + (0xF9E5, 'M', '痢'), + (0xF9E6, 'M', '罹'), + (0xF9E7, 'M', '裏'), + (0xF9E8, 'M', '裡'), + (0xF9E9, 'M', '里'), + (0xF9EA, 'M', '離'), + (0xF9EB, 'M', '匿'), + (0xF9EC, 'M', '溺'), + (0xF9ED, 'M', '吝'), + (0xF9EE, 'M', '燐'), + (0xF9EF, 'M', '璘'), + (0xF9F0, 'M', '藺'), + (0xF9F1, 'M', '隣'), + (0xF9F2, 'M', '鱗'), + (0xF9F3, 'M', '麟'), + (0xF9F4, 'M', '林'), + (0xF9F5, 'M', '淋'), + (0xF9F6, 'M', '臨'), + (0xF9F7, 'M', '立'), + (0xF9F8, 'M', '笠'), + (0xF9F9, 'M', '粒'), + (0xF9FA, 'M', '狀'), + (0xF9FB, 'M', '炙'), + (0xF9FC, 'M', '識'), + (0xF9FD, 'M', '什'), + (0xF9FE, 'M', '茶'), + (0xF9FF, 'M', '刺'), + (0xFA00, 'M', '切'), + (0xFA01, 'M', '度'), + (0xFA02, 'M', '拓'), + (0xFA03, 'M', '糖'), + (0xFA04, 'M', '宅'), + (0xFA05, 'M', '洞'), + (0xFA06, 'M', '暴'), + (0xFA07, 'M', '輻'), + (0xFA08, 'M', '行'), + (0xFA09, 'M', '降'), + (0xFA0A, 'M', '見'), + (0xFA0B, 'M', '廓'), + (0xFA0C, 'M', '兀'), + (0xFA0D, 'M', '嗀'), + (0xFA0E, 'V'), + (0xFA10, 'M', '塚'), + (0xFA11, 'V'), + (0xFA12, 'M', '晴'), + ] + +def _seg_42() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA13, 'V'), + (0xFA15, 'M', '凞'), + (0xFA16, 'M', '猪'), + (0xFA17, 'M', '益'), + (0xFA18, 'M', '礼'), + (0xFA19, 'M', '神'), + (0xFA1A, 'M', '祥'), + (0xFA1B, 'M', '福'), + (0xFA1C, 'M', '靖'), + (0xFA1D, 'M', '精'), + (0xFA1E, 'M', '羽'), + (0xFA1F, 'V'), + (0xFA20, 'M', '蘒'), + (0xFA21, 'V'), + (0xFA22, 'M', '諸'), + (0xFA23, 'V'), + (0xFA25, 'M', '逸'), + (0xFA26, 'M', '都'), + (0xFA27, 'V'), + (0xFA2A, 'M', '飯'), + (0xFA2B, 'M', '飼'), + (0xFA2C, 'M', '館'), + (0xFA2D, 'M', '鶴'), + (0xFA2E, 'M', '郞'), + (0xFA2F, 'M', '隷'), + (0xFA30, 'M', '侮'), + (0xFA31, 'M', '僧'), + (0xFA32, 'M', '免'), + (0xFA33, 'M', '勉'), + (0xFA34, 'M', '勤'), + (0xFA35, 'M', '卑'), + (0xFA36, 'M', '喝'), + (0xFA37, 'M', '嘆'), + (0xFA38, 'M', '器'), + (0xFA39, 'M', '塀'), + (0xFA3A, 'M', '墨'), + (0xFA3B, 'M', '層'), + (0xFA3C, 'M', '屮'), + (0xFA3D, 'M', '悔'), + (0xFA3E, 'M', '慨'), + (0xFA3F, 'M', '憎'), + (0xFA40, 'M', '懲'), + (0xFA41, 'M', '敏'), + (0xFA42, 'M', '既'), + (0xFA43, 'M', '暑'), + (0xFA44, 'M', '梅'), + (0xFA45, 'M', '海'), + (0xFA46, 'M', '渚'), + (0xFA47, 'M', '漢'), + (0xFA48, 'M', '煮'), + (0xFA49, 'M', '爫'), + (0xFA4A, 'M', '琢'), + (0xFA4B, 'M', '碑'), + (0xFA4C, 'M', '社'), + (0xFA4D, 'M', '祉'), + (0xFA4E, 'M', '祈'), + (0xFA4F, 'M', '祐'), + (0xFA50, 'M', '祖'), + (0xFA51, 'M', '祝'), + (0xFA52, 'M', '禍'), + (0xFA53, 'M', '禎'), + (0xFA54, 'M', '穀'), + (0xFA55, 'M', '突'), + (0xFA56, 'M', '節'), + (0xFA57, 'M', '練'), + (0xFA58, 'M', '縉'), + (0xFA59, 'M', '繁'), + (0xFA5A, 'M', '署'), + (0xFA5B, 'M', '者'), + (0xFA5C, 'M', '臭'), + (0xFA5D, 'M', '艹'), + (0xFA5F, 'M', '著'), + (0xFA60, 'M', '褐'), + (0xFA61, 'M', '視'), + (0xFA62, 'M', '謁'), + (0xFA63, 'M', '謹'), + (0xFA64, 'M', '賓'), + (0xFA65, 'M', '贈'), + (0xFA66, 'M', '辶'), + (0xFA67, 'M', '逸'), + (0xFA68, 'M', '難'), + (0xFA69, 'M', '響'), + (0xFA6A, 'M', '頻'), + (0xFA6B, 'M', '恵'), + (0xFA6C, 'M', '𤋮'), + (0xFA6D, 'M', '舘'), + (0xFA6E, 'X'), + (0xFA70, 'M', '並'), + (0xFA71, 'M', '况'), + (0xFA72, 'M', '全'), + (0xFA73, 'M', '侀'), + (0xFA74, 'M', '充'), + (0xFA75, 'M', '冀'), + (0xFA76, 'M', '勇'), + (0xFA77, 'M', '勺'), + (0xFA78, 'M', '喝'), + (0xFA79, 'M', '啕'), + (0xFA7A, 'M', '喙'), + (0xFA7B, 'M', '嗢'), + (0xFA7C, 'M', '塚'), + ] + +def _seg_43() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFA7D, 'M', '墳'), + (0xFA7E, 'M', '奄'), + (0xFA7F, 'M', '奔'), + (0xFA80, 'M', '婢'), + (0xFA81, 'M', '嬨'), + (0xFA82, 'M', '廒'), + (0xFA83, 'M', '廙'), + (0xFA84, 'M', '彩'), + (0xFA85, 'M', '徭'), + (0xFA86, 'M', '惘'), + (0xFA87, 'M', '慎'), + (0xFA88, 'M', '愈'), + (0xFA89, 'M', '憎'), + (0xFA8A, 'M', '慠'), + (0xFA8B, 'M', '懲'), + (0xFA8C, 'M', '戴'), + (0xFA8D, 'M', '揄'), + (0xFA8E, 'M', '搜'), + (0xFA8F, 'M', '摒'), + (0xFA90, 'M', '敖'), + (0xFA91, 'M', '晴'), + (0xFA92, 'M', '朗'), + (0xFA93, 'M', '望'), + (0xFA94, 'M', '杖'), + (0xFA95, 'M', '歹'), + (0xFA96, 'M', '殺'), + (0xFA97, 'M', '流'), + (0xFA98, 'M', '滛'), + (0xFA99, 'M', '滋'), + (0xFA9A, 'M', '漢'), + (0xFA9B, 'M', '瀞'), + (0xFA9C, 'M', '煮'), + (0xFA9D, 'M', '瞧'), + (0xFA9E, 'M', '爵'), + (0xFA9F, 'M', '犯'), + (0xFAA0, 'M', '猪'), + (0xFAA1, 'M', '瑱'), + (0xFAA2, 'M', '甆'), + (0xFAA3, 'M', '画'), + (0xFAA4, 'M', '瘝'), + (0xFAA5, 'M', '瘟'), + (0xFAA6, 'M', '益'), + (0xFAA7, 'M', '盛'), + (0xFAA8, 'M', '直'), + (0xFAA9, 'M', '睊'), + (0xFAAA, 'M', '着'), + (0xFAAB, 'M', '磌'), + (0xFAAC, 'M', '窱'), + (0xFAAD, 'M', '節'), + (0xFAAE, 'M', '类'), + (0xFAAF, 'M', '絛'), + (0xFAB0, 'M', '練'), + (0xFAB1, 'M', '缾'), + (0xFAB2, 'M', '者'), + (0xFAB3, 'M', '荒'), + (0xFAB4, 'M', '華'), + (0xFAB5, 'M', '蝹'), + (0xFAB6, 'M', '襁'), + (0xFAB7, 'M', '覆'), + (0xFAB8, 'M', '視'), + (0xFAB9, 'M', '調'), + (0xFABA, 'M', '諸'), + (0xFABB, 'M', '請'), + (0xFABC, 'M', '謁'), + (0xFABD, 'M', '諾'), + (0xFABE, 'M', '諭'), + (0xFABF, 'M', '謹'), + (0xFAC0, 'M', '變'), + (0xFAC1, 'M', '贈'), + (0xFAC2, 'M', '輸'), + (0xFAC3, 'M', '遲'), + (0xFAC4, 'M', '醙'), + (0xFAC5, 'M', '鉶'), + (0xFAC6, 'M', '陼'), + (0xFAC7, 'M', '難'), + (0xFAC8, 'M', '靖'), + (0xFAC9, 'M', '韛'), + (0xFACA, 'M', '響'), + (0xFACB, 'M', '頋'), + (0xFACC, 'M', '頻'), + (0xFACD, 'M', '鬒'), + (0xFACE, 'M', '龜'), + (0xFACF, 'M', '𢡊'), + (0xFAD0, 'M', '𢡄'), + (0xFAD1, 'M', '𣏕'), + (0xFAD2, 'M', '㮝'), + (0xFAD3, 'M', '䀘'), + (0xFAD4, 'M', '䀹'), + (0xFAD5, 'M', '𥉉'), + (0xFAD6, 'M', '𥳐'), + (0xFAD7, 'M', '𧻓'), + (0xFAD8, 'M', '齃'), + (0xFAD9, 'M', '龎'), + (0xFADA, 'X'), + (0xFB00, 'M', 'ff'), + (0xFB01, 'M', 'fi'), + (0xFB02, 'M', 'fl'), + (0xFB03, 'M', 'ffi'), + (0xFB04, 'M', 'ffl'), + (0xFB05, 'M', 'st'), + ] + +def _seg_44() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFB07, 'X'), + (0xFB13, 'M', 'մն'), + (0xFB14, 'M', 'մե'), + (0xFB15, 'M', 'մի'), + (0xFB16, 'M', 'վն'), + (0xFB17, 'M', 'մխ'), + (0xFB18, 'X'), + (0xFB1D, 'M', 'יִ'), + (0xFB1E, 'V'), + (0xFB1F, 'M', 'ײַ'), + (0xFB20, 'M', 'ע'), + (0xFB21, 'M', 'א'), + (0xFB22, 'M', 'ד'), + (0xFB23, 'M', 'ה'), + (0xFB24, 'M', 'כ'), + (0xFB25, 'M', 'ל'), + (0xFB26, 'M', 'ם'), + (0xFB27, 'M', 'ר'), + (0xFB28, 'M', 'ת'), + (0xFB29, '3', '+'), + (0xFB2A, 'M', 'שׁ'), + (0xFB2B, 'M', 'שׂ'), + (0xFB2C, 'M', 'שּׁ'), + (0xFB2D, 'M', 'שּׂ'), + (0xFB2E, 'M', 'אַ'), + (0xFB2F, 'M', 'אָ'), + (0xFB30, 'M', 'אּ'), + (0xFB31, 'M', 'בּ'), + (0xFB32, 'M', 'גּ'), + (0xFB33, 'M', 'דּ'), + (0xFB34, 'M', 'הּ'), + (0xFB35, 'M', 'וּ'), + (0xFB36, 'M', 'זּ'), + (0xFB37, 'X'), + (0xFB38, 'M', 'טּ'), + (0xFB39, 'M', 'יּ'), + (0xFB3A, 'M', 'ךּ'), + (0xFB3B, 'M', 'כּ'), + (0xFB3C, 'M', 'לּ'), + (0xFB3D, 'X'), + (0xFB3E, 'M', 'מּ'), + (0xFB3F, 'X'), + (0xFB40, 'M', 'נּ'), + (0xFB41, 'M', 'סּ'), + (0xFB42, 'X'), + (0xFB43, 'M', 'ףּ'), + (0xFB44, 'M', 'פּ'), + (0xFB45, 'X'), + (0xFB46, 'M', 'צּ'), + (0xFB47, 'M', 'קּ'), + (0xFB48, 'M', 'רּ'), + (0xFB49, 'M', 'שּ'), + (0xFB4A, 'M', 'תּ'), + (0xFB4B, 'M', 'וֹ'), + (0xFB4C, 'M', 'בֿ'), + (0xFB4D, 'M', 'כֿ'), + (0xFB4E, 'M', 'פֿ'), + (0xFB4F, 'M', 'אל'), + (0xFB50, 'M', 'ٱ'), + (0xFB52, 'M', 'ٻ'), + (0xFB56, 'M', 'پ'), + (0xFB5A, 'M', 'ڀ'), + (0xFB5E, 'M', 'ٺ'), + (0xFB62, 'M', 'ٿ'), + (0xFB66, 'M', 'ٹ'), + (0xFB6A, 'M', 'ڤ'), + (0xFB6E, 'M', 'ڦ'), + (0xFB72, 'M', 'ڄ'), + (0xFB76, 'M', 'ڃ'), + (0xFB7A, 'M', 'چ'), + (0xFB7E, 'M', 'ڇ'), + (0xFB82, 'M', 'ڍ'), + (0xFB84, 'M', 'ڌ'), + (0xFB86, 'M', 'ڎ'), + (0xFB88, 'M', 'ڈ'), + (0xFB8A, 'M', 'ژ'), + (0xFB8C, 'M', 'ڑ'), + (0xFB8E, 'M', 'ک'), + (0xFB92, 'M', 'گ'), + (0xFB96, 'M', 'ڳ'), + (0xFB9A, 'M', 'ڱ'), + (0xFB9E, 'M', 'ں'), + (0xFBA0, 'M', 'ڻ'), + (0xFBA4, 'M', 'ۀ'), + (0xFBA6, 'M', 'ہ'), + (0xFBAA, 'M', 'ھ'), + (0xFBAE, 'M', 'ے'), + (0xFBB0, 'M', 'ۓ'), + (0xFBB2, 'V'), + (0xFBC3, 'X'), + (0xFBD3, 'M', 'ڭ'), + (0xFBD7, 'M', 'ۇ'), + (0xFBD9, 'M', 'ۆ'), + (0xFBDB, 'M', 'ۈ'), + (0xFBDD, 'M', 'ۇٴ'), + (0xFBDE, 'M', 'ۋ'), + (0xFBE0, 'M', 'ۅ'), + (0xFBE2, 'M', 'ۉ'), + (0xFBE4, 'M', 'ې'), + (0xFBE8, 'M', 'ى'), + ] + +def _seg_45() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFBEA, 'M', 'ئا'), + (0xFBEC, 'M', 'ئە'), + (0xFBEE, 'M', 'ئو'), + (0xFBF0, 'M', 'ئۇ'), + (0xFBF2, 'M', 'ئۆ'), + (0xFBF4, 'M', 'ئۈ'), + (0xFBF6, 'M', 'ئې'), + (0xFBF9, 'M', 'ئى'), + (0xFBFC, 'M', 'ی'), + (0xFC00, 'M', 'ئج'), + (0xFC01, 'M', 'ئح'), + (0xFC02, 'M', 'ئم'), + (0xFC03, 'M', 'ئى'), + (0xFC04, 'M', 'ئي'), + (0xFC05, 'M', 'بج'), + (0xFC06, 'M', 'بح'), + (0xFC07, 'M', 'بخ'), + (0xFC08, 'M', 'بم'), + (0xFC09, 'M', 'بى'), + (0xFC0A, 'M', 'بي'), + (0xFC0B, 'M', 'تج'), + (0xFC0C, 'M', 'تح'), + (0xFC0D, 'M', 'تخ'), + (0xFC0E, 'M', 'تم'), + (0xFC0F, 'M', 'تى'), + (0xFC10, 'M', 'تي'), + (0xFC11, 'M', 'ثج'), + (0xFC12, 'M', 'ثم'), + (0xFC13, 'M', 'ثى'), + (0xFC14, 'M', 'ثي'), + (0xFC15, 'M', 'جح'), + (0xFC16, 'M', 'جم'), + (0xFC17, 'M', 'حج'), + (0xFC18, 'M', 'حم'), + (0xFC19, 'M', 'خج'), + (0xFC1A, 'M', 'خح'), + (0xFC1B, 'M', 'خم'), + (0xFC1C, 'M', 'سج'), + (0xFC1D, 'M', 'سح'), + (0xFC1E, 'M', 'سخ'), + (0xFC1F, 'M', 'سم'), + (0xFC20, 'M', 'صح'), + (0xFC21, 'M', 'صم'), + (0xFC22, 'M', 'ضج'), + (0xFC23, 'M', 'ضح'), + (0xFC24, 'M', 'ضخ'), + (0xFC25, 'M', 'ضم'), + (0xFC26, 'M', 'طح'), + (0xFC27, 'M', 'طم'), + (0xFC28, 'M', 'ظم'), + (0xFC29, 'M', 'عج'), + (0xFC2A, 'M', 'عم'), + (0xFC2B, 'M', 'غج'), + (0xFC2C, 'M', 'غم'), + (0xFC2D, 'M', 'فج'), + (0xFC2E, 'M', 'فح'), + (0xFC2F, 'M', 'فخ'), + (0xFC30, 'M', 'فم'), + (0xFC31, 'M', 'فى'), + (0xFC32, 'M', 'في'), + (0xFC33, 'M', 'قح'), + (0xFC34, 'M', 'قم'), + (0xFC35, 'M', 'قى'), + (0xFC36, 'M', 'قي'), + (0xFC37, 'M', 'كا'), + (0xFC38, 'M', 'كج'), + (0xFC39, 'M', 'كح'), + (0xFC3A, 'M', 'كخ'), + (0xFC3B, 'M', 'كل'), + (0xFC3C, 'M', 'كم'), + (0xFC3D, 'M', 'كى'), + (0xFC3E, 'M', 'كي'), + (0xFC3F, 'M', 'لج'), + (0xFC40, 'M', 'لح'), + (0xFC41, 'M', 'لخ'), + (0xFC42, 'M', 'لم'), + (0xFC43, 'M', 'لى'), + (0xFC44, 'M', 'لي'), + (0xFC45, 'M', 'مج'), + (0xFC46, 'M', 'مح'), + (0xFC47, 'M', 'مخ'), + (0xFC48, 'M', 'مم'), + (0xFC49, 'M', 'مى'), + (0xFC4A, 'M', 'مي'), + (0xFC4B, 'M', 'نج'), + (0xFC4C, 'M', 'نح'), + (0xFC4D, 'M', 'نخ'), + (0xFC4E, 'M', 'نم'), + (0xFC4F, 'M', 'نى'), + (0xFC50, 'M', 'ني'), + (0xFC51, 'M', 'هج'), + (0xFC52, 'M', 'هم'), + (0xFC53, 'M', 'هى'), + (0xFC54, 'M', 'هي'), + (0xFC55, 'M', 'يج'), + (0xFC56, 'M', 'يح'), + (0xFC57, 'M', 'يخ'), + (0xFC58, 'M', 'يم'), + (0xFC59, 'M', 'يى'), + (0xFC5A, 'M', 'يي'), + ] + +def _seg_46() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFC5B, 'M', 'ذٰ'), + (0xFC5C, 'M', 'رٰ'), + (0xFC5D, 'M', 'ىٰ'), + (0xFC5E, '3', ' ٌّ'), + (0xFC5F, '3', ' ٍّ'), + (0xFC60, '3', ' َّ'), + (0xFC61, '3', ' ُّ'), + (0xFC62, '3', ' ِّ'), + (0xFC63, '3', ' ّٰ'), + (0xFC64, 'M', 'ئر'), + (0xFC65, 'M', 'ئز'), + (0xFC66, 'M', 'ئم'), + (0xFC67, 'M', 'ئن'), + (0xFC68, 'M', 'ئى'), + (0xFC69, 'M', 'ئي'), + (0xFC6A, 'M', 'بر'), + (0xFC6B, 'M', 'بز'), + (0xFC6C, 'M', 'بم'), + (0xFC6D, 'M', 'بن'), + (0xFC6E, 'M', 'بى'), + (0xFC6F, 'M', 'بي'), + (0xFC70, 'M', 'تر'), + (0xFC71, 'M', 'تز'), + (0xFC72, 'M', 'تم'), + (0xFC73, 'M', 'تن'), + (0xFC74, 'M', 'تى'), + (0xFC75, 'M', 'تي'), + (0xFC76, 'M', 'ثر'), + (0xFC77, 'M', 'ثز'), + (0xFC78, 'M', 'ثم'), + (0xFC79, 'M', 'ثن'), + (0xFC7A, 'M', 'ثى'), + (0xFC7B, 'M', 'ثي'), + (0xFC7C, 'M', 'فى'), + (0xFC7D, 'M', 'في'), + (0xFC7E, 'M', 'قى'), + (0xFC7F, 'M', 'قي'), + (0xFC80, 'M', 'كا'), + (0xFC81, 'M', 'كل'), + (0xFC82, 'M', 'كم'), + (0xFC83, 'M', 'كى'), + (0xFC84, 'M', 'كي'), + (0xFC85, 'M', 'لم'), + (0xFC86, 'M', 'لى'), + (0xFC87, 'M', 'لي'), + (0xFC88, 'M', 'ما'), + (0xFC89, 'M', 'مم'), + (0xFC8A, 'M', 'نر'), + (0xFC8B, 'M', 'نز'), + (0xFC8C, 'M', 'نم'), + (0xFC8D, 'M', 'نن'), + (0xFC8E, 'M', 'نى'), + (0xFC8F, 'M', 'ني'), + (0xFC90, 'M', 'ىٰ'), + (0xFC91, 'M', 'ير'), + (0xFC92, 'M', 'يز'), + (0xFC93, 'M', 'يم'), + (0xFC94, 'M', 'ين'), + (0xFC95, 'M', 'يى'), + (0xFC96, 'M', 'يي'), + (0xFC97, 'M', 'ئج'), + (0xFC98, 'M', 'ئح'), + (0xFC99, 'M', 'ئخ'), + (0xFC9A, 'M', 'ئم'), + (0xFC9B, 'M', 'ئه'), + (0xFC9C, 'M', 'بج'), + (0xFC9D, 'M', 'بح'), + (0xFC9E, 'M', 'بخ'), + (0xFC9F, 'M', 'بم'), + (0xFCA0, 'M', 'به'), + (0xFCA1, 'M', 'تج'), + (0xFCA2, 'M', 'تح'), + (0xFCA3, 'M', 'تخ'), + (0xFCA4, 'M', 'تم'), + (0xFCA5, 'M', 'ته'), + (0xFCA6, 'M', 'ثم'), + (0xFCA7, 'M', 'جح'), + (0xFCA8, 'M', 'جم'), + (0xFCA9, 'M', 'حج'), + (0xFCAA, 'M', 'حم'), + (0xFCAB, 'M', 'خج'), + (0xFCAC, 'M', 'خم'), + (0xFCAD, 'M', 'سج'), + (0xFCAE, 'M', 'سح'), + (0xFCAF, 'M', 'سخ'), + (0xFCB0, 'M', 'سم'), + (0xFCB1, 'M', 'صح'), + (0xFCB2, 'M', 'صخ'), + (0xFCB3, 'M', 'صم'), + (0xFCB4, 'M', 'ضج'), + (0xFCB5, 'M', 'ضح'), + (0xFCB6, 'M', 'ضخ'), + (0xFCB7, 'M', 'ضم'), + (0xFCB8, 'M', 'طح'), + (0xFCB9, 'M', 'ظم'), + (0xFCBA, 'M', 'عج'), + (0xFCBB, 'M', 'عم'), + (0xFCBC, 'M', 'غج'), + (0xFCBD, 'M', 'غم'), + (0xFCBE, 'M', 'فج'), + ] + +def _seg_47() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFCBF, 'M', 'فح'), + (0xFCC0, 'M', 'فخ'), + (0xFCC1, 'M', 'فم'), + (0xFCC2, 'M', 'قح'), + (0xFCC3, 'M', 'قم'), + (0xFCC4, 'M', 'كج'), + (0xFCC5, 'M', 'كح'), + (0xFCC6, 'M', 'كخ'), + (0xFCC7, 'M', 'كل'), + (0xFCC8, 'M', 'كم'), + (0xFCC9, 'M', 'لج'), + (0xFCCA, 'M', 'لح'), + (0xFCCB, 'M', 'لخ'), + (0xFCCC, 'M', 'لم'), + (0xFCCD, 'M', 'له'), + (0xFCCE, 'M', 'مج'), + (0xFCCF, 'M', 'مح'), + (0xFCD0, 'M', 'مخ'), + (0xFCD1, 'M', 'مم'), + (0xFCD2, 'M', 'نج'), + (0xFCD3, 'M', 'نح'), + (0xFCD4, 'M', 'نخ'), + (0xFCD5, 'M', 'نم'), + (0xFCD6, 'M', 'نه'), + (0xFCD7, 'M', 'هج'), + (0xFCD8, 'M', 'هم'), + (0xFCD9, 'M', 'هٰ'), + (0xFCDA, 'M', 'يج'), + (0xFCDB, 'M', 'يح'), + (0xFCDC, 'M', 'يخ'), + (0xFCDD, 'M', 'يم'), + (0xFCDE, 'M', 'يه'), + (0xFCDF, 'M', 'ئم'), + (0xFCE0, 'M', 'ئه'), + (0xFCE1, 'M', 'بم'), + (0xFCE2, 'M', 'به'), + (0xFCE3, 'M', 'تم'), + (0xFCE4, 'M', 'ته'), + (0xFCE5, 'M', 'ثم'), + (0xFCE6, 'M', 'ثه'), + (0xFCE7, 'M', 'سم'), + (0xFCE8, 'M', 'سه'), + (0xFCE9, 'M', 'شم'), + (0xFCEA, 'M', 'شه'), + (0xFCEB, 'M', 'كل'), + (0xFCEC, 'M', 'كم'), + (0xFCED, 'M', 'لم'), + (0xFCEE, 'M', 'نم'), + (0xFCEF, 'M', 'نه'), + (0xFCF0, 'M', 'يم'), + (0xFCF1, 'M', 'يه'), + (0xFCF2, 'M', 'ـَّ'), + (0xFCF3, 'M', 'ـُّ'), + (0xFCF4, 'M', 'ـِّ'), + (0xFCF5, 'M', 'طى'), + (0xFCF6, 'M', 'طي'), + (0xFCF7, 'M', 'عى'), + (0xFCF8, 'M', 'عي'), + (0xFCF9, 'M', 'غى'), + (0xFCFA, 'M', 'غي'), + (0xFCFB, 'M', 'سى'), + (0xFCFC, 'M', 'سي'), + (0xFCFD, 'M', 'شى'), + (0xFCFE, 'M', 'شي'), + (0xFCFF, 'M', 'حى'), + (0xFD00, 'M', 'حي'), + (0xFD01, 'M', 'جى'), + (0xFD02, 'M', 'جي'), + (0xFD03, 'M', 'خى'), + (0xFD04, 'M', 'خي'), + (0xFD05, 'M', 'صى'), + (0xFD06, 'M', 'صي'), + (0xFD07, 'M', 'ضى'), + (0xFD08, 'M', 'ضي'), + (0xFD09, 'M', 'شج'), + (0xFD0A, 'M', 'شح'), + (0xFD0B, 'M', 'شخ'), + (0xFD0C, 'M', 'شم'), + (0xFD0D, 'M', 'شر'), + (0xFD0E, 'M', 'سر'), + (0xFD0F, 'M', 'صر'), + (0xFD10, 'M', 'ضر'), + (0xFD11, 'M', 'طى'), + (0xFD12, 'M', 'طي'), + (0xFD13, 'M', 'عى'), + (0xFD14, 'M', 'عي'), + (0xFD15, 'M', 'غى'), + (0xFD16, 'M', 'غي'), + (0xFD17, 'M', 'سى'), + (0xFD18, 'M', 'سي'), + (0xFD19, 'M', 'شى'), + (0xFD1A, 'M', 'شي'), + (0xFD1B, 'M', 'حى'), + (0xFD1C, 'M', 'حي'), + (0xFD1D, 'M', 'جى'), + (0xFD1E, 'M', 'جي'), + (0xFD1F, 'M', 'خى'), + (0xFD20, 'M', 'خي'), + (0xFD21, 'M', 'صى'), + (0xFD22, 'M', 'صي'), + ] + +def _seg_48() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFD23, 'M', 'ضى'), + (0xFD24, 'M', 'ضي'), + (0xFD25, 'M', 'شج'), + (0xFD26, 'M', 'شح'), + (0xFD27, 'M', 'شخ'), + (0xFD28, 'M', 'شم'), + (0xFD29, 'M', 'شر'), + (0xFD2A, 'M', 'سر'), + (0xFD2B, 'M', 'صر'), + (0xFD2C, 'M', 'ضر'), + (0xFD2D, 'M', 'شج'), + (0xFD2E, 'M', 'شح'), + (0xFD2F, 'M', 'شخ'), + (0xFD30, 'M', 'شم'), + (0xFD31, 'M', 'سه'), + (0xFD32, 'M', 'شه'), + (0xFD33, 'M', 'طم'), + (0xFD34, 'M', 'سج'), + (0xFD35, 'M', 'سح'), + (0xFD36, 'M', 'سخ'), + (0xFD37, 'M', 'شج'), + (0xFD38, 'M', 'شح'), + (0xFD39, 'M', 'شخ'), + (0xFD3A, 'M', 'طم'), + (0xFD3B, 'M', 'ظم'), + (0xFD3C, 'M', 'اً'), + (0xFD3E, 'V'), + (0xFD50, 'M', 'تجم'), + (0xFD51, 'M', 'تحج'), + (0xFD53, 'M', 'تحم'), + (0xFD54, 'M', 'تخم'), + (0xFD55, 'M', 'تمج'), + (0xFD56, 'M', 'تمح'), + (0xFD57, 'M', 'تمخ'), + (0xFD58, 'M', 'جمح'), + (0xFD5A, 'M', 'حمي'), + (0xFD5B, 'M', 'حمى'), + (0xFD5C, 'M', 'سحج'), + (0xFD5D, 'M', 'سجح'), + (0xFD5E, 'M', 'سجى'), + (0xFD5F, 'M', 'سمح'), + (0xFD61, 'M', 'سمج'), + (0xFD62, 'M', 'سمم'), + (0xFD64, 'M', 'صحح'), + (0xFD66, 'M', 'صمم'), + (0xFD67, 'M', 'شحم'), + (0xFD69, 'M', 'شجي'), + (0xFD6A, 'M', 'شمخ'), + (0xFD6C, 'M', 'شمم'), + (0xFD6E, 'M', 'ضحى'), + (0xFD6F, 'M', 'ضخم'), + (0xFD71, 'M', 'طمح'), + (0xFD73, 'M', 'طمم'), + (0xFD74, 'M', 'طمي'), + (0xFD75, 'M', 'عجم'), + (0xFD76, 'M', 'عمم'), + (0xFD78, 'M', 'عمى'), + (0xFD79, 'M', 'غمم'), + (0xFD7A, 'M', 'غمي'), + (0xFD7B, 'M', 'غمى'), + (0xFD7C, 'M', 'فخم'), + (0xFD7E, 'M', 'قمح'), + (0xFD7F, 'M', 'قمم'), + (0xFD80, 'M', 'لحم'), + (0xFD81, 'M', 'لحي'), + (0xFD82, 'M', 'لحى'), + (0xFD83, 'M', 'لجج'), + (0xFD85, 'M', 'لخم'), + (0xFD87, 'M', 'لمح'), + (0xFD89, 'M', 'محج'), + (0xFD8A, 'M', 'محم'), + (0xFD8B, 'M', 'محي'), + (0xFD8C, 'M', 'مجح'), + (0xFD8D, 'M', 'مجم'), + (0xFD8E, 'M', 'مخج'), + (0xFD8F, 'M', 'مخم'), + (0xFD90, 'X'), + (0xFD92, 'M', 'مجخ'), + (0xFD93, 'M', 'همج'), + (0xFD94, 'M', 'همم'), + (0xFD95, 'M', 'نحم'), + (0xFD96, 'M', 'نحى'), + (0xFD97, 'M', 'نجم'), + (0xFD99, 'M', 'نجى'), + (0xFD9A, 'M', 'نمي'), + (0xFD9B, 'M', 'نمى'), + (0xFD9C, 'M', 'يمم'), + (0xFD9E, 'M', 'بخي'), + (0xFD9F, 'M', 'تجي'), + (0xFDA0, 'M', 'تجى'), + (0xFDA1, 'M', 'تخي'), + (0xFDA2, 'M', 'تخى'), + (0xFDA3, 'M', 'تمي'), + (0xFDA4, 'M', 'تمى'), + (0xFDA5, 'M', 'جمي'), + (0xFDA6, 'M', 'جحى'), + (0xFDA7, 'M', 'جمى'), + (0xFDA8, 'M', 'سخى'), + (0xFDA9, 'M', 'صحي'), + (0xFDAA, 'M', 'شحي'), + ] + +def _seg_49() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFDAB, 'M', 'ضحي'), + (0xFDAC, 'M', 'لجي'), + (0xFDAD, 'M', 'لمي'), + (0xFDAE, 'M', 'يحي'), + (0xFDAF, 'M', 'يجي'), + (0xFDB0, 'M', 'يمي'), + (0xFDB1, 'M', 'ممي'), + (0xFDB2, 'M', 'قمي'), + (0xFDB3, 'M', 'نحي'), + (0xFDB4, 'M', 'قمح'), + (0xFDB5, 'M', 'لحم'), + (0xFDB6, 'M', 'عمي'), + (0xFDB7, 'M', 'كمي'), + (0xFDB8, 'M', 'نجح'), + (0xFDB9, 'M', 'مخي'), + (0xFDBA, 'M', 'لجم'), + (0xFDBB, 'M', 'كمم'), + (0xFDBC, 'M', 'لجم'), + (0xFDBD, 'M', 'نجح'), + (0xFDBE, 'M', 'جحي'), + (0xFDBF, 'M', 'حجي'), + (0xFDC0, 'M', 'مجي'), + (0xFDC1, 'M', 'فمي'), + (0xFDC2, 'M', 'بحي'), + (0xFDC3, 'M', 'كمم'), + (0xFDC4, 'M', 'عجم'), + (0xFDC5, 'M', 'صمم'), + (0xFDC6, 'M', 'سخي'), + (0xFDC7, 'M', 'نجي'), + (0xFDC8, 'X'), + (0xFDCF, 'V'), + (0xFDD0, 'X'), + (0xFDF0, 'M', 'صلے'), + (0xFDF1, 'M', 'قلے'), + (0xFDF2, 'M', 'الله'), + (0xFDF3, 'M', 'اكبر'), + (0xFDF4, 'M', 'محمد'), + (0xFDF5, 'M', 'صلعم'), + (0xFDF6, 'M', 'رسول'), + (0xFDF7, 'M', 'عليه'), + (0xFDF8, 'M', 'وسلم'), + (0xFDF9, 'M', 'صلى'), + (0xFDFA, '3', 'صلى الله عليه وسلم'), + (0xFDFB, '3', 'جل جلاله'), + (0xFDFC, 'M', 'ریال'), + (0xFDFD, 'V'), + (0xFE00, 'I'), + (0xFE10, '3', ','), + (0xFE11, 'M', '、'), + (0xFE12, 'X'), + (0xFE13, '3', ':'), + (0xFE14, '3', ';'), + (0xFE15, '3', '!'), + (0xFE16, '3', '?'), + (0xFE17, 'M', '〖'), + (0xFE18, 'M', '〗'), + (0xFE19, 'X'), + (0xFE20, 'V'), + (0xFE30, 'X'), + (0xFE31, 'M', '—'), + (0xFE32, 'M', '–'), + (0xFE33, '3', '_'), + (0xFE35, '3', '('), + (0xFE36, '3', ')'), + (0xFE37, '3', '{'), + (0xFE38, '3', '}'), + (0xFE39, 'M', '〔'), + (0xFE3A, 'M', '〕'), + (0xFE3B, 'M', '【'), + (0xFE3C, 'M', '】'), + (0xFE3D, 'M', '《'), + (0xFE3E, 'M', '》'), + (0xFE3F, 'M', '〈'), + (0xFE40, 'M', '〉'), + (0xFE41, 'M', '「'), + (0xFE42, 'M', '」'), + (0xFE43, 'M', '『'), + (0xFE44, 'M', '』'), + (0xFE45, 'V'), + (0xFE47, '3', '['), + (0xFE48, '3', ']'), + (0xFE49, '3', ' ̅'), + (0xFE4D, '3', '_'), + (0xFE50, '3', ','), + (0xFE51, 'M', '、'), + (0xFE52, 'X'), + (0xFE54, '3', ';'), + (0xFE55, '3', ':'), + (0xFE56, '3', '?'), + (0xFE57, '3', '!'), + (0xFE58, 'M', '—'), + (0xFE59, '3', '('), + (0xFE5A, '3', ')'), + (0xFE5B, '3', '{'), + (0xFE5C, '3', '}'), + (0xFE5D, 'M', '〔'), + (0xFE5E, 'M', '〕'), + (0xFE5F, '3', '#'), + (0xFE60, '3', '&'), + (0xFE61, '3', '*'), + ] + +def _seg_50() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFE62, '3', '+'), + (0xFE63, 'M', '-'), + (0xFE64, '3', '<'), + (0xFE65, '3', '>'), + (0xFE66, '3', '='), + (0xFE67, 'X'), + (0xFE68, '3', '\\'), + (0xFE69, '3', '$'), + (0xFE6A, '3', '%'), + (0xFE6B, '3', '@'), + (0xFE6C, 'X'), + (0xFE70, '3', ' ً'), + (0xFE71, 'M', 'ـً'), + (0xFE72, '3', ' ٌ'), + (0xFE73, 'V'), + (0xFE74, '3', ' ٍ'), + (0xFE75, 'X'), + (0xFE76, '3', ' َ'), + (0xFE77, 'M', 'ـَ'), + (0xFE78, '3', ' ُ'), + (0xFE79, 'M', 'ـُ'), + (0xFE7A, '3', ' ِ'), + (0xFE7B, 'M', 'ـِ'), + (0xFE7C, '3', ' ّ'), + (0xFE7D, 'M', 'ـّ'), + (0xFE7E, '3', ' ْ'), + (0xFE7F, 'M', 'ـْ'), + (0xFE80, 'M', 'ء'), + (0xFE81, 'M', 'آ'), + (0xFE83, 'M', 'أ'), + (0xFE85, 'M', 'ؤ'), + (0xFE87, 'M', 'إ'), + (0xFE89, 'M', 'ئ'), + (0xFE8D, 'M', 'ا'), + (0xFE8F, 'M', 'ب'), + (0xFE93, 'M', 'ة'), + (0xFE95, 'M', 'ت'), + (0xFE99, 'M', 'ث'), + (0xFE9D, 'M', 'ج'), + (0xFEA1, 'M', 'ح'), + (0xFEA5, 'M', 'خ'), + (0xFEA9, 'M', 'د'), + (0xFEAB, 'M', 'ذ'), + (0xFEAD, 'M', 'ر'), + (0xFEAF, 'M', 'ز'), + (0xFEB1, 'M', 'س'), + (0xFEB5, 'M', 'ش'), + (0xFEB9, 'M', 'ص'), + (0xFEBD, 'M', 'ض'), + (0xFEC1, 'M', 'ط'), + (0xFEC5, 'M', 'ظ'), + (0xFEC9, 'M', 'ع'), + (0xFECD, 'M', 'غ'), + (0xFED1, 'M', 'ف'), + (0xFED5, 'M', 'ق'), + (0xFED9, 'M', 'ك'), + (0xFEDD, 'M', 'ل'), + (0xFEE1, 'M', 'م'), + (0xFEE5, 'M', 'ن'), + (0xFEE9, 'M', 'ه'), + (0xFEED, 'M', 'و'), + (0xFEEF, 'M', 'ى'), + (0xFEF1, 'M', 'ي'), + (0xFEF5, 'M', 'لآ'), + (0xFEF7, 'M', 'لأ'), + (0xFEF9, 'M', 'لإ'), + (0xFEFB, 'M', 'لا'), + (0xFEFD, 'X'), + (0xFEFF, 'I'), + (0xFF00, 'X'), + (0xFF01, '3', '!'), + (0xFF02, '3', '"'), + (0xFF03, '3', '#'), + (0xFF04, '3', '$'), + (0xFF05, '3', '%'), + (0xFF06, '3', '&'), + (0xFF07, '3', '\''), + (0xFF08, '3', '('), + (0xFF09, '3', ')'), + (0xFF0A, '3', '*'), + (0xFF0B, '3', '+'), + (0xFF0C, '3', ','), + (0xFF0D, 'M', '-'), + (0xFF0E, 'M', '.'), + (0xFF0F, '3', '/'), + (0xFF10, 'M', '0'), + (0xFF11, 'M', '1'), + (0xFF12, 'M', '2'), + (0xFF13, 'M', '3'), + (0xFF14, 'M', '4'), + (0xFF15, 'M', '5'), + (0xFF16, 'M', '6'), + (0xFF17, 'M', '7'), + (0xFF18, 'M', '8'), + (0xFF19, 'M', '9'), + (0xFF1A, '3', ':'), + (0xFF1B, '3', ';'), + (0xFF1C, '3', '<'), + (0xFF1D, '3', '='), + (0xFF1E, '3', '>'), + ] + +def _seg_51() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF1F, '3', '?'), + (0xFF20, '3', '@'), + (0xFF21, 'M', 'a'), + (0xFF22, 'M', 'b'), + (0xFF23, 'M', 'c'), + (0xFF24, 'M', 'd'), + (0xFF25, 'M', 'e'), + (0xFF26, 'M', 'f'), + (0xFF27, 'M', 'g'), + (0xFF28, 'M', 'h'), + (0xFF29, 'M', 'i'), + (0xFF2A, 'M', 'j'), + (0xFF2B, 'M', 'k'), + (0xFF2C, 'M', 'l'), + (0xFF2D, 'M', 'm'), + (0xFF2E, 'M', 'n'), + (0xFF2F, 'M', 'o'), + (0xFF30, 'M', 'p'), + (0xFF31, 'M', 'q'), + (0xFF32, 'M', 'r'), + (0xFF33, 'M', 's'), + (0xFF34, 'M', 't'), + (0xFF35, 'M', 'u'), + (0xFF36, 'M', 'v'), + (0xFF37, 'M', 'w'), + (0xFF38, 'M', 'x'), + (0xFF39, 'M', 'y'), + (0xFF3A, 'M', 'z'), + (0xFF3B, '3', '['), + (0xFF3C, '3', '\\'), + (0xFF3D, '3', ']'), + (0xFF3E, '3', '^'), + (0xFF3F, '3', '_'), + (0xFF40, '3', '`'), + (0xFF41, 'M', 'a'), + (0xFF42, 'M', 'b'), + (0xFF43, 'M', 'c'), + (0xFF44, 'M', 'd'), + (0xFF45, 'M', 'e'), + (0xFF46, 'M', 'f'), + (0xFF47, 'M', 'g'), + (0xFF48, 'M', 'h'), + (0xFF49, 'M', 'i'), + (0xFF4A, 'M', 'j'), + (0xFF4B, 'M', 'k'), + (0xFF4C, 'M', 'l'), + (0xFF4D, 'M', 'm'), + (0xFF4E, 'M', 'n'), + (0xFF4F, 'M', 'o'), + (0xFF50, 'M', 'p'), + (0xFF51, 'M', 'q'), + (0xFF52, 'M', 'r'), + (0xFF53, 'M', 's'), + (0xFF54, 'M', 't'), + (0xFF55, 'M', 'u'), + (0xFF56, 'M', 'v'), + (0xFF57, 'M', 'w'), + (0xFF58, 'M', 'x'), + (0xFF59, 'M', 'y'), + (0xFF5A, 'M', 'z'), + (0xFF5B, '3', '{'), + (0xFF5C, '3', '|'), + (0xFF5D, '3', '}'), + (0xFF5E, '3', '~'), + (0xFF5F, 'M', '⦅'), + (0xFF60, 'M', '⦆'), + (0xFF61, 'M', '.'), + (0xFF62, 'M', '「'), + (0xFF63, 'M', '」'), + (0xFF64, 'M', '、'), + (0xFF65, 'M', '・'), + (0xFF66, 'M', 'ヲ'), + (0xFF67, 'M', 'ァ'), + (0xFF68, 'M', 'ィ'), + (0xFF69, 'M', 'ゥ'), + (0xFF6A, 'M', 'ェ'), + (0xFF6B, 'M', 'ォ'), + (0xFF6C, 'M', 'ャ'), + (0xFF6D, 'M', 'ュ'), + (0xFF6E, 'M', 'ョ'), + (0xFF6F, 'M', 'ッ'), + (0xFF70, 'M', 'ー'), + (0xFF71, 'M', 'ア'), + (0xFF72, 'M', 'イ'), + (0xFF73, 'M', 'ウ'), + (0xFF74, 'M', 'エ'), + (0xFF75, 'M', 'オ'), + (0xFF76, 'M', 'カ'), + (0xFF77, 'M', 'キ'), + (0xFF78, 'M', 'ク'), + (0xFF79, 'M', 'ケ'), + (0xFF7A, 'M', 'コ'), + (0xFF7B, 'M', 'サ'), + (0xFF7C, 'M', 'シ'), + (0xFF7D, 'M', 'ス'), + (0xFF7E, 'M', 'セ'), + (0xFF7F, 'M', 'ソ'), + (0xFF80, 'M', 'タ'), + (0xFF81, 'M', 'チ'), + (0xFF82, 'M', 'ツ'), + ] + +def _seg_52() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFF83, 'M', 'テ'), + (0xFF84, 'M', 'ト'), + (0xFF85, 'M', 'ナ'), + (0xFF86, 'M', 'ニ'), + (0xFF87, 'M', 'ヌ'), + (0xFF88, 'M', 'ネ'), + (0xFF89, 'M', 'ノ'), + (0xFF8A, 'M', 'ハ'), + (0xFF8B, 'M', 'ヒ'), + (0xFF8C, 'M', 'フ'), + (0xFF8D, 'M', 'ヘ'), + (0xFF8E, 'M', 'ホ'), + (0xFF8F, 'M', 'マ'), + (0xFF90, 'M', 'ミ'), + (0xFF91, 'M', 'ム'), + (0xFF92, 'M', 'メ'), + (0xFF93, 'M', 'モ'), + (0xFF94, 'M', 'ヤ'), + (0xFF95, 'M', 'ユ'), + (0xFF96, 'M', 'ヨ'), + (0xFF97, 'M', 'ラ'), + (0xFF98, 'M', 'リ'), + (0xFF99, 'M', 'ル'), + (0xFF9A, 'M', 'レ'), + (0xFF9B, 'M', 'ロ'), + (0xFF9C, 'M', 'ワ'), + (0xFF9D, 'M', 'ン'), + (0xFF9E, 'M', '゙'), + (0xFF9F, 'M', '゚'), + (0xFFA0, 'X'), + (0xFFA1, 'M', 'ᄀ'), + (0xFFA2, 'M', 'ᄁ'), + (0xFFA3, 'M', 'ᆪ'), + (0xFFA4, 'M', 'ᄂ'), + (0xFFA5, 'M', 'ᆬ'), + (0xFFA6, 'M', 'ᆭ'), + (0xFFA7, 'M', 'ᄃ'), + (0xFFA8, 'M', 'ᄄ'), + (0xFFA9, 'M', 'ᄅ'), + (0xFFAA, 'M', 'ᆰ'), + (0xFFAB, 'M', 'ᆱ'), + (0xFFAC, 'M', 'ᆲ'), + (0xFFAD, 'M', 'ᆳ'), + (0xFFAE, 'M', 'ᆴ'), + (0xFFAF, 'M', 'ᆵ'), + (0xFFB0, 'M', 'ᄚ'), + (0xFFB1, 'M', 'ᄆ'), + (0xFFB2, 'M', 'ᄇ'), + (0xFFB3, 'M', 'ᄈ'), + (0xFFB4, 'M', 'ᄡ'), + (0xFFB5, 'M', 'ᄉ'), + (0xFFB6, 'M', 'ᄊ'), + (0xFFB7, 'M', 'ᄋ'), + (0xFFB8, 'M', 'ᄌ'), + (0xFFB9, 'M', 'ᄍ'), + (0xFFBA, 'M', 'ᄎ'), + (0xFFBB, 'M', 'ᄏ'), + (0xFFBC, 'M', 'ᄐ'), + (0xFFBD, 'M', 'ᄑ'), + (0xFFBE, 'M', 'ᄒ'), + (0xFFBF, 'X'), + (0xFFC2, 'M', 'ᅡ'), + (0xFFC3, 'M', 'ᅢ'), + (0xFFC4, 'M', 'ᅣ'), + (0xFFC5, 'M', 'ᅤ'), + (0xFFC6, 'M', 'ᅥ'), + (0xFFC7, 'M', 'ᅦ'), + (0xFFC8, 'X'), + (0xFFCA, 'M', 'ᅧ'), + (0xFFCB, 'M', 'ᅨ'), + (0xFFCC, 'M', 'ᅩ'), + (0xFFCD, 'M', 'ᅪ'), + (0xFFCE, 'M', 'ᅫ'), + (0xFFCF, 'M', 'ᅬ'), + (0xFFD0, 'X'), + (0xFFD2, 'M', 'ᅭ'), + (0xFFD3, 'M', 'ᅮ'), + (0xFFD4, 'M', 'ᅯ'), + (0xFFD5, 'M', 'ᅰ'), + (0xFFD6, 'M', 'ᅱ'), + (0xFFD7, 'M', 'ᅲ'), + (0xFFD8, 'X'), + (0xFFDA, 'M', 'ᅳ'), + (0xFFDB, 'M', 'ᅴ'), + (0xFFDC, 'M', 'ᅵ'), + (0xFFDD, 'X'), + (0xFFE0, 'M', '¢'), + (0xFFE1, 'M', '£'), + (0xFFE2, 'M', '¬'), + (0xFFE3, '3', ' ̄'), + (0xFFE4, 'M', '¦'), + (0xFFE5, 'M', '¥'), + (0xFFE6, 'M', '₩'), + (0xFFE7, 'X'), + (0xFFE8, 'M', '│'), + (0xFFE9, 'M', '←'), + (0xFFEA, 'M', '↑'), + (0xFFEB, 'M', '→'), + (0xFFEC, 'M', '↓'), + (0xFFED, 'M', '■'), + ] + +def _seg_53() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0xFFEE, 'M', '○'), + (0xFFEF, 'X'), + (0x10000, 'V'), + (0x1000C, 'X'), + (0x1000D, 'V'), + (0x10027, 'X'), + (0x10028, 'V'), + (0x1003B, 'X'), + (0x1003C, 'V'), + (0x1003E, 'X'), + (0x1003F, 'V'), + (0x1004E, 'X'), + (0x10050, 'V'), + (0x1005E, 'X'), + (0x10080, 'V'), + (0x100FB, 'X'), + (0x10100, 'V'), + (0x10103, 'X'), + (0x10107, 'V'), + (0x10134, 'X'), + (0x10137, 'V'), + (0x1018F, 'X'), + (0x10190, 'V'), + (0x1019D, 'X'), + (0x101A0, 'V'), + (0x101A1, 'X'), + (0x101D0, 'V'), + (0x101FE, 'X'), + (0x10280, 'V'), + (0x1029D, 'X'), + (0x102A0, 'V'), + (0x102D1, 'X'), + (0x102E0, 'V'), + (0x102FC, 'X'), + (0x10300, 'V'), + (0x10324, 'X'), + (0x1032D, 'V'), + (0x1034B, 'X'), + (0x10350, 'V'), + (0x1037B, 'X'), + (0x10380, 'V'), + (0x1039E, 'X'), + (0x1039F, 'V'), + (0x103C4, 'X'), + (0x103C8, 'V'), + (0x103D6, 'X'), + (0x10400, 'M', '𐐨'), + (0x10401, 'M', '𐐩'), + (0x10402, 'M', '𐐪'), + (0x10403, 'M', '𐐫'), + (0x10404, 'M', '𐐬'), + (0x10405, 'M', '𐐭'), + (0x10406, 'M', '𐐮'), + (0x10407, 'M', '𐐯'), + (0x10408, 'M', '𐐰'), + (0x10409, 'M', '𐐱'), + (0x1040A, 'M', '𐐲'), + (0x1040B, 'M', '𐐳'), + (0x1040C, 'M', '𐐴'), + (0x1040D, 'M', '𐐵'), + (0x1040E, 'M', '𐐶'), + (0x1040F, 'M', '𐐷'), + (0x10410, 'M', '𐐸'), + (0x10411, 'M', '𐐹'), + (0x10412, 'M', '𐐺'), + (0x10413, 'M', '𐐻'), + (0x10414, 'M', '𐐼'), + (0x10415, 'M', '𐐽'), + (0x10416, 'M', '𐐾'), + (0x10417, 'M', '𐐿'), + (0x10418, 'M', '𐑀'), + (0x10419, 'M', '𐑁'), + (0x1041A, 'M', '𐑂'), + (0x1041B, 'M', '𐑃'), + (0x1041C, 'M', '𐑄'), + (0x1041D, 'M', '𐑅'), + (0x1041E, 'M', '𐑆'), + (0x1041F, 'M', '𐑇'), + (0x10420, 'M', '𐑈'), + (0x10421, 'M', '𐑉'), + (0x10422, 'M', '𐑊'), + (0x10423, 'M', '𐑋'), + (0x10424, 'M', '𐑌'), + (0x10425, 'M', '𐑍'), + (0x10426, 'M', '𐑎'), + (0x10427, 'M', '𐑏'), + (0x10428, 'V'), + (0x1049E, 'X'), + (0x104A0, 'V'), + (0x104AA, 'X'), + (0x104B0, 'M', '𐓘'), + (0x104B1, 'M', '𐓙'), + (0x104B2, 'M', '𐓚'), + (0x104B3, 'M', '𐓛'), + (0x104B4, 'M', '𐓜'), + (0x104B5, 'M', '𐓝'), + (0x104B6, 'M', '𐓞'), + (0x104B7, 'M', '𐓟'), + (0x104B8, 'M', '𐓠'), + (0x104B9, 'M', '𐓡'), + ] + +def _seg_54() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x104BA, 'M', '𐓢'), + (0x104BB, 'M', '𐓣'), + (0x104BC, 'M', '𐓤'), + (0x104BD, 'M', '𐓥'), + (0x104BE, 'M', '𐓦'), + (0x104BF, 'M', '𐓧'), + (0x104C0, 'M', '𐓨'), + (0x104C1, 'M', '𐓩'), + (0x104C2, 'M', '𐓪'), + (0x104C3, 'M', '𐓫'), + (0x104C4, 'M', '𐓬'), + (0x104C5, 'M', '𐓭'), + (0x104C6, 'M', '𐓮'), + (0x104C7, 'M', '𐓯'), + (0x104C8, 'M', '𐓰'), + (0x104C9, 'M', '𐓱'), + (0x104CA, 'M', '𐓲'), + (0x104CB, 'M', '𐓳'), + (0x104CC, 'M', '𐓴'), + (0x104CD, 'M', '𐓵'), + (0x104CE, 'M', '𐓶'), + (0x104CF, 'M', '𐓷'), + (0x104D0, 'M', '𐓸'), + (0x104D1, 'M', '𐓹'), + (0x104D2, 'M', '𐓺'), + (0x104D3, 'M', '𐓻'), + (0x104D4, 'X'), + (0x104D8, 'V'), + (0x104FC, 'X'), + (0x10500, 'V'), + (0x10528, 'X'), + (0x10530, 'V'), + (0x10564, 'X'), + (0x1056F, 'V'), + (0x10570, 'M', '𐖗'), + (0x10571, 'M', '𐖘'), + (0x10572, 'M', '𐖙'), + (0x10573, 'M', '𐖚'), + (0x10574, 'M', '𐖛'), + (0x10575, 'M', '𐖜'), + (0x10576, 'M', '𐖝'), + (0x10577, 'M', '𐖞'), + (0x10578, 'M', '𐖟'), + (0x10579, 'M', '𐖠'), + (0x1057A, 'M', '𐖡'), + (0x1057B, 'X'), + (0x1057C, 'M', '𐖣'), + (0x1057D, 'M', '𐖤'), + (0x1057E, 'M', '𐖥'), + (0x1057F, 'M', '𐖦'), + (0x10580, 'M', '𐖧'), + (0x10581, 'M', '𐖨'), + (0x10582, 'M', '𐖩'), + (0x10583, 'M', '𐖪'), + (0x10584, 'M', '𐖫'), + (0x10585, 'M', '𐖬'), + (0x10586, 'M', '𐖭'), + (0x10587, 'M', '𐖮'), + (0x10588, 'M', '𐖯'), + (0x10589, 'M', '𐖰'), + (0x1058A, 'M', '𐖱'), + (0x1058B, 'X'), + (0x1058C, 'M', '𐖳'), + (0x1058D, 'M', '𐖴'), + (0x1058E, 'M', '𐖵'), + (0x1058F, 'M', '𐖶'), + (0x10590, 'M', '𐖷'), + (0x10591, 'M', '𐖸'), + (0x10592, 'M', '𐖹'), + (0x10593, 'X'), + (0x10594, 'M', '𐖻'), + (0x10595, 'M', '𐖼'), + (0x10596, 'X'), + (0x10597, 'V'), + (0x105A2, 'X'), + (0x105A3, 'V'), + (0x105B2, 'X'), + (0x105B3, 'V'), + (0x105BA, 'X'), + (0x105BB, 'V'), + (0x105BD, 'X'), + (0x10600, 'V'), + (0x10737, 'X'), + (0x10740, 'V'), + (0x10756, 'X'), + (0x10760, 'V'), + (0x10768, 'X'), + (0x10780, 'V'), + (0x10781, 'M', 'ː'), + (0x10782, 'M', 'ˑ'), + (0x10783, 'M', 'æ'), + (0x10784, 'M', 'ʙ'), + (0x10785, 'M', 'ɓ'), + (0x10786, 'X'), + (0x10787, 'M', 'ʣ'), + (0x10788, 'M', 'ꭦ'), + (0x10789, 'M', 'ʥ'), + (0x1078A, 'M', 'ʤ'), + (0x1078B, 'M', 'ɖ'), + (0x1078C, 'M', 'ɗ'), + ] + +def _seg_55() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1078D, 'M', 'ᶑ'), + (0x1078E, 'M', 'ɘ'), + (0x1078F, 'M', 'ɞ'), + (0x10790, 'M', 'ʩ'), + (0x10791, 'M', 'ɤ'), + (0x10792, 'M', 'ɢ'), + (0x10793, 'M', 'ɠ'), + (0x10794, 'M', 'ʛ'), + (0x10795, 'M', 'ħ'), + (0x10796, 'M', 'ʜ'), + (0x10797, 'M', 'ɧ'), + (0x10798, 'M', 'ʄ'), + (0x10799, 'M', 'ʪ'), + (0x1079A, 'M', 'ʫ'), + (0x1079B, 'M', 'ɬ'), + (0x1079C, 'M', '𝼄'), + (0x1079D, 'M', 'ꞎ'), + (0x1079E, 'M', 'ɮ'), + (0x1079F, 'M', '𝼅'), + (0x107A0, 'M', 'ʎ'), + (0x107A1, 'M', '𝼆'), + (0x107A2, 'M', 'ø'), + (0x107A3, 'M', 'ɶ'), + (0x107A4, 'M', 'ɷ'), + (0x107A5, 'M', 'q'), + (0x107A6, 'M', 'ɺ'), + (0x107A7, 'M', '𝼈'), + (0x107A8, 'M', 'ɽ'), + (0x107A9, 'M', 'ɾ'), + (0x107AA, 'M', 'ʀ'), + (0x107AB, 'M', 'ʨ'), + (0x107AC, 'M', 'ʦ'), + (0x107AD, 'M', 'ꭧ'), + (0x107AE, 'M', 'ʧ'), + (0x107AF, 'M', 'ʈ'), + (0x107B0, 'M', 'ⱱ'), + (0x107B1, 'X'), + (0x107B2, 'M', 'ʏ'), + (0x107B3, 'M', 'ʡ'), + (0x107B4, 'M', 'ʢ'), + (0x107B5, 'M', 'ʘ'), + (0x107B6, 'M', 'ǀ'), + (0x107B7, 'M', 'ǁ'), + (0x107B8, 'M', 'ǂ'), + (0x107B9, 'M', '𝼊'), + (0x107BA, 'M', '𝼞'), + (0x107BB, 'X'), + (0x10800, 'V'), + (0x10806, 'X'), + (0x10808, 'V'), + (0x10809, 'X'), + (0x1080A, 'V'), + (0x10836, 'X'), + (0x10837, 'V'), + (0x10839, 'X'), + (0x1083C, 'V'), + (0x1083D, 'X'), + (0x1083F, 'V'), + (0x10856, 'X'), + (0x10857, 'V'), + (0x1089F, 'X'), + (0x108A7, 'V'), + (0x108B0, 'X'), + (0x108E0, 'V'), + (0x108F3, 'X'), + (0x108F4, 'V'), + (0x108F6, 'X'), + (0x108FB, 'V'), + (0x1091C, 'X'), + (0x1091F, 'V'), + (0x1093A, 'X'), + (0x1093F, 'V'), + (0x10940, 'X'), + (0x10980, 'V'), + (0x109B8, 'X'), + (0x109BC, 'V'), + (0x109D0, 'X'), + (0x109D2, 'V'), + (0x10A04, 'X'), + (0x10A05, 'V'), + (0x10A07, 'X'), + (0x10A0C, 'V'), + (0x10A14, 'X'), + (0x10A15, 'V'), + (0x10A18, 'X'), + (0x10A19, 'V'), + (0x10A36, 'X'), + (0x10A38, 'V'), + (0x10A3B, 'X'), + (0x10A3F, 'V'), + (0x10A49, 'X'), + (0x10A50, 'V'), + (0x10A59, 'X'), + (0x10A60, 'V'), + (0x10AA0, 'X'), + (0x10AC0, 'V'), + (0x10AE7, 'X'), + (0x10AEB, 'V'), + (0x10AF7, 'X'), + (0x10B00, 'V'), + ] + +def _seg_56() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x10B36, 'X'), + (0x10B39, 'V'), + (0x10B56, 'X'), + (0x10B58, 'V'), + (0x10B73, 'X'), + (0x10B78, 'V'), + (0x10B92, 'X'), + (0x10B99, 'V'), + (0x10B9D, 'X'), + (0x10BA9, 'V'), + (0x10BB0, 'X'), + (0x10C00, 'V'), + (0x10C49, 'X'), + (0x10C80, 'M', '𐳀'), + (0x10C81, 'M', '𐳁'), + (0x10C82, 'M', '𐳂'), + (0x10C83, 'M', '𐳃'), + (0x10C84, 'M', '𐳄'), + (0x10C85, 'M', '𐳅'), + (0x10C86, 'M', '𐳆'), + (0x10C87, 'M', '𐳇'), + (0x10C88, 'M', '𐳈'), + (0x10C89, 'M', '𐳉'), + (0x10C8A, 'M', '𐳊'), + (0x10C8B, 'M', '𐳋'), + (0x10C8C, 'M', '𐳌'), + (0x10C8D, 'M', '𐳍'), + (0x10C8E, 'M', '𐳎'), + (0x10C8F, 'M', '𐳏'), + (0x10C90, 'M', '𐳐'), + (0x10C91, 'M', '𐳑'), + (0x10C92, 'M', '𐳒'), + (0x10C93, 'M', '𐳓'), + (0x10C94, 'M', '𐳔'), + (0x10C95, 'M', '𐳕'), + (0x10C96, 'M', '𐳖'), + (0x10C97, 'M', '𐳗'), + (0x10C98, 'M', '𐳘'), + (0x10C99, 'M', '𐳙'), + (0x10C9A, 'M', '𐳚'), + (0x10C9B, 'M', '𐳛'), + (0x10C9C, 'M', '𐳜'), + (0x10C9D, 'M', '𐳝'), + (0x10C9E, 'M', '𐳞'), + (0x10C9F, 'M', '𐳟'), + (0x10CA0, 'M', '𐳠'), + (0x10CA1, 'M', '𐳡'), + (0x10CA2, 'M', '𐳢'), + (0x10CA3, 'M', '𐳣'), + (0x10CA4, 'M', '𐳤'), + (0x10CA5, 'M', '𐳥'), + (0x10CA6, 'M', '𐳦'), + (0x10CA7, 'M', '𐳧'), + (0x10CA8, 'M', '𐳨'), + (0x10CA9, 'M', '𐳩'), + (0x10CAA, 'M', '𐳪'), + (0x10CAB, 'M', '𐳫'), + (0x10CAC, 'M', '𐳬'), + (0x10CAD, 'M', '𐳭'), + (0x10CAE, 'M', '𐳮'), + (0x10CAF, 'M', '𐳯'), + (0x10CB0, 'M', '𐳰'), + (0x10CB1, 'M', '𐳱'), + (0x10CB2, 'M', '𐳲'), + (0x10CB3, 'X'), + (0x10CC0, 'V'), + (0x10CF3, 'X'), + (0x10CFA, 'V'), + (0x10D28, 'X'), + (0x10D30, 'V'), + (0x10D3A, 'X'), + (0x10E60, 'V'), + (0x10E7F, 'X'), + (0x10E80, 'V'), + (0x10EAA, 'X'), + (0x10EAB, 'V'), + (0x10EAE, 'X'), + (0x10EB0, 'V'), + (0x10EB2, 'X'), + (0x10EFD, 'V'), + (0x10F28, 'X'), + (0x10F30, 'V'), + (0x10F5A, 'X'), + (0x10F70, 'V'), + (0x10F8A, 'X'), + (0x10FB0, 'V'), + (0x10FCC, 'X'), + (0x10FE0, 'V'), + (0x10FF7, 'X'), + (0x11000, 'V'), + (0x1104E, 'X'), + (0x11052, 'V'), + (0x11076, 'X'), + (0x1107F, 'V'), + (0x110BD, 'X'), + (0x110BE, 'V'), + (0x110C3, 'X'), + (0x110D0, 'V'), + (0x110E9, 'X'), + (0x110F0, 'V'), + ] + +def _seg_57() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x110FA, 'X'), + (0x11100, 'V'), + (0x11135, 'X'), + (0x11136, 'V'), + (0x11148, 'X'), + (0x11150, 'V'), + (0x11177, 'X'), + (0x11180, 'V'), + (0x111E0, 'X'), + (0x111E1, 'V'), + (0x111F5, 'X'), + (0x11200, 'V'), + (0x11212, 'X'), + (0x11213, 'V'), + (0x11242, 'X'), + (0x11280, 'V'), + (0x11287, 'X'), + (0x11288, 'V'), + (0x11289, 'X'), + (0x1128A, 'V'), + (0x1128E, 'X'), + (0x1128F, 'V'), + (0x1129E, 'X'), + (0x1129F, 'V'), + (0x112AA, 'X'), + (0x112B0, 'V'), + (0x112EB, 'X'), + (0x112F0, 'V'), + (0x112FA, 'X'), + (0x11300, 'V'), + (0x11304, 'X'), + (0x11305, 'V'), + (0x1130D, 'X'), + (0x1130F, 'V'), + (0x11311, 'X'), + (0x11313, 'V'), + (0x11329, 'X'), + (0x1132A, 'V'), + (0x11331, 'X'), + (0x11332, 'V'), + (0x11334, 'X'), + (0x11335, 'V'), + (0x1133A, 'X'), + (0x1133B, 'V'), + (0x11345, 'X'), + (0x11347, 'V'), + (0x11349, 'X'), + (0x1134B, 'V'), + (0x1134E, 'X'), + (0x11350, 'V'), + (0x11351, 'X'), + (0x11357, 'V'), + (0x11358, 'X'), + (0x1135D, 'V'), + (0x11364, 'X'), + (0x11366, 'V'), + (0x1136D, 'X'), + (0x11370, 'V'), + (0x11375, 'X'), + (0x11400, 'V'), + (0x1145C, 'X'), + (0x1145D, 'V'), + (0x11462, 'X'), + (0x11480, 'V'), + (0x114C8, 'X'), + (0x114D0, 'V'), + (0x114DA, 'X'), + (0x11580, 'V'), + (0x115B6, 'X'), + (0x115B8, 'V'), + (0x115DE, 'X'), + (0x11600, 'V'), + (0x11645, 'X'), + (0x11650, 'V'), + (0x1165A, 'X'), + (0x11660, 'V'), + (0x1166D, 'X'), + (0x11680, 'V'), + (0x116BA, 'X'), + (0x116C0, 'V'), + (0x116CA, 'X'), + (0x11700, 'V'), + (0x1171B, 'X'), + (0x1171D, 'V'), + (0x1172C, 'X'), + (0x11730, 'V'), + (0x11747, 'X'), + (0x11800, 'V'), + (0x1183C, 'X'), + (0x118A0, 'M', '𑣀'), + (0x118A1, 'M', '𑣁'), + (0x118A2, 'M', '𑣂'), + (0x118A3, 'M', '𑣃'), + (0x118A4, 'M', '𑣄'), + (0x118A5, 'M', '𑣅'), + (0x118A6, 'M', '𑣆'), + (0x118A7, 'M', '𑣇'), + (0x118A8, 'M', '𑣈'), + (0x118A9, 'M', '𑣉'), + (0x118AA, 'M', '𑣊'), + ] + +def _seg_58() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x118AB, 'M', '𑣋'), + (0x118AC, 'M', '𑣌'), + (0x118AD, 'M', '𑣍'), + (0x118AE, 'M', '𑣎'), + (0x118AF, 'M', '𑣏'), + (0x118B0, 'M', '𑣐'), + (0x118B1, 'M', '𑣑'), + (0x118B2, 'M', '𑣒'), + (0x118B3, 'M', '𑣓'), + (0x118B4, 'M', '𑣔'), + (0x118B5, 'M', '𑣕'), + (0x118B6, 'M', '𑣖'), + (0x118B7, 'M', '𑣗'), + (0x118B8, 'M', '𑣘'), + (0x118B9, 'M', '𑣙'), + (0x118BA, 'M', '𑣚'), + (0x118BB, 'M', '𑣛'), + (0x118BC, 'M', '𑣜'), + (0x118BD, 'M', '𑣝'), + (0x118BE, 'M', '𑣞'), + (0x118BF, 'M', '𑣟'), + (0x118C0, 'V'), + (0x118F3, 'X'), + (0x118FF, 'V'), + (0x11907, 'X'), + (0x11909, 'V'), + (0x1190A, 'X'), + (0x1190C, 'V'), + (0x11914, 'X'), + (0x11915, 'V'), + (0x11917, 'X'), + (0x11918, 'V'), + (0x11936, 'X'), + (0x11937, 'V'), + (0x11939, 'X'), + (0x1193B, 'V'), + (0x11947, 'X'), + (0x11950, 'V'), + (0x1195A, 'X'), + (0x119A0, 'V'), + (0x119A8, 'X'), + (0x119AA, 'V'), + (0x119D8, 'X'), + (0x119DA, 'V'), + (0x119E5, 'X'), + (0x11A00, 'V'), + (0x11A48, 'X'), + (0x11A50, 'V'), + (0x11AA3, 'X'), + (0x11AB0, 'V'), + (0x11AF9, 'X'), + (0x11B00, 'V'), + (0x11B0A, 'X'), + (0x11C00, 'V'), + (0x11C09, 'X'), + (0x11C0A, 'V'), + (0x11C37, 'X'), + (0x11C38, 'V'), + (0x11C46, 'X'), + (0x11C50, 'V'), + (0x11C6D, 'X'), + (0x11C70, 'V'), + (0x11C90, 'X'), + (0x11C92, 'V'), + (0x11CA8, 'X'), + (0x11CA9, 'V'), + (0x11CB7, 'X'), + (0x11D00, 'V'), + (0x11D07, 'X'), + (0x11D08, 'V'), + (0x11D0A, 'X'), + (0x11D0B, 'V'), + (0x11D37, 'X'), + (0x11D3A, 'V'), + (0x11D3B, 'X'), + (0x11D3C, 'V'), + (0x11D3E, 'X'), + (0x11D3F, 'V'), + (0x11D48, 'X'), + (0x11D50, 'V'), + (0x11D5A, 'X'), + (0x11D60, 'V'), + (0x11D66, 'X'), + (0x11D67, 'V'), + (0x11D69, 'X'), + (0x11D6A, 'V'), + (0x11D8F, 'X'), + (0x11D90, 'V'), + (0x11D92, 'X'), + (0x11D93, 'V'), + (0x11D99, 'X'), + (0x11DA0, 'V'), + (0x11DAA, 'X'), + (0x11EE0, 'V'), + (0x11EF9, 'X'), + (0x11F00, 'V'), + (0x11F11, 'X'), + (0x11F12, 'V'), + (0x11F3B, 'X'), + (0x11F3E, 'V'), + ] + +def _seg_59() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x11F5A, 'X'), + (0x11FB0, 'V'), + (0x11FB1, 'X'), + (0x11FC0, 'V'), + (0x11FF2, 'X'), + (0x11FFF, 'V'), + (0x1239A, 'X'), + (0x12400, 'V'), + (0x1246F, 'X'), + (0x12470, 'V'), + (0x12475, 'X'), + (0x12480, 'V'), + (0x12544, 'X'), + (0x12F90, 'V'), + (0x12FF3, 'X'), + (0x13000, 'V'), + (0x13430, 'X'), + (0x13440, 'V'), + (0x13456, 'X'), + (0x14400, 'V'), + (0x14647, 'X'), + (0x16800, 'V'), + (0x16A39, 'X'), + (0x16A40, 'V'), + (0x16A5F, 'X'), + (0x16A60, 'V'), + (0x16A6A, 'X'), + (0x16A6E, 'V'), + (0x16ABF, 'X'), + (0x16AC0, 'V'), + (0x16ACA, 'X'), + (0x16AD0, 'V'), + (0x16AEE, 'X'), + (0x16AF0, 'V'), + (0x16AF6, 'X'), + (0x16B00, 'V'), + (0x16B46, 'X'), + (0x16B50, 'V'), + (0x16B5A, 'X'), + (0x16B5B, 'V'), + (0x16B62, 'X'), + (0x16B63, 'V'), + (0x16B78, 'X'), + (0x16B7D, 'V'), + (0x16B90, 'X'), + (0x16E40, 'M', '𖹠'), + (0x16E41, 'M', '𖹡'), + (0x16E42, 'M', '𖹢'), + (0x16E43, 'M', '𖹣'), + (0x16E44, 'M', '𖹤'), + (0x16E45, 'M', '𖹥'), + (0x16E46, 'M', '𖹦'), + (0x16E47, 'M', '𖹧'), + (0x16E48, 'M', '𖹨'), + (0x16E49, 'M', '𖹩'), + (0x16E4A, 'M', '𖹪'), + (0x16E4B, 'M', '𖹫'), + (0x16E4C, 'M', '𖹬'), + (0x16E4D, 'M', '𖹭'), + (0x16E4E, 'M', '𖹮'), + (0x16E4F, 'M', '𖹯'), + (0x16E50, 'M', '𖹰'), + (0x16E51, 'M', '𖹱'), + (0x16E52, 'M', '𖹲'), + (0x16E53, 'M', '𖹳'), + (0x16E54, 'M', '𖹴'), + (0x16E55, 'M', '𖹵'), + (0x16E56, 'M', '𖹶'), + (0x16E57, 'M', '𖹷'), + (0x16E58, 'M', '𖹸'), + (0x16E59, 'M', '𖹹'), + (0x16E5A, 'M', '𖹺'), + (0x16E5B, 'M', '𖹻'), + (0x16E5C, 'M', '𖹼'), + (0x16E5D, 'M', '𖹽'), + (0x16E5E, 'M', '𖹾'), + (0x16E5F, 'M', '𖹿'), + (0x16E60, 'V'), + (0x16E9B, 'X'), + (0x16F00, 'V'), + (0x16F4B, 'X'), + (0x16F4F, 'V'), + (0x16F88, 'X'), + (0x16F8F, 'V'), + (0x16FA0, 'X'), + (0x16FE0, 'V'), + (0x16FE5, 'X'), + (0x16FF0, 'V'), + (0x16FF2, 'X'), + (0x17000, 'V'), + (0x187F8, 'X'), + (0x18800, 'V'), + (0x18CD6, 'X'), + (0x18D00, 'V'), + (0x18D09, 'X'), + (0x1AFF0, 'V'), + (0x1AFF4, 'X'), + (0x1AFF5, 'V'), + (0x1AFFC, 'X'), + (0x1AFFD, 'V'), + ] + +def _seg_60() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1AFFF, 'X'), + (0x1B000, 'V'), + (0x1B123, 'X'), + (0x1B132, 'V'), + (0x1B133, 'X'), + (0x1B150, 'V'), + (0x1B153, 'X'), + (0x1B155, 'V'), + (0x1B156, 'X'), + (0x1B164, 'V'), + (0x1B168, 'X'), + (0x1B170, 'V'), + (0x1B2FC, 'X'), + (0x1BC00, 'V'), + (0x1BC6B, 'X'), + (0x1BC70, 'V'), + (0x1BC7D, 'X'), + (0x1BC80, 'V'), + (0x1BC89, 'X'), + (0x1BC90, 'V'), + (0x1BC9A, 'X'), + (0x1BC9C, 'V'), + (0x1BCA0, 'I'), + (0x1BCA4, 'X'), + (0x1CF00, 'V'), + (0x1CF2E, 'X'), + (0x1CF30, 'V'), + (0x1CF47, 'X'), + (0x1CF50, 'V'), + (0x1CFC4, 'X'), + (0x1D000, 'V'), + (0x1D0F6, 'X'), + (0x1D100, 'V'), + (0x1D127, 'X'), + (0x1D129, 'V'), + (0x1D15E, 'M', '𝅗𝅥'), + (0x1D15F, 'M', '𝅘𝅥'), + (0x1D160, 'M', '𝅘𝅥𝅮'), + (0x1D161, 'M', '𝅘𝅥𝅯'), + (0x1D162, 'M', '𝅘𝅥𝅰'), + (0x1D163, 'M', '𝅘𝅥𝅱'), + (0x1D164, 'M', '𝅘𝅥𝅲'), + (0x1D165, 'V'), + (0x1D173, 'X'), + (0x1D17B, 'V'), + (0x1D1BB, 'M', '𝆹𝅥'), + (0x1D1BC, 'M', '𝆺𝅥'), + (0x1D1BD, 'M', '𝆹𝅥𝅮'), + (0x1D1BE, 'M', '𝆺𝅥𝅮'), + (0x1D1BF, 'M', '𝆹𝅥𝅯'), + (0x1D1C0, 'M', '𝆺𝅥𝅯'), + (0x1D1C1, 'V'), + (0x1D1EB, 'X'), + (0x1D200, 'V'), + (0x1D246, 'X'), + (0x1D2C0, 'V'), + (0x1D2D4, 'X'), + (0x1D2E0, 'V'), + (0x1D2F4, 'X'), + (0x1D300, 'V'), + (0x1D357, 'X'), + (0x1D360, 'V'), + (0x1D379, 'X'), + (0x1D400, 'M', 'a'), + (0x1D401, 'M', 'b'), + (0x1D402, 'M', 'c'), + (0x1D403, 'M', 'd'), + (0x1D404, 'M', 'e'), + (0x1D405, 'M', 'f'), + (0x1D406, 'M', 'g'), + (0x1D407, 'M', 'h'), + (0x1D408, 'M', 'i'), + (0x1D409, 'M', 'j'), + (0x1D40A, 'M', 'k'), + (0x1D40B, 'M', 'l'), + (0x1D40C, 'M', 'm'), + (0x1D40D, 'M', 'n'), + (0x1D40E, 'M', 'o'), + (0x1D40F, 'M', 'p'), + (0x1D410, 'M', 'q'), + (0x1D411, 'M', 'r'), + (0x1D412, 'M', 's'), + (0x1D413, 'M', 't'), + (0x1D414, 'M', 'u'), + (0x1D415, 'M', 'v'), + (0x1D416, 'M', 'w'), + (0x1D417, 'M', 'x'), + (0x1D418, 'M', 'y'), + (0x1D419, 'M', 'z'), + (0x1D41A, 'M', 'a'), + (0x1D41B, 'M', 'b'), + (0x1D41C, 'M', 'c'), + (0x1D41D, 'M', 'd'), + (0x1D41E, 'M', 'e'), + (0x1D41F, 'M', 'f'), + (0x1D420, 'M', 'g'), + (0x1D421, 'M', 'h'), + (0x1D422, 'M', 'i'), + (0x1D423, 'M', 'j'), + (0x1D424, 'M', 'k'), + ] + +def _seg_61() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D425, 'M', 'l'), + (0x1D426, 'M', 'm'), + (0x1D427, 'M', 'n'), + (0x1D428, 'M', 'o'), + (0x1D429, 'M', 'p'), + (0x1D42A, 'M', 'q'), + (0x1D42B, 'M', 'r'), + (0x1D42C, 'M', 's'), + (0x1D42D, 'M', 't'), + (0x1D42E, 'M', 'u'), + (0x1D42F, 'M', 'v'), + (0x1D430, 'M', 'w'), + (0x1D431, 'M', 'x'), + (0x1D432, 'M', 'y'), + (0x1D433, 'M', 'z'), + (0x1D434, 'M', 'a'), + (0x1D435, 'M', 'b'), + (0x1D436, 'M', 'c'), + (0x1D437, 'M', 'd'), + (0x1D438, 'M', 'e'), + (0x1D439, 'M', 'f'), + (0x1D43A, 'M', 'g'), + (0x1D43B, 'M', 'h'), + (0x1D43C, 'M', 'i'), + (0x1D43D, 'M', 'j'), + (0x1D43E, 'M', 'k'), + (0x1D43F, 'M', 'l'), + (0x1D440, 'M', 'm'), + (0x1D441, 'M', 'n'), + (0x1D442, 'M', 'o'), + (0x1D443, 'M', 'p'), + (0x1D444, 'M', 'q'), + (0x1D445, 'M', 'r'), + (0x1D446, 'M', 's'), + (0x1D447, 'M', 't'), + (0x1D448, 'M', 'u'), + (0x1D449, 'M', 'v'), + (0x1D44A, 'M', 'w'), + (0x1D44B, 'M', 'x'), + (0x1D44C, 'M', 'y'), + (0x1D44D, 'M', 'z'), + (0x1D44E, 'M', 'a'), + (0x1D44F, 'M', 'b'), + (0x1D450, 'M', 'c'), + (0x1D451, 'M', 'd'), + (0x1D452, 'M', 'e'), + (0x1D453, 'M', 'f'), + (0x1D454, 'M', 'g'), + (0x1D455, 'X'), + (0x1D456, 'M', 'i'), + (0x1D457, 'M', 'j'), + (0x1D458, 'M', 'k'), + (0x1D459, 'M', 'l'), + (0x1D45A, 'M', 'm'), + (0x1D45B, 'M', 'n'), + (0x1D45C, 'M', 'o'), + (0x1D45D, 'M', 'p'), + (0x1D45E, 'M', 'q'), + (0x1D45F, 'M', 'r'), + (0x1D460, 'M', 's'), + (0x1D461, 'M', 't'), + (0x1D462, 'M', 'u'), + (0x1D463, 'M', 'v'), + (0x1D464, 'M', 'w'), + (0x1D465, 'M', 'x'), + (0x1D466, 'M', 'y'), + (0x1D467, 'M', 'z'), + (0x1D468, 'M', 'a'), + (0x1D469, 'M', 'b'), + (0x1D46A, 'M', 'c'), + (0x1D46B, 'M', 'd'), + (0x1D46C, 'M', 'e'), + (0x1D46D, 'M', 'f'), + (0x1D46E, 'M', 'g'), + (0x1D46F, 'M', 'h'), + (0x1D470, 'M', 'i'), + (0x1D471, 'M', 'j'), + (0x1D472, 'M', 'k'), + (0x1D473, 'M', 'l'), + (0x1D474, 'M', 'm'), + (0x1D475, 'M', 'n'), + (0x1D476, 'M', 'o'), + (0x1D477, 'M', 'p'), + (0x1D478, 'M', 'q'), + (0x1D479, 'M', 'r'), + (0x1D47A, 'M', 's'), + (0x1D47B, 'M', 't'), + (0x1D47C, 'M', 'u'), + (0x1D47D, 'M', 'v'), + (0x1D47E, 'M', 'w'), + (0x1D47F, 'M', 'x'), + (0x1D480, 'M', 'y'), + (0x1D481, 'M', 'z'), + (0x1D482, 'M', 'a'), + (0x1D483, 'M', 'b'), + (0x1D484, 'M', 'c'), + (0x1D485, 'M', 'd'), + (0x1D486, 'M', 'e'), + (0x1D487, 'M', 'f'), + (0x1D488, 'M', 'g'), + ] + +def _seg_62() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D489, 'M', 'h'), + (0x1D48A, 'M', 'i'), + (0x1D48B, 'M', 'j'), + (0x1D48C, 'M', 'k'), + (0x1D48D, 'M', 'l'), + (0x1D48E, 'M', 'm'), + (0x1D48F, 'M', 'n'), + (0x1D490, 'M', 'o'), + (0x1D491, 'M', 'p'), + (0x1D492, 'M', 'q'), + (0x1D493, 'M', 'r'), + (0x1D494, 'M', 's'), + (0x1D495, 'M', 't'), + (0x1D496, 'M', 'u'), + (0x1D497, 'M', 'v'), + (0x1D498, 'M', 'w'), + (0x1D499, 'M', 'x'), + (0x1D49A, 'M', 'y'), + (0x1D49B, 'M', 'z'), + (0x1D49C, 'M', 'a'), + (0x1D49D, 'X'), + (0x1D49E, 'M', 'c'), + (0x1D49F, 'M', 'd'), + (0x1D4A0, 'X'), + (0x1D4A2, 'M', 'g'), + (0x1D4A3, 'X'), + (0x1D4A5, 'M', 'j'), + (0x1D4A6, 'M', 'k'), + (0x1D4A7, 'X'), + (0x1D4A9, 'M', 'n'), + (0x1D4AA, 'M', 'o'), + (0x1D4AB, 'M', 'p'), + (0x1D4AC, 'M', 'q'), + (0x1D4AD, 'X'), + (0x1D4AE, 'M', 's'), + (0x1D4AF, 'M', 't'), + (0x1D4B0, 'M', 'u'), + (0x1D4B1, 'M', 'v'), + (0x1D4B2, 'M', 'w'), + (0x1D4B3, 'M', 'x'), + (0x1D4B4, 'M', 'y'), + (0x1D4B5, 'M', 'z'), + (0x1D4B6, 'M', 'a'), + (0x1D4B7, 'M', 'b'), + (0x1D4B8, 'M', 'c'), + (0x1D4B9, 'M', 'd'), + (0x1D4BA, 'X'), + (0x1D4BB, 'M', 'f'), + (0x1D4BC, 'X'), + (0x1D4BD, 'M', 'h'), + (0x1D4BE, 'M', 'i'), + (0x1D4BF, 'M', 'j'), + (0x1D4C0, 'M', 'k'), + (0x1D4C1, 'M', 'l'), + (0x1D4C2, 'M', 'm'), + (0x1D4C3, 'M', 'n'), + (0x1D4C4, 'X'), + (0x1D4C5, 'M', 'p'), + (0x1D4C6, 'M', 'q'), + (0x1D4C7, 'M', 'r'), + (0x1D4C8, 'M', 's'), + (0x1D4C9, 'M', 't'), + (0x1D4CA, 'M', 'u'), + (0x1D4CB, 'M', 'v'), + (0x1D4CC, 'M', 'w'), + (0x1D4CD, 'M', 'x'), + (0x1D4CE, 'M', 'y'), + (0x1D4CF, 'M', 'z'), + (0x1D4D0, 'M', 'a'), + (0x1D4D1, 'M', 'b'), + (0x1D4D2, 'M', 'c'), + (0x1D4D3, 'M', 'd'), + (0x1D4D4, 'M', 'e'), + (0x1D4D5, 'M', 'f'), + (0x1D4D6, 'M', 'g'), + (0x1D4D7, 'M', 'h'), + (0x1D4D8, 'M', 'i'), + (0x1D4D9, 'M', 'j'), + (0x1D4DA, 'M', 'k'), + (0x1D4DB, 'M', 'l'), + (0x1D4DC, 'M', 'm'), + (0x1D4DD, 'M', 'n'), + (0x1D4DE, 'M', 'o'), + (0x1D4DF, 'M', 'p'), + (0x1D4E0, 'M', 'q'), + (0x1D4E1, 'M', 'r'), + (0x1D4E2, 'M', 's'), + (0x1D4E3, 'M', 't'), + (0x1D4E4, 'M', 'u'), + (0x1D4E5, 'M', 'v'), + (0x1D4E6, 'M', 'w'), + (0x1D4E7, 'M', 'x'), + (0x1D4E8, 'M', 'y'), + (0x1D4E9, 'M', 'z'), + (0x1D4EA, 'M', 'a'), + (0x1D4EB, 'M', 'b'), + (0x1D4EC, 'M', 'c'), + (0x1D4ED, 'M', 'd'), + (0x1D4EE, 'M', 'e'), + (0x1D4EF, 'M', 'f'), + ] + +def _seg_63() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D4F0, 'M', 'g'), + (0x1D4F1, 'M', 'h'), + (0x1D4F2, 'M', 'i'), + (0x1D4F3, 'M', 'j'), + (0x1D4F4, 'M', 'k'), + (0x1D4F5, 'M', 'l'), + (0x1D4F6, 'M', 'm'), + (0x1D4F7, 'M', 'n'), + (0x1D4F8, 'M', 'o'), + (0x1D4F9, 'M', 'p'), + (0x1D4FA, 'M', 'q'), + (0x1D4FB, 'M', 'r'), + (0x1D4FC, 'M', 's'), + (0x1D4FD, 'M', 't'), + (0x1D4FE, 'M', 'u'), + (0x1D4FF, 'M', 'v'), + (0x1D500, 'M', 'w'), + (0x1D501, 'M', 'x'), + (0x1D502, 'M', 'y'), + (0x1D503, 'M', 'z'), + (0x1D504, 'M', 'a'), + (0x1D505, 'M', 'b'), + (0x1D506, 'X'), + (0x1D507, 'M', 'd'), + (0x1D508, 'M', 'e'), + (0x1D509, 'M', 'f'), + (0x1D50A, 'M', 'g'), + (0x1D50B, 'X'), + (0x1D50D, 'M', 'j'), + (0x1D50E, 'M', 'k'), + (0x1D50F, 'M', 'l'), + (0x1D510, 'M', 'm'), + (0x1D511, 'M', 'n'), + (0x1D512, 'M', 'o'), + (0x1D513, 'M', 'p'), + (0x1D514, 'M', 'q'), + (0x1D515, 'X'), + (0x1D516, 'M', 's'), + (0x1D517, 'M', 't'), + (0x1D518, 'M', 'u'), + (0x1D519, 'M', 'v'), + (0x1D51A, 'M', 'w'), + (0x1D51B, 'M', 'x'), + (0x1D51C, 'M', 'y'), + (0x1D51D, 'X'), + (0x1D51E, 'M', 'a'), + (0x1D51F, 'M', 'b'), + (0x1D520, 'M', 'c'), + (0x1D521, 'M', 'd'), + (0x1D522, 'M', 'e'), + (0x1D523, 'M', 'f'), + (0x1D524, 'M', 'g'), + (0x1D525, 'M', 'h'), + (0x1D526, 'M', 'i'), + (0x1D527, 'M', 'j'), + (0x1D528, 'M', 'k'), + (0x1D529, 'M', 'l'), + (0x1D52A, 'M', 'm'), + (0x1D52B, 'M', 'n'), + (0x1D52C, 'M', 'o'), + (0x1D52D, 'M', 'p'), + (0x1D52E, 'M', 'q'), + (0x1D52F, 'M', 'r'), + (0x1D530, 'M', 's'), + (0x1D531, 'M', 't'), + (0x1D532, 'M', 'u'), + (0x1D533, 'M', 'v'), + (0x1D534, 'M', 'w'), + (0x1D535, 'M', 'x'), + (0x1D536, 'M', 'y'), + (0x1D537, 'M', 'z'), + (0x1D538, 'M', 'a'), + (0x1D539, 'M', 'b'), + (0x1D53A, 'X'), + (0x1D53B, 'M', 'd'), + (0x1D53C, 'M', 'e'), + (0x1D53D, 'M', 'f'), + (0x1D53E, 'M', 'g'), + (0x1D53F, 'X'), + (0x1D540, 'M', 'i'), + (0x1D541, 'M', 'j'), + (0x1D542, 'M', 'k'), + (0x1D543, 'M', 'l'), + (0x1D544, 'M', 'm'), + (0x1D545, 'X'), + (0x1D546, 'M', 'o'), + (0x1D547, 'X'), + (0x1D54A, 'M', 's'), + (0x1D54B, 'M', 't'), + (0x1D54C, 'M', 'u'), + (0x1D54D, 'M', 'v'), + (0x1D54E, 'M', 'w'), + (0x1D54F, 'M', 'x'), + (0x1D550, 'M', 'y'), + (0x1D551, 'X'), + (0x1D552, 'M', 'a'), + (0x1D553, 'M', 'b'), + (0x1D554, 'M', 'c'), + (0x1D555, 'M', 'd'), + (0x1D556, 'M', 'e'), + ] + +def _seg_64() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D557, 'M', 'f'), + (0x1D558, 'M', 'g'), + (0x1D559, 'M', 'h'), + (0x1D55A, 'M', 'i'), + (0x1D55B, 'M', 'j'), + (0x1D55C, 'M', 'k'), + (0x1D55D, 'M', 'l'), + (0x1D55E, 'M', 'm'), + (0x1D55F, 'M', 'n'), + (0x1D560, 'M', 'o'), + (0x1D561, 'M', 'p'), + (0x1D562, 'M', 'q'), + (0x1D563, 'M', 'r'), + (0x1D564, 'M', 's'), + (0x1D565, 'M', 't'), + (0x1D566, 'M', 'u'), + (0x1D567, 'M', 'v'), + (0x1D568, 'M', 'w'), + (0x1D569, 'M', 'x'), + (0x1D56A, 'M', 'y'), + (0x1D56B, 'M', 'z'), + (0x1D56C, 'M', 'a'), + (0x1D56D, 'M', 'b'), + (0x1D56E, 'M', 'c'), + (0x1D56F, 'M', 'd'), + (0x1D570, 'M', 'e'), + (0x1D571, 'M', 'f'), + (0x1D572, 'M', 'g'), + (0x1D573, 'M', 'h'), + (0x1D574, 'M', 'i'), + (0x1D575, 'M', 'j'), + (0x1D576, 'M', 'k'), + (0x1D577, 'M', 'l'), + (0x1D578, 'M', 'm'), + (0x1D579, 'M', 'n'), + (0x1D57A, 'M', 'o'), + (0x1D57B, 'M', 'p'), + (0x1D57C, 'M', 'q'), + (0x1D57D, 'M', 'r'), + (0x1D57E, 'M', 's'), + (0x1D57F, 'M', 't'), + (0x1D580, 'M', 'u'), + (0x1D581, 'M', 'v'), + (0x1D582, 'M', 'w'), + (0x1D583, 'M', 'x'), + (0x1D584, 'M', 'y'), + (0x1D585, 'M', 'z'), + (0x1D586, 'M', 'a'), + (0x1D587, 'M', 'b'), + (0x1D588, 'M', 'c'), + (0x1D589, 'M', 'd'), + (0x1D58A, 'M', 'e'), + (0x1D58B, 'M', 'f'), + (0x1D58C, 'M', 'g'), + (0x1D58D, 'M', 'h'), + (0x1D58E, 'M', 'i'), + (0x1D58F, 'M', 'j'), + (0x1D590, 'M', 'k'), + (0x1D591, 'M', 'l'), + (0x1D592, 'M', 'm'), + (0x1D593, 'M', 'n'), + (0x1D594, 'M', 'o'), + (0x1D595, 'M', 'p'), + (0x1D596, 'M', 'q'), + (0x1D597, 'M', 'r'), + (0x1D598, 'M', 's'), + (0x1D599, 'M', 't'), + (0x1D59A, 'M', 'u'), + (0x1D59B, 'M', 'v'), + (0x1D59C, 'M', 'w'), + (0x1D59D, 'M', 'x'), + (0x1D59E, 'M', 'y'), + (0x1D59F, 'M', 'z'), + (0x1D5A0, 'M', 'a'), + (0x1D5A1, 'M', 'b'), + (0x1D5A2, 'M', 'c'), + (0x1D5A3, 'M', 'd'), + (0x1D5A4, 'M', 'e'), + (0x1D5A5, 'M', 'f'), + (0x1D5A6, 'M', 'g'), + (0x1D5A7, 'M', 'h'), + (0x1D5A8, 'M', 'i'), + (0x1D5A9, 'M', 'j'), + (0x1D5AA, 'M', 'k'), + (0x1D5AB, 'M', 'l'), + (0x1D5AC, 'M', 'm'), + (0x1D5AD, 'M', 'n'), + (0x1D5AE, 'M', 'o'), + (0x1D5AF, 'M', 'p'), + (0x1D5B0, 'M', 'q'), + (0x1D5B1, 'M', 'r'), + (0x1D5B2, 'M', 's'), + (0x1D5B3, 'M', 't'), + (0x1D5B4, 'M', 'u'), + (0x1D5B5, 'M', 'v'), + (0x1D5B6, 'M', 'w'), + (0x1D5B7, 'M', 'x'), + (0x1D5B8, 'M', 'y'), + (0x1D5B9, 'M', 'z'), + (0x1D5BA, 'M', 'a'), + ] + +def _seg_65() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D5BB, 'M', 'b'), + (0x1D5BC, 'M', 'c'), + (0x1D5BD, 'M', 'd'), + (0x1D5BE, 'M', 'e'), + (0x1D5BF, 'M', 'f'), + (0x1D5C0, 'M', 'g'), + (0x1D5C1, 'M', 'h'), + (0x1D5C2, 'M', 'i'), + (0x1D5C3, 'M', 'j'), + (0x1D5C4, 'M', 'k'), + (0x1D5C5, 'M', 'l'), + (0x1D5C6, 'M', 'm'), + (0x1D5C7, 'M', 'n'), + (0x1D5C8, 'M', 'o'), + (0x1D5C9, 'M', 'p'), + (0x1D5CA, 'M', 'q'), + (0x1D5CB, 'M', 'r'), + (0x1D5CC, 'M', 's'), + (0x1D5CD, 'M', 't'), + (0x1D5CE, 'M', 'u'), + (0x1D5CF, 'M', 'v'), + (0x1D5D0, 'M', 'w'), + (0x1D5D1, 'M', 'x'), + (0x1D5D2, 'M', 'y'), + (0x1D5D3, 'M', 'z'), + (0x1D5D4, 'M', 'a'), + (0x1D5D5, 'M', 'b'), + (0x1D5D6, 'M', 'c'), + (0x1D5D7, 'M', 'd'), + (0x1D5D8, 'M', 'e'), + (0x1D5D9, 'M', 'f'), + (0x1D5DA, 'M', 'g'), + (0x1D5DB, 'M', 'h'), + (0x1D5DC, 'M', 'i'), + (0x1D5DD, 'M', 'j'), + (0x1D5DE, 'M', 'k'), + (0x1D5DF, 'M', 'l'), + (0x1D5E0, 'M', 'm'), + (0x1D5E1, 'M', 'n'), + (0x1D5E2, 'M', 'o'), + (0x1D5E3, 'M', 'p'), + (0x1D5E4, 'M', 'q'), + (0x1D5E5, 'M', 'r'), + (0x1D5E6, 'M', 's'), + (0x1D5E7, 'M', 't'), + (0x1D5E8, 'M', 'u'), + (0x1D5E9, 'M', 'v'), + (0x1D5EA, 'M', 'w'), + (0x1D5EB, 'M', 'x'), + (0x1D5EC, 'M', 'y'), + (0x1D5ED, 'M', 'z'), + (0x1D5EE, 'M', 'a'), + (0x1D5EF, 'M', 'b'), + (0x1D5F0, 'M', 'c'), + (0x1D5F1, 'M', 'd'), + (0x1D5F2, 'M', 'e'), + (0x1D5F3, 'M', 'f'), + (0x1D5F4, 'M', 'g'), + (0x1D5F5, 'M', 'h'), + (0x1D5F6, 'M', 'i'), + (0x1D5F7, 'M', 'j'), + (0x1D5F8, 'M', 'k'), + (0x1D5F9, 'M', 'l'), + (0x1D5FA, 'M', 'm'), + (0x1D5FB, 'M', 'n'), + (0x1D5FC, 'M', 'o'), + (0x1D5FD, 'M', 'p'), + (0x1D5FE, 'M', 'q'), + (0x1D5FF, 'M', 'r'), + (0x1D600, 'M', 's'), + (0x1D601, 'M', 't'), + (0x1D602, 'M', 'u'), + (0x1D603, 'M', 'v'), + (0x1D604, 'M', 'w'), + (0x1D605, 'M', 'x'), + (0x1D606, 'M', 'y'), + (0x1D607, 'M', 'z'), + (0x1D608, 'M', 'a'), + (0x1D609, 'M', 'b'), + (0x1D60A, 'M', 'c'), + (0x1D60B, 'M', 'd'), + (0x1D60C, 'M', 'e'), + (0x1D60D, 'M', 'f'), + (0x1D60E, 'M', 'g'), + (0x1D60F, 'M', 'h'), + (0x1D610, 'M', 'i'), + (0x1D611, 'M', 'j'), + (0x1D612, 'M', 'k'), + (0x1D613, 'M', 'l'), + (0x1D614, 'M', 'm'), + (0x1D615, 'M', 'n'), + (0x1D616, 'M', 'o'), + (0x1D617, 'M', 'p'), + (0x1D618, 'M', 'q'), + (0x1D619, 'M', 'r'), + (0x1D61A, 'M', 's'), + (0x1D61B, 'M', 't'), + (0x1D61C, 'M', 'u'), + (0x1D61D, 'M', 'v'), + (0x1D61E, 'M', 'w'), + ] + +def _seg_66() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D61F, 'M', 'x'), + (0x1D620, 'M', 'y'), + (0x1D621, 'M', 'z'), + (0x1D622, 'M', 'a'), + (0x1D623, 'M', 'b'), + (0x1D624, 'M', 'c'), + (0x1D625, 'M', 'd'), + (0x1D626, 'M', 'e'), + (0x1D627, 'M', 'f'), + (0x1D628, 'M', 'g'), + (0x1D629, 'M', 'h'), + (0x1D62A, 'M', 'i'), + (0x1D62B, 'M', 'j'), + (0x1D62C, 'M', 'k'), + (0x1D62D, 'M', 'l'), + (0x1D62E, 'M', 'm'), + (0x1D62F, 'M', 'n'), + (0x1D630, 'M', 'o'), + (0x1D631, 'M', 'p'), + (0x1D632, 'M', 'q'), + (0x1D633, 'M', 'r'), + (0x1D634, 'M', 's'), + (0x1D635, 'M', 't'), + (0x1D636, 'M', 'u'), + (0x1D637, 'M', 'v'), + (0x1D638, 'M', 'w'), + (0x1D639, 'M', 'x'), + (0x1D63A, 'M', 'y'), + (0x1D63B, 'M', 'z'), + (0x1D63C, 'M', 'a'), + (0x1D63D, 'M', 'b'), + (0x1D63E, 'M', 'c'), + (0x1D63F, 'M', 'd'), + (0x1D640, 'M', 'e'), + (0x1D641, 'M', 'f'), + (0x1D642, 'M', 'g'), + (0x1D643, 'M', 'h'), + (0x1D644, 'M', 'i'), + (0x1D645, 'M', 'j'), + (0x1D646, 'M', 'k'), + (0x1D647, 'M', 'l'), + (0x1D648, 'M', 'm'), + (0x1D649, 'M', 'n'), + (0x1D64A, 'M', 'o'), + (0x1D64B, 'M', 'p'), + (0x1D64C, 'M', 'q'), + (0x1D64D, 'M', 'r'), + (0x1D64E, 'M', 's'), + (0x1D64F, 'M', 't'), + (0x1D650, 'M', 'u'), + (0x1D651, 'M', 'v'), + (0x1D652, 'M', 'w'), + (0x1D653, 'M', 'x'), + (0x1D654, 'M', 'y'), + (0x1D655, 'M', 'z'), + (0x1D656, 'M', 'a'), + (0x1D657, 'M', 'b'), + (0x1D658, 'M', 'c'), + (0x1D659, 'M', 'd'), + (0x1D65A, 'M', 'e'), + (0x1D65B, 'M', 'f'), + (0x1D65C, 'M', 'g'), + (0x1D65D, 'M', 'h'), + (0x1D65E, 'M', 'i'), + (0x1D65F, 'M', 'j'), + (0x1D660, 'M', 'k'), + (0x1D661, 'M', 'l'), + (0x1D662, 'M', 'm'), + (0x1D663, 'M', 'n'), + (0x1D664, 'M', 'o'), + (0x1D665, 'M', 'p'), + (0x1D666, 'M', 'q'), + (0x1D667, 'M', 'r'), + (0x1D668, 'M', 's'), + (0x1D669, 'M', 't'), + (0x1D66A, 'M', 'u'), + (0x1D66B, 'M', 'v'), + (0x1D66C, 'M', 'w'), + (0x1D66D, 'M', 'x'), + (0x1D66E, 'M', 'y'), + (0x1D66F, 'M', 'z'), + (0x1D670, 'M', 'a'), + (0x1D671, 'M', 'b'), + (0x1D672, 'M', 'c'), + (0x1D673, 'M', 'd'), + (0x1D674, 'M', 'e'), + (0x1D675, 'M', 'f'), + (0x1D676, 'M', 'g'), + (0x1D677, 'M', 'h'), + (0x1D678, 'M', 'i'), + (0x1D679, 'M', 'j'), + (0x1D67A, 'M', 'k'), + (0x1D67B, 'M', 'l'), + (0x1D67C, 'M', 'm'), + (0x1D67D, 'M', 'n'), + (0x1D67E, 'M', 'o'), + (0x1D67F, 'M', 'p'), + (0x1D680, 'M', 'q'), + (0x1D681, 'M', 'r'), + (0x1D682, 'M', 's'), + ] + +def _seg_67() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D683, 'M', 't'), + (0x1D684, 'M', 'u'), + (0x1D685, 'M', 'v'), + (0x1D686, 'M', 'w'), + (0x1D687, 'M', 'x'), + (0x1D688, 'M', 'y'), + (0x1D689, 'M', 'z'), + (0x1D68A, 'M', 'a'), + (0x1D68B, 'M', 'b'), + (0x1D68C, 'M', 'c'), + (0x1D68D, 'M', 'd'), + (0x1D68E, 'M', 'e'), + (0x1D68F, 'M', 'f'), + (0x1D690, 'M', 'g'), + (0x1D691, 'M', 'h'), + (0x1D692, 'M', 'i'), + (0x1D693, 'M', 'j'), + (0x1D694, 'M', 'k'), + (0x1D695, 'M', 'l'), + (0x1D696, 'M', 'm'), + (0x1D697, 'M', 'n'), + (0x1D698, 'M', 'o'), + (0x1D699, 'M', 'p'), + (0x1D69A, 'M', 'q'), + (0x1D69B, 'M', 'r'), + (0x1D69C, 'M', 's'), + (0x1D69D, 'M', 't'), + (0x1D69E, 'M', 'u'), + (0x1D69F, 'M', 'v'), + (0x1D6A0, 'M', 'w'), + (0x1D6A1, 'M', 'x'), + (0x1D6A2, 'M', 'y'), + (0x1D6A3, 'M', 'z'), + (0x1D6A4, 'M', 'ı'), + (0x1D6A5, 'M', 'ȷ'), + (0x1D6A6, 'X'), + (0x1D6A8, 'M', 'α'), + (0x1D6A9, 'M', 'β'), + (0x1D6AA, 'M', 'γ'), + (0x1D6AB, 'M', 'δ'), + (0x1D6AC, 'M', 'ε'), + (0x1D6AD, 'M', 'ζ'), + (0x1D6AE, 'M', 'η'), + (0x1D6AF, 'M', 'θ'), + (0x1D6B0, 'M', 'ι'), + (0x1D6B1, 'M', 'κ'), + (0x1D6B2, 'M', 'λ'), + (0x1D6B3, 'M', 'μ'), + (0x1D6B4, 'M', 'ν'), + (0x1D6B5, 'M', 'ξ'), + (0x1D6B6, 'M', 'ο'), + (0x1D6B7, 'M', 'π'), + (0x1D6B8, 'M', 'ρ'), + (0x1D6B9, 'M', 'θ'), + (0x1D6BA, 'M', 'σ'), + (0x1D6BB, 'M', 'τ'), + (0x1D6BC, 'M', 'υ'), + (0x1D6BD, 'M', 'φ'), + (0x1D6BE, 'M', 'χ'), + (0x1D6BF, 'M', 'ψ'), + (0x1D6C0, 'M', 'ω'), + (0x1D6C1, 'M', '∇'), + (0x1D6C2, 'M', 'α'), + (0x1D6C3, 'M', 'β'), + (0x1D6C4, 'M', 'γ'), + (0x1D6C5, 'M', 'δ'), + (0x1D6C6, 'M', 'ε'), + (0x1D6C7, 'M', 'ζ'), + (0x1D6C8, 'M', 'η'), + (0x1D6C9, 'M', 'θ'), + (0x1D6CA, 'M', 'ι'), + (0x1D6CB, 'M', 'κ'), + (0x1D6CC, 'M', 'λ'), + (0x1D6CD, 'M', 'μ'), + (0x1D6CE, 'M', 'ν'), + (0x1D6CF, 'M', 'ξ'), + (0x1D6D0, 'M', 'ο'), + (0x1D6D1, 'M', 'π'), + (0x1D6D2, 'M', 'ρ'), + (0x1D6D3, 'M', 'σ'), + (0x1D6D5, 'M', 'τ'), + (0x1D6D6, 'M', 'υ'), + (0x1D6D7, 'M', 'φ'), + (0x1D6D8, 'M', 'χ'), + (0x1D6D9, 'M', 'ψ'), + (0x1D6DA, 'M', 'ω'), + (0x1D6DB, 'M', '∂'), + (0x1D6DC, 'M', 'ε'), + (0x1D6DD, 'M', 'θ'), + (0x1D6DE, 'M', 'κ'), + (0x1D6DF, 'M', 'φ'), + (0x1D6E0, 'M', 'ρ'), + (0x1D6E1, 'M', 'π'), + (0x1D6E2, 'M', 'α'), + (0x1D6E3, 'M', 'β'), + (0x1D6E4, 'M', 'γ'), + (0x1D6E5, 'M', 'δ'), + (0x1D6E6, 'M', 'ε'), + (0x1D6E7, 'M', 'ζ'), + (0x1D6E8, 'M', 'η'), + ] + +def _seg_68() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D6E9, 'M', 'θ'), + (0x1D6EA, 'M', 'ι'), + (0x1D6EB, 'M', 'κ'), + (0x1D6EC, 'M', 'λ'), + (0x1D6ED, 'M', 'μ'), + (0x1D6EE, 'M', 'ν'), + (0x1D6EF, 'M', 'ξ'), + (0x1D6F0, 'M', 'ο'), + (0x1D6F1, 'M', 'π'), + (0x1D6F2, 'M', 'ρ'), + (0x1D6F3, 'M', 'θ'), + (0x1D6F4, 'M', 'σ'), + (0x1D6F5, 'M', 'τ'), + (0x1D6F6, 'M', 'υ'), + (0x1D6F7, 'M', 'φ'), + (0x1D6F8, 'M', 'χ'), + (0x1D6F9, 'M', 'ψ'), + (0x1D6FA, 'M', 'ω'), + (0x1D6FB, 'M', '∇'), + (0x1D6FC, 'M', 'α'), + (0x1D6FD, 'M', 'β'), + (0x1D6FE, 'M', 'γ'), + (0x1D6FF, 'M', 'δ'), + (0x1D700, 'M', 'ε'), + (0x1D701, 'M', 'ζ'), + (0x1D702, 'M', 'η'), + (0x1D703, 'M', 'θ'), + (0x1D704, 'M', 'ι'), + (0x1D705, 'M', 'κ'), + (0x1D706, 'M', 'λ'), + (0x1D707, 'M', 'μ'), + (0x1D708, 'M', 'ν'), + (0x1D709, 'M', 'ξ'), + (0x1D70A, 'M', 'ο'), + (0x1D70B, 'M', 'π'), + (0x1D70C, 'M', 'ρ'), + (0x1D70D, 'M', 'σ'), + (0x1D70F, 'M', 'τ'), + (0x1D710, 'M', 'υ'), + (0x1D711, 'M', 'φ'), + (0x1D712, 'M', 'χ'), + (0x1D713, 'M', 'ψ'), + (0x1D714, 'M', 'ω'), + (0x1D715, 'M', '∂'), + (0x1D716, 'M', 'ε'), + (0x1D717, 'M', 'θ'), + (0x1D718, 'M', 'κ'), + (0x1D719, 'M', 'φ'), + (0x1D71A, 'M', 'ρ'), + (0x1D71B, 'M', 'π'), + (0x1D71C, 'M', 'α'), + (0x1D71D, 'M', 'β'), + (0x1D71E, 'M', 'γ'), + (0x1D71F, 'M', 'δ'), + (0x1D720, 'M', 'ε'), + (0x1D721, 'M', 'ζ'), + (0x1D722, 'M', 'η'), + (0x1D723, 'M', 'θ'), + (0x1D724, 'M', 'ι'), + (0x1D725, 'M', 'κ'), + (0x1D726, 'M', 'λ'), + (0x1D727, 'M', 'μ'), + (0x1D728, 'M', 'ν'), + (0x1D729, 'M', 'ξ'), + (0x1D72A, 'M', 'ο'), + (0x1D72B, 'M', 'π'), + (0x1D72C, 'M', 'ρ'), + (0x1D72D, 'M', 'θ'), + (0x1D72E, 'M', 'σ'), + (0x1D72F, 'M', 'τ'), + (0x1D730, 'M', 'υ'), + (0x1D731, 'M', 'φ'), + (0x1D732, 'M', 'χ'), + (0x1D733, 'M', 'ψ'), + (0x1D734, 'M', 'ω'), + (0x1D735, 'M', '∇'), + (0x1D736, 'M', 'α'), + (0x1D737, 'M', 'β'), + (0x1D738, 'M', 'γ'), + (0x1D739, 'M', 'δ'), + (0x1D73A, 'M', 'ε'), + (0x1D73B, 'M', 'ζ'), + (0x1D73C, 'M', 'η'), + (0x1D73D, 'M', 'θ'), + (0x1D73E, 'M', 'ι'), + (0x1D73F, 'M', 'κ'), + (0x1D740, 'M', 'λ'), + (0x1D741, 'M', 'μ'), + (0x1D742, 'M', 'ν'), + (0x1D743, 'M', 'ξ'), + (0x1D744, 'M', 'ο'), + (0x1D745, 'M', 'π'), + (0x1D746, 'M', 'ρ'), + (0x1D747, 'M', 'σ'), + (0x1D749, 'M', 'τ'), + (0x1D74A, 'M', 'υ'), + (0x1D74B, 'M', 'φ'), + (0x1D74C, 'M', 'χ'), + (0x1D74D, 'M', 'ψ'), + (0x1D74E, 'M', 'ω'), + ] + +def _seg_69() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D74F, 'M', '∂'), + (0x1D750, 'M', 'ε'), + (0x1D751, 'M', 'θ'), + (0x1D752, 'M', 'κ'), + (0x1D753, 'M', 'φ'), + (0x1D754, 'M', 'ρ'), + (0x1D755, 'M', 'π'), + (0x1D756, 'M', 'α'), + (0x1D757, 'M', 'β'), + (0x1D758, 'M', 'γ'), + (0x1D759, 'M', 'δ'), + (0x1D75A, 'M', 'ε'), + (0x1D75B, 'M', 'ζ'), + (0x1D75C, 'M', 'η'), + (0x1D75D, 'M', 'θ'), + (0x1D75E, 'M', 'ι'), + (0x1D75F, 'M', 'κ'), + (0x1D760, 'M', 'λ'), + (0x1D761, 'M', 'μ'), + (0x1D762, 'M', 'ν'), + (0x1D763, 'M', 'ξ'), + (0x1D764, 'M', 'ο'), + (0x1D765, 'M', 'π'), + (0x1D766, 'M', 'ρ'), + (0x1D767, 'M', 'θ'), + (0x1D768, 'M', 'σ'), + (0x1D769, 'M', 'τ'), + (0x1D76A, 'M', 'υ'), + (0x1D76B, 'M', 'φ'), + (0x1D76C, 'M', 'χ'), + (0x1D76D, 'M', 'ψ'), + (0x1D76E, 'M', 'ω'), + (0x1D76F, 'M', '∇'), + (0x1D770, 'M', 'α'), + (0x1D771, 'M', 'β'), + (0x1D772, 'M', 'γ'), + (0x1D773, 'M', 'δ'), + (0x1D774, 'M', 'ε'), + (0x1D775, 'M', 'ζ'), + (0x1D776, 'M', 'η'), + (0x1D777, 'M', 'θ'), + (0x1D778, 'M', 'ι'), + (0x1D779, 'M', 'κ'), + (0x1D77A, 'M', 'λ'), + (0x1D77B, 'M', 'μ'), + (0x1D77C, 'M', 'ν'), + (0x1D77D, 'M', 'ξ'), + (0x1D77E, 'M', 'ο'), + (0x1D77F, 'M', 'π'), + (0x1D780, 'M', 'ρ'), + (0x1D781, 'M', 'σ'), + (0x1D783, 'M', 'τ'), + (0x1D784, 'M', 'υ'), + (0x1D785, 'M', 'φ'), + (0x1D786, 'M', 'χ'), + (0x1D787, 'M', 'ψ'), + (0x1D788, 'M', 'ω'), + (0x1D789, 'M', '∂'), + (0x1D78A, 'M', 'ε'), + (0x1D78B, 'M', 'θ'), + (0x1D78C, 'M', 'κ'), + (0x1D78D, 'M', 'φ'), + (0x1D78E, 'M', 'ρ'), + (0x1D78F, 'M', 'π'), + (0x1D790, 'M', 'α'), + (0x1D791, 'M', 'β'), + (0x1D792, 'M', 'γ'), + (0x1D793, 'M', 'δ'), + (0x1D794, 'M', 'ε'), + (0x1D795, 'M', 'ζ'), + (0x1D796, 'M', 'η'), + (0x1D797, 'M', 'θ'), + (0x1D798, 'M', 'ι'), + (0x1D799, 'M', 'κ'), + (0x1D79A, 'M', 'λ'), + (0x1D79B, 'M', 'μ'), + (0x1D79C, 'M', 'ν'), + (0x1D79D, 'M', 'ξ'), + (0x1D79E, 'M', 'ο'), + (0x1D79F, 'M', 'π'), + (0x1D7A0, 'M', 'ρ'), + (0x1D7A1, 'M', 'θ'), + (0x1D7A2, 'M', 'σ'), + (0x1D7A3, 'M', 'τ'), + (0x1D7A4, 'M', 'υ'), + (0x1D7A5, 'M', 'φ'), + (0x1D7A6, 'M', 'χ'), + (0x1D7A7, 'M', 'ψ'), + (0x1D7A8, 'M', 'ω'), + (0x1D7A9, 'M', '∇'), + (0x1D7AA, 'M', 'α'), + (0x1D7AB, 'M', 'β'), + (0x1D7AC, 'M', 'γ'), + (0x1D7AD, 'M', 'δ'), + (0x1D7AE, 'M', 'ε'), + (0x1D7AF, 'M', 'ζ'), + (0x1D7B0, 'M', 'η'), + (0x1D7B1, 'M', 'θ'), + (0x1D7B2, 'M', 'ι'), + (0x1D7B3, 'M', 'κ'), + ] + +def _seg_70() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1D7B4, 'M', 'λ'), + (0x1D7B5, 'M', 'μ'), + (0x1D7B6, 'M', 'ν'), + (0x1D7B7, 'M', 'ξ'), + (0x1D7B8, 'M', 'ο'), + (0x1D7B9, 'M', 'π'), + (0x1D7BA, 'M', 'ρ'), + (0x1D7BB, 'M', 'σ'), + (0x1D7BD, 'M', 'τ'), + (0x1D7BE, 'M', 'υ'), + (0x1D7BF, 'M', 'φ'), + (0x1D7C0, 'M', 'χ'), + (0x1D7C1, 'M', 'ψ'), + (0x1D7C2, 'M', 'ω'), + (0x1D7C3, 'M', '∂'), + (0x1D7C4, 'M', 'ε'), + (0x1D7C5, 'M', 'θ'), + (0x1D7C6, 'M', 'κ'), + (0x1D7C7, 'M', 'φ'), + (0x1D7C8, 'M', 'ρ'), + (0x1D7C9, 'M', 'π'), + (0x1D7CA, 'M', 'ϝ'), + (0x1D7CC, 'X'), + (0x1D7CE, 'M', '0'), + (0x1D7CF, 'M', '1'), + (0x1D7D0, 'M', '2'), + (0x1D7D1, 'M', '3'), + (0x1D7D2, 'M', '4'), + (0x1D7D3, 'M', '5'), + (0x1D7D4, 'M', '6'), + (0x1D7D5, 'M', '7'), + (0x1D7D6, 'M', '8'), + (0x1D7D7, 'M', '9'), + (0x1D7D8, 'M', '0'), + (0x1D7D9, 'M', '1'), + (0x1D7DA, 'M', '2'), + (0x1D7DB, 'M', '3'), + (0x1D7DC, 'M', '4'), + (0x1D7DD, 'M', '5'), + (0x1D7DE, 'M', '6'), + (0x1D7DF, 'M', '7'), + (0x1D7E0, 'M', '8'), + (0x1D7E1, 'M', '9'), + (0x1D7E2, 'M', '0'), + (0x1D7E3, 'M', '1'), + (0x1D7E4, 'M', '2'), + (0x1D7E5, 'M', '3'), + (0x1D7E6, 'M', '4'), + (0x1D7E7, 'M', '5'), + (0x1D7E8, 'M', '6'), + (0x1D7E9, 'M', '7'), + (0x1D7EA, 'M', '8'), + (0x1D7EB, 'M', '9'), + (0x1D7EC, 'M', '0'), + (0x1D7ED, 'M', '1'), + (0x1D7EE, 'M', '2'), + (0x1D7EF, 'M', '3'), + (0x1D7F0, 'M', '4'), + (0x1D7F1, 'M', '5'), + (0x1D7F2, 'M', '6'), + (0x1D7F3, 'M', '7'), + (0x1D7F4, 'M', '8'), + (0x1D7F5, 'M', '9'), + (0x1D7F6, 'M', '0'), + (0x1D7F7, 'M', '1'), + (0x1D7F8, 'M', '2'), + (0x1D7F9, 'M', '3'), + (0x1D7FA, 'M', '4'), + (0x1D7FB, 'M', '5'), + (0x1D7FC, 'M', '6'), + (0x1D7FD, 'M', '7'), + (0x1D7FE, 'M', '8'), + (0x1D7FF, 'M', '9'), + (0x1D800, 'V'), + (0x1DA8C, 'X'), + (0x1DA9B, 'V'), + (0x1DAA0, 'X'), + (0x1DAA1, 'V'), + (0x1DAB0, 'X'), + (0x1DF00, 'V'), + (0x1DF1F, 'X'), + (0x1DF25, 'V'), + (0x1DF2B, 'X'), + (0x1E000, 'V'), + (0x1E007, 'X'), + (0x1E008, 'V'), + (0x1E019, 'X'), + (0x1E01B, 'V'), + (0x1E022, 'X'), + (0x1E023, 'V'), + (0x1E025, 'X'), + (0x1E026, 'V'), + (0x1E02B, 'X'), + (0x1E030, 'M', 'а'), + (0x1E031, 'M', 'б'), + (0x1E032, 'M', 'в'), + (0x1E033, 'M', 'г'), + (0x1E034, 'M', 'д'), + (0x1E035, 'M', 'е'), + (0x1E036, 'M', 'ж'), + ] + +def _seg_71() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E037, 'M', 'з'), + (0x1E038, 'M', 'и'), + (0x1E039, 'M', 'к'), + (0x1E03A, 'M', 'л'), + (0x1E03B, 'M', 'м'), + (0x1E03C, 'M', 'о'), + (0x1E03D, 'M', 'п'), + (0x1E03E, 'M', 'р'), + (0x1E03F, 'M', 'с'), + (0x1E040, 'M', 'т'), + (0x1E041, 'M', 'у'), + (0x1E042, 'M', 'ф'), + (0x1E043, 'M', 'х'), + (0x1E044, 'M', 'ц'), + (0x1E045, 'M', 'ч'), + (0x1E046, 'M', 'ш'), + (0x1E047, 'M', 'ы'), + (0x1E048, 'M', 'э'), + (0x1E049, 'M', 'ю'), + (0x1E04A, 'M', 'ꚉ'), + (0x1E04B, 'M', 'ә'), + (0x1E04C, 'M', 'і'), + (0x1E04D, 'M', 'ј'), + (0x1E04E, 'M', 'ө'), + (0x1E04F, 'M', 'ү'), + (0x1E050, 'M', 'ӏ'), + (0x1E051, 'M', 'а'), + (0x1E052, 'M', 'б'), + (0x1E053, 'M', 'в'), + (0x1E054, 'M', 'г'), + (0x1E055, 'M', 'д'), + (0x1E056, 'M', 'е'), + (0x1E057, 'M', 'ж'), + (0x1E058, 'M', 'з'), + (0x1E059, 'M', 'и'), + (0x1E05A, 'M', 'к'), + (0x1E05B, 'M', 'л'), + (0x1E05C, 'M', 'о'), + (0x1E05D, 'M', 'п'), + (0x1E05E, 'M', 'с'), + (0x1E05F, 'M', 'у'), + (0x1E060, 'M', 'ф'), + (0x1E061, 'M', 'х'), + (0x1E062, 'M', 'ц'), + (0x1E063, 'M', 'ч'), + (0x1E064, 'M', 'ш'), + (0x1E065, 'M', 'ъ'), + (0x1E066, 'M', 'ы'), + (0x1E067, 'M', 'ґ'), + (0x1E068, 'M', 'і'), + (0x1E069, 'M', 'ѕ'), + (0x1E06A, 'M', 'џ'), + (0x1E06B, 'M', 'ҫ'), + (0x1E06C, 'M', 'ꙑ'), + (0x1E06D, 'M', 'ұ'), + (0x1E06E, 'X'), + (0x1E08F, 'V'), + (0x1E090, 'X'), + (0x1E100, 'V'), + (0x1E12D, 'X'), + (0x1E130, 'V'), + (0x1E13E, 'X'), + (0x1E140, 'V'), + (0x1E14A, 'X'), + (0x1E14E, 'V'), + (0x1E150, 'X'), + (0x1E290, 'V'), + (0x1E2AF, 'X'), + (0x1E2C0, 'V'), + (0x1E2FA, 'X'), + (0x1E2FF, 'V'), + (0x1E300, 'X'), + (0x1E4D0, 'V'), + (0x1E4FA, 'X'), + (0x1E7E0, 'V'), + (0x1E7E7, 'X'), + (0x1E7E8, 'V'), + (0x1E7EC, 'X'), + (0x1E7ED, 'V'), + (0x1E7EF, 'X'), + (0x1E7F0, 'V'), + (0x1E7FF, 'X'), + (0x1E800, 'V'), + (0x1E8C5, 'X'), + (0x1E8C7, 'V'), + (0x1E8D7, 'X'), + (0x1E900, 'M', '𞤢'), + (0x1E901, 'M', '𞤣'), + (0x1E902, 'M', '𞤤'), + (0x1E903, 'M', '𞤥'), + (0x1E904, 'M', '𞤦'), + (0x1E905, 'M', '𞤧'), + (0x1E906, 'M', '𞤨'), + (0x1E907, 'M', '𞤩'), + (0x1E908, 'M', '𞤪'), + (0x1E909, 'M', '𞤫'), + (0x1E90A, 'M', '𞤬'), + (0x1E90B, 'M', '𞤭'), + (0x1E90C, 'M', '𞤮'), + (0x1E90D, 'M', '𞤯'), + ] + +def _seg_72() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1E90E, 'M', '𞤰'), + (0x1E90F, 'M', '𞤱'), + (0x1E910, 'M', '𞤲'), + (0x1E911, 'M', '𞤳'), + (0x1E912, 'M', '𞤴'), + (0x1E913, 'M', '𞤵'), + (0x1E914, 'M', '𞤶'), + (0x1E915, 'M', '𞤷'), + (0x1E916, 'M', '𞤸'), + (0x1E917, 'M', '𞤹'), + (0x1E918, 'M', '𞤺'), + (0x1E919, 'M', '𞤻'), + (0x1E91A, 'M', '𞤼'), + (0x1E91B, 'M', '𞤽'), + (0x1E91C, 'M', '𞤾'), + (0x1E91D, 'M', '𞤿'), + (0x1E91E, 'M', '𞥀'), + (0x1E91F, 'M', '𞥁'), + (0x1E920, 'M', '𞥂'), + (0x1E921, 'M', '𞥃'), + (0x1E922, 'V'), + (0x1E94C, 'X'), + (0x1E950, 'V'), + (0x1E95A, 'X'), + (0x1E95E, 'V'), + (0x1E960, 'X'), + (0x1EC71, 'V'), + (0x1ECB5, 'X'), + (0x1ED01, 'V'), + (0x1ED3E, 'X'), + (0x1EE00, 'M', 'ا'), + (0x1EE01, 'M', 'ب'), + (0x1EE02, 'M', 'ج'), + (0x1EE03, 'M', 'د'), + (0x1EE04, 'X'), + (0x1EE05, 'M', 'و'), + (0x1EE06, 'M', 'ز'), + (0x1EE07, 'M', 'ح'), + (0x1EE08, 'M', 'ط'), + (0x1EE09, 'M', 'ي'), + (0x1EE0A, 'M', 'ك'), + (0x1EE0B, 'M', 'ل'), + (0x1EE0C, 'M', 'م'), + (0x1EE0D, 'M', 'ن'), + (0x1EE0E, 'M', 'س'), + (0x1EE0F, 'M', 'ع'), + (0x1EE10, 'M', 'ف'), + (0x1EE11, 'M', 'ص'), + (0x1EE12, 'M', 'ق'), + (0x1EE13, 'M', 'ر'), + (0x1EE14, 'M', 'ش'), + (0x1EE15, 'M', 'ت'), + (0x1EE16, 'M', 'ث'), + (0x1EE17, 'M', 'خ'), + (0x1EE18, 'M', 'ذ'), + (0x1EE19, 'M', 'ض'), + (0x1EE1A, 'M', 'ظ'), + (0x1EE1B, 'M', 'غ'), + (0x1EE1C, 'M', 'ٮ'), + (0x1EE1D, 'M', 'ں'), + (0x1EE1E, 'M', 'ڡ'), + (0x1EE1F, 'M', 'ٯ'), + (0x1EE20, 'X'), + (0x1EE21, 'M', 'ب'), + (0x1EE22, 'M', 'ج'), + (0x1EE23, 'X'), + (0x1EE24, 'M', 'ه'), + (0x1EE25, 'X'), + (0x1EE27, 'M', 'ح'), + (0x1EE28, 'X'), + (0x1EE29, 'M', 'ي'), + (0x1EE2A, 'M', 'ك'), + (0x1EE2B, 'M', 'ل'), + (0x1EE2C, 'M', 'م'), + (0x1EE2D, 'M', 'ن'), + (0x1EE2E, 'M', 'س'), + (0x1EE2F, 'M', 'ع'), + (0x1EE30, 'M', 'ف'), + (0x1EE31, 'M', 'ص'), + (0x1EE32, 'M', 'ق'), + (0x1EE33, 'X'), + (0x1EE34, 'M', 'ش'), + (0x1EE35, 'M', 'ت'), + (0x1EE36, 'M', 'ث'), + (0x1EE37, 'M', 'خ'), + (0x1EE38, 'X'), + (0x1EE39, 'M', 'ض'), + (0x1EE3A, 'X'), + (0x1EE3B, 'M', 'غ'), + (0x1EE3C, 'X'), + (0x1EE42, 'M', 'ج'), + (0x1EE43, 'X'), + (0x1EE47, 'M', 'ح'), + (0x1EE48, 'X'), + (0x1EE49, 'M', 'ي'), + (0x1EE4A, 'X'), + (0x1EE4B, 'M', 'ل'), + (0x1EE4C, 'X'), + (0x1EE4D, 'M', 'ن'), + (0x1EE4E, 'M', 'س'), + ] + +def _seg_73() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EE4F, 'M', 'ع'), + (0x1EE50, 'X'), + (0x1EE51, 'M', 'ص'), + (0x1EE52, 'M', 'ق'), + (0x1EE53, 'X'), + (0x1EE54, 'M', 'ش'), + (0x1EE55, 'X'), + (0x1EE57, 'M', 'خ'), + (0x1EE58, 'X'), + (0x1EE59, 'M', 'ض'), + (0x1EE5A, 'X'), + (0x1EE5B, 'M', 'غ'), + (0x1EE5C, 'X'), + (0x1EE5D, 'M', 'ں'), + (0x1EE5E, 'X'), + (0x1EE5F, 'M', 'ٯ'), + (0x1EE60, 'X'), + (0x1EE61, 'M', 'ب'), + (0x1EE62, 'M', 'ج'), + (0x1EE63, 'X'), + (0x1EE64, 'M', 'ه'), + (0x1EE65, 'X'), + (0x1EE67, 'M', 'ح'), + (0x1EE68, 'M', 'ط'), + (0x1EE69, 'M', 'ي'), + (0x1EE6A, 'M', 'ك'), + (0x1EE6B, 'X'), + (0x1EE6C, 'M', 'م'), + (0x1EE6D, 'M', 'ن'), + (0x1EE6E, 'M', 'س'), + (0x1EE6F, 'M', 'ع'), + (0x1EE70, 'M', 'ف'), + (0x1EE71, 'M', 'ص'), + (0x1EE72, 'M', 'ق'), + (0x1EE73, 'X'), + (0x1EE74, 'M', 'ش'), + (0x1EE75, 'M', 'ت'), + (0x1EE76, 'M', 'ث'), + (0x1EE77, 'M', 'خ'), + (0x1EE78, 'X'), + (0x1EE79, 'M', 'ض'), + (0x1EE7A, 'M', 'ظ'), + (0x1EE7B, 'M', 'غ'), + (0x1EE7C, 'M', 'ٮ'), + (0x1EE7D, 'X'), + (0x1EE7E, 'M', 'ڡ'), + (0x1EE7F, 'X'), + (0x1EE80, 'M', 'ا'), + (0x1EE81, 'M', 'ب'), + (0x1EE82, 'M', 'ج'), + (0x1EE83, 'M', 'د'), + (0x1EE84, 'M', 'ه'), + (0x1EE85, 'M', 'و'), + (0x1EE86, 'M', 'ز'), + (0x1EE87, 'M', 'ح'), + (0x1EE88, 'M', 'ط'), + (0x1EE89, 'M', 'ي'), + (0x1EE8A, 'X'), + (0x1EE8B, 'M', 'ل'), + (0x1EE8C, 'M', 'م'), + (0x1EE8D, 'M', 'ن'), + (0x1EE8E, 'M', 'س'), + (0x1EE8F, 'M', 'ع'), + (0x1EE90, 'M', 'ف'), + (0x1EE91, 'M', 'ص'), + (0x1EE92, 'M', 'ق'), + (0x1EE93, 'M', 'ر'), + (0x1EE94, 'M', 'ش'), + (0x1EE95, 'M', 'ت'), + (0x1EE96, 'M', 'ث'), + (0x1EE97, 'M', 'خ'), + (0x1EE98, 'M', 'ذ'), + (0x1EE99, 'M', 'ض'), + (0x1EE9A, 'M', 'ظ'), + (0x1EE9B, 'M', 'غ'), + (0x1EE9C, 'X'), + (0x1EEA1, 'M', 'ب'), + (0x1EEA2, 'M', 'ج'), + (0x1EEA3, 'M', 'د'), + (0x1EEA4, 'X'), + (0x1EEA5, 'M', 'و'), + (0x1EEA6, 'M', 'ز'), + (0x1EEA7, 'M', 'ح'), + (0x1EEA8, 'M', 'ط'), + (0x1EEA9, 'M', 'ي'), + (0x1EEAA, 'X'), + (0x1EEAB, 'M', 'ل'), + (0x1EEAC, 'M', 'م'), + (0x1EEAD, 'M', 'ن'), + (0x1EEAE, 'M', 'س'), + (0x1EEAF, 'M', 'ع'), + (0x1EEB0, 'M', 'ف'), + (0x1EEB1, 'M', 'ص'), + (0x1EEB2, 'M', 'ق'), + (0x1EEB3, 'M', 'ر'), + (0x1EEB4, 'M', 'ش'), + (0x1EEB5, 'M', 'ت'), + (0x1EEB6, 'M', 'ث'), + (0x1EEB7, 'M', 'خ'), + (0x1EEB8, 'M', 'ذ'), + ] + +def _seg_74() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1EEB9, 'M', 'ض'), + (0x1EEBA, 'M', 'ظ'), + (0x1EEBB, 'M', 'غ'), + (0x1EEBC, 'X'), + (0x1EEF0, 'V'), + (0x1EEF2, 'X'), + (0x1F000, 'V'), + (0x1F02C, 'X'), + (0x1F030, 'V'), + (0x1F094, 'X'), + (0x1F0A0, 'V'), + (0x1F0AF, 'X'), + (0x1F0B1, 'V'), + (0x1F0C0, 'X'), + (0x1F0C1, 'V'), + (0x1F0D0, 'X'), + (0x1F0D1, 'V'), + (0x1F0F6, 'X'), + (0x1F101, '3', '0,'), + (0x1F102, '3', '1,'), + (0x1F103, '3', '2,'), + (0x1F104, '3', '3,'), + (0x1F105, '3', '4,'), + (0x1F106, '3', '5,'), + (0x1F107, '3', '6,'), + (0x1F108, '3', '7,'), + (0x1F109, '3', '8,'), + (0x1F10A, '3', '9,'), + (0x1F10B, 'V'), + (0x1F110, '3', '(a)'), + (0x1F111, '3', '(b)'), + (0x1F112, '3', '(c)'), + (0x1F113, '3', '(d)'), + (0x1F114, '3', '(e)'), + (0x1F115, '3', '(f)'), + (0x1F116, '3', '(g)'), + (0x1F117, '3', '(h)'), + (0x1F118, '3', '(i)'), + (0x1F119, '3', '(j)'), + (0x1F11A, '3', '(k)'), + (0x1F11B, '3', '(l)'), + (0x1F11C, '3', '(m)'), + (0x1F11D, '3', '(n)'), + (0x1F11E, '3', '(o)'), + (0x1F11F, '3', '(p)'), + (0x1F120, '3', '(q)'), + (0x1F121, '3', '(r)'), + (0x1F122, '3', '(s)'), + (0x1F123, '3', '(t)'), + (0x1F124, '3', '(u)'), + (0x1F125, '3', '(v)'), + (0x1F126, '3', '(w)'), + (0x1F127, '3', '(x)'), + (0x1F128, '3', '(y)'), + (0x1F129, '3', '(z)'), + (0x1F12A, 'M', '〔s〕'), + (0x1F12B, 'M', 'c'), + (0x1F12C, 'M', 'r'), + (0x1F12D, 'M', 'cd'), + (0x1F12E, 'M', 'wz'), + (0x1F12F, 'V'), + (0x1F130, 'M', 'a'), + (0x1F131, 'M', 'b'), + (0x1F132, 'M', 'c'), + (0x1F133, 'M', 'd'), + (0x1F134, 'M', 'e'), + (0x1F135, 'M', 'f'), + (0x1F136, 'M', 'g'), + (0x1F137, 'M', 'h'), + (0x1F138, 'M', 'i'), + (0x1F139, 'M', 'j'), + (0x1F13A, 'M', 'k'), + (0x1F13B, 'M', 'l'), + (0x1F13C, 'M', 'm'), + (0x1F13D, 'M', 'n'), + (0x1F13E, 'M', 'o'), + (0x1F13F, 'M', 'p'), + (0x1F140, 'M', 'q'), + (0x1F141, 'M', 'r'), + (0x1F142, 'M', 's'), + (0x1F143, 'M', 't'), + (0x1F144, 'M', 'u'), + (0x1F145, 'M', 'v'), + (0x1F146, 'M', 'w'), + (0x1F147, 'M', 'x'), + (0x1F148, 'M', 'y'), + (0x1F149, 'M', 'z'), + (0x1F14A, 'M', 'hv'), + (0x1F14B, 'M', 'mv'), + (0x1F14C, 'M', 'sd'), + (0x1F14D, 'M', 'ss'), + (0x1F14E, 'M', 'ppv'), + (0x1F14F, 'M', 'wc'), + (0x1F150, 'V'), + (0x1F16A, 'M', 'mc'), + (0x1F16B, 'M', 'md'), + (0x1F16C, 'M', 'mr'), + (0x1F16D, 'V'), + (0x1F190, 'M', 'dj'), + (0x1F191, 'V'), + ] + +def _seg_75() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1F1AE, 'X'), + (0x1F1E6, 'V'), + (0x1F200, 'M', 'ほか'), + (0x1F201, 'M', 'ココ'), + (0x1F202, 'M', 'サ'), + (0x1F203, 'X'), + (0x1F210, 'M', '手'), + (0x1F211, 'M', '字'), + (0x1F212, 'M', '双'), + (0x1F213, 'M', 'デ'), + (0x1F214, 'M', '二'), + (0x1F215, 'M', '多'), + (0x1F216, 'M', '解'), + (0x1F217, 'M', '天'), + (0x1F218, 'M', '交'), + (0x1F219, 'M', '映'), + (0x1F21A, 'M', '無'), + (0x1F21B, 'M', '料'), + (0x1F21C, 'M', '前'), + (0x1F21D, 'M', '後'), + (0x1F21E, 'M', '再'), + (0x1F21F, 'M', '新'), + (0x1F220, 'M', '初'), + (0x1F221, 'M', '終'), + (0x1F222, 'M', '生'), + (0x1F223, 'M', '販'), + (0x1F224, 'M', '声'), + (0x1F225, 'M', '吹'), + (0x1F226, 'M', '演'), + (0x1F227, 'M', '投'), + (0x1F228, 'M', '捕'), + (0x1F229, 'M', '一'), + (0x1F22A, 'M', '三'), + (0x1F22B, 'M', '遊'), + (0x1F22C, 'M', '左'), + (0x1F22D, 'M', '中'), + (0x1F22E, 'M', '右'), + (0x1F22F, 'M', '指'), + (0x1F230, 'M', '走'), + (0x1F231, 'M', '打'), + (0x1F232, 'M', '禁'), + (0x1F233, 'M', '空'), + (0x1F234, 'M', '合'), + (0x1F235, 'M', '満'), + (0x1F236, 'M', '有'), + (0x1F237, 'M', '月'), + (0x1F238, 'M', '申'), + (0x1F239, 'M', '割'), + (0x1F23A, 'M', '営'), + (0x1F23B, 'M', '配'), + (0x1F23C, 'X'), + (0x1F240, 'M', '〔本〕'), + (0x1F241, 'M', '〔三〕'), + (0x1F242, 'M', '〔二〕'), + (0x1F243, 'M', '〔安〕'), + (0x1F244, 'M', '〔点〕'), + (0x1F245, 'M', '〔打〕'), + (0x1F246, 'M', '〔盗〕'), + (0x1F247, 'M', '〔勝〕'), + (0x1F248, 'M', '〔敗〕'), + (0x1F249, 'X'), + (0x1F250, 'M', '得'), + (0x1F251, 'M', '可'), + (0x1F252, 'X'), + (0x1F260, 'V'), + (0x1F266, 'X'), + (0x1F300, 'V'), + (0x1F6D8, 'X'), + (0x1F6DC, 'V'), + (0x1F6ED, 'X'), + (0x1F6F0, 'V'), + (0x1F6FD, 'X'), + (0x1F700, 'V'), + (0x1F777, 'X'), + (0x1F77B, 'V'), + (0x1F7DA, 'X'), + (0x1F7E0, 'V'), + (0x1F7EC, 'X'), + (0x1F7F0, 'V'), + (0x1F7F1, 'X'), + (0x1F800, 'V'), + (0x1F80C, 'X'), + (0x1F810, 'V'), + (0x1F848, 'X'), + (0x1F850, 'V'), + (0x1F85A, 'X'), + (0x1F860, 'V'), + (0x1F888, 'X'), + (0x1F890, 'V'), + (0x1F8AE, 'X'), + (0x1F8B0, 'V'), + (0x1F8B2, 'X'), + (0x1F900, 'V'), + (0x1FA54, 'X'), + (0x1FA60, 'V'), + (0x1FA6E, 'X'), + (0x1FA70, 'V'), + (0x1FA7D, 'X'), + (0x1FA80, 'V'), + (0x1FA89, 'X'), + ] + +def _seg_76() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x1FA90, 'V'), + (0x1FABE, 'X'), + (0x1FABF, 'V'), + (0x1FAC6, 'X'), + (0x1FACE, 'V'), + (0x1FADC, 'X'), + (0x1FAE0, 'V'), + (0x1FAE9, 'X'), + (0x1FAF0, 'V'), + (0x1FAF9, 'X'), + (0x1FB00, 'V'), + (0x1FB93, 'X'), + (0x1FB94, 'V'), + (0x1FBCB, 'X'), + (0x1FBF0, 'M', '0'), + (0x1FBF1, 'M', '1'), + (0x1FBF2, 'M', '2'), + (0x1FBF3, 'M', '3'), + (0x1FBF4, 'M', '4'), + (0x1FBF5, 'M', '5'), + (0x1FBF6, 'M', '6'), + (0x1FBF7, 'M', '7'), + (0x1FBF8, 'M', '8'), + (0x1FBF9, 'M', '9'), + (0x1FBFA, 'X'), + (0x20000, 'V'), + (0x2A6E0, 'X'), + (0x2A700, 'V'), + (0x2B73A, 'X'), + (0x2B740, 'V'), + (0x2B81E, 'X'), + (0x2B820, 'V'), + (0x2CEA2, 'X'), + (0x2CEB0, 'V'), + (0x2EBE1, 'X'), + (0x2EBF0, 'V'), + (0x2EE5E, 'X'), + (0x2F800, 'M', '丽'), + (0x2F801, 'M', '丸'), + (0x2F802, 'M', '乁'), + (0x2F803, 'M', '𠄢'), + (0x2F804, 'M', '你'), + (0x2F805, 'M', '侮'), + (0x2F806, 'M', '侻'), + (0x2F807, 'M', '倂'), + (0x2F808, 'M', '偺'), + (0x2F809, 'M', '備'), + (0x2F80A, 'M', '僧'), + (0x2F80B, 'M', '像'), + (0x2F80C, 'M', '㒞'), + (0x2F80D, 'M', '𠘺'), + (0x2F80E, 'M', '免'), + (0x2F80F, 'M', '兔'), + (0x2F810, 'M', '兤'), + (0x2F811, 'M', '具'), + (0x2F812, 'M', '𠔜'), + (0x2F813, 'M', '㒹'), + (0x2F814, 'M', '內'), + (0x2F815, 'M', '再'), + (0x2F816, 'M', '𠕋'), + (0x2F817, 'M', '冗'), + (0x2F818, 'M', '冤'), + (0x2F819, 'M', '仌'), + (0x2F81A, 'M', '冬'), + (0x2F81B, 'M', '况'), + (0x2F81C, 'M', '𩇟'), + (0x2F81D, 'M', '凵'), + (0x2F81E, 'M', '刃'), + (0x2F81F, 'M', '㓟'), + (0x2F820, 'M', '刻'), + (0x2F821, 'M', '剆'), + (0x2F822, 'M', '割'), + (0x2F823, 'M', '剷'), + (0x2F824, 'M', '㔕'), + (0x2F825, 'M', '勇'), + (0x2F826, 'M', '勉'), + (0x2F827, 'M', '勤'), + (0x2F828, 'M', '勺'), + (0x2F829, 'M', '包'), + (0x2F82A, 'M', '匆'), + (0x2F82B, 'M', '北'), + (0x2F82C, 'M', '卉'), + (0x2F82D, 'M', '卑'), + (0x2F82E, 'M', '博'), + (0x2F82F, 'M', '即'), + (0x2F830, 'M', '卽'), + (0x2F831, 'M', '卿'), + (0x2F834, 'M', '𠨬'), + (0x2F835, 'M', '灰'), + (0x2F836, 'M', '及'), + (0x2F837, 'M', '叟'), + (0x2F838, 'M', '𠭣'), + (0x2F839, 'M', '叫'), + (0x2F83A, 'M', '叱'), + (0x2F83B, 'M', '吆'), + (0x2F83C, 'M', '咞'), + (0x2F83D, 'M', '吸'), + (0x2F83E, 'M', '呈'), + (0x2F83F, 'M', '周'), + (0x2F840, 'M', '咢'), + ] + +def _seg_77() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F841, 'M', '哶'), + (0x2F842, 'M', '唐'), + (0x2F843, 'M', '啓'), + (0x2F844, 'M', '啣'), + (0x2F845, 'M', '善'), + (0x2F847, 'M', '喙'), + (0x2F848, 'M', '喫'), + (0x2F849, 'M', '喳'), + (0x2F84A, 'M', '嗂'), + (0x2F84B, 'M', '圖'), + (0x2F84C, 'M', '嘆'), + (0x2F84D, 'M', '圗'), + (0x2F84E, 'M', '噑'), + (0x2F84F, 'M', '噴'), + (0x2F850, 'M', '切'), + (0x2F851, 'M', '壮'), + (0x2F852, 'M', '城'), + (0x2F853, 'M', '埴'), + (0x2F854, 'M', '堍'), + (0x2F855, 'M', '型'), + (0x2F856, 'M', '堲'), + (0x2F857, 'M', '報'), + (0x2F858, 'M', '墬'), + (0x2F859, 'M', '𡓤'), + (0x2F85A, 'M', '売'), + (0x2F85B, 'M', '壷'), + (0x2F85C, 'M', '夆'), + (0x2F85D, 'M', '多'), + (0x2F85E, 'M', '夢'), + (0x2F85F, 'M', '奢'), + (0x2F860, 'M', '𡚨'), + (0x2F861, 'M', '𡛪'), + (0x2F862, 'M', '姬'), + (0x2F863, 'M', '娛'), + (0x2F864, 'M', '娧'), + (0x2F865, 'M', '姘'), + (0x2F866, 'M', '婦'), + (0x2F867, 'M', '㛮'), + (0x2F868, 'X'), + (0x2F869, 'M', '嬈'), + (0x2F86A, 'M', '嬾'), + (0x2F86C, 'M', '𡧈'), + (0x2F86D, 'M', '寃'), + (0x2F86E, 'M', '寘'), + (0x2F86F, 'M', '寧'), + (0x2F870, 'M', '寳'), + (0x2F871, 'M', '𡬘'), + (0x2F872, 'M', '寿'), + (0x2F873, 'M', '将'), + (0x2F874, 'X'), + (0x2F875, 'M', '尢'), + (0x2F876, 'M', '㞁'), + (0x2F877, 'M', '屠'), + (0x2F878, 'M', '屮'), + (0x2F879, 'M', '峀'), + (0x2F87A, 'M', '岍'), + (0x2F87B, 'M', '𡷤'), + (0x2F87C, 'M', '嵃'), + (0x2F87D, 'M', '𡷦'), + (0x2F87E, 'M', '嵮'), + (0x2F87F, 'M', '嵫'), + (0x2F880, 'M', '嵼'), + (0x2F881, 'M', '巡'), + (0x2F882, 'M', '巢'), + (0x2F883, 'M', '㠯'), + (0x2F884, 'M', '巽'), + (0x2F885, 'M', '帨'), + (0x2F886, 'M', '帽'), + (0x2F887, 'M', '幩'), + (0x2F888, 'M', '㡢'), + (0x2F889, 'M', '𢆃'), + (0x2F88A, 'M', '㡼'), + (0x2F88B, 'M', '庰'), + (0x2F88C, 'M', '庳'), + (0x2F88D, 'M', '庶'), + (0x2F88E, 'M', '廊'), + (0x2F88F, 'M', '𪎒'), + (0x2F890, 'M', '廾'), + (0x2F891, 'M', '𢌱'), + (0x2F893, 'M', '舁'), + (0x2F894, 'M', '弢'), + (0x2F896, 'M', '㣇'), + (0x2F897, 'M', '𣊸'), + (0x2F898, 'M', '𦇚'), + (0x2F899, 'M', '形'), + (0x2F89A, 'M', '彫'), + (0x2F89B, 'M', '㣣'), + (0x2F89C, 'M', '徚'), + (0x2F89D, 'M', '忍'), + (0x2F89E, 'M', '志'), + (0x2F89F, 'M', '忹'), + (0x2F8A0, 'M', '悁'), + (0x2F8A1, 'M', '㤺'), + (0x2F8A2, 'M', '㤜'), + (0x2F8A3, 'M', '悔'), + (0x2F8A4, 'M', '𢛔'), + (0x2F8A5, 'M', '惇'), + (0x2F8A6, 'M', '慈'), + (0x2F8A7, 'M', '慌'), + (0x2F8A8, 'M', '慎'), + ] + +def _seg_78() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F8A9, 'M', '慌'), + (0x2F8AA, 'M', '慺'), + (0x2F8AB, 'M', '憎'), + (0x2F8AC, 'M', '憲'), + (0x2F8AD, 'M', '憤'), + (0x2F8AE, 'M', '憯'), + (0x2F8AF, 'M', '懞'), + (0x2F8B0, 'M', '懲'), + (0x2F8B1, 'M', '懶'), + (0x2F8B2, 'M', '成'), + (0x2F8B3, 'M', '戛'), + (0x2F8B4, 'M', '扝'), + (0x2F8B5, 'M', '抱'), + (0x2F8B6, 'M', '拔'), + (0x2F8B7, 'M', '捐'), + (0x2F8B8, 'M', '𢬌'), + (0x2F8B9, 'M', '挽'), + (0x2F8BA, 'M', '拼'), + (0x2F8BB, 'M', '捨'), + (0x2F8BC, 'M', '掃'), + (0x2F8BD, 'M', '揤'), + (0x2F8BE, 'M', '𢯱'), + (0x2F8BF, 'M', '搢'), + (0x2F8C0, 'M', '揅'), + (0x2F8C1, 'M', '掩'), + (0x2F8C2, 'M', '㨮'), + (0x2F8C3, 'M', '摩'), + (0x2F8C4, 'M', '摾'), + (0x2F8C5, 'M', '撝'), + (0x2F8C6, 'M', '摷'), + (0x2F8C7, 'M', '㩬'), + (0x2F8C8, 'M', '敏'), + (0x2F8C9, 'M', '敬'), + (0x2F8CA, 'M', '𣀊'), + (0x2F8CB, 'M', '旣'), + (0x2F8CC, 'M', '書'), + (0x2F8CD, 'M', '晉'), + (0x2F8CE, 'M', '㬙'), + (0x2F8CF, 'M', '暑'), + (0x2F8D0, 'M', '㬈'), + (0x2F8D1, 'M', '㫤'), + (0x2F8D2, 'M', '冒'), + (0x2F8D3, 'M', '冕'), + (0x2F8D4, 'M', '最'), + (0x2F8D5, 'M', '暜'), + (0x2F8D6, 'M', '肭'), + (0x2F8D7, 'M', '䏙'), + (0x2F8D8, 'M', '朗'), + (0x2F8D9, 'M', '望'), + (0x2F8DA, 'M', '朡'), + (0x2F8DB, 'M', '杞'), + (0x2F8DC, 'M', '杓'), + (0x2F8DD, 'M', '𣏃'), + (0x2F8DE, 'M', '㭉'), + (0x2F8DF, 'M', '柺'), + (0x2F8E0, 'M', '枅'), + (0x2F8E1, 'M', '桒'), + (0x2F8E2, 'M', '梅'), + (0x2F8E3, 'M', '𣑭'), + (0x2F8E4, 'M', '梎'), + (0x2F8E5, 'M', '栟'), + (0x2F8E6, 'M', '椔'), + (0x2F8E7, 'M', '㮝'), + (0x2F8E8, 'M', '楂'), + (0x2F8E9, 'M', '榣'), + (0x2F8EA, 'M', '槪'), + (0x2F8EB, 'M', '檨'), + (0x2F8EC, 'M', '𣚣'), + (0x2F8ED, 'M', '櫛'), + (0x2F8EE, 'M', '㰘'), + (0x2F8EF, 'M', '次'), + (0x2F8F0, 'M', '𣢧'), + (0x2F8F1, 'M', '歔'), + (0x2F8F2, 'M', '㱎'), + (0x2F8F3, 'M', '歲'), + (0x2F8F4, 'M', '殟'), + (0x2F8F5, 'M', '殺'), + (0x2F8F6, 'M', '殻'), + (0x2F8F7, 'M', '𣪍'), + (0x2F8F8, 'M', '𡴋'), + (0x2F8F9, 'M', '𣫺'), + (0x2F8FA, 'M', '汎'), + (0x2F8FB, 'M', '𣲼'), + (0x2F8FC, 'M', '沿'), + (0x2F8FD, 'M', '泍'), + (0x2F8FE, 'M', '汧'), + (0x2F8FF, 'M', '洖'), + (0x2F900, 'M', '派'), + (0x2F901, 'M', '海'), + (0x2F902, 'M', '流'), + (0x2F903, 'M', '浩'), + (0x2F904, 'M', '浸'), + (0x2F905, 'M', '涅'), + (0x2F906, 'M', '𣴞'), + (0x2F907, 'M', '洴'), + (0x2F908, 'M', '港'), + (0x2F909, 'M', '湮'), + (0x2F90A, 'M', '㴳'), + (0x2F90B, 'M', '滋'), + (0x2F90C, 'M', '滇'), + ] + +def _seg_79() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F90D, 'M', '𣻑'), + (0x2F90E, 'M', '淹'), + (0x2F90F, 'M', '潮'), + (0x2F910, 'M', '𣽞'), + (0x2F911, 'M', '𣾎'), + (0x2F912, 'M', '濆'), + (0x2F913, 'M', '瀹'), + (0x2F914, 'M', '瀞'), + (0x2F915, 'M', '瀛'), + (0x2F916, 'M', '㶖'), + (0x2F917, 'M', '灊'), + (0x2F918, 'M', '災'), + (0x2F919, 'M', '灷'), + (0x2F91A, 'M', '炭'), + (0x2F91B, 'M', '𠔥'), + (0x2F91C, 'M', '煅'), + (0x2F91D, 'M', '𤉣'), + (0x2F91E, 'M', '熜'), + (0x2F91F, 'X'), + (0x2F920, 'M', '爨'), + (0x2F921, 'M', '爵'), + (0x2F922, 'M', '牐'), + (0x2F923, 'M', '𤘈'), + (0x2F924, 'M', '犀'), + (0x2F925, 'M', '犕'), + (0x2F926, 'M', '𤜵'), + (0x2F927, 'M', '𤠔'), + (0x2F928, 'M', '獺'), + (0x2F929, 'M', '王'), + (0x2F92A, 'M', '㺬'), + (0x2F92B, 'M', '玥'), + (0x2F92C, 'M', '㺸'), + (0x2F92E, 'M', '瑇'), + (0x2F92F, 'M', '瑜'), + (0x2F930, 'M', '瑱'), + (0x2F931, 'M', '璅'), + (0x2F932, 'M', '瓊'), + (0x2F933, 'M', '㼛'), + (0x2F934, 'M', '甤'), + (0x2F935, 'M', '𤰶'), + (0x2F936, 'M', '甾'), + (0x2F937, 'M', '𤲒'), + (0x2F938, 'M', '異'), + (0x2F939, 'M', '𢆟'), + (0x2F93A, 'M', '瘐'), + (0x2F93B, 'M', '𤾡'), + (0x2F93C, 'M', '𤾸'), + (0x2F93D, 'M', '𥁄'), + (0x2F93E, 'M', '㿼'), + (0x2F93F, 'M', '䀈'), + (0x2F940, 'M', '直'), + (0x2F941, 'M', '𥃳'), + (0x2F942, 'M', '𥃲'), + (0x2F943, 'M', '𥄙'), + (0x2F944, 'M', '𥄳'), + (0x2F945, 'M', '眞'), + (0x2F946, 'M', '真'), + (0x2F948, 'M', '睊'), + (0x2F949, 'M', '䀹'), + (0x2F94A, 'M', '瞋'), + (0x2F94B, 'M', '䁆'), + (0x2F94C, 'M', '䂖'), + (0x2F94D, 'M', '𥐝'), + (0x2F94E, 'M', '硎'), + (0x2F94F, 'M', '碌'), + (0x2F950, 'M', '磌'), + (0x2F951, 'M', '䃣'), + (0x2F952, 'M', '𥘦'), + (0x2F953, 'M', '祖'), + (0x2F954, 'M', '𥚚'), + (0x2F955, 'M', '𥛅'), + (0x2F956, 'M', '福'), + (0x2F957, 'M', '秫'), + (0x2F958, 'M', '䄯'), + (0x2F959, 'M', '穀'), + (0x2F95A, 'M', '穊'), + (0x2F95B, 'M', '穏'), + (0x2F95C, 'M', '𥥼'), + (0x2F95D, 'M', '𥪧'), + (0x2F95F, 'X'), + (0x2F960, 'M', '䈂'), + (0x2F961, 'M', '𥮫'), + (0x2F962, 'M', '篆'), + (0x2F963, 'M', '築'), + (0x2F964, 'M', '䈧'), + (0x2F965, 'M', '𥲀'), + (0x2F966, 'M', '糒'), + (0x2F967, 'M', '䊠'), + (0x2F968, 'M', '糨'), + (0x2F969, 'M', '糣'), + (0x2F96A, 'M', '紀'), + (0x2F96B, 'M', '𥾆'), + (0x2F96C, 'M', '絣'), + (0x2F96D, 'M', '䌁'), + (0x2F96E, 'M', '緇'), + (0x2F96F, 'M', '縂'), + (0x2F970, 'M', '繅'), + (0x2F971, 'M', '䌴'), + (0x2F972, 'M', '𦈨'), + (0x2F973, 'M', '𦉇'), + ] + +def _seg_80() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F974, 'M', '䍙'), + (0x2F975, 'M', '𦋙'), + (0x2F976, 'M', '罺'), + (0x2F977, 'M', '𦌾'), + (0x2F978, 'M', '羕'), + (0x2F979, 'M', '翺'), + (0x2F97A, 'M', '者'), + (0x2F97B, 'M', '𦓚'), + (0x2F97C, 'M', '𦔣'), + (0x2F97D, 'M', '聠'), + (0x2F97E, 'M', '𦖨'), + (0x2F97F, 'M', '聰'), + (0x2F980, 'M', '𣍟'), + (0x2F981, 'M', '䏕'), + (0x2F982, 'M', '育'), + (0x2F983, 'M', '脃'), + (0x2F984, 'M', '䐋'), + (0x2F985, 'M', '脾'), + (0x2F986, 'M', '媵'), + (0x2F987, 'M', '𦞧'), + (0x2F988, 'M', '𦞵'), + (0x2F989, 'M', '𣎓'), + (0x2F98A, 'M', '𣎜'), + (0x2F98B, 'M', '舁'), + (0x2F98C, 'M', '舄'), + (0x2F98D, 'M', '辞'), + (0x2F98E, 'M', '䑫'), + (0x2F98F, 'M', '芑'), + (0x2F990, 'M', '芋'), + (0x2F991, 'M', '芝'), + (0x2F992, 'M', '劳'), + (0x2F993, 'M', '花'), + (0x2F994, 'M', '芳'), + (0x2F995, 'M', '芽'), + (0x2F996, 'M', '苦'), + (0x2F997, 'M', '𦬼'), + (0x2F998, 'M', '若'), + (0x2F999, 'M', '茝'), + (0x2F99A, 'M', '荣'), + (0x2F99B, 'M', '莭'), + (0x2F99C, 'M', '茣'), + (0x2F99D, 'M', '莽'), + (0x2F99E, 'M', '菧'), + (0x2F99F, 'M', '著'), + (0x2F9A0, 'M', '荓'), + (0x2F9A1, 'M', '菊'), + (0x2F9A2, 'M', '菌'), + (0x2F9A3, 'M', '菜'), + (0x2F9A4, 'M', '𦰶'), + (0x2F9A5, 'M', '𦵫'), + (0x2F9A6, 'M', '𦳕'), + (0x2F9A7, 'M', '䔫'), + (0x2F9A8, 'M', '蓱'), + (0x2F9A9, 'M', '蓳'), + (0x2F9AA, 'M', '蔖'), + (0x2F9AB, 'M', '𧏊'), + (0x2F9AC, 'M', '蕤'), + (0x2F9AD, 'M', '𦼬'), + (0x2F9AE, 'M', '䕝'), + (0x2F9AF, 'M', '䕡'), + (0x2F9B0, 'M', '𦾱'), + (0x2F9B1, 'M', '𧃒'), + (0x2F9B2, 'M', '䕫'), + (0x2F9B3, 'M', '虐'), + (0x2F9B4, 'M', '虜'), + (0x2F9B5, 'M', '虧'), + (0x2F9B6, 'M', '虩'), + (0x2F9B7, 'M', '蚩'), + (0x2F9B8, 'M', '蚈'), + (0x2F9B9, 'M', '蜎'), + (0x2F9BA, 'M', '蛢'), + (0x2F9BB, 'M', '蝹'), + (0x2F9BC, 'M', '蜨'), + (0x2F9BD, 'M', '蝫'), + (0x2F9BE, 'M', '螆'), + (0x2F9BF, 'X'), + (0x2F9C0, 'M', '蟡'), + (0x2F9C1, 'M', '蠁'), + (0x2F9C2, 'M', '䗹'), + (0x2F9C3, 'M', '衠'), + (0x2F9C4, 'M', '衣'), + (0x2F9C5, 'M', '𧙧'), + (0x2F9C6, 'M', '裗'), + (0x2F9C7, 'M', '裞'), + (0x2F9C8, 'M', '䘵'), + (0x2F9C9, 'M', '裺'), + (0x2F9CA, 'M', '㒻'), + (0x2F9CB, 'M', '𧢮'), + (0x2F9CC, 'M', '𧥦'), + (0x2F9CD, 'M', '䚾'), + (0x2F9CE, 'M', '䛇'), + (0x2F9CF, 'M', '誠'), + (0x2F9D0, 'M', '諭'), + (0x2F9D1, 'M', '變'), + (0x2F9D2, 'M', '豕'), + (0x2F9D3, 'M', '𧲨'), + (0x2F9D4, 'M', '貫'), + (0x2F9D5, 'M', '賁'), + (0x2F9D6, 'M', '贛'), + (0x2F9D7, 'M', '起'), + ] + +def _seg_81() -> List[Union[Tuple[int, str], Tuple[int, str, str]]]: + return [ + (0x2F9D8, 'M', '𧼯'), + (0x2F9D9, 'M', '𠠄'), + (0x2F9DA, 'M', '跋'), + (0x2F9DB, 'M', '趼'), + (0x2F9DC, 'M', '跰'), + (0x2F9DD, 'M', '𠣞'), + (0x2F9DE, 'M', '軔'), + (0x2F9DF, 'M', '輸'), + (0x2F9E0, 'M', '𨗒'), + (0x2F9E1, 'M', '𨗭'), + (0x2F9E2, 'M', '邔'), + (0x2F9E3, 'M', '郱'), + (0x2F9E4, 'M', '鄑'), + (0x2F9E5, 'M', '𨜮'), + (0x2F9E6, 'M', '鄛'), + (0x2F9E7, 'M', '鈸'), + (0x2F9E8, 'M', '鋗'), + (0x2F9E9, 'M', '鋘'), + (0x2F9EA, 'M', '鉼'), + (0x2F9EB, 'M', '鏹'), + (0x2F9EC, 'M', '鐕'), + (0x2F9ED, 'M', '𨯺'), + (0x2F9EE, 'M', '開'), + (0x2F9EF, 'M', '䦕'), + (0x2F9F0, 'M', '閷'), + (0x2F9F1, 'M', '𨵷'), + (0x2F9F2, 'M', '䧦'), + (0x2F9F3, 'M', '雃'), + (0x2F9F4, 'M', '嶲'), + (0x2F9F5, 'M', '霣'), + (0x2F9F6, 'M', '𩅅'), + (0x2F9F7, 'M', '𩈚'), + (0x2F9F8, 'M', '䩮'), + (0x2F9F9, 'M', '䩶'), + (0x2F9FA, 'M', '韠'), + (0x2F9FB, 'M', '𩐊'), + (0x2F9FC, 'M', '䪲'), + (0x2F9FD, 'M', '𩒖'), + (0x2F9FE, 'M', '頋'), + (0x2FA00, 'M', '頩'), + (0x2FA01, 'M', '𩖶'), + (0x2FA02, 'M', '飢'), + (0x2FA03, 'M', '䬳'), + (0x2FA04, 'M', '餩'), + (0x2FA05, 'M', '馧'), + (0x2FA06, 'M', '駂'), + (0x2FA07, 'M', '駾'), + (0x2FA08, 'M', '䯎'), + (0x2FA09, 'M', '𩬰'), + (0x2FA0A, 'M', '鬒'), + (0x2FA0B, 'M', '鱀'), + (0x2FA0C, 'M', '鳽'), + (0x2FA0D, 'M', '䳎'), + (0x2FA0E, 'M', '䳭'), + (0x2FA0F, 'M', '鵧'), + (0x2FA10, 'M', '𪃎'), + (0x2FA11, 'M', '䳸'), + (0x2FA12, 'M', '𪄅'), + (0x2FA13, 'M', '𪈎'), + (0x2FA14, 'M', '𪊑'), + (0x2FA15, 'M', '麻'), + (0x2FA16, 'M', '䵖'), + (0x2FA17, 'M', '黹'), + (0x2FA18, 'M', '黾'), + (0x2FA19, 'M', '鼅'), + (0x2FA1A, 'M', '鼏'), + (0x2FA1B, 'M', '鼖'), + (0x2FA1C, 'M', '鼻'), + (0x2FA1D, 'M', '𪘀'), + (0x2FA1E, 'X'), + (0x30000, 'V'), + (0x3134B, 'X'), + (0x31350, 'V'), + (0x323B0, 'X'), + (0xE0100, 'I'), + (0xE01F0, 'X'), + ] + +uts46data = tuple( + _seg_0() + + _seg_1() + + _seg_2() + + _seg_3() + + _seg_4() + + _seg_5() + + _seg_6() + + _seg_7() + + _seg_8() + + _seg_9() + + _seg_10() + + _seg_11() + + _seg_12() + + _seg_13() + + _seg_14() + + _seg_15() + + _seg_16() + + _seg_17() + + _seg_18() + + _seg_19() + + _seg_20() + + _seg_21() + + _seg_22() + + _seg_23() + + _seg_24() + + _seg_25() + + _seg_26() + + _seg_27() + + _seg_28() + + _seg_29() + + _seg_30() + + _seg_31() + + _seg_32() + + _seg_33() + + _seg_34() + + _seg_35() + + _seg_36() + + _seg_37() + + _seg_38() + + _seg_39() + + _seg_40() + + _seg_41() + + _seg_42() + + _seg_43() + + _seg_44() + + _seg_45() + + _seg_46() + + _seg_47() + + _seg_48() + + _seg_49() + + _seg_50() + + _seg_51() + + _seg_52() + + _seg_53() + + _seg_54() + + _seg_55() + + _seg_56() + + _seg_57() + + _seg_58() + + _seg_59() + + _seg_60() + + _seg_61() + + _seg_62() + + _seg_63() + + _seg_64() + + _seg_65() + + _seg_66() + + _seg_67() + + _seg_68() + + _seg_69() + + _seg_70() + + _seg_71() + + _seg_72() + + _seg_73() + + _seg_74() + + _seg_75() + + _seg_76() + + _seg_77() + + _seg_78() + + _seg_79() + + _seg_80() + + _seg_81() +) # type: Tuple[Union[Tuple[int, str], Tuple[int, str, str]], ...] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py new file mode 100644 index 00000000..919b86f1 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py @@ -0,0 +1,55 @@ +from .exceptions import * +from .ext import ExtType, Timestamp + +import os + + +version = (1, 0, 8) +__version__ = "1.0.8" + + +if os.environ.get("MSGPACK_PUREPYTHON"): + from .fallback import Packer, unpackb, Unpacker +else: + try: + from ._cmsgpack import Packer, unpackb, Unpacker + except ImportError: + from .fallback import Packer, unpackb, Unpacker + + +def pack(o, stream, **kwargs): + """ + Pack object `o` and write it to `stream` + + See :class:`Packer` for options. + """ + packer = Packer(**kwargs) + stream.write(packer.pack(o)) + + +def packb(o, **kwargs): + """ + Pack object `o` and return packed bytes + + See :class:`Packer` for options. + """ + return Packer(**kwargs).pack(o) + + +def unpack(stream, **kwargs): + """ + Unpack an object from `stream`. + + Raises `ExtraData` when `stream` contains extra bytes. + See :class:`Unpacker` for options. + """ + data = stream.read() + return unpackb(data, **kwargs) + + +# alias for compatibility to simplejson/marshal/pickle. +load = unpack +loads = unpackb + +dump = pack +dumps = packb diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..656db11dad34032723335161032219b2e32eadcd GIT binary patch literal 1790 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77bdeaeb8febb0959df62fb4e54c2501c6ca4da7 GIT binary patch literal 42092 zcmeHw3w)DTmfxqBEnBiATe9W1Wo&E<8=F@M7y~gj1cNaFOfvCg#t45h$k-D3B=b<@ zgk)!T43lh3GP{^2yK&mIF%8==yZif<*={?T-RbVk&bF11Svwj}%e2#9>poeScBj++ zI{lyfJtd1^c1XKz_XA(u*LNT1o_p@O=bn4M?-vy0b9kDXd?&8F%5ndS0`g;%Joh*0 zIqnL_a|0Z&w-atOyH4j+z+|wMN_Z5!Mm){sD2wHf{fE78dqqZ^oKml?Ve1#jx-hC>H}D(bZsMPSyP1Cy?iTcMt5jAY-%dWXU>p1G;J35i9sExAOD*;womxx3 z)KWQIErscq(rctJ{XX@sbs?@>iEBA;sN?*WdQQkAi1WD^ z*?bz==egJa^I7hk;d$y2m#L@Oz#)A2}HcdIDpoNBv{|V8j;* zAQ&3-r6C;XuT{mPXlk!XIus9XQ>FVGZ)gERBBKu!JnFr_ZO%gBa{UWNMx_KxBu|c0 z$85G;uD=BDxk;Xp7P@dbzcsr)hjSV%a3Cg4At%8i7M z)6_`i(T`6MeCJap79&vE0?~NE4oAWRp$Ptz>8yaUirN&wvv4_O>wt5CTeO!=*SCh`lnO@JG)0 zM#udcjFO{jDQ_{H3*3U!eWl}a$GmfO!nr!>Y>ZnQS)=>BI`&H>VQ?@AoF5!a>T7UmW+1iYWr&s8B&p4V-HndzUptAPis*0Xtj>=PTTOy(zElp3Rh3ci*PV zYZ7x)#yucsxs1Gl0%_q!eg-!}vMbyPPJ)9_hcI3;h67Q5TK_vnePhRY-wvS>Ihybn zChWh!y{~80Em4VHQ!0Pg`0%h_*fTyln#wyk9yvJN?Th$QdArX=1RwKS_Jo8nUu3r+ zgoIT7kqG8A^LzEFT;%FMf7+kQ>j(J;Mvk3cq7h!ArY=!^OEiH3KSyOl6qFxIXWiKW z&lO-rOs}GP%rMRg`7Dl82&wK2x||s|o(=|M$`Cp}lF~&|#t5~_6dA|T!}{&PBO*r8 zAc)@3sX@vy7{yH(!=XcJqb*)L==+4>*e0RhIfu|UPGTi0~xI! z@&$vTh-W-V1lBVwgvLB$H$Sytv0vD~96q#45fQsz0*ufSU>=;MW+7Fe6+q8F(EX}zLLbv-BgQc$ zCvly~lVv%TNymf%=`;Z|9ywhokI+13PmJ;siO6{5yfTT$$QX`rbzHM>WUp^Q)=@-zGA^&M&D8nAi2G4Q7 zM<6)x9)6sdL1}KlCqe0m-|uN38U+*6eoO?bUpVF&4hf!+Sd3VB%0A{hCn5bH&6;S9 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 34 + elif len(b) == 12: + nanoseconds, seconds = struct.unpack("!Iq", b) + else: + raise ValueError( + "Timestamp type can only be created from 32, 64, or 96-bit byte objects" + ) + return Timestamp(seconds, nanoseconds) + + def to_bytes(self): + """Pack this Timestamp object into bytes. + + Used for pure-Python msgpack packing. + + :returns data: Payload for EXT message with code -1 (timestamp type) + :rtype: bytes + """ + if (self.seconds >> 34) == 0: # seconds is non-negative and fits in 34 bits + data64 = self.nanoseconds << 34 | self.seconds + if data64 & 0xFFFFFFFF00000000 == 0: + # nanoseconds is zero and seconds < 2**32, so timestamp 32 + data = struct.pack("!L", data64) + else: + # timestamp 64 + data = struct.pack("!Q", data64) + else: + # timestamp 96 + data = struct.pack("!Iq", self.nanoseconds, self.seconds) + return data + + @staticmethod + def from_unix(unix_sec): + """Create a Timestamp from posix timestamp in seconds. + + :param unix_float: Posix timestamp in seconds. + :type unix_float: int or float + """ + seconds = int(unix_sec // 1) + nanoseconds = int((unix_sec % 1) * 10**9) + return Timestamp(seconds, nanoseconds) + + def to_unix(self): + """Get the timestamp as a floating-point value. + + :returns: posix timestamp + :rtype: float + """ + return self.seconds + self.nanoseconds / 1e9 + + @staticmethod + def from_unix_nano(unix_ns): + """Create a Timestamp from posix timestamp in nanoseconds. + + :param int unix_ns: Posix timestamp in nanoseconds. + :rtype: Timestamp + """ + return Timestamp(*divmod(unix_ns, 10**9)) + + def to_unix_nano(self): + """Get the timestamp as a unixtime in nanoseconds. + + :returns: posix timestamp in nanoseconds + :rtype: int + """ + return self.seconds * 10**9 + self.nanoseconds + + def to_datetime(self): + """Get the timestamp as a UTC datetime. + + :rtype: `datetime.datetime` + """ + utc = datetime.timezone.utc + return datetime.datetime.fromtimestamp(0, utc) + datetime.timedelta(seconds=self.to_unix()) + + @staticmethod + def from_datetime(dt): + """Create a Timestamp from datetime with tzinfo. + + :rtype: Timestamp + """ + return Timestamp.from_unix(dt.timestamp()) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py new file mode 100644 index 00000000..a174162a --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py @@ -0,0 +1,951 @@ +"""Fallback pure Python implementation of msgpack""" +from datetime import datetime as _DateTime +import sys +import struct + + +if hasattr(sys, "pypy_version_info"): + # StringIO is slow on PyPy, StringIO is faster. However: PyPy's own + # StringBuilder is fastest. + from __pypy__ import newlist_hint + + try: + from __pypy__.builders import BytesBuilder as StringBuilder + except ImportError: + from __pypy__.builders import StringBuilder + USING_STRINGBUILDER = True + + class StringIO: + def __init__(self, s=b""): + if s: + self.builder = StringBuilder(len(s)) + self.builder.append(s) + else: + self.builder = StringBuilder() + + def write(self, s): + if isinstance(s, memoryview): + s = s.tobytes() + elif isinstance(s, bytearray): + s = bytes(s) + self.builder.append(s) + + def getvalue(self): + return self.builder.build() + +else: + USING_STRINGBUILDER = False + from io import BytesIO as StringIO + + newlist_hint = lambda size: [] + + +from .exceptions import BufferFull, OutOfData, ExtraData, FormatError, StackError + +from .ext import ExtType, Timestamp + + +EX_SKIP = 0 +EX_CONSTRUCT = 1 +EX_READ_ARRAY_HEADER = 2 +EX_READ_MAP_HEADER = 3 + +TYPE_IMMEDIATE = 0 +TYPE_ARRAY = 1 +TYPE_MAP = 2 +TYPE_RAW = 3 +TYPE_BIN = 4 +TYPE_EXT = 5 + +DEFAULT_RECURSE_LIMIT = 511 + + +def _check_type_strict(obj, t, type=type, tuple=tuple): + if type(t) is tuple: + return type(obj) in t + else: + return type(obj) is t + + +def _get_data_from_buffer(obj): + view = memoryview(obj) + if view.itemsize != 1: + raise ValueError("cannot unpack from multi-byte object") + return view + + +def unpackb(packed, **kwargs): + """ + Unpack an object from `packed`. + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``ValueError`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + + See :class:`Unpacker` for options. + """ + unpacker = Unpacker(None, max_buffer_size=len(packed), **kwargs) + unpacker.feed(packed) + try: + ret = unpacker._unpack() + except OutOfData: + raise ValueError("Unpack failed: incomplete input") + except RecursionError: + raise StackError + if unpacker._got_extradata(): + raise ExtraData(ret, unpacker._get_extradata()) + return ret + + +_NO_FORMAT_USED = "" +_MSGPACK_HEADERS = { + 0xC4: (1, _NO_FORMAT_USED, TYPE_BIN), + 0xC5: (2, ">H", TYPE_BIN), + 0xC6: (4, ">I", TYPE_BIN), + 0xC7: (2, "Bb", TYPE_EXT), + 0xC8: (3, ">Hb", TYPE_EXT), + 0xC9: (5, ">Ib", TYPE_EXT), + 0xCA: (4, ">f"), + 0xCB: (8, ">d"), + 0xCC: (1, _NO_FORMAT_USED), + 0xCD: (2, ">H"), + 0xCE: (4, ">I"), + 0xCF: (8, ">Q"), + 0xD0: (1, "b"), + 0xD1: (2, ">h"), + 0xD2: (4, ">i"), + 0xD3: (8, ">q"), + 0xD4: (1, "b1s", TYPE_EXT), + 0xD5: (2, "b2s", TYPE_EXT), + 0xD6: (4, "b4s", TYPE_EXT), + 0xD7: (8, "b8s", TYPE_EXT), + 0xD8: (16, "b16s", TYPE_EXT), + 0xD9: (1, _NO_FORMAT_USED, TYPE_RAW), + 0xDA: (2, ">H", TYPE_RAW), + 0xDB: (4, ">I", TYPE_RAW), + 0xDC: (2, ">H", TYPE_ARRAY), + 0xDD: (4, ">I", TYPE_ARRAY), + 0xDE: (2, ">H", TYPE_MAP), + 0xDF: (4, ">I", TYPE_MAP), +} + + +class Unpacker: + """Streaming unpacker. + + Arguments: + + :param file_like: + File-like object having `.read(n)` method. + If specified, unpacker reads serialized data from it and `.feed()` is not usable. + + :param int read_size: + Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`) + + :param bool use_list: + If true, unpack msgpack array to Python list. + Otherwise, unpack to Python tuple. (default: True) + + :param bool raw: + If true, unpack msgpack raw to Python bytes. + Otherwise, unpack to Python str by decoding with UTF-8 encoding (default). + + :param int timestamp: + Control how timestamp type is unpacked: + + 0 - Timestamp + 1 - float (Seconds from the EPOCH) + 2 - int (Nanoseconds from the EPOCH) + 3 - datetime.datetime (UTC). + + :param bool strict_map_key: + If true (default), only str or bytes are accepted for map (dict) keys. + + :param object_hook: + When specified, it should be callable. + Unpacker calls it with a dict argument after unpacking msgpack map. + (See also simplejson) + + :param object_pairs_hook: + When specified, it should be callable. + Unpacker calls it with a list of key-value pairs after unpacking msgpack map. + (See also simplejson) + + :param str unicode_errors: + The error handler for decoding unicode. (default: 'strict') + This option should be used only when you have msgpack data which + contains invalid UTF-8 string. + + :param int max_buffer_size: + Limits size of data waiting unpacked. 0 means 2**32-1. + The default value is 100*1024*1024 (100MiB). + Raises `BufferFull` exception when it is insufficient. + You should set this parameter when unpacking data from untrusted source. + + :param int max_str_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of str. (default: max_buffer_size) + + :param int max_bin_len: + Deprecated, use *max_buffer_size* instead. + Limits max length of bin. (default: max_buffer_size) + + :param int max_array_len: + Limits max length of array. + (default: max_buffer_size) + + :param int max_map_len: + Limits max length of map. + (default: max_buffer_size//2) + + :param int max_ext_len: + Deprecated, use *max_buffer_size* instead. + Limits max size of ext type. (default: max_buffer_size) + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + file_like=None, + read_size=0, + use_list=True, + raw=False, + timestamp=0, + strict_map_key=True, + object_hook=None, + object_pairs_hook=None, + list_hook=None, + unicode_errors=None, + max_buffer_size=100 * 1024 * 1024, + ext_hook=ExtType, + max_str_len=-1, + max_bin_len=-1, + max_array_len=-1, + max_map_len=-1, + max_ext_len=-1, + ): + if unicode_errors is None: + unicode_errors = "strict" + + if file_like is None: + self._feeding = True + else: + if not callable(file_like.read): + raise TypeError("`file_like.read` must be callable") + self.file_like = file_like + self._feeding = False + + #: array of bytes fed. + self._buffer = bytearray() + #: Which position we currently reads + self._buff_i = 0 + + # When Unpacker is used as an iterable, between the calls to next(), + # the buffer is not "consumed" completely, for efficiency sake. + # Instead, it is done sloppily. To make sure we raise BufferFull at + # the correct moments, we have to keep track of how sloppy we were. + # Furthermore, when the buffer is incomplete (that is: in the case + # we raise an OutOfData) we need to rollback the buffer to the correct + # state, which _buf_checkpoint records. + self._buf_checkpoint = 0 + + if not max_buffer_size: + max_buffer_size = 2**31 - 1 + if max_str_len == -1: + max_str_len = max_buffer_size + if max_bin_len == -1: + max_bin_len = max_buffer_size + if max_array_len == -1: + max_array_len = max_buffer_size + if max_map_len == -1: + max_map_len = max_buffer_size // 2 + if max_ext_len == -1: + max_ext_len = max_buffer_size + + self._max_buffer_size = max_buffer_size + if read_size > self._max_buffer_size: + raise ValueError("read_size must be smaller than max_buffer_size") + self._read_size = read_size or min(self._max_buffer_size, 16 * 1024) + self._raw = bool(raw) + self._strict_map_key = bool(strict_map_key) + self._unicode_errors = unicode_errors + self._use_list = use_list + if not (0 <= timestamp <= 3): + raise ValueError("timestamp must be 0..3") + self._timestamp = timestamp + self._list_hook = list_hook + self._object_hook = object_hook + self._object_pairs_hook = object_pairs_hook + self._ext_hook = ext_hook + self._max_str_len = max_str_len + self._max_bin_len = max_bin_len + self._max_array_len = max_array_len + self._max_map_len = max_map_len + self._max_ext_len = max_ext_len + self._stream_offset = 0 + + if list_hook is not None and not callable(list_hook): + raise TypeError("`list_hook` is not callable") + if object_hook is not None and not callable(object_hook): + raise TypeError("`object_hook` is not callable") + if object_pairs_hook is not None and not callable(object_pairs_hook): + raise TypeError("`object_pairs_hook` is not callable") + if object_hook is not None and object_pairs_hook is not None: + raise TypeError("object_pairs_hook and object_hook are mutually exclusive") + if not callable(ext_hook): + raise TypeError("`ext_hook` is not callable") + + def feed(self, next_bytes): + assert self._feeding + view = _get_data_from_buffer(next_bytes) + if len(self._buffer) - self._buff_i + len(view) > self._max_buffer_size: + raise BufferFull + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Use extend here: INPLACE_ADD += doesn't reliably typecast memoryview in jython + self._buffer.extend(view) + + def _consume(self): + """Gets rid of the used parts of the buffer.""" + self._stream_offset += self._buff_i - self._buf_checkpoint + self._buf_checkpoint = self._buff_i + + def _got_extradata(self): + return self._buff_i < len(self._buffer) + + def _get_extradata(self): + return self._buffer[self._buff_i :] + + def read_bytes(self, n): + ret = self._read(n, raise_outofdata=False) + self._consume() + return ret + + def _read(self, n, raise_outofdata=True): + # (int) -> bytearray + self._reserve(n, raise_outofdata=raise_outofdata) + i = self._buff_i + ret = self._buffer[i : i + n] + self._buff_i = i + len(ret) + return ret + + def _reserve(self, n, raise_outofdata=True): + remain_bytes = len(self._buffer) - self._buff_i - n + + # Fast path: buffer has n bytes already + if remain_bytes >= 0: + return + + if self._feeding: + self._buff_i = self._buf_checkpoint + raise OutOfData + + # Strip buffer before checkpoint before reading file. + if self._buf_checkpoint > 0: + del self._buffer[: self._buf_checkpoint] + self._buff_i -= self._buf_checkpoint + self._buf_checkpoint = 0 + + # Read from file + remain_bytes = -remain_bytes + if remain_bytes + len(self._buffer) > self._max_buffer_size: + raise BufferFull + while remain_bytes > 0: + to_read_bytes = max(self._read_size, remain_bytes) + read_data = self.file_like.read(to_read_bytes) + if not read_data: + break + assert isinstance(read_data, bytes) + self._buffer += read_data + remain_bytes -= len(read_data) + + if len(self._buffer) < n + self._buff_i and raise_outofdata: + self._buff_i = 0 # rollback + raise OutOfData + + def _read_header(self): + typ = TYPE_IMMEDIATE + n = 0 + obj = None + self._reserve(1) + b = self._buffer[self._buff_i] + self._buff_i += 1 + if b & 0b10000000 == 0: + obj = b + elif b & 0b11100000 == 0b11100000: + obj = -1 - (b ^ 0xFF) + elif b & 0b11100000 == 0b10100000: + n = b & 0b00011111 + typ = TYPE_RAW + if n > self._max_str_len: + raise ValueError(f"{n} exceeds max_str_len({self._max_str_len})") + obj = self._read(n) + elif b & 0b11110000 == 0b10010000: + n = b & 0b00001111 + typ = TYPE_ARRAY + if n > self._max_array_len: + raise ValueError(f"{n} exceeds max_array_len({self._max_array_len})") + elif b & 0b11110000 == 0b10000000: + n = b & 0b00001111 + typ = TYPE_MAP + if n > self._max_map_len: + raise ValueError(f"{n} exceeds max_map_len({self._max_map_len})") + elif b == 0xC0: + obj = None + elif b == 0xC2: + obj = False + elif b == 0xC3: + obj = True + elif 0xC4 <= b <= 0xC6: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + n = struct.unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_bin_len: + raise ValueError(f"{n} exceeds max_bin_len({self._max_bin_len})") + obj = self._read(n) + elif 0xC7 <= b <= 0xC9: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + L, n = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if L > self._max_ext_len: + raise ValueError(f"{L} exceeds max_ext_len({self._max_ext_len})") + obj = self._read(L) + elif 0xCA <= b <= 0xD3: + size, fmt = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + obj = struct.unpack_from(fmt, self._buffer, self._buff_i)[0] + else: + obj = self._buffer[self._buff_i] + self._buff_i += size + elif 0xD4 <= b <= 0xD8: + size, fmt, typ = _MSGPACK_HEADERS[b] + if self._max_ext_len < size: + raise ValueError(f"{size} exceeds max_ext_len({self._max_ext_len})") + self._reserve(size + 1) + n, obj = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + 1 + elif 0xD9 <= b <= 0xDB: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + if len(fmt) > 0: + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + else: + n = self._buffer[self._buff_i] + self._buff_i += size + if n > self._max_str_len: + raise ValueError(f"{n} exceeds max_str_len({self._max_str_len})") + obj = self._read(n) + elif 0xDC <= b <= 0xDD: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_array_len: + raise ValueError(f"{n} exceeds max_array_len({self._max_array_len})") + elif 0xDE <= b <= 0xDF: + size, fmt, typ = _MSGPACK_HEADERS[b] + self._reserve(size) + (n,) = struct.unpack_from(fmt, self._buffer, self._buff_i) + self._buff_i += size + if n > self._max_map_len: + raise ValueError(f"{n} exceeds max_map_len({self._max_map_len})") + else: + raise FormatError("Unknown header: 0x%x" % b) + return typ, n, obj + + def _unpack(self, execute=EX_CONSTRUCT): + typ, n, obj = self._read_header() + + if execute == EX_READ_ARRAY_HEADER: + if typ != TYPE_ARRAY: + raise ValueError("Expected array") + return n + if execute == EX_READ_MAP_HEADER: + if typ != TYPE_MAP: + raise ValueError("Expected map") + return n + # TODO should we eliminate the recursion? + if typ == TYPE_ARRAY: + if execute == EX_SKIP: + for i in range(n): + # TODO check whether we need to call `list_hook` + self._unpack(EX_SKIP) + return + ret = newlist_hint(n) + for i in range(n): + ret.append(self._unpack(EX_CONSTRUCT)) + if self._list_hook is not None: + ret = self._list_hook(ret) + # TODO is the interaction between `list_hook` and `use_list` ok? + return ret if self._use_list else tuple(ret) + if typ == TYPE_MAP: + if execute == EX_SKIP: + for i in range(n): + # TODO check whether we need to call hooks + self._unpack(EX_SKIP) + self._unpack(EX_SKIP) + return + if self._object_pairs_hook is not None: + ret = self._object_pairs_hook( + (self._unpack(EX_CONSTRUCT), self._unpack(EX_CONSTRUCT)) for _ in range(n) + ) + else: + ret = {} + for _ in range(n): + key = self._unpack(EX_CONSTRUCT) + if self._strict_map_key and type(key) not in (str, bytes): + raise ValueError("%s is not allowed for map key" % str(type(key))) + if isinstance(key, str): + key = sys.intern(key) + ret[key] = self._unpack(EX_CONSTRUCT) + if self._object_hook is not None: + ret = self._object_hook(ret) + return ret + if execute == EX_SKIP: + return + if typ == TYPE_RAW: + if self._raw: + obj = bytes(obj) + else: + obj = obj.decode("utf_8", self._unicode_errors) + return obj + if typ == TYPE_BIN: + return bytes(obj) + if typ == TYPE_EXT: + if n == -1: # timestamp + ts = Timestamp.from_bytes(bytes(obj)) + if self._timestamp == 1: + return ts.to_unix() + elif self._timestamp == 2: + return ts.to_unix_nano() + elif self._timestamp == 3: + return ts.to_datetime() + else: + return ts + else: + return self._ext_hook(n, bytes(obj)) + assert typ == TYPE_IMMEDIATE + return obj + + def __iter__(self): + return self + + def __next__(self): + try: + ret = self._unpack(EX_CONSTRUCT) + self._consume() + return ret + except OutOfData: + self._consume() + raise StopIteration + except RecursionError: + raise StackError + + next = __next__ + + def skip(self): + self._unpack(EX_SKIP) + self._consume() + + def unpack(self): + try: + ret = self._unpack(EX_CONSTRUCT) + except RecursionError: + raise StackError + self._consume() + return ret + + def read_array_header(self): + ret = self._unpack(EX_READ_ARRAY_HEADER) + self._consume() + return ret + + def read_map_header(self): + ret = self._unpack(EX_READ_MAP_HEADER) + self._consume() + return ret + + def tell(self): + return self._stream_offset + + +class Packer: + """ + MessagePack Packer + + Usage:: + + packer = Packer() + astream.write(packer.pack(a)) + astream.write(packer.pack(b)) + + Packer's constructor has some keyword arguments: + + :param default: + When specified, it should be callable. + Convert user type to builtin type that Packer supports. + See also simplejson's document. + + :param bool use_single_float: + Use single precision float type for float. (default: False) + + :param bool autoreset: + Reset buffer after each pack and return its content as `bytes`. (default: True). + If set this to false, use `bytes()` to get content and `.reset()` to clear buffer. + + :param bool use_bin_type: + Use bin type introduced in msgpack spec 2.0 for bytes. + It also enables str8 type for unicode. (default: True) + + :param bool strict_types: + If set to true, types will be checked to be exact. Derived classes + from serializable types will not be serialized and will be + treated as unsupported type and forwarded to default. + Additionally tuples will not be serialized as lists. + This is useful when trying to implement accurate serialization + for python types. + + :param bool datetime: + If set to true, datetime with tzinfo is packed into Timestamp type. + Note that the tzinfo is stripped in the timestamp. + You can get UTC datetime with `timestamp=3` option of the Unpacker. + + :param str unicode_errors: + The error handler for encoding unicode. (default: 'strict') + DO NOT USE THIS!! This option is kept for very specific usage. + + Example of streaming deserialize from file-like object:: + + unpacker = Unpacker(file_like) + for o in unpacker: + process(o) + + Example of streaming deserialize from socket:: + + unpacker = Unpacker() + while True: + buf = sock.recv(1024**2) + if not buf: + break + unpacker.feed(buf) + for o in unpacker: + process(o) + + Raises ``ExtraData`` when *packed* contains extra bytes. + Raises ``OutOfData`` when *packed* is incomplete. + Raises ``FormatError`` when *packed* is not valid msgpack. + Raises ``StackError`` when *packed* contains too nested. + Other exceptions can be raised during unpacking. + """ + + def __init__( + self, + default=None, + use_single_float=False, + autoreset=True, + use_bin_type=True, + strict_types=False, + datetime=False, + unicode_errors=None, + ): + self._strict_types = strict_types + self._use_float = use_single_float + self._autoreset = autoreset + self._use_bin_type = use_bin_type + self._buffer = StringIO() + self._datetime = bool(datetime) + self._unicode_errors = unicode_errors or "strict" + if default is not None: + if not callable(default): + raise TypeError("default must be callable") + self._default = default + + def _pack( + self, + obj, + nest_limit=DEFAULT_RECURSE_LIMIT, + check=isinstance, + check_type_strict=_check_type_strict, + ): + default_used = False + if self._strict_types: + check = check_type_strict + list_types = list + else: + list_types = (list, tuple) + while True: + if nest_limit < 0: + raise ValueError("recursion limit exceeded") + if obj is None: + return self._buffer.write(b"\xc0") + if check(obj, bool): + if obj: + return self._buffer.write(b"\xc3") + return self._buffer.write(b"\xc2") + if check(obj, int): + if 0 <= obj < 0x80: + return self._buffer.write(struct.pack("B", obj)) + if -0x20 <= obj < 0: + return self._buffer.write(struct.pack("b", obj)) + if 0x80 <= obj <= 0xFF: + return self._buffer.write(struct.pack("BB", 0xCC, obj)) + if -0x80 <= obj < 0: + return self._buffer.write(struct.pack(">Bb", 0xD0, obj)) + if 0xFF < obj <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xCD, obj)) + if -0x8000 <= obj < -0x80: + return self._buffer.write(struct.pack(">Bh", 0xD1, obj)) + if 0xFFFF < obj <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xCE, obj)) + if -0x80000000 <= obj < -0x8000: + return self._buffer.write(struct.pack(">Bi", 0xD2, obj)) + if 0xFFFFFFFF < obj <= 0xFFFFFFFFFFFFFFFF: + return self._buffer.write(struct.pack(">BQ", 0xCF, obj)) + if -0x8000000000000000 <= obj < -0x80000000: + return self._buffer.write(struct.pack(">Bq", 0xD3, obj)) + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = True + continue + raise OverflowError("Integer value out of range") + if check(obj, (bytes, bytearray)): + n = len(obj) + if n >= 2**32: + raise ValueError("%s is too large" % type(obj).__name__) + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, str): + obj = obj.encode("utf-8", self._unicode_errors) + n = len(obj) + if n >= 2**32: + raise ValueError("String is too large") + self._pack_raw_header(n) + return self._buffer.write(obj) + if check(obj, memoryview): + n = obj.nbytes + if n >= 2**32: + raise ValueError("Memoryview is too large") + self._pack_bin_header(n) + return self._buffer.write(obj) + if check(obj, float): + if self._use_float: + return self._buffer.write(struct.pack(">Bf", 0xCA, obj)) + return self._buffer.write(struct.pack(">Bd", 0xCB, obj)) + if check(obj, (ExtType, Timestamp)): + if check(obj, Timestamp): + code = -1 + data = obj.to_bytes() + else: + code = obj.code + data = obj.data + assert isinstance(code, int) + assert isinstance(data, bytes) + L = len(data) + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xC7, L)) + elif L <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xC8, L)) + else: + self._buffer.write(struct.pack(">BI", 0xC9, L)) + self._buffer.write(struct.pack("b", code)) + self._buffer.write(data) + return + if check(obj, list_types): + n = len(obj) + self._pack_array_header(n) + for i in range(n): + self._pack(obj[i], nest_limit - 1) + return + if check(obj, dict): + return self._pack_map_pairs(len(obj), obj.items(), nest_limit - 1) + + if self._datetime and check(obj, _DateTime) and obj.tzinfo is not None: + obj = Timestamp.from_datetime(obj) + default_used = 1 + continue + + if not default_used and self._default is not None: + obj = self._default(obj) + default_used = 1 + continue + + if self._datetime and check(obj, _DateTime): + raise ValueError(f"Cannot serialize {obj!r} where tzinfo=None") + + raise TypeError(f"Cannot serialize {obj!r}") + + def pack(self, obj): + try: + self._pack(obj) + except: + self._buffer = StringIO() # force reset + raise + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_map_pairs(self, pairs): + self._pack_map_pairs(len(pairs), pairs) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_array_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_array_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_map_header(self, n): + if n >= 2**32: + raise ValueError + self._pack_map_header(n) + if self._autoreset: + ret = self._buffer.getvalue() + self._buffer = StringIO() + return ret + + def pack_ext_type(self, typecode, data): + if not isinstance(typecode, int): + raise TypeError("typecode must have int type.") + if not 0 <= typecode <= 127: + raise ValueError("typecode should be 0-127") + if not isinstance(data, bytes): + raise TypeError("data must have bytes type") + L = len(data) + if L > 0xFFFFFFFF: + raise ValueError("Too large data") + if L == 1: + self._buffer.write(b"\xd4") + elif L == 2: + self._buffer.write(b"\xd5") + elif L == 4: + self._buffer.write(b"\xd6") + elif L == 8: + self._buffer.write(b"\xd7") + elif L == 16: + self._buffer.write(b"\xd8") + elif L <= 0xFF: + self._buffer.write(b"\xc7" + struct.pack("B", L)) + elif L <= 0xFFFF: + self._buffer.write(b"\xc8" + struct.pack(">H", L)) + else: + self._buffer.write(b"\xc9" + struct.pack(">I", L)) + self._buffer.write(struct.pack("B", typecode)) + self._buffer.write(data) + + def _pack_array_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x90 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDC, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDD, n)) + raise ValueError("Array is too large") + + def _pack_map_header(self, n): + if n <= 0x0F: + return self._buffer.write(struct.pack("B", 0x80 + n)) + if n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xDE, n)) + if n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xDF, n)) + raise ValueError("Dict is too large") + + def _pack_map_pairs(self, n, pairs, nest_limit=DEFAULT_RECURSE_LIMIT): + self._pack_map_header(n) + for k, v in pairs: + self._pack(k, nest_limit - 1) + self._pack(v, nest_limit - 1) + + def _pack_raw_header(self, n): + if n <= 0x1F: + self._buffer.write(struct.pack("B", 0xA0 + n)) + elif self._use_bin_type and n <= 0xFF: + self._buffer.write(struct.pack(">BB", 0xD9, n)) + elif n <= 0xFFFF: + self._buffer.write(struct.pack(">BH", 0xDA, n)) + elif n <= 0xFFFFFFFF: + self._buffer.write(struct.pack(">BI", 0xDB, n)) + else: + raise ValueError("Raw is too large") + + def _pack_bin_header(self, n): + if not self._use_bin_type: + return self._pack_raw_header(n) + elif n <= 0xFF: + return self._buffer.write(struct.pack(">BB", 0xC4, n)) + elif n <= 0xFFFF: + return self._buffer.write(struct.pack(">BH", 0xC5, n)) + elif n <= 0xFFFFFFFF: + return self._buffer.write(struct.pack(">BI", 0xC6, n)) + else: + raise ValueError("Bin is too large") + + def bytes(self): + """Return internal buffer contents as bytes object""" + return self._buffer.getvalue() + + def reset(self): + """Reset internal buffer. + + This method is useful only when autoreset=False. + """ + self._buffer = StringIO() + + def getbuffer(self): + """Return view of internal buffer.""" + if USING_STRINGBUILDER: + return memoryview(self.bytes()) + else: + return self._buffer.getbuffer() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py new file mode 100644 index 00000000..9ba41d83 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py @@ -0,0 +1,15 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +__title__ = "packaging" +__summary__ = "Core utilities for Python packages" +__uri__ = "https://github.com/pypa/packaging" + +__version__ = "24.1" + +__author__ = "Donald Stufft and individual contributors" +__email__ = "donald@stufft.io" + +__license__ = "BSD-2-Clause or Apache-2.0" +__copyright__ = "2014 %s" % __author__ diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fa420a05618c535c95573a7cd08244b17e0fe0fb GIT binary patch literal 607 zcmYLHO^?$s5KY?d_G?r1zyUa*fCSpElz1C@KnNjVS3=@|R@z%GmK#qK?>cs5J4MMU z`~*($7x*olxK%w>;ty2X8zyj7!D#w@Xl(Nnwit#-z0CD4Sa*CPGnIjmSzUy@6OH6*xz4JCUZbn(uxo{WEP*H3nj1M+5pm@%$#H*NH{|plpTn) zN)XW+j7BN3Ohe`z-h%)|?8*ql5^*-S&h6ZN9!?{qnStQWW>l~O;Ux%a!T+2^7&F1F ztgxuoy;r%UC5P8)WEI-~;OLn>wr$sSw*$w!-}G0bs2Q#XLDSug?lr@W_o5lBjvh7r V&FI8Fj30da@N@j^v!{+M@eeRM#_j+B literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f695d48fb296c4576e397088d483dfa992c9df6b GIT binary patch literal 5016 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 J%pvNm{x4o7)CK?m literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fa77c9ff0da992fb93fac53e31dbe29c3a32689f GIT binary patch literal 4603 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 VGL^dKm%&9F4&u8pB(-yc{0A+9j$8l$ literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d3083760ed9926d9a7e68c24f5175b5ca1aacb67 GIT binary patch literal 14034 zcmbtbYit`=cAnw;O_6%PM-NM+B#Vh1JGSGOWJ`_`J-m|aG};G4YeqJ0iqzhrY>Sl> zWs`PgY+5Vm!%BCz>lOu8u8qP4_DA|}w}1B!334l9AhZTHK(YT6P>TS;{^&V(9vn)f zo!ySid+*%W+{ZcJIrp6FU%TB72A)75a{Ujz4D(xjQ6ICMU<;cp!#reoW{%-m-VkFK z4RZz-)5e%_&Iqw7W?D4QnHMc{mPPBFb(S+U1)Ja&JPU?KXgpUXScNLVD^x8Q z>AMd~eS(Ge;+s;(FIWT{UnTg3YPlAzSwnmGLGOOStc|3W@8+vNHqF)Xhxi(Z>+OvE z$M^8H@ZO-lt1;ip*FkdDZi2W0;$}X`H$vP3aTCO?d>`KoaU0*yw?NzuaVx|e zKft#^+`%8_+ad1c2YC+SE&n`o4$u=W=e;EcTNMhUGmGRl|^p)|E8Oc7IxFy7+DS^ym-|C~#6I&R7oQI6S%&|bN2HwK6uu4YW z${QdyL2QKB46zAf%ZfQ@lT4EdUYJ*UpdDfwXpt@WX>Y6SDifv!7_2al*~!POWWF7V zEekM0lPJU%NEH-`*pTDC-U!`DEDE8UiTN8sd{MX&i_YH&T_%Z}!mXqb67M9hMQ+3o z&&Q%6*s0qB35jGr6cI%sDTc1Y%7l`UYcb)H5En=!nIIt{emfM4UJEU)ByS|*M+aX$ z5)z|H;qX#q{#N9=AcmHrOQG;>*legQXTpwza345FNm2NB|7Mc9a{!P5l-^O?-aL z@P<_kjXyQdFhSF##GXzW0=+3?Z}2Saojn|$kHN}^!?;9oSo?68)Imf2;GqO5UAK7h zE3MZFm0|ck|Hf+%&whG#ySgt^-Iwj~Ne@*FJQhv4bL2X6bpmIT`*Bvix z_>Wf7wg!1sNf(qoHqk{R-Pq|N3~*IQ4+c05d0_&W!k`s?1uFy}GkdTwGUd~fKYAt1 zR}qZLFM~{A$Th$R>`#rr2L|ASPI+AWh+Uq$mv&d2I8IJPtWYR@qi2&{|MRr1NjG^i z0OkAV8p1pbkWIwmT$|+_Du7;_l@)LdOev>{NPT3i|rk0A+r90G*b#d1w>E4!| z-chWB0ccJPIgA0_XUviu6A^MtAVbN-qM9C$ipi4s8lfUQY~ehFMJm4n8zmTd0|FjR z8EMJ{d1fuoLQ_`Avteq*9&|{)%P9T%X%ML(sZkPB3YSdCw32a|#J;x2U=ZI1=Kro_ z5$+~QM3n5BdXVzTgT{e!s~n<&WC2kR^FZK0NGMXb)f*nwDAElqb>KGh>pNQoC z7fjya{%9<3cYX9`-c_45)#knak0$f3)|{zTUOTK`vcDF{fOTRE#~}eosqu4CSv>}1 zQqly4^m)pv+GUa39~&kCPt62yObi+&zoO|7-7=vTOi&VnXt#)oWil`5Wq?oCjr1)> zq4F8{6>!S|W1X!(iEdebv6ySSn01b%O(S$ZB~w8Lpi^msNl;O$O$JJohiBD+vnXt} zNvh>Q5(eJ*)TB=H9=pok)TUpobq^%p&6o6_#1YY_2#)uR-=H0?)V_A#fsx)b-80{_ zR2VfJ2a2O+nWR(e!?0>vHLjXhEl-pq2Vj&nHRj;p(JeW5hI?n`95;4xWO8s-ik^$QN8B$)WZtCL<(SNpS|UunBiTjZO-@ zWE`2im}&-nt5WTtMY4kOEG`4r0heJj$&`eVN^XVr6xM4xNQ&ynDdz;Ol0B)aypn^; zUiwZ>!s-!Zd~yl{q(pKS0*bP@aPY_i=K>aCFoeZ_55XFS{PT|gLC)KtzFEU+`2YjxSKXlX5EL@M)&2n zzW%vA+d7;vHLYD(Z`_cJYci&qjVtLx!)a4Z&UE1mXUpd7qoZ4vXZFvJXPuBce2`x> z&94r0JJkH{vG6nShKe+5RC$N|q&yWqf$8Hzc}t--IY$n8liCBVf#9?6xo3i&HTo|W z;&Jz>RprW?2q^oWiX3U&ka0Ft`GmrT5~_$4~da(rH~*Q8q=*ebJX z;$2VO>Vfy3F+L67EH`U&5*0c6=&%BH@t3dSpFTSCDoYH!C(iO-{V0no6s$_UzaJ-5 z4g$Own&qxck8^={X7oT3mPOjR;5ph#n97yMHNhTshcruCOwJjy! zC<&dBDIDiz%xf%zN%D-PDy2yKa?nC%upxyX3PgxOk{vV+Wzb%&uACtvami~f!_zdj z$KWdb#KS-<08dqnuX=4P?{KYM$h&=OqtC5XKm6ds4>poHYfIkdd*He6$=MnpwQXz6 z*cvyxbGG*9HLcq}2l6%bn~je~)7AZHSO0VDupwh>*sMth&VqKIvz!1eBIA$PwlyF ze#g3Hw}x?7Z8UC#;WXalsiWY>yP9V3dA=BRuooG2_t z=MypDmw?P{5*rM%my7JE)xg;pB&tIa5s~dHdYyTbn2)1Nat$dJe# zsL&}#4q)Zw%}*_=s5n+xgj$Q6T9z0p2@PF4-iCkbxIo0QGfWrrD%fT2faUpJ_%_RY z0C{(f?=pATpgnbo5`v-&p5X%HBcrq7;pw3ZZ;#A!cf_SWPA&`M@#mbJGd*_cO|6oO z<}Q89S@JF{p5!j6NwqFKCPYYLInGle!qX9@qADnGm;*<-NXj`*XX0+uoJ2cjaw$d0TznTfb{% z9NoWXOb*MggMrc_Jns0q9*t#vgX@-3B>KvWmHmv%zc%qzbus<5hzk0@4i0r1f7NLo z8nBieWsuYAeN30&k1;sm2+gQkGv& z!;9DKlYao7IjiFt$`^pKQE(U}sjGksP`2qE=#{ypSQ6}`4ar+DDp~KLY?A8Kpm#n2 z4g&6)kh~*+OM((TJ!*-P`NGu1#89fPn5U>fv~PYHS9rLJ`8JbIw5CTf6RlZgTu^;=_rJ z;KRXB2ebapZGUgZ-F5a?`wM4{%QN8 z`kXJAclkh{LH62p151|IUFzDm>v}SEJ&#t?XRoH~da`xztUL2I&ja^;_r@)`ENAQ8 zt!JFx7hwG_V0tgYdTKaO&|N|Ba#*jU_@t)Z?^F9<(hhtt@b`@o+?pbks5EU6XptiE z<)LXf?!P%QGd4pNaYe5M6+XT~Gh}SmRipi&7?z*avdw5EscQcxB;SGV$ai5)$sz`* z;!gtECGdsn&((@TtRIyE?2>FV;=|gM#1fdlhMi#WYxs#g1VEP##!;;zdQ;xkocDIV z0MT1Q&+OTjQ{XizB~A^}Thpc%4b$;O2KB!i9C90fBu3u!)T|N|>8Jpp7C0N09T9I$!59HL6~e736znD6 zX{+!ZN2TxV`$9Q^;#60!;uu_N4NaWY6m_I%v>J1 zARFZ1pnZ;`5Kp;ID+u-}`W3-b9_Z_83#sPn$n?zE)MWVb^vLMgpM__qhsMTby(@Km zu#Xd$7Z##-x%o((OT=RLR7gW z8$CdS9FZE;FO5%K7#a_c4-Jou%b!b~A5Y9jV%nKG7P%(G{JpliLFzB+^#B zw7O)Gi-Km&_ayf~8_IY=O%3RgLzNfpaEgsVaul~!GSf4qoE0X~>o<}jE;=eYGJMbt z$H0Pn`5q+Jm^~X)eF%(D{!rTY%Gz5hiUe|wu6$MFL(iw4Y!$a|-l^@~vS(|LAfTw{ z#$!J__1URMsdUqkob4#^uELXn-#EIEqw4^a4pO_OMZ5-MsH}`Wfl_=bE`N!ai@aT) zD8Lsc+ufB7RFqn!Z}|&ysQ0T?G)ugs-F~w~+?lki-_VgFlK4w{LgU4LgT^N3D$dq8`|3bZez5%rN(Vub|36uqd`qAD&yn}aNZ$sI_he99M! zlt}gANidzENRtVeD#b{8`)M3Mpc*@hu&hPa7L){rE}cBP)?T{ zN6B}}S+~%_tbCtkR;)o=Dn#j}xU+EJxH>dFHZ(jw0#{VNb!BRHx2PHNvxl8J#`ZX(6MD-&8VbXhKc$E15aspiZa2Wt^#|Bx+x(F&2+_Ich%~IYa zl7P!0Vi>MvhM{Fq$(O8fF)#*RJ;|@uk*{px07ipS_=L4{f)(zZ)^Ff6s- zZ{KXs*@HXYjz__t5B}3&w)4n#=j)ly*R$ReY1;|v-Jnj!G;+YkMoG1wgkDN{o- zS*czH$NO!DIEz{rujx)Ry8AdqG=ig|aT1)DZLk_ixL~{(R@R~Pg0NIuHkx2Z{OtX5@{)vorV#iybZa9(ko=n?Le&Ma(v}V0r+QuE6 zC*mkY>{&?Y_0@6)jpFR?u|)*dDH0k&tMsefGK7nY#)z1dTrm)YBoYe?pn%g$arAB$ z`gnCzQUyaP(aupM5)9tPsdhjDv~!nt+treBwQSC1U4gZc9cR_wR&QMSo2IO@1rAvU zXKI3Gbf)Xj$v427W{@UG1^XUV1J}zSJuOs_L7GjQ485#hC@-VKE1oCC%tRH&a<$Mh zuCq86cL_X6FmHS+;+tKq0r;kquP<7Ka_0)Q7y6xYW*0}XM$nn+aiB`32{3@Ru}Qpl zH#I9KrY_S8l3@()7)0Ze5lX1!Ow|={2`C2iUbtf4OAmgjs@`b4SD&4-Kp_Vm7^W_# z-qHY2{;*~^82}55fLEGMpBdmz4{#k2oq^w3{0(sL(^m+h@d3DJfc>e)4r=E(3hP_E zMj+eie*$@W#(jWwFu07={Bua?(XQ0HzvK07bpPn?x>v=v+MK-|44rxdy6USxPkr@6 z)C{WTfn5~*_itb~fgi1=!I-LGWKGWAhPkCy{;W5UwgsMh8@9du8E^ltfpwoK7>!k+ zB!VNB@)YPGBRByL17t<{j+WvKrpAKGxv9=1{)Y#=dO3jNWq_NY7b|slEx#MI$u14r z6&i;mV-)Uieg{9rVL-b_SXR^_*+M~c-zb}ltqu;md=KSwkCp3Jz0o>`y8Zt7OLlo? zS0e<<9zlEE;3=w`$iI~4hRS_}UabxG;{P6i|E~f!(BU@v!ZKV~$6NXcPvoB=kSxiS zC6LtwL5?8r5V<9c$BfoRWR zV4K%3V!9dAjq5cuA5TX9jlkx}MkwRzT(jrl?d0Y)xVlo^pK%YYIWXhY=G`q@g4(>R5J^E!h0*1$MXZ6}B5p zf4fGApPPFNW{7teSRd=Bxfllrc8wSxJ3-^;W^cg^?}b1W1U(H99QUxTh0Z1j&coEP nZzJTo>}*}3p&C*HPWDux#mPDfEhe_3;4!eRdk#M<^XUHpE;Lja literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..831140034f283d51fe26ea735f3fd1565ac5fdaa GIT binary patch literal 3290 zcmc&#%}*Og6rWvxV8F(tm|_A+9FeHFEi5Eet4dK$RnqogRZ31=R?F^SFEMLpcA+xj zz=1=hwo;`=f+Iauh(DzlDlXNkxBdfEt`w=KzTb>(d5xD+E*)v#zW4UcytnV;H^1a^ zV~p0~qE$UiG4=<9?n-u;_UFVLGMznV4m)6ucB-o{Yoz1sv}3lWNei7U5l;2cmHvKX)EZmd*lgG}?rrf}-L-4RSE8}WUj^Lo zzYf-|nzv-vUBl;MhYQ0Owqf}`4}7C)(aykHuk+{J|uWFcnAhvD#8SXDPTVcjD1#b$|+@0=5jvrp` zsz)expL&Arv)}TwZDLp?3HT(F@IEnzEa)XDfL5+OcG}T)-!CXPl@mQo)-1mkCJ}(h zkgdv;Krs;)Qp2cyi^x9vJwNs4v!lX~U!Ldhon`KcEcT}wL5&N$)1;(PD^jo% zz4A=p4^MP4N-t3$;$usxq@qZhW<8)7rUsG&WsdCH-P9DM*Q?!$ci{v6#0-&3j`%P~ zq@2W#SrGhL#0OeW{?alr{psJ+_Soj&&y!7eCSNcyK_V4l%=KN*4=m5-;izfab?P~) z{;&x7>md=j_@ z8h*qA?YP3xumV&`DRci2dr<({Dq*3*t5)Fd@czz-j0T!s)&_~D+7MN%ll!t3P7WS& zX$(e8)8kc2d!gSCji=Pk(}6xF2YK)Hex;np_;>^wrWuZz=2pYmu7l5-=Id>%-uaRs zC=lbcJ50Dw2!>JMUnNNs<9|=& zfL-WX>h{q>o6+kct))teFM*#vdUiqj>Ei&Or(;yB%4$_vt-`9HR0X9f#HdO?Y~c9P z+5J!c!dul2LE7~67A6R*eL&>@x_kHp-96)U_vBmIa!xE#C<1{+`ibP|*wB5mJG#{E z3ssH*7?tJSy))Qm5r{`sdk}wHjZqKA>DvtouJf8U`FH>46Pl^w5o-979D+~}IuaMaX@`_cEMGU51 CQEr^kRK9qpmFCS-~`D2jZH1QYXnHD zUe63q*?AJH>(#4Q{kp1NRlPU=5+So-7=96Y%+pAixQ9plrEOiiLD<4icAFDQ<*E8|YM8KMd-IYpG3>qK!r zVC^?ND8Dh`p<^x>bF1D5oJ~&nQbh46-gg;kx(B`SAe ze_7auhq4Fg%^L`1wDNwKyH{xhxKG&+ut{kKct8;W9(=0ImT#2V`n0*K`+~TAH9&3I zPBnqF^P7NrXa|0<+J^5sq_n|TJfj>27*-+x+m#~#JCshPONqYE{WX)QQ;w?j%C}wu zVO0Omg8rYY$VfEg*~qtli!X{WmPgKJbB1iBa#?*4`YuH_5~ z0%Cbbq{b3Pa~IXD#p#A-@mV>eTD+lNF)S{XH7w^$PEX+~2P3@Ylq4LNB+D&HnVd44 zM%*h&Kb)1*2xYN9X+e%E~pm`HL71W zCgtgDXEL3N>Z*20)uOtVjDk8;Lyw+^mqrbFGOeCcv$kfUYW7kzotli!4X)-{vYaLZEQ0Ync1_*1g# z_Wen`NI`Az`heC@;n`W?sKy^}P`Sb+I2YOcPvPgt6r-@$y$K$+Fn66#2y^5LlW>fX zh{Fn=l{NV2k$l#Wuf#Mhr%Sq=o?e}te@z#p^L56E9Ii=@C6hy=LZ3Jmnnt!OK-(5uWQhND8i!57F) z&`c$?FeDFtI2aKuUZ0V(R!v6Lbx^qFuvcjb`s|Dfo-0YIY|4-%%BiNOw0$5_+mE0T zfaQ`T>hF@I3(yy#UDI~qFa{X2ahp=QDiYBmdK-Y>Un8Yj(y(`qf5%na-3$+Jao2u$ zc>dGryHT^^-1E=QMry!h^*do2zK-hU9|2i}jZq*M0NdIWb}x`j;8s9yJ96;I@su%p zHh36Hz~G|@2(L1V;{sY{O9LtV77}!UTD8RbXn{G;Jt%(>cu>ut#fTc(&SHL~VY0E9 zH%-BfDvj{Aw)qRWRCe725mq~Ze2$E)T~sw4CyOFgzf}VkF*Hds_wHl@I@AK}`l|r0 zkz%m^ma&*$$lnbv6jp+*ca!%#xz4X1l56|2`^KjR4(}_p^?qz2;HCe=IFBi9_?KTuc-!c8h z>`Yo6g8Q(F7$~f&SRZQR!^=aBOh&bZjI(VzT35D>xiKb$Tl~VtFZZ&v19| znb;^Wj#)mNah)^)xgjtCyk5_#|KZD7pY^Q zb6^W^>QTz!u{RG-v>%Ra8!2p~gj>emY?)|p+047%v)G}t=AQ8J(oL<(@UYR*cvJ`D*uY zyt}7ACjS_$vuQOTVN)N!#Lf+n1T-Bo*tX$9d3GoSoIchiO<;E0EA|Y=sIdzAao{O(7#Er&C$AveHxr+&-g1p1_p6 zlMtE>rOkZXm$i9Z3gg!m%J1AkD&!qa-XsOgRPBS`osIRzPsU@z7Tb;9dBWn(4fmTh zV{eM%#>5fJ9q$7tryOSU_~e+}X?Axej&{B}33P zX>_Ffi?i6*Ml3Ei*!PvFq>{!M#Iz0(fLIVUwd<^GK>3wL>coWQ>x-T2KG#1g4WH|e zjU-{`R$DoWGiyHw(t6RgwE}=*n}v+eE46m!SD*%XAB%6tbw|RX1fYcH6E#qVJK^b6 zT=38RKD(uY2q_-mc0p;2DRN8O%!6 z#p>=7)D~D4(Ru=^q%Jo#E>ve&f9PUHg&IrIfk{-a$Qf`*(SZ6Sm7SS2P;aW7!7-@p zk{89x)4;82lp~833l&WTW@H0+^e)<|mMR!$o$yCf^4|jjg$kA?)sHN&J0;A@=k<|! zZk|taDUxI-pvD-7Ty~Ya$`?2T6FqG^CQ<%DIfcH zq-rwG!`qnhoXaG_4$}M!*#-+7OMpr=qg$+|S~baBW+s(ZEkT2FS-0G%6T1r4{JHnNkmT^og}rmWUPGECA(06(2Z?k7;xF!jqUxsa z4{I(Mp=-D!cGo$oHiH+fmzSrZ12!WU%KF5?N-HoGEo(vG*rD*L*bxd#CeK7z^Z9`s zIOL?7&t;YM8rXJF3{;Tvr$iYl;aRA9vxZnXp>z$x(Mh0AXz}2aO1a3P3f)}cB;nLG zn^Dc+x+2S@EG%3{8(t%;9{>D{H(tD@eB#+x^akeRH{v(XlsMwuPqX+*IF0c$s(P`i z6#RU27wX6z(4$HL!q)c3yI;YolexnxP<8KAS>9oPR^7jE11E4{iMFL(BDxzSaVY6$ zY(UDuIr|R6BsJJz^w91hdHW`17$@2wPKVWz&Ot4yraOKK) zr`csE*to^3coD%TR4#2&416#Q2o>78?33F{O)eAjMes)~GhCzO_*# zjNz#)os;p%2Bi#*a=5a~_K^+NfHUEpR4y`|ms43g8X}(=?4?KNav+5ziKf3pl+(Dz zJSYIRg;{?tdoi24oVCNMh)Q@-JV~R^XvCr6QBT7#VhJ?b+HnN~4L#>pq7B9vZ5Y|y z>XjJ{j&M*+&dBI#TSNsQ;ojuEKFFZW-aL;mU&m-vg53V-s zT}&(_?(!=QZFBC`K;z?pxDpWW*8k1Ezub3E`7m=o^C>S*m7~JXpOat=GK})ZPeX&E(g5AsB zA+YDlA&>649d=b^Pr@mUHTBpPxV$k$Sxl;$0jA$zLlM(Lhd3pt(vX0~%PC_T_;h+D zAgXvLAX1;aoYFTs{U~e*+oQq#+QI+YsY7q@DVP0H@U{r2p)swHCW8>kmMu})+F2NY zaXb^+`Ns)v0c(YAgI^EMX`c-pHrWiUJA_S{11|mB0Kg;MBv3zZ-Y{<;`ow>r7~1tX z6j=#H?!}j;mlDhECmw~mm%ZI!o%#HY{Ga{N^4A{GuY<^^h0&`J7_YIf5LEsZW~TtT zUI7%Cox)qie5Q{;K3~5Kp}8L3Y_|eK&DRE16K0Jql?`rnP&!`Hi75k;5N~fn+;bL} zRY6?H*41wio1OQrsyvKfHV}SU-U2d!R7t+%YJd$DFR$|dgpyV z@x5Pn``ibK_Y!vwtT@9reZ@w+1M#o=>*u`G^)Vy5@tOus^s)xGc@&2`v1-o3y;03s z8gxL}>@_cVJ>Xkg7QDW|ea$F0#a`u&>VBbl3wPX>R^b1Zsa#6GjVZrt7+q4_cHe+$ z9%KG_C{dw0Enh`;fif{g)0++OS{mKx5gnC^oe%H+7bK&zA%)043BDC-I9#Z(Xr&_u{dIW5r;@ zlN#RdE)m}4wu4bcIT$!FIkw^j-4j605a$08khG?qlRKnhvQt{G1R#cFS%qBX74lPN zkzoi;+)u07s$osv4^qp&UceHo%?^K1yfAmL{NNxII>4xWr7!^b->{lI`2}~Gi3o#c zs2ZSX!ouih3L;H@PDp-Ja26BcN(L;d-(K@y|^^2jItXMpRmw{^waS_~b!J9c+q zsbR@nO8+MO@pnHCF9$}7`@$uG_zpcGoUax_tIIdKzobUchhlZ`(hqrx=aN8F+ino1@U=(-l8r=3Zt~GMP9_SwZ&hJQ_P`}n*BkWrX zIfaJOe$w(x@j&b6o`B${_l58T2@MBIF2vlVuBn7$cwZP=^C5PKI0BD_<`tp2#MTS- z#m1%*htH0v{e0>B^ttNV{e=MZHI6tAe2$#+K$iX?-ZX4gppFW|LUXm+W7gUe>Vk z#L%h#6~Ge5FwDP`md{A=Ux@49$ie?0ZU03M!YP*Ze93Z5s6+sOW>`-NyHC6!riZ!h zdP4A7YCrlMTjY1$7D^motNiZU4J83Em@m}bij`^*cM_rg*13`kaW@eHx9UqC#JxoD z&W)CQh}R-d;?^)$t|ivt@&d)>nRnlCuLWJZ93?+8wGhFz>~1TyV&@PMd~>-{8{*Hv zz+9ws81XO>+;cCMB8ayW!GFtri(PatxJ#@Tq&8NhHu-~&(h+2Og~2s7-U=-?E;JUM z!N<P5kdSoEx9pFuk)sUz+i~s0id(x`%f@AC-YbbVUpe>6wpc3D zT(6Un458PqrdI`)mu!)j6mft8bN6G*FktAg{UA#PVs2H`MGbTrFhGsGt;sNS-*?D+ zc_}j)3hWU4&UerIocq1c{pYGGI|FHOFfjFwmtlU14_dMn5O#y(80Hr9WkzH~Hq1m= zAIl=ng*hKbbKb|(T<{4rH~CDE^I>zu;QrT#*`I4XranU9GQ<;+C*GQtzv$xHa4mY4kNlntV<4*%oe&wD?+BW{MH*f6n?^ zC9BjXwM}tS`y|%_3-@(!%n3$xTxUe5)cF=)*o&`=mR3P&wV~8QOI=V}V<_#WrL|C6 zC)xB7dcVN+8D9N#%MpWSFFEo^7V-g(7y3HBXJi`X$M)#q4e3(lZHX*goc-L zC_Php(l99fl7^RZC_Ptt(lD`U(dyeKHcLZd%K<19`@~jQ`LMV}Y=eA6>=)Z19~B40 z4#>BQgJLJ-V|3qLun*5$@a8f3cFb~K?}vzbS=AAUMq^4q3B{uFgjZ1cBhgvadNdFY z2QGvq)pl++E{VrNK}8jU0a^Kw#cn3memX!dN#uwUi)i?>Az4wm=i;jA`9OF^QmxMi zNC*dkS)B0zktKhGc7o^HGx$u-&PJ8M)#HT3h?i4qPDU>W!Xfc&TndIJLlRMKI(iTK z1Ow4nG!%p;3CSM~L?l>8Rk2TDIjZ~1QBj%snj5d2c#w3H6(VU2H-75VtlN~0K>389uAWy^-!ERZudYs67_@% z`|uRD>$wt;J(IDSs5s=AflbREc{(-|7Cl6ol!!-(dCnX^D9{V&c0!nkvIviSXCEa>;&V>WPUpQJ{oV-aceVk|fk50jmqYA#O6H-(n0VPI8;V4GK zp$nt&S!FsF9UmFnF)D`?X*eDTUJ6V}@@PC1AN60Bq9Qad6o#TxqlG=oBk@^!C=_(U z`Zg>8t}`EToXJW&fYX}a>5v3*(a+id&Pxz%g}R%|3QmKhP)j953QGZ5 zQeAo*c~%B`GBnY~a~IgcKRFW)0}~V`>D2obYs(j-Ru_x4_D&eyuk``pOWI(!q#Z#A z0M+I98>F+}znMt;u_b~r_{-l0@P|ykr9CIK=Y@k0+q-f?*E$EUeBI7e*M93+4R31A z2`%fK02NNA?4hwGCp1^AY3+bf*EtjPsb;ne=7fQD{1mFH)ZY?4dzlRTaaGDng*%Xs-jHGQT)jTF+uQfRTHi7 znpJy92HBznqCrVDDKo%Hq>476B9piQCr$vMV=Y9IK{?7QAD)&~E*4jL0!U3%n@#l7 zQDqafM-}LyGE{By>n#cm{B&%Y9E5hW@Rz>>V4itwWvq3nfpquHt&7r%r7z#qnSSwR z;)Zj9U-(kWz2<001sC_OIQo{|@3h=&xj*$2?^A1C+wZ&oy5-%LT-WC^&i1vsrcCo- zuFiYo=vq}%nqU0NN>%^z_&fXV?R#MP$+knE)_mb;zM(nYlMbd{Sg@qn8}_`TZhnG_ z`k+pXut=1jlyp~~Al(wtmWV;o32>6v2vg=xG1piF@l+!BT?X=CG*S>*O1cBaz9Kb@ zE6qL0X)}^)0||qPk1VE*dA5xGO5^B#$3^}+5Z5v0E$D@5j!UwnRunEGnQTf)t~9P_ z`oG#Fptop7xM>wnGV}1Kj0Nj@l@D@LOprTY2W#Vj>0Fx@1&`X=Z*s5H3($6sFRc?9 zC&;n1^a|s(Ob{#dpj=WWwUDUCQEKf5}s4GOmvsG zA2|??ffXzt9MPNn8FZ9Ud;BZ&n|UTvbNEM%_m6zHbBSGUSgjq+)Q&rgQs>V=N<#WgKIVs~MX+wR>^r ziq*5`bfwHMKa(E&39vOZznl)-oPA^G+YL*@E6(kYTpj7jr7zwN)<0xZK{8< zZ^hE}0q!|hb9lk@fuknxZoIYk=HB%2?;OfFdmg$Q)9yRXx0{!?e7`H}9$X&Jx<@k3 zku{j}>BZwKww}DJ?$xU|uD)x|HSc-XygZh!z0-EP?X`~k=4|txoNI5!y7!^0VWH~d zk4#LI8XBmPnX2C}IA`W7pCOR?&ZyJV|mwRu&M2GiU zRW1}wn9=Zr7tS6?a0i}Ba8JR%8~z8MQrUwEw+L?F*ML%nJkL?1J4VifgHkZSV?++Z z=JkYXmL5hAm6$ezyb;-p#+Jn{pth0KHYJUNliZXpV>BM7T#u4@Qv%hg9fn?!d%WZp0SSq=COrwwtvL1rm7FD&UGI0PafNuj)6N9w%=b{t`wg-`|`nz&?4iZ zU)y?!`8(SY2mkkW7GMyHXhK^~fIkokyRj1x`a z7we`PnSyTb!C&qL0Poz+SRD&f*Irt4)n{>%T>bu>Yk$VNe;vem-Tdh%`n4oaoe*KpG-o!n6%@3S%iDG)g^Sf%X(^wxfcb9070y|c=87$B z(T-2)`)NH&W7-rH2{a|GNn6tLHm8L;Uw}6;XPvWs<_WnCy-i6yOlmlzUnIf*zYMAc zZCSttv`l68m48oimCk%hw>RN@e=9HwhE-@1O~7(oC6@D=CqDcwB%oRenj+PL$OE^7 zkW29V|IURVb9sn%YJ4a_jH}ELBa{{Us7Ra%C|VFxuE3GMg7wL`#R5lG58Zt}eeM-G zwe!{4yU%}2MBI*pnq1^0;0BA!9EisulBU)^F%9*~$X;xYj7cRjp2)1%u3C!0Hq~JW z3aREP5}S$3s`FM;u_5NYXJqssOvt?^o zoL-u}-*Z2d>pc9v^ToZSu z&fu|E?5kUurSb6elZ?T}tk6c$J?cstL9>7jtta)?(5eyz6?++G#QTj+ zslr$oRNj=dR=@*Dyql6?hSp70@Tm6%d%jiY7Q_3~^=_%J$S*o5wUe(w;fKgoAaX%T zF~o~tD}rqZh7b%R7(pIw0TxmtIK1#A-43#n3P{c5&38T?QnsK2BK7zmeR{-Xj zHAm;7yxKLE?HXI{+L!Ixmvewsz1G^X+B%eN9a?Q2%eI2k-Sn_)N4}?j&E0To&&@q+ z?R~55L)rGBT>D5F-qw5P(CtIHwxP1pu7TCA-Px|)xvsryTX(E({X%x@7jj!q$*WIJAq) zoO7geDi5yH;f?;NQk)ussjMbFwLHoAb;&%7o}|t%;7PX5aiw^j!M=RLQ%!Q$;BtMA zdx^WkYJMkm0la1!3{|WA#tTxo|0`;Cg5FKxB5eRL6uGh#o}{{6WuavfeSFeJ`erKO#t^;@+XkVs5Xm=1g<+F@&J3Q*7ruAJ8^4h_5$rgY)HHlxgE*5 zhBDR)dRbo}DhJfd;GctRd5xz|Ucz>uF!bO+f*(f z{ob5wU&gwxuvML9poai|N);~vQbrYQNtA0&mTWG$fe;+7uth_e&aCK!=o>EB*U0~B z^+ZfLsa+CEBHc8Q8IqQ2iot~{G0Icb?DtDA!se@V3d6?%-1-*if?ID%Z+W8;Owu)X zcgETM$W@ox`SR@I(IwOOPi0;G8EZe?|3sPO(XGL?O$Q*dCCQ`dI_)6l!16c93;2f;nP=oUs`p~`L=7KYX;IwDx z#}l47i3KIOcoB!||D?JUO9e4@o_rO~l}4GUA)>O|R1*#IgMz@fM%BD(1s74i5>lpB z^GsZXBc}csm6-4i3X(OE0jTcc^v2IwHmQo@flIm+(+Y->+`kQ@K)Ak+>FUk&j<4+c zLT=ZoT<0?xYg>N63ov~mYwd%;kh3e(wKMD3wdy#SbsT&kuQ-n8q0F-@=iL2ZAnQB= zdEU{Oar8j(s|grkigO$yM>V}md$O)=8P|AzbSwi;C$cp|k6a$G?>p{xWVRp8 zxsGM5$0$F+&G>2D+yHLQOehVh!bB`80XL)Fqj5IkDj$j}&|?Y9QTWgns(|!X(76IV zr9?ydEAS*eIAUSEA3#5^ZPR@``7Vxj3&Cv!uOYaL;2wfaUyz^#qGpJIC)y29*O?8j z$uzpLgEb9rm|4>n1p7D4f@$DCoXw`=EZr>a1MA<1{q^-z%*&nwdcdPdwBwZx#^TSz zx(o6Ozr}(FD5G~X2?y@DY*%=G5I3eV0mKOn3^))&DN#@g^gQYQ&16z9m2?d26E13+ z7VZK@Mn=xVvIw@YBS0D?uOldpC6GBNNYsKUJfeLs0oDq5hqMh{S@B)=LqqR4e)%*x z1JVM%bt0&^RjYQCJAC3Z=Q!q;Vl+Fhz0L*(>Jv|>yh?F`j4qlCgTy&=bsut1u?3h8m;si{`& zZbY>|k6#}h$FJK8CLD%_=r=j^qYY~LQJY8Q!tmuBd~L@`FRC1TlEO{lU!gI4GLF5z zfnW+j9Kk#SYX4I*DI=0MPADemB znmYBEf$XspKzeHt7XVK@W*~c9eVm0x-p35)8)vvG*1g`t9A=NP>wF8_n0F2q^05On ze`vC9n4tXE`x!_72i3!QTkWfDH`?;{x>vW|*j70!H2HO{t(Tj(XPjLdjE&_snw@Ox kMyHLf+h}fMhc^zGSocPai#7jO-w~EQ&VIzuj56E*0x@N91ONa4 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ea6c3db0c67bce5ae74dd36173342f742aa4d4ec GIT binary patch literal 25002 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 W|I(hP2!{WJPclq!6Oo?gn*RfLlDZB6 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5ca4f0ab19136e4dea98fa5da137dad9ff05eb13 GIT binary patch literal 38788 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py new file mode 100644 index 00000000..f7a02180 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py @@ -0,0 +1,110 @@ +""" +ELF file parser. + +This provides a class ``ELFFile`` that parses an ELF executable in a similar +interface to ``ZipFile``. Only the read interface is implemented. + +Based on: https://gist.github.com/lyssdod/f51579ae8d93c8657a5564aefc2ffbca +ELF header: https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html +""" + +from __future__ import annotations + +import enum +import os +import struct +from typing import IO + + +class ELFInvalid(ValueError): + pass + + +class EIClass(enum.IntEnum): + C32 = 1 + C64 = 2 + + +class EIData(enum.IntEnum): + Lsb = 1 + Msb = 2 + + +class EMachine(enum.IntEnum): + I386 = 3 + S390 = 22 + Arm = 40 + X8664 = 62 + AArc64 = 183 + + +class ELFFile: + """ + Representation of an ELF executable. + """ + + def __init__(self, f: IO[bytes]) -> None: + self._f = f + + try: + ident = self._read("16B") + except struct.error: + raise ELFInvalid("unable to parse identification") + magic = bytes(ident[:4]) + if magic != b"\x7fELF": + raise ELFInvalid(f"invalid magic: {magic!r}") + + self.capacity = ident[4] # Format for program header (bitness). + self.encoding = ident[5] # Data structure encoding (endianness). + + try: + # e_fmt: Format for program header. + # p_fmt: Format for section header. + # p_idx: Indexes to find p_type, p_offset, and p_filesz. + e_fmt, self._p_fmt, self._p_idx = { + (1, 1): ("HHIIIIIHHH", ">IIIIIIII", (0, 1, 4)), # 32-bit MSB. + (2, 1): ("HHIQQQIHHH", ">IIQQQQQQ", (0, 2, 5)), # 64-bit MSB. + }[(self.capacity, self.encoding)] + except KeyError: + raise ELFInvalid( + f"unrecognized capacity ({self.capacity}) or " + f"encoding ({self.encoding})" + ) + + try: + ( + _, + self.machine, # Architecture type. + _, + _, + self._e_phoff, # Offset of program header. + _, + self.flags, # Processor-specific flags. + _, + self._e_phentsize, # Size of section. + self._e_phnum, # Number of sections. + ) = self._read(e_fmt) + except struct.error as e: + raise ELFInvalid("unable to parse machine and section information") from e + + def _read(self, fmt: str) -> tuple[int, ...]: + return struct.unpack(fmt, self._f.read(struct.calcsize(fmt))) + + @property + def interpreter(self) -> str | None: + """ + The path recorded in the ``PT_INTERP`` section header. + """ + for index in range(self._e_phnum): + self._f.seek(self._e_phoff + self._e_phentsize * index) + try: + data = self._read(self._p_fmt) + except struct.error: + continue + if data[self._p_idx[0]] != 3: # Not PT_INTERP. + continue + self._f.seek(data[self._p_idx[1]]) + return os.fsdecode(self._f.read(data[self._p_idx[2]])).strip("\0") + return None diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py new file mode 100644 index 00000000..08f651fb --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py @@ -0,0 +1,262 @@ +from __future__ import annotations + +import collections +import contextlib +import functools +import os +import re +import sys +import warnings +from typing import Generator, Iterator, NamedTuple, Sequence + +from ._elffile import EIClass, EIData, ELFFile, EMachine + +EF_ARM_ABIMASK = 0xFF000000 +EF_ARM_ABI_VER5 = 0x05000000 +EF_ARM_ABI_FLOAT_HARD = 0x00000400 + + +# `os.PathLike` not a generic type until Python 3.9, so sticking with `str` +# as the type for `path` until then. +@contextlib.contextmanager +def _parse_elf(path: str) -> Generator[ELFFile | None, None, None]: + try: + with open(path, "rb") as f: + yield ELFFile(f) + except (OSError, TypeError, ValueError): + yield None + + +def _is_linux_armhf(executable: str) -> bool: + # hard-float ABI can be detected from the ELF header of the running + # process + # https://static.docs.arm.com/ihi0044/g/aaelf32.pdf + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.Arm + and f.flags & EF_ARM_ABIMASK == EF_ARM_ABI_VER5 + and f.flags & EF_ARM_ABI_FLOAT_HARD == EF_ARM_ABI_FLOAT_HARD + ) + + +def _is_linux_i686(executable: str) -> bool: + with _parse_elf(executable) as f: + return ( + f is not None + and f.capacity == EIClass.C32 + and f.encoding == EIData.Lsb + and f.machine == EMachine.I386 + ) + + +def _have_compatible_abi(executable: str, archs: Sequence[str]) -> bool: + if "armv7l" in archs: + return _is_linux_armhf(executable) + if "i686" in archs: + return _is_linux_i686(executable) + allowed_archs = { + "x86_64", + "aarch64", + "ppc64", + "ppc64le", + "s390x", + "loongarch64", + "riscv64", + } + return any(arch in allowed_archs for arch in archs) + + +# If glibc ever changes its major version, we need to know what the last +# minor version was, so we can build the complete list of all versions. +# For now, guess what the highest minor version might be, assume it will +# be 50 for testing. Once this actually happens, update the dictionary +# with the actual value. +_LAST_GLIBC_MINOR: dict[int, int] = collections.defaultdict(lambda: 50) + + +class _GLibCVersion(NamedTuple): + major: int + minor: int + + +def _glibc_version_string_confstr() -> str | None: + """ + Primary implementation of glibc_version_string using os.confstr. + """ + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module. + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c/Lib/platform.py#L175-L183 + try: + # Should be a string like "glibc 2.17". + version_string: str | None = os.confstr("CS_GNU_LIBC_VERSION") + assert version_string is not None + _, version = version_string.rsplit() + except (AssertionError, AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def _glibc_version_string_ctypes() -> str | None: + """ + Fallback implementation of glibc_version_string using ctypes. + """ + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + # + # We must also handle the special case where the executable is not a + # dynamically linked executable. This can occur when using musl libc, + # for example. In this situation, dlopen() will error, leading to an + # OSError. Interestingly, at least in the case of musl, there is no + # errno set on the OSError. The single string argument used to construct + # OSError comes from libc itself and is therefore not portable to + # hard code here. In any case, failure to call dlopen() means we + # can proceed, so we bail on our attempt. + try: + process_namespace = ctypes.CDLL(None) + except OSError: + return None + + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str: str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +def _glibc_version_string() -> str | None: + """Returns glibc version string, or None if not using glibc.""" + return _glibc_version_string_confstr() or _glibc_version_string_ctypes() + + +def _parse_glibc_version(version_str: str) -> tuple[int, int]: + """Parse glibc version. + + We use a regexp instead of str.split because we want to discard any + random junk that might come after the minor version -- this might happen + in patched/forked versions of glibc (e.g. Linaro's version of glibc + uses version strings like "2.20-2014.11"). See gh-3588. + """ + m = re.match(r"(?P[0-9]+)\.(?P[0-9]+)", version_str) + if not m: + warnings.warn( + f"Expected glibc version with 2 components major.minor," + f" got: {version_str}", + RuntimeWarning, + ) + return -1, -1 + return int(m.group("major")), int(m.group("minor")) + + +@functools.lru_cache +def _get_glibc_version() -> tuple[int, int]: + version_str = _glibc_version_string() + if version_str is None: + return (-1, -1) + return _parse_glibc_version(version_str) + + +# From PEP 513, PEP 600 +def _is_compatible(arch: str, version: _GLibCVersion) -> bool: + sys_glibc = _get_glibc_version() + if sys_glibc < version: + return False + # Check for presence of _manylinux module. + try: + import _manylinux + except ImportError: + return True + if hasattr(_manylinux, "manylinux_compatible"): + result = _manylinux.manylinux_compatible(version[0], version[1], arch) + if result is not None: + return bool(result) + return True + if version == _GLibCVersion(2, 5): + if hasattr(_manylinux, "manylinux1_compatible"): + return bool(_manylinux.manylinux1_compatible) + if version == _GLibCVersion(2, 12): + if hasattr(_manylinux, "manylinux2010_compatible"): + return bool(_manylinux.manylinux2010_compatible) + if version == _GLibCVersion(2, 17): + if hasattr(_manylinux, "manylinux2014_compatible"): + return bool(_manylinux.manylinux2014_compatible) + return True + + +_LEGACY_MANYLINUX_MAP = { + # CentOS 7 w/ glibc 2.17 (PEP 599) + (2, 17): "manylinux2014", + # CentOS 6 w/ glibc 2.12 (PEP 571) + (2, 12): "manylinux2010", + # CentOS 5 w/ glibc 2.5 (PEP 513) + (2, 5): "manylinux1", +} + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate manylinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be manylinux-compatible. + + :returns: An iterator of compatible manylinux tags. + """ + if not _have_compatible_abi(sys.executable, archs): + return + # Oldest glibc to be supported regardless of architecture is (2, 17). + too_old_glibc2 = _GLibCVersion(2, 16) + if set(archs) & {"x86_64", "i686"}: + # On x86/i686 also oldest glibc to be supported is (2, 5). + too_old_glibc2 = _GLibCVersion(2, 4) + current_glibc = _GLibCVersion(*_get_glibc_version()) + glibc_max_list = [current_glibc] + # We can assume compatibility across glibc major versions. + # https://sourceware.org/bugzilla/show_bug.cgi?id=24636 + # + # Build a list of maximum glibc versions so that we can + # output the canonical list of all glibc from current_glibc + # down to too_old_glibc2, including all intermediary versions. + for glibc_major in range(current_glibc.major - 1, 1, -1): + glibc_minor = _LAST_GLIBC_MINOR[glibc_major] + glibc_max_list.append(_GLibCVersion(glibc_major, glibc_minor)) + for arch in archs: + for glibc_max in glibc_max_list: + if glibc_max.major == too_old_glibc2.major: + min_minor = too_old_glibc2.minor + else: + # For other glibc major versions oldest supported is (x, 0). + min_minor = -1 + for glibc_minor in range(glibc_max.minor, min_minor, -1): + glibc_version = _GLibCVersion(glibc_max.major, glibc_minor) + tag = "manylinux_{}_{}".format(*glibc_version) + if _is_compatible(arch, glibc_version): + yield f"{tag}_{arch}" + # Handle the legacy manylinux1, manylinux2010, manylinux2014 tags. + if glibc_version in _LEGACY_MANYLINUX_MAP: + legacy_tag = _LEGACY_MANYLINUX_MAP[glibc_version] + if _is_compatible(arch, glibc_version): + yield f"{legacy_tag}_{arch}" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py new file mode 100644 index 00000000..d2bf30b5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py @@ -0,0 +1,85 @@ +"""PEP 656 support. + +This module implements logic to detect if the currently running Python is +linked against musl, and what musl version is used. +""" + +from __future__ import annotations + +import functools +import re +import subprocess +import sys +from typing import Iterator, NamedTuple, Sequence + +from ._elffile import ELFFile + + +class _MuslVersion(NamedTuple): + major: int + minor: int + + +def _parse_musl_version(output: str) -> _MuslVersion | None: + lines = [n for n in (n.strip() for n in output.splitlines()) if n] + if len(lines) < 2 or lines[0][:4] != "musl": + return None + m = re.match(r"Version (\d+)\.(\d+)", lines[1]) + if not m: + return None + return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2))) + + +@functools.lru_cache +def _get_musl_version(executable: str) -> _MuslVersion | None: + """Detect currently-running musl runtime version. + + This is done by checking the specified executable's dynamic linking + information, and invoking the loader to parse its output for a version + string. If the loader is musl, the output would be something like:: + + musl libc (x86_64) + Version 1.2.2 + Dynamic Program Loader + """ + try: + with open(executable, "rb") as f: + ld = ELFFile(f).interpreter + except (OSError, TypeError, ValueError): + return None + if ld is None or "musl" not in ld: + return None + proc = subprocess.run([ld], stderr=subprocess.PIPE, text=True) + return _parse_musl_version(proc.stderr) + + +def platform_tags(archs: Sequence[str]) -> Iterator[str]: + """Generate musllinux tags compatible to the current platform. + + :param archs: Sequence of compatible architectures. + The first one shall be the closest to the actual architecture and be the part of + platform tag after the ``linux_`` prefix, e.g. ``x86_64``. + The ``linux_`` prefix is assumed as a prerequisite for the current platform to + be musllinux-compatible. + + :returns: An iterator of compatible musllinux tags. + """ + sys_musl = _get_musl_version(sys.executable) + if sys_musl is None: # Python not dynamically linked against musl. + return + for arch in archs: + for minor in range(sys_musl.minor, -1, -1): + yield f"musllinux_{sys_musl.major}_{minor}_{arch}" + + +if __name__ == "__main__": # pragma: no cover + import sysconfig + + plat = sysconfig.get_platform() + assert plat.startswith("linux-"), "not linux" + + print("plat:", plat) + print("musl:", _get_musl_version(sys.executable)) + print("tags:", end=" ") + for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])): + print(t, end="\n ") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py new file mode 100644 index 00000000..c1238c06 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py @@ -0,0 +1,354 @@ +"""Handwritten parser of dependency specifiers. + +The docstring for each __parse_* function contains EBNF-inspired grammar representing +the implementation. +""" + +from __future__ import annotations + +import ast +from typing import NamedTuple, Sequence, Tuple, Union + +from ._tokenizer import DEFAULT_RULES, Tokenizer + + +class Node: + def __init__(self, value: str) -> None: + self.value = value + + def __str__(self) -> str: + return self.value + + def __repr__(self) -> str: + return f"<{self.__class__.__name__}('{self}')>" + + def serialize(self) -> str: + raise NotImplementedError + + +class Variable(Node): + def serialize(self) -> str: + return str(self) + + +class Value(Node): + def serialize(self) -> str: + return f'"{self}"' + + +class Op(Node): + def serialize(self) -> str: + return str(self) + + +MarkerVar = Union[Variable, Value] +MarkerItem = Tuple[MarkerVar, Op, MarkerVar] +MarkerAtom = Union[MarkerItem, Sequence["MarkerAtom"]] +MarkerList = Sequence[Union["MarkerList", MarkerAtom, str]] + + +class ParsedRequirement(NamedTuple): + name: str + url: str + extras: list[str] + specifier: str + marker: MarkerList | None + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for dependency specifier +# -------------------------------------------------------------------------------------- +def parse_requirement(source: str) -> ParsedRequirement: + return _parse_requirement(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_requirement(tokenizer: Tokenizer) -> ParsedRequirement: + """ + requirement = WS? IDENTIFIER WS? extras WS? requirement_details + """ + tokenizer.consume("WS") + + name_token = tokenizer.expect( + "IDENTIFIER", expected="package name at the start of dependency specifier" + ) + name = name_token.text + tokenizer.consume("WS") + + extras = _parse_extras(tokenizer) + tokenizer.consume("WS") + + url, specifier, marker = _parse_requirement_details(tokenizer) + tokenizer.expect("END", expected="end of dependency specifier") + + return ParsedRequirement(name, url, extras, specifier, marker) + + +def _parse_requirement_details( + tokenizer: Tokenizer, +) -> tuple[str, str, MarkerList | None]: + """ + requirement_details = AT URL (WS requirement_marker?)? + | specifier WS? (requirement_marker)? + """ + + specifier = "" + url = "" + marker = None + + if tokenizer.check("AT"): + tokenizer.read() + tokenizer.consume("WS") + + url_start = tokenizer.position + url = tokenizer.expect("URL", expected="URL after @").text + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + tokenizer.expect("WS", expected="whitespace after URL") + + # The input might end after whitespace. + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, span_start=url_start, after="URL and whitespace" + ) + else: + specifier_start = tokenizer.position + specifier = _parse_specifier(tokenizer) + tokenizer.consume("WS") + + if tokenizer.check("END", peek=True): + return (url, specifier, marker) + + marker = _parse_requirement_marker( + tokenizer, + span_start=specifier_start, + after=( + "version specifier" + if specifier + else "name and no valid version specifier" + ), + ) + + return (url, specifier, marker) + + +def _parse_requirement_marker( + tokenizer: Tokenizer, *, span_start: int, after: str +) -> MarkerList: + """ + requirement_marker = SEMICOLON marker WS? + """ + + if not tokenizer.check("SEMICOLON"): + tokenizer.raise_syntax_error( + f"Expected end or semicolon (after {after})", + span_start=span_start, + ) + tokenizer.read() + + marker = _parse_marker(tokenizer) + tokenizer.consume("WS") + + return marker + + +def _parse_extras(tokenizer: Tokenizer) -> list[str]: + """ + extras = (LEFT_BRACKET wsp* extras_list? wsp* RIGHT_BRACKET)? + """ + if not tokenizer.check("LEFT_BRACKET", peek=True): + return [] + + with tokenizer.enclosing_tokens( + "LEFT_BRACKET", + "RIGHT_BRACKET", + around="extras", + ): + tokenizer.consume("WS") + extras = _parse_extras_list(tokenizer) + tokenizer.consume("WS") + + return extras + + +def _parse_extras_list(tokenizer: Tokenizer) -> list[str]: + """ + extras_list = identifier (wsp* ',' wsp* identifier)* + """ + extras: list[str] = [] + + if not tokenizer.check("IDENTIFIER"): + return extras + + extras.append(tokenizer.read().text) + + while True: + tokenizer.consume("WS") + if tokenizer.check("IDENTIFIER", peek=True): + tokenizer.raise_syntax_error("Expected comma between extra names") + elif not tokenizer.check("COMMA"): + break + + tokenizer.read() + tokenizer.consume("WS") + + extra_token = tokenizer.expect("IDENTIFIER", expected="extra name after comma") + extras.append(extra_token.text) + + return extras + + +def _parse_specifier(tokenizer: Tokenizer) -> str: + """ + specifier = LEFT_PARENTHESIS WS? version_many WS? RIGHT_PARENTHESIS + | WS? version_many WS? + """ + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="version specifier", + ): + tokenizer.consume("WS") + parsed_specifiers = _parse_version_many(tokenizer) + tokenizer.consume("WS") + + return parsed_specifiers + + +def _parse_version_many(tokenizer: Tokenizer) -> str: + """ + version_many = (SPECIFIER (WS? COMMA WS? SPECIFIER)*)? + """ + parsed_specifiers = "" + while tokenizer.check("SPECIFIER"): + span_start = tokenizer.position + parsed_specifiers += tokenizer.read().text + if tokenizer.check("VERSION_PREFIX_TRAIL", peek=True): + tokenizer.raise_syntax_error( + ".* suffix can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position + 1, + ) + if tokenizer.check("VERSION_LOCAL_LABEL_TRAIL", peek=True): + tokenizer.raise_syntax_error( + "Local version label can only be used with `==` or `!=` operators", + span_start=span_start, + span_end=tokenizer.position, + ) + tokenizer.consume("WS") + if not tokenizer.check("COMMA"): + break + parsed_specifiers += tokenizer.read().text + tokenizer.consume("WS") + + return parsed_specifiers + + +# -------------------------------------------------------------------------------------- +# Recursive descent parser for marker expression +# -------------------------------------------------------------------------------------- +def parse_marker(source: str) -> MarkerList: + return _parse_full_marker(Tokenizer(source, rules=DEFAULT_RULES)) + + +def _parse_full_marker(tokenizer: Tokenizer) -> MarkerList: + retval = _parse_marker(tokenizer) + tokenizer.expect("END", expected="end of marker expression") + return retval + + +def _parse_marker(tokenizer: Tokenizer) -> MarkerList: + """ + marker = marker_atom (BOOLOP marker_atom)+ + """ + expression = [_parse_marker_atom(tokenizer)] + while tokenizer.check("BOOLOP"): + token = tokenizer.read() + expr_right = _parse_marker_atom(tokenizer) + expression.extend((token.text, expr_right)) + return expression + + +def _parse_marker_atom(tokenizer: Tokenizer) -> MarkerAtom: + """ + marker_atom = WS? LEFT_PARENTHESIS WS? marker WS? RIGHT_PARENTHESIS WS? + | WS? marker_item WS? + """ + + tokenizer.consume("WS") + if tokenizer.check("LEFT_PARENTHESIS", peek=True): + with tokenizer.enclosing_tokens( + "LEFT_PARENTHESIS", + "RIGHT_PARENTHESIS", + around="marker expression", + ): + tokenizer.consume("WS") + marker: MarkerAtom = _parse_marker(tokenizer) + tokenizer.consume("WS") + else: + marker = _parse_marker_item(tokenizer) + tokenizer.consume("WS") + return marker + + +def _parse_marker_item(tokenizer: Tokenizer) -> MarkerItem: + """ + marker_item = WS? marker_var WS? marker_op WS? marker_var WS? + """ + tokenizer.consume("WS") + marker_var_left = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + marker_op = _parse_marker_op(tokenizer) + tokenizer.consume("WS") + marker_var_right = _parse_marker_var(tokenizer) + tokenizer.consume("WS") + return (marker_var_left, marker_op, marker_var_right) + + +def _parse_marker_var(tokenizer: Tokenizer) -> MarkerVar: + """ + marker_var = VARIABLE | QUOTED_STRING + """ + if tokenizer.check("VARIABLE"): + return process_env_var(tokenizer.read().text.replace(".", "_")) + elif tokenizer.check("QUOTED_STRING"): + return process_python_str(tokenizer.read().text) + else: + tokenizer.raise_syntax_error( + message="Expected a marker variable or quoted string" + ) + + +def process_env_var(env_var: str) -> Variable: + if env_var in ("platform_python_implementation", "python_implementation"): + return Variable("platform_python_implementation") + else: + return Variable(env_var) + + +def process_python_str(python_str: str) -> Value: + value = ast.literal_eval(python_str) + return Value(str(value)) + + +def _parse_marker_op(tokenizer: Tokenizer) -> Op: + """ + marker_op = IN | NOT IN | OP + """ + if tokenizer.check("IN"): + tokenizer.read() + return Op("in") + elif tokenizer.check("NOT"): + tokenizer.read() + tokenizer.expect("WS", expected="whitespace after 'not'") + tokenizer.expect("IN", expected="'in' after 'not'") + return Op("not in") + elif tokenizer.check("OP"): + return Op(tokenizer.read().text) + else: + return tokenizer.raise_syntax_error( + "Expected marker operator, one of " + "<=, <, !=, ==, >=, >, ~=, ===, in, not in" + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py new file mode 100644 index 00000000..90a6465f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py @@ -0,0 +1,61 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + + +class InfinityType: + def __repr__(self) -> str: + return "Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return False + + def __le__(self, other: object) -> bool: + return False + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return True + + def __ge__(self, other: object) -> bool: + return True + + def __neg__(self: object) -> "NegativeInfinityType": + return NegativeInfinity + + +Infinity = InfinityType() + + +class NegativeInfinityType: + def __repr__(self) -> str: + return "-Infinity" + + def __hash__(self) -> int: + return hash(repr(self)) + + def __lt__(self, other: object) -> bool: + return True + + def __le__(self, other: object) -> bool: + return True + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) + + def __gt__(self, other: object) -> bool: + return False + + def __ge__(self, other: object) -> bool: + return False + + def __neg__(self: object) -> InfinityType: + return Infinity + + +NegativeInfinity = NegativeInfinityType() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py new file mode 100644 index 00000000..89d04160 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py @@ -0,0 +1,194 @@ +from __future__ import annotations + +import contextlib +import re +from dataclasses import dataclass +from typing import Iterator, NoReturn + +from .specifiers import Specifier + + +@dataclass +class Token: + name: str + text: str + position: int + + +class ParserSyntaxError(Exception): + """The provided source text could not be parsed correctly.""" + + def __init__( + self, + message: str, + *, + source: str, + span: tuple[int, int], + ) -> None: + self.span = span + self.message = message + self.source = source + + super().__init__() + + def __str__(self) -> str: + marker = " " * self.span[0] + "~" * (self.span[1] - self.span[0]) + "^" + return "\n ".join([self.message, self.source, marker]) + + +DEFAULT_RULES: dict[str, str | re.Pattern[str]] = { + "LEFT_PARENTHESIS": r"\(", + "RIGHT_PARENTHESIS": r"\)", + "LEFT_BRACKET": r"\[", + "RIGHT_BRACKET": r"\]", + "SEMICOLON": r";", + "COMMA": r",", + "QUOTED_STRING": re.compile( + r""" + ( + ('[^']*') + | + ("[^"]*") + ) + """, + re.VERBOSE, + ), + "OP": r"(===|==|~=|!=|<=|>=|<|>)", + "BOOLOP": r"\b(or|and)\b", + "IN": r"\bin\b", + "NOT": r"\bnot\b", + "VARIABLE": re.compile( + r""" + \b( + python_version + |python_full_version + |os[._]name + |sys[._]platform + |platform_(release|system) + |platform[._](version|machine|python_implementation) + |python_implementation + |implementation_(name|version) + |extra + )\b + """, + re.VERBOSE, + ), + "SPECIFIER": re.compile( + Specifier._operator_regex_str + Specifier._version_regex_str, + re.VERBOSE | re.IGNORECASE, + ), + "AT": r"\@", + "URL": r"[^ \t]+", + "IDENTIFIER": r"\b[a-zA-Z0-9][a-zA-Z0-9._-]*\b", + "VERSION_PREFIX_TRAIL": r"\.\*", + "VERSION_LOCAL_LABEL_TRAIL": r"\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*", + "WS": r"[ \t]+", + "END": r"$", +} + + +class Tokenizer: + """Context-sensitive token parsing. + + Provides methods to examine the input stream to check whether the next token + matches. + """ + + def __init__( + self, + source: str, + *, + rules: dict[str, str | re.Pattern[str]], + ) -> None: + self.source = source + self.rules: dict[str, re.Pattern[str]] = { + name: re.compile(pattern) for name, pattern in rules.items() + } + self.next_token: Token | None = None + self.position = 0 + + def consume(self, name: str) -> None: + """Move beyond provided token name, if at current position.""" + if self.check(name): + self.read() + + def check(self, name: str, *, peek: bool = False) -> bool: + """Check whether the next token has the provided name. + + By default, if the check succeeds, the token *must* be read before + another check. If `peek` is set to `True`, the token is not loaded and + would need to be checked again. + """ + assert ( + self.next_token is None + ), f"Cannot check for {name!r}, already have {self.next_token!r}" + assert name in self.rules, f"Unknown token name: {name!r}" + + expression = self.rules[name] + + match = expression.match(self.source, self.position) + if match is None: + return False + if not peek: + self.next_token = Token(name, match[0], self.position) + return True + + def expect(self, name: str, *, expected: str) -> Token: + """Expect a certain token name next, failing with a syntax error otherwise. + + The token is *not* read. + """ + if not self.check(name): + raise self.raise_syntax_error(f"Expected {expected}") + return self.read() + + def read(self) -> Token: + """Consume the next token and return it.""" + token = self.next_token + assert token is not None + + self.position += len(token.text) + self.next_token = None + + return token + + def raise_syntax_error( + self, + message: str, + *, + span_start: int | None = None, + span_end: int | None = None, + ) -> NoReturn: + """Raise ParserSyntaxError at the given position.""" + span = ( + self.position if span_start is None else span_start, + self.position if span_end is None else span_end, + ) + raise ParserSyntaxError( + message, + source=self.source, + span=span, + ) + + @contextlib.contextmanager + def enclosing_tokens( + self, open_token: str, close_token: str, *, around: str + ) -> Iterator[None]: + if self.check(open_token): + open_position = self.position + self.read() + else: + open_position = None + + yield + + if open_position is None: + return + + if not self.check(close_token): + self.raise_syntax_error( + f"Expected matching {close_token} for {open_token}, after {around}", + span_start=open_position, + ) + + self.read() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py new file mode 100644 index 00000000..7ac7bb69 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py @@ -0,0 +1,325 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import operator +import os +import platform +import sys +from typing import Any, Callable, TypedDict, cast + +from ._parser import MarkerAtom, MarkerList, Op, Value, Variable +from ._parser import parse_marker as _parse_marker +from ._tokenizer import ParserSyntaxError +from .specifiers import InvalidSpecifier, Specifier +from .utils import canonicalize_name + +__all__ = [ + "InvalidMarker", + "UndefinedComparison", + "UndefinedEnvironmentName", + "Marker", + "default_environment", +] + +Operator = Callable[[str, str], bool] + + +class InvalidMarker(ValueError): + """ + An invalid marker was found, users should refer to PEP 508. + """ + + +class UndefinedComparison(ValueError): + """ + An invalid operation was attempted on a value that doesn't support it. + """ + + +class UndefinedEnvironmentName(ValueError): + """ + A name was attempted to be used that does not exist inside of the + environment. + """ + + +class Environment(TypedDict): + implementation_name: str + """The implementation's identifier, e.g. ``'cpython'``.""" + + implementation_version: str + """ + The implementation's version, e.g. ``'3.13.0a2'`` for CPython 3.13.0a2, or + ``'7.3.13'`` for PyPy3.10 v7.3.13. + """ + + os_name: str + """ + The value of :py:data:`os.name`. The name of the operating system dependent module + imported, e.g. ``'posix'``. + """ + + platform_machine: str + """ + Returns the machine type, e.g. ``'i386'``. + + An empty string if the value cannot be determined. + """ + + platform_release: str + """ + The system's release, e.g. ``'2.2.0'`` or ``'NT'``. + + An empty string if the value cannot be determined. + """ + + platform_system: str + """ + The system/OS name, e.g. ``'Linux'``, ``'Windows'`` or ``'Java'``. + + An empty string if the value cannot be determined. + """ + + platform_version: str + """ + The system's release version, e.g. ``'#3 on degas'``. + + An empty string if the value cannot be determined. + """ + + python_full_version: str + """ + The Python version as string ``'major.minor.patchlevel'``. + + Note that unlike the Python :py:data:`sys.version`, this value will always include + the patchlevel (it defaults to 0). + """ + + platform_python_implementation: str + """ + A string identifying the Python implementation, e.g. ``'CPython'``. + """ + + python_version: str + """The Python version as string ``'major.minor'``.""" + + sys_platform: str + """ + This string contains a platform identifier that can be used to append + platform-specific components to :py:data:`sys.path`, for instance. + + For Unix systems, except on Linux and AIX, this is the lowercased OS name as + returned by ``uname -s`` with the first part of the version as returned by + ``uname -r`` appended, e.g. ``'sunos5'`` or ``'freebsd8'``, at the time when Python + was built. + """ + + +def _normalize_extra_values(results: Any) -> Any: + """ + Normalize extra values. + """ + if isinstance(results[0], tuple): + lhs, op, rhs = results[0] + if isinstance(lhs, Variable) and lhs.value == "extra": + normalized_extra = canonicalize_name(rhs.value) + rhs = Value(normalized_extra) + elif isinstance(rhs, Variable) and rhs.value == "extra": + normalized_extra = canonicalize_name(lhs.value) + lhs = Value(normalized_extra) + results[0] = lhs, op, rhs + return results + + +def _format_marker( + marker: list[str] | MarkerAtom | str, first: bool | None = True +) -> str: + assert isinstance(marker, (list, tuple, str)) + + # Sometimes we have a structure like [[...]] which is a single item list + # where the single item is itself it's own list. In that case we want skip + # the rest of this function so that we don't get extraneous () on the + # outside. + if ( + isinstance(marker, list) + and len(marker) == 1 + and isinstance(marker[0], (list, tuple)) + ): + return _format_marker(marker[0]) + + if isinstance(marker, list): + inner = (_format_marker(m, first=False) for m in marker) + if first: + return " ".join(inner) + else: + return "(" + " ".join(inner) + ")" + elif isinstance(marker, tuple): + return " ".join([m.serialize() for m in marker]) + else: + return marker + + +_operators: dict[str, Operator] = { + "in": lambda lhs, rhs: lhs in rhs, + "not in": lambda lhs, rhs: lhs not in rhs, + "<": operator.lt, + "<=": operator.le, + "==": operator.eq, + "!=": operator.ne, + ">=": operator.ge, + ">": operator.gt, +} + + +def _eval_op(lhs: str, op: Op, rhs: str) -> bool: + try: + spec = Specifier("".join([op.serialize(), rhs])) + except InvalidSpecifier: + pass + else: + return spec.contains(lhs, prereleases=True) + + oper: Operator | None = _operators.get(op.serialize()) + if oper is None: + raise UndefinedComparison(f"Undefined {op!r} on {lhs!r} and {rhs!r}.") + + return oper(lhs, rhs) + + +def _normalize(*values: str, key: str) -> tuple[str, ...]: + # PEP 685 – Comparison of extra names for optional distribution dependencies + # https://peps.python.org/pep-0685/ + # > When comparing extra names, tools MUST normalize the names being + # > compared using the semantics outlined in PEP 503 for names + if key == "extra": + return tuple(canonicalize_name(v) for v in values) + + # other environment markers don't have such standards + return values + + +def _evaluate_markers(markers: MarkerList, environment: dict[str, str]) -> bool: + groups: list[list[bool]] = [[]] + + for marker in markers: + assert isinstance(marker, (list, tuple, str)) + + if isinstance(marker, list): + groups[-1].append(_evaluate_markers(marker, environment)) + elif isinstance(marker, tuple): + lhs, op, rhs = marker + + if isinstance(lhs, Variable): + environment_key = lhs.value + lhs_value = environment[environment_key] + rhs_value = rhs.value + else: + lhs_value = lhs.value + environment_key = rhs.value + rhs_value = environment[environment_key] + + lhs_value, rhs_value = _normalize(lhs_value, rhs_value, key=environment_key) + groups[-1].append(_eval_op(lhs_value, op, rhs_value)) + else: + assert marker in ["and", "or"] + if marker == "or": + groups.append([]) + + return any(all(item) for item in groups) + + +def format_full_version(info: sys._version_info) -> str: + version = "{0.major}.{0.minor}.{0.micro}".format(info) + kind = info.releaselevel + if kind != "final": + version += kind[0] + str(info.serial) + return version + + +def default_environment() -> Environment: + iver = format_full_version(sys.implementation.version) + implementation_name = sys.implementation.name + return { + "implementation_name": implementation_name, + "implementation_version": iver, + "os_name": os.name, + "platform_machine": platform.machine(), + "platform_release": platform.release(), + "platform_system": platform.system(), + "platform_version": platform.version(), + "python_full_version": platform.python_version(), + "platform_python_implementation": platform.python_implementation(), + "python_version": ".".join(platform.python_version_tuple()[:2]), + "sys_platform": sys.platform, + } + + +class Marker: + def __init__(self, marker: str) -> None: + # Note: We create a Marker object without calling this constructor in + # packaging.requirements.Requirement. If any additional logic is + # added here, make sure to mirror/adapt Requirement. + try: + self._markers = _normalize_extra_values(_parse_marker(marker)) + # The attribute `_markers` can be described in terms of a recursive type: + # MarkerList = List[Union[Tuple[Node, ...], str, MarkerList]] + # + # For example, the following expression: + # python_version > "3.6" or (python_version == "3.6" and os_name == "unix") + # + # is parsed into: + # [ + # (, ')>, ), + # 'and', + # [ + # (, , ), + # 'or', + # (, , ) + # ] + # ] + except ParserSyntaxError as e: + raise InvalidMarker(str(e)) from e + + def __str__(self) -> str: + return _format_marker(self._markers) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash((self.__class__.__name__, str(self))) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Marker): + return NotImplemented + + return str(self) == str(other) + + def evaluate(self, environment: dict[str, str] | None = None) -> bool: + """Evaluate a marker. + + Return the boolean from evaluating the given marker against the + environment. environment is an optional argument to override all or + part of the determined environment. + + The environment is determined from the current Python process. + """ + current_environment = cast("dict[str, str]", default_environment()) + current_environment["extra"] = "" + # Work around platform.python_version() returning something that is not PEP 440 + # compliant for non-tagged Python builds. We preserve default_environment()'s + # behavior of returning platform.python_version() verbatim, and leave it to the + # caller to provide a syntactically valid version if they want to override it. + if current_environment["python_full_version"].endswith("+"): + current_environment["python_full_version"] += "local" + if environment is not None: + current_environment.update(environment) + # The API used to allow setting extra to None. We need to handle this + # case for backwards compatibility. + if current_environment["extra"] is None: + current_environment["extra"] = "" + + return _evaluate_markers(self._markers, current_environment) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py new file mode 100644 index 00000000..eb8dc844 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py @@ -0,0 +1,804 @@ +from __future__ import annotations + +import email.feedparser +import email.header +import email.message +import email.parser +import email.policy +import typing +from typing import ( + Any, + Callable, + Generic, + Literal, + TypedDict, + cast, +) + +from . import requirements, specifiers, utils +from . import version as version_module + +T = typing.TypeVar("T") + + +try: + ExceptionGroup +except NameError: # pragma: no cover + + class ExceptionGroup(Exception): + """A minimal implementation of :external:exc:`ExceptionGroup` from Python 3.11. + + If :external:exc:`ExceptionGroup` is already defined by Python itself, + that version is used instead. + """ + + message: str + exceptions: list[Exception] + + def __init__(self, message: str, exceptions: list[Exception]) -> None: + self.message = message + self.exceptions = exceptions + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self.message!r}, {self.exceptions!r})" + +else: # pragma: no cover + ExceptionGroup = ExceptionGroup + + +class InvalidMetadata(ValueError): + """A metadata field contains invalid data.""" + + field: str + """The name of the field that contains invalid data.""" + + def __init__(self, field: str, message: str) -> None: + self.field = field + super().__init__(message) + + +# The RawMetadata class attempts to make as few assumptions about the underlying +# serialization formats as possible. The idea is that as long as a serialization +# formats offer some very basic primitives in *some* way then we can support +# serializing to and from that format. +class RawMetadata(TypedDict, total=False): + """A dictionary of raw core metadata. + + Each field in core metadata maps to a key of this dictionary (when data is + provided). The key is lower-case and underscores are used instead of dashes + compared to the equivalent core metadata field. Any core metadata field that + can be specified multiple times or can hold multiple values in a single + field have a key with a plural name. See :class:`Metadata` whose attributes + match the keys of this dictionary. + + Core metadata fields that can be specified multiple times are stored as a + list or dict depending on which is appropriate for the field. Any fields + which hold multiple values in a single field are stored as a list. + + """ + + # Metadata 1.0 - PEP 241 + metadata_version: str + name: str + version: str + platforms: list[str] + summary: str + description: str + keywords: list[str] + home_page: str + author: str + author_email: str + license: str + + # Metadata 1.1 - PEP 314 + supported_platforms: list[str] + download_url: str + classifiers: list[str] + requires: list[str] + provides: list[str] + obsoletes: list[str] + + # Metadata 1.2 - PEP 345 + maintainer: str + maintainer_email: str + requires_dist: list[str] + provides_dist: list[str] + obsoletes_dist: list[str] + requires_python: str + requires_external: list[str] + project_urls: dict[str, str] + + # Metadata 2.0 + # PEP 426 attempted to completely revamp the metadata format + # but got stuck without ever being able to build consensus on + # it and ultimately ended up withdrawn. + # + # However, a number of tools had started emitting METADATA with + # `2.0` Metadata-Version, so for historical reasons, this version + # was skipped. + + # Metadata 2.1 - PEP 566 + description_content_type: str + provides_extra: list[str] + + # Metadata 2.2 - PEP 643 + dynamic: list[str] + + # Metadata 2.3 - PEP 685 + # No new fields were added in PEP 685, just some edge case were + # tightened up to provide better interoptability. + + +_STRING_FIELDS = { + "author", + "author_email", + "description", + "description_content_type", + "download_url", + "home_page", + "license", + "maintainer", + "maintainer_email", + "metadata_version", + "name", + "requires_python", + "summary", + "version", +} + +_LIST_FIELDS = { + "classifiers", + "dynamic", + "obsoletes", + "obsoletes_dist", + "platforms", + "provides", + "provides_dist", + "provides_extra", + "requires", + "requires_dist", + "requires_external", + "supported_platforms", +} + +_DICT_FIELDS = { + "project_urls", +} + + +def _parse_keywords(data: str) -> list[str]: + """Split a string of comma-separate keyboards into a list of keywords.""" + return [k.strip() for k in data.split(",")] + + +def _parse_project_urls(data: list[str]) -> dict[str, str]: + """Parse a list of label/URL string pairings separated by a comma.""" + urls = {} + for pair in data: + # Our logic is slightly tricky here as we want to try and do + # *something* reasonable with malformed data. + # + # The main thing that we have to worry about, is data that does + # not have a ',' at all to split the label from the Value. There + # isn't a singular right answer here, and we will fail validation + # later on (if the caller is validating) so it doesn't *really* + # matter, but since the missing value has to be an empty str + # and our return value is dict[str, str], if we let the key + # be the missing value, then they'd have multiple '' values that + # overwrite each other in a accumulating dict. + # + # The other potentional issue is that it's possible to have the + # same label multiple times in the metadata, with no solid "right" + # answer with what to do in that case. As such, we'll do the only + # thing we can, which is treat the field as unparseable and add it + # to our list of unparsed fields. + parts = [p.strip() for p in pair.split(",", 1)] + parts.extend([""] * (max(0, 2 - len(parts)))) # Ensure 2 items + + # TODO: The spec doesn't say anything about if the keys should be + # considered case sensitive or not... logically they should + # be case-preserving and case-insensitive, but doing that + # would open up more cases where we might have duplicate + # entries. + label, url = parts + if label in urls: + # The label already exists in our set of urls, so this field + # is unparseable, and we can just add the whole thing to our + # unparseable data and stop processing it. + raise KeyError("duplicate labels in project urls") + urls[label] = url + + return urls + + +def _get_payload(msg: email.message.Message, source: bytes | str) -> str: + """Get the body of the message.""" + # If our source is a str, then our caller has managed encodings for us, + # and we don't need to deal with it. + if isinstance(source, str): + payload: str = msg.get_payload() + return payload + # If our source is a bytes, then we're managing the encoding and we need + # to deal with it. + else: + bpayload: bytes = msg.get_payload(decode=True) + try: + return bpayload.decode("utf8", "strict") + except UnicodeDecodeError: + raise ValueError("payload in an invalid encoding") + + +# The various parse_FORMAT functions here are intended to be as lenient as +# possible in their parsing, while still returning a correctly typed +# RawMetadata. +# +# To aid in this, we also generally want to do as little touching of the +# data as possible, except where there are possibly some historic holdovers +# that make valid data awkward to work with. +# +# While this is a lower level, intermediate format than our ``Metadata`` +# class, some light touch ups can make a massive difference in usability. + +# Map METADATA fields to RawMetadata. +_EMAIL_TO_RAW_MAPPING = { + "author": "author", + "author-email": "author_email", + "classifier": "classifiers", + "description": "description", + "description-content-type": "description_content_type", + "download-url": "download_url", + "dynamic": "dynamic", + "home-page": "home_page", + "keywords": "keywords", + "license": "license", + "maintainer": "maintainer", + "maintainer-email": "maintainer_email", + "metadata-version": "metadata_version", + "name": "name", + "obsoletes": "obsoletes", + "obsoletes-dist": "obsoletes_dist", + "platform": "platforms", + "project-url": "project_urls", + "provides": "provides", + "provides-dist": "provides_dist", + "provides-extra": "provides_extra", + "requires": "requires", + "requires-dist": "requires_dist", + "requires-external": "requires_external", + "requires-python": "requires_python", + "summary": "summary", + "supported-platform": "supported_platforms", + "version": "version", +} +_RAW_TO_EMAIL_MAPPING = {raw: email for email, raw in _EMAIL_TO_RAW_MAPPING.items()} + + +def parse_email(data: bytes | str) -> tuple[RawMetadata, dict[str, list[str]]]: + """Parse a distribution's metadata stored as email headers (e.g. from ``METADATA``). + + This function returns a two-item tuple of dicts. The first dict is of + recognized fields from the core metadata specification. Fields that can be + parsed and translated into Python's built-in types are converted + appropriately. All other fields are left as-is. Fields that are allowed to + appear multiple times are stored as lists. + + The second dict contains all other fields from the metadata. This includes + any unrecognized fields. It also includes any fields which are expected to + be parsed into a built-in type but were not formatted appropriately. Finally, + any fields that are expected to appear only once but are repeated are + included in this dict. + + """ + raw: dict[str, str | list[str] | dict[str, str]] = {} + unparsed: dict[str, list[str]] = {} + + if isinstance(data, str): + parsed = email.parser.Parser(policy=email.policy.compat32).parsestr(data) + else: + parsed = email.parser.BytesParser(policy=email.policy.compat32).parsebytes(data) + + # We have to wrap parsed.keys() in a set, because in the case of multiple + # values for a key (a list), the key will appear multiple times in the + # list of keys, but we're avoiding that by using get_all(). + for name in frozenset(parsed.keys()): + # Header names in RFC are case insensitive, so we'll normalize to all + # lower case to make comparisons easier. + name = name.lower() + + # We use get_all() here, even for fields that aren't multiple use, + # because otherwise someone could have e.g. two Name fields, and we + # would just silently ignore it rather than doing something about it. + headers = parsed.get_all(name) or [] + + # The way the email module works when parsing bytes is that it + # unconditionally decodes the bytes as ascii using the surrogateescape + # handler. When you pull that data back out (such as with get_all() ), + # it looks to see if the str has any surrogate escapes, and if it does + # it wraps it in a Header object instead of returning the string. + # + # As such, we'll look for those Header objects, and fix up the encoding. + value = [] + # Flag if we have run into any issues processing the headers, thus + # signalling that the data belongs in 'unparsed'. + valid_encoding = True + for h in headers: + # It's unclear if this can return more types than just a Header or + # a str, so we'll just assert here to make sure. + assert isinstance(h, (email.header.Header, str)) + + # If it's a header object, we need to do our little dance to get + # the real data out of it. In cases where there is invalid data + # we're going to end up with mojibake, but there's no obvious, good + # way around that without reimplementing parts of the Header object + # ourselves. + # + # That should be fine since, if mojibacked happens, this key is + # going into the unparsed dict anyways. + if isinstance(h, email.header.Header): + # The Header object stores it's data as chunks, and each chunk + # can be independently encoded, so we'll need to check each + # of them. + chunks: list[tuple[bytes, str | None]] = [] + for bin, encoding in email.header.decode_header(h): + try: + bin.decode("utf8", "strict") + except UnicodeDecodeError: + # Enable mojibake. + encoding = "latin1" + valid_encoding = False + else: + encoding = "utf8" + chunks.append((bin, encoding)) + + # Turn our chunks back into a Header object, then let that + # Header object do the right thing to turn them into a + # string for us. + value.append(str(email.header.make_header(chunks))) + # This is already a string, so just add it. + else: + value.append(h) + + # We've processed all of our values to get them into a list of str, + # but we may have mojibake data, in which case this is an unparsed + # field. + if not valid_encoding: + unparsed[name] = value + continue + + raw_name = _EMAIL_TO_RAW_MAPPING.get(name) + if raw_name is None: + # This is a bit of a weird situation, we've encountered a key that + # we don't know what it means, so we don't know whether it's meant + # to be a list or not. + # + # Since we can't really tell one way or another, we'll just leave it + # as a list, even though it may be a single item list, because that's + # what makes the most sense for email headers. + unparsed[name] = value + continue + + # If this is one of our string fields, then we'll check to see if our + # value is a list of a single item. If it is then we'll assume that + # it was emitted as a single string, and unwrap the str from inside + # the list. + # + # If it's any other kind of data, then we haven't the faintest clue + # what we should parse it as, and we have to just add it to our list + # of unparsed stuff. + if raw_name in _STRING_FIELDS and len(value) == 1: + raw[raw_name] = value[0] + # If this is one of our list of string fields, then we can just assign + # the value, since email *only* has strings, and our get_all() call + # above ensures that this is a list. + elif raw_name in _LIST_FIELDS: + raw[raw_name] = value + # Special Case: Keywords + # The keywords field is implemented in the metadata spec as a str, + # but it conceptually is a list of strings, and is serialized using + # ", ".join(keywords), so we'll do some light data massaging to turn + # this into what it logically is. + elif raw_name == "keywords" and len(value) == 1: + raw[raw_name] = _parse_keywords(value[0]) + # Special Case: Project-URL + # The project urls is implemented in the metadata spec as a list of + # specially-formatted strings that represent a key and a value, which + # is fundamentally a mapping, however the email format doesn't support + # mappings in a sane way, so it was crammed into a list of strings + # instead. + # + # We will do a little light data massaging to turn this into a map as + # it logically should be. + elif raw_name == "project_urls": + try: + raw[raw_name] = _parse_project_urls(value) + except KeyError: + unparsed[name] = value + # Nothing that we've done has managed to parse this, so it'll just + # throw it in our unparseable data and move on. + else: + unparsed[name] = value + + # We need to support getting the Description from the message payload in + # addition to getting it from the the headers. This does mean, though, there + # is the possibility of it being set both ways, in which case we put both + # in 'unparsed' since we don't know which is right. + try: + payload = _get_payload(parsed, data) + except ValueError: + unparsed.setdefault("description", []).append( + parsed.get_payload(decode=isinstance(data, bytes)) + ) + else: + if payload: + # Check to see if we've already got a description, if so then both + # it, and this body move to unparseable. + if "description" in raw: + description_header = cast(str, raw.pop("description")) + unparsed.setdefault("description", []).extend( + [description_header, payload] + ) + elif "description" in unparsed: + unparsed["description"].append(payload) + else: + raw["description"] = payload + + # We need to cast our `raw` to a metadata, because a TypedDict only support + # literal key names, but we're computing our key names on purpose, but the + # way this function is implemented, our `TypedDict` can only have valid key + # names. + return cast(RawMetadata, raw), unparsed + + +_NOT_FOUND = object() + + +# Keep the two values in sync. +_VALID_METADATA_VERSIONS = ["1.0", "1.1", "1.2", "2.1", "2.2", "2.3"] +_MetadataVersion = Literal["1.0", "1.1", "1.2", "2.1", "2.2", "2.3"] + +_REQUIRED_ATTRS = frozenset(["metadata_version", "name", "version"]) + + +class _Validator(Generic[T]): + """Validate a metadata field. + + All _process_*() methods correspond to a core metadata field. The method is + called with the field's raw value. If the raw value is valid it is returned + in its "enriched" form (e.g. ``version.Version`` for the ``Version`` field). + If the raw value is invalid, :exc:`InvalidMetadata` is raised (with a cause + as appropriate). + """ + + name: str + raw_name: str + added: _MetadataVersion + + def __init__( + self, + *, + added: _MetadataVersion = "1.0", + ) -> None: + self.added = added + + def __set_name__(self, _owner: Metadata, name: str) -> None: + self.name = name + self.raw_name = _RAW_TO_EMAIL_MAPPING[name] + + def __get__(self, instance: Metadata, _owner: type[Metadata]) -> T: + # With Python 3.8, the caching can be replaced with functools.cached_property(). + # No need to check the cache as attribute lookup will resolve into the + # instance's __dict__ before __get__ is called. + cache = instance.__dict__ + value = instance._raw.get(self.name) + + # To make the _process_* methods easier, we'll check if the value is None + # and if this field is NOT a required attribute, and if both of those + # things are true, we'll skip the the converter. This will mean that the + # converters never have to deal with the None union. + if self.name in _REQUIRED_ATTRS or value is not None: + try: + converter: Callable[[Any], T] = getattr(self, f"_process_{self.name}") + except AttributeError: + pass + else: + value = converter(value) + + cache[self.name] = value + try: + del instance._raw[self.name] # type: ignore[misc] + except KeyError: + pass + + return cast(T, value) + + def _invalid_metadata( + self, msg: str, cause: Exception | None = None + ) -> InvalidMetadata: + exc = InvalidMetadata( + self.raw_name, msg.format_map({"field": repr(self.raw_name)}) + ) + exc.__cause__ = cause + return exc + + def _process_metadata_version(self, value: str) -> _MetadataVersion: + # Implicitly makes Metadata-Version required. + if value not in _VALID_METADATA_VERSIONS: + raise self._invalid_metadata(f"{value!r} is not a valid metadata version") + return cast(_MetadataVersion, value) + + def _process_name(self, value: str) -> str: + if not value: + raise self._invalid_metadata("{field} is a required field") + # Validate the name as a side-effect. + try: + utils.canonicalize_name(value, validate=True) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + else: + return value + + def _process_version(self, value: str) -> version_module.Version: + if not value: + raise self._invalid_metadata("{field} is a required field") + try: + return version_module.parse(value) + except version_module.InvalidVersion as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + + def _process_summary(self, value: str) -> str: + """Check the field contains no newlines.""" + if "\n" in value: + raise self._invalid_metadata("{field} must be a single line") + return value + + def _process_description_content_type(self, value: str) -> str: + content_types = {"text/plain", "text/x-rst", "text/markdown"} + message = email.message.EmailMessage() + message["content-type"] = value + + content_type, parameters = ( + # Defaults to `text/plain` if parsing failed. + message.get_content_type().lower(), + message["content-type"].params, + ) + # Check if content-type is valid or defaulted to `text/plain` and thus was + # not parseable. + if content_type not in content_types or content_type not in value.lower(): + raise self._invalid_metadata( + f"{{field}} must be one of {list(content_types)}, not {value!r}" + ) + + charset = parameters.get("charset", "UTF-8") + if charset != "UTF-8": + raise self._invalid_metadata( + f"{{field}} can only specify the UTF-8 charset, not {list(charset)}" + ) + + markdown_variants = {"GFM", "CommonMark"} + variant = parameters.get("variant", "GFM") # Use an acceptable default. + if content_type == "text/markdown" and variant not in markdown_variants: + raise self._invalid_metadata( + f"valid Markdown variants for {{field}} are {list(markdown_variants)}, " + f"not {variant!r}", + ) + return value + + def _process_dynamic(self, value: list[str]) -> list[str]: + for dynamic_field in map(str.lower, value): + if dynamic_field in {"name", "version", "metadata-version"}: + raise self._invalid_metadata( + f"{value!r} is not allowed as a dynamic field" + ) + elif dynamic_field not in _EMAIL_TO_RAW_MAPPING: + raise self._invalid_metadata(f"{value!r} is not a valid dynamic field") + return list(map(str.lower, value)) + + def _process_provides_extra( + self, + value: list[str], + ) -> list[utils.NormalizedName]: + normalized_names = [] + try: + for name in value: + normalized_names.append(utils.canonicalize_name(name, validate=True)) + except utils.InvalidName as exc: + raise self._invalid_metadata( + f"{name!r} is invalid for {{field}}", cause=exc + ) + else: + return normalized_names + + def _process_requires_python(self, value: str) -> specifiers.SpecifierSet: + try: + return specifiers.SpecifierSet(value) + except specifiers.InvalidSpecifier as exc: + raise self._invalid_metadata( + f"{value!r} is invalid for {{field}}", cause=exc + ) + + def _process_requires_dist( + self, + value: list[str], + ) -> list[requirements.Requirement]: + reqs = [] + try: + for req in value: + reqs.append(requirements.Requirement(req)) + except requirements.InvalidRequirement as exc: + raise self._invalid_metadata(f"{req!r} is invalid for {{field}}", cause=exc) + else: + return reqs + + +class Metadata: + """Representation of distribution metadata. + + Compared to :class:`RawMetadata`, this class provides objects representing + metadata fields instead of only using built-in types. Any invalid metadata + will cause :exc:`InvalidMetadata` to be raised (with a + :py:attr:`~BaseException.__cause__` attribute as appropriate). + """ + + _raw: RawMetadata + + @classmethod + def from_raw(cls, data: RawMetadata, *, validate: bool = True) -> Metadata: + """Create an instance from :class:`RawMetadata`. + + If *validate* is true, all metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + ins = cls() + ins._raw = data.copy() # Mutations occur due to caching enriched values. + + if validate: + exceptions: list[Exception] = [] + try: + metadata_version = ins.metadata_version + metadata_age = _VALID_METADATA_VERSIONS.index(metadata_version) + except InvalidMetadata as metadata_version_exc: + exceptions.append(metadata_version_exc) + metadata_version = None + + # Make sure to check for the fields that are present, the required + # fields (so their absence can be reported). + fields_to_check = frozenset(ins._raw) | _REQUIRED_ATTRS + # Remove fields that have already been checked. + fields_to_check -= {"metadata_version"} + + for key in fields_to_check: + try: + if metadata_version: + # Can't use getattr() as that triggers descriptor protocol which + # will fail due to no value for the instance argument. + try: + field_metadata_version = cls.__dict__[key].added + except KeyError: + exc = InvalidMetadata(key, f"unrecognized field: {key!r}") + exceptions.append(exc) + continue + field_age = _VALID_METADATA_VERSIONS.index( + field_metadata_version + ) + if field_age > metadata_age: + field = _RAW_TO_EMAIL_MAPPING[key] + exc = InvalidMetadata( + field, + "{field} introduced in metadata version " + "{field_metadata_version}, not {metadata_version}", + ) + exceptions.append(exc) + continue + getattr(ins, key) + except InvalidMetadata as exc: + exceptions.append(exc) + + if exceptions: + raise ExceptionGroup("invalid metadata", exceptions) + + return ins + + @classmethod + def from_email(cls, data: bytes | str, *, validate: bool = True) -> Metadata: + """Parse metadata from email headers. + + If *validate* is true, the metadata will be validated. All exceptions + related to validation will be gathered and raised as an :class:`ExceptionGroup`. + """ + raw, unparsed = parse_email(data) + + if validate: + exceptions: list[Exception] = [] + for unparsed_key in unparsed: + if unparsed_key in _EMAIL_TO_RAW_MAPPING: + message = f"{unparsed_key!r} has invalid data" + else: + message = f"unrecognized field: {unparsed_key!r}" + exceptions.append(InvalidMetadata(unparsed_key, message)) + + if exceptions: + raise ExceptionGroup("unparsed", exceptions) + + try: + return cls.from_raw(raw, validate=validate) + except ExceptionGroup as exc_group: + raise ExceptionGroup( + "invalid or unparsed metadata", exc_group.exceptions + ) from None + + metadata_version: _Validator[_MetadataVersion] = _Validator() + """:external:ref:`core-metadata-metadata-version` + (required; validated to be a valid metadata version)""" + name: _Validator[str] = _Validator() + """:external:ref:`core-metadata-name` + (required; validated using :func:`~packaging.utils.canonicalize_name` and its + *validate* parameter)""" + version: _Validator[version_module.Version] = _Validator() + """:external:ref:`core-metadata-version` (required)""" + dynamic: _Validator[list[str] | None] = _Validator( + added="2.2", + ) + """:external:ref:`core-metadata-dynamic` + (validated against core metadata field names and lowercased)""" + platforms: _Validator[list[str] | None] = _Validator() + """:external:ref:`core-metadata-platform`""" + supported_platforms: _Validator[list[str] | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-supported-platform`""" + summary: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-summary` (validated to contain no newlines)""" + description: _Validator[str | None] = _Validator() # TODO 2.1: can be in body + """:external:ref:`core-metadata-description`""" + description_content_type: _Validator[str | None] = _Validator(added="2.1") + """:external:ref:`core-metadata-description-content-type` (validated)""" + keywords: _Validator[list[str] | None] = _Validator() + """:external:ref:`core-metadata-keywords`""" + home_page: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-home-page`""" + download_url: _Validator[str | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-download-url`""" + author: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-author`""" + author_email: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-author-email`""" + maintainer: _Validator[str | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer`""" + maintainer_email: _Validator[str | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-maintainer-email`""" + license: _Validator[str | None] = _Validator() + """:external:ref:`core-metadata-license`""" + classifiers: _Validator[list[str] | None] = _Validator(added="1.1") + """:external:ref:`core-metadata-classifier`""" + requires_dist: _Validator[list[requirements.Requirement] | None] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-dist`""" + requires_python: _Validator[specifiers.SpecifierSet | None] = _Validator( + added="1.2" + ) + """:external:ref:`core-metadata-requires-python`""" + # Because `Requires-External` allows for non-PEP 440 version specifiers, we + # don't do any processing on the values. + requires_external: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-requires-external`""" + project_urls: _Validator[dict[str, str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-project-url`""" + # PEP 685 lets us raise an error if an extra doesn't pass `Name` validation + # regardless of metadata version. + provides_extra: _Validator[list[utils.NormalizedName] | None] = _Validator( + added="2.1", + ) + """:external:ref:`core-metadata-provides-extra`""" + provides_dist: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-provides-dist`""" + obsoletes_dist: _Validator[list[str] | None] = _Validator(added="1.2") + """:external:ref:`core-metadata-obsoletes-dist`""" + requires: _Validator[list[str] | None] = _Validator(added="1.1") + """``Requires`` (deprecated)""" + provides: _Validator[list[str] | None] = _Validator(added="1.1") + """``Provides`` (deprecated)""" + obsoletes: _Validator[list[str] | None] = _Validator(added="1.1") + """``Obsoletes`` (deprecated)""" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py new file mode 100644 index 00000000..4e068c95 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py @@ -0,0 +1,91 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +from __future__ import annotations + +from typing import Any, Iterator + +from ._parser import parse_requirement as _parse_requirement +from ._tokenizer import ParserSyntaxError +from .markers import Marker, _normalize_extra_values +from .specifiers import SpecifierSet +from .utils import canonicalize_name + + +class InvalidRequirement(ValueError): + """ + An invalid requirement was found, users should refer to PEP 508. + """ + + +class Requirement: + """Parse a requirement. + + Parse a given requirement string into its parts, such as name, specifier, + URL, and extras. Raises InvalidRequirement on a badly-formed requirement + string. + """ + + # TODO: Can we test whether something is contained within a requirement? + # If so how do we do that? Do we need to test against the _name_ of + # the thing as well as the version? What about the markers? + # TODO: Can we normalize the name and extra name? + + def __init__(self, requirement_string: str) -> None: + try: + parsed = _parse_requirement(requirement_string) + except ParserSyntaxError as e: + raise InvalidRequirement(str(e)) from e + + self.name: str = parsed.name + self.url: str | None = parsed.url or None + self.extras: set[str] = set(parsed.extras or []) + self.specifier: SpecifierSet = SpecifierSet(parsed.specifier) + self.marker: Marker | None = None + if parsed.marker is not None: + self.marker = Marker.__new__(Marker) + self.marker._markers = _normalize_extra_values(parsed.marker) + + def _iter_parts(self, name: str) -> Iterator[str]: + yield name + + if self.extras: + formatted_extras = ",".join(sorted(self.extras)) + yield f"[{formatted_extras}]" + + if self.specifier: + yield str(self.specifier) + + if self.url: + yield f"@ {self.url}" + if self.marker: + yield " " + + if self.marker: + yield f"; {self.marker}" + + def __str__(self) -> str: + return "".join(self._iter_parts(self.name)) + + def __repr__(self) -> str: + return f"" + + def __hash__(self) -> int: + return hash( + ( + self.__class__.__name__, + *self._iter_parts(canonicalize_name(self.name)), + ) + ) + + def __eq__(self, other: Any) -> bool: + if not isinstance(other, Requirement): + return NotImplemented + + return ( + canonicalize_name(self.name) == canonicalize_name(other.name) + and self.extras == other.extras + and self.specifier == other.specifier + and self.url == other.url + and self.marker == other.marker + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py new file mode 100644 index 00000000..f3ac480f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -0,0 +1,1009 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from pip._vendor.packaging.specifiers import Specifier, SpecifierSet, InvalidSpecifier + from pip._vendor.packaging.version import Version +""" + +from __future__ import annotations + +import abc +import itertools +import re +from typing import Callable, Iterable, Iterator, TypeVar, Union + +from .utils import canonicalize_version +from .version import Version + +UnparsedVersion = Union[Version, str] +UnparsedVersionVar = TypeVar("UnparsedVersionVar", bound=UnparsedVersion) +CallableOperator = Callable[[Version, str], bool] + + +def _coerce_version(version: UnparsedVersion) -> Version: + if not isinstance(version, Version): + version = Version(version) + return version + + +class InvalidSpecifier(ValueError): + """ + Raised when attempting to create a :class:`Specifier` with a specifier + string that is invalid. + + >>> Specifier("lolwat") + Traceback (most recent call last): + ... + packaging.specifiers.InvalidSpecifier: Invalid specifier: 'lolwat' + """ + + +class BaseSpecifier(metaclass=abc.ABCMeta): + @abc.abstractmethod + def __str__(self) -> str: + """ + Returns the str representation of this Specifier-like object. This + should be representative of the Specifier itself. + """ + + @abc.abstractmethod + def __hash__(self) -> int: + """ + Returns a hash value for this Specifier-like object. + """ + + @abc.abstractmethod + def __eq__(self, other: object) -> bool: + """ + Returns a boolean representing whether or not the two Specifier-like + objects are equal. + + :param other: The other object to check against. + """ + + @property + @abc.abstractmethod + def prereleases(self) -> bool | None: + """Whether or not pre-releases as a whole are allowed. + + This can be set to either ``True`` or ``False`` to explicitly enable or disable + prereleases or it can be set to ``None`` (the default) to use default semantics. + """ + + @prereleases.setter + def prereleases(self, value: bool) -> None: + """Setter for :attr:`prereleases`. + + :param value: The value to set. + """ + + @abc.abstractmethod + def contains(self, item: str, prereleases: bool | None = None) -> bool: + """ + Determines if the given item is contained within this specifier. + """ + + @abc.abstractmethod + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """ + Takes an iterable of items and filters them so that only items which + are contained within this specifier are allowed in it. + """ + + +class Specifier(BaseSpecifier): + """This class abstracts handling of version specifiers. + + .. tip:: + + It is generally not required to instantiate this manually. You should instead + prefer to work with :class:`SpecifierSet` instead, which can parse + comma-separated version specifiers (which is what package metadata contains). + """ + + _operator_regex_str = r""" + (?P(~=|==|!=|<=|>=|<|>|===)) + """ + _version_regex_str = r""" + (?P + (?: + # The identity operators allow for an escape hatch that will + # do an exact string match of the version you wish to install. + # This will not be parsed by PEP 440 and we cannot determine + # any semantic meaning from it. This operator is discouraged + # but included entirely as an escape hatch. + (?<====) # Only match for the identity operator + \s* + [^\s;)]* # The arbitrary version can be just about anything, + # we match everything except for whitespace, a + # semi-colon for marker support, and a closing paren + # since versions can be enclosed in them. + ) + | + (?: + # The (non)equality operators allow for wild card and local + # versions to be specified so we have to define these two + # operators separately to enable that. + (?<===|!=) # Only match for equals and not equals + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)* # release + + # You cannot use a wild card and a pre-release, post-release, a dev or + # local version together so group them with a | and make them optional. + (?: + \.\* # Wild card syntax of .* + | + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + (?:\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*)? # local + )? + ) + | + (?: + # The compatible operator requires at least two digits in the + # release segment. + (?<=~=) # Only match for the compatible operator + + \s* + v? + (?:[0-9]+!)? # epoch + [0-9]+(?:\.[0-9]+)+ # release (We have a + instead of a *) + (?: # pre release + [-_\.]? + (alpha|beta|preview|pre|a|b|c|rc) + [-_\.]? + [0-9]* + )? + (?: # post release + (?:-[0-9]+)|(?:[-_\.]?(post|rev|r)[-_\.]?[0-9]*) + )? + (?:[-_\.]?dev[-_\.]?[0-9]*)? # dev release + ) + | + (?: + # All other operators only allow a sub set of what the + # (non)equality operators do. Specifically they do not allow + # local versions to be specified nor do they allow the prefix + # matching wild cards. + (?=": "greater_than_equal", + "<": "less_than", + ">": "greater_than", + "===": "arbitrary", + } + + def __init__(self, spec: str = "", prereleases: bool | None = None) -> None: + """Initialize a Specifier instance. + + :param spec: + The string representation of a specifier which will be parsed and + normalized before use. + :param prereleases: + This tells the specifier if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + :raises InvalidSpecifier: + If the given specifier is invalid (i.e. bad syntax). + """ + match = self._regex.search(spec) + if not match: + raise InvalidSpecifier(f"Invalid specifier: '{spec}'") + + self._spec: tuple[str, str] = ( + match.group("operator").strip(), + match.group("version").strip(), + ) + + # Store whether or not this Specifier should accept prereleases + self._prereleases = prereleases + + # https://github.com/python/mypy/pull/13475#pullrequestreview-1079784515 + @property # type: ignore[override] + def prereleases(self) -> bool: + # If there is an explicit prereleases set for this, then we'll just + # blindly use that. + if self._prereleases is not None: + return self._prereleases + + # Look at all of our specifiers and determine if they are inclusive + # operators, and if they are if they are including an explicit + # prerelease. + operator, version = self._spec + if operator in ["==", ">=", "<=", "~=", "==="]: + # The == specifier can include a trailing .*, if it does we + # want to remove before parsing. + if operator == "==" and version.endswith(".*"): + version = version[:-2] + + # Parse the version, and if it is a pre-release than this + # specifier allows pre-releases. + if Version(version).is_prerelease: + return True + + return False + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + @property + def operator(self) -> str: + """The operator of this specifier. + + >>> Specifier("==1.2.3").operator + '==' + """ + return self._spec[0] + + @property + def version(self) -> str: + """The version of this specifier. + + >>> Specifier("==1.2.3").version + '1.2.3' + """ + return self._spec[1] + + def __repr__(self) -> str: + """A representation of the Specifier that shows all internal state. + + >>> Specifier('>=1.0.0') + =1.0.0')> + >>> Specifier('>=1.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> Specifier('>=1.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"<{self.__class__.__name__}({str(self)!r}{pre})>" + + def __str__(self) -> str: + """A string representation of the Specifier that can be round-tripped. + + >>> str(Specifier('>=1.0.0')) + '>=1.0.0' + >>> str(Specifier('>=1.0.0', prereleases=False)) + '>=1.0.0' + """ + return "{}{}".format(*self._spec) + + @property + def _canonical_spec(self) -> tuple[str, str]: + canonical_version = canonicalize_version( + self._spec[1], + strip_trailing_zero=(self._spec[0] != "~="), + ) + return self._spec[0], canonical_version + + def __hash__(self) -> int: + return hash(self._canonical_spec) + + def __eq__(self, other: object) -> bool: + """Whether or not the two Specifier-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> Specifier("==1.2.3") == Specifier("== 1.2.3.0") + True + >>> (Specifier("==1.2.3", prereleases=False) == + ... Specifier("==1.2.3", prereleases=True)) + True + >>> Specifier("==1.2.3") == "==1.2.3" + True + >>> Specifier("==1.2.3") == Specifier("==1.2.4") + False + >>> Specifier("==1.2.3") == Specifier("~=1.2.3") + False + """ + if isinstance(other, str): + try: + other = self.__class__(str(other)) + except InvalidSpecifier: + return NotImplemented + elif not isinstance(other, self.__class__): + return NotImplemented + + return self._canonical_spec == other._canonical_spec + + def _get_operator(self, op: str) -> CallableOperator: + operator_callable: CallableOperator = getattr( + self, f"_compare_{self._operators[op]}" + ) + return operator_callable + + def _compare_compatible(self, prospective: Version, spec: str) -> bool: + # Compatible releases have an equivalent combination of >= and ==. That + # is that ~=2.2 is equivalent to >=2.2,==2.*. This allows us to + # implement this in terms of the other specifiers instead of + # implementing it ourselves. The only thing we need to do is construct + # the other specifiers. + + # We want everything but the last item in the version, but we want to + # ignore suffix segments. + prefix = _version_join( + list(itertools.takewhile(_is_not_suffix, _version_split(spec)))[:-1] + ) + + # Add the prefix notation to the end of our string + prefix += ".*" + + return self._get_operator(">=")(prospective, spec) and self._get_operator("==")( + prospective, prefix + ) + + def _compare_equal(self, prospective: Version, spec: str) -> bool: + # We need special logic to handle prefix matching + if spec.endswith(".*"): + # In the case of prefix matching we want to ignore local segment. + normalized_prospective = canonicalize_version( + prospective.public, strip_trailing_zero=False + ) + # Get the normalized version string ignoring the trailing .* + normalized_spec = canonicalize_version(spec[:-2], strip_trailing_zero=False) + # Split the spec out by bangs and dots, and pretend that there is + # an implicit dot in between a release segment and a pre-release segment. + split_spec = _version_split(normalized_spec) + + # Split the prospective version out by bangs and dots, and pretend + # that there is an implicit dot in between a release segment and + # a pre-release segment. + split_prospective = _version_split(normalized_prospective) + + # 0-pad the prospective version before shortening it to get the correct + # shortened version. + padded_prospective, _ = _pad_version(split_prospective, split_spec) + + # Shorten the prospective version to be the same length as the spec + # so that we can determine if the specifier is a prefix of the + # prospective version or not. + shortened_prospective = padded_prospective[: len(split_spec)] + + return shortened_prospective == split_spec + else: + # Convert our spec string into a Version + spec_version = Version(spec) + + # If the specifier does not have a local segment, then we want to + # act as if the prospective version also does not have a local + # segment. + if not spec_version.local: + prospective = Version(prospective.public) + + return prospective == spec_version + + def _compare_not_equal(self, prospective: Version, spec: str) -> bool: + return not self._compare_equal(prospective, spec) + + def _compare_less_than_equal(self, prospective: Version, spec: str) -> bool: + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) <= Version(spec) + + def _compare_greater_than_equal(self, prospective: Version, spec: str) -> bool: + # NB: Local version identifiers are NOT permitted in the version + # specifier, so local version labels can be universally removed from + # the prospective version. + return Version(prospective.public) >= Version(spec) + + def _compare_less_than(self, prospective: Version, spec_str: str) -> bool: + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is less than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective < spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a pre-release version, that we do not accept pre-release + # versions for the version mentioned in the specifier (e.g. <3.1 should + # not match 3.1.dev0, but should match 3.0.dev0). + if not spec.is_prerelease and prospective.is_prerelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # less than the spec version *and* it's not a pre-release of the same + # version in the spec. + return True + + def _compare_greater_than(self, prospective: Version, spec_str: str) -> bool: + # Convert our spec to a Version instance, since we'll want to work with + # it as a version. + spec = Version(spec_str) + + # Check to see if the prospective version is greater than the spec + # version. If it's not we can short circuit and just return False now + # instead of doing extra unneeded work. + if not prospective > spec: + return False + + # This special case is here so that, unless the specifier itself + # includes is a post-release version, that we do not accept + # post-release versions for the version mentioned in the specifier + # (e.g. >3.1 should not match 3.0.post0, but should match 3.2.post0). + if not spec.is_postrelease and prospective.is_postrelease: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # Ensure that we do not allow a local version of the version mentioned + # in the specifier, which is technically greater than, to match. + if prospective.local is not None: + if Version(prospective.base_version) == Version(spec.base_version): + return False + + # If we've gotten to here, it means that prospective version is both + # greater than the spec version *and* it's not a pre-release of the + # same version in the spec. + return True + + def _compare_arbitrary(self, prospective: Version, spec: str) -> bool: + return str(prospective).lower() == str(spec).lower() + + def __contains__(self, item: str | Version) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in Specifier(">=1.2.3") + True + >>> Version("1.2.3") in Specifier(">=1.2.3") + True + >>> "1.0.0" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3") + False + >>> "1.3.0a1" in Specifier(">=1.2.3", prereleases=True) + True + """ + return self.contains(item) + + def contains(self, item: UnparsedVersion, prereleases: bool | None = None) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this Specifier. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> Specifier(">=1.2.3").contains("1.2.3") + True + >>> Specifier(">=1.2.3").contains(Version("1.2.3")) + True + >>> Specifier(">=1.2.3").contains("1.0.0") + False + >>> Specifier(">=1.2.3").contains("1.3.0a1") + False + >>> Specifier(">=1.2.3", prereleases=True).contains("1.3.0a1") + True + >>> Specifier(">=1.2.3").contains("1.3.0a1", prereleases=True) + True + """ + + # Determine if prereleases are to be allowed or not. + if prereleases is None: + prereleases = self.prereleases + + # Normalize item to a Version, this allows us to have a shortcut for + # "2.0" in Specifier(">=2") + normalized_item = _coerce_version(item) + + # Determine if we should be supporting prereleases in this specifier + # or not, if we do not support prereleases than we can short circuit + # logic if this version is a prereleases. + if normalized_item.is_prerelease and not prereleases: + return False + + # Actually do the comparison to determine if this item is contained + # within this Specifier or not. + operator_callable: CallableOperator = self._get_operator(self.operator) + return operator_callable(normalized_item, self.version) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifier. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(Specifier().contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.2.3", "1.3", Version("1.4")])) + ['1.2.3', '1.3', ] + >>> list(Specifier(">=1.2.3").filter(["1.2", "1.5a1"])) + ['1.5a1'] + >>> list(Specifier(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(Specifier(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + """ + + yielded = False + found_prereleases = [] + + kw = {"prereleases": prereleases if prereleases is not None else True} + + # Attempt to iterate over all the values in the iterable and if any of + # them match, yield them. + for version in iterable: + parsed_version = _coerce_version(version) + + if self.contains(parsed_version, **kw): + # If our version is a prerelease, and we were not set to allow + # prereleases, then we'll store it for later in case nothing + # else matches this specifier. + if parsed_version.is_prerelease and not ( + prereleases or self.prereleases + ): + found_prereleases.append(version) + # Either this is not a prerelease, or we should have been + # accepting prereleases from the beginning. + else: + yielded = True + yield version + + # Now that we've iterated over everything, determine if we've yielded + # any values, and if we have not and we have any prereleases stored up + # then we will go ahead and yield the prereleases. + if not yielded and found_prereleases: + for version in found_prereleases: + yield version + + +_prefix_regex = re.compile(r"^([0-9]+)((?:a|b|c|rc)[0-9]+)$") + + +def _version_split(version: str) -> list[str]: + """Split version into components. + + The split components are intended for version comparison. The logic does + not attempt to retain the original version string, so joining the + components back with :func:`_version_join` may not produce the original + version string. + """ + result: list[str] = [] + + epoch, _, rest = version.rpartition("!") + result.append(epoch or "0") + + for item in rest.split("."): + match = _prefix_regex.search(item) + if match: + result.extend(match.groups()) + else: + result.append(item) + return result + + +def _version_join(components: list[str]) -> str: + """Join split version components into a version string. + + This function assumes the input came from :func:`_version_split`, where the + first component must be the epoch (either empty or numeric), and all other + components numeric. + """ + epoch, *rest = components + return f"{epoch}!{'.'.join(rest)}" + + +def _is_not_suffix(segment: str) -> bool: + return not any( + segment.startswith(prefix) for prefix in ("dev", "a", "b", "rc", "post") + ) + + +def _pad_version(left: list[str], right: list[str]) -> tuple[list[str], list[str]]: + left_split, right_split = [], [] + + # Get the release segment of our versions + left_split.append(list(itertools.takewhile(lambda x: x.isdigit(), left))) + right_split.append(list(itertools.takewhile(lambda x: x.isdigit(), right))) + + # Get the rest of our versions + left_split.append(left[len(left_split[0]) :]) + right_split.append(right[len(right_split[0]) :]) + + # Insert our padding + left_split.insert(1, ["0"] * max(0, len(right_split[0]) - len(left_split[0]))) + right_split.insert(1, ["0"] * max(0, len(left_split[0]) - len(right_split[0]))) + + return ( + list(itertools.chain.from_iterable(left_split)), + list(itertools.chain.from_iterable(right_split)), + ) + + +class SpecifierSet(BaseSpecifier): + """This class abstracts handling of a set of version specifiers. + + It can be passed a single specifier (``>=3.0``), a comma-separated list of + specifiers (``>=3.0,!=3.1``), or no specifier at all. + """ + + def __init__(self, specifiers: str = "", prereleases: bool | None = None) -> None: + """Initialize a SpecifierSet instance. + + :param specifiers: + The string representation of a specifier or a comma-separated list of + specifiers which will be parsed and normalized before use. + :param prereleases: + This tells the SpecifierSet if it should accept prerelease versions if + applicable or not. The default of ``None`` will autodetect it from the + given specifiers. + + :raises InvalidSpecifier: + If the given ``specifiers`` are not parseable than this exception will be + raised. + """ + + # Split on `,` to break each individual specifier into it's own item, and + # strip each item to remove leading/trailing whitespace. + split_specifiers = [s.strip() for s in specifiers.split(",") if s.strip()] + + # Make each individual specifier a Specifier and save in a frozen set for later. + self._specs = frozenset(map(Specifier, split_specifiers)) + + # Store our prereleases value so we can use it later to determine if + # we accept prereleases or not. + self._prereleases = prereleases + + @property + def prereleases(self) -> bool | None: + # If we have been given an explicit prerelease modifier, then we'll + # pass that through here. + if self._prereleases is not None: + return self._prereleases + + # If we don't have any specifiers, and we don't have a forced value, + # then we'll just return None since we don't know if this should have + # pre-releases or not. + if not self._specs: + return None + + # Otherwise we'll see if any of the given specifiers accept + # prereleases, if any of them do we'll return True, otherwise False. + return any(s.prereleases for s in self._specs) + + @prereleases.setter + def prereleases(self, value: bool) -> None: + self._prereleases = value + + def __repr__(self) -> str: + """A representation of the specifier set that shows all internal state. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> SpecifierSet('>=1.0.0,!=2.0.0') + =1.0.0')> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=False) + =1.0.0', prereleases=False)> + >>> SpecifierSet('>=1.0.0,!=2.0.0', prereleases=True) + =1.0.0', prereleases=True)> + """ + pre = ( + f", prereleases={self.prereleases!r}" + if self._prereleases is not None + else "" + ) + + return f"" + + def __str__(self) -> str: + """A string representation of the specifier set that can be round-tripped. + + Note that the ordering of the individual specifiers within the set may not + match the input string. + + >>> str(SpecifierSet(">=1.0.0,!=1.0.1")) + '!=1.0.1,>=1.0.0' + >>> str(SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False)) + '!=1.0.1,>=1.0.0' + """ + return ",".join(sorted(str(s) for s in self._specs)) + + def __hash__(self) -> int: + return hash(self._specs) + + def __and__(self, other: SpecifierSet | str) -> SpecifierSet: + """Return a SpecifierSet which is a combination of the two sets. + + :param other: The other object to combine with. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") & '<=2.0.0,!=2.0.1' + =1.0.0')> + >>> SpecifierSet(">=1.0.0,!=1.0.1") & SpecifierSet('<=2.0.0,!=2.0.1') + =1.0.0')> + """ + if isinstance(other, str): + other = SpecifierSet(other) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + specifier = SpecifierSet() + specifier._specs = frozenset(self._specs | other._specs) + + if self._prereleases is None and other._prereleases is not None: + specifier._prereleases = other._prereleases + elif self._prereleases is not None and other._prereleases is None: + specifier._prereleases = self._prereleases + elif self._prereleases == other._prereleases: + specifier._prereleases = self._prereleases + else: + raise ValueError( + "Cannot combine SpecifierSets with True and False prerelease " + "overrides." + ) + + return specifier + + def __eq__(self, other: object) -> bool: + """Whether or not the two SpecifierSet-like objects are equal. + + :param other: The other object to check against. + + The value of :attr:`prereleases` is ignored. + + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> (SpecifierSet(">=1.0.0,!=1.0.1", prereleases=False) == + ... SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True)) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == ">=1.0.0,!=1.0.1" + True + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1") == SpecifierSet(">=1.0.0,!=1.0.2") + False + """ + if isinstance(other, (str, Specifier)): + other = SpecifierSet(str(other)) + elif not isinstance(other, SpecifierSet): + return NotImplemented + + return self._specs == other._specs + + def __len__(self) -> int: + """Returns the number of specifiers in this specifier set.""" + return len(self._specs) + + def __iter__(self) -> Iterator[Specifier]: + """ + Returns an iterator over all the underlying :class:`Specifier` instances + in this specifier set. + + >>> sorted(SpecifierSet(">=1.0.0,!=1.0.1"), key=str) + [, =1.0.0')>] + """ + return iter(self._specs) + + def __contains__(self, item: UnparsedVersion) -> bool: + """Return whether or not the item is contained in this specifier. + + :param item: The item to check for. + + This is used for the ``in`` operator and behaves the same as + :meth:`contains` with no ``prereleases`` argument passed. + + >>> "1.2.3" in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> Version("1.2.3") in SpecifierSet(">=1.0.0,!=1.0.1") + True + >>> "1.0.1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1") + False + >>> "1.3.0a1" in SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True) + True + """ + return self.contains(item) + + def contains( + self, + item: UnparsedVersion, + prereleases: bool | None = None, + installed: bool | None = None, + ) -> bool: + """Return whether or not the item is contained in this SpecifierSet. + + :param item: + The item to check for, which can be a version string or a + :class:`Version` instance. + :param prereleases: + Whether or not to match prereleases with this SpecifierSet. If set to + ``None`` (the default), it uses :attr:`prereleases` to determine + whether or not prereleases are allowed. + + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.2.3") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains(Version("1.2.3")) + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.0.1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1") + False + >>> SpecifierSet(">=1.0.0,!=1.0.1", prereleases=True).contains("1.3.0a1") + True + >>> SpecifierSet(">=1.0.0,!=1.0.1").contains("1.3.0a1", prereleases=True) + True + """ + # Ensure that our item is a Version instance. + if not isinstance(item, Version): + item = Version(item) + + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # We can determine if we're going to allow pre-releases by looking to + # see if any of the underlying items supports them. If none of them do + # and this item is a pre-release then we do not allow it and we can + # short circuit that here. + # Note: This means that 1.0.dev1 would not be contained in something + # like >=1.0.devabc however it would be in >=1.0.debabc,>0.0.dev0 + if not prereleases and item.is_prerelease: + return False + + if installed and item.is_prerelease: + item = Version(item.base_version) + + # We simply dispatch to the underlying specs here to make sure that the + # given version is contained within all of them. + # Note: This use of all() here means that an empty set of specifiers + # will always return True, this is an explicit design decision. + return all(s.contains(item, prereleases=prereleases) for s in self._specs) + + def filter( + self, iterable: Iterable[UnparsedVersionVar], prereleases: bool | None = None + ) -> Iterator[UnparsedVersionVar]: + """Filter items in the given iterable, that match the specifiers in this set. + + :param iterable: + An iterable that can contain version strings and :class:`Version` instances. + The items in the iterable will be filtered according to the specifier. + :param prereleases: + Whether or not to allow prereleases in the returned iterator. If set to + ``None`` (the default), it will be intelligently decide whether to allow + prereleases or not (based on the :attr:`prereleases` attribute, and + whether the only versions matching are prereleases). + + This method is smarter than just ``filter(SpecifierSet(...).contains, [...])`` + because it implements the rule from :pep:`440` that a prerelease item + SHOULD be accepted if no other versions match the given specifier. + + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.3", Version("1.4")])) + ['1.3', ] + >>> list(SpecifierSet(">=1.2.3").filter(["1.2", "1.5a1"])) + [] + >>> list(SpecifierSet(">=1.2.3").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + >>> list(SpecifierSet(">=1.2.3", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + + An "empty" SpecifierSet will filter items based on the presence of prerelease + versions in the set. + + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"])) + ['1.3'] + >>> list(SpecifierSet("").filter(["1.5a1"])) + ['1.5a1'] + >>> list(SpecifierSet("", prereleases=True).filter(["1.3", "1.5a1"])) + ['1.3', '1.5a1'] + >>> list(SpecifierSet("").filter(["1.3", "1.5a1"], prereleases=True)) + ['1.3', '1.5a1'] + """ + # Determine if we're forcing a prerelease or not, if we're not forcing + # one for this particular filter call, then we'll use whatever the + # SpecifierSet thinks for whether or not we should support prereleases. + if prereleases is None: + prereleases = self.prereleases + + # If we have any specifiers, then we want to wrap our iterable in the + # filter method for each one, this will act as a logical AND amongst + # each specifier. + if self._specs: + for spec in self._specs: + iterable = spec.filter(iterable, prereleases=bool(prereleases)) + return iter(iterable) + # If we do not have any specifiers, then we need to have a rough filter + # which will filter out any pre-releases, unless there are no final + # releases. + else: + filtered: list[UnparsedVersionVar] = [] + found_prereleases: list[UnparsedVersionVar] = [] + + for item in iterable: + parsed_version = _coerce_version(item) + + # Store any item which is a pre-release for later unless we've + # already found a final version or we are accepting prereleases + if parsed_version.is_prerelease and not prereleases: + if not filtered: + found_prereleases.append(item) + else: + filtered.append(item) + + # If we've found no items except for pre-releases, then we'll go + # ahead and use the pre-releases + if not filtered and found_prereleases and prereleases is None: + return iter(found_prereleases) + + return iter(filtered) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py new file mode 100644 index 00000000..6667d299 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py @@ -0,0 +1,568 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import logging +import platform +import re +import struct +import subprocess +import sys +import sysconfig +from importlib.machinery import EXTENSION_SUFFIXES +from typing import ( + Iterable, + Iterator, + Sequence, + Tuple, + cast, +) + +from . import _manylinux, _musllinux + +logger = logging.getLogger(__name__) + +PythonVersion = Sequence[int] +MacVersion = Tuple[int, int] + +INTERPRETER_SHORT_NAMES: dict[str, str] = { + "python": "py", # Generic. + "cpython": "cp", + "pypy": "pp", + "ironpython": "ip", + "jython": "jy", +} + + +_32_BIT_INTERPRETER = struct.calcsize("P") == 4 + + +class Tag: + """ + A representation of the tag triple for a wheel. + + Instances are considered immutable and thus are hashable. Equality checking + is also supported. + """ + + __slots__ = ["_interpreter", "_abi", "_platform", "_hash"] + + def __init__(self, interpreter: str, abi: str, platform: str) -> None: + self._interpreter = interpreter.lower() + self._abi = abi.lower() + self._platform = platform.lower() + # The __hash__ of every single element in a Set[Tag] will be evaluated each time + # that a set calls its `.disjoint()` method, which may be called hundreds of + # times when scanning a page of links for packages with tags matching that + # Set[Tag]. Pre-computing the value here produces significant speedups for + # downstream consumers. + self._hash = hash((self._interpreter, self._abi, self._platform)) + + @property + def interpreter(self) -> str: + return self._interpreter + + @property + def abi(self) -> str: + return self._abi + + @property + def platform(self) -> str: + return self._platform + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Tag): + return NotImplemented + + return ( + (self._hash == other._hash) # Short-circuit ASAP for perf reasons. + and (self._platform == other._platform) + and (self._abi == other._abi) + and (self._interpreter == other._interpreter) + ) + + def __hash__(self) -> int: + return self._hash + + def __str__(self) -> str: + return f"{self._interpreter}-{self._abi}-{self._platform}" + + def __repr__(self) -> str: + return f"<{self} @ {id(self)}>" + + +def parse_tag(tag: str) -> frozenset[Tag]: + """ + Parses the provided tag (e.g. `py3-none-any`) into a frozenset of Tag instances. + + Returning a set is required due to the possibility that the tag is a + compressed tag set. + """ + tags = set() + interpreters, abis, platforms = tag.split("-") + for interpreter in interpreters.split("."): + for abi in abis.split("."): + for platform_ in platforms.split("."): + tags.add(Tag(interpreter, abi, platform_)) + return frozenset(tags) + + +def _get_config_var(name: str, warn: bool = False) -> int | str | None: + value: int | str | None = sysconfig.get_config_var(name) + if value is None and warn: + logger.debug( + "Config variable '%s' is unset, Python ABI tag may be incorrect", name + ) + return value + + +def _normalize_string(string: str) -> str: + return string.replace(".", "_").replace("-", "_").replace(" ", "_") + + +def _is_threaded_cpython(abis: list[str]) -> bool: + """ + Determine if the ABI corresponds to a threaded (`--disable-gil`) build. + + The threaded builds are indicated by a "t" in the abiflags. + """ + if len(abis) == 0: + return False + # expect e.g., cp313 + m = re.match(r"cp\d+(.*)", abis[0]) + if not m: + return False + abiflags = m.group(1) + return "t" in abiflags + + +def _abi3_applies(python_version: PythonVersion, threading: bool) -> bool: + """ + Determine if the Python version supports abi3. + + PEP 384 was first implemented in Python 3.2. The threaded (`--disable-gil`) + builds do not support abi3. + """ + return len(python_version) > 1 and tuple(python_version) >= (3, 2) and not threading + + +def _cpython_abis(py_version: PythonVersion, warn: bool = False) -> list[str]: + py_version = tuple(py_version) # To allow for version comparison. + abis = [] + version = _version_nodot(py_version[:2]) + threading = debug = pymalloc = ucs4 = "" + with_debug = _get_config_var("Py_DEBUG", warn) + has_refcount = hasattr(sys, "gettotalrefcount") + # Windows doesn't set Py_DEBUG, so checking for support of debug-compiled + # extension modules is the best option. + # https://github.com/pypa/pip/issues/3383#issuecomment-173267692 + has_ext = "_d.pyd" in EXTENSION_SUFFIXES + if with_debug or (with_debug is None and (has_refcount or has_ext)): + debug = "d" + if py_version >= (3, 13) and _get_config_var("Py_GIL_DISABLED", warn): + threading = "t" + if py_version < (3, 8): + with_pymalloc = _get_config_var("WITH_PYMALLOC", warn) + if with_pymalloc or with_pymalloc is None: + pymalloc = "m" + if py_version < (3, 3): + unicode_size = _get_config_var("Py_UNICODE_SIZE", warn) + if unicode_size == 4 or ( + unicode_size is None and sys.maxunicode == 0x10FFFF + ): + ucs4 = "u" + elif debug: + # Debug builds can also load "normal" extension modules. + # We can also assume no UCS-4 or pymalloc requirement. + abis.append(f"cp{version}{threading}") + abis.insert(0, f"cp{version}{threading}{debug}{pymalloc}{ucs4}") + return abis + + +def cpython_tags( + python_version: PythonVersion | None = None, + abis: Iterable[str] | None = None, + platforms: Iterable[str] | None = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a CPython interpreter. + + The tags consist of: + - cp-- + - cp-abi3- + - cp-none- + - cp-abi3- # Older Python versions down to 3.2. + + If python_version only specifies a major version then user-provided ABIs and + the 'none' ABItag will be used. + + If 'abi3' or 'none' are specified in 'abis' then they will be yielded at + their normal position and not at the beginning. + """ + if not python_version: + python_version = sys.version_info[:2] + + interpreter = f"cp{_version_nodot(python_version[:2])}" + + if abis is None: + if len(python_version) > 1: + abis = _cpython_abis(python_version, warn) + else: + abis = [] + abis = list(abis) + # 'abi3' and 'none' are explicitly handled later. + for explicit_abi in ("abi3", "none"): + try: + abis.remove(explicit_abi) + except ValueError: + pass + + platforms = list(platforms or platform_tags()) + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + threading = _is_threaded_cpython(abis) + use_abi3 = _abi3_applies(python_version, threading) + if use_abi3: + yield from (Tag(interpreter, "abi3", platform_) for platform_ in platforms) + yield from (Tag(interpreter, "none", platform_) for platform_ in platforms) + + if use_abi3: + for minor_version in range(python_version[1] - 1, 1, -1): + for platform_ in platforms: + interpreter = "cp{version}".format( + version=_version_nodot((python_version[0], minor_version)) + ) + yield Tag(interpreter, "abi3", platform_) + + +def _generic_abi() -> list[str]: + """ + Return the ABI tag based on EXT_SUFFIX. + """ + # The following are examples of `EXT_SUFFIX`. + # We want to keep the parts which are related to the ABI and remove the + # parts which are related to the platform: + # - linux: '.cpython-310-x86_64-linux-gnu.so' => cp310 + # - mac: '.cpython-310-darwin.so' => cp310 + # - win: '.cp310-win_amd64.pyd' => cp310 + # - win: '.pyd' => cp37 (uses _cpython_abis()) + # - pypy: '.pypy38-pp73-x86_64-linux-gnu.so' => pypy38_pp73 + # - graalpy: '.graalpy-38-native-x86_64-darwin.dylib' + # => graalpy_38_native + + ext_suffix = _get_config_var("EXT_SUFFIX", warn=True) + if not isinstance(ext_suffix, str) or ext_suffix[0] != ".": + raise SystemError("invalid sysconfig.get_config_var('EXT_SUFFIX')") + parts = ext_suffix.split(".") + if len(parts) < 3: + # CPython3.7 and earlier uses ".pyd" on Windows. + return _cpython_abis(sys.version_info[:2]) + soabi = parts[1] + if soabi.startswith("cpython"): + # non-windows + abi = "cp" + soabi.split("-")[1] + elif soabi.startswith("cp"): + # windows + abi = soabi.split("-")[0] + elif soabi.startswith("pypy"): + abi = "-".join(soabi.split("-")[:2]) + elif soabi.startswith("graalpy"): + abi = "-".join(soabi.split("-")[:3]) + elif soabi: + # pyston, ironpython, others? + abi = soabi + else: + return [] + return [_normalize_string(abi)] + + +def generic_tags( + interpreter: str | None = None, + abis: Iterable[str] | None = None, + platforms: Iterable[str] | None = None, + *, + warn: bool = False, +) -> Iterator[Tag]: + """ + Yields the tags for a generic interpreter. + + The tags consist of: + - -- + + The "none" ABI will be added if it was not explicitly provided. + """ + if not interpreter: + interp_name = interpreter_name() + interp_version = interpreter_version(warn=warn) + interpreter = "".join([interp_name, interp_version]) + if abis is None: + abis = _generic_abi() + else: + abis = list(abis) + platforms = list(platforms or platform_tags()) + if "none" not in abis: + abis.append("none") + for abi in abis: + for platform_ in platforms: + yield Tag(interpreter, abi, platform_) + + +def _py_interpreter_range(py_version: PythonVersion) -> Iterator[str]: + """ + Yields Python versions in descending order. + + After the latest version, the major-only version will be yielded, and then + all previous versions of that major version. + """ + if len(py_version) > 1: + yield f"py{_version_nodot(py_version[:2])}" + yield f"py{py_version[0]}" + if len(py_version) > 1: + for minor in range(py_version[1] - 1, -1, -1): + yield f"py{_version_nodot((py_version[0], minor))}" + + +def compatible_tags( + python_version: PythonVersion | None = None, + interpreter: str | None = None, + platforms: Iterable[str] | None = None, +) -> Iterator[Tag]: + """ + Yields the sequence of tags that are compatible with a specific version of Python. + + The tags consist of: + - py*-none- + - -none-any # ... if `interpreter` is provided. + - py*-none-any + """ + if not python_version: + python_version = sys.version_info[:2] + platforms = list(platforms or platform_tags()) + for version in _py_interpreter_range(python_version): + for platform_ in platforms: + yield Tag(version, "none", platform_) + if interpreter: + yield Tag(interpreter, "none", "any") + for version in _py_interpreter_range(python_version): + yield Tag(version, "none", "any") + + +def _mac_arch(arch: str, is_32bit: bool = _32_BIT_INTERPRETER) -> str: + if not is_32bit: + return arch + + if arch.startswith("ppc"): + return "ppc" + + return "i386" + + +def _mac_binary_formats(version: MacVersion, cpu_arch: str) -> list[str]: + formats = [cpu_arch] + if cpu_arch == "x86_64": + if version < (10, 4): + return [] + formats.extend(["intel", "fat64", "fat32"]) + + elif cpu_arch == "i386": + if version < (10, 4): + return [] + formats.extend(["intel", "fat32", "fat"]) + + elif cpu_arch == "ppc64": + # TODO: Need to care about 32-bit PPC for ppc64 through 10.2? + if version > (10, 5) or version < (10, 4): + return [] + formats.append("fat64") + + elif cpu_arch == "ppc": + if version > (10, 6): + return [] + formats.extend(["fat32", "fat"]) + + if cpu_arch in {"arm64", "x86_64"}: + formats.append("universal2") + + if cpu_arch in {"x86_64", "i386", "ppc64", "ppc", "intel"}: + formats.append("universal") + + return formats + + +def mac_platforms( + version: MacVersion | None = None, arch: str | None = None +) -> Iterator[str]: + """ + Yields the platform tags for a macOS system. + + The `version` parameter is a two-item tuple specifying the macOS version to + generate platform tags for. The `arch` parameter is the CPU architecture to + generate platform tags for. Both parameters default to the appropriate value + for the current system. + """ + version_str, _, cpu_arch = platform.mac_ver() + if version is None: + version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) + if version == (10, 16): + # When built against an older macOS SDK, Python will report macOS 10.16 + # instead of the real version. + version_str = subprocess.run( + [ + sys.executable, + "-sS", + "-c", + "import platform; print(platform.mac_ver()[0])", + ], + check=True, + env={"SYSTEM_VERSION_COMPAT": "0"}, + stdout=subprocess.PIPE, + text=True, + ).stdout + version = cast("MacVersion", tuple(map(int, version_str.split(".")[:2]))) + else: + version = version + if arch is None: + arch = _mac_arch(cpu_arch) + else: + arch = arch + + if (10, 0) <= version and version < (11, 0): + # Prior to Mac OS 11, each yearly release of Mac OS bumped the + # "minor" version number. The major version was always 10. + for minor_version in range(version[1], -1, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=10, minor=minor_version, binary_format=binary_format + ) + + if version >= (11, 0): + # Starting with Mac OS 11, each yearly release bumps the major version + # number. The minor versions are now the midyear updates. + for major_version in range(version[0], 10, -1): + compat_version = major_version, 0 + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=major_version, minor=0, binary_format=binary_format + ) + + if version >= (11, 0): + # Mac OS 11 on x86_64 is compatible with binaries from previous releases. + # Arm64 support was introduced in 11.0, so no Arm binaries from previous + # releases exist. + # + # However, the "universal2" binary format can have a + # macOS version earlier than 11.0 when the x86_64 part of the binary supports + # that version of macOS. + if arch == "x86_64": + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_formats = _mac_binary_formats(compat_version, arch) + for binary_format in binary_formats: + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + else: + for minor_version in range(16, 3, -1): + compat_version = 10, minor_version + binary_format = "universal2" + yield "macosx_{major}_{minor}_{binary_format}".format( + major=compat_version[0], + minor=compat_version[1], + binary_format=binary_format, + ) + + +def _linux_platforms(is_32bit: bool = _32_BIT_INTERPRETER) -> Iterator[str]: + linux = _normalize_string(sysconfig.get_platform()) + if not linux.startswith("linux_"): + # we should never be here, just yield the sysconfig one and return + yield linux + return + if is_32bit: + if linux == "linux_x86_64": + linux = "linux_i686" + elif linux == "linux_aarch64": + linux = "linux_armv8l" + _, arch = linux.split("_", 1) + archs = {"armv8l": ["armv8l", "armv7l"]}.get(arch, [arch]) + yield from _manylinux.platform_tags(archs) + yield from _musllinux.platform_tags(archs) + for arch in archs: + yield f"linux_{arch}" + + +def _generic_platforms() -> Iterator[str]: + yield _normalize_string(sysconfig.get_platform()) + + +def platform_tags() -> Iterator[str]: + """ + Provides the platform tags for this installation. + """ + if platform.system() == "Darwin": + return mac_platforms() + elif platform.system() == "Linux": + return _linux_platforms() + else: + return _generic_platforms() + + +def interpreter_name() -> str: + """ + Returns the name of the running interpreter. + + Some implementations have a reserved, two-letter abbreviation which will + be returned when appropriate. + """ + name = sys.implementation.name + return INTERPRETER_SHORT_NAMES.get(name) or name + + +def interpreter_version(*, warn: bool = False) -> str: + """ + Returns the version of the running interpreter. + """ + version = _get_config_var("py_version_nodot", warn=warn) + if version: + version = str(version) + else: + version = _version_nodot(sys.version_info[:2]) + return version + + +def _version_nodot(version: PythonVersion) -> str: + return "".join(map(str, version)) + + +def sys_tags(*, warn: bool = False) -> Iterator[Tag]: + """ + Returns the sequence of tag triples for the running interpreter. + + The order of the sequence corresponds to priority order for the + interpreter, from most to least important. + """ + + interp_name = interpreter_name() + if interp_name == "cp": + yield from cpython_tags(warn=warn) + else: + yield from generic_tags() + + if interp_name == "pp": + interp = "pp3" + elif interp_name == "cp": + interp = "cp" + interpreter_version(warn=warn) + else: + interp = None + yield from compatible_tags(interpreter=interp) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py new file mode 100644 index 00000000..d33da5bb --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py @@ -0,0 +1,174 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. + +from __future__ import annotations + +import re +from typing import NewType, Tuple, Union, cast + +from .tags import Tag, parse_tag +from .version import InvalidVersion, Version + +BuildTag = Union[Tuple[()], Tuple[int, str]] +NormalizedName = NewType("NormalizedName", str) + + +class InvalidName(ValueError): + """ + An invalid distribution name; users should refer to the packaging user guide. + """ + + +class InvalidWheelFilename(ValueError): + """ + An invalid wheel filename was found, users should refer to PEP 427. + """ + + +class InvalidSdistFilename(ValueError): + """ + An invalid sdist filename was found, users should refer to the packaging user guide. + """ + + +# Core metadata spec for `Name` +_validate_regex = re.compile( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", re.IGNORECASE +) +_canonicalize_regex = re.compile(r"[-_.]+") +_normalized_regex = re.compile(r"^([a-z0-9]|[a-z0-9]([a-z0-9-](?!--))*[a-z0-9])$") +# PEP 427: The build number must start with a digit. +_build_tag_regex = re.compile(r"(\d+)(.*)") + + +def canonicalize_name(name: str, *, validate: bool = False) -> NormalizedName: + if validate and not _validate_regex.match(name): + raise InvalidName(f"name is invalid: {name!r}") + # This is taken from PEP 503. + value = _canonicalize_regex.sub("-", name).lower() + return cast(NormalizedName, value) + + +def is_normalized_name(name: str) -> bool: + return _normalized_regex.match(name) is not None + + +def canonicalize_version( + version: Version | str, *, strip_trailing_zero: bool = True +) -> str: + """ + This is very similar to Version.__str__, but has one subtle difference + with the way it handles the release segment. + """ + if isinstance(version, str): + try: + parsed = Version(version) + except InvalidVersion: + # Legacy versions cannot be normalized + return version + else: + parsed = version + + parts = [] + + # Epoch + if parsed.epoch != 0: + parts.append(f"{parsed.epoch}!") + + # Release segment + release_segment = ".".join(str(x) for x in parsed.release) + if strip_trailing_zero: + # NB: This strips trailing '.0's to normalize + release_segment = re.sub(r"(\.0)+$", "", release_segment) + parts.append(release_segment) + + # Pre-release + if parsed.pre is not None: + parts.append("".join(str(x) for x in parsed.pre)) + + # Post-release + if parsed.post is not None: + parts.append(f".post{parsed.post}") + + # Development release + if parsed.dev is not None: + parts.append(f".dev{parsed.dev}") + + # Local version segment + if parsed.local is not None: + parts.append(f"+{parsed.local}") + + return "".join(parts) + + +def parse_wheel_filename( + filename: str, +) -> tuple[NormalizedName, Version, BuildTag, frozenset[Tag]]: + if not filename.endswith(".whl"): + raise InvalidWheelFilename( + f"Invalid wheel filename (extension must be '.whl'): {filename}" + ) + + filename = filename[:-4] + dashes = filename.count("-") + if dashes not in (4, 5): + raise InvalidWheelFilename( + f"Invalid wheel filename (wrong number of parts): {filename}" + ) + + parts = filename.split("-", dashes - 2) + name_part = parts[0] + # See PEP 427 for the rules on escaping the project name. + if "__" in name_part or re.match(r"^[\w\d._]*$", name_part, re.UNICODE) is None: + raise InvalidWheelFilename(f"Invalid project name: {filename}") + name = canonicalize_name(name_part) + + try: + version = Version(parts[1]) + except InvalidVersion as e: + raise InvalidWheelFilename( + f"Invalid wheel filename (invalid version): {filename}" + ) from e + + if dashes == 5: + build_part = parts[2] + build_match = _build_tag_regex.match(build_part) + if build_match is None: + raise InvalidWheelFilename( + f"Invalid build number: {build_part} in '{filename}'" + ) + build = cast(BuildTag, (int(build_match.group(1)), build_match.group(2))) + else: + build = () + tags = parse_tag(parts[-1]) + return (name, version, build, tags) + + +def parse_sdist_filename(filename: str) -> tuple[NormalizedName, Version]: + if filename.endswith(".tar.gz"): + file_stem = filename[: -len(".tar.gz")] + elif filename.endswith(".zip"): + file_stem = filename[: -len(".zip")] + else: + raise InvalidSdistFilename( + f"Invalid sdist filename (extension must be '.tar.gz' or '.zip'):" + f" {filename}" + ) + + # We are requiring a PEP 440 version, which cannot contain dashes, + # so we split on the last dash. + name_part, sep, version_part = file_stem.rpartition("-") + if not sep: + raise InvalidSdistFilename(f"Invalid sdist filename: {filename}") + + name = canonicalize_name(name_part) + + try: + version = Version(version_part) + except InvalidVersion as e: + raise InvalidSdistFilename( + f"Invalid sdist filename (invalid version): {filename}" + ) from e + + return (name, version) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/version.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/version.py new file mode 100644 index 00000000..8b0a0408 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/packaging/version.py @@ -0,0 +1,563 @@ +# This file is dual licensed under the terms of the Apache License, Version +# 2.0, and the BSD License. See the LICENSE file in the root of this repository +# for complete details. +""" +.. testsetup:: + + from pip._vendor.packaging.version import parse, Version +""" + +from __future__ import annotations + +import itertools +import re +from typing import Any, Callable, NamedTuple, SupportsInt, Tuple, Union + +from ._structures import Infinity, InfinityType, NegativeInfinity, NegativeInfinityType + +__all__ = ["VERSION_PATTERN", "parse", "Version", "InvalidVersion"] + +LocalType = Tuple[Union[int, str], ...] + +CmpPrePostDevType = Union[InfinityType, NegativeInfinityType, Tuple[str, int]] +CmpLocalType = Union[ + NegativeInfinityType, + Tuple[Union[Tuple[int, str], Tuple[NegativeInfinityType, Union[int, str]]], ...], +] +CmpKey = Tuple[ + int, + Tuple[int, ...], + CmpPrePostDevType, + CmpPrePostDevType, + CmpPrePostDevType, + CmpLocalType, +] +VersionComparisonMethod = Callable[[CmpKey, CmpKey], bool] + + +class _Version(NamedTuple): + epoch: int + release: tuple[int, ...] + dev: tuple[str, int] | None + pre: tuple[str, int] | None + post: tuple[str, int] | None + local: LocalType | None + + +def parse(version: str) -> Version: + """Parse the given version string. + + >>> parse('1.0.dev1') + + + :param version: The version string to parse. + :raises InvalidVersion: When the version string is not a valid version. + """ + return Version(version) + + +class InvalidVersion(ValueError): + """Raised when a version string is not a valid version. + + >>> Version("invalid") + Traceback (most recent call last): + ... + packaging.version.InvalidVersion: Invalid version: 'invalid' + """ + + +class _BaseVersion: + _key: tuple[Any, ...] + + def __hash__(self) -> int: + return hash(self._key) + + # Please keep the duplicated `isinstance` check + # in the six comparisons hereunder + # unless you find a way to avoid adding overhead function calls. + def __lt__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key < other._key + + def __le__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key <= other._key + + def __eq__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key == other._key + + def __ge__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key >= other._key + + def __gt__(self, other: _BaseVersion) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key > other._key + + def __ne__(self, other: object) -> bool: + if not isinstance(other, _BaseVersion): + return NotImplemented + + return self._key != other._key + + +# Deliberately not anchored to the start and end of the string, to make it +# easier for 3rd party code to reuse +_VERSION_PATTERN = r""" + v? + (?: + (?:(?P[0-9]+)!)? # epoch + (?P[0-9]+(?:\.[0-9]+)*) # release segment + (?P

                                              # pre-release
    +            [-_\.]?
    +            (?Palpha|a|beta|b|preview|pre|c|rc)
    +            [-_\.]?
    +            (?P[0-9]+)?
    +        )?
    +        (?P                                         # post release
    +            (?:-(?P[0-9]+))
    +            |
    +            (?:
    +                [-_\.]?
    +                (?Ppost|rev|r)
    +                [-_\.]?
    +                (?P[0-9]+)?
    +            )
    +        )?
    +        (?P                                          # dev release
    +            [-_\.]?
    +            (?Pdev)
    +            [-_\.]?
    +            (?P[0-9]+)?
    +        )?
    +    )
    +    (?:\+(?P[a-z0-9]+(?:[-_\.][a-z0-9]+)*))?       # local version
    +"""
    +
    +VERSION_PATTERN = _VERSION_PATTERN
    +"""
    +A string containing the regular expression used to match a valid version.
    +
    +The pattern is not anchored at either end, and is intended for embedding in larger
    +expressions (for example, matching a version number as part of a file name). The
    +regular expression should be compiled with the ``re.VERBOSE`` and ``re.IGNORECASE``
    +flags set.
    +
    +:meta hide-value:
    +"""
    +
    +
    +class Version(_BaseVersion):
    +    """This class abstracts handling of a project's versions.
    +
    +    A :class:`Version` instance is comparison aware and can be compared and
    +    sorted using the standard Python interfaces.
    +
    +    >>> v1 = Version("1.0a5")
    +    >>> v2 = Version("1.0")
    +    >>> v1
    +    
    +    >>> v2
    +    
    +    >>> v1 < v2
    +    True
    +    >>> v1 == v2
    +    False
    +    >>> v1 > v2
    +    False
    +    >>> v1 >= v2
    +    False
    +    >>> v1 <= v2
    +    True
    +    """
    +
    +    _regex = re.compile(r"^\s*" + VERSION_PATTERN + r"\s*$", re.VERBOSE | re.IGNORECASE)
    +    _key: CmpKey
    +
    +    def __init__(self, version: str) -> None:
    +        """Initialize a Version object.
    +
    +        :param version:
    +            The string representation of a version which will be parsed and normalized
    +            before use.
    +        :raises InvalidVersion:
    +            If the ``version`` does not conform to PEP 440 in any way then this
    +            exception will be raised.
    +        """
    +
    +        # Validate the version and parse it into pieces
    +        match = self._regex.search(version)
    +        if not match:
    +            raise InvalidVersion(f"Invalid version: '{version}'")
    +
    +        # Store the parsed out pieces of the version
    +        self._version = _Version(
    +            epoch=int(match.group("epoch")) if match.group("epoch") else 0,
    +            release=tuple(int(i) for i in match.group("release").split(".")),
    +            pre=_parse_letter_version(match.group("pre_l"), match.group("pre_n")),
    +            post=_parse_letter_version(
    +                match.group("post_l"), match.group("post_n1") or match.group("post_n2")
    +            ),
    +            dev=_parse_letter_version(match.group("dev_l"), match.group("dev_n")),
    +            local=_parse_local_version(match.group("local")),
    +        )
    +
    +        # Generate a key which will be used for sorting
    +        self._key = _cmpkey(
    +            self._version.epoch,
    +            self._version.release,
    +            self._version.pre,
    +            self._version.post,
    +            self._version.dev,
    +            self._version.local,
    +        )
    +
    +    def __repr__(self) -> str:
    +        """A representation of the Version that shows all internal state.
    +
    +        >>> Version('1.0.0')
    +        
    +        """
    +        return f""
    +
    +    def __str__(self) -> str:
    +        """A string representation of the version that can be rounded-tripped.
    +
    +        >>> str(Version("1.0a5"))
    +        '1.0a5'
    +        """
    +        parts = []
    +
    +        # Epoch
    +        if self.epoch != 0:
    +            parts.append(f"{self.epoch}!")
    +
    +        # Release segment
    +        parts.append(".".join(str(x) for x in self.release))
    +
    +        # Pre-release
    +        if self.pre is not None:
    +            parts.append("".join(str(x) for x in self.pre))
    +
    +        # Post-release
    +        if self.post is not None:
    +            parts.append(f".post{self.post}")
    +
    +        # Development release
    +        if self.dev is not None:
    +            parts.append(f".dev{self.dev}")
    +
    +        # Local version segment
    +        if self.local is not None:
    +            parts.append(f"+{self.local}")
    +
    +        return "".join(parts)
    +
    +    @property
    +    def epoch(self) -> int:
    +        """The epoch of the version.
    +
    +        >>> Version("2.0.0").epoch
    +        0
    +        >>> Version("1!2.0.0").epoch
    +        1
    +        """
    +        return self._version.epoch
    +
    +    @property
    +    def release(self) -> tuple[int, ...]:
    +        """The components of the "release" segment of the version.
    +
    +        >>> Version("1.2.3").release
    +        (1, 2, 3)
    +        >>> Version("2.0.0").release
    +        (2, 0, 0)
    +        >>> Version("1!2.0.0.post0").release
    +        (2, 0, 0)
    +
    +        Includes trailing zeroes but not the epoch or any pre-release / development /
    +        post-release suffixes.
    +        """
    +        return self._version.release
    +
    +    @property
    +    def pre(self) -> tuple[str, int] | None:
    +        """The pre-release segment of the version.
    +
    +        >>> print(Version("1.2.3").pre)
    +        None
    +        >>> Version("1.2.3a1").pre
    +        ('a', 1)
    +        >>> Version("1.2.3b1").pre
    +        ('b', 1)
    +        >>> Version("1.2.3rc1").pre
    +        ('rc', 1)
    +        """
    +        return self._version.pre
    +
    +    @property
    +    def post(self) -> int | None:
    +        """The post-release number of the version.
    +
    +        >>> print(Version("1.2.3").post)
    +        None
    +        >>> Version("1.2.3.post1").post
    +        1
    +        """
    +        return self._version.post[1] if self._version.post else None
    +
    +    @property
    +    def dev(self) -> int | None:
    +        """The development number of the version.
    +
    +        >>> print(Version("1.2.3").dev)
    +        None
    +        >>> Version("1.2.3.dev1").dev
    +        1
    +        """
    +        return self._version.dev[1] if self._version.dev else None
    +
    +    @property
    +    def local(self) -> str | None:
    +        """The local version segment of the version.
    +
    +        >>> print(Version("1.2.3").local)
    +        None
    +        >>> Version("1.2.3+abc").local
    +        'abc'
    +        """
    +        if self._version.local:
    +            return ".".join(str(x) for x in self._version.local)
    +        else:
    +            return None
    +
    +    @property
    +    def public(self) -> str:
    +        """The public portion of the version.
    +
    +        >>> Version("1.2.3").public
    +        '1.2.3'
    +        >>> Version("1.2.3+abc").public
    +        '1.2.3'
    +        >>> Version("1.2.3+abc.dev1").public
    +        '1.2.3'
    +        """
    +        return str(self).split("+", 1)[0]
    +
    +    @property
    +    def base_version(self) -> str:
    +        """The "base version" of the version.
    +
    +        >>> Version("1.2.3").base_version
    +        '1.2.3'
    +        >>> Version("1.2.3+abc").base_version
    +        '1.2.3'
    +        >>> Version("1!1.2.3+abc.dev1").base_version
    +        '1!1.2.3'
    +
    +        The "base version" is the public version of the project without any pre or post
    +        release markers.
    +        """
    +        parts = []
    +
    +        # Epoch
    +        if self.epoch != 0:
    +            parts.append(f"{self.epoch}!")
    +
    +        # Release segment
    +        parts.append(".".join(str(x) for x in self.release))
    +
    +        return "".join(parts)
    +
    +    @property
    +    def is_prerelease(self) -> bool:
    +        """Whether this version is a pre-release.
    +
    +        >>> Version("1.2.3").is_prerelease
    +        False
    +        >>> Version("1.2.3a1").is_prerelease
    +        True
    +        >>> Version("1.2.3b1").is_prerelease
    +        True
    +        >>> Version("1.2.3rc1").is_prerelease
    +        True
    +        >>> Version("1.2.3dev1").is_prerelease
    +        True
    +        """
    +        return self.dev is not None or self.pre is not None
    +
    +    @property
    +    def is_postrelease(self) -> bool:
    +        """Whether this version is a post-release.
    +
    +        >>> Version("1.2.3").is_postrelease
    +        False
    +        >>> Version("1.2.3.post1").is_postrelease
    +        True
    +        """
    +        return self.post is not None
    +
    +    @property
    +    def is_devrelease(self) -> bool:
    +        """Whether this version is a development release.
    +
    +        >>> Version("1.2.3").is_devrelease
    +        False
    +        >>> Version("1.2.3.dev1").is_devrelease
    +        True
    +        """
    +        return self.dev is not None
    +
    +    @property
    +    def major(self) -> int:
    +        """The first item of :attr:`release` or ``0`` if unavailable.
    +
    +        >>> Version("1.2.3").major
    +        1
    +        """
    +        return self.release[0] if len(self.release) >= 1 else 0
    +
    +    @property
    +    def minor(self) -> int:
    +        """The second item of :attr:`release` or ``0`` if unavailable.
    +
    +        >>> Version("1.2.3").minor
    +        2
    +        >>> Version("1").minor
    +        0
    +        """
    +        return self.release[1] if len(self.release) >= 2 else 0
    +
    +    @property
    +    def micro(self) -> int:
    +        """The third item of :attr:`release` or ``0`` if unavailable.
    +
    +        >>> Version("1.2.3").micro
    +        3
    +        >>> Version("1").micro
    +        0
    +        """
    +        return self.release[2] if len(self.release) >= 3 else 0
    +
    +
    +def _parse_letter_version(
    +    letter: str | None, number: str | bytes | SupportsInt | None
    +) -> tuple[str, int] | None:
    +    if letter:
    +        # We consider there to be an implicit 0 in a pre-release if there is
    +        # not a numeral associated with it.
    +        if number is None:
    +            number = 0
    +
    +        # We normalize any letters to their lower case form
    +        letter = letter.lower()
    +
    +        # We consider some words to be alternate spellings of other words and
    +        # in those cases we want to normalize the spellings to our preferred
    +        # spelling.
    +        if letter == "alpha":
    +            letter = "a"
    +        elif letter == "beta":
    +            letter = "b"
    +        elif letter in ["c", "pre", "preview"]:
    +            letter = "rc"
    +        elif letter in ["rev", "r"]:
    +            letter = "post"
    +
    +        return letter, int(number)
    +    if not letter and number:
    +        # We assume if we are given a number, but we are not given a letter
    +        # then this is using the implicit post release syntax (e.g. 1.0-1)
    +        letter = "post"
    +
    +        return letter, int(number)
    +
    +    return None
    +
    +
    +_local_version_separators = re.compile(r"[\._-]")
    +
    +
    +def _parse_local_version(local: str | None) -> LocalType | None:
    +    """
    +    Takes a string like abc.1.twelve and turns it into ("abc", 1, "twelve").
    +    """
    +    if local is not None:
    +        return tuple(
    +            part.lower() if not part.isdigit() else int(part)
    +            for part in _local_version_separators.split(local)
    +        )
    +    return None
    +
    +
    +def _cmpkey(
    +    epoch: int,
    +    release: tuple[int, ...],
    +    pre: tuple[str, int] | None,
    +    post: tuple[str, int] | None,
    +    dev: tuple[str, int] | None,
    +    local: LocalType | None,
    +) -> CmpKey:
    +    # When we compare a release version, we want to compare it with all of the
    +    # trailing zeros removed. So we'll use a reverse the list, drop all the now
    +    # leading zeros until we come to something non zero, then take the rest
    +    # re-reverse it back into the correct order and make it a tuple and use
    +    # that for our sorting key.
    +    _release = tuple(
    +        reversed(list(itertools.dropwhile(lambda x: x == 0, reversed(release))))
    +    )
    +
    +    # We need to "trick" the sorting algorithm to put 1.0.dev0 before 1.0a0.
    +    # We'll do this by abusing the pre segment, but we _only_ want to do this
    +    # if there is not a pre or a post segment. If we have one of those then
    +    # the normal sorting rules will handle this case correctly.
    +    if pre is None and post is None and dev is not None:
    +        _pre: CmpPrePostDevType = NegativeInfinity
    +    # Versions without a pre-release (except as noted above) should sort after
    +    # those with one.
    +    elif pre is None:
    +        _pre = Infinity
    +    else:
    +        _pre = pre
    +
    +    # Versions without a post segment should sort before those with one.
    +    if post is None:
    +        _post: CmpPrePostDevType = NegativeInfinity
    +
    +    else:
    +        _post = post
    +
    +    # Versions without a development segment should sort after those with one.
    +    if dev is None:
    +        _dev: CmpPrePostDevType = Infinity
    +
    +    else:
    +        _dev = dev
    +
    +    if local is None:
    +        # Versions without a local segment should sort before those with one.
    +        _local: CmpLocalType = NegativeInfinity
    +    else:
    +        # Versions with a local segment need that segment parsed to implement
    +        # the sorting rules in PEP440.
    +        # - Alpha numeric segments sort before numeric segments
    +        # - Alpha numeric segments sort lexicographically
    +        # - Numeric segments sort numerically
    +        # - Shorter versions sort before longer versions when the prefixes
    +        #   match exactly
    +        _local = tuple(
    +            (i, "") if isinstance(i, int) else (NegativeInfinity, i) for i in local
    +        )
    +
    +    return epoch, _release, _pre, _post, _dev, _local
    diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py
    new file mode 100644
    index 00000000..57ce7f10
    --- /dev/null
    +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py
    @@ -0,0 +1,3676 @@
    +# TODO: Add Generic type annotations to initialized collections.
    +# For now we'd simply use implicit Any/Unknown which would add redundant annotations
    +# mypy: disable-error-code="var-annotated"
    +"""
    +Package resource API
    +--------------------
    +
    +A resource is a logical file contained within a package, or a logical
    +subdirectory thereof.  The package resource API expects resource names
    +to have their path parts separated with ``/``, *not* whatever the local
    +path separator is.  Do not use os.path operations to manipulate resource
    +names being passed into the API.
    +
    +The package resource API is designed to work with normal filesystem packages,
    +.egg files, and unpacked .egg files.  It can also work in a limited way with
    +.zip files and with custom PEP 302 loaders that support the ``get_data()``
    +method.
    +
    +This module is deprecated. Users are directed to :mod:`importlib.resources`,
    +:mod:`importlib.metadata` and :pypi:`packaging` instead.
    +"""
    +
    +from __future__ import annotations
    +
    +import sys
    +
    +if sys.version_info < (3, 8):  # noqa: UP036 # Check for unsupported versions
    +    raise RuntimeError("Python 3.8 or later is required")
    +
    +import os
    +import io
    +import time
    +import re
    +import types
    +from typing import (
    +    Any,
    +    Literal,
    +    Dict,
    +    Iterator,
    +    Mapping,
    +    MutableSequence,
    +    NamedTuple,
    +    NoReturn,
    +    Tuple,
    +    Union,
    +    TYPE_CHECKING,
    +    Protocol,
    +    Callable,
    +    Iterable,
    +    TypeVar,
    +    overload,
    +)
    +import zipfile
    +import zipimport
    +import warnings
    +import stat
    +import functools
    +import pkgutil
    +import operator
    +import platform
    +import collections
    +import plistlib
    +import email.parser
    +import errno
    +import tempfile
    +import textwrap
    +import inspect
    +import ntpath
    +import posixpath
    +import importlib
    +import importlib.abc
    +import importlib.machinery
    +from pkgutil import get_importer
    +
    +import _imp
    +
    +# capture these to bypass sandboxing
    +from os import utime
    +from os import open as os_open
    +from os.path import isdir, split
    +
    +try:
    +    from os import mkdir, rename, unlink
    +
    +    WRITE_SUPPORT = True
    +except ImportError:
    +    # no write support, probably under GAE
    +    WRITE_SUPPORT = False
    +
    +from pip._internal.utils._jaraco_text import (
    +    yield_lines,
    +    drop_comment,
    +    join_continuation,
    +)
    +from pip._vendor.packaging import markers as _packaging_markers
    +from pip._vendor.packaging import requirements as _packaging_requirements
    +from pip._vendor.packaging import utils as _packaging_utils
    +from pip._vendor.packaging import version as _packaging_version
    +from pip._vendor.platformdirs import user_cache_dir as _user_cache_dir
    +
    +if TYPE_CHECKING:
    +    from _typeshed import BytesPath, StrPath, StrOrBytesPath
    +    from pip._vendor.typing_extensions import Self
    +
    +
    +# Patch: Remove deprecation warning from vendored pkg_resources.
    +# Setting PYTHONWARNINGS=error to verify builds produce no warnings
    +# causes immediate exceptions.
    +# See https://github.com/pypa/pip/issues/12243
    +
    +
    +_T = TypeVar("_T")
    +_DistributionT = TypeVar("_DistributionT", bound="Distribution")
    +# Type aliases
    +_NestedStr = Union[str, Iterable[Union[str, Iterable["_NestedStr"]]]]
    +_InstallerTypeT = Callable[["Requirement"], "_DistributionT"]
    +_InstallerType = Callable[["Requirement"], Union["Distribution", None]]
    +_PkgReqType = Union[str, "Requirement"]
    +_EPDistType = Union["Distribution", _PkgReqType]
    +_MetadataType = Union["IResourceProvider", None]
    +_ResolvedEntryPoint = Any  # Can be any attribute in the module
    +_ResourceStream = Any  # TODO / Incomplete: A readable file-like object
    +# Any object works, but let's indicate we expect something like a module (optionally has __loader__ or __file__)
    +_ModuleLike = Union[object, types.ModuleType]
    +# Any: Should be _ModuleLike but we end up with issues where _ModuleLike doesn't have _ZipLoaderModule's __loader__
    +_ProviderFactoryType = Callable[[Any], "IResourceProvider"]
    +_DistFinderType = Callable[[_T, str, bool], Iterable["Distribution"]]
    +_NSHandlerType = Callable[[_T, str, str, types.ModuleType], Union[str, None]]
    +_AdapterT = TypeVar(
    +    "_AdapterT", _DistFinderType[Any], _ProviderFactoryType, _NSHandlerType[Any]
    +)
    +
    +
    +# Use _typeshed.importlib.LoaderProtocol once available https://github.com/python/typeshed/pull/11890
    +class _LoaderProtocol(Protocol):
    +    def load_module(self, fullname: str, /) -> types.ModuleType: ...
    +
    +
    +class _ZipLoaderModule(Protocol):
    +    __loader__: zipimport.zipimporter
    +
    +
    +_PEP440_FALLBACK = re.compile(r"^v?(?P(?:[0-9]+!)?[0-9]+(?:\.[0-9]+)*)", re.I)
    +
    +
    +class PEP440Warning(RuntimeWarning):
    +    """
    +    Used when there is an issue with a version or specifier not complying with
    +    PEP 440.
    +    """
    +
    +
    +parse_version = _packaging_version.Version
    +
    +
    +_state_vars: dict[str, str] = {}
    +
    +
    +def _declare_state(vartype: str, varname: str, initial_value: _T) -> _T:
    +    _state_vars[varname] = vartype
    +    return initial_value
    +
    +
    +def __getstate__() -> dict[str, Any]:
    +    state = {}
    +    g = globals()
    +    for k, v in _state_vars.items():
    +        state[k] = g['_sget_' + v](g[k])
    +    return state
    +
    +
    +def __setstate__(state: dict[str, Any]) -> dict[str, Any]:
    +    g = globals()
    +    for k, v in state.items():
    +        g['_sset_' + _state_vars[k]](k, g[k], v)
    +    return state
    +
    +
    +def _sget_dict(val):
    +    return val.copy()
    +
    +
    +def _sset_dict(key, ob, state):
    +    ob.clear()
    +    ob.update(state)
    +
    +
    +def _sget_object(val):
    +    return val.__getstate__()
    +
    +
    +def _sset_object(key, ob, state):
    +    ob.__setstate__(state)
    +
    +
    +_sget_none = _sset_none = lambda *args: None
    +
    +
    +def get_supported_platform():
    +    """Return this platform's maximum compatible version.
    +
    +    distutils.util.get_platform() normally reports the minimum version
    +    of macOS that would be required to *use* extensions produced by
    +    distutils.  But what we want when checking compatibility is to know the
    +    version of macOS that we are *running*.  To allow usage of packages that
    +    explicitly require a newer version of macOS, we must also know the
    +    current version of the OS.
    +
    +    If this condition occurs for any other platform with a version in its
    +    platform strings, this function should be extended accordingly.
    +    """
    +    plat = get_build_platform()
    +    m = macosVersionString.match(plat)
    +    if m is not None and sys.platform == "darwin":
    +        try:
    +            plat = 'macosx-%s-%s' % ('.'.join(_macos_vers()[:2]), m.group(3))
    +        except ValueError:
    +            # not macOS
    +            pass
    +    return plat
    +
    +
    +__all__ = [
    +    # Basic resource access and distribution/entry point discovery
    +    'require',
    +    'run_script',
    +    'get_provider',
    +    'get_distribution',
    +    'load_entry_point',
    +    'get_entry_map',
    +    'get_entry_info',
    +    'iter_entry_points',
    +    'resource_string',
    +    'resource_stream',
    +    'resource_filename',
    +    'resource_listdir',
    +    'resource_exists',
    +    'resource_isdir',
    +    # Environmental control
    +    'declare_namespace',
    +    'working_set',
    +    'add_activation_listener',
    +    'find_distributions',
    +    'set_extraction_path',
    +    'cleanup_resources',
    +    'get_default_cache',
    +    # Primary implementation classes
    +    'Environment',
    +    'WorkingSet',
    +    'ResourceManager',
    +    'Distribution',
    +    'Requirement',
    +    'EntryPoint',
    +    # Exceptions
    +    'ResolutionError',
    +    'VersionConflict',
    +    'DistributionNotFound',
    +    'UnknownExtra',
    +    'ExtractionError',
    +    # Warnings
    +    'PEP440Warning',
    +    # Parsing functions and string utilities
    +    'parse_requirements',
    +    'parse_version',
    +    'safe_name',
    +    'safe_version',
    +    'get_platform',
    +    'compatible_platforms',
    +    'yield_lines',
    +    'split_sections',
    +    'safe_extra',
    +    'to_filename',
    +    'invalid_marker',
    +    'evaluate_marker',
    +    # filesystem utilities
    +    'ensure_directory',
    +    'normalize_path',
    +    # Distribution "precedence" constants
    +    'EGG_DIST',
    +    'BINARY_DIST',
    +    'SOURCE_DIST',
    +    'CHECKOUT_DIST',
    +    'DEVELOP_DIST',
    +    # "Provider" interfaces, implementations, and registration/lookup APIs
    +    'IMetadataProvider',
    +    'IResourceProvider',
    +    'FileMetadata',
    +    'PathMetadata',
    +    'EggMetadata',
    +    'EmptyProvider',
    +    'empty_provider',
    +    'NullProvider',
    +    'EggProvider',
    +    'DefaultProvider',
    +    'ZipProvider',
    +    'register_finder',
    +    'register_namespace_handler',
    +    'register_loader_type',
    +    'fixup_namespace_packages',
    +    'get_importer',
    +    # Warnings
    +    'PkgResourcesDeprecationWarning',
    +    # Deprecated/backward compatibility only
    +    'run_main',
    +    'AvailableDistributions',
    +]
    +
    +
    +class ResolutionError(Exception):
    +    """Abstract base for dependency resolution errors"""
    +
    +    def __repr__(self):
    +        return self.__class__.__name__ + repr(self.args)
    +
    +
    +class VersionConflict(ResolutionError):
    +    """
    +    An already-installed version conflicts with the requested version.
    +
    +    Should be initialized with the installed Distribution and the requested
    +    Requirement.
    +    """
    +
    +    _template = "{self.dist} is installed but {self.req} is required"
    +
    +    @property
    +    def dist(self) -> Distribution:
    +        return self.args[0]
    +
    +    @property
    +    def req(self) -> Requirement:
    +        return self.args[1]
    +
    +    def report(self):
    +        return self._template.format(**locals())
    +
    +    def with_context(self, required_by: set[Distribution | str]):
    +        """
    +        If required_by is non-empty, return a version of self that is a
    +        ContextualVersionConflict.
    +        """
    +        if not required_by:
    +            return self
    +        args = self.args + (required_by,)
    +        return ContextualVersionConflict(*args)
    +
    +
    +class ContextualVersionConflict(VersionConflict):
    +    """
    +    A VersionConflict that accepts a third parameter, the set of the
    +    requirements that required the installed Distribution.
    +    """
    +
    +    _template = VersionConflict._template + ' by {self.required_by}'
    +
    +    @property
    +    def required_by(self) -> set[str]:
    +        return self.args[2]
    +
    +
    +class DistributionNotFound(ResolutionError):
    +    """A requested distribution was not found"""
    +
    +    _template = (
    +        "The '{self.req}' distribution was not found "
    +        "and is required by {self.requirers_str}"
    +    )
    +
    +    @property
    +    def req(self) -> Requirement:
    +        return self.args[0]
    +
    +    @property
    +    def requirers(self) -> set[str] | None:
    +        return self.args[1]
    +
    +    @property
    +    def requirers_str(self):
    +        if not self.requirers:
    +            return 'the application'
    +        return ', '.join(self.requirers)
    +
    +    def report(self):
    +        return self._template.format(**locals())
    +
    +    def __str__(self):
    +        return self.report()
    +
    +
    +class UnknownExtra(ResolutionError):
    +    """Distribution doesn't have an "extra feature" of the given name"""
    +
    +
    +_provider_factories: dict[type[_ModuleLike], _ProviderFactoryType] = {}
    +
    +PY_MAJOR = '{}.{}'.format(*sys.version_info)
    +EGG_DIST = 3
    +BINARY_DIST = 2
    +SOURCE_DIST = 1
    +CHECKOUT_DIST = 0
    +DEVELOP_DIST = -1
    +
    +
    +def register_loader_type(
    +    loader_type: type[_ModuleLike], provider_factory: _ProviderFactoryType
    +):
    +    """Register `provider_factory` to make providers for `loader_type`
    +
    +    `loader_type` is the type or class of a PEP 302 ``module.__loader__``,
    +    and `provider_factory` is a function that, passed a *module* object,
    +    returns an ``IResourceProvider`` for that module.
    +    """
    +    _provider_factories[loader_type] = provider_factory
    +
    +
    +@overload
    +def get_provider(moduleOrReq: str) -> IResourceProvider: ...
    +@overload
    +def get_provider(moduleOrReq: Requirement) -> Distribution: ...
    +def get_provider(moduleOrReq: str | Requirement) -> IResourceProvider | Distribution:
    +    """Return an IResourceProvider for the named module or requirement"""
    +    if isinstance(moduleOrReq, Requirement):
    +        return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
    +    try:
    +        module = sys.modules[moduleOrReq]
    +    except KeyError:
    +        __import__(moduleOrReq)
    +        module = sys.modules[moduleOrReq]
    +    loader = getattr(module, '__loader__', None)
    +    return _find_adapter(_provider_factories, loader)(module)
    +
    +
    +@functools.lru_cache(maxsize=None)
    +def _macos_vers():
    +    version = platform.mac_ver()[0]
    +    # fallback for MacPorts
    +    if version == '':
    +        plist = '/System/Library/CoreServices/SystemVersion.plist'
    +        if os.path.exists(plist):
    +            with open(plist, 'rb') as fh:
    +                plist_content = plistlib.load(fh)
    +            if 'ProductVersion' in plist_content:
    +                version = plist_content['ProductVersion']
    +    return version.split('.')
    +
    +
    +def _macos_arch(machine):
    +    return {'PowerPC': 'ppc', 'Power_Macintosh': 'ppc'}.get(machine, machine)
    +
    +
    +def get_build_platform():
    +    """Return this platform's string for platform-specific distributions
    +
    +    XXX Currently this is the same as ``distutils.util.get_platform()``, but it
    +    needs some hacks for Linux and macOS.
    +    """
    +    from sysconfig import get_platform
    +
    +    plat = get_platform()
    +    if sys.platform == "darwin" and not plat.startswith('macosx-'):
    +        try:
    +            version = _macos_vers()
    +            machine = os.uname()[4].replace(" ", "_")
    +            return "macosx-%d.%d-%s" % (
    +                int(version[0]),
    +                int(version[1]),
    +                _macos_arch(machine),
    +            )
    +        except ValueError:
    +            # if someone is running a non-Mac darwin system, this will fall
    +            # through to the default implementation
    +            pass
    +    return plat
    +
    +
    +macosVersionString = re.compile(r"macosx-(\d+)\.(\d+)-(.*)")
    +darwinVersionString = re.compile(r"darwin-(\d+)\.(\d+)\.(\d+)-(.*)")
    +# XXX backward compat
    +get_platform = get_build_platform
    +
    +
    +def compatible_platforms(provided: str | None, required: str | None):
    +    """Can code for the `provided` platform run on the `required` platform?
    +
    +    Returns true if either platform is ``None``, or the platforms are equal.
    +
    +    XXX Needs compatibility checks for Linux and other unixy OSes.
    +    """
    +    if provided is None or required is None or provided == required:
    +        # easy case
    +        return True
    +
    +    # macOS special cases
    +    reqMac = macosVersionString.match(required)
    +    if reqMac:
    +        provMac = macosVersionString.match(provided)
    +
    +        # is this a Mac package?
    +        if not provMac:
    +            # this is backwards compatibility for packages built before
    +            # setuptools 0.6. All packages built after this point will
    +            # use the new macOS designation.
    +            provDarwin = darwinVersionString.match(provided)
    +            if provDarwin:
    +                dversion = int(provDarwin.group(1))
    +                macosversion = "%s.%s" % (reqMac.group(1), reqMac.group(2))
    +                if (
    +                    dversion == 7
    +                    and macosversion >= "10.3"
    +                    or dversion == 8
    +                    and macosversion >= "10.4"
    +                ):
    +                    return True
    +            # egg isn't macOS or legacy darwin
    +            return False
    +
    +        # are they the same major version and machine type?
    +        if provMac.group(1) != reqMac.group(1) or provMac.group(3) != reqMac.group(3):
    +            return False
    +
    +        # is the required OS major update >= the provided one?
    +        if int(provMac.group(2)) > int(reqMac.group(2)):
    +            return False
    +
    +        return True
    +
    +    # XXX Linux and other platforms' special cases should go here
    +    return False
    +
    +
    +@overload
    +def get_distribution(dist: _DistributionT) -> _DistributionT: ...
    +@overload
    +def get_distribution(dist: _PkgReqType) -> Distribution: ...
    +def get_distribution(dist: Distribution | _PkgReqType) -> Distribution:
    +    """Return a current distribution object for a Requirement or string"""
    +    if isinstance(dist, str):
    +        dist = Requirement.parse(dist)
    +    if isinstance(dist, Requirement):
    +        # Bad type narrowing, dist has to be a Requirement here, so get_provider has to return Distribution
    +        dist = get_provider(dist)  # type: ignore[assignment]
    +    if not isinstance(dist, Distribution):
    +        raise TypeError("Expected str, Requirement, or Distribution", dist)
    +    return dist
    +
    +
    +def load_entry_point(dist: _EPDistType, group: str, name: str) -> _ResolvedEntryPoint:
    +    """Return `name` entry point of `group` for `dist` or raise ImportError"""
    +    return get_distribution(dist).load_entry_point(group, name)
    +
    +
    +@overload
    +def get_entry_map(
    +    dist: _EPDistType, group: None = None
    +) -> dict[str, dict[str, EntryPoint]]: ...
    +@overload
    +def get_entry_map(dist: _EPDistType, group: str) -> dict[str, EntryPoint]: ...
    +def get_entry_map(dist: _EPDistType, group: str | None = None):
    +    """Return the entry point map for `group`, or the full entry map"""
    +    return get_distribution(dist).get_entry_map(group)
    +
    +
    +def get_entry_info(dist: _EPDistType, group: str, name: str):
    +    """Return the EntryPoint object for `group`+`name`, or ``None``"""
    +    return get_distribution(dist).get_entry_info(group, name)
    +
    +
    +class IMetadataProvider(Protocol):
    +    def has_metadata(self, name: str) -> bool:
    +        """Does the package's distribution contain the named metadata?"""
    +
    +    def get_metadata(self, name: str) -> str:
    +        """The named metadata resource as a string"""
    +
    +    def get_metadata_lines(self, name: str) -> Iterator[str]:
    +        """Yield named metadata resource as list of non-blank non-comment lines
    +
    +        Leading and trailing whitespace is stripped from each line, and lines
    +        with ``#`` as the first non-blank character are omitted."""
    +
    +    def metadata_isdir(self, name: str) -> bool:
    +        """Is the named metadata a directory?  (like ``os.path.isdir()``)"""
    +
    +    def metadata_listdir(self, name: str) -> list[str]:
    +        """List of metadata names in the directory (like ``os.listdir()``)"""
    +
    +    def run_script(self, script_name: str, namespace: dict[str, Any]) -> None:
    +        """Execute the named script in the supplied namespace dictionary"""
    +
    +
    +class IResourceProvider(IMetadataProvider, Protocol):
    +    """An object that provides access to package resources"""
    +
    +    def get_resource_filename(
    +        self, manager: ResourceManager, resource_name: str
    +    ) -> str:
    +        """Return a true filesystem path for `resource_name`
    +
    +        `manager` must be a ``ResourceManager``"""
    +
    +    def get_resource_stream(
    +        self, manager: ResourceManager, resource_name: str
    +    ) -> _ResourceStream:
    +        """Return a readable file-like object for `resource_name`
    +
    +        `manager` must be a ``ResourceManager``"""
    +
    +    def get_resource_string(
    +        self, manager: ResourceManager, resource_name: str
    +    ) -> bytes:
    +        """Return the contents of `resource_name` as :obj:`bytes`
    +
    +        `manager` must be a ``ResourceManager``"""
    +
    +    def has_resource(self, resource_name: str) -> bool:
    +        """Does the package contain the named resource?"""
    +
    +    def resource_isdir(self, resource_name: str) -> bool:
    +        """Is the named resource a directory?  (like ``os.path.isdir()``)"""
    +
    +    def resource_listdir(self, resource_name: str) -> list[str]:
    +        """List of resource names in the directory (like ``os.listdir()``)"""
    +
    +
    +class WorkingSet:
    +    """A collection of active distributions on sys.path (or a similar list)"""
    +
    +    def __init__(self, entries: Iterable[str] | None = None):
    +        """Create working set from list of path entries (default=sys.path)"""
    +        self.entries: list[str] = []
    +        self.entry_keys = {}
    +        self.by_key = {}
    +        self.normalized_to_canonical_keys = {}
    +        self.callbacks = []
    +
    +        if entries is None:
    +            entries = sys.path
    +
    +        for entry in entries:
    +            self.add_entry(entry)
    +
    +    @classmethod
    +    def _build_master(cls):
    +        """
    +        Prepare the master working set.
    +        """
    +        ws = cls()
    +        try:
    +            from __main__ import __requires__
    +        except ImportError:
    +            # The main program does not list any requirements
    +            return ws
    +
    +        # ensure the requirements are met
    +        try:
    +            ws.require(__requires__)
    +        except VersionConflict:
    +            return cls._build_from_requirements(__requires__)
    +
    +        return ws
    +
    +    @classmethod
    +    def _build_from_requirements(cls, req_spec):
    +        """
    +        Build a working set from a requirement spec. Rewrites sys.path.
    +        """
    +        # try it without defaults already on sys.path
    +        # by starting with an empty path
    +        ws = cls([])
    +        reqs = parse_requirements(req_spec)
    +        dists = ws.resolve(reqs, Environment())
    +        for dist in dists:
    +            ws.add(dist)
    +
    +        # add any missing entries from sys.path
    +        for entry in sys.path:
    +            if entry not in ws.entries:
    +                ws.add_entry(entry)
    +
    +        # then copy back to sys.path
    +        sys.path[:] = ws.entries
    +        return ws
    +
    +    def add_entry(self, entry: str):
    +        """Add a path item to ``.entries``, finding any distributions on it
    +
    +        ``find_distributions(entry, True)`` is used to find distributions
    +        corresponding to the path entry, and they are added.  `entry` is
    +        always appended to ``.entries``, even if it is already present.
    +        (This is because ``sys.path`` can contain the same value more than
    +        once, and the ``.entries`` of the ``sys.path`` WorkingSet should always
    +        equal ``sys.path``.)
    +        """
    +        self.entry_keys.setdefault(entry, [])
    +        self.entries.append(entry)
    +        for dist in find_distributions(entry, True):
    +            self.add(dist, entry, False)
    +
    +    def __contains__(self, dist: Distribution) -> bool:
    +        """True if `dist` is the active distribution for its project"""
    +        return self.by_key.get(dist.key) == dist
    +
    +    def find(self, req: Requirement) -> Distribution | None:
    +        """Find a distribution matching requirement `req`
    +
    +        If there is an active distribution for the requested project, this
    +        returns it as long as it meets the version requirement specified by
    +        `req`.  But, if there is an active distribution for the project and it
    +        does *not* meet the `req` requirement, ``VersionConflict`` is raised.
    +        If there is no active distribution for the requested project, ``None``
    +        is returned.
    +        """
    +        dist = self.by_key.get(req.key)
    +
    +        if dist is None:
    +            canonical_key = self.normalized_to_canonical_keys.get(req.key)
    +
    +            if canonical_key is not None:
    +                req.key = canonical_key
    +                dist = self.by_key.get(canonical_key)
    +
    +        if dist is not None and dist not in req:
    +            # XXX add more info
    +            raise VersionConflict(dist, req)
    +        return dist
    +
    +    def iter_entry_points(self, group: str, name: str | None = None):
    +        """Yield entry point objects from `group` matching `name`
    +
    +        If `name` is None, yields all entry points in `group` from all
    +        distributions in the working set, otherwise only ones matching
    +        both `group` and `name` are yielded (in distribution order).
    +        """
    +        return (
    +            entry
    +            for dist in self
    +            for entry in dist.get_entry_map(group).values()
    +            if name is None or name == entry.name
    +        )
    +
    +    def run_script(self, requires: str, script_name: str):
    +        """Locate distribution for `requires` and run `script_name` script"""
    +        ns = sys._getframe(1).f_globals
    +        name = ns['__name__']
    +        ns.clear()
    +        ns['__name__'] = name
    +        self.require(requires)[0].run_script(script_name, ns)
    +
    +    def __iter__(self) -> Iterator[Distribution]:
    +        """Yield distributions for non-duplicate projects in the working set
    +
    +        The yield order is the order in which the items' path entries were
    +        added to the working set.
    +        """
    +        seen = set()
    +        for item in self.entries:
    +            if item not in self.entry_keys:
    +                # workaround a cache issue
    +                continue
    +
    +            for key in self.entry_keys[item]:
    +                if key not in seen:
    +                    seen.add(key)
    +                    yield self.by_key[key]
    +
    +    def add(
    +        self,
    +        dist: Distribution,
    +        entry: str | None = None,
    +        insert: bool = True,
    +        replace: bool = False,
    +    ):
    +        """Add `dist` to working set, associated with `entry`
    +
    +        If `entry` is unspecified, it defaults to the ``.location`` of `dist`.
    +        On exit from this routine, `entry` is added to the end of the working
    +        set's ``.entries`` (if it wasn't already present).
    +
    +        `dist` is only added to the working set if it's for a project that
    +        doesn't already have a distribution in the set, unless `replace=True`.
    +        If it's added, any callbacks registered with the ``subscribe()`` method
    +        will be called.
    +        """
    +        if insert:
    +            dist.insert_on(self.entries, entry, replace=replace)
    +
    +        if entry is None:
    +            entry = dist.location
    +        keys = self.entry_keys.setdefault(entry, [])
    +        keys2 = self.entry_keys.setdefault(dist.location, [])
    +        if not replace and dist.key in self.by_key:
    +            # ignore hidden distros
    +            return
    +
    +        self.by_key[dist.key] = dist
    +        normalized_name = _packaging_utils.canonicalize_name(dist.key)
    +        self.normalized_to_canonical_keys[normalized_name] = dist.key
    +        if dist.key not in keys:
    +            keys.append(dist.key)
    +        if dist.key not in keys2:
    +            keys2.append(dist.key)
    +        self._added_new(dist)
    +
    +    @overload
    +    def resolve(
    +        self,
    +        requirements: Iterable[Requirement],
    +        env: Environment | None,
    +        installer: _InstallerTypeT[_DistributionT],
    +        replace_conflicting: bool = False,
    +        extras: tuple[str, ...] | None = None,
    +    ) -> list[_DistributionT]: ...
    +    @overload
    +    def resolve(
    +        self,
    +        requirements: Iterable[Requirement],
    +        env: Environment | None = None,
    +        *,
    +        installer: _InstallerTypeT[_DistributionT],
    +        replace_conflicting: bool = False,
    +        extras: tuple[str, ...] | None = None,
    +    ) -> list[_DistributionT]: ...
    +    @overload
    +    def resolve(
    +        self,
    +        requirements: Iterable[Requirement],
    +        env: Environment | None = None,
    +        installer: _InstallerType | None = None,
    +        replace_conflicting: bool = False,
    +        extras: tuple[str, ...] | None = None,
    +    ) -> list[Distribution]: ...
    +    def resolve(
    +        self,
    +        requirements: Iterable[Requirement],
    +        env: Environment | None = None,
    +        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
    +        replace_conflicting: bool = False,
    +        extras: tuple[str, ...] | None = None,
    +    ) -> list[Distribution] | list[_DistributionT]:
    +        """List all distributions needed to (recursively) meet `requirements`
    +
    +        `requirements` must be a sequence of ``Requirement`` objects.  `env`,
    +        if supplied, should be an ``Environment`` instance.  If
    +        not supplied, it defaults to all distributions available within any
    +        entry or distribution in the working set.  `installer`, if supplied,
    +        will be invoked with each requirement that cannot be met by an
    +        already-installed distribution; it should return a ``Distribution`` or
    +        ``None``.
    +
    +        Unless `replace_conflicting=True`, raises a VersionConflict exception
    +        if
    +        any requirements are found on the path that have the correct name but
    +        the wrong version.  Otherwise, if an `installer` is supplied it will be
    +        invoked to obtain the correct version of the requirement and activate
    +        it.
    +
    +        `extras` is a list of the extras to be used with these requirements.
    +        This is important because extra requirements may look like `my_req;
    +        extra = "my_extra"`, which would otherwise be interpreted as a purely
    +        optional requirement.  Instead, we want to be able to assert that these
    +        requirements are truly required.
    +        """
    +
    +        # set up the stack
    +        requirements = list(requirements)[::-1]
    +        # set of processed requirements
    +        processed = set()
    +        # key -> dist
    +        best = {}
    +        to_activate = []
    +
    +        req_extras = _ReqExtras()
    +
    +        # Mapping of requirement to set of distributions that required it;
    +        # useful for reporting info about conflicts.
    +        required_by = collections.defaultdict(set)
    +
    +        while requirements:
    +            # process dependencies breadth-first
    +            req = requirements.pop(0)
    +            if req in processed:
    +                # Ignore cyclic or redundant dependencies
    +                continue
    +
    +            if not req_extras.markers_pass(req, extras):
    +                continue
    +
    +            dist = self._resolve_dist(
    +                req, best, replace_conflicting, env, installer, required_by, to_activate
    +            )
    +
    +            # push the new requirements onto the stack
    +            new_requirements = dist.requires(req.extras)[::-1]
    +            requirements.extend(new_requirements)
    +
    +            # Register the new requirements needed by req
    +            for new_requirement in new_requirements:
    +                required_by[new_requirement].add(req.project_name)
    +                req_extras[new_requirement] = req.extras
    +
    +            processed.add(req)
    +
    +        # return list of distros to activate
    +        return to_activate
    +
    +    def _resolve_dist(
    +        self, req, best, replace_conflicting, env, installer, required_by, to_activate
    +    ) -> Distribution:
    +        dist = best.get(req.key)
    +        if dist is None:
    +            # Find the best distribution and add it to the map
    +            dist = self.by_key.get(req.key)
    +            if dist is None or (dist not in req and replace_conflicting):
    +                ws = self
    +                if env is None:
    +                    if dist is None:
    +                        env = Environment(self.entries)
    +                    else:
    +                        # Use an empty environment and workingset to avoid
    +                        # any further conflicts with the conflicting
    +                        # distribution
    +                        env = Environment([])
    +                        ws = WorkingSet([])
    +                dist = best[req.key] = env.best_match(
    +                    req, ws, installer, replace_conflicting=replace_conflicting
    +                )
    +                if dist is None:
    +                    requirers = required_by.get(req, None)
    +                    raise DistributionNotFound(req, requirers)
    +            to_activate.append(dist)
    +        if dist not in req:
    +            # Oops, the "best" so far conflicts with a dependency
    +            dependent_req = required_by[req]
    +            raise VersionConflict(dist, req).with_context(dependent_req)
    +        return dist
    +
    +    @overload
    +    def find_plugins(
    +        self,
    +        plugin_env: Environment,
    +        full_env: Environment | None,
    +        installer: _InstallerTypeT[_DistributionT],
    +        fallback: bool = True,
    +    ) -> tuple[list[_DistributionT], dict[Distribution, Exception]]: ...
    +    @overload
    +    def find_plugins(
    +        self,
    +        plugin_env: Environment,
    +        full_env: Environment | None = None,
    +        *,
    +        installer: _InstallerTypeT[_DistributionT],
    +        fallback: bool = True,
    +    ) -> tuple[list[_DistributionT], dict[Distribution, Exception]]: ...
    +    @overload
    +    def find_plugins(
    +        self,
    +        plugin_env: Environment,
    +        full_env: Environment | None = None,
    +        installer: _InstallerType | None = None,
    +        fallback: bool = True,
    +    ) -> tuple[list[Distribution], dict[Distribution, Exception]]: ...
    +    def find_plugins(
    +        self,
    +        plugin_env: Environment,
    +        full_env: Environment | None = None,
    +        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
    +        fallback: bool = True,
    +    ) -> tuple[
    +        list[Distribution] | list[_DistributionT],
    +        dict[Distribution, Exception],
    +    ]:
    +        """Find all activatable distributions in `plugin_env`
    +
    +        Example usage::
    +
    +            distributions, errors = working_set.find_plugins(
    +                Environment(plugin_dirlist)
    +            )
    +            # add plugins+libs to sys.path
    +            map(working_set.add, distributions)
    +            # display errors
    +            print('Could not load', errors)
    +
    +        The `plugin_env` should be an ``Environment`` instance that contains
    +        only distributions that are in the project's "plugin directory" or
    +        directories. The `full_env`, if supplied, should be an ``Environment``
    +        contains all currently-available distributions.  If `full_env` is not
    +        supplied, one is created automatically from the ``WorkingSet`` this
    +        method is called on, which will typically mean that every directory on
    +        ``sys.path`` will be scanned for distributions.
    +
    +        `installer` is a standard installer callback as used by the
    +        ``resolve()`` method. The `fallback` flag indicates whether we should
    +        attempt to resolve older versions of a plugin if the newest version
    +        cannot be resolved.
    +
    +        This method returns a 2-tuple: (`distributions`, `error_info`), where
    +        `distributions` is a list of the distributions found in `plugin_env`
    +        that were loadable, along with any other distributions that are needed
    +        to resolve their dependencies.  `error_info` is a dictionary mapping
    +        unloadable plugin distributions to an exception instance describing the
    +        error that occurred. Usually this will be a ``DistributionNotFound`` or
    +        ``VersionConflict`` instance.
    +        """
    +
    +        plugin_projects = list(plugin_env)
    +        # scan project names in alphabetic order
    +        plugin_projects.sort()
    +
    +        error_info: dict[Distribution, Exception] = {}
    +        distributions: dict[Distribution, Exception | None] = {}
    +
    +        if full_env is None:
    +            env = Environment(self.entries)
    +            env += plugin_env
    +        else:
    +            env = full_env + plugin_env
    +
    +        shadow_set = self.__class__([])
    +        # put all our entries in shadow_set
    +        list(map(shadow_set.add, self))
    +
    +        for project_name in plugin_projects:
    +            for dist in plugin_env[project_name]:
    +                req = [dist.as_requirement()]
    +
    +                try:
    +                    resolvees = shadow_set.resolve(req, env, installer)
    +
    +                except ResolutionError as v:
    +                    # save error info
    +                    error_info[dist] = v
    +                    if fallback:
    +                        # try the next older version of project
    +                        continue
    +                    else:
    +                        # give up on this project, keep going
    +                        break
    +
    +                else:
    +                    list(map(shadow_set.add, resolvees))
    +                    distributions.update(dict.fromkeys(resolvees))
    +
    +                    # success, no need to try any more versions of this project
    +                    break
    +
    +        sorted_distributions = list(distributions)
    +        sorted_distributions.sort()
    +
    +        return sorted_distributions, error_info
    +
    +    def require(self, *requirements: _NestedStr):
    +        """Ensure that distributions matching `requirements` are activated
    +
    +        `requirements` must be a string or a (possibly-nested) sequence
    +        thereof, specifying the distributions and versions required.  The
    +        return value is a sequence of the distributions that needed to be
    +        activated to fulfill the requirements; all relevant distributions are
    +        included, even if they were already activated in this working set.
    +        """
    +        needed = self.resolve(parse_requirements(requirements))
    +
    +        for dist in needed:
    +            self.add(dist)
    +
    +        return needed
    +
    +    def subscribe(
    +        self, callback: Callable[[Distribution], object], existing: bool = True
    +    ):
    +        """Invoke `callback` for all distributions
    +
    +        If `existing=True` (default),
    +        call on all existing ones, as well.
    +        """
    +        if callback in self.callbacks:
    +            return
    +        self.callbacks.append(callback)
    +        if not existing:
    +            return
    +        for dist in self:
    +            callback(dist)
    +
    +    def _added_new(self, dist):
    +        for callback in self.callbacks:
    +            callback(dist)
    +
    +    def __getstate__(self):
    +        return (
    +            self.entries[:],
    +            self.entry_keys.copy(),
    +            self.by_key.copy(),
    +            self.normalized_to_canonical_keys.copy(),
    +            self.callbacks[:],
    +        )
    +
    +    def __setstate__(self, e_k_b_n_c):
    +        entries, keys, by_key, normalized_to_canonical_keys, callbacks = e_k_b_n_c
    +        self.entries = entries[:]
    +        self.entry_keys = keys.copy()
    +        self.by_key = by_key.copy()
    +        self.normalized_to_canonical_keys = normalized_to_canonical_keys.copy()
    +        self.callbacks = callbacks[:]
    +
    +
    +class _ReqExtras(Dict["Requirement", Tuple[str, ...]]):
    +    """
    +    Map each requirement to the extras that demanded it.
    +    """
    +
    +    def markers_pass(self, req: Requirement, extras: tuple[str, ...] | None = None):
    +        """
    +        Evaluate markers for req against each extra that
    +        demanded it.
    +
    +        Return False if the req has a marker and fails
    +        evaluation. Otherwise, return True.
    +        """
    +        extra_evals = (
    +            req.marker.evaluate({'extra': extra})
    +            for extra in self.get(req, ()) + (extras or (None,))
    +        )
    +        return not req.marker or any(extra_evals)
    +
    +
    +class Environment:
    +    """Searchable snapshot of distributions on a search path"""
    +
    +    def __init__(
    +        self,
    +        search_path: Iterable[str] | None = None,
    +        platform: str | None = get_supported_platform(),
    +        python: str | None = PY_MAJOR,
    +    ):
    +        """Snapshot distributions available on a search path
    +
    +        Any distributions found on `search_path` are added to the environment.
    +        `search_path` should be a sequence of ``sys.path`` items.  If not
    +        supplied, ``sys.path`` is used.
    +
    +        `platform` is an optional string specifying the name of the platform
    +        that platform-specific distributions must be compatible with.  If
    +        unspecified, it defaults to the current platform.  `python` is an
    +        optional string naming the desired version of Python (e.g. ``'3.6'``);
    +        it defaults to the current version.
    +
    +        You may explicitly set `platform` (and/or `python`) to ``None`` if you
    +        wish to map *all* distributions, not just those compatible with the
    +        running platform or Python version.
    +        """
    +        self._distmap = {}
    +        self.platform = platform
    +        self.python = python
    +        self.scan(search_path)
    +
    +    def can_add(self, dist: Distribution):
    +        """Is distribution `dist` acceptable for this environment?
    +
    +        The distribution must match the platform and python version
    +        requirements specified when this environment was created, or False
    +        is returned.
    +        """
    +        py_compat = (
    +            self.python is None
    +            or dist.py_version is None
    +            or dist.py_version == self.python
    +        )
    +        return py_compat and compatible_platforms(dist.platform, self.platform)
    +
    +    def remove(self, dist: Distribution):
    +        """Remove `dist` from the environment"""
    +        self._distmap[dist.key].remove(dist)
    +
    +    def scan(self, search_path: Iterable[str] | None = None):
    +        """Scan `search_path` for distributions usable in this environment
    +
    +        Any distributions found are added to the environment.
    +        `search_path` should be a sequence of ``sys.path`` items.  If not
    +        supplied, ``sys.path`` is used.  Only distributions conforming to
    +        the platform/python version defined at initialization are added.
    +        """
    +        if search_path is None:
    +            search_path = sys.path
    +
    +        for item in search_path:
    +            for dist in find_distributions(item):
    +                self.add(dist)
    +
    +    def __getitem__(self, project_name: str) -> list[Distribution]:
    +        """Return a newest-to-oldest list of distributions for `project_name`
    +
    +        Uses case-insensitive `project_name` comparison, assuming all the
    +        project's distributions use their project's name converted to all
    +        lowercase as their key.
    +
    +        """
    +        distribution_key = project_name.lower()
    +        return self._distmap.get(distribution_key, [])
    +
    +    def add(self, dist: Distribution):
    +        """Add `dist` if we ``can_add()`` it and it has not already been added"""
    +        if self.can_add(dist) and dist.has_version():
    +            dists = self._distmap.setdefault(dist.key, [])
    +            if dist not in dists:
    +                dists.append(dist)
    +                dists.sort(key=operator.attrgetter('hashcmp'), reverse=True)
    +
    +    @overload
    +    def best_match(
    +        self,
    +        req: Requirement,
    +        working_set: WorkingSet,
    +        installer: _InstallerTypeT[_DistributionT],
    +        replace_conflicting: bool = False,
    +    ) -> _DistributionT: ...
    +    @overload
    +    def best_match(
    +        self,
    +        req: Requirement,
    +        working_set: WorkingSet,
    +        installer: _InstallerType | None = None,
    +        replace_conflicting: bool = False,
    +    ) -> Distribution | None: ...
    +    def best_match(
    +        self,
    +        req: Requirement,
    +        working_set: WorkingSet,
    +        installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
    +        replace_conflicting: bool = False,
    +    ) -> Distribution | None:
    +        """Find distribution best matching `req` and usable on `working_set`
    +
    +        This calls the ``find(req)`` method of the `working_set` to see if a
    +        suitable distribution is already active.  (This may raise
    +        ``VersionConflict`` if an unsuitable version of the project is already
    +        active in the specified `working_set`.)  If a suitable distribution
    +        isn't active, this method returns the newest distribution in the
    +        environment that meets the ``Requirement`` in `req`.  If no suitable
    +        distribution is found, and `installer` is supplied, then the result of
    +        calling the environment's ``obtain(req, installer)`` method will be
    +        returned.
    +        """
    +        try:
    +            dist = working_set.find(req)
    +        except VersionConflict:
    +            if not replace_conflicting:
    +                raise
    +            dist = None
    +        if dist is not None:
    +            return dist
    +        for dist in self[req.key]:
    +            if dist in req:
    +                return dist
    +        # try to download/install
    +        return self.obtain(req, installer)
    +
    +    @overload
    +    def obtain(
    +        self,
    +        requirement: Requirement,
    +        installer: _InstallerTypeT[_DistributionT],
    +    ) -> _DistributionT: ...
    +    @overload
    +    def obtain(
    +        self,
    +        requirement: Requirement,
    +        installer: Callable[[Requirement], None] | None = None,
    +    ) -> None: ...
    +    @overload
    +    def obtain(
    +        self,
    +        requirement: Requirement,
    +        installer: _InstallerType | None = None,
    +    ) -> Distribution | None: ...
    +    def obtain(
    +        self,
    +        requirement: Requirement,
    +        installer: Callable[[Requirement], None]
    +        | _InstallerType
    +        | None
    +        | _InstallerTypeT[_DistributionT] = None,
    +    ) -> Distribution | None:
    +        """Obtain a distribution matching `requirement` (e.g. via download)
    +
    +        Obtain a distro that matches requirement (e.g. via download).  In the
    +        base ``Environment`` class, this routine just returns
    +        ``installer(requirement)``, unless `installer` is None, in which case
    +        None is returned instead.  This method is a hook that allows subclasses
    +        to attempt other ways of obtaining a distribution before falling back
    +        to the `installer` argument."""
    +        return installer(requirement) if installer else None
    +
    +    def __iter__(self) -> Iterator[str]:
    +        """Yield the unique project names of the available distributions"""
    +        for key in self._distmap.keys():
    +            if self[key]:
    +                yield key
    +
    +    def __iadd__(self, other: Distribution | Environment):
    +        """In-place addition of a distribution or environment"""
    +        if isinstance(other, Distribution):
    +            self.add(other)
    +        elif isinstance(other, Environment):
    +            for project in other:
    +                for dist in other[project]:
    +                    self.add(dist)
    +        else:
    +            raise TypeError("Can't add %r to environment" % (other,))
    +        return self
    +
    +    def __add__(self, other: Distribution | Environment):
    +        """Add an environment or distribution to an environment"""
    +        new = self.__class__([], platform=None, python=None)
    +        for env in self, other:
    +            new += env
    +        return new
    +
    +
    +# XXX backward compatibility
    +AvailableDistributions = Environment
    +
    +
    +class ExtractionError(RuntimeError):
    +    """An error occurred extracting a resource
    +
    +    The following attributes are available from instances of this exception:
    +
    +    manager
    +        The resource manager that raised this exception
    +
    +    cache_path
    +        The base directory for resource extraction
    +
    +    original_error
    +        The exception instance that caused extraction to fail
    +    """
    +
    +    manager: ResourceManager
    +    cache_path: str
    +    original_error: BaseException | None
    +
    +
    +class ResourceManager:
    +    """Manage resource extraction and packages"""
    +
    +    extraction_path: str | None = None
    +
    +    def __init__(self):
    +        self.cached_files = {}
    +
    +    def resource_exists(self, package_or_requirement: _PkgReqType, resource_name: str):
    +        """Does the named resource exist?"""
    +        return get_provider(package_or_requirement).has_resource(resource_name)
    +
    +    def resource_isdir(self, package_or_requirement: _PkgReqType, resource_name: str):
    +        """Is the named resource an existing directory?"""
    +        return get_provider(package_or_requirement).resource_isdir(resource_name)
    +
    +    def resource_filename(
    +        self, package_or_requirement: _PkgReqType, resource_name: str
    +    ):
    +        """Return a true filesystem path for specified resource"""
    +        return get_provider(package_or_requirement).get_resource_filename(
    +            self, resource_name
    +        )
    +
    +    def resource_stream(self, package_or_requirement: _PkgReqType, resource_name: str):
    +        """Return a readable file-like object for specified resource"""
    +        return get_provider(package_or_requirement).get_resource_stream(
    +            self, resource_name
    +        )
    +
    +    def resource_string(
    +        self, package_or_requirement: _PkgReqType, resource_name: str
    +    ) -> bytes:
    +        """Return specified resource as :obj:`bytes`"""
    +        return get_provider(package_or_requirement).get_resource_string(
    +            self, resource_name
    +        )
    +
    +    def resource_listdir(self, package_or_requirement: _PkgReqType, resource_name: str):
    +        """List the contents of the named resource directory"""
    +        return get_provider(package_or_requirement).resource_listdir(resource_name)
    +
    +    def extraction_error(self) -> NoReturn:
    +        """Give an error message for problems extracting file(s)"""
    +
    +        old_exc = sys.exc_info()[1]
    +        cache_path = self.extraction_path or get_default_cache()
    +
    +        tmpl = textwrap.dedent(
    +            """
    +            Can't extract file(s) to egg cache
    +
    +            The following error occurred while trying to extract file(s)
    +            to the Python egg cache:
    +
    +              {old_exc}
    +
    +            The Python egg cache directory is currently set to:
    +
    +              {cache_path}
    +
    +            Perhaps your account does not have write access to this directory?
    +            You can change the cache directory by setting the PYTHON_EGG_CACHE
    +            environment variable to point to an accessible directory.
    +            """
    +        ).lstrip()
    +        err = ExtractionError(tmpl.format(**locals()))
    +        err.manager = self
    +        err.cache_path = cache_path
    +        err.original_error = old_exc
    +        raise err
    +
    +    def get_cache_path(self, archive_name: str, names: Iterable[StrPath] = ()):
    +        """Return absolute location in cache for `archive_name` and `names`
    +
    +        The parent directory of the resulting path will be created if it does
    +        not already exist.  `archive_name` should be the base filename of the
    +        enclosing egg (which may not be the name of the enclosing zipfile!),
    +        including its ".egg" extension.  `names`, if provided, should be a
    +        sequence of path name parts "under" the egg's extraction location.
    +
    +        This method should only be called by resource providers that need to
    +        obtain an extraction location, and only for names they intend to
    +        extract, as it tracks the generated names for possible cleanup later.
    +        """
    +        extract_path = self.extraction_path or get_default_cache()
    +        target_path = os.path.join(extract_path, archive_name + '-tmp', *names)
    +        try:
    +            _bypass_ensure_directory(target_path)
    +        except Exception:
    +            self.extraction_error()
    +
    +        self._warn_unsafe_extraction_path(extract_path)
    +
    +        self.cached_files[target_path] = True
    +        return target_path
    +
    +    @staticmethod
    +    def _warn_unsafe_extraction_path(path):
    +        """
    +        If the default extraction path is overridden and set to an insecure
    +        location, such as /tmp, it opens up an opportunity for an attacker to
    +        replace an extracted file with an unauthorized payload. Warn the user
    +        if a known insecure location is used.
    +
    +        See Distribute #375 for more details.
    +        """
    +        if os.name == 'nt' and not path.startswith(os.environ['windir']):
    +            # On Windows, permissions are generally restrictive by default
    +            #  and temp directories are not writable by other users, so
    +            #  bypass the warning.
    +            return
    +        mode = os.stat(path).st_mode
    +        if mode & stat.S_IWOTH or mode & stat.S_IWGRP:
    +            msg = (
    +                "Extraction path is writable by group/others "
    +                "and vulnerable to attack when "
    +                "used with get_resource_filename ({path}). "
    +                "Consider a more secure "
    +                "location (set with .set_extraction_path or the "
    +                "PYTHON_EGG_CACHE environment variable)."
    +            ).format(**locals())
    +            warnings.warn(msg, UserWarning)
    +
    +    def postprocess(self, tempname: StrOrBytesPath, filename: StrOrBytesPath):
    +        """Perform any platform-specific postprocessing of `tempname`
    +
    +        This is where Mac header rewrites should be done; other platforms don't
    +        have anything special they should do.
    +
    +        Resource providers should call this method ONLY after successfully
    +        extracting a compressed resource.  They must NOT call it on resources
    +        that are already in the filesystem.
    +
    +        `tempname` is the current (temporary) name of the file, and `filename`
    +        is the name it will be renamed to by the caller after this routine
    +        returns.
    +        """
    +
    +        if os.name == 'posix':
    +            # Make the resource executable
    +            mode = ((os.stat(tempname).st_mode) | 0o555) & 0o7777
    +            os.chmod(tempname, mode)
    +
    +    def set_extraction_path(self, path: str):
    +        """Set the base path where resources will be extracted to, if needed.
    +
    +        If you do not call this routine before any extractions take place, the
    +        path defaults to the return value of ``get_default_cache()``.  (Which
    +        is based on the ``PYTHON_EGG_CACHE`` environment variable, with various
    +        platform-specific fallbacks.  See that routine's documentation for more
    +        details.)
    +
    +        Resources are extracted to subdirectories of this path based upon
    +        information given by the ``IResourceProvider``.  You may set this to a
    +        temporary directory, but then you must call ``cleanup_resources()`` to
    +        delete the extracted files when done.  There is no guarantee that
    +        ``cleanup_resources()`` will be able to remove all extracted files.
    +
    +        (Note: you may not change the extraction path for a given resource
    +        manager once resources have been extracted, unless you first call
    +        ``cleanup_resources()``.)
    +        """
    +        if self.cached_files:
    +            raise ValueError("Can't change extraction path, files already extracted")
    +
    +        self.extraction_path = path
    +
    +    def cleanup_resources(self, force: bool = False) -> list[str]:
    +        """
    +        Delete all extracted resource files and directories, returning a list
    +        of the file and directory names that could not be successfully removed.
    +        This function does not have any concurrency protection, so it should
    +        generally only be called when the extraction path is a temporary
    +        directory exclusive to a single process.  This method is not
    +        automatically called; you must call it explicitly or register it as an
    +        ``atexit`` function if you wish to ensure cleanup of a temporary
    +        directory used for extractions.
    +        """
    +        # XXX
    +        return []
    +
    +
    +def get_default_cache() -> str:
    +    """
    +    Return the ``PYTHON_EGG_CACHE`` environment variable
    +    or a platform-relevant user cache dir for an app
    +    named "Python-Eggs".
    +    """
    +    return os.environ.get('PYTHON_EGG_CACHE') or _user_cache_dir(appname='Python-Eggs')
    +
    +
    +def safe_name(name: str):
    +    """Convert an arbitrary string to a standard distribution name
    +
    +    Any runs of non-alphanumeric/. characters are replaced with a single '-'.
    +    """
    +    return re.sub('[^A-Za-z0-9.]+', '-', name)
    +
    +
    +def safe_version(version: str):
    +    """
    +    Convert an arbitrary string to a standard version string
    +    """
    +    try:
    +        # normalize the version
    +        return str(_packaging_version.Version(version))
    +    except _packaging_version.InvalidVersion:
    +        version = version.replace(' ', '.')
    +        return re.sub('[^A-Za-z0-9.]+', '-', version)
    +
    +
    +def _forgiving_version(version):
    +    """Fallback when ``safe_version`` is not safe enough
    +    >>> parse_version(_forgiving_version('0.23ubuntu1'))
    +    
    +    >>> parse_version(_forgiving_version('0.23-'))
    +    
    +    >>> parse_version(_forgiving_version('0.-_'))
    +    
    +    >>> parse_version(_forgiving_version('42.+?1'))
    +    
    +    >>> parse_version(_forgiving_version('hello world'))
    +    
    +    """
    +    version = version.replace(' ', '.')
    +    match = _PEP440_FALLBACK.search(version)
    +    if match:
    +        safe = match["safe"]
    +        rest = version[len(safe) :]
    +    else:
    +        safe = "0"
    +        rest = version
    +    local = f"sanitized.{_safe_segment(rest)}".strip(".")
    +    return f"{safe}.dev0+{local}"
    +
    +
    +def _safe_segment(segment):
    +    """Convert an arbitrary string into a safe segment"""
    +    segment = re.sub('[^A-Za-z0-9.]+', '-', segment)
    +    segment = re.sub('-[^A-Za-z0-9]+', '-', segment)
    +    return re.sub(r'\.[^A-Za-z0-9]+', '.', segment).strip(".-")
    +
    +
    +def safe_extra(extra: str):
    +    """Convert an arbitrary string to a standard 'extra' name
    +
    +    Any runs of non-alphanumeric characters are replaced with a single '_',
    +    and the result is always lowercased.
    +    """
    +    return re.sub('[^A-Za-z0-9.-]+', '_', extra).lower()
    +
    +
    +def to_filename(name: str):
    +    """Convert a project or version name to its filename-escaped form
    +
    +    Any '-' characters are currently replaced with '_'.
    +    """
    +    return name.replace('-', '_')
    +
    +
    +def invalid_marker(text: str):
    +    """
    +    Validate text as a PEP 508 environment marker; return an exception
    +    if invalid or False otherwise.
    +    """
    +    try:
    +        evaluate_marker(text)
    +    except SyntaxError as e:
    +        e.filename = None
    +        e.lineno = None
    +        return e
    +    return False
    +
    +
    +def evaluate_marker(text: str, extra: str | None = None) -> bool:
    +    """
    +    Evaluate a PEP 508 environment marker.
    +    Return a boolean indicating the marker result in this environment.
    +    Raise SyntaxError if marker is invalid.
    +
    +    This implementation uses the 'pyparsing' module.
    +    """
    +    try:
    +        marker = _packaging_markers.Marker(text)
    +        return marker.evaluate()
    +    except _packaging_markers.InvalidMarker as e:
    +        raise SyntaxError(e) from e
    +
    +
    +class NullProvider:
    +    """Try to implement resources and metadata for arbitrary PEP 302 loaders"""
    +
    +    egg_name: str | None = None
    +    egg_info: str | None = None
    +    loader: _LoaderProtocol | None = None
    +
    +    def __init__(self, module: _ModuleLike):
    +        self.loader = getattr(module, '__loader__', None)
    +        self.module_path = os.path.dirname(getattr(module, '__file__', ''))
    +
    +    def get_resource_filename(self, manager: ResourceManager, resource_name: str):
    +        return self._fn(self.module_path, resource_name)
    +
    +    def get_resource_stream(self, manager: ResourceManager, resource_name: str):
    +        return io.BytesIO(self.get_resource_string(manager, resource_name))
    +
    +    def get_resource_string(
    +        self, manager: ResourceManager, resource_name: str
    +    ) -> bytes:
    +        return self._get(self._fn(self.module_path, resource_name))
    +
    +    def has_resource(self, resource_name: str):
    +        return self._has(self._fn(self.module_path, resource_name))
    +
    +    def _get_metadata_path(self, name):
    +        return self._fn(self.egg_info, name)
    +
    +    def has_metadata(self, name: str) -> bool:
    +        if not self.egg_info:
    +            return False
    +
    +        path = self._get_metadata_path(name)
    +        return self._has(path)
    +
    +    def get_metadata(self, name: str):
    +        if not self.egg_info:
    +            return ""
    +        path = self._get_metadata_path(name)
    +        value = self._get(path)
    +        try:
    +            return value.decode('utf-8')
    +        except UnicodeDecodeError as exc:
    +            # Include the path in the error message to simplify
    +            # troubleshooting, and without changing the exception type.
    +            exc.reason += ' in {} file at path: {}'.format(name, path)
    +            raise
    +
    +    def get_metadata_lines(self, name: str) -> Iterator[str]:
    +        return yield_lines(self.get_metadata(name))
    +
    +    def resource_isdir(self, resource_name: str):
    +        return self._isdir(self._fn(self.module_path, resource_name))
    +
    +    def metadata_isdir(self, name: str) -> bool:
    +        return bool(self.egg_info and self._isdir(self._fn(self.egg_info, name)))
    +
    +    def resource_listdir(self, resource_name: str):
    +        return self._listdir(self._fn(self.module_path, resource_name))
    +
    +    def metadata_listdir(self, name: str) -> list[str]:
    +        if self.egg_info:
    +            return self._listdir(self._fn(self.egg_info, name))
    +        return []
    +
    +    def run_script(self, script_name: str, namespace: dict[str, Any]):
    +        script = 'scripts/' + script_name
    +        if not self.has_metadata(script):
    +            raise ResolutionError(
    +                "Script {script!r} not found in metadata at {self.egg_info!r}".format(
    +                    **locals()
    +                ),
    +            )
    +
    +        script_text = self.get_metadata(script).replace('\r\n', '\n')
    +        script_text = script_text.replace('\r', '\n')
    +        script_filename = self._fn(self.egg_info, script)
    +        namespace['__file__'] = script_filename
    +        if os.path.exists(script_filename):
    +            source = _read_utf8_with_fallback(script_filename)
    +            code = compile(source, script_filename, 'exec')
    +            exec(code, namespace, namespace)
    +        else:
    +            from linecache import cache
    +
    +            cache[script_filename] = (
    +                len(script_text),
    +                0,
    +                script_text.split('\n'),
    +                script_filename,
    +            )
    +            script_code = compile(script_text, script_filename, 'exec')
    +            exec(script_code, namespace, namespace)
    +
    +    def _has(self, path) -> bool:
    +        raise NotImplementedError(
    +            "Can't perform this operation for unregistered loader type"
    +        )
    +
    +    def _isdir(self, path) -> bool:
    +        raise NotImplementedError(
    +            "Can't perform this operation for unregistered loader type"
    +        )
    +
    +    def _listdir(self, path) -> list[str]:
    +        raise NotImplementedError(
    +            "Can't perform this operation for unregistered loader type"
    +        )
    +
    +    def _fn(self, base: str | None, resource_name: str):
    +        if base is None:
    +            raise TypeError(
    +                "`base` parameter in `_fn` is `None`. Either override this method or check the parameter first."
    +            )
    +        self._validate_resource_path(resource_name)
    +        if resource_name:
    +            return os.path.join(base, *resource_name.split('/'))
    +        return base
    +
    +    @staticmethod
    +    def _validate_resource_path(path):
    +        """
    +        Validate the resource paths according to the docs.
    +        https://setuptools.pypa.io/en/latest/pkg_resources.html#basic-resource-access
    +
    +        >>> warned = getfixture('recwarn')
    +        >>> warnings.simplefilter('always')
    +        >>> vrp = NullProvider._validate_resource_path
    +        >>> vrp('foo/bar.txt')
    +        >>> bool(warned)
    +        False
    +        >>> vrp('../foo/bar.txt')
    +        >>> bool(warned)
    +        True
    +        >>> warned.clear()
    +        >>> vrp('/foo/bar.txt')
    +        >>> bool(warned)
    +        True
    +        >>> vrp('foo/../../bar.txt')
    +        >>> bool(warned)
    +        True
    +        >>> warned.clear()
    +        >>> vrp('foo/f../bar.txt')
    +        >>> bool(warned)
    +        False
    +
    +        Windows path separators are straight-up disallowed.
    +        >>> vrp(r'\\foo/bar.txt')
    +        Traceback (most recent call last):
    +        ...
    +        ValueError: Use of .. or absolute path in a resource path \
    +is not allowed.
    +
    +        >>> vrp(r'C:\\foo/bar.txt')
    +        Traceback (most recent call last):
    +        ...
    +        ValueError: Use of .. or absolute path in a resource path \
    +is not allowed.
    +
    +        Blank values are allowed
    +
    +        >>> vrp('')
    +        >>> bool(warned)
    +        False
    +
    +        Non-string values are not.
    +
    +        >>> vrp(None)
    +        Traceback (most recent call last):
    +        ...
    +        AttributeError: ...
    +        """
    +        invalid = (
    +            os.path.pardir in path.split(posixpath.sep)
    +            or posixpath.isabs(path)
    +            or ntpath.isabs(path)
    +            or path.startswith("\\")
    +        )
    +        if not invalid:
    +            return
    +
    +        msg = "Use of .. or absolute path in a resource path is not allowed."
    +
    +        # Aggressively disallow Windows absolute paths
    +        if (path.startswith("\\") or ntpath.isabs(path)) and not posixpath.isabs(path):
    +            raise ValueError(msg)
    +
    +        # for compatibility, warn; in future
    +        # raise ValueError(msg)
    +        issue_warning(
    +            msg[:-1] + " and will raise exceptions in a future release.",
    +            DeprecationWarning,
    +        )
    +
    +    def _get(self, path) -> bytes:
    +        if hasattr(self.loader, 'get_data') and self.loader:
    +            # Already checked get_data exists
    +            return self.loader.get_data(path)  # type: ignore[attr-defined]
    +        raise NotImplementedError(
    +            "Can't perform this operation for loaders without 'get_data()'"
    +        )
    +
    +
    +register_loader_type(object, NullProvider)
    +
    +
    +def _parents(path):
    +    """
    +    yield all parents of path including path
    +    """
    +    last = None
    +    while path != last:
    +        yield path
    +        last = path
    +        path, _ = os.path.split(path)
    +
    +
    +class EggProvider(NullProvider):
    +    """Provider based on a virtual filesystem"""
    +
    +    def __init__(self, module: _ModuleLike):
    +        super().__init__(module)
    +        self._setup_prefix()
    +
    +    def _setup_prefix(self):
    +        # Assume that metadata may be nested inside a "basket"
    +        # of multiple eggs and use module_path instead of .archive.
    +        eggs = filter(_is_egg_path, _parents(self.module_path))
    +        egg = next(eggs, None)
    +        egg and self._set_egg(egg)
    +
    +    def _set_egg(self, path: str):
    +        self.egg_name = os.path.basename(path)
    +        self.egg_info = os.path.join(path, 'EGG-INFO')
    +        self.egg_root = path
    +
    +
    +class DefaultProvider(EggProvider):
    +    """Provides access to package resources in the filesystem"""
    +
    +    def _has(self, path) -> bool:
    +        return os.path.exists(path)
    +
    +    def _isdir(self, path) -> bool:
    +        return os.path.isdir(path)
    +
    +    def _listdir(self, path):
    +        return os.listdir(path)
    +
    +    def get_resource_stream(self, manager: object, resource_name: str):
    +        return open(self._fn(self.module_path, resource_name), 'rb')
    +
    +    def _get(self, path) -> bytes:
    +        with open(path, 'rb') as stream:
    +            return stream.read()
    +
    +    @classmethod
    +    def _register(cls):
    +        loader_names = (
    +            'SourceFileLoader',
    +            'SourcelessFileLoader',
    +        )
    +        for name in loader_names:
    +            loader_cls = getattr(importlib.machinery, name, type(None))
    +            register_loader_type(loader_cls, cls)
    +
    +
    +DefaultProvider._register()
    +
    +
    +class EmptyProvider(NullProvider):
    +    """Provider that returns nothing for all requests"""
    +
    +    # A special case, we don't want all Providers inheriting from NullProvider to have a potentially None module_path
    +    module_path: str | None = None  # type: ignore[assignment]
    +
    +    _isdir = _has = lambda self, path: False
    +
    +    def _get(self, path) -> bytes:
    +        return b''
    +
    +    def _listdir(self, path):
    +        return []
    +
    +    def __init__(self):
    +        pass
    +
    +
    +empty_provider = EmptyProvider()
    +
    +
    +class ZipManifests(Dict[str, "MemoizedZipManifests.manifest_mod"]):
    +    """
    +    zip manifest builder
    +    """
    +
    +    # `path` could be `StrPath | IO[bytes]` but that violates the LSP for `MemoizedZipManifests.load`
    +    @classmethod
    +    def build(cls, path: str):
    +        """
    +        Build a dictionary similar to the zipimport directory
    +        caches, except instead of tuples, store ZipInfo objects.
    +
    +        Use a platform-specific path separator (os.sep) for the path keys
    +        for compatibility with pypy on Windows.
    +        """
    +        with zipfile.ZipFile(path) as zfile:
    +            items = (
    +                (
    +                    name.replace('/', os.sep),
    +                    zfile.getinfo(name),
    +                )
    +                for name in zfile.namelist()
    +            )
    +            return dict(items)
    +
    +    load = build
    +
    +
    +class MemoizedZipManifests(ZipManifests):
    +    """
    +    Memoized zipfile manifests.
    +    """
    +
    +    class manifest_mod(NamedTuple):
    +        manifest: dict[str, zipfile.ZipInfo]
    +        mtime: float
    +
    +    def load(self, path: str) -> dict[str, zipfile.ZipInfo]:  # type: ignore[override] # ZipManifests.load is a classmethod
    +        """
    +        Load a manifest at path or return a suitable manifest already loaded.
    +        """
    +        path = os.path.normpath(path)
    +        mtime = os.stat(path).st_mtime
    +
    +        if path not in self or self[path].mtime != mtime:
    +            manifest = self.build(path)
    +            self[path] = self.manifest_mod(manifest, mtime)
    +
    +        return self[path].manifest
    +
    +
    +class ZipProvider(EggProvider):
    +    """Resource support for zips and eggs"""
    +
    +    eagers: list[str] | None = None
    +    _zip_manifests = MemoizedZipManifests()
    +    # ZipProvider's loader should always be a zipimporter or equivalent
    +    loader: zipimport.zipimporter
    +
    +    def __init__(self, module: _ZipLoaderModule):
    +        super().__init__(module)
    +        self.zip_pre = self.loader.archive + os.sep
    +
    +    def _zipinfo_name(self, fspath):
    +        # Convert a virtual filename (full path to file) into a zipfile subpath
    +        # usable with the zipimport directory cache for our target archive
    +        fspath = fspath.rstrip(os.sep)
    +        if fspath == self.loader.archive:
    +            return ''
    +        if fspath.startswith(self.zip_pre):
    +            return fspath[len(self.zip_pre) :]
    +        raise AssertionError("%s is not a subpath of %s" % (fspath, self.zip_pre))
    +
    +    def _parts(self, zip_path):
    +        # Convert a zipfile subpath into an egg-relative path part list.
    +        # pseudo-fs path
    +        fspath = self.zip_pre + zip_path
    +        if fspath.startswith(self.egg_root + os.sep):
    +            return fspath[len(self.egg_root) + 1 :].split(os.sep)
    +        raise AssertionError("%s is not a subpath of %s" % (fspath, self.egg_root))
    +
    +    @property
    +    def zipinfo(self):
    +        return self._zip_manifests.load(self.loader.archive)
    +
    +    def get_resource_filename(self, manager: ResourceManager, resource_name: str):
    +        if not self.egg_name:
    +            raise NotImplementedError(
    +                "resource_filename() only supported for .egg, not .zip"
    +            )
    +        # no need to lock for extraction, since we use temp names
    +        zip_path = self._resource_to_zip(resource_name)
    +        eagers = self._get_eager_resources()
    +        if '/'.join(self._parts(zip_path)) in eagers:
    +            for name in eagers:
    +                self._extract_resource(manager, self._eager_to_zip(name))
    +        return self._extract_resource(manager, zip_path)
    +
    +    @staticmethod
    +    def _get_date_and_size(zip_stat):
    +        size = zip_stat.file_size
    +        # ymdhms+wday, yday, dst
    +        date_time = zip_stat.date_time + (0, 0, -1)
    +        # 1980 offset already done
    +        timestamp = time.mktime(date_time)
    +        return timestamp, size
    +
    +    # FIXME: 'ZipProvider._extract_resource' is too complex (12)
    +    def _extract_resource(self, manager: ResourceManager, zip_path) -> str:  # noqa: C901
    +        if zip_path in self._index():
    +            for name in self._index()[zip_path]:
    +                last = self._extract_resource(manager, os.path.join(zip_path, name))
    +            # return the extracted directory name
    +            return os.path.dirname(last)
    +
    +        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
    +
    +        if not WRITE_SUPPORT:
    +            raise OSError(
    +                '"os.rename" and "os.unlink" are not supported on this platform'
    +            )
    +        try:
    +            if not self.egg_name:
    +                raise OSError(
    +                    '"egg_name" is empty. This likely means no egg could be found from the "module_path".'
    +                )
    +            real_path = manager.get_cache_path(self.egg_name, self._parts(zip_path))
    +
    +            if self._is_current(real_path, zip_path):
    +                return real_path
    +
    +            outf, tmpnam = _mkstemp(
    +                ".$extract",
    +                dir=os.path.dirname(real_path),
    +            )
    +            os.write(outf, self.loader.get_data(zip_path))
    +            os.close(outf)
    +            utime(tmpnam, (timestamp, timestamp))
    +            manager.postprocess(tmpnam, real_path)
    +
    +            try:
    +                rename(tmpnam, real_path)
    +
    +            except OSError:
    +                if os.path.isfile(real_path):
    +                    if self._is_current(real_path, zip_path):
    +                        # the file became current since it was checked above,
    +                        #  so proceed.
    +                        return real_path
    +                    # Windows, del old file and retry
    +                    elif os.name == 'nt':
    +                        unlink(real_path)
    +                        rename(tmpnam, real_path)
    +                        return real_path
    +                raise
    +
    +        except OSError:
    +            # report a user-friendly error
    +            manager.extraction_error()
    +
    +        return real_path
    +
    +    def _is_current(self, file_path, zip_path):
    +        """
    +        Return True if the file_path is current for this zip_path
    +        """
    +        timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
    +        if not os.path.isfile(file_path):
    +            return False
    +        stat = os.stat(file_path)
    +        if stat.st_size != size or stat.st_mtime != timestamp:
    +            return False
    +        # check that the contents match
    +        zip_contents = self.loader.get_data(zip_path)
    +        with open(file_path, 'rb') as f:
    +            file_contents = f.read()
    +        return zip_contents == file_contents
    +
    +    def _get_eager_resources(self):
    +        if self.eagers is None:
    +            eagers = []
    +            for name in ('native_libs.txt', 'eager_resources.txt'):
    +                if self.has_metadata(name):
    +                    eagers.extend(self.get_metadata_lines(name))
    +            self.eagers = eagers
    +        return self.eagers
    +
    +    def _index(self):
    +        try:
    +            return self._dirindex
    +        except AttributeError:
    +            ind = {}
    +            for path in self.zipinfo:
    +                parts = path.split(os.sep)
    +                while parts:
    +                    parent = os.sep.join(parts[:-1])
    +                    if parent in ind:
    +                        ind[parent].append(parts[-1])
    +                        break
    +                    else:
    +                        ind[parent] = [parts.pop()]
    +            self._dirindex = ind
    +            return ind
    +
    +    def _has(self, fspath) -> bool:
    +        zip_path = self._zipinfo_name(fspath)
    +        return zip_path in self.zipinfo or zip_path in self._index()
    +
    +    def _isdir(self, fspath) -> bool:
    +        return self._zipinfo_name(fspath) in self._index()
    +
    +    def _listdir(self, fspath):
    +        return list(self._index().get(self._zipinfo_name(fspath), ()))
    +
    +    def _eager_to_zip(self, resource_name: str):
    +        return self._zipinfo_name(self._fn(self.egg_root, resource_name))
    +
    +    def _resource_to_zip(self, resource_name: str):
    +        return self._zipinfo_name(self._fn(self.module_path, resource_name))
    +
    +
    +register_loader_type(zipimport.zipimporter, ZipProvider)
    +
    +
    +class FileMetadata(EmptyProvider):
    +    """Metadata handler for standalone PKG-INFO files
    +
    +    Usage::
    +
    +        metadata = FileMetadata("/path/to/PKG-INFO")
    +
    +    This provider rejects all data and metadata requests except for PKG-INFO,
    +    which is treated as existing, and will be the contents of the file at
    +    the provided location.
    +    """
    +
    +    def __init__(self, path: StrPath):
    +        self.path = path
    +
    +    def _get_metadata_path(self, name):
    +        return self.path
    +
    +    def has_metadata(self, name: str) -> bool:
    +        return name == 'PKG-INFO' and os.path.isfile(self.path)
    +
    +    def get_metadata(self, name: str):
    +        if name != 'PKG-INFO':
    +            raise KeyError("No metadata except PKG-INFO is available")
    +
    +        with open(self.path, encoding='utf-8', errors="replace") as f:
    +            metadata = f.read()
    +        self._warn_on_replacement(metadata)
    +        return metadata
    +
    +    def _warn_on_replacement(self, metadata):
    +        replacement_char = '�'
    +        if replacement_char in metadata:
    +            tmpl = "{self.path} could not be properly decoded in UTF-8"
    +            msg = tmpl.format(**locals())
    +            warnings.warn(msg)
    +
    +    def get_metadata_lines(self, name: str) -> Iterator[str]:
    +        return yield_lines(self.get_metadata(name))
    +
    +
    +class PathMetadata(DefaultProvider):
    +    """Metadata provider for egg directories
    +
    +    Usage::
    +
    +        # Development eggs:
    +
    +        egg_info = "/path/to/PackageName.egg-info"
    +        base_dir = os.path.dirname(egg_info)
    +        metadata = PathMetadata(base_dir, egg_info)
    +        dist_name = os.path.splitext(os.path.basename(egg_info))[0]
    +        dist = Distribution(basedir, project_name=dist_name, metadata=metadata)
    +
    +        # Unpacked egg directories:
    +
    +        egg_path = "/path/to/PackageName-ver-pyver-etc.egg"
    +        metadata = PathMetadata(egg_path, os.path.join(egg_path,'EGG-INFO'))
    +        dist = Distribution.from_filename(egg_path, metadata=metadata)
    +    """
    +
    +    def __init__(self, path: str, egg_info: str):
    +        self.module_path = path
    +        self.egg_info = egg_info
    +
    +
    +class EggMetadata(ZipProvider):
    +    """Metadata provider for .egg files"""
    +
    +    def __init__(self, importer: zipimport.zipimporter):
    +        """Create a metadata provider from a zipimporter"""
    +
    +        self.zip_pre = importer.archive + os.sep
    +        self.loader = importer
    +        if importer.prefix:
    +            self.module_path = os.path.join(importer.archive, importer.prefix)
    +        else:
    +            self.module_path = importer.archive
    +        self._setup_prefix()
    +
    +
    +_distribution_finders: dict[type, _DistFinderType[Any]] = _declare_state(
    +    'dict', '_distribution_finders', {}
    +)
    +
    +
    +def register_finder(importer_type: type[_T], distribution_finder: _DistFinderType[_T]):
    +    """Register `distribution_finder` to find distributions in sys.path items
    +
    +    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
    +    handler), and `distribution_finder` is a callable that, passed a path
    +    item and the importer instance, yields ``Distribution`` instances found on
    +    that path item.  See ``pkg_resources.find_on_path`` for an example."""
    +    _distribution_finders[importer_type] = distribution_finder
    +
    +
    +def find_distributions(path_item: str, only: bool = False):
    +    """Yield distributions accessible via `path_item`"""
    +    importer = get_importer(path_item)
    +    finder = _find_adapter(_distribution_finders, importer)
    +    return finder(importer, path_item, only)
    +
    +
    +def find_eggs_in_zip(
    +    importer: zipimport.zipimporter, path_item: str, only: bool = False
    +) -> Iterator[Distribution]:
    +    """
    +    Find eggs in zip files; possibly multiple nested eggs.
    +    """
    +    if importer.archive.endswith('.whl'):
    +        # wheels are not supported with this finder
    +        # they don't have PKG-INFO metadata, and won't ever contain eggs
    +        return
    +    metadata = EggMetadata(importer)
    +    if metadata.has_metadata('PKG-INFO'):
    +        yield Distribution.from_filename(path_item, metadata=metadata)
    +    if only:
    +        # don't yield nested distros
    +        return
    +    for subitem in metadata.resource_listdir(''):
    +        if _is_egg_path(subitem):
    +            subpath = os.path.join(path_item, subitem)
    +            dists = find_eggs_in_zip(zipimport.zipimporter(subpath), subpath)
    +            yield from dists
    +        elif subitem.lower().endswith(('.dist-info', '.egg-info')):
    +            subpath = os.path.join(path_item, subitem)
    +            submeta = EggMetadata(zipimport.zipimporter(subpath))
    +            submeta.egg_info = subpath
    +            yield Distribution.from_location(path_item, subitem, submeta)
    +
    +
    +register_finder(zipimport.zipimporter, find_eggs_in_zip)
    +
    +
    +def find_nothing(
    +    importer: object | None, path_item: str | None, only: bool | None = False
    +):
    +    return ()
    +
    +
    +register_finder(object, find_nothing)
    +
    +
    +def find_on_path(importer: object | None, path_item, only=False):
    +    """Yield distributions accessible on a sys.path directory"""
    +    path_item = _normalize_cached(path_item)
    +
    +    if _is_unpacked_egg(path_item):
    +        yield Distribution.from_filename(
    +            path_item,
    +            metadata=PathMetadata(path_item, os.path.join(path_item, 'EGG-INFO')),
    +        )
    +        return
    +
    +    entries = (os.path.join(path_item, child) for child in safe_listdir(path_item))
    +
    +    # scan for .egg and .egg-info in directory
    +    for entry in sorted(entries):
    +        fullpath = os.path.join(path_item, entry)
    +        factory = dist_factory(path_item, entry, only)
    +        yield from factory(fullpath)
    +
    +
    +def dist_factory(path_item, entry, only):
    +    """Return a dist_factory for the given entry."""
    +    lower = entry.lower()
    +    is_egg_info = lower.endswith('.egg-info')
    +    is_dist_info = lower.endswith('.dist-info') and os.path.isdir(
    +        os.path.join(path_item, entry)
    +    )
    +    is_meta = is_egg_info or is_dist_info
    +    return (
    +        distributions_from_metadata
    +        if is_meta
    +        else find_distributions
    +        if not only and _is_egg_path(entry)
    +        else resolve_egg_link
    +        if not only and lower.endswith('.egg-link')
    +        else NoDists()
    +    )
    +
    +
    +class NoDists:
    +    """
    +    >>> bool(NoDists())
    +    False
    +
    +    >>> list(NoDists()('anything'))
    +    []
    +    """
    +
    +    def __bool__(self):
    +        return False
    +
    +    def __call__(self, fullpath):
    +        return iter(())
    +
    +
    +def safe_listdir(path: StrOrBytesPath):
    +    """
    +    Attempt to list contents of path, but suppress some exceptions.
    +    """
    +    try:
    +        return os.listdir(path)
    +    except (PermissionError, NotADirectoryError):
    +        pass
    +    except OSError as e:
    +        # Ignore the directory if does not exist, not a directory or
    +        # permission denied
    +        if e.errno not in (errno.ENOTDIR, errno.EACCES, errno.ENOENT):
    +            raise
    +    return ()
    +
    +
    +def distributions_from_metadata(path: str):
    +    root = os.path.dirname(path)
    +    if os.path.isdir(path):
    +        if len(os.listdir(path)) == 0:
    +            # empty metadata dir; skip
    +            return
    +        metadata: _MetadataType = PathMetadata(root, path)
    +    else:
    +        metadata = FileMetadata(path)
    +    entry = os.path.basename(path)
    +    yield Distribution.from_location(
    +        root,
    +        entry,
    +        metadata,
    +        precedence=DEVELOP_DIST,
    +    )
    +
    +
    +def non_empty_lines(path):
    +    """
    +    Yield non-empty lines from file at path
    +    """
    +    for line in _read_utf8_with_fallback(path).splitlines():
    +        line = line.strip()
    +        if line:
    +            yield line
    +
    +
    +def resolve_egg_link(path):
    +    """
    +    Given a path to an .egg-link, resolve distributions
    +    present in the referenced path.
    +    """
    +    referenced_paths = non_empty_lines(path)
    +    resolved_paths = (
    +        os.path.join(os.path.dirname(path), ref) for ref in referenced_paths
    +    )
    +    dist_groups = map(find_distributions, resolved_paths)
    +    return next(dist_groups, ())
    +
    +
    +if hasattr(pkgutil, 'ImpImporter'):
    +    register_finder(pkgutil.ImpImporter, find_on_path)
    +
    +register_finder(importlib.machinery.FileFinder, find_on_path)
    +
    +_namespace_handlers: dict[type, _NSHandlerType[Any]] = _declare_state(
    +    'dict', '_namespace_handlers', {}
    +)
    +_namespace_packages: dict[str | None, list[str]] = _declare_state(
    +    'dict', '_namespace_packages', {}
    +)
    +
    +
    +def register_namespace_handler(
    +    importer_type: type[_T], namespace_handler: _NSHandlerType[_T]
    +):
    +    """Register `namespace_handler` to declare namespace packages
    +
    +    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
    +    handler), and `namespace_handler` is a callable like this::
    +
    +        def namespace_handler(importer, path_entry, moduleName, module):
    +            # return a path_entry to use for child packages
    +
    +    Namespace handlers are only called if the importer object has already
    +    agreed that it can handle the relevant path item, and they should only
    +    return a subpath if the module __path__ does not already contain an
    +    equivalent subpath.  For an example namespace handler, see
    +    ``pkg_resources.file_ns_handler``.
    +    """
    +    _namespace_handlers[importer_type] = namespace_handler
    +
    +
    +def _handle_ns(packageName, path_item):
    +    """Ensure that named package includes a subpath of path_item (if needed)"""
    +
    +    importer = get_importer(path_item)
    +    if importer is None:
    +        return None
    +
    +    # use find_spec (PEP 451) and fall-back to find_module (PEP 302)
    +    try:
    +        spec = importer.find_spec(packageName)
    +    except AttributeError:
    +        # capture warnings due to #1111
    +        with warnings.catch_warnings():
    +            warnings.simplefilter("ignore")
    +            loader = importer.find_module(packageName)
    +    else:
    +        loader = spec.loader if spec else None
    +
    +    if loader is None:
    +        return None
    +    module = sys.modules.get(packageName)
    +    if module is None:
    +        module = sys.modules[packageName] = types.ModuleType(packageName)
    +        module.__path__ = []
    +        _set_parent_ns(packageName)
    +    elif not hasattr(module, '__path__'):
    +        raise TypeError("Not a package:", packageName)
    +    handler = _find_adapter(_namespace_handlers, importer)
    +    subpath = handler(importer, path_item, packageName, module)
    +    if subpath is not None:
    +        path = module.__path__
    +        path.append(subpath)
    +        importlib.import_module(packageName)
    +        _rebuild_mod_path(path, packageName, module)
    +    return subpath
    +
    +
    +def _rebuild_mod_path(orig_path, package_name, module: types.ModuleType):
    +    """
    +    Rebuild module.__path__ ensuring that all entries are ordered
    +    corresponding to their sys.path order
    +    """
    +    sys_path = [_normalize_cached(p) for p in sys.path]
    +
    +    def safe_sys_path_index(entry):
    +        """
    +        Workaround for #520 and #513.
    +        """
    +        try:
    +            return sys_path.index(entry)
    +        except ValueError:
    +            return float('inf')
    +
    +    def position_in_sys_path(path):
    +        """
    +        Return the ordinal of the path based on its position in sys.path
    +        """
    +        path_parts = path.split(os.sep)
    +        module_parts = package_name.count('.') + 1
    +        parts = path_parts[:-module_parts]
    +        return safe_sys_path_index(_normalize_cached(os.sep.join(parts)))
    +
    +    new_path = sorted(orig_path, key=position_in_sys_path)
    +    new_path = [_normalize_cached(p) for p in new_path]
    +
    +    if isinstance(module.__path__, list):
    +        module.__path__[:] = new_path
    +    else:
    +        module.__path__ = new_path
    +
    +
    +def declare_namespace(packageName: str):
    +    """Declare that package 'packageName' is a namespace package"""
    +
    +    msg = (
    +        f"Deprecated call to `pkg_resources.declare_namespace({packageName!r})`.\n"
    +        "Implementing implicit namespace packages (as specified in PEP 420) "
    +        "is preferred to `pkg_resources.declare_namespace`. "
    +        "See https://setuptools.pypa.io/en/latest/references/"
    +        "keywords.html#keyword-namespace-packages"
    +    )
    +    warnings.warn(msg, DeprecationWarning, stacklevel=2)
    +
    +    _imp.acquire_lock()
    +    try:
    +        if packageName in _namespace_packages:
    +            return
    +
    +        path: MutableSequence[str] = sys.path
    +        parent, _, _ = packageName.rpartition('.')
    +
    +        if parent:
    +            declare_namespace(parent)
    +            if parent not in _namespace_packages:
    +                __import__(parent)
    +            try:
    +                path = sys.modules[parent].__path__
    +            except AttributeError as e:
    +                raise TypeError("Not a package:", parent) from e
    +
    +        # Track what packages are namespaces, so when new path items are added,
    +        # they can be updated
    +        _namespace_packages.setdefault(parent or None, []).append(packageName)
    +        _namespace_packages.setdefault(packageName, [])
    +
    +        for path_item in path:
    +            # Ensure all the parent's path items are reflected in the child,
    +            # if they apply
    +            _handle_ns(packageName, path_item)
    +
    +    finally:
    +        _imp.release_lock()
    +
    +
    +def fixup_namespace_packages(path_item: str, parent: str | None = None):
    +    """Ensure that previously-declared namespace packages include path_item"""
    +    _imp.acquire_lock()
    +    try:
    +        for package in _namespace_packages.get(parent, ()):
    +            subpath = _handle_ns(package, path_item)
    +            if subpath:
    +                fixup_namespace_packages(subpath, package)
    +    finally:
    +        _imp.release_lock()
    +
    +
    +def file_ns_handler(
    +    importer: object,
    +    path_item: StrPath,
    +    packageName: str,
    +    module: types.ModuleType,
    +):
    +    """Compute an ns-package subpath for a filesystem or zipfile importer"""
    +
    +    subpath = os.path.join(path_item, packageName.split('.')[-1])
    +    normalized = _normalize_cached(subpath)
    +    for item in module.__path__:
    +        if _normalize_cached(item) == normalized:
    +            break
    +    else:
    +        # Only return the path if it's not already there
    +        return subpath
    +
    +
    +if hasattr(pkgutil, 'ImpImporter'):
    +    register_namespace_handler(pkgutil.ImpImporter, file_ns_handler)
    +
    +register_namespace_handler(zipimport.zipimporter, file_ns_handler)
    +register_namespace_handler(importlib.machinery.FileFinder, file_ns_handler)
    +
    +
    +def null_ns_handler(
    +    importer: object,
    +    path_item: str | None,
    +    packageName: str | None,
    +    module: _ModuleLike | None,
    +):
    +    return None
    +
    +
    +register_namespace_handler(object, null_ns_handler)
    +
    +
    +@overload
    +def normalize_path(filename: StrPath) -> str: ...
    +@overload
    +def normalize_path(filename: BytesPath) -> bytes: ...
    +def normalize_path(filename: StrOrBytesPath):
    +    """Normalize a file/dir name for comparison purposes"""
    +    return os.path.normcase(os.path.realpath(os.path.normpath(_cygwin_patch(filename))))
    +
    +
    +def _cygwin_patch(filename: StrOrBytesPath):  # pragma: nocover
    +    """
    +    Contrary to POSIX 2008, on Cygwin, getcwd (3) contains
    +    symlink components. Using
    +    os.path.abspath() works around this limitation. A fix in os.getcwd()
    +    would probably better, in Cygwin even more so, except
    +    that this seems to be by design...
    +    """
    +    return os.path.abspath(filename) if sys.platform == 'cygwin' else filename
    +
    +
    +if TYPE_CHECKING:
    +    # https://github.com/python/mypy/issues/16261
    +    # https://github.com/python/typeshed/issues/6347
    +    @overload
    +    def _normalize_cached(filename: StrPath) -> str: ...
    +    @overload
    +    def _normalize_cached(filename: BytesPath) -> bytes: ...
    +    def _normalize_cached(filename: StrOrBytesPath) -> str | bytes: ...
    +else:
    +
    +    @functools.lru_cache(maxsize=None)
    +    def _normalize_cached(filename):
    +        return normalize_path(filename)
    +
    +
    +def _is_egg_path(path):
    +    """
    +    Determine if given path appears to be an egg.
    +    """
    +    return _is_zip_egg(path) or _is_unpacked_egg(path)
    +
    +
    +def _is_zip_egg(path):
    +    return (
    +        path.lower().endswith('.egg')
    +        and os.path.isfile(path)
    +        and zipfile.is_zipfile(path)
    +    )
    +
    +
    +def _is_unpacked_egg(path):
    +    """
    +    Determine if given path appears to be an unpacked egg.
    +    """
    +    return path.lower().endswith('.egg') and os.path.isfile(
    +        os.path.join(path, 'EGG-INFO', 'PKG-INFO')
    +    )
    +
    +
    +def _set_parent_ns(packageName):
    +    parts = packageName.split('.')
    +    name = parts.pop()
    +    if parts:
    +        parent = '.'.join(parts)
    +        setattr(sys.modules[parent], name, sys.modules[packageName])
    +
    +
    +MODULE = re.compile(r"\w+(\.\w+)*$").match
    +EGG_NAME = re.compile(
    +    r"""
    +    (?P[^-]+) (
    +        -(?P[^-]+) (
    +            -py(?P[^-]+) (
    +                -(?P.+)
    +            )?
    +        )?
    +    )?
    +    """,
    +    re.VERBOSE | re.IGNORECASE,
    +).match
    +
    +
    +class EntryPoint:
    +    """Object representing an advertised importable object"""
    +
    +    def __init__(
    +        self,
    +        name: str,
    +        module_name: str,
    +        attrs: Iterable[str] = (),
    +        extras: Iterable[str] = (),
    +        dist: Distribution | None = None,
    +    ):
    +        if not MODULE(module_name):
    +            raise ValueError("Invalid module name", module_name)
    +        self.name = name
    +        self.module_name = module_name
    +        self.attrs = tuple(attrs)
    +        self.extras = tuple(extras)
    +        self.dist = dist
    +
    +    def __str__(self):
    +        s = "%s = %s" % (self.name, self.module_name)
    +        if self.attrs:
    +            s += ':' + '.'.join(self.attrs)
    +        if self.extras:
    +            s += ' [%s]' % ','.join(self.extras)
    +        return s
    +
    +    def __repr__(self):
    +        return "EntryPoint.parse(%r)" % str(self)
    +
    +    @overload
    +    def load(
    +        self,
    +        require: Literal[True] = True,
    +        env: Environment | None = None,
    +        installer: _InstallerType | None = None,
    +    ) -> _ResolvedEntryPoint: ...
    +    @overload
    +    def load(
    +        self,
    +        require: Literal[False],
    +        *args: Any,
    +        **kwargs: Any,
    +    ) -> _ResolvedEntryPoint: ...
    +    def load(
    +        self,
    +        require: bool = True,
    +        *args: Environment | _InstallerType | None,
    +        **kwargs: Environment | _InstallerType | None,
    +    ) -> _ResolvedEntryPoint:
    +        """
    +        Require packages for this EntryPoint, then resolve it.
    +        """
    +        if not require or args or kwargs:
    +            warnings.warn(
    +                "Parameters to load are deprecated.  Call .resolve and "
    +                ".require separately.",
    +                PkgResourcesDeprecationWarning,
    +                stacklevel=2,
    +            )
    +        if require:
    +            # We could pass `env` and `installer` directly,
    +            # but keeping `*args` and `**kwargs` for backwards compatibility
    +            self.require(*args, **kwargs)  # type: ignore
    +        return self.resolve()
    +
    +    def resolve(self) -> _ResolvedEntryPoint:
    +        """
    +        Resolve the entry point from its module and attrs.
    +        """
    +        module = __import__(self.module_name, fromlist=['__name__'], level=0)
    +        try:
    +            return functools.reduce(getattr, self.attrs, module)
    +        except AttributeError as exc:
    +            raise ImportError(str(exc)) from exc
    +
    +    def require(
    +        self,
    +        env: Environment | None = None,
    +        installer: _InstallerType | None = None,
    +    ):
    +        if not self.dist:
    +            error_cls = UnknownExtra if self.extras else AttributeError
    +            raise error_cls("Can't require() without a distribution", self)
    +
    +        # Get the requirements for this entry point with all its extras and
    +        # then resolve them. We have to pass `extras` along when resolving so
    +        # that the working set knows what extras we want. Otherwise, for
    +        # dist-info distributions, the working set will assume that the
    +        # requirements for that extra are purely optional and skip over them.
    +        reqs = self.dist.requires(self.extras)
    +        items = working_set.resolve(reqs, env, installer, extras=self.extras)
    +        list(map(working_set.add, items))
    +
    +    pattern = re.compile(
    +        r'\s*'
    +        r'(?P.+?)\s*'
    +        r'=\s*'
    +        r'(?P[\w.]+)\s*'
    +        r'(:\s*(?P[\w.]+))?\s*'
    +        r'(?P\[.*\])?\s*$'
    +    )
    +
    +    @classmethod
    +    def parse(cls, src: str, dist: Distribution | None = None):
    +        """Parse a single entry point from string `src`
    +
    +        Entry point syntax follows the form::
    +
    +            name = some.module:some.attr [extra1, extra2]
    +
    +        The entry name and module name are required, but the ``:attrs`` and
    +        ``[extras]`` parts are optional
    +        """
    +        m = cls.pattern.match(src)
    +        if not m:
    +            msg = "EntryPoint must be in 'name=module:attrs [extras]' format"
    +            raise ValueError(msg, src)
    +        res = m.groupdict()
    +        extras = cls._parse_extras(res['extras'])
    +        attrs = res['attr'].split('.') if res['attr'] else ()
    +        return cls(res['name'], res['module'], attrs, extras, dist)
    +
    +    @classmethod
    +    def _parse_extras(cls, extras_spec):
    +        if not extras_spec:
    +            return ()
    +        req = Requirement.parse('x' + extras_spec)
    +        if req.specs:
    +            raise ValueError
    +        return req.extras
    +
    +    @classmethod
    +    def parse_group(
    +        cls,
    +        group: str,
    +        lines: _NestedStr,
    +        dist: Distribution | None = None,
    +    ):
    +        """Parse an entry point group"""
    +        if not MODULE(group):
    +            raise ValueError("Invalid group name", group)
    +        this: dict[str, Self] = {}
    +        for line in yield_lines(lines):
    +            ep = cls.parse(line, dist)
    +            if ep.name in this:
    +                raise ValueError("Duplicate entry point", group, ep.name)
    +            this[ep.name] = ep
    +        return this
    +
    +    @classmethod
    +    def parse_map(
    +        cls,
    +        data: str | Iterable[str] | dict[str, str | Iterable[str]],
    +        dist: Distribution | None = None,
    +    ):
    +        """Parse a map of entry point groups"""
    +        _data: Iterable[tuple[str | None, str | Iterable[str]]]
    +        if isinstance(data, dict):
    +            _data = data.items()
    +        else:
    +            _data = split_sections(data)
    +        maps: dict[str, dict[str, Self]] = {}
    +        for group, lines in _data:
    +            if group is None:
    +                if not lines:
    +                    continue
    +                raise ValueError("Entry points must be listed in groups")
    +            group = group.strip()
    +            if group in maps:
    +                raise ValueError("Duplicate group name", group)
    +            maps[group] = cls.parse_group(group, lines, dist)
    +        return maps
    +
    +
    +def _version_from_file(lines):
    +    """
    +    Given an iterable of lines from a Metadata file, return
    +    the value of the Version field, if present, or None otherwise.
    +    """
    +
    +    def is_version_line(line):
    +        return line.lower().startswith('version:')
    +
    +    version_lines = filter(is_version_line, lines)
    +    line = next(iter(version_lines), '')
    +    _, _, value = line.partition(':')
    +    return safe_version(value.strip()) or None
    +
    +
    +class Distribution:
    +    """Wrap an actual or potential sys.path entry w/metadata"""
    +
    +    PKG_INFO = 'PKG-INFO'
    +
    +    def __init__(
    +        self,
    +        location: str | None = None,
    +        metadata: _MetadataType = None,
    +        project_name: str | None = None,
    +        version: str | None = None,
    +        py_version: str | None = PY_MAJOR,
    +        platform: str | None = None,
    +        precedence: int = EGG_DIST,
    +    ):
    +        self.project_name = safe_name(project_name or 'Unknown')
    +        if version is not None:
    +            self._version = safe_version(version)
    +        self.py_version = py_version
    +        self.platform = platform
    +        self.location = location
    +        self.precedence = precedence
    +        self._provider = metadata or empty_provider
    +
    +    @classmethod
    +    def from_location(
    +        cls,
    +        location: str,
    +        basename: StrPath,
    +        metadata: _MetadataType = None,
    +        **kw: int,  # We could set `precedence` explicitly, but keeping this as `**kw` for full backwards and subclassing compatibility
    +    ) -> Distribution:
    +        project_name, version, py_version, platform = [None] * 4
    +        basename, ext = os.path.splitext(basename)
    +        if ext.lower() in _distributionImpl:
    +            cls = _distributionImpl[ext.lower()]
    +
    +            match = EGG_NAME(basename)
    +            if match:
    +                project_name, version, py_version, platform = match.group(
    +                    'name', 'ver', 'pyver', 'plat'
    +                )
    +        return cls(
    +            location,
    +            metadata,
    +            project_name=project_name,
    +            version=version,
    +            py_version=py_version,
    +            platform=platform,
    +            **kw,
    +        )._reload_version()
    +
    +    def _reload_version(self):
    +        return self
    +
    +    @property
    +    def hashcmp(self):
    +        return (
    +            self._forgiving_parsed_version,
    +            self.precedence,
    +            self.key,
    +            self.location,
    +            self.py_version or '',
    +            self.platform or '',
    +        )
    +
    +    def __hash__(self):
    +        return hash(self.hashcmp)
    +
    +    def __lt__(self, other: Distribution):
    +        return self.hashcmp < other.hashcmp
    +
    +    def __le__(self, other: Distribution):
    +        return self.hashcmp <= other.hashcmp
    +
    +    def __gt__(self, other: Distribution):
    +        return self.hashcmp > other.hashcmp
    +
    +    def __ge__(self, other: Distribution):
    +        return self.hashcmp >= other.hashcmp
    +
    +    def __eq__(self, other: object):
    +        if not isinstance(other, self.__class__):
    +            # It's not a Distribution, so they are not equal
    +            return False
    +        return self.hashcmp == other.hashcmp
    +
    +    def __ne__(self, other: object):
    +        return not self == other
    +
    +    # These properties have to be lazy so that we don't have to load any
    +    # metadata until/unless it's actually needed.  (i.e., some distributions
    +    # may not know their name or version without loading PKG-INFO)
    +
    +    @property
    +    def key(self):
    +        try:
    +            return self._key
    +        except AttributeError:
    +            self._key = key = self.project_name.lower()
    +            return key
    +
    +    @property
    +    def parsed_version(self):
    +        if not hasattr(self, "_parsed_version"):
    +            try:
    +                self._parsed_version = parse_version(self.version)
    +            except _packaging_version.InvalidVersion as ex:
    +                info = f"(package: {self.project_name})"
    +                if hasattr(ex, "add_note"):
    +                    ex.add_note(info)  # PEP 678
    +                    raise
    +                raise _packaging_version.InvalidVersion(f"{str(ex)} {info}") from None
    +
    +        return self._parsed_version
    +
    +    @property
    +    def _forgiving_parsed_version(self):
    +        try:
    +            return self.parsed_version
    +        except _packaging_version.InvalidVersion as ex:
    +            self._parsed_version = parse_version(_forgiving_version(self.version))
    +
    +            notes = "\n".join(getattr(ex, "__notes__", []))  # PEP 678
    +            msg = f"""!!\n\n
    +            *************************************************************************
    +            {str(ex)}\n{notes}
    +
    +            This is a long overdue deprecation.
    +            For the time being, `pkg_resources` will use `{self._parsed_version}`
    +            as a replacement to avoid breaking existing environments,
    +            but no future compatibility is guaranteed.
    +
    +            If you maintain package {self.project_name} you should implement
    +            the relevant changes to adequate the project to PEP 440 immediately.
    +            *************************************************************************
    +            \n\n!!
    +            """
    +            warnings.warn(msg, DeprecationWarning)
    +
    +            return self._parsed_version
    +
    +    @property
    +    def version(self):
    +        try:
    +            return self._version
    +        except AttributeError as e:
    +            version = self._get_version()
    +            if version is None:
    +                path = self._get_metadata_path_for_display(self.PKG_INFO)
    +                msg = ("Missing 'Version:' header and/or {} file at path: {}").format(
    +                    self.PKG_INFO, path
    +                )
    +                raise ValueError(msg, self) from e
    +
    +            return version
    +
    +    @property
    +    def _dep_map(self):
    +        """
    +        A map of extra to its list of (direct) requirements
    +        for this distribution, including the null extra.
    +        """
    +        try:
    +            return self.__dep_map
    +        except AttributeError:
    +            self.__dep_map = self._filter_extras(self._build_dep_map())
    +        return self.__dep_map
    +
    +    @staticmethod
    +    def _filter_extras(dm: dict[str | None, list[Requirement]]):
    +        """
    +        Given a mapping of extras to dependencies, strip off
    +        environment markers and filter out any dependencies
    +        not matching the markers.
    +        """
    +        for extra in list(filter(None, dm)):
    +            new_extra: str | None = extra
    +            reqs = dm.pop(extra)
    +            new_extra, _, marker = extra.partition(':')
    +            fails_marker = marker and (
    +                invalid_marker(marker) or not evaluate_marker(marker)
    +            )
    +            if fails_marker:
    +                reqs = []
    +            new_extra = safe_extra(new_extra) or None
    +
    +            dm.setdefault(new_extra, []).extend(reqs)
    +        return dm
    +
    +    def _build_dep_map(self):
    +        dm = {}
    +        for name in 'requires.txt', 'depends.txt':
    +            for extra, reqs in split_sections(self._get_metadata(name)):
    +                dm.setdefault(extra, []).extend(parse_requirements(reqs))
    +        return dm
    +
    +    def requires(self, extras: Iterable[str] = ()):
    +        """List of Requirements needed for this distro if `extras` are used"""
    +        dm = self._dep_map
    +        deps: list[Requirement] = []
    +        deps.extend(dm.get(None, ()))
    +        for ext in extras:
    +            try:
    +                deps.extend(dm[safe_extra(ext)])
    +            except KeyError as e:
    +                raise UnknownExtra(
    +                    "%s has no such extra feature %r" % (self, ext)
    +                ) from e
    +        return deps
    +
    +    def _get_metadata_path_for_display(self, name):
    +        """
    +        Return the path to the given metadata file, if available.
    +        """
    +        try:
    +            # We need to access _get_metadata_path() on the provider object
    +            # directly rather than through this class's __getattr__()
    +            # since _get_metadata_path() is marked private.
    +            path = self._provider._get_metadata_path(name)
    +
    +        # Handle exceptions e.g. in case the distribution's metadata
    +        # provider doesn't support _get_metadata_path().
    +        except Exception:
    +            return '[could not detect]'
    +
    +        return path
    +
    +    def _get_metadata(self, name):
    +        if self.has_metadata(name):
    +            yield from self.get_metadata_lines(name)
    +
    +    def _get_version(self):
    +        lines = self._get_metadata(self.PKG_INFO)
    +        return _version_from_file(lines)
    +
    +    def activate(self, path: list[str] | None = None, replace: bool = False):
    +        """Ensure distribution is importable on `path` (default=sys.path)"""
    +        if path is None:
    +            path = sys.path
    +        self.insert_on(path, replace=replace)
    +        if path is sys.path and self.location is not None:
    +            fixup_namespace_packages(self.location)
    +            for pkg in self._get_metadata('namespace_packages.txt'):
    +                if pkg in sys.modules:
    +                    declare_namespace(pkg)
    +
    +    def egg_name(self):
    +        """Return what this distribution's standard .egg filename should be"""
    +        filename = "%s-%s-py%s" % (
    +            to_filename(self.project_name),
    +            to_filename(self.version),
    +            self.py_version or PY_MAJOR,
    +        )
    +
    +        if self.platform:
    +            filename += '-' + self.platform
    +        return filename
    +
    +    def __repr__(self):
    +        if self.location:
    +            return "%s (%s)" % (self, self.location)
    +        else:
    +            return str(self)
    +
    +    def __str__(self):
    +        try:
    +            version = getattr(self, 'version', None)
    +        except ValueError:
    +            version = None
    +        version = version or "[unknown version]"
    +        return "%s %s" % (self.project_name, version)
    +
    +    def __getattr__(self, attr):
    +        """Delegate all unrecognized public attributes to .metadata provider"""
    +        if attr.startswith('_'):
    +            raise AttributeError(attr)
    +        return getattr(self._provider, attr)
    +
    +    def __dir__(self):
    +        return list(
    +            set(super().__dir__())
    +            | set(attr for attr in self._provider.__dir__() if not attr.startswith('_'))
    +        )
    +
    +    @classmethod
    +    def from_filename(
    +        cls,
    +        filename: StrPath,
    +        metadata: _MetadataType = None,
    +        **kw: int,  # We could set `precedence` explicitly, but keeping this as `**kw` for full backwards and subclassing compatibility
    +    ):
    +        return cls.from_location(
    +            _normalize_cached(filename), os.path.basename(filename), metadata, **kw
    +        )
    +
    +    def as_requirement(self):
    +        """Return a ``Requirement`` that matches this distribution exactly"""
    +        if isinstance(self.parsed_version, _packaging_version.Version):
    +            spec = "%s==%s" % (self.project_name, self.parsed_version)
    +        else:
    +            spec = "%s===%s" % (self.project_name, self.parsed_version)
    +
    +        return Requirement.parse(spec)
    +
    +    def load_entry_point(self, group: str, name: str) -> _ResolvedEntryPoint:
    +        """Return the `name` entry point of `group` or raise ImportError"""
    +        ep = self.get_entry_info(group, name)
    +        if ep is None:
    +            raise ImportError("Entry point %r not found" % ((group, name),))
    +        return ep.load()
    +
    +    @overload
    +    def get_entry_map(self, group: None = None) -> dict[str, dict[str, EntryPoint]]: ...
    +    @overload
    +    def get_entry_map(self, group: str) -> dict[str, EntryPoint]: ...
    +    def get_entry_map(self, group: str | None = None):
    +        """Return the entry point map for `group`, or the full entry map"""
    +        if not hasattr(self, "_ep_map"):
    +            self._ep_map = EntryPoint.parse_map(
    +                self._get_metadata('entry_points.txt'), self
    +            )
    +        if group is not None:
    +            return self._ep_map.get(group, {})
    +        return self._ep_map
    +
    +    def get_entry_info(self, group: str, name: str):
    +        """Return the EntryPoint object for `group`+`name`, or ``None``"""
    +        return self.get_entry_map(group).get(name)
    +
    +    # FIXME: 'Distribution.insert_on' is too complex (13)
    +    def insert_on(  # noqa: C901
    +        self,
    +        path: list[str],
    +        loc=None,
    +        replace: bool = False,
    +    ):
    +        """Ensure self.location is on path
    +
    +        If replace=False (default):
    +            - If location is already in path anywhere, do nothing.
    +            - Else:
    +              - If it's an egg and its parent directory is on path,
    +                insert just ahead of the parent.
    +              - Else: add to the end of path.
    +        If replace=True:
    +            - If location is already on path anywhere (not eggs)
    +              or higher priority than its parent (eggs)
    +              do nothing.
    +            - Else:
    +              - If it's an egg and its parent directory is on path,
    +                insert just ahead of the parent,
    +                removing any lower-priority entries.
    +              - Else: add it to the front of path.
    +        """
    +
    +        loc = loc or self.location
    +        if not loc:
    +            return
    +
    +        nloc = _normalize_cached(loc)
    +        bdir = os.path.dirname(nloc)
    +        npath = [(p and _normalize_cached(p) or p) for p in path]
    +
    +        for p, item in enumerate(npath):
    +            if item == nloc:
    +                if replace:
    +                    break
    +                else:
    +                    # don't modify path (even removing duplicates) if
    +                    # found and not replace
    +                    return
    +            elif item == bdir and self.precedence == EGG_DIST:
    +                # if it's an .egg, give it precedence over its directory
    +                # UNLESS it's already been added to sys.path and replace=False
    +                if (not replace) and nloc in npath[p:]:
    +                    return
    +                if path is sys.path:
    +                    self.check_version_conflict()
    +                path.insert(p, loc)
    +                npath.insert(p, nloc)
    +                break
    +        else:
    +            if path is sys.path:
    +                self.check_version_conflict()
    +            if replace:
    +                path.insert(0, loc)
    +            else:
    +                path.append(loc)
    +            return
    +
    +        # p is the spot where we found or inserted loc; now remove duplicates
    +        while True:
    +            try:
    +                np = npath.index(nloc, p + 1)
    +            except ValueError:
    +                break
    +            else:
    +                del npath[np], path[np]
    +                # ha!
    +                p = np
    +
    +        return
    +
    +    def check_version_conflict(self):
    +        if self.key == 'setuptools':
    +            # ignore the inevitable setuptools self-conflicts  :(
    +            return
    +
    +        nsp = dict.fromkeys(self._get_metadata('namespace_packages.txt'))
    +        loc = normalize_path(self.location)
    +        for modname in self._get_metadata('top_level.txt'):
    +            if (
    +                modname not in sys.modules
    +                or modname in nsp
    +                or modname in _namespace_packages
    +            ):
    +                continue
    +            if modname in ('pkg_resources', 'setuptools', 'site'):
    +                continue
    +            fn = getattr(sys.modules[modname], '__file__', None)
    +            if fn and (
    +                normalize_path(fn).startswith(loc) or fn.startswith(self.location)
    +            ):
    +                continue
    +            issue_warning(
    +                "Module %s was already imported from %s, but %s is being added"
    +                " to sys.path" % (modname, fn, self.location),
    +            )
    +
    +    def has_version(self):
    +        try:
    +            self.version
    +        except ValueError:
    +            issue_warning("Unbuilt egg for " + repr(self))
    +            return False
    +        except SystemError:
    +            # TODO: remove this except clause when python/cpython#103632 is fixed.
    +            return False
    +        return True
    +
    +    def clone(self, **kw: str | int | IResourceProvider | None):
    +        """Copy this distribution, substituting in any changed keyword args"""
    +        names = 'project_name version py_version platform location precedence'
    +        for attr in names.split():
    +            kw.setdefault(attr, getattr(self, attr, None))
    +        kw.setdefault('metadata', self._provider)
    +        # Unsafely unpacking. But keeping **kw for backwards and subclassing compatibility
    +        return self.__class__(**kw)  # type:ignore[arg-type]
    +
    +    @property
    +    def extras(self):
    +        return [dep for dep in self._dep_map if dep]
    +
    +
    +class EggInfoDistribution(Distribution):
    +    def _reload_version(self):
    +        """
    +        Packages installed by distutils (e.g. numpy or scipy),
    +        which uses an old safe_version, and so
    +        their version numbers can get mangled when
    +        converted to filenames (e.g., 1.11.0.dev0+2329eae to
    +        1.11.0.dev0_2329eae). These distributions will not be
    +        parsed properly
    +        downstream by Distribution and safe_version, so
    +        take an extra step and try to get the version number from
    +        the metadata file itself instead of the filename.
    +        """
    +        md_version = self._get_version()
    +        if md_version:
    +            self._version = md_version
    +        return self
    +
    +
    +class DistInfoDistribution(Distribution):
    +    """
    +    Wrap an actual or potential sys.path entry
    +    w/metadata, .dist-info style.
    +    """
    +
    +    PKG_INFO = 'METADATA'
    +    EQEQ = re.compile(r"([\(,])\s*(\d.*?)\s*([,\)])")
    +
    +    @property
    +    def _parsed_pkg_info(self):
    +        """Parse and cache metadata"""
    +        try:
    +            return self._pkg_info
    +        except AttributeError:
    +            metadata = self.get_metadata(self.PKG_INFO)
    +            self._pkg_info = email.parser.Parser().parsestr(metadata)
    +            return self._pkg_info
    +
    +    @property
    +    def _dep_map(self):
    +        try:
    +            return self.__dep_map
    +        except AttributeError:
    +            self.__dep_map = self._compute_dependencies()
    +            return self.__dep_map
    +
    +    def _compute_dependencies(self) -> dict[str | None, list[Requirement]]:
    +        """Recompute this distribution's dependencies."""
    +        self.__dep_map: dict[str | None, list[Requirement]] = {None: []}
    +
    +        reqs: list[Requirement] = []
    +        # Including any condition expressions
    +        for req in self._parsed_pkg_info.get_all('Requires-Dist') or []:
    +            reqs.extend(parse_requirements(req))
    +
    +        def reqs_for_extra(extra):
    +            for req in reqs:
    +                if not req.marker or req.marker.evaluate({'extra': extra}):
    +                    yield req
    +
    +        common = types.MappingProxyType(dict.fromkeys(reqs_for_extra(None)))
    +        self.__dep_map[None].extend(common)
    +
    +        for extra in self._parsed_pkg_info.get_all('Provides-Extra') or []:
    +            s_extra = safe_extra(extra.strip())
    +            self.__dep_map[s_extra] = [
    +                r for r in reqs_for_extra(extra) if r not in common
    +            ]
    +
    +        return self.__dep_map
    +
    +
    +_distributionImpl = {
    +    '.egg': Distribution,
    +    '.egg-info': EggInfoDistribution,
    +    '.dist-info': DistInfoDistribution,
    +}
    +
    +
    +def issue_warning(*args, **kw):
    +    level = 1
    +    g = globals()
    +    try:
    +        # find the first stack frame that is *not* code in
    +        # the pkg_resources module, to use for the warning
    +        while sys._getframe(level).f_globals is g:
    +            level += 1
    +    except ValueError:
    +        pass
    +    warnings.warn(stacklevel=level + 1, *args, **kw)
    +
    +
    +def parse_requirements(strs: _NestedStr):
    +    """
    +    Yield ``Requirement`` objects for each specification in `strs`.
    +
    +    `strs` must be a string, or a (possibly-nested) iterable thereof.
    +    """
    +    return map(Requirement, join_continuation(map(drop_comment, yield_lines(strs))))
    +
    +
    +class RequirementParseError(_packaging_requirements.InvalidRequirement):
    +    "Compatibility wrapper for InvalidRequirement"
    +
    +
    +class Requirement(_packaging_requirements.Requirement):
    +    def __init__(self, requirement_string: str):
    +        """DO NOT CALL THIS UNDOCUMENTED METHOD; use Requirement.parse()!"""
    +        super().__init__(requirement_string)
    +        self.unsafe_name = self.name
    +        project_name = safe_name(self.name)
    +        self.project_name, self.key = project_name, project_name.lower()
    +        self.specs = [(spec.operator, spec.version) for spec in self.specifier]
    +        # packaging.requirements.Requirement uses a set for its extras. We use a variable-length tuple
    +        self.extras: tuple[str] = tuple(map(safe_extra, self.extras))
    +        self.hashCmp = (
    +            self.key,
    +            self.url,
    +            self.specifier,
    +            frozenset(self.extras),
    +            str(self.marker) if self.marker else None,
    +        )
    +        self.__hash = hash(self.hashCmp)
    +
    +    def __eq__(self, other: object):
    +        return isinstance(other, Requirement) and self.hashCmp == other.hashCmp
    +
    +    def __ne__(self, other):
    +        return not self == other
    +
    +    def __contains__(self, item: Distribution | str | tuple[str, ...]) -> bool:
    +        if isinstance(item, Distribution):
    +            if item.key != self.key:
    +                return False
    +
    +            item = item.version
    +
    +        # Allow prereleases always in order to match the previous behavior of
    +        # this method. In the future this should be smarter and follow PEP 440
    +        # more accurately.
    +        return self.specifier.contains(item, prereleases=True)
    +
    +    def __hash__(self):
    +        return self.__hash
    +
    +    def __repr__(self):
    +        return "Requirement.parse(%r)" % str(self)
    +
    +    @staticmethod
    +    def parse(s: str | Iterable[str]):
    +        (req,) = parse_requirements(s)
    +        return req
    +
    +
    +def _always_object(classes):
    +    """
    +    Ensure object appears in the mro even
    +    for old-style classes.
    +    """
    +    if object not in classes:
    +        return classes + (object,)
    +    return classes
    +
    +
    +def _find_adapter(registry: Mapping[type, _AdapterT], ob: object) -> _AdapterT:
    +    """Return an adapter factory for `ob` from `registry`"""
    +    types = _always_object(inspect.getmro(getattr(ob, '__class__', type(ob))))
    +    for t in types:
    +        if t in registry:
    +            return registry[t]
    +    # _find_adapter would previously return None, and immediately be called.
    +    # So we're raising a TypeError to keep backward compatibility if anyone depended on that behaviour.
    +    raise TypeError(f"Could not find adapter for {registry} and {ob}")
    +
    +
    +def ensure_directory(path: StrOrBytesPath):
    +    """Ensure that the parent directory of `path` exists"""
    +    dirname = os.path.dirname(path)
    +    os.makedirs(dirname, exist_ok=True)
    +
    +
    +def _bypass_ensure_directory(path):
    +    """Sandbox-bypassing version of ensure_directory()"""
    +    if not WRITE_SUPPORT:
    +        raise OSError('"os.mkdir" not supported on this platform.')
    +    dirname, filename = split(path)
    +    if dirname and filename and not isdir(dirname):
    +        _bypass_ensure_directory(dirname)
    +        try:
    +            mkdir(dirname, 0o755)
    +        except FileExistsError:
    +            pass
    +
    +
    +def split_sections(s: _NestedStr) -> Iterator[tuple[str | None, list[str]]]:
    +    """Split a string or iterable thereof into (section, content) pairs
    +
    +    Each ``section`` is a stripped version of the section header ("[section]")
    +    and each ``content`` is a list of stripped lines excluding blank lines and
    +    comment-only lines.  If there are any such lines before the first section
    +    header, they're returned in a first ``section`` of ``None``.
    +    """
    +    section = None
    +    content = []
    +    for line in yield_lines(s):
    +        if line.startswith("["):
    +            if line.endswith("]"):
    +                if section or content:
    +                    yield section, content
    +                section = line[1:-1].strip()
    +                content = []
    +            else:
    +                raise ValueError("Invalid section heading", line)
    +        else:
    +            content.append(line)
    +
    +    # wrap up last segment
    +    yield section, content
    +
    +
    +def _mkstemp(*args, **kw):
    +    old_open = os.open
    +    try:
    +        # temporarily bypass sandboxing
    +        os.open = os_open
    +        return tempfile.mkstemp(*args, **kw)
    +    finally:
    +        # and then put it back
    +        os.open = old_open
    +
    +
    +# Silence the PEP440Warning by default, so that end users don't get hit by it
    +# randomly just because they use pkg_resources. We want to append the rule
    +# because we want earlier uses of filterwarnings to take precedence over this
    +# one.
    +warnings.filterwarnings("ignore", category=PEP440Warning, append=True)
    +
    +
    +class PkgResourcesDeprecationWarning(Warning):
    +    """
    +    Base class for warning about deprecations in ``pkg_resources``
    +
    +    This class is not derived from ``DeprecationWarning``, and as such is
    +    visible by default.
    +    """
    +
    +
    +# Ported from ``setuptools`` to avoid introducing an import inter-dependency:
    +_LOCALE_ENCODING = "locale" if sys.version_info >= (3, 10) else None
    +
    +
    +def _read_utf8_with_fallback(file: str, fallback_encoding=_LOCALE_ENCODING) -> str:
    +    """See setuptools.unicode_utils._read_utf8_with_fallback"""
    +    try:
    +        with open(file, "r", encoding="utf-8") as f:
    +            return f.read()
    +    except UnicodeDecodeError:  # pragma: no cover
    +        msg = f"""\
    +        ********************************************************************************
    +        `encoding="utf-8"` fails with {file!r}, trying `encoding={fallback_encoding!r}`.
    +
    +        This fallback behaviour is considered **deprecated** and future versions of
    +        `setuptools/pkg_resources` may not implement it.
    +
    +        Please encode {file!r} with "utf-8" to ensure future builds will succeed.
    +
    +        If this file was produced by `setuptools` itself, cleaning up the cached files
    +        and re-building/re-installing the package with a newer version of `setuptools`
    +        (e.g. by updating `build-system.requires` in its `pyproject.toml`)
    +        might solve the problem.
    +        ********************************************************************************
    +        """
    +        # TODO: Add a deadline?
    +        #       See comment in setuptools.unicode_utils._Utf8EncodingNeeded
    +        warnings.warn(msg, PkgResourcesDeprecationWarning, stacklevel=2)
    +        with open(file, "r", encoding=fallback_encoding) as f:
    +            return f.read()
    +
    +
    +# from jaraco.functools 1.3
    +def _call_aside(f, *args, **kwargs):
    +    f(*args, **kwargs)
    +    return f
    +
    +
    +@_call_aside
    +def _initialize(g=globals()):
    +    "Set up global resource manager (deliberately not state-saved)"
    +    manager = ResourceManager()
    +    g['_manager'] = manager
    +    g.update(
    +        (name, getattr(manager, name))
    +        for name in dir(manager)
    +        if not name.startswith('_')
    +    )
    +
    +
    +@_call_aside
    +def _initialize_master_working_set():
    +    """
    +    Prepare the master working set and make the ``require()``
    +    API available.
    +
    +    This function has explicit effects on the global state
    +    of pkg_resources. It is intended to be invoked once at
    +    the initialization of this module.
    +
    +    Invocation by other packages is unsupported and done
    +    at their own risk.
    +    """
    +    working_set = _declare_state('object', 'working_set', WorkingSet._build_master())
    +
    +    require = working_set.require
    +    iter_entry_points = working_set.iter_entry_points
    +    add_activation_listener = working_set.subscribe
    +    run_script = working_set.run_script
    +    # backward compatibility
    +    run_main = run_script
    +    # Activate all distributions already on sys.path with replace=False and
    +    # ensure that all distributions added to the working set in the future
    +    # (e.g. by calling ``require()``) will get activated as well,
    +    # with higher priority (replace=True).
    +    tuple(dist.activate(replace=False) for dist in working_set)
    +    add_activation_listener(
    +        lambda dist: dist.activate(replace=True),
    +        existing=False,
    +    )
    +    working_set.entries = []
    +    # match order
    +    list(map(working_set.add_entry, sys.path))
    +    globals().update(locals())
    +
    +
    +if TYPE_CHECKING:
    +    # All of these are set by the @_call_aside methods above
    +    __resource_manager = ResourceManager()  # Won't exist at runtime
    +    resource_exists = __resource_manager.resource_exists
    +    resource_isdir = __resource_manager.resource_isdir
    +    resource_filename = __resource_manager.resource_filename
    +    resource_stream = __resource_manager.resource_stream
    +    resource_string = __resource_manager.resource_string
    +    resource_listdir = __resource_manager.resource_listdir
    +    set_extraction_path = __resource_manager.set_extraction_path
    +    cleanup_resources = __resource_manager.cleanup_resources
    +
    +    working_set = WorkingSet()
    +    require = working_set.require
    +    iter_entry_points = working_set.iter_entry_points
    +    add_activation_listener = working_set.subscribe
    +    run_script = working_set.run_script
    +    run_main = run_script
    diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc
    new file mode 100644
    index 0000000000000000000000000000000000000000..5fb481d4743eb06c92cbf04310a36c60b38bfc4e
    GIT binary patch
    literal 161310
    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�mqgEzf}KD5~LhW
    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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py new file mode 100644 index 00000000..d58dd2b7 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py @@ -0,0 +1,627 @@ +""" +Utilities for determining application-specific dirs. + +See for details and usage. + +""" + +from __future__ import annotations + +import os +import sys +from typing import TYPE_CHECKING + +from .api import PlatformDirsABC +from .version import __version__ +from .version import __version_tuple__ as __version_info__ + +if TYPE_CHECKING: + from pathlib import Path + from typing import Literal + + +def _set_platform_dir_class() -> type[PlatformDirsABC]: + if sys.platform == "win32": + from pip._vendor.platformdirs.windows import Windows as Result # noqa: PLC0415 + elif sys.platform == "darwin": + from pip._vendor.platformdirs.macos import MacOS as Result # noqa: PLC0415 + else: + from pip._vendor.platformdirs.unix import Unix as Result # noqa: PLC0415 + + if os.getenv("ANDROID_DATA") == "/data" and os.getenv("ANDROID_ROOT") == "/system": + if os.getenv("SHELL") or os.getenv("PREFIX"): + return Result + + from pip._vendor.platformdirs.android import _android_folder # noqa: PLC0415 + + if _android_folder() is not None: + from pip._vendor.platformdirs.android import Android # noqa: PLC0415 + + return Android # return to avoid redefinition of a result + + return Result + + +PlatformDirs = _set_platform_dir_class() #: Currently active platform +AppDirs = PlatformDirs #: Backwards compatibility with appdirs + + +def user_data_dir( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: data directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_data_dir + + +def site_data_dir( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + multipath: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param multipath: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: data directory shared by users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + multipath=multipath, + ensure_exists=ensure_exists, + ).site_data_dir + + +def user_config_dir( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: config directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_config_dir + + +def site_config_dir( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + multipath: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param multipath: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: config directory shared by the users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + multipath=multipath, + ensure_exists=ensure_exists, + ).site_config_dir + + +def user_cache_dir( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: cache directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_cache_dir + + +def site_cache_dir( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: cache directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).site_cache_dir + + +def user_state_dir( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: state directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_state_dir + + +def user_log_dir( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: log directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_log_dir + + +def user_documents_dir() -> str: + """:returns: documents directory tied to the user""" + return PlatformDirs().user_documents_dir + + +def user_downloads_dir() -> str: + """:returns: downloads directory tied to the user""" + return PlatformDirs().user_downloads_dir + + +def user_pictures_dir() -> str: + """:returns: pictures directory tied to the user""" + return PlatformDirs().user_pictures_dir + + +def user_videos_dir() -> str: + """:returns: videos directory tied to the user""" + return PlatformDirs().user_videos_dir + + +def user_music_dir() -> str: + """:returns: music directory tied to the user""" + return PlatformDirs().user_music_dir + + +def user_desktop_dir() -> str: + """:returns: desktop directory tied to the user""" + return PlatformDirs().user_desktop_dir + + +def user_runtime_dir( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: runtime directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_runtime_dir + + +def site_runtime_dir( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> str: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: runtime directory shared by users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).site_runtime_dir + + +def user_data_path( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: data path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_data_path + + +def site_data_path( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + multipath: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param multipath: See `multipath `. + :param ensure_exists: See `ensure_exists `. + :returns: data path shared by users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + multipath=multipath, + ensure_exists=ensure_exists, + ).site_data_path + + +def user_config_path( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: config path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_config_path + + +def site_config_path( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + multipath: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param multipath: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: config path shared by the users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + multipath=multipath, + ensure_exists=ensure_exists, + ).site_config_path + + +def site_cache_path( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: cache directory tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).site_cache_path + + +def user_cache_path( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: cache path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_cache_path + + +def user_state_path( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param roaming: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: state path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + roaming=roaming, + ensure_exists=ensure_exists, + ).user_state_path + + +def user_log_path( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `roaming `. + :param ensure_exists: See `ensure_exists `. + :returns: log path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_log_path + + +def user_documents_path() -> Path: + """:returns: documents a path tied to the user""" + return PlatformDirs().user_documents_path + + +def user_downloads_path() -> Path: + """:returns: downloads path tied to the user""" + return PlatformDirs().user_downloads_path + + +def user_pictures_path() -> Path: + """:returns: pictures path tied to the user""" + return PlatformDirs().user_pictures_path + + +def user_videos_path() -> Path: + """:returns: videos path tied to the user""" + return PlatformDirs().user_videos_path + + +def user_music_path() -> Path: + """:returns: music path tied to the user""" + return PlatformDirs().user_music_path + + +def user_desktop_path() -> Path: + """:returns: desktop path tied to the user""" + return PlatformDirs().user_desktop_path + + +def user_runtime_path( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: runtime path tied to the user + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).user_runtime_path + + +def site_runtime_path( + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 +) -> Path: + """ + :param appname: See `appname `. + :param appauthor: See `appauthor `. + :param version: See `version `. + :param opinion: See `opinion `. + :param ensure_exists: See `ensure_exists `. + :returns: runtime path shared by users + """ + return PlatformDirs( + appname=appname, + appauthor=appauthor, + version=version, + opinion=opinion, + ensure_exists=ensure_exists, + ).site_runtime_path + + +__all__ = [ + "AppDirs", + "PlatformDirs", + "PlatformDirsABC", + "__version__", + "__version_info__", + "site_cache_dir", + "site_cache_path", + "site_config_dir", + "site_config_path", + "site_data_dir", + "site_data_path", + "site_runtime_dir", + "site_runtime_path", + "user_cache_dir", + "user_cache_path", + "user_config_dir", + "user_config_path", + "user_data_dir", + "user_data_path", + "user_desktop_dir", + "user_desktop_path", + "user_documents_dir", + "user_documents_path", + "user_downloads_dir", + "user_downloads_path", + "user_log_dir", + "user_log_path", + "user_music_dir", + "user_music_path", + "user_pictures_dir", + "user_pictures_path", + "user_runtime_dir", + "user_runtime_path", + "user_state_dir", + "user_state_path", + "user_videos_dir", + "user_videos_path", +] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py new file mode 100644 index 00000000..fa8a677a --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py @@ -0,0 +1,55 @@ +"""Main entry point.""" + +from __future__ import annotations + +from pip._vendor.platformdirs import PlatformDirs, __version__ + +PROPS = ( + "user_data_dir", + "user_config_dir", + "user_cache_dir", + "user_state_dir", + "user_log_dir", + "user_documents_dir", + "user_downloads_dir", + "user_pictures_dir", + "user_videos_dir", + "user_music_dir", + "user_runtime_dir", + "site_data_dir", + "site_config_dir", + "site_cache_dir", + "site_runtime_dir", +) + + +def main() -> None: + """Run the main entry point.""" + app_name = "MyApp" + app_author = "MyCompany" + + print(f"-- platformdirs {__version__} --") # noqa: T201 + + print("-- app dirs (with optional 'version')") # noqa: T201 + dirs = PlatformDirs(app_name, app_author, version="1.0") + for prop in PROPS: + print(f"{prop}: {getattr(dirs, prop)}") # noqa: T201 + + print("\n-- app dirs (without optional 'version')") # noqa: T201 + dirs = PlatformDirs(app_name, app_author) + for prop in PROPS: + print(f"{prop}: {getattr(dirs, prop)}") # noqa: T201 + + print("\n-- app dirs (without optional 'appauthor')") # noqa: T201 + dirs = PlatformDirs(app_name) + for prop in PROPS: + print(f"{prop}: {getattr(dirs, prop)}") # noqa: T201 + + print("\n-- app dirs (with disabled 'appauthor')") # noqa: T201 + dirs = PlatformDirs(app_name, appauthor=False) + for prop in PROPS: + print(f"{prop}: {getattr(dirs, prop)}") # noqa: T201 + + +if __name__ == "__main__": + main() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c3128d950c88f4e91e268c1e0c97968bb37c07f3 GIT binary patch literal 19878 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 Iq4UuH0+M8&!T zDv@#ksRs@@AW^AB%CRUt@PBZL$Rbgz5+Fc`TdHv4#2b4zShT3>AtS9l?>Fzg-}8I( z-hNlDmJqC3&076MN9b26440a2l%wmg`3gCxg&f6EJ;hgBsv`HAr}?;reZ8fFj9WRU z;OL*>R-P7|+*%DGUQiLu?+rXEsGINR>&4#qg5?GV4FvBRA#(%K{8OsbmAGsL0TY&R zSrFCLxU%F~Vuf*k-sMqTCS;xR2+jzpkH*zbL^*LRVG+mW@n|C2ELd?@6JR6-EW1rJ zas=K}xssfFEY*G?^~UUu4}nFA#Sq&FJZ3p5HlFB(t}Qy8rclbf?mCpEK+5cQBG*p* zj3qX_6A0H&xvP;Yqd1N|5wo$Uz;WzjiJb9Z4|1BkityABQjR8|W>6_*3pwhRB9x($ zqlrN^5xNVN`dZr?oGB=yrDssM4e8oMn~IZrklzCaxwcf1OLqv(qfe&+(f;+Zse%83 zkP#(oQ{B||2Hba1miLQSaF)CHf80as6XGpBop*?y5NmnpAM&5cv{QLdJ&Et_j?_nc zQ#U(-A==dN|J!}BzR-O?4CCTL_XFmKR?zK@H5x`ZXg=t!$mnTCqtSZ}U@Hub1gdSg zqHVBHcB|zXGlS-wsrR(m<^|~H`~c~x?-{*%=?Pob5l=OL^I578g4Gdi#(}H$q%wpT zS<4=EjG2t)Rfwo~EHBpeSPwZ2A1({PF+5^@>E?~4kK_C*g()F;9mfSQAc5u6xFmNe zYmDXh$2jCHjHICf>+dhkHuI@@i^0GNeA@P0yKOFUc8jhFYDODk*=h$3+jC8rTaXzu z;sDb4or+@td3ox<)L-_m~h^7i~sV=vvtj|$bDQ#-kx<$II6r*_4`)cO6>js214 z4+Zm3L*o;F<&a+5FJ0{8cLvr6<;L^bUh3m_6WfFG+2^x-yN@p>miIsGm*<{s`&dSN z1W7@0VVJQ+_|wU83bQ?k@gfUoy%^^SahOd=Tq0zpBgZ}=Tn@wdG*qBDs6aDYf#f!& z_v&R(Owun&w&ZOD!6H literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0ba1150fdbf32061ed2118da2e64f7fa096ba7b3 GIT binary patch literal 10746 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 SHv`Z5nC|7&zX;Zp_KX{0t%pnI5| z{q38#^M3Q@y_wm+_4g+@xK5sw3x6NuxG(X+yJAj--@6QzO-|vKIfYju8efhqM|iA9 zwdiseyT_JeN|zGTy36t9IL}46OPtdEkW=C${v_(?Sr(LdfnV-fk4_8K?y{V_dL#8U zzMAG6y|S(wwrs10Ze97BcfjN|O}6s}EniTnb?*FP&e7wPu2Oz)4x~3Z!Y%XA!HB{y zM@g45qC_5cJ#poiV+@IgkZy)_g^)NyVj)CeNOuV7VMsiLBp4!ukY0xLgpfXlBtl3( zLwZBV07LphNRlD_A!Lvt10iIHA;}Oj%#gtlGQyCd5Hh+xJU!ZoE#Uyj{{r?BB3vHV zqM}lgvkj^eO9b*oyGTSfSfXJP3PYq9L~Gr$Nja5ZEiW3HW~^CEuuxGIS}Zm8W9yES1A+S8DjBF(Y8%%UXm2DN;K4)l2I&`Gs=>tu27k-OES$B)m0)jHI*)^ z8d;Kcxj;~zv}nNBOuHg$?9C0bxPpLf?lgBk2%*%(Grwg$j&$ftP*O0Uw6>bmGoN@ z-KtQMA@^0wwmN9vB)^b#$0vu=$-8h)!_?vTeg~CJZi6d@-?~zE#1k)dd9~nPiU)PC zrtnW(J>LBWHyx?2%u`}ls6H<$vMu|rwJzE!QAFEd)B?+NMkJ|1O3Y>-NSEE=N54^X zEF_3GDyC^rTbgpYm8M*(vf1kEhc?;jY8=ZzE21lS%izdlWO#5DG$Mx8=rU!y*hrB3 zCcMG!Z1IgQi)eWZjS|0oEESD1kxE9cNc1u(LcfX! z^iWqoIP7l{Ohm&}Cd8&443TN0^7Fn!pL@yLAGJ54qiLZg6xbIk%mh`^)fO zC;mLKlV03TFV-&P>S?8(BsGET;ZU}Bl|Eo$le1BPT_xW=JcQ#)Zn6jv4ibdt3?J|t zJRJsSYv(!k+fL9CdrJljF=<@@-Hy0{aPoNv9K7uU#- zDFKxjh-L8_^C59X)gfj=pvK6^zL|Xwe0GJBwIJH!Q_3nrl$&8Q4?Kqj#C6{kQCw3s zO@7Xuj-1R#YvK=s1s* z84;$bOM|M5UjLkM>(GQrixSI(>qhpox^Nyo4d71^xR ziHY+sI-dR~zU^=NKy{?)(V?_@>@f8dr{Y#mBMKS0(d`USBVpMxwXHSPE>fHbjcz9Z zHhO$MX)oe&q{AX+qpM`7`c{-C5$#p248}Vg)k!|6~r=vSZ=eLi}*WS5XKf3(6@aw0&$&VNQxbV-BvCa9%^P6WMpZ)CT z^^w_H-|W-mkxz#{+NcRXpu_OZrbvcSoF%>2pu&vQprYsBB z1F|J%o5F5(i>DY$D8?8kfjE>UnV6%O1?{m=&<@~PXtswO`(gX|cJg>lIR0Jix_Gc% zL6pKt<3=jqw5AcwPV-cRp0%3B!~z?tu4((=x3KLL7A-^cYS$&V0y<>K>4%PT%fe(4 zn^^5aU3D;6i#Spg6Ilyg1CA%49_9$6VMp-Lx1r_p()X=;`gT2erzYGvgwg+}Z%o=v z={wyvedqT1LNGJjS>d{ZACM3Bgndcx`qj;Y@|2uj5p1N}mHxWc22G)r|nn=oxHwXac<@2MP3Aee9Rp zqt|N%wQT~uTtB+>xp3uWC(!eLWQ9eDeRyQ`lMD-o-d-k4Cy}%L+0%)cOleEZ^wA}3 z`F%(**L@l^IGO zZnz&s+&q|#Q}tx3CZt-~c(psfg3lGL=(Y+Q_>Mw}cPQ;H6K|3-oJYff+xzevq2Rj0yc>K)@T%lN3VGtg2-$Z(1!tOZNJ@D^HB$ns* zqEOvs)m?$11F>T+2(?|&m7MeiCtbNntQ~eY(0G@BVU4$g*0;UZkyzUQcG~}TJ8aIE zoAc#TK9=&aSs$DAG0DdyA1emEDF(ec!6d%{%1$s}U<^+u=tUqI$39=dMMEY-abePk z;|~-#)O1#f;|N9JHy*_}#9E?L$eIT7?;(WC8|MH|IOBNH0>ym>&LB&IVmHe3{1;r` pSKQ>6+`vD$#8;g7tef)uiAPtTad_X=qFk(RHyY`U{2|U1{s&6(-|YYZ literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0cac1dc884a31d87de340651972714555262bfb0 GIT binary patch literal 15086 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 E1>p|^NB{r; literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..43468f304fb181acb4ccd5c41d13f67b1383e8cd GIT binary patch literal 646 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 XgW1YMQx#zI_KF3orQCAaNk{X)8s|14 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py new file mode 100644 index 00000000..afd3141c --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py @@ -0,0 +1,249 @@ +"""Android.""" + +from __future__ import annotations + +import os +import re +import sys +from functools import lru_cache +from typing import TYPE_CHECKING, cast + +from .api import PlatformDirsABC + + +class Android(PlatformDirsABC): + """ + Follows the guidance `from here `_. + + Makes use of the `appname `, `version + `, `ensure_exists `. + + """ + + @property + def user_data_dir(self) -> str: + """:return: data directory tied to the user, e.g. ``/data/user///files/``""" + return self._append_app_name_and_version(cast(str, _android_folder()), "files") + + @property + def site_data_dir(self) -> str: + """:return: data directory shared by users, same as `user_data_dir`""" + return self.user_data_dir + + @property + def user_config_dir(self) -> str: + """ + :return: config directory tied to the user, e.g. \ + ``/data/user///shared_prefs/`` + """ + return self._append_app_name_and_version(cast(str, _android_folder()), "shared_prefs") + + @property + def site_config_dir(self) -> str: + """:return: config directory shared by the users, same as `user_config_dir`""" + return self.user_config_dir + + @property + def user_cache_dir(self) -> str: + """:return: cache directory tied to the user, e.g.,``/data/user///cache/``""" + return self._append_app_name_and_version(cast(str, _android_folder()), "cache") + + @property + def site_cache_dir(self) -> str: + """:return: cache directory shared by users, same as `user_cache_dir`""" + return self.user_cache_dir + + @property + def user_state_dir(self) -> str: + """:return: state directory tied to the user, same as `user_data_dir`""" + return self.user_data_dir + + @property + def user_log_dir(self) -> str: + """ + :return: log directory tied to the user, same as `user_cache_dir` if not opinionated else ``log`` in it, + e.g. ``/data/user///cache//log`` + """ + path = self.user_cache_dir + if self.opinion: + path = os.path.join(path, "log") # noqa: PTH118 + return path + + @property + def user_documents_dir(self) -> str: + """:return: documents directory tied to the user e.g. ``/storage/emulated/0/Documents``""" + return _android_documents_folder() + + @property + def user_downloads_dir(self) -> str: + """:return: downloads directory tied to the user e.g. ``/storage/emulated/0/Downloads``""" + return _android_downloads_folder() + + @property + def user_pictures_dir(self) -> str: + """:return: pictures directory tied to the user e.g. ``/storage/emulated/0/Pictures``""" + return _android_pictures_folder() + + @property + def user_videos_dir(self) -> str: + """:return: videos directory tied to the user e.g. ``/storage/emulated/0/DCIM/Camera``""" + return _android_videos_folder() + + @property + def user_music_dir(self) -> str: + """:return: music directory tied to the user e.g. ``/storage/emulated/0/Music``""" + return _android_music_folder() + + @property + def user_desktop_dir(self) -> str: + """:return: desktop directory tied to the user e.g. ``/storage/emulated/0/Desktop``""" + return "/storage/emulated/0/Desktop" + + @property + def user_runtime_dir(self) -> str: + """ + :return: runtime directory tied to the user, same as `user_cache_dir` if not opinionated else ``tmp`` in it, + e.g. ``/data/user///cache//tmp`` + """ + path = self.user_cache_dir + if self.opinion: + path = os.path.join(path, "tmp") # noqa: PTH118 + return path + + @property + def site_runtime_dir(self) -> str: + """:return: runtime directory shared by users, same as `user_runtime_dir`""" + return self.user_runtime_dir + + +@lru_cache(maxsize=1) +def _android_folder() -> str | None: # noqa: C901, PLR0912 + """:return: base folder for the Android OS or None if it cannot be found""" + result: str | None = None + # type checker isn't happy with our "import android", just don't do this when type checking see + # https://stackoverflow.com/a/61394121 + if not TYPE_CHECKING: + try: + # First try to get a path to android app using python4android (if available)... + from android import mActivity # noqa: PLC0415 + + context = cast("android.content.Context", mActivity.getApplicationContext()) # noqa: F821 + result = context.getFilesDir().getParentFile().getAbsolutePath() + except Exception: # noqa: BLE001 + result = None + if result is None: + try: + # ...and fall back to using plain pyjnius, if python4android isn't available or doesn't deliver any useful + # result... + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + result = context.getFilesDir().getParentFile().getAbsolutePath() + except Exception: # noqa: BLE001 + result = None + if result is None: + # and if that fails, too, find an android folder looking at path on the sys.path + # warning: only works for apps installed under /data, not adopted storage etc. + pattern = re.compile(r"/data/(data|user/\d+)/(.+)/files") + for path in sys.path: + if pattern.match(path): + result = path.split("/files")[0] + break + else: + result = None + if result is None: + # one last try: find an android folder looking at path on the sys.path taking adopted storage paths into + # account + pattern = re.compile(r"/mnt/expand/[a-fA-F0-9-]{36}/(data|user/\d+)/(.+)/files") + for path in sys.path: + if pattern.match(path): + result = path.split("/files")[0] + break + else: + result = None + return result + + +@lru_cache(maxsize=1) +def _android_documents_folder() -> str: + """:return: documents folder for the Android OS""" + # Get directories with pyjnius + try: + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + environment = autoclass("android.os.Environment") + documents_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOCUMENTS).getAbsolutePath() + except Exception: # noqa: BLE001 + documents_dir = "/storage/emulated/0/Documents" + + return documents_dir + + +@lru_cache(maxsize=1) +def _android_downloads_folder() -> str: + """:return: downloads folder for the Android OS""" + # Get directories with pyjnius + try: + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + environment = autoclass("android.os.Environment") + downloads_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DOWNLOADS).getAbsolutePath() + except Exception: # noqa: BLE001 + downloads_dir = "/storage/emulated/0/Downloads" + + return downloads_dir + + +@lru_cache(maxsize=1) +def _android_pictures_folder() -> str: + """:return: pictures folder for the Android OS""" + # Get directories with pyjnius + try: + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + environment = autoclass("android.os.Environment") + pictures_dir: str = context.getExternalFilesDir(environment.DIRECTORY_PICTURES).getAbsolutePath() + except Exception: # noqa: BLE001 + pictures_dir = "/storage/emulated/0/Pictures" + + return pictures_dir + + +@lru_cache(maxsize=1) +def _android_videos_folder() -> str: + """:return: videos folder for the Android OS""" + # Get directories with pyjnius + try: + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + environment = autoclass("android.os.Environment") + videos_dir: str = context.getExternalFilesDir(environment.DIRECTORY_DCIM).getAbsolutePath() + except Exception: # noqa: BLE001 + videos_dir = "/storage/emulated/0/DCIM/Camera" + + return videos_dir + + +@lru_cache(maxsize=1) +def _android_music_folder() -> str: + """:return: music folder for the Android OS""" + # Get directories with pyjnius + try: + from jnius import autoclass # noqa: PLC0415 + + context = autoclass("android.content.Context") + environment = autoclass("android.os.Environment") + music_dir: str = context.getExternalFilesDir(environment.DIRECTORY_MUSIC).getAbsolutePath() + except Exception: # noqa: BLE001 + music_dir = "/storage/emulated/0/Music" + + return music_dir + + +__all__ = [ + "Android", +] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py new file mode 100644 index 00000000..c50caa64 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py @@ -0,0 +1,292 @@ +"""Base API.""" + +from __future__ import annotations + +import os +from abc import ABC, abstractmethod +from pathlib import Path +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from typing import Iterator, Literal + + +class PlatformDirsABC(ABC): # noqa: PLR0904 + """Abstract base class for platform directories.""" + + def __init__( # noqa: PLR0913, PLR0917 + self, + appname: str | None = None, + appauthor: str | None | Literal[False] = None, + version: str | None = None, + roaming: bool = False, # noqa: FBT001, FBT002 + multipath: bool = False, # noqa: FBT001, FBT002 + opinion: bool = True, # noqa: FBT001, FBT002 + ensure_exists: bool = False, # noqa: FBT001, FBT002 + ) -> None: + """ + Create a new platform directory. + + :param appname: See `appname`. + :param appauthor: See `appauthor`. + :param version: See `version`. + :param roaming: See `roaming`. + :param multipath: See `multipath`. + :param opinion: See `opinion`. + :param ensure_exists: See `ensure_exists`. + + """ + self.appname = appname #: The name of application. + self.appauthor = appauthor + """ + The name of the app author or distributing body for this application. + + Typically, it is the owning company name. Defaults to `appname`. You may pass ``False`` to disable it. + + """ + self.version = version + """ + An optional version path element to append to the path. + + You might want to use this if you want multiple versions of your app to be able to run independently. If used, + this would typically be ``.``. + + """ + self.roaming = roaming + """ + Whether to use the roaming appdata directory on Windows. + + That means that for users on a Windows network setup for roaming profiles, this user data will be synced on + login (see + `here `_). + + """ + self.multipath = multipath + """ + An optional parameter which indicates that the entire list of data dirs should be returned. + + By default, the first item would only be returned. + + """ + self.opinion = opinion #: A flag to indicating to use opinionated values. + self.ensure_exists = ensure_exists + """ + Optionally create the directory (and any missing parents) upon access if it does not exist. + + By default, no directories are created. + + """ + + def _append_app_name_and_version(self, *base: str) -> str: + params = list(base[1:]) + if self.appname: + params.append(self.appname) + if self.version: + params.append(self.version) + path = os.path.join(base[0], *params) # noqa: PTH118 + self._optionally_create_directory(path) + return path + + def _optionally_create_directory(self, path: str) -> None: + if self.ensure_exists: + Path(path).mkdir(parents=True, exist_ok=True) + + @property + @abstractmethod + def user_data_dir(self) -> str: + """:return: data directory tied to the user""" + + @property + @abstractmethod + def site_data_dir(self) -> str: + """:return: data directory shared by users""" + + @property + @abstractmethod + def user_config_dir(self) -> str: + """:return: config directory tied to the user""" + + @property + @abstractmethod + def site_config_dir(self) -> str: + """:return: config directory shared by the users""" + + @property + @abstractmethod + def user_cache_dir(self) -> str: + """:return: cache directory tied to the user""" + + @property + @abstractmethod + def site_cache_dir(self) -> str: + """:return: cache directory shared by users""" + + @property + @abstractmethod + def user_state_dir(self) -> str: + """:return: state directory tied to the user""" + + @property + @abstractmethod + def user_log_dir(self) -> str: + """:return: log directory tied to the user""" + + @property + @abstractmethod + def user_documents_dir(self) -> str: + """:return: documents directory tied to the user""" + + @property + @abstractmethod + def user_downloads_dir(self) -> str: + """:return: downloads directory tied to the user""" + + @property + @abstractmethod + def user_pictures_dir(self) -> str: + """:return: pictures directory tied to the user""" + + @property + @abstractmethod + def user_videos_dir(self) -> str: + """:return: videos directory tied to the user""" + + @property + @abstractmethod + def user_music_dir(self) -> str: + """:return: music directory tied to the user""" + + @property + @abstractmethod + def user_desktop_dir(self) -> str: + """:return: desktop directory tied to the user""" + + @property + @abstractmethod + def user_runtime_dir(self) -> str: + """:return: runtime directory tied to the user""" + + @property + @abstractmethod + def site_runtime_dir(self) -> str: + """:return: runtime directory shared by users""" + + @property + def user_data_path(self) -> Path: + """:return: data path tied to the user""" + return Path(self.user_data_dir) + + @property + def site_data_path(self) -> Path: + """:return: data path shared by users""" + return Path(self.site_data_dir) + + @property + def user_config_path(self) -> Path: + """:return: config path tied to the user""" + return Path(self.user_config_dir) + + @property + def site_config_path(self) -> Path: + """:return: config path shared by the users""" + return Path(self.site_config_dir) + + @property + def user_cache_path(self) -> Path: + """:return: cache path tied to the user""" + return Path(self.user_cache_dir) + + @property + def site_cache_path(self) -> Path: + """:return: cache path shared by users""" + return Path(self.site_cache_dir) + + @property + def user_state_path(self) -> Path: + """:return: state path tied to the user""" + return Path(self.user_state_dir) + + @property + def user_log_path(self) -> Path: + """:return: log path tied to the user""" + return Path(self.user_log_dir) + + @property + def user_documents_path(self) -> Path: + """:return: documents a path tied to the user""" + return Path(self.user_documents_dir) + + @property + def user_downloads_path(self) -> Path: + """:return: downloads path tied to the user""" + return Path(self.user_downloads_dir) + + @property + def user_pictures_path(self) -> Path: + """:return: pictures path tied to the user""" + return Path(self.user_pictures_dir) + + @property + def user_videos_path(self) -> Path: + """:return: videos path tied to the user""" + return Path(self.user_videos_dir) + + @property + def user_music_path(self) -> Path: + """:return: music path tied to the user""" + return Path(self.user_music_dir) + + @property + def user_desktop_path(self) -> Path: + """:return: desktop path tied to the user""" + return Path(self.user_desktop_dir) + + @property + def user_runtime_path(self) -> Path: + """:return: runtime path tied to the user""" + return Path(self.user_runtime_dir) + + @property + def site_runtime_path(self) -> Path: + """:return: runtime path shared by users""" + return Path(self.site_runtime_dir) + + def iter_config_dirs(self) -> Iterator[str]: + """:yield: all user and site configuration directories.""" + yield self.user_config_dir + yield self.site_config_dir + + def iter_data_dirs(self) -> Iterator[str]: + """:yield: all user and site data directories.""" + yield self.user_data_dir + yield self.site_data_dir + + def iter_cache_dirs(self) -> Iterator[str]: + """:yield: all user and site cache directories.""" + yield self.user_cache_dir + yield self.site_cache_dir + + def iter_runtime_dirs(self) -> Iterator[str]: + """:yield: all user and site runtime directories.""" + yield self.user_runtime_dir + yield self.site_runtime_dir + + def iter_config_paths(self) -> Iterator[Path]: + """:yield: all user and site configuration paths.""" + for path in self.iter_config_dirs(): + yield Path(path) + + def iter_data_paths(self) -> Iterator[Path]: + """:yield: all user and site data paths.""" + for path in self.iter_data_dirs(): + yield Path(path) + + def iter_cache_paths(self) -> Iterator[Path]: + """:yield: all user and site cache paths.""" + for path in self.iter_cache_dirs(): + yield Path(path) + + def iter_runtime_paths(self) -> Iterator[Path]: + """:yield: all user and site runtime paths.""" + for path in self.iter_runtime_dirs(): + yield Path(path) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py new file mode 100644 index 00000000..eb1ba5df --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py @@ -0,0 +1,130 @@ +"""macOS.""" + +from __future__ import annotations + +import os.path +import sys + +from .api import PlatformDirsABC + + +class MacOS(PlatformDirsABC): + """ + Platform directories for the macOS operating system. + + Follows the guidance from + `Apple documentation `_. + Makes use of the `appname `, + `version `, + `ensure_exists `. + + """ + + @property + def user_data_dir(self) -> str: + """:return: data directory tied to the user, e.g. ``~/Library/Application Support/$appname/$version``""" + return self._append_app_name_and_version(os.path.expanduser("~/Library/Application Support")) # noqa: PTH111 + + @property + def site_data_dir(self) -> str: + """ + :return: data directory shared by users, e.g. ``/Library/Application Support/$appname/$version``. + If we're using a Python binary managed by `Homebrew `_, the directory + will be under the Homebrew prefix, e.g. ``/opt/homebrew/share/$appname/$version``. + If `multipath ` is enabled, and we're in Homebrew, + the response is a multi-path string separated by ":", e.g. + ``/opt/homebrew/share/$appname/$version:/Library/Application Support/$appname/$version`` + """ + is_homebrew = sys.prefix.startswith("/opt/homebrew") + path_list = [self._append_app_name_and_version("/opt/homebrew/share")] if is_homebrew else [] + path_list.append(self._append_app_name_and_version("/Library/Application Support")) + if self.multipath: + return os.pathsep.join(path_list) + return path_list[0] + + @property + def user_config_dir(self) -> str: + """:return: config directory tied to the user, same as `user_data_dir`""" + return self.user_data_dir + + @property + def site_config_dir(self) -> str: + """:return: config directory shared by the users, same as `site_data_dir`""" + return self.site_data_dir + + @property + def user_cache_dir(self) -> str: + """:return: cache directory tied to the user, e.g. ``~/Library/Caches/$appname/$version``""" + return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches")) # noqa: PTH111 + + @property + def site_cache_dir(self) -> str: + """ + :return: cache directory shared by users, e.g. ``/Library/Caches/$appname/$version``. + If we're using a Python binary managed by `Homebrew `_, the directory + will be under the Homebrew prefix, e.g. ``/opt/homebrew/var/cache/$appname/$version``. + If `multipath ` is enabled, and we're in Homebrew, + the response is a multi-path string separated by ":", e.g. + ``/opt/homebrew/var/cache/$appname/$version:/Library/Caches/$appname/$version`` + """ + is_homebrew = sys.prefix.startswith("/opt/homebrew") + path_list = [self._append_app_name_and_version("/opt/homebrew/var/cache")] if is_homebrew else [] + path_list.append(self._append_app_name_and_version("/Library/Caches")) + if self.multipath: + return os.pathsep.join(path_list) + return path_list[0] + + @property + def user_state_dir(self) -> str: + """:return: state directory tied to the user, same as `user_data_dir`""" + return self.user_data_dir + + @property + def user_log_dir(self) -> str: + """:return: log directory tied to the user, e.g. ``~/Library/Logs/$appname/$version``""" + return self._append_app_name_and_version(os.path.expanduser("~/Library/Logs")) # noqa: PTH111 + + @property + def user_documents_dir(self) -> str: + """:return: documents directory tied to the user, e.g. ``~/Documents``""" + return os.path.expanduser("~/Documents") # noqa: PTH111 + + @property + def user_downloads_dir(self) -> str: + """:return: downloads directory tied to the user, e.g. ``~/Downloads``""" + return os.path.expanduser("~/Downloads") # noqa: PTH111 + + @property + def user_pictures_dir(self) -> str: + """:return: pictures directory tied to the user, e.g. ``~/Pictures``""" + return os.path.expanduser("~/Pictures") # noqa: PTH111 + + @property + def user_videos_dir(self) -> str: + """:return: videos directory tied to the user, e.g. ``~/Movies``""" + return os.path.expanduser("~/Movies") # noqa: PTH111 + + @property + def user_music_dir(self) -> str: + """:return: music directory tied to the user, e.g. ``~/Music``""" + return os.path.expanduser("~/Music") # noqa: PTH111 + + @property + def user_desktop_dir(self) -> str: + """:return: desktop directory tied to the user, e.g. ``~/Desktop``""" + return os.path.expanduser("~/Desktop") # noqa: PTH111 + + @property + def user_runtime_dir(self) -> str: + """:return: runtime directory tied to the user, e.g. ``~/Library/Caches/TemporaryItems/$appname/$version``""" + return self._append_app_name_and_version(os.path.expanduser("~/Library/Caches/TemporaryItems")) # noqa: PTH111 + + @property + def site_runtime_dir(self) -> str: + """:return: runtime directory shared by users, same as `user_runtime_dir`""" + return self.user_runtime_dir + + +__all__ = [ + "MacOS", +] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py new file mode 100644 index 00000000..9500ade6 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py @@ -0,0 +1,275 @@ +"""Unix.""" + +from __future__ import annotations + +import os +import sys +from configparser import ConfigParser +from pathlib import Path +from typing import Iterator, NoReturn + +from .api import PlatformDirsABC + +if sys.platform == "win32": + + def getuid() -> NoReturn: + msg = "should only be used on Unix" + raise RuntimeError(msg) + +else: + from os import getuid + + +class Unix(PlatformDirsABC): # noqa: PLR0904 + """ + On Unix/Linux, we follow the `XDG Basedir Spec `_. + + The spec allows overriding directories with environment variables. The examples shown are the default values, + alongside the name of the environment variable that overrides them. Makes use of the `appname + `, `version `, `multipath + `, `opinion `, `ensure_exists + `. + + """ + + @property + def user_data_dir(self) -> str: + """ + :return: data directory tied to the user, e.g. ``~/.local/share/$appname/$version`` or + ``$XDG_DATA_HOME/$appname/$version`` + """ + path = os.environ.get("XDG_DATA_HOME", "") + if not path.strip(): + path = os.path.expanduser("~/.local/share") # noqa: PTH111 + return self._append_app_name_and_version(path) + + @property + def _site_data_dirs(self) -> list[str]: + path = os.environ.get("XDG_DATA_DIRS", "") + if not path.strip(): + path = f"/usr/local/share{os.pathsep}/usr/share" + return [self._append_app_name_and_version(p) for p in path.split(os.pathsep)] + + @property + def site_data_dir(self) -> str: + """ + :return: data directories shared by users (if `multipath ` is + enabled and ``XDG_DATA_DIRS`` is set and a multi path the response is also a multi path separated by the + OS path separator), e.g. ``/usr/local/share/$appname/$version`` or ``/usr/share/$appname/$version`` + """ + # XDG default for $XDG_DATA_DIRS; only first, if multipath is False + dirs = self._site_data_dirs + if not self.multipath: + return dirs[0] + return os.pathsep.join(dirs) + + @property + def user_config_dir(self) -> str: + """ + :return: config directory tied to the user, e.g. ``~/.config/$appname/$version`` or + ``$XDG_CONFIG_HOME/$appname/$version`` + """ + path = os.environ.get("XDG_CONFIG_HOME", "") + if not path.strip(): + path = os.path.expanduser("~/.config") # noqa: PTH111 + return self._append_app_name_and_version(path) + + @property + def _site_config_dirs(self) -> list[str]: + path = os.environ.get("XDG_CONFIG_DIRS", "") + if not path.strip(): + path = "/etc/xdg" + return [self._append_app_name_and_version(p) for p in path.split(os.pathsep)] + + @property + def site_config_dir(self) -> str: + """ + :return: config directories shared by users (if `multipath ` + is enabled and ``XDG_CONFIG_DIRS`` is set and a multi path the response is also a multi path separated by + the OS path separator), e.g. ``/etc/xdg/$appname/$version`` + """ + # XDG default for $XDG_CONFIG_DIRS only first, if multipath is False + dirs = self._site_config_dirs + if not self.multipath: + return dirs[0] + return os.pathsep.join(dirs) + + @property + def user_cache_dir(self) -> str: + """ + :return: cache directory tied to the user, e.g. ``~/.cache/$appname/$version`` or + ``~/$XDG_CACHE_HOME/$appname/$version`` + """ + path = os.environ.get("XDG_CACHE_HOME", "") + if not path.strip(): + path = os.path.expanduser("~/.cache") # noqa: PTH111 + return self._append_app_name_and_version(path) + + @property + def site_cache_dir(self) -> str: + """:return: cache directory shared by users, e.g. ``/var/cache/$appname/$version``""" + return self._append_app_name_and_version("/var/cache") + + @property + def user_state_dir(self) -> str: + """ + :return: state directory tied to the user, e.g. ``~/.local/state/$appname/$version`` or + ``$XDG_STATE_HOME/$appname/$version`` + """ + path = os.environ.get("XDG_STATE_HOME", "") + if not path.strip(): + path = os.path.expanduser("~/.local/state") # noqa: PTH111 + return self._append_app_name_and_version(path) + + @property + def user_log_dir(self) -> str: + """:return: log directory tied to the user, same as `user_state_dir` if not opinionated else ``log`` in it""" + path = self.user_state_dir + if self.opinion: + path = os.path.join(path, "log") # noqa: PTH118 + self._optionally_create_directory(path) + return path + + @property + def user_documents_dir(self) -> str: + """:return: documents directory tied to the user, e.g. ``~/Documents``""" + return _get_user_media_dir("XDG_DOCUMENTS_DIR", "~/Documents") + + @property + def user_downloads_dir(self) -> str: + """:return: downloads directory tied to the user, e.g. ``~/Downloads``""" + return _get_user_media_dir("XDG_DOWNLOAD_DIR", "~/Downloads") + + @property + def user_pictures_dir(self) -> str: + """:return: pictures directory tied to the user, e.g. ``~/Pictures``""" + return _get_user_media_dir("XDG_PICTURES_DIR", "~/Pictures") + + @property + def user_videos_dir(self) -> str: + """:return: videos directory tied to the user, e.g. ``~/Videos``""" + return _get_user_media_dir("XDG_VIDEOS_DIR", "~/Videos") + + @property + def user_music_dir(self) -> str: + """:return: music directory tied to the user, e.g. ``~/Music``""" + return _get_user_media_dir("XDG_MUSIC_DIR", "~/Music") + + @property + def user_desktop_dir(self) -> str: + """:return: desktop directory tied to the user, e.g. ``~/Desktop``""" + return _get_user_media_dir("XDG_DESKTOP_DIR", "~/Desktop") + + @property + def user_runtime_dir(self) -> str: + """ + :return: runtime directory tied to the user, e.g. ``/run/user/$(id -u)/$appname/$version`` or + ``$XDG_RUNTIME_DIR/$appname/$version``. + + For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/user/$(id -u)/$appname/$version`` if + exists, otherwise ``/tmp/runtime-$(id -u)/$appname/$version``, if``$XDG_RUNTIME_DIR`` + is not set. + """ + path = os.environ.get("XDG_RUNTIME_DIR", "") + if not path.strip(): + if sys.platform.startswith(("freebsd", "openbsd", "netbsd")): + path = f"/var/run/user/{getuid()}" + if not Path(path).exists(): + path = f"/tmp/runtime-{getuid()}" # noqa: S108 + else: + path = f"/run/user/{getuid()}" + return self._append_app_name_and_version(path) + + @property + def site_runtime_dir(self) -> str: + """ + :return: runtime directory shared by users, e.g. ``/run/$appname/$version`` or \ + ``$XDG_RUNTIME_DIR/$appname/$version``. + + Note that this behaves almost exactly like `user_runtime_dir` if ``$XDG_RUNTIME_DIR`` is set, but will + fall back to paths associated to the root user instead of a regular logged-in user if it's not set. + + If you wish to ensure that a logged-in root user path is returned e.g. ``/run/user/0``, use `user_runtime_dir` + instead. + + For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/$appname/$version`` if ``$XDG_RUNTIME_DIR`` is not set. + """ + path = os.environ.get("XDG_RUNTIME_DIR", "") + if not path.strip(): + if sys.platform.startswith(("freebsd", "openbsd", "netbsd")): + path = "/var/run" + else: + path = "/run" + return self._append_app_name_and_version(path) + + @property + def site_data_path(self) -> Path: + """:return: data path shared by users. Only return the first item, even if ``multipath`` is set to ``True``""" + return self._first_item_as_path_if_multipath(self.site_data_dir) + + @property + def site_config_path(self) -> Path: + """:return: config path shared by the users, returns the first item, even if ``multipath`` is set to ``True``""" + return self._first_item_as_path_if_multipath(self.site_config_dir) + + @property + def site_cache_path(self) -> Path: + """:return: cache path shared by users. Only return the first item, even if ``multipath`` is set to ``True``""" + return self._first_item_as_path_if_multipath(self.site_cache_dir) + + def _first_item_as_path_if_multipath(self, directory: str) -> Path: + if self.multipath: + # If multipath is True, the first path is returned. + directory = directory.split(os.pathsep)[0] + return Path(directory) + + def iter_config_dirs(self) -> Iterator[str]: + """:yield: all user and site configuration directories.""" + yield self.user_config_dir + yield from self._site_config_dirs + + def iter_data_dirs(self) -> Iterator[str]: + """:yield: all user and site data directories.""" + yield self.user_data_dir + yield from self._site_data_dirs + + +def _get_user_media_dir(env_var: str, fallback_tilde_path: str) -> str: + media_dir = _get_user_dirs_folder(env_var) + if media_dir is None: + media_dir = os.environ.get(env_var, "").strip() + if not media_dir: + media_dir = os.path.expanduser(fallback_tilde_path) # noqa: PTH111 + + return media_dir + + +def _get_user_dirs_folder(key: str) -> str | None: + """ + Return directory from user-dirs.dirs config file. + + See https://freedesktop.org/wiki/Software/xdg-user-dirs/. + + """ + user_dirs_config_path = Path(Unix().user_config_dir) / "user-dirs.dirs" + if user_dirs_config_path.exists(): + parser = ConfigParser() + + with user_dirs_config_path.open() as stream: + # Add fake section header, so ConfigParser doesn't complain + parser.read_string(f"[top]\n{stream.read()}") + + if key not in parser["top"]: + return None + + path = parser["top"][key].strip('"') + # Handle relative home paths + return path.replace("$HOME", os.path.expanduser("~")) # noqa: PTH111 + + return None + + +__all__ = [ + "Unix", +] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py new file mode 100644 index 00000000..6483ddce --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py @@ -0,0 +1,16 @@ +# file generated by setuptools_scm +# don't change, don't track in version control +TYPE_CHECKING = False +if TYPE_CHECKING: + from typing import Tuple, Union + VERSION_TUPLE = Tuple[Union[int, str], ...] +else: + VERSION_TUPLE = object + +version: str +__version__: str +__version_tuple__: VERSION_TUPLE +version_tuple: VERSION_TUPLE + +__version__ = version = '4.2.2' +__version_tuple__ = version_tuple = (4, 2, 2) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py new file mode 100644 index 00000000..d7bc9609 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py @@ -0,0 +1,272 @@ +"""Windows.""" + +from __future__ import annotations + +import os +import sys +from functools import lru_cache +from typing import TYPE_CHECKING + +from .api import PlatformDirsABC + +if TYPE_CHECKING: + from collections.abc import Callable + + +class Windows(PlatformDirsABC): + """ + `MSDN on where to store app data files `_. + + Makes use of the `appname `, `appauthor + `, `version `, `roaming + `, `opinion `, `ensure_exists + `. + + """ + + @property + def user_data_dir(self) -> str: + """ + :return: data directory tied to the user, e.g. + ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname`` (not roaming) or + ``%USERPROFILE%\\AppData\\Roaming\\$appauthor\\$appname`` (roaming) + """ + const = "CSIDL_APPDATA" if self.roaming else "CSIDL_LOCAL_APPDATA" + path = os.path.normpath(get_win_folder(const)) + return self._append_parts(path) + + def _append_parts(self, path: str, *, opinion_value: str | None = None) -> str: + params = [] + if self.appname: + if self.appauthor is not False: + author = self.appauthor or self.appname + params.append(author) + params.append(self.appname) + if opinion_value is not None and self.opinion: + params.append(opinion_value) + if self.version: + params.append(self.version) + path = os.path.join(path, *params) # noqa: PTH118 + self._optionally_create_directory(path) + return path + + @property + def site_data_dir(self) -> str: + """:return: data directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname``""" + path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA")) + return self._append_parts(path) + + @property + def user_config_dir(self) -> str: + """:return: config directory tied to the user, same as `user_data_dir`""" + return self.user_data_dir + + @property + def site_config_dir(self) -> str: + """:return: config directory shared by the users, same as `site_data_dir`""" + return self.site_data_dir + + @property + def user_cache_dir(self) -> str: + """ + :return: cache directory tied to the user (if opinionated with ``Cache`` folder within ``$appname``) e.g. + ``%USERPROFILE%\\AppData\\Local\\$appauthor\\$appname\\Cache\\$version`` + """ + path = os.path.normpath(get_win_folder("CSIDL_LOCAL_APPDATA")) + return self._append_parts(path, opinion_value="Cache") + + @property + def site_cache_dir(self) -> str: + """:return: cache directory shared by users, e.g. ``C:\\ProgramData\\$appauthor\\$appname\\Cache\\$version``""" + path = os.path.normpath(get_win_folder("CSIDL_COMMON_APPDATA")) + return self._append_parts(path, opinion_value="Cache") + + @property + def user_state_dir(self) -> str: + """:return: state directory tied to the user, same as `user_data_dir`""" + return self.user_data_dir + + @property + def user_log_dir(self) -> str: + """:return: log directory tied to the user, same as `user_data_dir` if not opinionated else ``Logs`` in it""" + path = self.user_data_dir + if self.opinion: + path = os.path.join(path, "Logs") # noqa: PTH118 + self._optionally_create_directory(path) + return path + + @property + def user_documents_dir(self) -> str: + """:return: documents directory tied to the user e.g. ``%USERPROFILE%\\Documents``""" + return os.path.normpath(get_win_folder("CSIDL_PERSONAL")) + + @property + def user_downloads_dir(self) -> str: + """:return: downloads directory tied to the user e.g. ``%USERPROFILE%\\Downloads``""" + return os.path.normpath(get_win_folder("CSIDL_DOWNLOADS")) + + @property + def user_pictures_dir(self) -> str: + """:return: pictures directory tied to the user e.g. ``%USERPROFILE%\\Pictures``""" + return os.path.normpath(get_win_folder("CSIDL_MYPICTURES")) + + @property + def user_videos_dir(self) -> str: + """:return: videos directory tied to the user e.g. ``%USERPROFILE%\\Videos``""" + return os.path.normpath(get_win_folder("CSIDL_MYVIDEO")) + + @property + def user_music_dir(self) -> str: + """:return: music directory tied to the user e.g. ``%USERPROFILE%\\Music``""" + return os.path.normpath(get_win_folder("CSIDL_MYMUSIC")) + + @property + def user_desktop_dir(self) -> str: + """:return: desktop directory tied to the user, e.g. ``%USERPROFILE%\\Desktop``""" + return os.path.normpath(get_win_folder("CSIDL_DESKTOPDIRECTORY")) + + @property + def user_runtime_dir(self) -> str: + """ + :return: runtime directory tied to the user, e.g. + ``%USERPROFILE%\\AppData\\Local\\Temp\\$appauthor\\$appname`` + """ + path = os.path.normpath(os.path.join(get_win_folder("CSIDL_LOCAL_APPDATA"), "Temp")) # noqa: PTH118 + return self._append_parts(path) + + @property + def site_runtime_dir(self) -> str: + """:return: runtime directory shared by users, same as `user_runtime_dir`""" + return self.user_runtime_dir + + +def get_win_folder_from_env_vars(csidl_name: str) -> str: + """Get folder from environment variables.""" + result = get_win_folder_if_csidl_name_not_env_var(csidl_name) + if result is not None: + return result + + env_var_name = { + "CSIDL_APPDATA": "APPDATA", + "CSIDL_COMMON_APPDATA": "ALLUSERSPROFILE", + "CSIDL_LOCAL_APPDATA": "LOCALAPPDATA", + }.get(csidl_name) + if env_var_name is None: + msg = f"Unknown CSIDL name: {csidl_name}" + raise ValueError(msg) + result = os.environ.get(env_var_name) + if result is None: + msg = f"Unset environment variable: {env_var_name}" + raise ValueError(msg) + return result + + +def get_win_folder_if_csidl_name_not_env_var(csidl_name: str) -> str | None: + """Get a folder for a CSIDL name that does not exist as an environment variable.""" + if csidl_name == "CSIDL_PERSONAL": + return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Documents") # noqa: PTH118 + + if csidl_name == "CSIDL_DOWNLOADS": + return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Downloads") # noqa: PTH118 + + if csidl_name == "CSIDL_MYPICTURES": + return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Pictures") # noqa: PTH118 + + if csidl_name == "CSIDL_MYVIDEO": + return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Videos") # noqa: PTH118 + + if csidl_name == "CSIDL_MYMUSIC": + return os.path.join(os.path.normpath(os.environ["USERPROFILE"]), "Music") # noqa: PTH118 + return None + + +def get_win_folder_from_registry(csidl_name: str) -> str: + """ + Get folder from the registry. + + This is a fallback technique at best. I'm not sure if using the registry for these guarantees us the correct answer + for all CSIDL_* names. + + """ + shell_folder_name = { + "CSIDL_APPDATA": "AppData", + "CSIDL_COMMON_APPDATA": "Common AppData", + "CSIDL_LOCAL_APPDATA": "Local AppData", + "CSIDL_PERSONAL": "Personal", + "CSIDL_DOWNLOADS": "{374DE290-123F-4565-9164-39C4925E467B}", + "CSIDL_MYPICTURES": "My Pictures", + "CSIDL_MYVIDEO": "My Video", + "CSIDL_MYMUSIC": "My Music", + }.get(csidl_name) + if shell_folder_name is None: + msg = f"Unknown CSIDL name: {csidl_name}" + raise ValueError(msg) + if sys.platform != "win32": # only needed for mypy type checker to know that this code runs only on Windows + raise NotImplementedError + import winreg # noqa: PLC0415 + + key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders") + directory, _ = winreg.QueryValueEx(key, shell_folder_name) + return str(directory) + + +def get_win_folder_via_ctypes(csidl_name: str) -> str: + """Get folder with ctypes.""" + # There is no 'CSIDL_DOWNLOADS'. + # Use 'CSIDL_PROFILE' (40) and append the default folder 'Downloads' instead. + # https://learn.microsoft.com/en-us/windows/win32/shell/knownfolderid + + import ctypes # noqa: PLC0415 + + csidl_const = { + "CSIDL_APPDATA": 26, + "CSIDL_COMMON_APPDATA": 35, + "CSIDL_LOCAL_APPDATA": 28, + "CSIDL_PERSONAL": 5, + "CSIDL_MYPICTURES": 39, + "CSIDL_MYVIDEO": 14, + "CSIDL_MYMUSIC": 13, + "CSIDL_DOWNLOADS": 40, + "CSIDL_DESKTOPDIRECTORY": 16, + }.get(csidl_name) + if csidl_const is None: + msg = f"Unknown CSIDL name: {csidl_name}" + raise ValueError(msg) + + buf = ctypes.create_unicode_buffer(1024) + windll = getattr(ctypes, "windll") # noqa: B009 # using getattr to avoid false positive with mypy type checker + windll.shell32.SHGetFolderPathW(None, csidl_const, None, 0, buf) + + # Downgrade to short path name if it has high-bit chars. + if any(ord(c) > 255 for c in buf): # noqa: PLR2004 + buf2 = ctypes.create_unicode_buffer(1024) + if windll.kernel32.GetShortPathNameW(buf.value, buf2, 1024): + buf = buf2 + + if csidl_name == "CSIDL_DOWNLOADS": + return os.path.join(buf.value, "Downloads") # noqa: PTH118 + + return buf.value + + +def _pick_get_win_folder() -> Callable[[str], str]: + try: + import ctypes # noqa: PLC0415 + except ImportError: + pass + else: + if hasattr(ctypes, "windll"): + return get_win_folder_via_ctypes + try: + import winreg # noqa: PLC0415, F401 + except ImportError: + return get_win_folder_from_env_vars + else: + return get_win_folder_from_registry + + +get_win_folder = lru_cache(maxsize=None)(_pick_get_win_folder()) + +__all__ = [ + "Windows", +] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py new file mode 100644 index 00000000..60ae9bb8 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py @@ -0,0 +1,82 @@ +""" + Pygments + ~~~~~~~~ + + Pygments is a syntax highlighting package written in Python. + + It is a generic syntax highlighter for general use in all kinds of software + such as forum systems, wikis or other applications that need to prettify + source code. Highlights are: + + * a wide range of common languages and markup formats is supported + * special attention is paid to details, increasing quality by a fair amount + * support for new languages and formats are added easily + * a number of output formats, presently HTML, LaTeX, RTF, SVG, all image + formats that PIL supports, and ANSI sequences + * it is usable as a command-line tool and as a library + * ... and it highlights even Brainfuck! + + The `Pygments master branch`_ is installable with ``easy_install Pygments==dev``. + + .. _Pygments master branch: + https://github.com/pygments/pygments/archive/master.zip#egg=Pygments-dev + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" +from io import StringIO, BytesIO + +__version__ = '2.18.0' +__docformat__ = 'restructuredtext' + +__all__ = ['lex', 'format', 'highlight'] + + +def lex(code, lexer): + """ + Lex `code` with the `lexer` (must be a `Lexer` instance) + and return an iterable of tokens. Currently, this only calls + `lexer.get_tokens()`. + """ + try: + return lexer.get_tokens(code) + except TypeError: + # Heuristic to catch a common mistake. + from pip._vendor.pygments.lexer import RegexLexer + if isinstance(lexer, type) and issubclass(lexer, RegexLexer): + raise TypeError('lex() argument must be a lexer instance, ' + 'not a class') + raise + + +def format(tokens, formatter, outfile=None): # pylint: disable=redefined-builtin + """ + Format ``tokens`` (an iterable of tokens) with the formatter ``formatter`` + (a `Formatter` instance). + + If ``outfile`` is given and a valid file object (an object with a + ``write`` method), the result will be written to it, otherwise it + is returned as a string. + """ + try: + if not outfile: + realoutfile = getattr(formatter, 'encoding', None) and BytesIO() or StringIO() + formatter.format(tokens, realoutfile) + return realoutfile.getvalue() + else: + formatter.format(tokens, outfile) + except TypeError: + # Heuristic to catch a common mistake. + from pip._vendor.pygments.formatter import Formatter + if isinstance(formatter, type) and issubclass(formatter, Formatter): + raise TypeError('format() argument must be a formatter instance, ' + 'not a class') + raise + + +def highlight(code, lexer, formatter, outfile=None): + """ + This is the most high-level highlighting function. It combines `lex` and + `format` in one function. + """ + return format(lex(code, lexer), formatter, outfile) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py new file mode 100644 index 00000000..dcc6e5ad --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py @@ -0,0 +1,17 @@ +""" + pygments.__main__ + ~~~~~~~~~~~~~~~~~ + + Main entry point for ``python -m pygments``. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import sys +from pip._vendor.pygments.cmdline import main + +try: + sys.exit(main(sys.argv)) +except KeyboardInterrupt: + sys.exit(1) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9367d1681257cb206e1d25a564fc4a782eaec90 GIT binary patch literal 3538 zcmaJ@O>7&-72YK&i6ZsmO16tAu06KvShOY5R*l+GV*|G1*g_Q9u+%hV59DfhM6R{m zWoBkYQIHG6$e~9UE#Mqdz$gMVg?q>`#}@6a7duj6cj1H4qKDqxC_syx`n_2$>85H2 z(r|WW=k0rMzVDm&$Km0efi^j5)qa&XjK9)D(o&tl&IJta8;(&n9Meg8W+PQjHPYp@ zX*lU}#>tfXYKGJIOS9bX^nYNK2b`Rf{lF||@jHm$!S+BQZ|%z%MvkG~XxAFtS5iOx zxYKg~vBX@-EGFB&vesGMt<^pJE7z~Fre&{MHO^YXRf_w}^IuzW-bZ|tDa2z=(@IYi)i*>_mO602d8oN8D~Qp7TBHUpu!qd#y-JoMV^+R{7oQ*7Q^;_pqdn@ev^vBh_< zPU*988wg!{!jheFns3a_C!r%8O3lTE#W^PV`yuyj9%JkTb2TbLX)Swjkg!E*#p~0a z>vNn_fJ|YtUh>>!VTr`|VzH=~V4@2|$@m(ucS%^TzY^N3hvUOrs&iIN(2X+!Rs@4B z->z3Hlz-Qk3Q*Htv|LqZ)hhDTu5{+R%s7AE;cL}u2hwn$vb)vUPD)r^sivGQm1-~= zE*BA8so7y!Z(s?#?ym7t>{xNbZ64*d+WExvG`<43SwjjpMvdhVk&73;*-RYTA zGiL}QKz-L+rnuFZLe4q6`2D48*KaNswO_NK1otJMWtSG;jMwMqE?-$#yrNOm0bw!s zcaoVxD#|V@0VK{{j|MKa6_<0@H~MFar_U8nMSB1eB|=+;f;)<@t3o*V?A>urs@895qze!nX}kg2s{NLGNy-OhXMO zTQ^Omm6M(yc6Nwws^Q-HW~w`%SLB6mPCEJ4UGuKdGS<^SG+JgMv+)a^w0XYHsw5Cq z=l~ExiLN42E~;#@5lY3DfnZj}do-ny1E3f5W`Z#ECKOOK5FYT;Py_2!u!^H7vdf_m znr&0CObX_Mcs4K@GbR2~vBp&;-Z5DK3Q4pDg;+47+)ZBN>-y^(XW-Xl0qRu?Nzhr( zJ?(JUxhducia6(4QWgfHT+e&FP%1D8 z@kSYieKaG(<=AdI%23{-zTOT=S%>pq-7D3D1~1(T>^k=w9M_3mFWnHqExxLFNw(Co zRrjZD&n-zV*0?B1VVB@6SF%*Iuv1YYuhN}jsX&ytzgB`wfLnC+e5ZJNrX-Q>>CWvW zO9-XZ38hEC3W)BiN(I4*et4$4qZr7W=!!#7``!HyJ66_B zN%Le&w`Bfy8ax|FW_!Pz#%4OI#w;Z9;(&uxLVcbCc*C5B-USIcv9f3U=J?Q71!hV6gXUis1xCFeX%uM;tr!V z7A)W5w$i?IhFVZ8{gG;w3Mewr;DE4GAU#0U!DZ+v_=$Q5I+GMxsAF6;71uf~mrAC% zEWpQOxxt06uTF?G6g*apD2p37aPYj4h{s?zu8r@-Vec*<-IV+f3CTwTkPwtMLZGNL z1OZbJR-!ECk%N$nA$mNxtE6paQ64Fe?C#( zzVY7Hjq*?4emb=8$5{3_TS9o6UqVn<+56qYsO?CpMZIW=nL(;E%A?2yl7PH9hU2dh&YJ6jh%qp>I=_ zT4X5TQNAprER*`;s}izf%*Mw-l)$~kdwcY1Ar+^d94}-9@m^4z;#KMnppz6|@1U|Y zPu)ATHi7Pr@ny~!8vFUtd(MYfw#JS;nERx)l|TC^b9M)-h-#sbiv}tcC$KA(DCGt* z@W^bGuR!jFL=xcz`cYke&L-^6KiL!4r0w?tN1@Ri@NQdP# zx)*8FH2;x$#mxNkjA0&rKC=H#{^_10cZUCxo4hmdMgNF7vU6m=Ir8O9pLtH3`!|yV B-unOm literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a7ed41b9e373aa67c9b411556d2283b150e44e26 GIT binary patch literal 784 zcmZ`$J8u&~5Z?7&h;ax62?Rxo6``;teCrrQVIiboB5VahAfZSK&g;A3?wosRcjM$J z5Hvi5ghG{uKY*zC3DlGbDLRRYDqX-0O2wWZNrc1{GqW@E&3rTab#k(RloX51VHlyG z*<&PQL#OvaIXlQkYskiS&c|z5S{CoUs?9{;zWt&eaRtt!MO+R|3hCN7OV{Z=4K;=~Ccl)^C0fO(;5_M^}Kl|ny! zPgM|A%@YzwUMR_vh?7<;PNW-!q#PV}Yqg94qGm;L!ac{8HBukBq*|$5FIOwoYowhJ z=>l0AvLF&zaD@l}GWTeuasT16(H~s%JqtnsHF9hD_8@<^S)X5Ap6^qzK{C%5Mqw|z z&|(RvdbZ47cCylVI&PYFWSM5FiA1E+u@@U=7eYJY#^L%_VEbMOTvL!#hb>R0I^#|^ zJ-Yx&J7U~!h7vg6h~-Dr%f=jRQ#T5Lb|TA#FaTF^bmM(_rtnI@cP*a(VIEAoFeXmUi=e%mnR;lnLlw)SCGY14!#OaW@DjNJ7 z9sQeHCC%RmB74J!oBXsQm~AhbO6_YH<6pTv)_dm=p7?>v`?`jwcJ))w>#rIw8gEv% wXLgG3i*Fx)*QfvNj$izZ@Uisk2QL@07E=e}jOzC8(k%LXVQxbEQou_81*@UgEC2ui literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..638071e9f11548633a86eace8198f779ef266a6b GIT binary patch literal 26634 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


    `F6x-F#G5z2-t%WYOZIJ7 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 O%P`|R-cF|1s?VRf+oRb4 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..171eae1ce67f9636e1718ba3a09db935d3fef9ae GIT binary patch literal 3271 zcmaJ@(Qg~K87EJ7lA_9XVmr>}I5E?7n6)O7>uwq1)n2p^_q2@+t>J8hCr#-msV&+@O;S+1ZAr4a&O6~&No7@ z7EmI}jv)R@HK582zA5o&$*Bc`=q2)c{&#y&i)r#|+$2+zlc!EjO-_BCEY_9n zo6-J6P-o=?;gphBE?#*3`#+e^t8J$P-=!5!r^$Eb&*<^*oqzT0-27Qm3K?uI96#Xs z%$yr}r+k#LlHZ*vsD5Fz&{d;^J-m^=lxX5J=!efBbjdVOGto4gD2~=8biL0+O*D^k zM&p*+{UVnh`<$#$Q4T#KLgG}bL7g}i;zPKcMF>e)iah5quFM?51p|NbA|V13Xh*W|~cf?Yq&V(W!ZhDNWZ{&C>YW@>9>=fK3Z zYT1a%q;LdmBLK;F55+ACRu#g8=rHQ;Q62MNb zxu?JkC+INo#@|R^UbjCk`pqDz5NDzy0+a;$DZY^wkcO=r)|3e zz=g5?bCK8Ql#sSlOCU``Fm?cz02bjAmp2rlA-g*O>`O54W%%)LKm}MBMA`i}a4T~& z^TCg{$4)*NIkM?&jqQx&?+*>PPTxFzfB4{|lsTE~ATyhKh)gTR`oYqLU$?|?=!`*E z3sD4V0+NJ>iwQ^?sA#IBVbx9WC8^Kc2%?Mak#jO%TXX|psa8VWgn-u~fm+z@%7R+K zdjgG+xS)grRC28n%VZ>8@d@RTC1636QAd&yWD7Tu4J}>jh)M855L40p-!|H�Qhk zacLaW3@*g4_`cvy6r8c7h#+iCPIH$0B9am(HXjH2R`rl@v^5e&W*cb@ZVB*iQfP?euYV zthrp04MV?1VAi&OTyp{qHH9cPE(hg`OqwejB{XbQe#$BbKQ7U?fgTwNEB!cwt?^D0 zThHm)a?aBsLttbtWMaU`7e+BzH$eUl!nDR+b>pur0z(~F5DgE&h9@(8FE(WQjL@Jl zqfBE?#poa)9P(9B3hH@s0UCQ2>4HmHJ2ermIKl@(hqSC$=Y&U)g?tIwS!Hm2Fi?t~ zO*yH`{G;-)FElXcdSq6HSRwPe3d(MoeIlLwSuPW=*-n)m zE|sXg?*d4c0&07oZL5ITwnmu(je^t>SaLU`6wn%ndeyBJP zcKRiq`)1kKz(N9(%f`b5#`uwu#%5z>% literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c47f1884998427d954a8f9322a914695c0d7bd52 GIT binary patch literal 4770 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 J8N}U4{{t*>m_z^o literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..76bd49e7bdcce879a9758fa0b1b00413dddedaa0 GIT binary patch literal 2658 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..516eb58a661320084222471e4ed2221618ab8bdc GIT binary patch literal 4806 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 To9Dfc2z;&!I+ENePyhb`6gBu& literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c84613d16f6392e8efa21f2f92e077fa5dd93c0 GIT binary patch literal 6743 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c3d02d7d4da88830b6c0376ed5413dc065d7822 GIT binary patch literal 8239 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⪰$syb08G~mAJe%e@ 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 U&L!vg<7sR1j{SJfx=ii=0c4I|vj6}9 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1bb9adf50c406991914c219315c42f395b32920b GIT binary patch literal 14119 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py new file mode 100644 index 00000000..0a7072ef --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py @@ -0,0 +1,668 @@ +""" + pygments.cmdline + ~~~~~~~~~~~~~~~~ + + Command line interface. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import os +import sys +import shutil +import argparse +from textwrap import dedent + +from pip._vendor.pygments import __version__, highlight +from pip._vendor.pygments.util import ClassNotFound, OptionError, docstring_headline, \ + guess_decode, guess_decode_from_terminal, terminal_encoding, \ + UnclosingTextIOWrapper +from pip._vendor.pygments.lexers import get_all_lexers, get_lexer_by_name, guess_lexer, \ + load_lexer_from_file, get_lexer_for_filename, find_lexer_class_for_filename +from pip._vendor.pygments.lexers.special import TextLexer +from pip._vendor.pygments.formatters.latex import LatexEmbeddedLexer, LatexFormatter +from pip._vendor.pygments.formatters import get_all_formatters, get_formatter_by_name, \ + load_formatter_from_file, get_formatter_for_filename, find_formatter_class +from pip._vendor.pygments.formatters.terminal import TerminalFormatter +from pip._vendor.pygments.formatters.terminal256 import Terminal256Formatter, TerminalTrueColorFormatter +from pip._vendor.pygments.filters import get_all_filters, find_filter_class +from pip._vendor.pygments.styles import get_all_styles, get_style_by_name + + +def _parse_options(o_strs): + opts = {} + if not o_strs: + return opts + for o_str in o_strs: + if not o_str.strip(): + continue + o_args = o_str.split(',') + for o_arg in o_args: + o_arg = o_arg.strip() + try: + o_key, o_val = o_arg.split('=', 1) + o_key = o_key.strip() + o_val = o_val.strip() + except ValueError: + opts[o_arg] = True + else: + opts[o_key] = o_val + return opts + + +def _parse_filters(f_strs): + filters = [] + if not f_strs: + return filters + for f_str in f_strs: + if ':' in f_str: + fname, fopts = f_str.split(':', 1) + filters.append((fname, _parse_options([fopts]))) + else: + filters.append((f_str, {})) + return filters + + +def _print_help(what, name): + try: + if what == 'lexer': + cls = get_lexer_by_name(name) + print(f"Help on the {cls.name} lexer:") + print(dedent(cls.__doc__)) + elif what == 'formatter': + cls = find_formatter_class(name) + print(f"Help on the {cls.name} formatter:") + print(dedent(cls.__doc__)) + elif what == 'filter': + cls = find_filter_class(name) + print(f"Help on the {name} filter:") + print(dedent(cls.__doc__)) + return 0 + except (AttributeError, ValueError): + print(f"{what} not found!", file=sys.stderr) + return 1 + + +def _print_list(what): + if what == 'lexer': + print() + print("Lexers:") + print("~~~~~~~") + + info = [] + for fullname, names, exts, _ in get_all_lexers(): + tup = (', '.join(names)+':', fullname, + exts and '(filenames ' + ', '.join(exts) + ')' or '') + info.append(tup) + info.sort() + for i in info: + print(('* {}\n {} {}').format(*i)) + + elif what == 'formatter': + print() + print("Formatters:") + print("~~~~~~~~~~~") + + info = [] + for cls in get_all_formatters(): + doc = docstring_headline(cls) + tup = (', '.join(cls.aliases) + ':', doc, cls.filenames and + '(filenames ' + ', '.join(cls.filenames) + ')' or '') + info.append(tup) + info.sort() + for i in info: + print(('* {}\n {} {}').format(*i)) + + elif what == 'filter': + print() + print("Filters:") + print("~~~~~~~~") + + for name in get_all_filters(): + cls = find_filter_class(name) + print("* " + name + ':') + print(f" {docstring_headline(cls)}") + + elif what == 'style': + print() + print("Styles:") + print("~~~~~~~") + + for name in get_all_styles(): + cls = get_style_by_name(name) + print("* " + name + ':') + print(f" {docstring_headline(cls)}") + + +def _print_list_as_json(requested_items): + import json + result = {} + if 'lexer' in requested_items: + info = {} + for fullname, names, filenames, mimetypes in get_all_lexers(): + info[fullname] = { + 'aliases': names, + 'filenames': filenames, + 'mimetypes': mimetypes + } + result['lexers'] = info + + if 'formatter' in requested_items: + info = {} + for cls in get_all_formatters(): + doc = docstring_headline(cls) + info[cls.name] = { + 'aliases': cls.aliases, + 'filenames': cls.filenames, + 'doc': doc + } + result['formatters'] = info + + if 'filter' in requested_items: + info = {} + for name in get_all_filters(): + cls = find_filter_class(name) + info[name] = { + 'doc': docstring_headline(cls) + } + result['filters'] = info + + if 'style' in requested_items: + info = {} + for name in get_all_styles(): + cls = get_style_by_name(name) + info[name] = { + 'doc': docstring_headline(cls) + } + result['styles'] = info + + json.dump(result, sys.stdout) + +def main_inner(parser, argns): + if argns.help: + parser.print_help() + return 0 + + if argns.V: + print(f'Pygments version {__version__}, (c) 2006-2024 by Georg Brandl, Matthäus ' + 'Chajdas and contributors.') + return 0 + + def is_only_option(opt): + return not any(v for (k, v) in vars(argns).items() if k != opt) + + # handle ``pygmentize -L`` + if argns.L is not None: + arg_set = set() + for k, v in vars(argns).items(): + if v: + arg_set.add(k) + + arg_set.discard('L') + arg_set.discard('json') + + if arg_set: + parser.print_help(sys.stderr) + return 2 + + # print version + if not argns.json: + main(['', '-V']) + allowed_types = {'lexer', 'formatter', 'filter', 'style'} + largs = [arg.rstrip('s') for arg in argns.L] + if any(arg not in allowed_types for arg in largs): + parser.print_help(sys.stderr) + return 0 + if not largs: + largs = allowed_types + if not argns.json: + for arg in largs: + _print_list(arg) + else: + _print_list_as_json(largs) + return 0 + + # handle ``pygmentize -H`` + if argns.H: + if not is_only_option('H'): + parser.print_help(sys.stderr) + return 2 + what, name = argns.H + if what not in ('lexer', 'formatter', 'filter'): + parser.print_help(sys.stderr) + return 2 + return _print_help(what, name) + + # parse -O options + parsed_opts = _parse_options(argns.O or []) + + # parse -P options + for p_opt in argns.P or []: + try: + name, value = p_opt.split('=', 1) + except ValueError: + parsed_opts[p_opt] = True + else: + parsed_opts[name] = value + + # encodings + inencoding = parsed_opts.get('inencoding', parsed_opts.get('encoding')) + outencoding = parsed_opts.get('outencoding', parsed_opts.get('encoding')) + + # handle ``pygmentize -N`` + if argns.N: + lexer = find_lexer_class_for_filename(argns.N) + if lexer is None: + lexer = TextLexer + + print(lexer.aliases[0]) + return 0 + + # handle ``pygmentize -C`` + if argns.C: + inp = sys.stdin.buffer.read() + try: + lexer = guess_lexer(inp, inencoding=inencoding) + except ClassNotFound: + lexer = TextLexer + + print(lexer.aliases[0]) + return 0 + + # handle ``pygmentize -S`` + S_opt = argns.S + a_opt = argns.a + if S_opt is not None: + f_opt = argns.f + if not f_opt: + parser.print_help(sys.stderr) + return 2 + if argns.l or argns.INPUTFILE: + parser.print_help(sys.stderr) + return 2 + + try: + parsed_opts['style'] = S_opt + fmter = get_formatter_by_name(f_opt, **parsed_opts) + except ClassNotFound as err: + print(err, file=sys.stderr) + return 1 + + print(fmter.get_style_defs(a_opt or '')) + return 0 + + # if no -S is given, -a is not allowed + if argns.a is not None: + parser.print_help(sys.stderr) + return 2 + + # parse -F options + F_opts = _parse_filters(argns.F or []) + + # -x: allow custom (eXternal) lexers and formatters + allow_custom_lexer_formatter = bool(argns.x) + + # select lexer + lexer = None + + # given by name? + lexername = argns.l + if lexername: + # custom lexer, located relative to user's cwd + if allow_custom_lexer_formatter and '.py' in lexername: + try: + filename = None + name = None + if ':' in lexername: + filename, name = lexername.rsplit(':', 1) + + if '.py' in name: + # This can happen on Windows: If the lexername is + # C:\lexer.py -- return to normal load path in that case + name = None + + if filename and name: + lexer = load_lexer_from_file(filename, name, + **parsed_opts) + else: + lexer = load_lexer_from_file(lexername, **parsed_opts) + except ClassNotFound as err: + print('Error:', err, file=sys.stderr) + return 1 + else: + try: + lexer = get_lexer_by_name(lexername, **parsed_opts) + except (OptionError, ClassNotFound) as err: + print('Error:', err, file=sys.stderr) + return 1 + + # read input code + code = None + + if argns.INPUTFILE: + if argns.s: + print('Error: -s option not usable when input file specified', + file=sys.stderr) + return 2 + + infn = argns.INPUTFILE + try: + with open(infn, 'rb') as infp: + code = infp.read() + except Exception as err: + print('Error: cannot read infile:', err, file=sys.stderr) + return 1 + if not inencoding: + code, inencoding = guess_decode(code) + + # do we have to guess the lexer? + if not lexer: + try: + lexer = get_lexer_for_filename(infn, code, **parsed_opts) + except ClassNotFound as err: + if argns.g: + try: + lexer = guess_lexer(code, **parsed_opts) + except ClassNotFound: + lexer = TextLexer(**parsed_opts) + else: + print('Error:', err, file=sys.stderr) + return 1 + except OptionError as err: + print('Error:', err, file=sys.stderr) + return 1 + + elif not argns.s: # treat stdin as full file (-s support is later) + # read code from terminal, always in binary mode since we want to + # decode ourselves and be tolerant with it + code = sys.stdin.buffer.read() # use .buffer to get a binary stream + if not inencoding: + code, inencoding = guess_decode_from_terminal(code, sys.stdin) + # else the lexer will do the decoding + if not lexer: + try: + lexer = guess_lexer(code, **parsed_opts) + except ClassNotFound: + lexer = TextLexer(**parsed_opts) + + else: # -s option needs a lexer with -l + if not lexer: + print('Error: when using -s a lexer has to be selected with -l', + file=sys.stderr) + return 2 + + # process filters + for fname, fopts in F_opts: + try: + lexer.add_filter(fname, **fopts) + except ClassNotFound as err: + print('Error:', err, file=sys.stderr) + return 1 + + # select formatter + outfn = argns.o + fmter = argns.f + if fmter: + # custom formatter, located relative to user's cwd + if allow_custom_lexer_formatter and '.py' in fmter: + try: + filename = None + name = None + if ':' in fmter: + # Same logic as above for custom lexer + filename, name = fmter.rsplit(':', 1) + + if '.py' in name: + name = None + + if filename and name: + fmter = load_formatter_from_file(filename, name, + **parsed_opts) + else: + fmter = load_formatter_from_file(fmter, **parsed_opts) + except ClassNotFound as err: + print('Error:', err, file=sys.stderr) + return 1 + else: + try: + fmter = get_formatter_by_name(fmter, **parsed_opts) + except (OptionError, ClassNotFound) as err: + print('Error:', err, file=sys.stderr) + return 1 + + if outfn: + if not fmter: + try: + fmter = get_formatter_for_filename(outfn, **parsed_opts) + except (OptionError, ClassNotFound) as err: + print('Error:', err, file=sys.stderr) + return 1 + try: + outfile = open(outfn, 'wb') + except Exception as err: + print('Error: cannot open outfile:', err, file=sys.stderr) + return 1 + else: + if not fmter: + if os.environ.get('COLORTERM','') in ('truecolor', '24bit'): + fmter = TerminalTrueColorFormatter(**parsed_opts) + elif '256' in os.environ.get('TERM', ''): + fmter = Terminal256Formatter(**parsed_opts) + else: + fmter = TerminalFormatter(**parsed_opts) + outfile = sys.stdout.buffer + + # determine output encoding if not explicitly selected + if not outencoding: + if outfn: + # output file? use lexer encoding for now (can still be None) + fmter.encoding = inencoding + else: + # else use terminal encoding + fmter.encoding = terminal_encoding(sys.stdout) + + # provide coloring under Windows, if possible + if not outfn and sys.platform in ('win32', 'cygwin') and \ + fmter.name in ('Terminal', 'Terminal256'): # pragma: no cover + # unfortunately colorama doesn't support binary streams on Py3 + outfile = UnclosingTextIOWrapper(outfile, encoding=fmter.encoding) + fmter.encoding = None + try: + import colorama.initialise + except ImportError: + pass + else: + outfile = colorama.initialise.wrap_stream( + outfile, convert=None, strip=None, autoreset=False, wrap=True) + + # When using the LaTeX formatter and the option `escapeinside` is + # specified, we need a special lexer which collects escaped text + # before running the chosen language lexer. + escapeinside = parsed_opts.get('escapeinside', '') + if len(escapeinside) == 2 and isinstance(fmter, LatexFormatter): + left = escapeinside[0] + right = escapeinside[1] + lexer = LatexEmbeddedLexer(left, right, lexer) + + # ... and do it! + if not argns.s: + # process whole input as per normal... + try: + highlight(code, lexer, fmter, outfile) + finally: + if outfn: + outfile.close() + return 0 + else: + # line by line processing of stdin (eg: for 'tail -f')... + try: + while 1: + line = sys.stdin.buffer.readline() + if not line: + break + if not inencoding: + line = guess_decode_from_terminal(line, sys.stdin)[0] + highlight(line, lexer, fmter, outfile) + if hasattr(outfile, 'flush'): + outfile.flush() + return 0 + except KeyboardInterrupt: # pragma: no cover + return 0 + finally: + if outfn: + outfile.close() + + +class HelpFormatter(argparse.HelpFormatter): + def __init__(self, prog, indent_increment=2, max_help_position=16, width=None): + if width is None: + try: + width = shutil.get_terminal_size().columns - 2 + except Exception: + pass + argparse.HelpFormatter.__init__(self, prog, indent_increment, + max_help_position, width) + + +def main(args=sys.argv): + """ + Main command line entry point. + """ + desc = "Highlight an input file and write the result to an output file." + parser = argparse.ArgumentParser(description=desc, add_help=False, + formatter_class=HelpFormatter) + + operation = parser.add_argument_group('Main operation') + lexersel = operation.add_mutually_exclusive_group() + lexersel.add_argument( + '-l', metavar='LEXER', + help='Specify the lexer to use. (Query names with -L.) If not ' + 'given and -g is not present, the lexer is guessed from the filename.') + lexersel.add_argument( + '-g', action='store_true', + help='Guess the lexer from the file contents, or pass through ' + 'as plain text if nothing can be guessed.') + operation.add_argument( + '-F', metavar='FILTER[:options]', action='append', + help='Add a filter to the token stream. (Query names with -L.) ' + 'Filter options are given after a colon if necessary.') + operation.add_argument( + '-f', metavar='FORMATTER', + help='Specify the formatter to use. (Query names with -L.) ' + 'If not given, the formatter is guessed from the output filename, ' + 'and defaults to the terminal formatter if the output is to the ' + 'terminal or an unknown file extension.') + operation.add_argument( + '-O', metavar='OPTION=value[,OPTION=value,...]', action='append', + help='Give options to the lexer and formatter as a comma-separated ' + 'list of key-value pairs. ' + 'Example: `-O bg=light,python=cool`.') + operation.add_argument( + '-P', metavar='OPTION=value', action='append', + help='Give a single option to the lexer and formatter - with this ' + 'you can pass options whose value contains commas and equal signs. ' + 'Example: `-P "heading=Pygments, the Python highlighter"`.') + operation.add_argument( + '-o', metavar='OUTPUTFILE', + help='Where to write the output. Defaults to standard output.') + + operation.add_argument( + 'INPUTFILE', nargs='?', + help='Where to read the input. Defaults to standard input.') + + flags = parser.add_argument_group('Operation flags') + flags.add_argument( + '-v', action='store_true', + help='Print a detailed traceback on unhandled exceptions, which ' + 'is useful for debugging and bug reports.') + flags.add_argument( + '-s', action='store_true', + help='Process lines one at a time until EOF, rather than waiting to ' + 'process the entire file. This only works for stdin, only for lexers ' + 'with no line-spanning constructs, and is intended for streaming ' + 'input such as you get from `tail -f`. ' + 'Example usage: `tail -f sql.log | pygmentize -s -l sql`.') + flags.add_argument( + '-x', action='store_true', + help='Allow custom lexers and formatters to be loaded from a .py file ' + 'relative to the current working directory. For example, ' + '`-l ./customlexer.py -x`. By default, this option expects a file ' + 'with a class named CustomLexer or CustomFormatter; you can also ' + 'specify your own class name with a colon (`-l ./lexer.py:MyLexer`). ' + 'Users should be very careful not to use this option with untrusted ' + 'files, because it will import and run them.') + flags.add_argument('--json', help='Output as JSON. This can ' + 'be only used in conjunction with -L.', + default=False, + action='store_true') + + special_modes_group = parser.add_argument_group( + 'Special modes - do not do any highlighting') + special_modes = special_modes_group.add_mutually_exclusive_group() + special_modes.add_argument( + '-S', metavar='STYLE -f formatter', + help='Print style definitions for STYLE for a formatter ' + 'given with -f. The argument given by -a is formatter ' + 'dependent.') + special_modes.add_argument( + '-L', nargs='*', metavar='WHAT', + help='List lexers, formatters, styles or filters -- ' + 'give additional arguments for the thing(s) you want to list ' + '(e.g. "styles"), or omit them to list everything.') + special_modes.add_argument( + '-N', metavar='FILENAME', + help='Guess and print out a lexer name based solely on the given ' + 'filename. Does not take input or highlight anything. If no specific ' + 'lexer can be determined, "text" is printed.') + special_modes.add_argument( + '-C', action='store_true', + help='Like -N, but print out a lexer name based solely on ' + 'a given content from standard input.') + special_modes.add_argument( + '-H', action='store', nargs=2, metavar=('NAME', 'TYPE'), + help='Print detailed help for the object of type , ' + 'where is one of "lexer", "formatter" or "filter".') + special_modes.add_argument( + '-V', action='store_true', + help='Print the package version.') + special_modes.add_argument( + '-h', '--help', action='store_true', + help='Print this help.') + special_modes_group.add_argument( + '-a', metavar='ARG', + help='Formatter-specific additional argument for the -S (print ' + 'style sheet) mode.') + + argns = parser.parse_args(args[1:]) + + try: + return main_inner(parser, argns) + except BrokenPipeError: + # someone closed our stdout, e.g. by quitting a pager. + return 0 + except Exception: + if argns.v: + print(file=sys.stderr) + print('*' * 65, file=sys.stderr) + print('An unhandled exception occurred while highlighting.', + file=sys.stderr) + print('Please report the whole traceback to the issue tracker at', + file=sys.stderr) + print('.', + file=sys.stderr) + print('*' * 65, file=sys.stderr) + print(file=sys.stderr) + raise + import traceback + info = traceback.format_exception(*sys.exc_info()) + msg = info[-1].strip() + if len(info) >= 3: + # extract relevant file and position info + msg += '\n (f{})'.format(info[-2].split('\n')[0].strip()[1:]) + print(file=sys.stderr) + print('*** Error while highlighting:', file=sys.stderr) + print(msg, file=sys.stderr) + print('*** If this is a bug you want to report, please rerun with -v.', + file=sys.stderr) + return 1 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/console.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/console.py new file mode 100644 index 00000000..4c1a0621 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/console.py @@ -0,0 +1,70 @@ +""" + pygments.console + ~~~~~~~~~~~~~~~~ + + Format colored console output. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +esc = "\x1b[" + +codes = {} +codes[""] = "" +codes["reset"] = esc + "39;49;00m" + +codes["bold"] = esc + "01m" +codes["faint"] = esc + "02m" +codes["standout"] = esc + "03m" +codes["underline"] = esc + "04m" +codes["blink"] = esc + "05m" +codes["overline"] = esc + "06m" + +dark_colors = ["black", "red", "green", "yellow", "blue", + "magenta", "cyan", "gray"] +light_colors = ["brightblack", "brightred", "brightgreen", "brightyellow", "brightblue", + "brightmagenta", "brightcyan", "white"] + +x = 30 +for dark, light in zip(dark_colors, light_colors): + codes[dark] = esc + "%im" % x + codes[light] = esc + "%im" % (60 + x) + x += 1 + +del dark, light, x + +codes["white"] = codes["bold"] + + +def reset_color(): + return codes["reset"] + + +def colorize(color_key, text): + return codes[color_key] + text + codes["reset"] + + +def ansiformat(attr, text): + """ + Format ``text`` with a color and/or some attributes:: + + color normal color + *color* bold color + _color_ underlined color + +color+ blinking color + """ + result = [] + if attr[:1] == attr[-1:] == '+': + result.append(codes['blink']) + attr = attr[1:-1] + if attr[:1] == attr[-1:] == '*': + result.append(codes['bold']) + attr = attr[1:-1] + if attr[:1] == attr[-1:] == '_': + result.append(codes['underline']) + attr = attr[1:-1] + result.append(codes[attr]) + result.append(text) + result.append(codes['reset']) + return ''.join(result) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py new file mode 100644 index 00000000..aa6f7604 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py @@ -0,0 +1,70 @@ +""" + pygments.filter + ~~~~~~~~~~~~~~~ + + Module that implements the default filter. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + + +def apply_filters(stream, filters, lexer=None): + """ + Use this method to apply an iterable of filters to + a stream. If lexer is given it's forwarded to the + filter, otherwise the filter receives `None`. + """ + def _apply(filter_, stream): + yield from filter_.filter(lexer, stream) + for filter_ in filters: + stream = _apply(filter_, stream) + return stream + + +def simplefilter(f): + """ + Decorator that converts a function into a filter:: + + @simplefilter + def lowercase(self, lexer, stream, options): + for ttype, value in stream: + yield ttype, value.lower() + """ + return type(f.__name__, (FunctionFilter,), { + '__module__': getattr(f, '__module__'), + '__doc__': f.__doc__, + 'function': f, + }) + + +class Filter: + """ + Default filter. Subclass this class or use the `simplefilter` + decorator to create own filters. + """ + + def __init__(self, **options): + self.options = options + + def filter(self, lexer, stream): + raise NotImplementedError() + + +class FunctionFilter(Filter): + """ + Abstract class used by `simplefilter` to create simple + function filters on the fly. The `simplefilter` decorator + automatically creates subclasses of this class for + functions passed to it. + """ + function = None + + def __init__(self, **options): + if not hasattr(self, 'function'): + raise TypeError(f'{self.__class__.__name__!r} used without bound function') + Filter.__init__(self, **options) + + def filter(self, lexer, stream): + # pylint: disable=not-callable + yield from self.function(lexer, stream, self.options) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py new file mode 100644 index 00000000..9255ca22 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py @@ -0,0 +1,940 @@ +""" + pygments.filters + ~~~~~~~~~~~~~~~~ + + Module containing filter lookup functions and default + filters. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re + +from pip._vendor.pygments.token import String, Comment, Keyword, Name, Error, Whitespace, \ + string_to_tokentype +from pip._vendor.pygments.filter import Filter +from pip._vendor.pygments.util import get_list_opt, get_int_opt, get_bool_opt, \ + get_choice_opt, ClassNotFound, OptionError +from pip._vendor.pygments.plugin import find_plugin_filters + + +def find_filter_class(filtername): + """Lookup a filter by name. Return None if not found.""" + if filtername in FILTERS: + return FILTERS[filtername] + for name, cls in find_plugin_filters(): + if name == filtername: + return cls + return None + + +def get_filter_by_name(filtername, **options): + """Return an instantiated filter. + + Options are passed to the filter initializer if wanted. + Raise a ClassNotFound if not found. + """ + cls = find_filter_class(filtername) + if cls: + return cls(**options) + else: + raise ClassNotFound(f'filter {filtername!r} not found') + + +def get_all_filters(): + """Return a generator of all filter names.""" + yield from FILTERS + for name, _ in find_plugin_filters(): + yield name + + +def _replace_special(ttype, value, regex, specialttype, + replacefunc=lambda x: x): + last = 0 + for match in regex.finditer(value): + start, end = match.start(), match.end() + if start != last: + yield ttype, value[last:start] + yield specialttype, replacefunc(value[start:end]) + last = end + if last != len(value): + yield ttype, value[last:] + + +class CodeTagFilter(Filter): + """Highlight special code tags in comments and docstrings. + + Options accepted: + + `codetags` : list of strings + A list of strings that are flagged as code tags. The default is to + highlight ``XXX``, ``TODO``, ``FIXME``, ``BUG`` and ``NOTE``. + + .. versionchanged:: 2.13 + Now recognizes ``FIXME`` by default. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + tags = get_list_opt(options, 'codetags', + ['XXX', 'TODO', 'FIXME', 'BUG', 'NOTE']) + self.tag_re = re.compile(r'\b({})\b'.format('|'.join([ + re.escape(tag) for tag in tags if tag + ]))) + + def filter(self, lexer, stream): + regex = self.tag_re + for ttype, value in stream: + if ttype in String.Doc or \ + ttype in Comment and \ + ttype not in Comment.Preproc: + yield from _replace_special(ttype, value, regex, Comment.Special) + else: + yield ttype, value + + +class SymbolFilter(Filter): + """Convert mathematical symbols such as \\ in Isabelle + or \\longrightarrow in LaTeX into Unicode characters. + + This is mostly useful for HTML or console output when you want to + approximate the source rendering you'd see in an IDE. + + Options accepted: + + `lang` : string + The symbol language. Must be one of ``'isabelle'`` or + ``'latex'``. The default is ``'isabelle'``. + """ + + latex_symbols = { + '\\alpha' : '\U000003b1', + '\\beta' : '\U000003b2', + '\\gamma' : '\U000003b3', + '\\delta' : '\U000003b4', + '\\varepsilon' : '\U000003b5', + '\\zeta' : '\U000003b6', + '\\eta' : '\U000003b7', + '\\vartheta' : '\U000003b8', + '\\iota' : '\U000003b9', + '\\kappa' : '\U000003ba', + '\\lambda' : '\U000003bb', + '\\mu' : '\U000003bc', + '\\nu' : '\U000003bd', + '\\xi' : '\U000003be', + '\\pi' : '\U000003c0', + '\\varrho' : '\U000003c1', + '\\sigma' : '\U000003c3', + '\\tau' : '\U000003c4', + '\\upsilon' : '\U000003c5', + '\\varphi' : '\U000003c6', + '\\chi' : '\U000003c7', + '\\psi' : '\U000003c8', + '\\omega' : '\U000003c9', + '\\Gamma' : '\U00000393', + '\\Delta' : '\U00000394', + '\\Theta' : '\U00000398', + '\\Lambda' : '\U0000039b', + '\\Xi' : '\U0000039e', + '\\Pi' : '\U000003a0', + '\\Sigma' : '\U000003a3', + '\\Upsilon' : '\U000003a5', + '\\Phi' : '\U000003a6', + '\\Psi' : '\U000003a8', + '\\Omega' : '\U000003a9', + '\\leftarrow' : '\U00002190', + '\\longleftarrow' : '\U000027f5', + '\\rightarrow' : '\U00002192', + '\\longrightarrow' : '\U000027f6', + '\\Leftarrow' : '\U000021d0', + '\\Longleftarrow' : '\U000027f8', + '\\Rightarrow' : '\U000021d2', + '\\Longrightarrow' : '\U000027f9', + '\\leftrightarrow' : '\U00002194', + '\\longleftrightarrow' : '\U000027f7', + '\\Leftrightarrow' : '\U000021d4', + '\\Longleftrightarrow' : '\U000027fa', + '\\mapsto' : '\U000021a6', + '\\longmapsto' : '\U000027fc', + '\\relbar' : '\U00002500', + '\\Relbar' : '\U00002550', + '\\hookleftarrow' : '\U000021a9', + '\\hookrightarrow' : '\U000021aa', + '\\leftharpoondown' : '\U000021bd', + '\\rightharpoondown' : '\U000021c1', + '\\leftharpoonup' : '\U000021bc', + '\\rightharpoonup' : '\U000021c0', + '\\rightleftharpoons' : '\U000021cc', + '\\leadsto' : '\U0000219d', + '\\downharpoonleft' : '\U000021c3', + '\\downharpoonright' : '\U000021c2', + '\\upharpoonleft' : '\U000021bf', + '\\upharpoonright' : '\U000021be', + '\\restriction' : '\U000021be', + '\\uparrow' : '\U00002191', + '\\Uparrow' : '\U000021d1', + '\\downarrow' : '\U00002193', + '\\Downarrow' : '\U000021d3', + '\\updownarrow' : '\U00002195', + '\\Updownarrow' : '\U000021d5', + '\\langle' : '\U000027e8', + '\\rangle' : '\U000027e9', + '\\lceil' : '\U00002308', + '\\rceil' : '\U00002309', + '\\lfloor' : '\U0000230a', + '\\rfloor' : '\U0000230b', + '\\flqq' : '\U000000ab', + '\\frqq' : '\U000000bb', + '\\bot' : '\U000022a5', + '\\top' : '\U000022a4', + '\\wedge' : '\U00002227', + '\\bigwedge' : '\U000022c0', + '\\vee' : '\U00002228', + '\\bigvee' : '\U000022c1', + '\\forall' : '\U00002200', + '\\exists' : '\U00002203', + '\\nexists' : '\U00002204', + '\\neg' : '\U000000ac', + '\\Box' : '\U000025a1', + '\\Diamond' : '\U000025c7', + '\\vdash' : '\U000022a2', + '\\models' : '\U000022a8', + '\\dashv' : '\U000022a3', + '\\surd' : '\U0000221a', + '\\le' : '\U00002264', + '\\ge' : '\U00002265', + '\\ll' : '\U0000226a', + '\\gg' : '\U0000226b', + '\\lesssim' : '\U00002272', + '\\gtrsim' : '\U00002273', + '\\lessapprox' : '\U00002a85', + '\\gtrapprox' : '\U00002a86', + '\\in' : '\U00002208', + '\\notin' : '\U00002209', + '\\subset' : '\U00002282', + '\\supset' : '\U00002283', + '\\subseteq' : '\U00002286', + '\\supseteq' : '\U00002287', + '\\sqsubset' : '\U0000228f', + '\\sqsupset' : '\U00002290', + '\\sqsubseteq' : '\U00002291', + '\\sqsupseteq' : '\U00002292', + '\\cap' : '\U00002229', + '\\bigcap' : '\U000022c2', + '\\cup' : '\U0000222a', + '\\bigcup' : '\U000022c3', + '\\sqcup' : '\U00002294', + '\\bigsqcup' : '\U00002a06', + '\\sqcap' : '\U00002293', + '\\Bigsqcap' : '\U00002a05', + '\\setminus' : '\U00002216', + '\\propto' : '\U0000221d', + '\\uplus' : '\U0000228e', + '\\bigplus' : '\U00002a04', + '\\sim' : '\U0000223c', + '\\doteq' : '\U00002250', + '\\simeq' : '\U00002243', + '\\approx' : '\U00002248', + '\\asymp' : '\U0000224d', + '\\cong' : '\U00002245', + '\\equiv' : '\U00002261', + '\\Join' : '\U000022c8', + '\\bowtie' : '\U00002a1d', + '\\prec' : '\U0000227a', + '\\succ' : '\U0000227b', + '\\preceq' : '\U0000227c', + '\\succeq' : '\U0000227d', + '\\parallel' : '\U00002225', + '\\mid' : '\U000000a6', + '\\pm' : '\U000000b1', + '\\mp' : '\U00002213', + '\\times' : '\U000000d7', + '\\div' : '\U000000f7', + '\\cdot' : '\U000022c5', + '\\star' : '\U000022c6', + '\\circ' : '\U00002218', + '\\dagger' : '\U00002020', + '\\ddagger' : '\U00002021', + '\\lhd' : '\U000022b2', + '\\rhd' : '\U000022b3', + '\\unlhd' : '\U000022b4', + '\\unrhd' : '\U000022b5', + '\\triangleleft' : '\U000025c3', + '\\triangleright' : '\U000025b9', + '\\triangle' : '\U000025b3', + '\\triangleq' : '\U0000225c', + '\\oplus' : '\U00002295', + '\\bigoplus' : '\U00002a01', + '\\otimes' : '\U00002297', + '\\bigotimes' : '\U00002a02', + '\\odot' : '\U00002299', + '\\bigodot' : '\U00002a00', + '\\ominus' : '\U00002296', + '\\oslash' : '\U00002298', + '\\dots' : '\U00002026', + '\\cdots' : '\U000022ef', + '\\sum' : '\U00002211', + '\\prod' : '\U0000220f', + '\\coprod' : '\U00002210', + '\\infty' : '\U0000221e', + '\\int' : '\U0000222b', + '\\oint' : '\U0000222e', + '\\clubsuit' : '\U00002663', + '\\diamondsuit' : '\U00002662', + '\\heartsuit' : '\U00002661', + '\\spadesuit' : '\U00002660', + '\\aleph' : '\U00002135', + '\\emptyset' : '\U00002205', + '\\nabla' : '\U00002207', + '\\partial' : '\U00002202', + '\\flat' : '\U0000266d', + '\\natural' : '\U0000266e', + '\\sharp' : '\U0000266f', + '\\angle' : '\U00002220', + '\\copyright' : '\U000000a9', + '\\textregistered' : '\U000000ae', + '\\textonequarter' : '\U000000bc', + '\\textonehalf' : '\U000000bd', + '\\textthreequarters' : '\U000000be', + '\\textordfeminine' : '\U000000aa', + '\\textordmasculine' : '\U000000ba', + '\\euro' : '\U000020ac', + '\\pounds' : '\U000000a3', + '\\yen' : '\U000000a5', + '\\textcent' : '\U000000a2', + '\\textcurrency' : '\U000000a4', + '\\textdegree' : '\U000000b0', + } + + isabelle_symbols = { + '\\' : '\U0001d7ec', + '\\' : '\U0001d7ed', + '\\' : '\U0001d7ee', + '\\' : '\U0001d7ef', + '\\' : '\U0001d7f0', + '\\' : '\U0001d7f1', + '\\' : '\U0001d7f2', + '\\' : '\U0001d7f3', + '\\' : '\U0001d7f4', + '\\' : '\U0001d7f5', + '\\' : '\U0001d49c', + '\\' : '\U0000212c', + '\\' : '\U0001d49e', + '\\' : '\U0001d49f', + '\\' : '\U00002130', + '\\' : '\U00002131', + '\\' : '\U0001d4a2', + '\\' : '\U0000210b', + '\\' : '\U00002110', + '\\' : '\U0001d4a5', + '\\' : '\U0001d4a6', + '\\' : '\U00002112', + '\\' : '\U00002133', + '\\' : '\U0001d4a9', + '\\' : '\U0001d4aa', + '\\

    ' : '\U0001d5c9', + '\\' : '\U0001d5ca', + '\\' : '\U0001d5cb', + '\\' : '\U0001d5cc', + '\\' : '\U0001d5cd', + '\\' : '\U0001d5ce', + '\\' : '\U0001d5cf', + '\\' : '\U0001d5d0', + '\\' : '\U0001d5d1', + '\\' : '\U0001d5d2', + '\\' : '\U0001d5d3', + '\\' : '\U0001d504', + '\\' : '\U0001d505', + '\\' : '\U0000212d', + '\\

    ' : '\U0001d507', + '\\' : '\U0001d508', + '\\' : '\U0001d509', + '\\' : '\U0001d50a', + '\\' : '\U0000210c', + '\\' : '\U00002111', + '\\' : '\U0001d50d', + '\\' : '\U0001d50e', + '\\' : '\U0001d50f', + '\\' : '\U0001d510', + '\\' : '\U0001d511', + '\\' : '\U0001d512', + '\\' : '\U0001d513', + '\\' : '\U0001d514', + '\\' : '\U0000211c', + '\\' : '\U0001d516', + '\\' : '\U0001d517', + '\\' : '\U0001d518', + '\\' : '\U0001d519', + '\\' : '\U0001d51a', + '\\' : '\U0001d51b', + '\\' : '\U0001d51c', + '\\' : '\U00002128', + '\\' : '\U0001d51e', + '\\' : '\U0001d51f', + '\\' : '\U0001d520', + '\\
    ' : '\U0001d521', + '\\' : '\U0001d522', + '\\' : '\U0001d523', + '\\' : '\U0001d524', + '\\' : '\U0001d525', + '\\' : '\U0001d526', + '\\' : '\U0001d527', + '\\' : '\U0001d528', + '\\' : '\U0001d529', + '\\' : '\U0001d52a', + '\\' : '\U0001d52b', + '\\' : '\U0001d52c', + '\\' : '\U0001d52d', + '\\' : '\U0001d52e', + '\\' : '\U0001d52f', + '\\' : '\U0001d530', + '\\' : '\U0001d531', + '\\' : '\U0001d532', + '\\' : '\U0001d533', + '\\' : '\U0001d534', + '\\' : '\U0001d535', + '\\' : '\U0001d536', + '\\' : '\U0001d537', + '\\' : '\U000003b1', + '\\' : '\U000003b2', + '\\' : '\U000003b3', + '\\' : '\U000003b4', + '\\' : '\U000003b5', + '\\' : '\U000003b6', + '\\' : '\U000003b7', + '\\' : '\U000003b8', + '\\' : '\U000003b9', + '\\' : '\U000003ba', + '\\' : '\U000003bb', + '\\' : '\U000003bc', + '\\' : '\U000003bd', + '\\' : '\U000003be', + '\\' : '\U000003c0', + '\\' : '\U000003c1', + '\\' : '\U000003c3', + '\\' : '\U000003c4', + '\\' : '\U000003c5', + '\\' : '\U000003c6', + '\\' : '\U000003c7', + '\\' : '\U000003c8', + '\\' : '\U000003c9', + '\\' : '\U00000393', + '\\' : '\U00000394', + '\\' : '\U00000398', + '\\' : '\U0000039b', + '\\' : '\U0000039e', + '\\' : '\U000003a0', + '\\' : '\U000003a3', + '\\' : '\U000003a5', + '\\' : '\U000003a6', + '\\' : '\U000003a8', + '\\' : '\U000003a9', + '\\' : '\U0001d539', + '\\' : '\U00002102', + '\\' : '\U00002115', + '\\' : '\U0000211a', + '\\' : '\U0000211d', + '\\' : '\U00002124', + '\\' : '\U00002190', + '\\' : '\U000027f5', + '\\' : '\U00002192', + '\\' : '\U000027f6', + '\\' : '\U000021d0', + '\\' : '\U000027f8', + '\\' : '\U000021d2', + '\\' : '\U000027f9', + '\\' : '\U00002194', + '\\' : '\U000027f7', + '\\' : '\U000021d4', + '\\' : '\U000027fa', + '\\' : '\U000021a6', + '\\' : '\U000027fc', + '\\' : '\U00002500', + '\\' : '\U00002550', + '\\' : '\U000021a9', + '\\' : '\U000021aa', + '\\' : '\U000021bd', + '\\' : '\U000021c1', + '\\' : '\U000021bc', + '\\' : '\U000021c0', + '\\' : '\U000021cc', + '\\' : '\U0000219d', + '\\' : '\U000021c3', + '\\' : '\U000021c2', + '\\' : '\U000021bf', + '\\' : '\U000021be', + '\\' : '\U000021be', + '\\' : '\U00002237', + '\\' : '\U00002191', + '\\' : '\U000021d1', + '\\' : '\U00002193', + '\\' : '\U000021d3', + '\\' : '\U00002195', + '\\' : '\U000021d5', + '\\' : '\U000027e8', + '\\' : '\U000027e9', + '\\' : '\U00002308', + '\\' : '\U00002309', + '\\' : '\U0000230a', + '\\' : '\U0000230b', + '\\' : '\U00002987', + '\\' : '\U00002988', + '\\' : '\U000027e6', + '\\' : '\U000027e7', + '\\' : '\U00002983', + '\\' : '\U00002984', + '\\' : '\U000000ab', + '\\' : '\U000000bb', + '\\' : '\U000022a5', + '\\' : '\U000022a4', + '\\' : '\U00002227', + '\\' : '\U000022c0', + '\\' : '\U00002228', + '\\' : '\U000022c1', + '\\' : '\U00002200', + '\\' : '\U00002203', + '\\' : '\U00002204', + '\\' : '\U000000ac', + '\\' : '\U000025a1', + '\\' : '\U000025c7', + '\\' : '\U000022a2', + '\\' : '\U000022a8', + '\\' : '\U000022a9', + '\\' : '\U000022ab', + '\\' : '\U000022a3', + '\\' : '\U0000221a', + '\\' : '\U00002264', + '\\' : '\U00002265', + '\\' : '\U0000226a', + '\\' : '\U0000226b', + '\\' : '\U00002272', + '\\' : '\U00002273', + '\\' : '\U00002a85', + '\\' : '\U00002a86', + '\\' : '\U00002208', + '\\' : '\U00002209', + '\\' : '\U00002282', + '\\' : '\U00002283', + '\\' : '\U00002286', + '\\' : '\U00002287', + '\\' : '\U0000228f', + '\\' : '\U00002290', + '\\' : '\U00002291', + '\\' : '\U00002292', + '\\' : '\U00002229', + '\\' : '\U000022c2', + '\\' : '\U0000222a', + '\\' : '\U000022c3', + '\\' : '\U00002294', + '\\' : '\U00002a06', + '\\' : '\U00002293', + '\\' : '\U00002a05', + '\\' : '\U00002216', + '\\' : '\U0000221d', + '\\' : '\U0000228e', + '\\' : '\U00002a04', + '\\' : '\U00002260', + '\\' : '\U0000223c', + '\\' : '\U00002250', + '\\' : '\U00002243', + '\\' : '\U00002248', + '\\' : '\U0000224d', + '\\' : '\U00002245', + '\\' : '\U00002323', + '\\' : '\U00002261', + '\\' : '\U00002322', + '\\' : '\U000022c8', + '\\' : '\U00002a1d', + '\\' : '\U0000227a', + '\\' : '\U0000227b', + '\\' : '\U0000227c', + '\\' : '\U0000227d', + '\\' : '\U00002225', + '\\' : '\U000000a6', + '\\' : '\U000000b1', + '\\' : '\U00002213', + '\\' : '\U000000d7', + '\\
    ' : '\U000000f7', + '\\' : '\U000022c5', + '\\' : '\U000022c6', + '\\' : '\U00002219', + '\\' : '\U00002218', + '\\' : '\U00002020', + '\\' : '\U00002021', + '\\' : '\U000022b2', + '\\' : '\U000022b3', + '\\' : '\U000022b4', + '\\' : '\U000022b5', + '\\' : '\U000025c3', + '\\' : '\U000025b9', + '\\' : '\U000025b3', + '\\' : '\U0000225c', + '\\' : '\U00002295', + '\\' : '\U00002a01', + '\\' : '\U00002297', + '\\' : '\U00002a02', + '\\' : '\U00002299', + '\\' : '\U00002a00', + '\\' : '\U00002296', + '\\' : '\U00002298', + '\\' : '\U00002026', + '\\' : '\U000022ef', + '\\' : '\U00002211', + '\\' : '\U0000220f', + '\\' : '\U00002210', + '\\' : '\U0000221e', + '\\' : '\U0000222b', + '\\' : '\U0000222e', + '\\' : '\U00002663', + '\\' : '\U00002662', + '\\' : '\U00002661', + '\\' : '\U00002660', + '\\' : '\U00002135', + '\\' : '\U00002205', + '\\' : '\U00002207', + '\\' : '\U00002202', + '\\' : '\U0000266d', + '\\' : '\U0000266e', + '\\' : '\U0000266f', + '\\' : '\U00002220', + '\\' : '\U000000a9', + '\\' : '\U000000ae', + '\\' : '\U000000ad', + '\\' : '\U000000af', + '\\' : '\U000000bc', + '\\' : '\U000000bd', + '\\' : '\U000000be', + '\\' : '\U000000aa', + '\\' : '\U000000ba', + '\\
    ' : '\U000000a7', + '\\' : '\U000000b6', + '\\' : '\U000000a1', + '\\' : '\U000000bf', + '\\' : '\U000020ac', + '\\' : '\U000000a3', + '\\' : '\U000000a5', + '\\' : '\U000000a2', + '\\' : '\U000000a4', + '\\' : '\U000000b0', + '\\' : '\U00002a3f', + '\\' : '\U00002127', + '\\' : '\U000025ca', + '\\' : '\U00002118', + '\\' : '\U00002240', + '\\' : '\U000022c4', + '\\' : '\U000000b4', + '\\' : '\U00000131', + '\\' : '\U000000a8', + '\\' : '\U000000b8', + '\\' : '\U000002dd', + '\\' : '\U000003f5', + '\\' : '\U000023ce', + '\\' : '\U00002039', + '\\' : '\U0000203a', + '\\' : '\U00002302', + '\\<^sub>' : '\U000021e9', + '\\<^sup>' : '\U000021e7', + '\\<^bold>' : '\U00002759', + '\\<^bsub>' : '\U000021d8', + '\\<^esub>' : '\U000021d9', + '\\<^bsup>' : '\U000021d7', + '\\<^esup>' : '\U000021d6', + } + + lang_map = {'isabelle' : isabelle_symbols, 'latex' : latex_symbols} + + def __init__(self, **options): + Filter.__init__(self, **options) + lang = get_choice_opt(options, 'lang', + ['isabelle', 'latex'], 'isabelle') + self.symbols = self.lang_map[lang] + + def filter(self, lexer, stream): + for ttype, value in stream: + if value in self.symbols: + yield ttype, self.symbols[value] + else: + yield ttype, value + + +class KeywordCaseFilter(Filter): + """Convert keywords to lowercase or uppercase or capitalize them, which + means first letter uppercase, rest lowercase. + + This can be useful e.g. if you highlight Pascal code and want to adapt the + code to your styleguide. + + Options accepted: + + `case` : string + The casing to convert keywords to. Must be one of ``'lower'``, + ``'upper'`` or ``'capitalize'``. The default is ``'lower'``. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + case = get_choice_opt(options, 'case', + ['lower', 'upper', 'capitalize'], 'lower') + self.convert = getattr(str, case) + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype in Keyword: + yield ttype, self.convert(value) + else: + yield ttype, value + + +class NameHighlightFilter(Filter): + """Highlight a normal Name (and Name.*) token with a different token type. + + Example:: + + filter = NameHighlightFilter( + names=['foo', 'bar', 'baz'], + tokentype=Name.Function, + ) + + This would highlight the names "foo", "bar" and "baz" + as functions. `Name.Function` is the default token type. + + Options accepted: + + `names` : list of strings + A list of names that should be given the different token type. + There is no default. + `tokentype` : TokenType or string + A token type or a string containing a token type name that is + used for highlighting the strings in `names`. The default is + `Name.Function`. + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + self.names = set(get_list_opt(options, 'names', [])) + tokentype = options.get('tokentype') + if tokentype: + self.tokentype = string_to_tokentype(tokentype) + else: + self.tokentype = Name.Function + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype in Name and value in self.names: + yield self.tokentype, value + else: + yield ttype, value + + +class ErrorToken(Exception): + pass + + +class RaiseOnErrorTokenFilter(Filter): + """Raise an exception when the lexer generates an error token. + + Options accepted: + + `excclass` : Exception class + The exception class to raise. + The default is `pygments.filters.ErrorToken`. + + .. versionadded:: 0.8 + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + self.exception = options.get('excclass', ErrorToken) + try: + # issubclass() will raise TypeError if first argument is not a class + if not issubclass(self.exception, Exception): + raise TypeError + except TypeError: + raise OptionError('excclass option is not an exception class') + + def filter(self, lexer, stream): + for ttype, value in stream: + if ttype is Error: + raise self.exception(value) + yield ttype, value + + +class VisibleWhitespaceFilter(Filter): + """Convert tabs, newlines and/or spaces to visible characters. + + Options accepted: + + `spaces` : string or bool + If this is a one-character string, spaces will be replaces by this string. + If it is another true value, spaces will be replaced by ``·`` (unicode + MIDDLE DOT). If it is a false value, spaces will not be replaced. The + default is ``False``. + `tabs` : string or bool + The same as for `spaces`, but the default replacement character is ``»`` + (unicode RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK). The default value + is ``False``. Note: this will not work if the `tabsize` option for the + lexer is nonzero, as tabs will already have been expanded then. + `tabsize` : int + If tabs are to be replaced by this filter (see the `tabs` option), this + is the total number of characters that a tab should be expanded to. + The default is ``8``. + `newlines` : string or bool + The same as for `spaces`, but the default replacement character is ``¶`` + (unicode PILCROW SIGN). The default value is ``False``. + `wstokentype` : bool + If true, give whitespace the special `Whitespace` token type. This allows + styling the visible whitespace differently (e.g. greyed out), but it can + disrupt background colors. The default is ``True``. + + .. versionadded:: 0.8 + """ + + def __init__(self, **options): + Filter.__init__(self, **options) + for name, default in [('spaces', '·'), + ('tabs', '»'), + ('newlines', '¶')]: + opt = options.get(name, False) + if isinstance(opt, str) and len(opt) == 1: + setattr(self, name, opt) + else: + setattr(self, name, (opt and default or '')) + tabsize = get_int_opt(options, 'tabsize', 8) + if self.tabs: + self.tabs += ' ' * (tabsize - 1) + if self.newlines: + self.newlines += '\n' + self.wstt = get_bool_opt(options, 'wstokentype', True) + + def filter(self, lexer, stream): + if self.wstt: + spaces = self.spaces or ' ' + tabs = self.tabs or '\t' + newlines = self.newlines or '\n' + regex = re.compile(r'\s') + + def replacefunc(wschar): + if wschar == ' ': + return spaces + elif wschar == '\t': + return tabs + elif wschar == '\n': + return newlines + return wschar + + for ttype, value in stream: + yield from _replace_special(ttype, value, regex, Whitespace, + replacefunc) + else: + spaces, tabs, newlines = self.spaces, self.tabs, self.newlines + # simpler processing + for ttype, value in stream: + if spaces: + value = value.replace(' ', spaces) + if tabs: + value = value.replace('\t', tabs) + if newlines: + value = value.replace('\n', newlines) + yield ttype, value + + +class GobbleFilter(Filter): + """Gobbles source code lines (eats initial characters). + + This filter drops the first ``n`` characters off every line of code. This + may be useful when the source code fed to the lexer is indented by a fixed + amount of space that isn't desired in the output. + + Options accepted: + + `n` : int + The number of characters to gobble. + + .. versionadded:: 1.2 + """ + def __init__(self, **options): + Filter.__init__(self, **options) + self.n = get_int_opt(options, 'n', 0) + + def gobble(self, value, left): + if left < len(value): + return value[left:], 0 + else: + return '', left - len(value) + + def filter(self, lexer, stream): + n = self.n + left = n # How many characters left to gobble. + for ttype, value in stream: + # Remove ``left`` tokens from first line, ``n`` from all others. + parts = value.split('\n') + (parts[0], left) = self.gobble(parts[0], left) + for i in range(1, len(parts)): + (parts[i], left) = self.gobble(parts[i], n) + value = '\n'.join(parts) + + if value != '': + yield ttype, value + + +class TokenMergeFilter(Filter): + """Merges consecutive tokens with the same token type in the output + stream of a lexer. + + .. versionadded:: 1.2 + """ + def __init__(self, **options): + Filter.__init__(self, **options) + + def filter(self, lexer, stream): + current_type = None + current_value = None + for ttype, value in stream: + if ttype is current_type: + current_value += value + else: + if current_type is not None: + yield current_type, current_value + current_type = ttype + current_value = value + if current_type is not None: + yield current_type, current_value + + +FILTERS = { + 'codetagify': CodeTagFilter, + 'keywordcase': KeywordCaseFilter, + 'highlight': NameHighlightFilter, + 'raiseonerror': RaiseOnErrorTokenFilter, + 'whitespace': VisibleWhitespaceFilter, + 'gobble': GobbleFilter, + 'tokenmerge': TokenMergeFilter, + 'symbols': SymbolFilter, +} diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3024b54ab469b4d81a6c0b9bda98913e0618b6b9 GIT binary patch literal 37961 zcmcJ&349dSmG9rHc91{|Ahu?)K`g??JC-p*5+FblAhC%>YIT*QhE}(z?nVm|V2nY+ zI2N{SAhCnIgIB!UiJinrX3dNZCX>iLo{T4PW+r)gGi;N^Z{E!Rch0$0-4bH9_xbln zx^=#Ht9x(V<K!RGJOH*|WV(fBK}&_6q{@m#Ty-jdq*uxJ|Rw+BCc72-s`w zI64E47H6%q#Z~KSao4(Al4_G$l53M&QfgCLQfpJ~6{uDJiU-z_z1do0(vn&$d~x9g|=?k!{DqHao#~65Hm$Hdmi)#XE&< z^I$tJ!S7VI9S_?H3AP@#&4=y81lwtBI|;Uv6KtpJ6ZDDtBz>yx(WmLt^?Ys06DhSb zIvfR4JO3fggI{Y$Q;QyqgbN$}frxH|*>dl&UmDw1gtTZt_xM7=h}R$V2b(++#uEsI zc1Bx0jnSYl;tvJG9&b?dXnLbJ8i;U66?dV;v&a`}?J)dJ&5=c(5>xanyy>Rf=P$fz z;jNyA4o{?6_pDJV^F(xS%REn5*FDASYgSaPt1je77X|!2Js8#(d6rg}iu>yFlCsL` zGEZa3!11fpp?6IU}Tv!E3v5Y1?QWx-tBXyzHNGzSm9~5Ax zhEOQLPNT`m*BnBcnMaibyy0+VD6%XR4QjFUs#YpGP61Ak-RKW$b*+JDlRsFeO3#PJ zVg0B=(*KpMFpk^0Y!S<8x6Me6Q0blJOX zJ7?Q$Vf)dHE{D%yM;Mo_!(QO%T)0}Uuh+cZxIjS^SfOW~9*G)3Ph}{md;E=_U?_s3 zM|KJ;&p2Yq%gR^Rl&z~a#^8hn&RCk{gF?n!Y&v~`aG27Cdid3e1JS8^aevT;bjpvgmeV&=u*Lgm3`ni

    M^;{R+w$gKOtNKUT|rpekgMv3MLPbktb}pg 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 S2lJ+18k3stxG$OW|NjBUA-TQ) literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py new file mode 100644 index 00000000..d2666037 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py @@ -0,0 +1,129 @@ +""" + pygments.formatter + ~~~~~~~~~~~~~~~~~~ + + Base formatter class. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import codecs + +from pip._vendor.pygments.util import get_bool_opt +from pip._vendor.pygments.styles import get_style_by_name + +__all__ = ['Formatter'] + + +def _lookup_style(style): + if isinstance(style, str): + return get_style_by_name(style) + return style + + +class Formatter: + """ + Converts a token stream to text. + + Formatters should have attributes to help selecting them. These + are similar to the corresponding :class:`~pygments.lexer.Lexer` + attributes. + + .. autoattribute:: name + :no-value: + + .. autoattribute:: aliases + :no-value: + + .. autoattribute:: filenames + :no-value: + + You can pass options as keyword arguments to the constructor. + All formatters accept these basic options: + + ``style`` + The style to use, can be a string or a Style subclass + (default: "default"). Not used by e.g. the + TerminalFormatter. + ``full`` + Tells the formatter to output a "full" document, i.e. + a complete self-contained document. This doesn't have + any effect for some formatters (default: false). + ``title`` + If ``full`` is true, the title that should be used to + caption the document (default: ''). + ``encoding`` + If given, must be an encoding name. This will be used to + convert the Unicode token strings to byte strings in the + output. If it is "" or None, Unicode strings will be written + to the output file, which most file-like objects do not + support (default: None). + ``outencoding`` + Overrides ``encoding`` if given. + + """ + + #: Full name for the formatter, in human-readable form. + name = None + + #: A list of short, unique identifiers that can be used to lookup + #: the formatter from a list, e.g. using :func:`.get_formatter_by_name()`. + aliases = [] + + #: A list of fnmatch patterns that match filenames for which this + #: formatter can produce output. The patterns in this list should be unique + #: among all formatters. + filenames = [] + + #: If True, this formatter outputs Unicode strings when no encoding + #: option is given. + unicodeoutput = True + + def __init__(self, **options): + """ + As with lexers, this constructor takes arbitrary optional arguments, + and if you override it, you should first process your own options, then + call the base class implementation. + """ + self.style = _lookup_style(options.get('style', 'default')) + self.full = get_bool_opt(options, 'full', False) + self.title = options.get('title', '') + self.encoding = options.get('encoding', None) or None + if self.encoding in ('guess', 'chardet'): + # can happen for e.g. pygmentize -O encoding=guess + self.encoding = 'utf-8' + self.encoding = options.get('outencoding') or self.encoding + self.options = options + + def get_style_defs(self, arg=''): + """ + This method must return statements or declarations suitable to define + the current style for subsequent highlighted text (e.g. CSS classes + in the `HTMLFormatter`). + + The optional argument `arg` can be used to modify the generation and + is formatter dependent (it is standardized because it can be given on + the command line). + + This method is called by the ``-S`` :doc:`command-line option `, + the `arg` is then given by the ``-a`` option. + """ + return '' + + def format(self, tokensource, outfile): + """ + This method must format the tokens from the `tokensource` iterable and + write the formatted version to the file object `outfile`. + + Formatter options can control how exactly the tokens are converted. + """ + if self.encoding: + # wrap the outfile in a StreamWriter + outfile = codecs.lookup(self.encoding)[3](outfile) + return self.format_unencoded(tokensource, outfile) + + # Allow writing Formatter[str] or Formatter[bytes]. That's equivalent to + # Formatter. This helps when using third-party type stubs from typeshed. + def __class_getitem__(cls, name): + return cls diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py new file mode 100644 index 00000000..f19e9931 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py @@ -0,0 +1,157 @@ +""" + pygments.formatters + ~~~~~~~~~~~~~~~~~~~ + + Pygments formatters. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import re +import sys +import types +import fnmatch +from os.path import basename + +from pip._vendor.pygments.formatters._mapping import FORMATTERS +from pip._vendor.pygments.plugin import find_plugin_formatters +from pip._vendor.pygments.util import ClassNotFound + +__all__ = ['get_formatter_by_name', 'get_formatter_for_filename', + 'get_all_formatters', 'load_formatter_from_file'] + list(FORMATTERS) + +_formatter_cache = {} # classes by name +_pattern_cache = {} + + +def _fn_matches(fn, glob): + """Return whether the supplied file name fn matches pattern filename.""" + if glob not in _pattern_cache: + pattern = _pattern_cache[glob] = re.compile(fnmatch.translate(glob)) + return pattern.match(fn) + return _pattern_cache[glob].match(fn) + + +def _load_formatters(module_name): + """Load a formatter (and all others in the module too).""" + mod = __import__(module_name, None, None, ['__all__']) + for formatter_name in mod.__all__: + cls = getattr(mod, formatter_name) + _formatter_cache[cls.name] = cls + + +def get_all_formatters(): + """Return a generator for all formatter classes.""" + # NB: this returns formatter classes, not info like get_all_lexers(). + for info in FORMATTERS.values(): + if info[1] not in _formatter_cache: + _load_formatters(info[0]) + yield _formatter_cache[info[1]] + for _, formatter in find_plugin_formatters(): + yield formatter + + +def find_formatter_class(alias): + """Lookup a formatter by alias. + + Returns None if not found. + """ + for module_name, name, aliases, _, _ in FORMATTERS.values(): + if alias in aliases: + if name not in _formatter_cache: + _load_formatters(module_name) + return _formatter_cache[name] + for _, cls in find_plugin_formatters(): + if alias in cls.aliases: + return cls + + +def get_formatter_by_name(_alias, **options): + """ + Return an instance of a :class:`.Formatter` subclass that has `alias` in its + aliases list. The formatter is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no formatter with that + alias is found. + """ + cls = find_formatter_class(_alias) + if cls is None: + raise ClassNotFound(f"no formatter found for name {_alias!r}") + return cls(**options) + + +def load_formatter_from_file(filename, formattername="CustomFormatter", **options): + """ + Return a `Formatter` subclass instance loaded from the provided file, relative + to the current directory. + + The file is expected to contain a Formatter class named ``formattername`` + (by default, CustomFormatter). Users should be very careful with the input, because + this method is equivalent to running ``eval()`` on the input file. The formatter is + given the `options` at its instantiation. + + :exc:`pygments.util.ClassNotFound` is raised if there are any errors loading + the formatter. + + .. versionadded:: 2.2 + """ + try: + # This empty dict will contain the namespace for the exec'd file + custom_namespace = {} + with open(filename, 'rb') as f: + exec(f.read(), custom_namespace) + # Retrieve the class `formattername` from that namespace + if formattername not in custom_namespace: + raise ClassNotFound(f'no valid {formattername} class found in {filename}') + formatter_class = custom_namespace[formattername] + # And finally instantiate it with the options + return formatter_class(**options) + except OSError as err: + raise ClassNotFound(f'cannot read {filename}: {err}') + except ClassNotFound: + raise + except Exception as err: + raise ClassNotFound(f'error when loading custom formatter: {err}') + + +def get_formatter_for_filename(fn, **options): + """ + Return a :class:`.Formatter` subclass instance that has a filename pattern + matching `fn`. The formatter is given the `options` at its instantiation. + + Will raise :exc:`pygments.util.ClassNotFound` if no formatter for that filename + is found. + """ + fn = basename(fn) + for modname, name, _, filenames, _ in FORMATTERS.values(): + for filename in filenames: + if _fn_matches(fn, filename): + if name not in _formatter_cache: + _load_formatters(modname) + return _formatter_cache[name](**options) + for _name, cls in find_plugin_formatters(): + for filename in cls.filenames: + if _fn_matches(fn, filename): + return cls(**options) + raise ClassNotFound(f"no formatter found for file name {fn!r}") + + +class _automodule(types.ModuleType): + """Automatically import formatters.""" + + def __getattr__(self, name): + info = FORMATTERS.get(name) + if info: + _load_formatters(info[0]) + cls = _formatter_cache[info[1]] + setattr(self, name, cls) + return cls + raise AttributeError(name) + + +oldmod = sys.modules[__name__] +newmod = _automodule(__name__) +newmod.__dict__.update(oldmod.__dict__) +sys.modules[__name__] = newmod +del newmod.newmod, newmod.oldmod, newmod.sys, newmod.types diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c3f50b919de1243cf8fde257824c559555bf806 GIT binary patch literal 6952 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9eae5530d15eac557b3db4557a37d93e9bd28999 GIT binary patch literal 4265 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..693b55d8ddd27358f4f6e23d101a6447ee68cfad GIT binary patch literal 28598 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 D-p5@B literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..afc5f9847981033ed64e4cd2d6bf66480cdd6156 GIT binary patch literal 6105 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 J0(`iC{vU^I-Ln7y literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eefd1fdc2cc0e17daf076c980d7eaa13542698a4 GIT binary patch literal 20175 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..24d99bbcc8295f0e04656bb41aca28bbb5fa696e GIT binary patch literal 3008 zcmcImO>7&-6`uVgR}^K*5-sc3-pGw4S~k~}V_S_J~ssSkB;IriR*DZ353$U#NWLvK>mTzcx8S&|k6wzm$j zv$OBLd4Kc0H~Xiywh)3bI;v!TCnEGU`KS+}wmAGLEVhw~5=doKR%e#k1j`_m%Ph^253_m16yT(V66qJcr+cX&bp{v33HKTbo?wS&cdmHjC1XolhXXQJVxrmn> zEZcXT1tn`-OzE0zV`~LlvTdbg#kR3y%NYfBQf)V}fi1-`Eg2gtvaT)2xq_25jmxob zkIS~^;EOpWwWMUQE$6hHoLs?%3c_`C$Z)1LbjU~05z7_42&O?M?Ho>Nik?hm70b55 z;QVQL?2|C9qP^Dk$MN-e`OTND(hFWX1R_e2sXpqdKD+>wZG=&R0r;~j0A6JiyvnJ3 z27sMGiGV6RM2VmpfLSaAqoT#bmg3S85K4}@1lW)iyM{wQ-BQX_aZI}9NGZi2ATy)| zELjjKwy+AD;FzTOk8jq18jDGgPFph#MOCpnIVp|Du2L(-un%uvttZfoc&$eglR65H z0QlDm&*252ZX>6`TdYS7%=&Oqn$eKUe8&8eVGyiPvLOYaBf5@_>*yz0gnkTCCAP$= zOo@j_a3OEKAZZP_kiEs0W1HZ!E>VYUu?;jpYjK4laH$4?Y6yXbK#dzb!WA3bmKry7 zgxlKShHKom1{Z9kS%`+5+_B-Z(?Hn(Rsls%-1d+sq)gqkijip>5-g=N^z+@JbN5R_ z@nUdVCgixsFPOSoiF*Y;s1>Sz%b@ z*ey~A#lbtIBOYryvAWF>5V8LV(<=H(Jo%;AR}uTlZ&k#xows+zvAyn|HGZRYZ$Nr7 z`>WaYkJe^3uT&%5Ycti($lA4Pdt~#IM-QqUr(X2RU-nK^dMBRezxd=24_@}(sC3-e z6sp~4cg}5@n;en+_)!TY%cr(Z5XL~+-qL->4K$fFeb_FO9+pwY!`XtZQ@|mnp?9w{gwotY~xFE>BLM zdKfH;&0}(dE=MZL70LWMzGfCnoGX<04VQ=N{D0VN?xD)P_6n+wzioAbr%*?Z6E6zW zGQ6U^C)~B*p0Ij=i6!tmP)#H7tO{^{My(8L!#m7(`uMc)6aFZMM5vhT`fu-Y$eiTkI};OIdQ3U^h{jr?}%H&ajV zRnEOr2}^6UWw9FWdOWv2S3bXUx6&7T-c#wj`YJqG_dfGy@eHlF+tC)%zzn$Wp@D^x z$z@Z`>tr2HCV!S!^cp9aOsZxI$UGr<3VI=tXE~HFzK*L0sd0@xfZ=uY8a$()$8;l3i_sn1(MO VB9?jMU!k{|v*oMbAb3$*{{h9_2AKc= literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb7fce75be543a6b781378db9ca39a507e62787d GIT binary patch literal 13823 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 N@s96H21oNY{|iE2p+f)w literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..07d9822e0c8ab57a744290f0da610dbd8def2402 GIT binary patch literal 15168 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 tags. By default, the content is enclosed in a ``

    `` tag, itself wrapped in a ``
    `` tag (but see the `nowrap` option). The ``
    ``'s CSS class can be set by the `cssclass` option."), + 'IRCFormatter': ('pygments.formatters.irc', 'IRC', ('irc', 'IRC'), (), 'Format tokens with IRC color sequences'), + 'ImageFormatter': ('pygments.formatters.img', 'img', ('img', 'IMG', 'png'), ('*.png',), 'Create a PNG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'JpgImageFormatter': ('pygments.formatters.img', 'img_jpg', ('jpg', 'jpeg'), ('*.jpg',), 'Create a JPEG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), + 'LatexFormatter': ('pygments.formatters.latex', 'LaTeX', ('latex', 'tex'), ('*.tex',), 'Format tokens as LaTeX code. This needs the `fancyvrb` and `color` standard packages.'), + 'NullFormatter': ('pygments.formatters.other', 'Text only', ('text', 'null'), ('*.txt',), 'Output the text unchanged without any formatting.'), + 'PangoMarkupFormatter': ('pygments.formatters.pangomarkup', 'Pango Markup', ('pango', 'pangomarkup'), (), 'Format tokens as Pango Markup code. It can then be rendered to an SVG.'), + 'RawTokenFormatter': ('pygments.formatters.other', 'Raw tokens', ('raw', 'tokens'), ('*.raw',), 'Format tokens as a raw representation for storing token streams.'), + 'RtfFormatter': ('pygments.formatters.rtf', 'RTF', ('rtf',), ('*.rtf',), 'Format tokens as RTF markup. This formatter automatically outputs full RTF documents with color information and other useful stuff. Perfect for Copy and Paste into Microsoft(R) Word(R) documents.'), + 'SvgFormatter': ('pygments.formatters.svg', 'SVG', ('svg',), ('*.svg',), 'Format tokens as an SVG graphics file. This formatter is still experimental. Each line of code is a ```` element with explicit ``x`` and ``y`` coordinates containing ```` elements with the individual token styles.'), + 'Terminal256Formatter': ('pygments.formatters.terminal256', 'Terminal256', ('terminal256', 'console256', '256'), (), 'Format tokens with ANSI color sequences, for output in a 256-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TerminalFormatter': ('pygments.formatters.terminal', 'Terminal', ('terminal', 'console'), (), 'Format tokens with ANSI color sequences, for output in a text console. Color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TerminalTrueColorFormatter': ('pygments.formatters.terminal256', 'TerminalTrueColor', ('terminal16m', 'console16m', '16m'), (), 'Format tokens with ANSI color sequences, for output in a true-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'), + 'TestcaseFormatter': ('pygments.formatters.other', 'Testcase', ('testcase',), (), 'Format tokens as appropriate for a new testcase.'), +} diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py new file mode 100644 index 00000000..5a05bd96 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py @@ -0,0 +1,108 @@ +""" + pygments.formatters.bbcode + ~~~~~~~~~~~~~~~~~~~~~~~~~~ + + BBcode formatter. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + + +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.util import get_bool_opt + +__all__ = ['BBCodeFormatter'] + + +class BBCodeFormatter(Formatter): + """ + Format tokens with BBcodes. These formatting codes are used by many + bulletin boards, so you can highlight your sourcecode with pygments before + posting it there. + + This formatter has no support for background colors and borders, as there + are no common BBcode tags for that. + + Some board systems (e.g. phpBB) don't support colors in their [code] tag, + so you can't use the highlighting together with that tag. + Text in a [code] tag usually is shown with a monospace font (which this + formatter can do with the ``monofont`` option) and no spaces (which you + need for indentation) are removed. + + Additional options accepted: + + `style` + The style to use, can be a string or a Style subclass (default: + ``'default'``). + + `codetag` + If set to true, put the output into ``[code]`` tags (default: + ``false``) + + `monofont` + If set to true, add a tag to show the code with a monospace font + (default: ``false``). + """ + name = 'BBCode' + aliases = ['bbcode', 'bb'] + filenames = [] + + def __init__(self, **options): + Formatter.__init__(self, **options) + self._code = get_bool_opt(options, 'codetag', False) + self._mono = get_bool_opt(options, 'monofont', False) + + self.styles = {} + self._make_styles() + + def _make_styles(self): + for ttype, ndef in self.style: + start = end = '' + if ndef['color']: + start += '[color=#{}]'.format(ndef['color']) + end = '[/color]' + end + if ndef['bold']: + start += '[b]' + end = '[/b]' + end + if ndef['italic']: + start += '[i]' + end = '[/i]' + end + if ndef['underline']: + start += '[u]' + end = '[/u]' + end + # there are no common BBcodes for background-color and border + + self.styles[ttype] = start, end + + def format_unencoded(self, tokensource, outfile): + if self._code: + outfile.write('[code]') + if self._mono: + outfile.write('[font=monospace]') + + lastval = '' + lasttype = None + + for ttype, value in tokensource: + while ttype not in self.styles: + ttype = ttype.parent + if ttype == lasttype: + lastval += value + else: + if lastval: + start, end = self.styles[lasttype] + outfile.write(''.join((start, lastval, end))) + lastval = value + lasttype = ttype + + if lastval: + start, end = self.styles[lasttype] + outfile.write(''.join((start, lastval, end))) + + if self._mono: + outfile.write('[/font]') + if self._code: + outfile.write('[/code]') + if self._code or self._mono: + outfile.write('\n') diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py new file mode 100644 index 00000000..5c8a958f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py @@ -0,0 +1,170 @@ +""" + pygments.formatters.groff + ~~~~~~~~~~~~~~~~~~~~~~~~~ + + Formatter for groff output. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import math +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.util import get_bool_opt, get_int_opt + +__all__ = ['GroffFormatter'] + + +class GroffFormatter(Formatter): + """ + Format tokens with groff escapes to change their color and font style. + + .. versionadded:: 2.11 + + Additional options accepted: + + `style` + The style to use, can be a string or a Style subclass (default: + ``'default'``). + + `monospaced` + If set to true, monospace font will be used (default: ``true``). + + `linenos` + If set to true, print the line numbers (default: ``false``). + + `wrap` + Wrap lines to the specified number of characters. Disabled if set to 0 + (default: ``0``). + """ + + name = 'groff' + aliases = ['groff','troff','roff'] + filenames = [] + + def __init__(self, **options): + Formatter.__init__(self, **options) + + self.monospaced = get_bool_opt(options, 'monospaced', True) + self.linenos = get_bool_opt(options, 'linenos', False) + self._lineno = 0 + self.wrap = get_int_opt(options, 'wrap', 0) + self._linelen = 0 + + self.styles = {} + self._make_styles() + + + def _make_styles(self): + regular = '\\f[CR]' if self.monospaced else '\\f[R]' + bold = '\\f[CB]' if self.monospaced else '\\f[B]' + italic = '\\f[CI]' if self.monospaced else '\\f[I]' + + for ttype, ndef in self.style: + start = end = '' + if ndef['color']: + start += '\\m[{}]'.format(ndef['color']) + end = '\\m[]' + end + if ndef['bold']: + start += bold + end = regular + end + if ndef['italic']: + start += italic + end = regular + end + if ndef['bgcolor']: + start += '\\M[{}]'.format(ndef['bgcolor']) + end = '\\M[]' + end + + self.styles[ttype] = start, end + + + def _define_colors(self, outfile): + colors = set() + for _, ndef in self.style: + if ndef['color'] is not None: + colors.add(ndef['color']) + + for color in sorted(colors): + outfile.write('.defcolor ' + color + ' rgb #' + color + '\n') + + + def _write_lineno(self, outfile): + self._lineno += 1 + outfile.write("%s% 4d " % (self._lineno != 1 and '\n' or '', self._lineno)) + + + def _wrap_line(self, line): + length = len(line.rstrip('\n')) + space = ' ' if self.linenos else '' + newline = '' + + if length > self.wrap: + for i in range(0, math.floor(length / self.wrap)): + chunk = line[i*self.wrap:i*self.wrap+self.wrap] + newline += (chunk + '\n' + space) + remainder = length % self.wrap + if remainder > 0: + newline += line[-remainder-1:] + self._linelen = remainder + elif self._linelen + length > self.wrap: + newline = ('\n' + space) + line + self._linelen = length + else: + newline = line + self._linelen += length + + return newline + + + def _escape_chars(self, text): + text = text.replace('\\', '\\[u005C]'). \ + replace('.', '\\[char46]'). \ + replace('\'', '\\[u0027]'). \ + replace('`', '\\[u0060]'). \ + replace('~', '\\[u007E]') + copy = text + + for char in copy: + if len(char) != len(char.encode()): + uni = char.encode('unicode_escape') \ + .decode()[1:] \ + .replace('x', 'u00') \ + .upper() + text = text.replace(char, '\\[u' + uni[1:] + ']') + + return text + + + def format_unencoded(self, tokensource, outfile): + self._define_colors(outfile) + + outfile.write('.nf\n\\f[CR]\n') + + if self.linenos: + self._write_lineno(outfile) + + for ttype, value in tokensource: + while ttype not in self.styles: + ttype = ttype.parent + start, end = self.styles[ttype] + + for line in value.splitlines(True): + if self.wrap > 0: + line = self._wrap_line(line) + + if start and end: + text = self._escape_chars(line.rstrip('\n')) + if text != '': + outfile.write(''.join((start, text, end))) + else: + outfile.write(self._escape_chars(line.rstrip('\n'))) + + if line.endswith('\n'): + if self.linenos: + self._write_lineno(outfile) + self._linelen = 0 + else: + outfile.write('\n') + self._linelen = 0 + + outfile.write('\n.fi') diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py new file mode 100644 index 00000000..7aa938f5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py @@ -0,0 +1,987 @@ +""" + pygments.formatters.html + ~~~~~~~~~~~~~~~~~~~~~~~~ + + Formatter for HTML output. + + :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import functools +import os +import sys +import os.path +from io import StringIO + +from pip._vendor.pygments.formatter import Formatter +from pip._vendor.pygments.token import Token, Text, STANDARD_TYPES +from pip._vendor.pygments.util import get_bool_opt, get_int_opt, get_list_opt + +try: + import ctags +except ImportError: + ctags = None + +__all__ = ['HtmlFormatter'] + + +_escape_html_table = { + ord('&'): '&', + ord('<'): '<', + ord('>'): '>', + ord('"'): '"', + ord("'"): ''', +} + + +def escape_html(text, table=_escape_html_table): + """Escape &, <, > as well as single and double quotes for HTML.""" + return text.translate(table) + + +def webify(color): + if color.startswith('calc') or color.startswith('var'): + return color + else: + return '#' + color + + +def _get_ttype_class(ttype): + fname = STANDARD_TYPES.get(ttype) + if fname: + return fname + aname = '' + while fname is None: + aname = '-' + ttype[-1] + aname + ttype = ttype.parent + fname = STANDARD_TYPES.get(ttype) + return fname + aname + + +CSSFILE_TEMPLATE = '''\ +/* +generated by Pygments +Copyright 2006-2024 by the Pygments team. +Licensed under the BSD license, see LICENSE for details. +*/ +%(styledefs)s +''' + +DOC_HEADER = '''\ + + + + + %(title)s + + + + +

    %(title)s

    + +''' + +DOC_HEADER_EXTERNALCSS = '''\ + + + + + %(title)s + + + + +

    %(title)s

    + +''' + +DOC_FOOTER = '''\ + + +''' + + +class HtmlFormatter(Formatter): + r""" + Format tokens as HTML 4 ```` tags. By default, the content is enclosed + in a ``
    `` tag, itself wrapped in a ``
    `` tag (but see the `nowrap` option). + The ``
    ``'s CSS class can be set by the `cssclass` option. + + If the `linenos` option is set to ``"table"``, the ``
    `` is
    +    additionally wrapped inside a ```` which has one row and two
    +    cells: one containing the line numbers and one containing the code.
    +    Example:
    +
    +    .. sourcecode:: html
    +
    +        
    +
    + + +
    +
    1
    +            2
    +
    +
    def foo(bar):
    +              pass
    +            
    +
    + + (whitespace added to improve clarity). + + A list of lines can be specified using the `hl_lines` option to make these + lines highlighted (as of Pygments 0.11). + + With the `full` option, a complete HTML 4 document is output, including + the style definitions inside a `` + + +
    {code}
    + + +""" + +CONSOLE_SVG_FORMAT = """\ + + + + + + + + + {lines} + + + {chrome} + + {backgrounds} + + {matrix} + + + +""" + +_SVG_FONT_FAMILY = "Rich Fira Code" +_SVG_CLASSES_PREFIX = "rich-svg" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py new file mode 100644 index 00000000..cbd6da9b --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py @@ -0,0 +1,10 @@ +from typing import Any + + +def load_ipython_extension(ip: Any) -> None: # pragma: no cover + # prevent circular import + from pip._vendor.rich.pretty import install + from pip._vendor.rich.traceback import install as tr_install + + install() + tr_install() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py new file mode 100644 index 00000000..b17ee651 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py @@ -0,0 +1,24 @@ +from __future__ import annotations + +from typing import IO, Callable + + +def get_fileno(file_like: IO[str]) -> int | None: + """Get fileno() from a file, accounting for poorly implemented file-like objects. + + Args: + file_like (IO): A file-like object. + + Returns: + int | None: The result of fileno if available, or None if operation failed. + """ + fileno: Callable[[], int] | None = getattr(file_like, "fileno", None) + if fileno is not None: + try: + return fileno() + except Exception: + # `fileno` is documented as potentially raising a OSError + # Alas, from the issues, there are so many poorly implemented file-like objects, + # that `fileno()` can raise just about anything. + return None + return None diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py new file mode 100644 index 00000000..30446ceb --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py @@ -0,0 +1,270 @@ +from __future__ import absolute_import + +import inspect +from inspect import cleandoc, getdoc, getfile, isclass, ismodule, signature +from typing import Any, Collection, Iterable, Optional, Tuple, Type, Union + +from .console import Group, RenderableType +from .control import escape_control_codes +from .highlighter import ReprHighlighter +from .jupyter import JupyterMixin +from .panel import Panel +from .pretty import Pretty +from .table import Table +from .text import Text, TextType + + +def _first_paragraph(doc: str) -> str: + """Get the first paragraph from a docstring.""" + paragraph, _, _ = doc.partition("\n\n") + return paragraph + + +class Inspect(JupyterMixin): + """A renderable to inspect any Python Object. + + Args: + obj (Any): An object to inspect. + title (str, optional): Title to display over inspect result, or None use type. Defaults to None. + help (bool, optional): Show full help text rather than just first paragraph. Defaults to False. + methods (bool, optional): Enable inspection of callables. Defaults to False. + docs (bool, optional): Also render doc strings. Defaults to True. + private (bool, optional): Show private attributes (beginning with underscore). Defaults to False. + dunder (bool, optional): Show attributes starting with double underscore. Defaults to False. + sort (bool, optional): Sort attributes alphabetically. Defaults to True. + all (bool, optional): Show all attributes. Defaults to False. + value (bool, optional): Pretty print value of object. Defaults to True. + """ + + def __init__( + self, + obj: Any, + *, + title: Optional[TextType] = None, + help: bool = False, + methods: bool = False, + docs: bool = True, + private: bool = False, + dunder: bool = False, + sort: bool = True, + all: bool = True, + value: bool = True, + ) -> None: + self.highlighter = ReprHighlighter() + self.obj = obj + self.title = title or self._make_title(obj) + if all: + methods = private = dunder = True + self.help = help + self.methods = methods + self.docs = docs or help + self.private = private or dunder + self.dunder = dunder + self.sort = sort + self.value = value + + def _make_title(self, obj: Any) -> Text: + """Make a default title.""" + title_str = ( + str(obj) + if (isclass(obj) or callable(obj) or ismodule(obj)) + else str(type(obj)) + ) + title_text = self.highlighter(title_str) + return title_text + + def __rich__(self) -> Panel: + return Panel.fit( + Group(*self._render()), + title=self.title, + border_style="scope.border", + padding=(0, 1), + ) + + def _get_signature(self, name: str, obj: Any) -> Optional[Text]: + """Get a signature for a callable.""" + try: + _signature = str(signature(obj)) + ":" + except ValueError: + _signature = "(...)" + except TypeError: + return None + + source_filename: Optional[str] = None + try: + source_filename = getfile(obj) + except (OSError, TypeError): + # OSError is raised if obj has no source file, e.g. when defined in REPL. + pass + + callable_name = Text(name, style="inspect.callable") + if source_filename: + callable_name.stylize(f"link file://{source_filename}") + signature_text = self.highlighter(_signature) + + qualname = name or getattr(obj, "__qualname__", name) + + # If obj is a module, there may be classes (which are callable) to display + if inspect.isclass(obj): + prefix = "class" + elif inspect.iscoroutinefunction(obj): + prefix = "async def" + else: + prefix = "def" + + qual_signature = Text.assemble( + (f"{prefix} ", f"inspect.{prefix.replace(' ', '_')}"), + (qualname, "inspect.callable"), + signature_text, + ) + + return qual_signature + + def _render(self) -> Iterable[RenderableType]: + """Render object.""" + + def sort_items(item: Tuple[str, Any]) -> Tuple[bool, str]: + key, (_error, value) = item + return (callable(value), key.strip("_").lower()) + + def safe_getattr(attr_name: str) -> Tuple[Any, Any]: + """Get attribute or any exception.""" + try: + return (None, getattr(obj, attr_name)) + except Exception as error: + return (error, None) + + obj = self.obj + keys = dir(obj) + total_items = len(keys) + if not self.dunder: + keys = [key for key in keys if not key.startswith("__")] + if not self.private: + keys = [key for key in keys if not key.startswith("_")] + not_shown_count = total_items - len(keys) + items = [(key, safe_getattr(key)) for key in keys] + if self.sort: + items.sort(key=sort_items) + + items_table = Table.grid(padding=(0, 1), expand=False) + items_table.add_column(justify="right") + add_row = items_table.add_row + highlighter = self.highlighter + + if callable(obj): + signature = self._get_signature("", obj) + if signature is not None: + yield signature + yield "" + + if self.docs: + _doc = self._get_formatted_doc(obj) + if _doc is not None: + doc_text = Text(_doc, style="inspect.help") + doc_text = highlighter(doc_text) + yield doc_text + yield "" + + if self.value and not (isclass(obj) or callable(obj) or ismodule(obj)): + yield Panel( + Pretty(obj, indent_guides=True, max_length=10, max_string=60), + border_style="inspect.value.border", + ) + yield "" + + for key, (error, value) in items: + key_text = Text.assemble( + ( + key, + "inspect.attr.dunder" if key.startswith("__") else "inspect.attr", + ), + (" =", "inspect.equals"), + ) + if error is not None: + warning = key_text.copy() + warning.stylize("inspect.error") + add_row(warning, highlighter(repr(error))) + continue + + if callable(value): + if not self.methods: + continue + + _signature_text = self._get_signature(key, value) + if _signature_text is None: + add_row(key_text, Pretty(value, highlighter=highlighter)) + else: + if self.docs: + docs = self._get_formatted_doc(value) + if docs is not None: + _signature_text.append("\n" if "\n" in docs else " ") + doc = highlighter(docs) + doc.stylize("inspect.doc") + _signature_text.append(doc) + + add_row(key_text, _signature_text) + else: + add_row(key_text, Pretty(value, highlighter=highlighter)) + if items_table.row_count: + yield items_table + elif not_shown_count: + yield Text.from_markup( + f"[b cyan]{not_shown_count}[/][i] attribute(s) not shown.[/i] " + f"Run [b][magenta]inspect[/]([not b]inspect[/])[/b] for options." + ) + + def _get_formatted_doc(self, object_: Any) -> Optional[str]: + """ + Extract the docstring of an object, process it and returns it. + The processing consists in cleaning up the doctring's indentation, + taking only its 1st paragraph if `self.help` is not True, + and escape its control codes. + + Args: + object_ (Any): the object to get the docstring from. + + Returns: + Optional[str]: the processed docstring, or None if no docstring was found. + """ + docs = getdoc(object_) + if docs is None: + return None + docs = cleandoc(docs).strip() + if not self.help: + docs = _first_paragraph(docs) + return escape_control_codes(docs) + + +def get_object_types_mro(obj: Union[object, Type[Any]]) -> Tuple[type, ...]: + """Returns the MRO of an object's class, or of the object itself if it's a class.""" + if not hasattr(obj, "__mro__"): + # N.B. we cannot use `if type(obj) is type` here because it doesn't work with + # some types of classes, such as the ones that use abc.ABCMeta. + obj = type(obj) + return getattr(obj, "__mro__", ()) + + +def get_object_types_mro_as_strings(obj: object) -> Collection[str]: + """ + Returns the MRO of an object's class as full qualified names, or of the object itself if it's a class. + + Examples: + `object_types_mro_as_strings(JSONDecoder)` will return `['json.decoder.JSONDecoder', 'builtins.object']` + """ + return [ + f'{getattr(type_, "__module__", "")}.{getattr(type_, "__qualname__", "")}' + for type_ in get_object_types_mro(obj) + ] + + +def is_object_one_of_types( + obj: object, fully_qualified_types_names: Collection[str] +) -> bool: + """ + Returns `True` if the given object's class (or the object itself, if it's a class) has one of the + fully qualified names in its MRO. + """ + for type_name in get_object_types_mro_as_strings(obj): + if type_name in fully_qualified_types_names: + return True + return False diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py new file mode 100644 index 00000000..fc16c844 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py @@ -0,0 +1,94 @@ +from datetime import datetime +from typing import Iterable, List, Optional, TYPE_CHECKING, Union, Callable + + +from .text import Text, TextType + +if TYPE_CHECKING: + from .console import Console, ConsoleRenderable, RenderableType + from .table import Table + +FormatTimeCallable = Callable[[datetime], Text] + + +class LogRender: + def __init__( + self, + show_time: bool = True, + show_level: bool = False, + show_path: bool = True, + time_format: Union[str, FormatTimeCallable] = "[%x %X]", + omit_repeated_times: bool = True, + level_width: Optional[int] = 8, + ) -> None: + self.show_time = show_time + self.show_level = show_level + self.show_path = show_path + self.time_format = time_format + self.omit_repeated_times = omit_repeated_times + self.level_width = level_width + self._last_time: Optional[Text] = None + + def __call__( + self, + console: "Console", + renderables: Iterable["ConsoleRenderable"], + log_time: Optional[datetime] = None, + time_format: Optional[Union[str, FormatTimeCallable]] = None, + level: TextType = "", + path: Optional[str] = None, + line_no: Optional[int] = None, + link_path: Optional[str] = None, + ) -> "Table": + from .containers import Renderables + from .table import Table + + output = Table.grid(padding=(0, 1)) + output.expand = True + if self.show_time: + output.add_column(style="log.time") + if self.show_level: + output.add_column(style="log.level", width=self.level_width) + output.add_column(ratio=1, style="log.message", overflow="fold") + if self.show_path and path: + output.add_column(style="log.path") + row: List["RenderableType"] = [] + if self.show_time: + log_time = log_time or console.get_datetime() + time_format = time_format or self.time_format + if callable(time_format): + log_time_display = time_format(log_time) + else: + log_time_display = Text(log_time.strftime(time_format)) + if log_time_display == self._last_time and self.omit_repeated_times: + row.append(Text(" " * len(log_time_display))) + else: + row.append(log_time_display) + self._last_time = log_time_display + if self.show_level: + row.append(level) + + row.append(Renderables(renderables)) + if self.show_path and path: + path_text = Text() + path_text.append( + path, style=f"link file://{link_path}" if link_path else "" + ) + if line_no: + path_text.append(":") + path_text.append( + f"{line_no}", + style=f"link file://{link_path}#{line_no}" if link_path else "", + ) + row.append(path_text) + + output.add_row(*row) + return output + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + c = Console() + c.print("[on blue]Hello", justify="right") + c.log("[on blue]hello", justify="right") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py new file mode 100644 index 00000000..01c6cafb --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py @@ -0,0 +1,43 @@ +from typing import Iterable, Tuple, TypeVar + +T = TypeVar("T") + + +def loop_first(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for first value.""" + iter_values = iter(values) + try: + value = next(iter_values) + except StopIteration: + return + yield True, value + for value in iter_values: + yield False, value + + +def loop_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]: + """Iterate and generate a tuple with a flag for last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + for value in iter_values: + yield False, previous_value + previous_value = value + yield True, previous_value + + +def loop_first_last(values: Iterable[T]) -> Iterable[Tuple[bool, bool, T]]: + """Iterate and generate a tuple with a flag for first and last value.""" + iter_values = iter(values) + try: + previous_value = next(iter_values) + except StopIteration: + return + first = True + for value in iter_values: + yield first, False, previous_value + first = False + previous_value = value + yield first, True, previous_value diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py new file mode 100644 index 00000000..b659673e --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py @@ -0,0 +1,69 @@ +from types import TracebackType +from typing import IO, Iterable, Iterator, List, Optional, Type + + +class NullFile(IO[str]): + def close(self) -> None: + pass + + def isatty(self) -> bool: + return False + + def read(self, __n: int = 1) -> str: + return "" + + def readable(self) -> bool: + return False + + def readline(self, __limit: int = 1) -> str: + return "" + + def readlines(self, __hint: int = 1) -> List[str]: + return [] + + def seek(self, __offset: int, __whence: int = 1) -> int: + return 0 + + def seekable(self) -> bool: + return False + + def tell(self) -> int: + return 0 + + def truncate(self, __size: Optional[int] = 1) -> int: + return 0 + + def writable(self) -> bool: + return False + + def writelines(self, __lines: Iterable[str]) -> None: + pass + + def __next__(self) -> str: + return "" + + def __iter__(self) -> Iterator[str]: + return iter([""]) + + def __enter__(self) -> IO[str]: + pass + + def __exit__( + self, + __t: Optional[Type[BaseException]], + __value: Optional[BaseException], + __traceback: Optional[TracebackType], + ) -> None: + pass + + def write(self, text: str) -> int: + return 0 + + def flush(self) -> None: + pass + + def fileno(self) -> int: + return -1 + + +NULL_FILE = NullFile() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py new file mode 100644 index 00000000..3c748d33 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py @@ -0,0 +1,309 @@ +from .palette import Palette + + +# Taken from https://en.wikipedia.org/wiki/ANSI_escape_code (Windows 10 column) +WINDOWS_PALETTE = Palette( + [ + (12, 12, 12), + (197, 15, 31), + (19, 161, 14), + (193, 156, 0), + (0, 55, 218), + (136, 23, 152), + (58, 150, 221), + (204, 204, 204), + (118, 118, 118), + (231, 72, 86), + (22, 198, 12), + (249, 241, 165), + (59, 120, 255), + (180, 0, 158), + (97, 214, 214), + (242, 242, 242), + ] +) + +# # The standard ansi colors (including bright variants) +STANDARD_PALETTE = Palette( + [ + (0, 0, 0), + (170, 0, 0), + (0, 170, 0), + (170, 85, 0), + (0, 0, 170), + (170, 0, 170), + (0, 170, 170), + (170, 170, 170), + (85, 85, 85), + (255, 85, 85), + (85, 255, 85), + (255, 255, 85), + (85, 85, 255), + (255, 85, 255), + (85, 255, 255), + (255, 255, 255), + ] +) + + +# The 256 color palette +EIGHT_BIT_PALETTE = Palette( + [ + (0, 0, 0), + (128, 0, 0), + (0, 128, 0), + (128, 128, 0), + (0, 0, 128), + (128, 0, 128), + (0, 128, 128), + (192, 192, 192), + (128, 128, 128), + (255, 0, 0), + (0, 255, 0), + (255, 255, 0), + (0, 0, 255), + (255, 0, 255), + (0, 255, 255), + (255, 255, 255), + (0, 0, 0), + (0, 0, 95), + (0, 0, 135), + (0, 0, 175), + (0, 0, 215), + (0, 0, 255), + (0, 95, 0), + (0, 95, 95), + (0, 95, 135), + (0, 95, 175), + (0, 95, 215), + (0, 95, 255), + (0, 135, 0), + (0, 135, 95), + (0, 135, 135), + (0, 135, 175), + (0, 135, 215), + (0, 135, 255), + (0, 175, 0), + (0, 175, 95), + (0, 175, 135), + (0, 175, 175), + (0, 175, 215), + (0, 175, 255), + (0, 215, 0), + (0, 215, 95), + (0, 215, 135), + (0, 215, 175), + (0, 215, 215), + (0, 215, 255), + (0, 255, 0), + (0, 255, 95), + (0, 255, 135), + (0, 255, 175), + (0, 255, 215), + (0, 255, 255), + (95, 0, 0), + (95, 0, 95), + (95, 0, 135), + (95, 0, 175), + (95, 0, 215), + (95, 0, 255), + (95, 95, 0), + (95, 95, 95), + (95, 95, 135), + (95, 95, 175), + (95, 95, 215), + (95, 95, 255), + (95, 135, 0), + (95, 135, 95), + (95, 135, 135), + (95, 135, 175), + (95, 135, 215), + (95, 135, 255), + (95, 175, 0), + (95, 175, 95), + (95, 175, 135), + (95, 175, 175), + (95, 175, 215), + (95, 175, 255), + (95, 215, 0), + (95, 215, 95), + (95, 215, 135), + (95, 215, 175), + (95, 215, 215), + (95, 215, 255), + (95, 255, 0), + (95, 255, 95), + (95, 255, 135), + (95, 255, 175), + (95, 255, 215), + (95, 255, 255), + (135, 0, 0), + (135, 0, 95), + (135, 0, 135), + (135, 0, 175), + (135, 0, 215), + (135, 0, 255), + (135, 95, 0), + (135, 95, 95), + (135, 95, 135), + (135, 95, 175), + (135, 95, 215), + (135, 95, 255), + (135, 135, 0), + (135, 135, 95), + (135, 135, 135), + (135, 135, 175), + (135, 135, 215), + (135, 135, 255), + (135, 175, 0), + (135, 175, 95), + (135, 175, 135), + (135, 175, 175), + (135, 175, 215), + (135, 175, 255), + (135, 215, 0), + (135, 215, 95), + (135, 215, 135), + (135, 215, 175), + (135, 215, 215), + (135, 215, 255), + (135, 255, 0), + (135, 255, 95), + (135, 255, 135), + (135, 255, 175), + (135, 255, 215), + (135, 255, 255), + (175, 0, 0), + (175, 0, 95), + (175, 0, 135), + (175, 0, 175), + (175, 0, 215), + (175, 0, 255), + (175, 95, 0), + (175, 95, 95), + (175, 95, 135), + (175, 95, 175), + (175, 95, 215), + (175, 95, 255), + (175, 135, 0), + (175, 135, 95), + (175, 135, 135), + (175, 135, 175), + (175, 135, 215), + (175, 135, 255), + (175, 175, 0), + (175, 175, 95), + (175, 175, 135), + (175, 175, 175), + (175, 175, 215), + (175, 175, 255), + (175, 215, 0), + (175, 215, 95), + (175, 215, 135), + (175, 215, 175), + (175, 215, 215), + (175, 215, 255), + (175, 255, 0), + (175, 255, 95), + (175, 255, 135), + (175, 255, 175), + (175, 255, 215), + (175, 255, 255), + (215, 0, 0), + (215, 0, 95), + (215, 0, 135), + (215, 0, 175), + (215, 0, 215), + (215, 0, 255), + (215, 95, 0), + (215, 95, 95), + (215, 95, 135), + (215, 95, 175), + (215, 95, 215), + (215, 95, 255), + (215, 135, 0), + (215, 135, 95), + (215, 135, 135), + (215, 135, 175), + (215, 135, 215), + (215, 135, 255), + (215, 175, 0), + (215, 175, 95), + (215, 175, 135), + (215, 175, 175), + (215, 175, 215), + (215, 175, 255), + (215, 215, 0), + (215, 215, 95), + (215, 215, 135), + (215, 215, 175), + (215, 215, 215), + (215, 215, 255), + (215, 255, 0), + (215, 255, 95), + (215, 255, 135), + (215, 255, 175), + (215, 255, 215), + (215, 255, 255), + (255, 0, 0), + (255, 0, 95), + (255, 0, 135), + (255, 0, 175), + (255, 0, 215), + (255, 0, 255), + (255, 95, 0), + (255, 95, 95), + (255, 95, 135), + (255, 95, 175), + (255, 95, 215), + (255, 95, 255), + (255, 135, 0), + (255, 135, 95), + (255, 135, 135), + (255, 135, 175), + (255, 135, 215), + (255, 135, 255), + (255, 175, 0), + (255, 175, 95), + (255, 175, 135), + (255, 175, 175), + (255, 175, 215), + (255, 175, 255), + (255, 215, 0), + (255, 215, 95), + (255, 215, 135), + (255, 215, 175), + (255, 215, 215), + (255, 215, 255), + (255, 255, 0), + (255, 255, 95), + (255, 255, 135), + (255, 255, 175), + (255, 255, 215), + (255, 255, 255), + (8, 8, 8), + (18, 18, 18), + (28, 28, 28), + (38, 38, 38), + (48, 48, 48), + (58, 58, 58), + (68, 68, 68), + (78, 78, 78), + (88, 88, 88), + (98, 98, 98), + (108, 108, 108), + (118, 118, 118), + (128, 128, 128), + (138, 138, 138), + (148, 148, 148), + (158, 158, 158), + (168, 168, 168), + (178, 178, 178), + (188, 188, 188), + (198, 198, 198), + (208, 208, 208), + (218, 218, 218), + (228, 228, 228), + (238, 238, 238), + ] +) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py new file mode 100644 index 00000000..4f6d8b2d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py @@ -0,0 +1,17 @@ +from typing import Optional + + +def pick_bool(*values: Optional[bool]) -> bool: + """Pick the first non-none bool or return the last value. + + Args: + *values (bool): Any number of boolean or None values. + + Returns: + bool: First non-none boolean. + """ + assert values, "1 or more values required" + for value in values: + if value is not None: + return value + return bool(value) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py new file mode 100644 index 00000000..95267b0c --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py @@ -0,0 +1,159 @@ +import sys +from fractions import Fraction +from math import ceil +from typing import cast, List, Optional, Sequence + +if sys.version_info >= (3, 8): + from typing import Protocol +else: + from pip._vendor.typing_extensions import Protocol # pragma: no cover + + +class Edge(Protocol): + """Any object that defines an edge (such as Layout).""" + + size: Optional[int] = None + ratio: int = 1 + minimum_size: int = 1 + + +def ratio_resolve(total: int, edges: Sequence[Edge]) -> List[int]: + """Divide total space to satisfy size, ratio, and minimum_size, constraints. + + The returned list of integers should add up to total in most cases, unless it is + impossible to satisfy all the constraints. For instance, if there are two edges + with a minimum size of 20 each and `total` is 30 then the returned list will be + greater than total. In practice, this would mean that a Layout object would + clip the rows that would overflow the screen height. + + Args: + total (int): Total number of characters. + edges (List[Edge]): Edges within total space. + + Returns: + List[int]: Number of characters for each edge. + """ + # Size of edge or None for yet to be determined + sizes = [(edge.size or None) for edge in edges] + + _Fraction = Fraction + + # While any edges haven't been calculated + while None in sizes: + # Get flexible edges and index to map these back on to sizes list + flexible_edges = [ + (index, edge) + for index, (size, edge) in enumerate(zip(sizes, edges)) + if size is None + ] + # Remaining space in total + remaining = total - sum(size or 0 for size in sizes) + if remaining <= 0: + # No room for flexible edges + return [ + ((edge.minimum_size or 1) if size is None else size) + for size, edge in zip(sizes, edges) + ] + # Calculate number of characters in a ratio portion + portion = _Fraction( + remaining, sum((edge.ratio or 1) for _, edge in flexible_edges) + ) + + # If any edges will be less than their minimum, replace size with the minimum + for index, edge in flexible_edges: + if portion * edge.ratio <= edge.minimum_size: + sizes[index] = edge.minimum_size + # New fixed size will invalidate calculations, so we need to repeat the process + break + else: + # Distribute flexible space and compensate for rounding error + # Since edge sizes can only be integers we need to add the remainder + # to the following line + remainder = _Fraction(0) + for index, edge in flexible_edges: + size, remainder = divmod(portion * edge.ratio + remainder, 1) + sizes[index] = size + break + # Sizes now contains integers only + return cast(List[int], sizes) + + +def ratio_reduce( + total: int, ratios: List[int], maximums: List[int], values: List[int] +) -> List[int]: + """Divide an integer total in to parts based on ratios. + + Args: + total (int): The total to divide. + ratios (List[int]): A list of integer ratios. + maximums (List[int]): List of maximums values for each slot. + values (List[int]): List of values + + Returns: + List[int]: A list of integers guaranteed to sum to total. + """ + ratios = [ratio if _max else 0 for ratio, _max in zip(ratios, maximums)] + total_ratio = sum(ratios) + if not total_ratio: + return values[:] + total_remaining = total + result: List[int] = [] + append = result.append + for ratio, maximum, value in zip(ratios, maximums, values): + if ratio and total_ratio > 0: + distributed = min(maximum, round(ratio * total_remaining / total_ratio)) + append(value - distributed) + total_remaining -= distributed + total_ratio -= ratio + else: + append(value) + return result + + +def ratio_distribute( + total: int, ratios: List[int], minimums: Optional[List[int]] = None +) -> List[int]: + """Distribute an integer total in to parts based on ratios. + + Args: + total (int): The total to divide. + ratios (List[int]): A list of integer ratios. + minimums (List[int]): List of minimum values for each slot. + + Returns: + List[int]: A list of integers guaranteed to sum to total. + """ + if minimums: + ratios = [ratio if _min else 0 for ratio, _min in zip(ratios, minimums)] + total_ratio = sum(ratios) + assert total_ratio > 0, "Sum of ratios must be > 0" + + total_remaining = total + distributed_total: List[int] = [] + append = distributed_total.append + if minimums is None: + _minimums = [0] * len(ratios) + else: + _minimums = minimums + for ratio, minimum in zip(ratios, _minimums): + if total_ratio > 0: + distributed = max(minimum, ceil(ratio * total_remaining / total_ratio)) + else: + distributed = total_remaining + append(distributed) + total_ratio -= ratio + total_remaining -= distributed + return distributed_total + + +if __name__ == "__main__": + from dataclasses import dataclass + + @dataclass + class E: + size: Optional[int] = None + ratio: int = 1 + minimum_size: int = 1 + + resolved = ratio_resolve(110, [E(None, 1, 1), E(None, 1, 1), E(None, 1, 1)]) + print(sum(resolved)) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py new file mode 100644 index 00000000..d0bb1fe7 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py @@ -0,0 +1,482 @@ +""" +Spinners are from: +* cli-spinners: + MIT License + Copyright (c) Sindre Sorhus (sindresorhus.com) + 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. +""" + +SPINNERS = { + "dots": { + "interval": 80, + "frames": "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", + }, + "dots2": {"interval": 80, "frames": "⣾⣽⣻⢿⡿⣟⣯⣷"}, + "dots3": { + "interval": 80, + "frames": "⠋⠙⠚⠞⠖⠦⠴⠲⠳⠓", + }, + "dots4": { + "interval": 80, + "frames": "⠄⠆⠇⠋⠙⠸⠰⠠⠰⠸⠙⠋⠇⠆", + }, + "dots5": { + "interval": 80, + "frames": "⠋⠙⠚⠒⠂⠂⠒⠲⠴⠦⠖⠒⠐⠐⠒⠓⠋", + }, + "dots6": { + "interval": 80, + "frames": "⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠴⠲⠒⠂⠂⠒⠚⠙⠉⠁", + }, + "dots7": { + "interval": 80, + "frames": "⠈⠉⠋⠓⠒⠐⠐⠒⠖⠦⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈", + }, + "dots8": { + "interval": 80, + "frames": "⠁⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈⠈", + }, + "dots9": {"interval": 80, "frames": "⢹⢺⢼⣸⣇⡧⡗⡏"}, + "dots10": {"interval": 80, "frames": "⢄⢂⢁⡁⡈⡐⡠"}, + "dots11": {"interval": 100, "frames": "⠁⠂⠄⡀⢀⠠⠐⠈"}, + "dots12": { + "interval": 80, + "frames": [ + "⢀⠀", + "⡀⠀", + "⠄⠀", + "⢂⠀", + "⡂⠀", + "⠅⠀", + "⢃⠀", + "⡃⠀", + "⠍⠀", + "⢋⠀", + "⡋⠀", + "⠍⠁", + "⢋⠁", + "⡋⠁", + "⠍⠉", + "⠋⠉", + "⠋⠉", + "⠉⠙", + "⠉⠙", + "⠉⠩", + "⠈⢙", + "⠈⡙", + "⢈⠩", + "⡀⢙", + "⠄⡙", + "⢂⠩", + "⡂⢘", + "⠅⡘", + "⢃⠨", + "⡃⢐", + "⠍⡐", + "⢋⠠", + "⡋⢀", + "⠍⡁", + "⢋⠁", + "⡋⠁", + "⠍⠉", + "⠋⠉", + "⠋⠉", + "⠉⠙", + "⠉⠙", + "⠉⠩", + "⠈⢙", + "⠈⡙", + "⠈⠩", + "⠀⢙", + "⠀⡙", + "⠀⠩", + "⠀⢘", + "⠀⡘", + "⠀⠨", + "⠀⢐", + "⠀⡐", + "⠀⠠", + "⠀⢀", + "⠀⡀", + ], + }, + "dots8Bit": { + "interval": 80, + "frames": "⠀⠁⠂⠃⠄⠅⠆⠇⡀⡁⡂⡃⡄⡅⡆⡇⠈⠉⠊⠋⠌⠍⠎⠏⡈⡉⡊⡋⡌⡍⡎⡏⠐⠑⠒⠓⠔⠕⠖⠗⡐⡑⡒⡓⡔⡕⡖⡗⠘⠙⠚⠛⠜⠝⠞⠟⡘⡙" + "⡚⡛⡜⡝⡞⡟⠠⠡⠢⠣⠤⠥⠦⠧⡠⡡⡢⡣⡤⡥⡦⡧⠨⠩⠪⠫⠬⠭⠮⠯⡨⡩⡪⡫⡬⡭⡮⡯⠰⠱⠲⠳⠴⠵⠶⠷⡰⡱⡲⡳⡴⡵⡶⡷⠸⠹⠺⠻" + "⠼⠽⠾⠿⡸⡹⡺⡻⡼⡽⡾⡿⢀⢁⢂⢃⢄⢅⢆⢇⣀⣁⣂⣃⣄⣅⣆⣇⢈⢉⢊⢋⢌⢍⢎⢏⣈⣉⣊⣋⣌⣍⣎⣏⢐⢑⢒⢓⢔⢕⢖⢗⣐⣑⣒⣓⣔⣕" + "⣖⣗⢘⢙⢚⢛⢜⢝⢞⢟⣘⣙⣚⣛⣜⣝⣞⣟⢠⢡⢢⢣⢤⢥⢦⢧⣠⣡⣢⣣⣤⣥⣦⣧⢨⢩⢪⢫⢬⢭⢮⢯⣨⣩⣪⣫⣬⣭⣮⣯⢰⢱⢲⢳⢴⢵⢶⢷" + "⣰⣱⣲⣳⣴⣵⣶⣷⢸⢹⢺⢻⢼⢽⢾⢿⣸⣹⣺⣻⣼⣽⣾⣿", + }, + "line": {"interval": 130, "frames": ["-", "\\", "|", "/"]}, + "line2": {"interval": 100, "frames": "⠂-–—–-"}, + "pipe": {"interval": 100, "frames": "┤┘┴└├┌┬┐"}, + "simpleDots": {"interval": 400, "frames": [". ", ".. ", "...", " "]}, + "simpleDotsScrolling": { + "interval": 200, + "frames": [". ", ".. ", "...", " ..", " .", " "], + }, + "star": {"interval": 70, "frames": "✶✸✹✺✹✷"}, + "star2": {"interval": 80, "frames": "+x*"}, + "flip": { + "interval": 70, + "frames": "___-``'´-___", + }, + "hamburger": {"interval": 100, "frames": "☱☲☴"}, + "growVertical": { + "interval": 120, + "frames": "▁▃▄▅▆▇▆▅▄▃", + }, + "growHorizontal": { + "interval": 120, + "frames": "▏▎▍▌▋▊▉▊▋▌▍▎", + }, + "balloon": {"interval": 140, "frames": " .oO@* "}, + "balloon2": {"interval": 120, "frames": ".oO°Oo."}, + "noise": {"interval": 100, "frames": "▓▒░"}, + "bounce": {"interval": 120, "frames": "⠁⠂⠄⠂"}, + "boxBounce": {"interval": 120, "frames": "▖▘▝▗"}, + "boxBounce2": {"interval": 100, "frames": "▌▀▐▄"}, + "triangle": {"interval": 50, "frames": "◢◣◤◥"}, + "arc": {"interval": 100, "frames": "◜◠◝◞◡◟"}, + "circle": {"interval": 120, "frames": "◡⊙◠"}, + "squareCorners": {"interval": 180, "frames": "◰◳◲◱"}, + "circleQuarters": {"interval": 120, "frames": "◴◷◶◵"}, + "circleHalves": {"interval": 50, "frames": "◐◓◑◒"}, + "squish": {"interval": 100, "frames": "╫╪"}, + "toggle": {"interval": 250, "frames": "⊶⊷"}, + "toggle2": {"interval": 80, "frames": "▫▪"}, + "toggle3": {"interval": 120, "frames": "□■"}, + "toggle4": {"interval": 100, "frames": "■□▪▫"}, + "toggle5": {"interval": 100, "frames": "▮▯"}, + "toggle6": {"interval": 300, "frames": "ဝ၀"}, + "toggle7": {"interval": 80, "frames": "⦾⦿"}, + "toggle8": {"interval": 100, "frames": "◍◌"}, + "toggle9": {"interval": 100, "frames": "◉◎"}, + "toggle10": {"interval": 100, "frames": "㊂㊀㊁"}, + "toggle11": {"interval": 50, "frames": "⧇⧆"}, + "toggle12": {"interval": 120, "frames": "☗☖"}, + "toggle13": {"interval": 80, "frames": "=*-"}, + "arrow": {"interval": 100, "frames": "←↖↑↗→↘↓↙"}, + "arrow2": { + "interval": 80, + "frames": ["⬆️ ", "↗️ ", "➡️ ", "↘️ ", "⬇️ ", "↙️ ", "⬅️ ", "↖️ "], + }, + "arrow3": { + "interval": 120, + "frames": ["▹▹▹▹▹", "▸▹▹▹▹", "▹▸▹▹▹", "▹▹▸▹▹", "▹▹▹▸▹", "▹▹▹▹▸"], + }, + "bouncingBar": { + "interval": 80, + "frames": [ + "[ ]", + "[= ]", + "[== ]", + "[=== ]", + "[ ===]", + "[ ==]", + "[ =]", + "[ ]", + "[ =]", + "[ ==]", + "[ ===]", + "[====]", + "[=== ]", + "[== ]", + "[= ]", + ], + }, + "bouncingBall": { + "interval": 80, + "frames": [ + "( ● )", + "( ● )", + "( ● )", + "( ● )", + "( ●)", + "( ● )", + "( ● )", + "( ● )", + "( ● )", + "(● )", + ], + }, + "smiley": {"interval": 200, "frames": ["😄 ", "😝 "]}, + "monkey": {"interval": 300, "frames": ["🙈 ", "🙈 ", "🙉 ", "🙊 "]}, + "hearts": {"interval": 100, "frames": ["💛 ", "💙 ", "💜 ", "💚 ", "❤️ "]}, + "clock": { + "interval": 100, + "frames": [ + "🕛 ", + "🕐 ", + "🕑 ", + "🕒 ", + "🕓 ", + "🕔 ", + "🕕 ", + "🕖 ", + "🕗 ", + "🕘 ", + "🕙 ", + "🕚 ", + ], + }, + "earth": {"interval": 180, "frames": ["🌍 ", "🌎 ", "🌏 "]}, + "material": { + "interval": 17, + "frames": [ + "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "███████▁▁▁▁▁▁▁▁▁▁▁▁▁", + "████████▁▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "██████████▁▁▁▁▁▁▁▁▁▁", + "███████████▁▁▁▁▁▁▁▁▁", + "█████████████▁▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁▁██████████████▁▁▁▁", + "▁▁▁██████████████▁▁▁", + "▁▁▁▁█████████████▁▁▁", + "▁▁▁▁██████████████▁▁", + "▁▁▁▁██████████████▁▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁██████████████▁", + "▁▁▁▁▁▁██████████████", + "▁▁▁▁▁▁██████████████", + "▁▁▁▁▁▁▁█████████████", + "▁▁▁▁▁▁▁█████████████", + "▁▁▁▁▁▁▁▁████████████", + "▁▁▁▁▁▁▁▁████████████", + "▁▁▁▁▁▁▁▁▁███████████", + "▁▁▁▁▁▁▁▁▁███████████", + "▁▁▁▁▁▁▁▁▁▁██████████", + "▁▁▁▁▁▁▁▁▁▁██████████", + "▁▁▁▁▁▁▁▁▁▁▁▁████████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "██████▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "████████▁▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "█████████▁▁▁▁▁▁▁▁▁▁▁", + "███████████▁▁▁▁▁▁▁▁▁", + "████████████▁▁▁▁▁▁▁▁", + "████████████▁▁▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "██████████████▁▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁██████████████▁▁▁▁▁", + "▁▁▁█████████████▁▁▁▁", + "▁▁▁▁▁████████████▁▁▁", + "▁▁▁▁▁████████████▁▁▁", + "▁▁▁▁▁▁███████████▁▁▁", + "▁▁▁▁▁▁▁▁█████████▁▁▁", + "▁▁▁▁▁▁▁▁█████████▁▁▁", + "▁▁▁▁▁▁▁▁▁█████████▁▁", + "▁▁▁▁▁▁▁▁▁█████████▁▁", + "▁▁▁▁▁▁▁▁▁▁█████████▁", + "▁▁▁▁▁▁▁▁▁▁▁████████▁", + "▁▁▁▁▁▁▁▁▁▁▁████████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁███████▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁███████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + ], + }, + "moon": { + "interval": 80, + "frames": ["🌑 ", "🌒 ", "🌓 ", "🌔 ", "🌕 ", "🌖 ", "🌗 ", "🌘 "], + }, + "runner": {"interval": 140, "frames": ["🚶 ", "🏃 "]}, + "pong": { + "interval": 80, + "frames": [ + "▐⠂ ▌", + "▐⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂▌", + "▐ ⠠▌", + "▐ ⡀▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐ ⠠ ▌", + "▐ ⠂ ▌", + "▐ ⠈ ▌", + "▐ ⠂ ▌", + "▐ ⠠ ▌", + "▐ ⡀ ▌", + "▐⠠ ▌", + ], + }, + "shark": { + "interval": 120, + "frames": [ + "▐|\\____________▌", + "▐_|\\___________▌", + "▐__|\\__________▌", + "▐___|\\_________▌", + "▐____|\\________▌", + "▐_____|\\_______▌", + "▐______|\\______▌", + "▐_______|\\_____▌", + "▐________|\\____▌", + "▐_________|\\___▌", + "▐__________|\\__▌", + "▐___________|\\_▌", + "▐____________|\\▌", + "▐____________/|▌", + "▐___________/|_▌", + "▐__________/|__▌", + "▐_________/|___▌", + "▐________/|____▌", + "▐_______/|_____▌", + "▐______/|______▌", + "▐_____/|_______▌", + "▐____/|________▌", + "▐___/|_________▌", + "▐__/|__________▌", + "▐_/|___________▌", + "▐/|____________▌", + ], + }, + "dqpb": {"interval": 100, "frames": "dqpb"}, + "weather": { + "interval": 100, + "frames": [ + "☀️ ", + "☀️ ", + "☀️ ", + "🌤 ", + "⛅️ ", + "🌥 ", + "☁️ ", + "🌧 ", + "🌨 ", + "🌧 ", + "🌨 ", + "🌧 ", + "🌨 ", + "⛈ ", + "🌨 ", + "🌧 ", + "🌨 ", + "☁️ ", + "🌥 ", + "⛅️ ", + "🌤 ", + "☀️ ", + "☀️ ", + ], + }, + "christmas": {"interval": 400, "frames": "🌲🎄"}, + "grenade": { + "interval": 80, + "frames": [ + "، ", + "′ ", + " ´ ", + " ‾ ", + " ⸌", + " ⸊", + " |", + " ⁎", + " ⁕", + " ෴ ", + " ⁓", + " ", + " ", + " ", + ], + }, + "point": {"interval": 125, "frames": ["∙∙∙", "●∙∙", "∙●∙", "∙∙●", "∙∙∙"]}, + "layer": {"interval": 150, "frames": "-=≡"}, + "betaWave": { + "interval": 80, + "frames": [ + "ρββββββ", + "βρβββββ", + "ββρββββ", + "βββρβββ", + "ββββρββ", + "βββββρβ", + "ββββββρ", + ], + }, + "aesthetic": { + "interval": 80, + "frames": [ + "▰▱▱▱▱▱▱", + "▰▰▱▱▱▱▱", + "▰▰▰▱▱▱▱", + "▰▰▰▰▱▱▱", + "▰▰▰▰▰▱▱", + "▰▰▰▰▰▰▱", + "▰▰▰▰▰▰▰", + "▰▱▱▱▱▱▱", + ], + }, +} diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py new file mode 100644 index 00000000..194564e7 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py @@ -0,0 +1,16 @@ +from typing import List, TypeVar + +T = TypeVar("T") + + +class Stack(List[T]): + """A small shim over builtin list.""" + + @property + def top(self) -> T: + """Get top of stack.""" + return self[-1] + + def push(self, item: T) -> None: + """Push an item on to the stack (append in stack nomenclature).""" + self.append(item) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py new file mode 100644 index 00000000..a2ca6be0 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py @@ -0,0 +1,19 @@ +""" +Timer context manager, only used in debug. + +""" + +from time import time + +import contextlib +from typing import Generator + + +@contextlib.contextmanager +def timer(subject: str = "time") -> Generator[None, None, None]: + """print the elapsed time. (only used in debugging)""" + start = time() + yield + elapsed = time() - start + elapsed_ms = elapsed * 1000 + print(f"{subject} elapsed {elapsed_ms:.1f}ms") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py new file mode 100644 index 00000000..81b10829 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py @@ -0,0 +1,662 @@ +"""Light wrapper around the Win32 Console API - this module should only be imported on Windows + +The API that this module wraps is documented at https://docs.microsoft.com/en-us/windows/console/console-functions +""" +import ctypes +import sys +from typing import Any + +windll: Any = None +if sys.platform == "win32": + windll = ctypes.LibraryLoader(ctypes.WinDLL) +else: + raise ImportError(f"{__name__} can only be imported on Windows") + +import time +from ctypes import Structure, byref, wintypes +from typing import IO, NamedTuple, Type, cast + +from pip._vendor.rich.color import ColorSystem +from pip._vendor.rich.style import Style + +STDOUT = -11 +ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4 + +COORD = wintypes._COORD + + +class LegacyWindowsError(Exception): + pass + + +class WindowsCoordinates(NamedTuple): + """Coordinates in the Windows Console API are (y, x), not (x, y). + This class is intended to prevent that confusion. + Rows and columns are indexed from 0. + This class can be used in place of wintypes._COORD in arguments and argtypes. + """ + + row: int + col: int + + @classmethod + def from_param(cls, value: "WindowsCoordinates") -> COORD: + """Converts a WindowsCoordinates into a wintypes _COORD structure. + This classmethod is internally called by ctypes to perform the conversion. + + Args: + value (WindowsCoordinates): The input coordinates to convert. + + Returns: + wintypes._COORD: The converted coordinates struct. + """ + return COORD(value.col, value.row) + + +class CONSOLE_SCREEN_BUFFER_INFO(Structure): + _fields_ = [ + ("dwSize", COORD), + ("dwCursorPosition", COORD), + ("wAttributes", wintypes.WORD), + ("srWindow", wintypes.SMALL_RECT), + ("dwMaximumWindowSize", COORD), + ] + + +class CONSOLE_CURSOR_INFO(ctypes.Structure): + _fields_ = [("dwSize", wintypes.DWORD), ("bVisible", wintypes.BOOL)] + + +_GetStdHandle = windll.kernel32.GetStdHandle +_GetStdHandle.argtypes = [ + wintypes.DWORD, +] +_GetStdHandle.restype = wintypes.HANDLE + + +def GetStdHandle(handle: int = STDOUT) -> wintypes.HANDLE: + """Retrieves a handle to the specified standard device (standard input, standard output, or standard error). + + Args: + handle (int): Integer identifier for the handle. Defaults to -11 (stdout). + + Returns: + wintypes.HANDLE: The handle + """ + return cast(wintypes.HANDLE, _GetStdHandle(handle)) + + +_GetConsoleMode = windll.kernel32.GetConsoleMode +_GetConsoleMode.argtypes = [wintypes.HANDLE, wintypes.LPDWORD] +_GetConsoleMode.restype = wintypes.BOOL + + +def GetConsoleMode(std_handle: wintypes.HANDLE) -> int: + """Retrieves the current input mode of a console's input buffer + or the current output mode of a console screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + + Raises: + LegacyWindowsError: If any error occurs while calling the Windows console API. + + Returns: + int: Value representing the current console mode as documented at + https://docs.microsoft.com/en-us/windows/console/getconsolemode#parameters + """ + + console_mode = wintypes.DWORD() + success = bool(_GetConsoleMode(std_handle, console_mode)) + if not success: + raise LegacyWindowsError("Unable to get legacy Windows Console Mode") + return console_mode.value + + +_FillConsoleOutputCharacterW = windll.kernel32.FillConsoleOutputCharacterW +_FillConsoleOutputCharacterW.argtypes = [ + wintypes.HANDLE, + ctypes.c_char, + wintypes.DWORD, + cast(Type[COORD], WindowsCoordinates), + ctypes.POINTER(wintypes.DWORD), +] +_FillConsoleOutputCharacterW.restype = wintypes.BOOL + + +def FillConsoleOutputCharacter( + std_handle: wintypes.HANDLE, + char: str, + length: int, + start: WindowsCoordinates, +) -> int: + """Writes a character to the console screen buffer a specified number of times, beginning at the specified coordinates. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + char (str): The character to write. Must be a string of length 1. + length (int): The number of times to write the character. + start (WindowsCoordinates): The coordinates to start writing at. + + Returns: + int: The number of characters written. + """ + character = ctypes.c_char(char.encode()) + num_characters = wintypes.DWORD(length) + num_written = wintypes.DWORD(0) + _FillConsoleOutputCharacterW( + std_handle, + character, + num_characters, + start, + byref(num_written), + ) + return num_written.value + + +_FillConsoleOutputAttribute = windll.kernel32.FillConsoleOutputAttribute +_FillConsoleOutputAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, + wintypes.DWORD, + cast(Type[COORD], WindowsCoordinates), + ctypes.POINTER(wintypes.DWORD), +] +_FillConsoleOutputAttribute.restype = wintypes.BOOL + + +def FillConsoleOutputAttribute( + std_handle: wintypes.HANDLE, + attributes: int, + length: int, + start: WindowsCoordinates, +) -> int: + """Sets the character attributes for a specified number of character cells, + beginning at the specified coordinates in a screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + attributes (int): Integer value representing the foreground and background colours of the cells. + length (int): The number of cells to set the output attribute of. + start (WindowsCoordinates): The coordinates of the first cell whose attributes are to be set. + + Returns: + int: The number of cells whose attributes were actually set. + """ + num_cells = wintypes.DWORD(length) + style_attrs = wintypes.WORD(attributes) + num_written = wintypes.DWORD(0) + _FillConsoleOutputAttribute( + std_handle, style_attrs, num_cells, start, byref(num_written) + ) + return num_written.value + + +_SetConsoleTextAttribute = windll.kernel32.SetConsoleTextAttribute +_SetConsoleTextAttribute.argtypes = [ + wintypes.HANDLE, + wintypes.WORD, +] +_SetConsoleTextAttribute.restype = wintypes.BOOL + + +def SetConsoleTextAttribute( + std_handle: wintypes.HANDLE, attributes: wintypes.WORD +) -> bool: + """Set the colour attributes for all text written after this function is called. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + attributes (int): Integer value representing the foreground and background colours. + + + Returns: + bool: True if the attribute was set successfully, otherwise False. + """ + return bool(_SetConsoleTextAttribute(std_handle, attributes)) + + +_GetConsoleScreenBufferInfo = windll.kernel32.GetConsoleScreenBufferInfo +_GetConsoleScreenBufferInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_SCREEN_BUFFER_INFO), +] +_GetConsoleScreenBufferInfo.restype = wintypes.BOOL + + +def GetConsoleScreenBufferInfo( + std_handle: wintypes.HANDLE, +) -> CONSOLE_SCREEN_BUFFER_INFO: + """Retrieves information about the specified console screen buffer. + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + + Returns: + CONSOLE_SCREEN_BUFFER_INFO: A CONSOLE_SCREEN_BUFFER_INFO ctype struct contain information about + screen size, cursor position, colour attributes, and more.""" + console_screen_buffer_info = CONSOLE_SCREEN_BUFFER_INFO() + _GetConsoleScreenBufferInfo(std_handle, byref(console_screen_buffer_info)) + return console_screen_buffer_info + + +_SetConsoleCursorPosition = windll.kernel32.SetConsoleCursorPosition +_SetConsoleCursorPosition.argtypes = [ + wintypes.HANDLE, + cast(Type[COORD], WindowsCoordinates), +] +_SetConsoleCursorPosition.restype = wintypes.BOOL + + +def SetConsoleCursorPosition( + std_handle: wintypes.HANDLE, coords: WindowsCoordinates +) -> bool: + """Set the position of the cursor in the console screen + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + coords (WindowsCoordinates): The coordinates to move the cursor to. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleCursorPosition(std_handle, coords)) + + +_GetConsoleCursorInfo = windll.kernel32.GetConsoleCursorInfo +_GetConsoleCursorInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_CURSOR_INFO), +] +_GetConsoleCursorInfo.restype = wintypes.BOOL + + +def GetConsoleCursorInfo( + std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO +) -> bool: + """Get the cursor info - used to get cursor visibility and width + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct that receives information + about the console's cursor. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_GetConsoleCursorInfo(std_handle, byref(cursor_info))) + + +_SetConsoleCursorInfo = windll.kernel32.SetConsoleCursorInfo +_SetConsoleCursorInfo.argtypes = [ + wintypes.HANDLE, + ctypes.POINTER(CONSOLE_CURSOR_INFO), +] +_SetConsoleCursorInfo.restype = wintypes.BOOL + + +def SetConsoleCursorInfo( + std_handle: wintypes.HANDLE, cursor_info: CONSOLE_CURSOR_INFO +) -> bool: + """Set the cursor info - used for adjusting cursor visibility and width + + Args: + std_handle (wintypes.HANDLE): A handle to the console input buffer or the console screen buffer. + cursor_info (CONSOLE_CURSOR_INFO): CONSOLE_CURSOR_INFO ctype struct containing the new cursor info. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleCursorInfo(std_handle, byref(cursor_info))) + + +_SetConsoleTitle = windll.kernel32.SetConsoleTitleW +_SetConsoleTitle.argtypes = [wintypes.LPCWSTR] +_SetConsoleTitle.restype = wintypes.BOOL + + +def SetConsoleTitle(title: str) -> bool: + """Sets the title of the current console window + + Args: + title (str): The new title of the console window. + + Returns: + bool: True if the function succeeds, otherwise False. + """ + return bool(_SetConsoleTitle(title)) + + +class LegacyWindowsTerm: + """This class allows interaction with the legacy Windows Console API. It should only be used in the context + of environments where virtual terminal processing is not available. However, if it is used in a Windows environment, + the entire API should work. + + Args: + file (IO[str]): The file which the Windows Console API HANDLE is retrieved from, defaults to sys.stdout. + """ + + BRIGHT_BIT = 8 + + # Indices are ANSI color numbers, values are the corresponding Windows Console API color numbers + ANSI_TO_WINDOWS = [ + 0, # black The Windows colours are defined in wincon.h as follows: + 4, # red define FOREGROUND_BLUE 0x0001 -- 0000 0001 + 2, # green define FOREGROUND_GREEN 0x0002 -- 0000 0010 + 6, # yellow define FOREGROUND_RED 0x0004 -- 0000 0100 + 1, # blue define FOREGROUND_INTENSITY 0x0008 -- 0000 1000 + 5, # magenta define BACKGROUND_BLUE 0x0010 -- 0001 0000 + 3, # cyan define BACKGROUND_GREEN 0x0020 -- 0010 0000 + 7, # white define BACKGROUND_RED 0x0040 -- 0100 0000 + 8, # bright black (grey) define BACKGROUND_INTENSITY 0x0080 -- 1000 0000 + 12, # bright red + 10, # bright green + 14, # bright yellow + 9, # bright blue + 13, # bright magenta + 11, # bright cyan + 15, # bright white + ] + + def __init__(self, file: "IO[str]") -> None: + handle = GetStdHandle(STDOUT) + self._handle = handle + default_text = GetConsoleScreenBufferInfo(handle).wAttributes + self._default_text = default_text + + self._default_fore = default_text & 7 + self._default_back = (default_text >> 4) & 7 + self._default_attrs = self._default_fore | (self._default_back << 4) + + self._file = file + self.write = file.write + self.flush = file.flush + + @property + def cursor_position(self) -> WindowsCoordinates: + """Returns the current position of the cursor (0-based) + + Returns: + WindowsCoordinates: The current cursor position. + """ + coord: COORD = GetConsoleScreenBufferInfo(self._handle).dwCursorPosition + return WindowsCoordinates(row=cast(int, coord.Y), col=cast(int, coord.X)) + + @property + def screen_size(self) -> WindowsCoordinates: + """Returns the current size of the console screen buffer, in character columns and rows + + Returns: + WindowsCoordinates: The width and height of the screen as WindowsCoordinates. + """ + screen_size: COORD = GetConsoleScreenBufferInfo(self._handle).dwSize + return WindowsCoordinates( + row=cast(int, screen_size.Y), col=cast(int, screen_size.X) + ) + + def write_text(self, text: str) -> None: + """Write text directly to the terminal without any modification of styles + + Args: + text (str): The text to write to the console + """ + self.write(text) + self.flush() + + def write_styled(self, text: str, style: Style) -> None: + """Write styled text to the terminal. + + Args: + text (str): The text to write + style (Style): The style of the text + """ + color = style.color + bgcolor = style.bgcolor + if style.reverse: + color, bgcolor = bgcolor, color + + if color: + fore = color.downgrade(ColorSystem.WINDOWS).number + fore = fore if fore is not None else 7 # Default to ANSI 7: White + if style.bold: + fore = fore | self.BRIGHT_BIT + if style.dim: + fore = fore & ~self.BRIGHT_BIT + fore = self.ANSI_TO_WINDOWS[fore] + else: + fore = self._default_fore + + if bgcolor: + back = bgcolor.downgrade(ColorSystem.WINDOWS).number + back = back if back is not None else 0 # Default to ANSI 0: Black + back = self.ANSI_TO_WINDOWS[back] + else: + back = self._default_back + + assert fore is not None + assert back is not None + + SetConsoleTextAttribute( + self._handle, attributes=ctypes.c_ushort(fore | (back << 4)) + ) + self.write_text(text) + SetConsoleTextAttribute(self._handle, attributes=self._default_text) + + def move_cursor_to(self, new_position: WindowsCoordinates) -> None: + """Set the position of the cursor + + Args: + new_position (WindowsCoordinates): The WindowsCoordinates representing the new position of the cursor. + """ + if new_position.col < 0 or new_position.row < 0: + return + SetConsoleCursorPosition(self._handle, coords=new_position) + + def erase_line(self) -> None: + """Erase all content on the line the cursor is currently located at""" + screen_size = self.screen_size + cursor_position = self.cursor_position + cells_to_erase = screen_size.col + start_coordinates = WindowsCoordinates(row=cursor_position.row, col=0) + FillConsoleOutputCharacter( + self._handle, " ", length=cells_to_erase, start=start_coordinates + ) + FillConsoleOutputAttribute( + self._handle, + self._default_attrs, + length=cells_to_erase, + start=start_coordinates, + ) + + def erase_end_of_line(self) -> None: + """Erase all content from the cursor position to the end of that line""" + cursor_position = self.cursor_position + cells_to_erase = self.screen_size.col - cursor_position.col + FillConsoleOutputCharacter( + self._handle, " ", length=cells_to_erase, start=cursor_position + ) + FillConsoleOutputAttribute( + self._handle, + self._default_attrs, + length=cells_to_erase, + start=cursor_position, + ) + + def erase_start_of_line(self) -> None: + """Erase all content from the cursor position to the start of that line""" + row, col = self.cursor_position + start = WindowsCoordinates(row, 0) + FillConsoleOutputCharacter(self._handle, " ", length=col, start=start) + FillConsoleOutputAttribute( + self._handle, self._default_attrs, length=col, start=start + ) + + def move_cursor_up(self) -> None: + """Move the cursor up a single cell""" + cursor_position = self.cursor_position + SetConsoleCursorPosition( + self._handle, + coords=WindowsCoordinates( + row=cursor_position.row - 1, col=cursor_position.col + ), + ) + + def move_cursor_down(self) -> None: + """Move the cursor down a single cell""" + cursor_position = self.cursor_position + SetConsoleCursorPosition( + self._handle, + coords=WindowsCoordinates( + row=cursor_position.row + 1, + col=cursor_position.col, + ), + ) + + def move_cursor_forward(self) -> None: + """Move the cursor forward a single cell. Wrap to the next line if required.""" + row, col = self.cursor_position + if col == self.screen_size.col - 1: + row += 1 + col = 0 + else: + col += 1 + SetConsoleCursorPosition( + self._handle, coords=WindowsCoordinates(row=row, col=col) + ) + + def move_cursor_to_column(self, column: int) -> None: + """Move cursor to the column specified by the zero-based column index, staying on the same row + + Args: + column (int): The zero-based column index to move the cursor to. + """ + row, _ = self.cursor_position + SetConsoleCursorPosition(self._handle, coords=WindowsCoordinates(row, column)) + + def move_cursor_backward(self) -> None: + """Move the cursor backward a single cell. Wrap to the previous line if required.""" + row, col = self.cursor_position + if col == 0: + row -= 1 + col = self.screen_size.col - 1 + else: + col -= 1 + SetConsoleCursorPosition( + self._handle, coords=WindowsCoordinates(row=row, col=col) + ) + + def hide_cursor(self) -> None: + """Hide the cursor""" + current_cursor_size = self._get_cursor_size() + invisible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=0) + SetConsoleCursorInfo(self._handle, cursor_info=invisible_cursor) + + def show_cursor(self) -> None: + """Show the cursor""" + current_cursor_size = self._get_cursor_size() + visible_cursor = CONSOLE_CURSOR_INFO(dwSize=current_cursor_size, bVisible=1) + SetConsoleCursorInfo(self._handle, cursor_info=visible_cursor) + + def set_title(self, title: str) -> None: + """Set the title of the terminal window + + Args: + title (str): The new title of the console window + """ + assert len(title) < 255, "Console title must be less than 255 characters" + SetConsoleTitle(title) + + def _get_cursor_size(self) -> int: + """Get the percentage of the character cell that is filled by the cursor""" + cursor_info = CONSOLE_CURSOR_INFO() + GetConsoleCursorInfo(self._handle, cursor_info=cursor_info) + return int(cursor_info.dwSize) + + +if __name__ == "__main__": + handle = GetStdHandle() + + from pip._vendor.rich.console import Console + + console = Console() + + term = LegacyWindowsTerm(sys.stdout) + term.set_title("Win32 Console Examples") + + style = Style(color="black", bgcolor="red") + + heading = Style.parse("black on green") + + # Check colour output + console.rule("Checking colour output") + console.print("[on red]on red!") + console.print("[blue]blue!") + console.print("[yellow]yellow!") + console.print("[bold yellow]bold yellow!") + console.print("[bright_yellow]bright_yellow!") + console.print("[dim bright_yellow]dim bright_yellow!") + console.print("[italic cyan]italic cyan!") + console.print("[bold white on blue]bold white on blue!") + console.print("[reverse bold white on blue]reverse bold white on blue!") + console.print("[bold black on cyan]bold black on cyan!") + console.print("[black on green]black on green!") + console.print("[blue on green]blue on green!") + console.print("[white on black]white on black!") + console.print("[black on white]black on white!") + console.print("[#1BB152 on #DA812D]#1BB152 on #DA812D!") + + # Check cursor movement + console.rule("Checking cursor movement") + console.print() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("went back and wrapped to prev line") + time.sleep(1) + term.move_cursor_up() + term.write_text("we go up") + time.sleep(1) + term.move_cursor_down() + term.write_text("and down") + time.sleep(1) + term.move_cursor_up() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("we went up and back 2") + time.sleep(1) + term.move_cursor_down() + term.move_cursor_backward() + term.move_cursor_backward() + term.write_text("we went down and back 2") + time.sleep(1) + + # Check erasing of lines + term.hide_cursor() + console.print() + console.rule("Checking line erasing") + console.print("\n...Deleting to the start of the line...") + term.write_text("The red arrow shows the cursor location, and direction of erase") + time.sleep(1) + term.move_cursor_to_column(16) + term.write_styled("<", Style.parse("black on red")) + term.move_cursor_backward() + time.sleep(1) + term.erase_start_of_line() + time.sleep(1) + + console.print("\n\n...And to the end of the line...") + term.write_text("The red arrow shows the cursor location, and direction of erase") + time.sleep(1) + + term.move_cursor_to_column(16) + term.write_styled(">", Style.parse("black on red")) + time.sleep(1) + term.erase_end_of_line() + time.sleep(1) + + console.print("\n\n...Now the whole line will be erased...") + term.write_styled("I'm going to disappear!", style=Style.parse("black on cyan")) + time.sleep(1) + term.erase_line() + + term.show_cursor() + print("\n") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py new file mode 100644 index 00000000..7520a9f9 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py @@ -0,0 +1,71 @@ +import sys +from dataclasses import dataclass + + +@dataclass +class WindowsConsoleFeatures: + """Windows features available.""" + + vt: bool = False + """The console supports VT codes.""" + truecolor: bool = False + """The console supports truecolor.""" + + +try: + import ctypes + from ctypes import LibraryLoader + + if sys.platform == "win32": + windll = LibraryLoader(ctypes.WinDLL) + else: + windll = None + raise ImportError("Not windows") + + from pip._vendor.rich._win32_console import ( + ENABLE_VIRTUAL_TERMINAL_PROCESSING, + GetConsoleMode, + GetStdHandle, + LegacyWindowsError, + ) + +except (AttributeError, ImportError, ValueError): + # Fallback if we can't load the Windows DLL + def get_windows_console_features() -> WindowsConsoleFeatures: + features = WindowsConsoleFeatures() + return features + +else: + + def get_windows_console_features() -> WindowsConsoleFeatures: + """Get windows console features. + + Returns: + WindowsConsoleFeatures: An instance of WindowsConsoleFeatures. + """ + handle = GetStdHandle() + try: + console_mode = GetConsoleMode(handle) + success = True + except LegacyWindowsError: + console_mode = 0 + success = False + vt = bool(success and console_mode & ENABLE_VIRTUAL_TERMINAL_PROCESSING) + truecolor = False + if vt: + win_version = sys.getwindowsversion() + truecolor = win_version.major > 10 or ( + win_version.major == 10 and win_version.build >= 15063 + ) + features = WindowsConsoleFeatures(vt=vt, truecolor=truecolor) + return features + + +if __name__ == "__main__": + import platform + + features = get_windows_console_features() + from pip._vendor.rich import print + + print(f'platform="{platform.system()}"') + print(repr(features)) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py new file mode 100644 index 00000000..5ece0564 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py @@ -0,0 +1,56 @@ +from typing import Iterable, Sequence, Tuple, cast + +from pip._vendor.rich._win32_console import LegacyWindowsTerm, WindowsCoordinates +from pip._vendor.rich.segment import ControlCode, ControlType, Segment + + +def legacy_windows_render(buffer: Iterable[Segment], term: LegacyWindowsTerm) -> None: + """Makes appropriate Windows Console API calls based on the segments in the buffer. + + Args: + buffer (Iterable[Segment]): Iterable of Segments to convert to Win32 API calls. + term (LegacyWindowsTerm): Used to call the Windows Console API. + """ + for text, style, control in buffer: + if not control: + if style: + term.write_styled(text, style) + else: + term.write_text(text) + else: + control_codes: Sequence[ControlCode] = control + for control_code in control_codes: + control_type = control_code[0] + if control_type == ControlType.CURSOR_MOVE_TO: + _, x, y = cast(Tuple[ControlType, int, int], control_code) + term.move_cursor_to(WindowsCoordinates(row=y - 1, col=x - 1)) + elif control_type == ControlType.CARRIAGE_RETURN: + term.write_text("\r") + elif control_type == ControlType.HOME: + term.move_cursor_to(WindowsCoordinates(0, 0)) + elif control_type == ControlType.CURSOR_UP: + term.move_cursor_up() + elif control_type == ControlType.CURSOR_DOWN: + term.move_cursor_down() + elif control_type == ControlType.CURSOR_FORWARD: + term.move_cursor_forward() + elif control_type == ControlType.CURSOR_BACKWARD: + term.move_cursor_backward() + elif control_type == ControlType.CURSOR_MOVE_TO_COLUMN: + _, column = cast(Tuple[ControlType, int], control_code) + term.move_cursor_to_column(column - 1) + elif control_type == ControlType.HIDE_CURSOR: + term.hide_cursor() + elif control_type == ControlType.SHOW_CURSOR: + term.show_cursor() + elif control_type == ControlType.ERASE_IN_LINE: + _, mode = cast(Tuple[ControlType, int], control_code) + if mode == 0: + term.erase_end_of_line() + elif mode == 1: + term.erase_start_of_line() + elif mode == 2: + term.erase_line() + elif control_type == ControlType.SET_WINDOW_TITLE: + _, title = cast(Tuple[ControlType, str], control_code) + term.set_title(title) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py new file mode 100644 index 00000000..2e94ff6f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py @@ -0,0 +1,93 @@ +from __future__ import annotations + +import re +from typing import Iterable + +from ._loop import loop_last +from .cells import cell_len, chop_cells + +re_word = re.compile(r"\s*\S+\s*") + + +def words(text: str) -> Iterable[tuple[int, int, str]]: + """Yields each word from the text as a tuple + containing (start_index, end_index, word). A "word" in this context may + include the actual word and any whitespace to the right. + """ + position = 0 + word_match = re_word.match(text, position) + while word_match is not None: + start, end = word_match.span() + word = word_match.group(0) + yield start, end, word + word_match = re_word.match(text, end) + + +def divide_line(text: str, width: int, fold: bool = True) -> list[int]: + """Given a string of text, and a width (measured in cells), return a list + of cell offsets which the string should be split at in order for it to fit + within the given width. + + Args: + text: The text to examine. + width: The available cell width. + fold: If True, words longer than `width` will be folded onto a new line. + + Returns: + A list of indices to break the line at. + """ + break_positions: list[int] = [] # offsets to insert the breaks at + append = break_positions.append + cell_offset = 0 + _cell_len = cell_len + + for start, _end, word in words(text): + word_length = _cell_len(word.rstrip()) + remaining_space = width - cell_offset + word_fits_remaining_space = remaining_space >= word_length + + if word_fits_remaining_space: + # Simplest case - the word fits within the remaining width for this line. + cell_offset += _cell_len(word) + else: + # Not enough space remaining for this word on the current line. + if word_length > width: + # The word doesn't fit on any line, so we can't simply + # place it on the next line... + if fold: + # Fold the word across multiple lines. + folded_word = chop_cells(word, width=width) + for last, line in loop_last(folded_word): + if start: + append(start) + if last: + cell_offset = _cell_len(line) + else: + start += len(line) + else: + # Folding isn't allowed, so crop the word. + if start: + append(start) + cell_offset = _cell_len(word) + elif cell_offset and start: + # The word doesn't fit within the remaining space on the current + # line, but it *can* fit on to the next (empty) line. + append(start) + cell_offset = _cell_len(word) + + return break_positions + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + + console = Console(width=10) + console.print("12345 abcdefghijklmnopqrstuvwyxzABCDEFGHIJKLMNOPQRSTUVWXYZ 12345") + print(chop_cells("abcdefghijklmnopqrstuvwxyz", 10)) + + console = Console(width=20) + console.rule() + console.print("TextualはPythonの高速アプリケーション開発フレームワークです") + + console.rule() + console.print("アプリケーションは1670万色を使用でき") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/abc.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/abc.py new file mode 100644 index 00000000..e6e498ef --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/abc.py @@ -0,0 +1,33 @@ +from abc import ABC + + +class RichRenderable(ABC): + """An abstract base class for Rich renderables. + + Note that there is no need to extend this class, the intended use is to check if an + object supports the Rich renderable protocol. For example:: + + if isinstance(my_object, RichRenderable): + console.print(my_object) + + """ + + @classmethod + def __subclasshook__(cls, other: type) -> bool: + """Check if this class supports the rich render protocol.""" + return hasattr(other, "__rich_console__") or hasattr(other, "__rich__") + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.text import Text + + t = Text() + print(isinstance(Text, RichRenderable)) + print(isinstance(t, RichRenderable)) + + class Foo: + pass + + f = Foo() + print(isinstance(f, RichRenderable)) + print(isinstance("", RichRenderable)) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/align.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/align.py new file mode 100644 index 00000000..f7b734fd --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/align.py @@ -0,0 +1,311 @@ +import sys +from itertools import chain +from typing import TYPE_CHECKING, Iterable, Optional + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + +from .constrain import Constrain +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import StyleType + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + +AlignMethod = Literal["left", "center", "right"] +VerticalAlignMethod = Literal["top", "middle", "bottom"] + + +class Align(JupyterMixin): + """Align a renderable by adding spaces if necessary. + + Args: + renderable (RenderableType): A console renderable. + align (AlignMethod): One of "left", "center", or "right"" + style (StyleType, optional): An optional style to apply to the background. + vertical (Optional[VerticalAlignMethod], optional): Optional vertical align, one of "top", "middle", or "bottom". Defaults to None. + pad (bool, optional): Pad the right with spaces. Defaults to True. + width (int, optional): Restrict contents to given width, or None to use default width. Defaults to None. + height (int, optional): Set height of align renderable, or None to fit to contents. Defaults to None. + + Raises: + ValueError: if ``align`` is not one of the expected values. + """ + + def __init__( + self, + renderable: "RenderableType", + align: AlignMethod = "left", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> None: + if align not in ("left", "center", "right"): + raise ValueError( + f'invalid value for align, expected "left", "center", or "right" (not {align!r})' + ) + if vertical is not None and vertical not in ("top", "middle", "bottom"): + raise ValueError( + f'invalid value for vertical, expected "top", "middle", or "bottom" (not {vertical!r})' + ) + self.renderable = renderable + self.align = align + self.style = style + self.vertical = vertical + self.pad = pad + self.width = width + self.height = height + + def __repr__(self) -> str: + return f"Align({self.renderable!r}, {self.align!r})" + + @classmethod + def left( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the left.""" + return cls( + renderable, + "left", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + @classmethod + def center( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the center.""" + return cls( + renderable, + "center", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + @classmethod + def right( + cls, + renderable: "RenderableType", + style: Optional[StyleType] = None, + *, + vertical: Optional[VerticalAlignMethod] = None, + pad: bool = True, + width: Optional[int] = None, + height: Optional[int] = None, + ) -> "Align": + """Align a renderable to the right.""" + return cls( + renderable, + "right", + style=style, + vertical=vertical, + pad=pad, + width=width, + height=height, + ) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + align = self.align + width = console.measure(self.renderable, options=options).maximum + rendered = console.render( + Constrain( + self.renderable, width if self.width is None else min(width, self.width) + ), + options.update(height=None), + ) + lines = list(Segment.split_lines(rendered)) + width, height = Segment.get_shape(lines) + lines = Segment.set_shape(lines, width, height) + new_line = Segment.line() + excess_space = options.max_width - width + style = console.get_style(self.style) if self.style is not None else None + + def generate_segments() -> Iterable[Segment]: + if excess_space <= 0: + # Exact fit + for line in lines: + yield from line + yield new_line + + elif align == "left": + # Pad on the right + pad = Segment(" " * excess_space, style) if self.pad else None + for line in lines: + yield from line + if pad: + yield pad + yield new_line + + elif align == "center": + # Pad left and right + left = excess_space // 2 + pad = Segment(" " * left, style) + pad_right = ( + Segment(" " * (excess_space - left), style) if self.pad else None + ) + for line in lines: + if left: + yield pad + yield from line + if pad_right: + yield pad_right + yield new_line + + elif align == "right": + # Padding on left + pad = Segment(" " * excess_space, style) + for line in lines: + yield pad + yield from line + yield new_line + + blank_line = ( + Segment(f"{' ' * (self.width or options.max_width)}\n", style) + if self.pad + else Segment("\n") + ) + + def blank_lines(count: int) -> Iterable[Segment]: + if count > 0: + for _ in range(count): + yield blank_line + + vertical_height = self.height or options.height + iter_segments: Iterable[Segment] + if self.vertical and vertical_height is not None: + if self.vertical == "top": + bottom_space = vertical_height - height + iter_segments = chain(generate_segments(), blank_lines(bottom_space)) + elif self.vertical == "middle": + top_space = (vertical_height - height) // 2 + bottom_space = vertical_height - top_space - height + iter_segments = chain( + blank_lines(top_space), + generate_segments(), + blank_lines(bottom_space), + ) + else: # self.vertical == "bottom": + top_space = vertical_height - height + iter_segments = chain(blank_lines(top_space), generate_segments()) + else: + iter_segments = generate_segments() + if self.style: + style = console.get_style(self.style) + iter_segments = Segment.apply_style(iter_segments, style) + yield from iter_segments + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + measurement = Measurement.get(console, options, self.renderable) + return measurement + + +class VerticalCenter(JupyterMixin): + """Vertically aligns a renderable. + + Warn: + This class is deprecated and may be removed in a future version. Use Align class with + `vertical="middle"`. + + Args: + renderable (RenderableType): A renderable object. + """ + + def __init__( + self, + renderable: "RenderableType", + style: Optional[StyleType] = None, + ) -> None: + self.renderable = renderable + self.style = style + + def __repr__(self) -> str: + return f"VerticalCenter({self.renderable!r})" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + style = console.get_style(self.style) if self.style is not None else None + lines = console.render_lines( + self.renderable, options.update(height=None), pad=False + ) + width, _height = Segment.get_shape(lines) + new_line = Segment.line() + height = options.height or options.size.height + top_space = (height - len(lines)) // 2 + bottom_space = height - top_space - len(lines) + blank_line = Segment(f"{' ' * width}", style) + + def blank_lines(count: int) -> Iterable[Segment]: + for _ in range(count): + yield blank_line + yield new_line + + if top_space > 0: + yield from blank_lines(top_space) + for line in lines: + yield from line + yield new_line + if bottom_space > 0: + yield from blank_lines(bottom_space) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> Measurement: + measurement = Measurement.get(console, options, self.renderable) + return measurement + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console, Group + from pip._vendor.rich.highlighter import ReprHighlighter + from pip._vendor.rich.panel import Panel + + highlighter = ReprHighlighter() + console = Console() + + panel = Panel( + Group( + Align.left(highlighter("align='left'")), + Align.center(highlighter("align='center'")), + Align.right(highlighter("align='right'")), + ), + width=60, + style="on dark_blue", + title="Align", + ) + + console.print( + Align.center(panel, vertical="middle", style="on red", height=console.height) + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py new file mode 100644 index 00000000..66365e65 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py @@ -0,0 +1,240 @@ +import re +import sys +from contextlib import suppress +from typing import Iterable, NamedTuple, Optional + +from .color import Color +from .style import Style +from .text import Text + +re_ansi = re.compile( + r""" +(?:\x1b\](.*?)\x1b\\)| +(?:\x1b([(@-Z\\-_]|\[[0-?]*[ -/]*[@-~])) +""", + re.VERBOSE, +) + + +class _AnsiToken(NamedTuple): + """Result of ansi tokenized string.""" + + plain: str = "" + sgr: Optional[str] = "" + osc: Optional[str] = "" + + +def _ansi_tokenize(ansi_text: str) -> Iterable[_AnsiToken]: + """Tokenize a string in to plain text and ANSI codes. + + Args: + ansi_text (str): A String containing ANSI codes. + + Yields: + AnsiToken: A named tuple of (plain, sgr, osc) + """ + + position = 0 + sgr: Optional[str] + osc: Optional[str] + for match in re_ansi.finditer(ansi_text): + start, end = match.span(0) + osc, sgr = match.groups() + if start > position: + yield _AnsiToken(ansi_text[position:start]) + if sgr: + if sgr == "(": + position = end + 1 + continue + if sgr.endswith("m"): + yield _AnsiToken("", sgr[1:-1], osc) + else: + yield _AnsiToken("", sgr, osc) + position = end + if position < len(ansi_text): + yield _AnsiToken(ansi_text[position:]) + + +SGR_STYLE_MAP = { + 1: "bold", + 2: "dim", + 3: "italic", + 4: "underline", + 5: "blink", + 6: "blink2", + 7: "reverse", + 8: "conceal", + 9: "strike", + 21: "underline2", + 22: "not dim not bold", + 23: "not italic", + 24: "not underline", + 25: "not blink", + 26: "not blink2", + 27: "not reverse", + 28: "not conceal", + 29: "not strike", + 30: "color(0)", + 31: "color(1)", + 32: "color(2)", + 33: "color(3)", + 34: "color(4)", + 35: "color(5)", + 36: "color(6)", + 37: "color(7)", + 39: "default", + 40: "on color(0)", + 41: "on color(1)", + 42: "on color(2)", + 43: "on color(3)", + 44: "on color(4)", + 45: "on color(5)", + 46: "on color(6)", + 47: "on color(7)", + 49: "on default", + 51: "frame", + 52: "encircle", + 53: "overline", + 54: "not frame not encircle", + 55: "not overline", + 90: "color(8)", + 91: "color(9)", + 92: "color(10)", + 93: "color(11)", + 94: "color(12)", + 95: "color(13)", + 96: "color(14)", + 97: "color(15)", + 100: "on color(8)", + 101: "on color(9)", + 102: "on color(10)", + 103: "on color(11)", + 104: "on color(12)", + 105: "on color(13)", + 106: "on color(14)", + 107: "on color(15)", +} + + +class AnsiDecoder: + """Translate ANSI code in to styled Text.""" + + def __init__(self) -> None: + self.style = Style.null() + + def decode(self, terminal_text: str) -> Iterable[Text]: + """Decode ANSI codes in an iterable of lines. + + Args: + lines (Iterable[str]): An iterable of lines of terminal output. + + Yields: + Text: Marked up Text. + """ + for line in terminal_text.splitlines(): + yield self.decode_line(line) + + def decode_line(self, line: str) -> Text: + """Decode a line containing ansi codes. + + Args: + line (str): A line of terminal output. + + Returns: + Text: A Text instance marked up according to ansi codes. + """ + from_ansi = Color.from_ansi + from_rgb = Color.from_rgb + _Style = Style + text = Text() + append = text.append + line = line.rsplit("\r", 1)[-1] + for plain_text, sgr, osc in _ansi_tokenize(line): + if plain_text: + append(plain_text, self.style or None) + elif osc is not None: + if osc.startswith("8;"): + _params, semicolon, link = osc[2:].partition(";") + if semicolon: + self.style = self.style.update_link(link or None) + elif sgr is not None: + # Translate in to semi-colon separated codes + # Ignore invalid codes, because we want to be lenient + codes = [ + min(255, int(_code) if _code else 0) + for _code in sgr.split(";") + if _code.isdigit() or _code == "" + ] + iter_codes = iter(codes) + for code in iter_codes: + if code == 0: + # reset + self.style = _Style.null() + elif code in SGR_STYLE_MAP: + # styles + self.style += _Style.parse(SGR_STYLE_MAP[code]) + elif code == 38: + #  Foreground + with suppress(StopIteration): + color_type = next(iter_codes) + if color_type == 5: + self.style += _Style.from_color( + from_ansi(next(iter_codes)) + ) + elif color_type == 2: + self.style += _Style.from_color( + from_rgb( + next(iter_codes), + next(iter_codes), + next(iter_codes), + ) + ) + elif code == 48: + # Background + with suppress(StopIteration): + color_type = next(iter_codes) + if color_type == 5: + self.style += _Style.from_color( + None, from_ansi(next(iter_codes)) + ) + elif color_type == 2: + self.style += _Style.from_color( + None, + from_rgb( + next(iter_codes), + next(iter_codes), + next(iter_codes), + ), + ) + + return text + + +if sys.platform != "win32" and __name__ == "__main__": # pragma: no cover + import io + import os + import pty + import sys + + decoder = AnsiDecoder() + + stdout = io.BytesIO() + + def read(fd: int) -> bytes: + data = os.read(fd, 1024) + stdout.write(data) + return data + + pty.spawn(sys.argv[1:], read) + + from .console import Console + + console = Console(record=True) + + stdout_result = stdout.getvalue().decode("utf-8") + print(stdout_result) + + for line in decoder.decode(stdout_result): + console.print(line) + + console.save_html("stdout.html") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/bar.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/bar.py new file mode 100644 index 00000000..022284b5 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/bar.py @@ -0,0 +1,93 @@ +from typing import Optional, Union + +from .color import Color +from .console import Console, ConsoleOptions, RenderResult +from .jupyter import JupyterMixin +from .measure import Measurement +from .segment import Segment +from .style import Style + +# There are left-aligned characters for 1/8 to 7/8, but +# the right-aligned characters exist only for 1/8 and 4/8. +BEGIN_BLOCK_ELEMENTS = ["█", "█", "█", "▐", "▐", "▐", "▕", "▕"] +END_BLOCK_ELEMENTS = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉"] +FULL_BLOCK = "█" + + +class Bar(JupyterMixin): + """Renders a solid block bar. + + Args: + size (float): Value for the end of the bar. + begin (float): Begin point (between 0 and size, inclusive). + end (float): End point (between 0 and size, inclusive). + width (int, optional): Width of the bar, or ``None`` for maximum width. Defaults to None. + color (Union[Color, str], optional): Color of the bar. Defaults to "default". + bgcolor (Union[Color, str], optional): Color of bar background. Defaults to "default". + """ + + def __init__( + self, + size: float, + begin: float, + end: float, + *, + width: Optional[int] = None, + color: Union[Color, str] = "default", + bgcolor: Union[Color, str] = "default", + ): + self.size = size + self.begin = max(begin, 0) + self.end = min(end, size) + self.width = width + self.style = Style(color=color, bgcolor=bgcolor) + + def __repr__(self) -> str: + return f"Bar({self.size}, {self.begin}, {self.end})" + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + width = min( + self.width if self.width is not None else options.max_width, + options.max_width, + ) + + if self.begin >= self.end: + yield Segment(" " * width, self.style) + yield Segment.line() + return + + prefix_complete_eights = int(width * 8 * self.begin / self.size) + prefix_bar_count = prefix_complete_eights // 8 + prefix_eights_count = prefix_complete_eights % 8 + + body_complete_eights = int(width * 8 * self.end / self.size) + body_bar_count = body_complete_eights // 8 + body_eights_count = body_complete_eights % 8 + + # When start and end fall into the same cell, we ideally should render + # a symbol that's "center-aligned", but there is no good symbol in Unicode. + # In this case, we fall back to right-aligned block symbol for simplicity. + + prefix = " " * prefix_bar_count + if prefix_eights_count: + prefix += BEGIN_BLOCK_ELEMENTS[prefix_eights_count] + + body = FULL_BLOCK * body_bar_count + if body_eights_count: + body += END_BLOCK_ELEMENTS[body_eights_count] + + suffix = " " * (width - len(body)) + + yield Segment(prefix + body[len(prefix) :] + suffix, self.style) + yield Segment.line() + + def __rich_measure__( + self, console: Console, options: ConsoleOptions + ) -> Measurement: + return ( + Measurement(self.width, self.width) + if self.width is not None + else Measurement(4, options.max_width) + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/box.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/box.py new file mode 100644 index 00000000..0511a9e4 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/box.py @@ -0,0 +1,480 @@ +import sys +from typing import TYPE_CHECKING, Iterable, List + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + + +from ._loop import loop_last + +if TYPE_CHECKING: + from pip._vendor.rich.console import ConsoleOptions + + +class Box: + """Defines characters to render boxes. + + ┌─┬┐ top + │ ││ head + ├─┼┤ head_row + │ ││ mid + ├─┼┤ row + ├─┼┤ foot_row + │ ││ foot + └─┴┘ bottom + + Args: + box (str): Characters making up box. + ascii (bool, optional): True if this box uses ascii characters only. Default is False. + """ + + def __init__(self, box: str, *, ascii: bool = False) -> None: + self._box = box + self.ascii = ascii + line1, line2, line3, line4, line5, line6, line7, line8 = box.splitlines() + # top + self.top_left, self.top, self.top_divider, self.top_right = iter(line1) + # head + self.head_left, _, self.head_vertical, self.head_right = iter(line2) + # head_row + ( + self.head_row_left, + self.head_row_horizontal, + self.head_row_cross, + self.head_row_right, + ) = iter(line3) + + # mid + self.mid_left, _, self.mid_vertical, self.mid_right = iter(line4) + # row + self.row_left, self.row_horizontal, self.row_cross, self.row_right = iter(line5) + # foot_row + ( + self.foot_row_left, + self.foot_row_horizontal, + self.foot_row_cross, + self.foot_row_right, + ) = iter(line6) + # foot + self.foot_left, _, self.foot_vertical, self.foot_right = iter(line7) + # bottom + self.bottom_left, self.bottom, self.bottom_divider, self.bottom_right = iter( + line8 + ) + + def __repr__(self) -> str: + return "Box(...)" + + def __str__(self) -> str: + return self._box + + def substitute(self, options: "ConsoleOptions", safe: bool = True) -> "Box": + """Substitute this box for another if it won't render due to platform issues. + + Args: + options (ConsoleOptions): Console options used in rendering. + safe (bool, optional): Substitute this for another Box if there are known problems + displaying on the platform (currently only relevant on Windows). Default is True. + + Returns: + Box: A different Box or the same Box. + """ + box = self + if options.legacy_windows and safe: + box = LEGACY_WINDOWS_SUBSTITUTIONS.get(box, box) + if options.ascii_only and not box.ascii: + box = ASCII + return box + + def get_plain_headed_box(self) -> "Box": + """If this box uses special characters for the borders of the header, then + return the equivalent box that does not. + + Returns: + Box: The most similar Box that doesn't use header-specific box characters. + If the current Box already satisfies this criterion, then it's returned. + """ + return PLAIN_HEADED_SUBSTITUTIONS.get(self, self) + + def get_top(self, widths: Iterable[int]) -> str: + """Get the top of a simple box. + + Args: + widths (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + + parts: List[str] = [] + append = parts.append + append(self.top_left) + for last, width in loop_last(widths): + append(self.top * width) + if not last: + append(self.top_divider) + append(self.top_right) + return "".join(parts) + + def get_row( + self, + widths: Iterable[int], + level: Literal["head", "row", "foot", "mid"] = "row", + edge: bool = True, + ) -> str: + """Get the top of a simple box. + + Args: + width (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + if level == "head": + left = self.head_row_left + horizontal = self.head_row_horizontal + cross = self.head_row_cross + right = self.head_row_right + elif level == "row": + left = self.row_left + horizontal = self.row_horizontal + cross = self.row_cross + right = self.row_right + elif level == "mid": + left = self.mid_left + horizontal = " " + cross = self.mid_vertical + right = self.mid_right + elif level == "foot": + left = self.foot_row_left + horizontal = self.foot_row_horizontal + cross = self.foot_row_cross + right = self.foot_row_right + else: + raise ValueError("level must be 'head', 'row' or 'foot'") + + parts: List[str] = [] + append = parts.append + if edge: + append(left) + for last, width in loop_last(widths): + append(horizontal * width) + if not last: + append(cross) + if edge: + append(right) + return "".join(parts) + + def get_bottom(self, widths: Iterable[int]) -> str: + """Get the bottom of a simple box. + + Args: + widths (List[int]): Widths of columns. + + Returns: + str: A string of box characters. + """ + + parts: List[str] = [] + append = parts.append + append(self.bottom_left) + for last, width in loop_last(widths): + append(self.bottom * width) + if not last: + append(self.bottom_divider) + append(self.bottom_right) + return "".join(parts) + + +# fmt: off +ASCII: Box = Box( + "+--+\n" + "| ||\n" + "|-+|\n" + "| ||\n" + "|-+|\n" + "|-+|\n" + "| ||\n" + "+--+\n", + ascii=True, +) + +ASCII2: Box = Box( + "+-++\n" + "| ||\n" + "+-++\n" + "| ||\n" + "+-++\n" + "+-++\n" + "| ||\n" + "+-++\n", + ascii=True, +) + +ASCII_DOUBLE_HEAD: Box = Box( + "+-++\n" + "| ||\n" + "+=++\n" + "| ||\n" + "+-++\n" + "+-++\n" + "| ||\n" + "+-++\n", + ascii=True, +) + +SQUARE: Box = Box( + "┌─┬┐\n" + "│ ││\n" + "├─┼┤\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +SQUARE_DOUBLE_HEAD: Box = Box( + "┌─┬┐\n" + "│ ││\n" + "╞═╪╡\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +MINIMAL: Box = Box( + " ╷ \n" + " │ \n" + "╶─┼╴\n" + " │ \n" + "╶─┼╴\n" + "╶─┼╴\n" + " │ \n" + " ╵ \n" +) + + +MINIMAL_HEAVY_HEAD: Box = Box( + " ╷ \n" + " │ \n" + "╺━┿╸\n" + " │ \n" + "╶─┼╴\n" + "╶─┼╴\n" + " │ \n" + " ╵ \n" +) + +MINIMAL_DOUBLE_HEAD: Box = Box( + " ╷ \n" + " │ \n" + " ═╪ \n" + " │ \n" + " ─┼ \n" + " ─┼ \n" + " │ \n" + " ╵ \n" +) + + +SIMPLE: Box = Box( + " \n" + " \n" + " ── \n" + " \n" + " \n" + " ── \n" + " \n" + " \n" +) + +SIMPLE_HEAD: Box = Box( + " \n" + " \n" + " ── \n" + " \n" + " \n" + " \n" + " \n" + " \n" +) + + +SIMPLE_HEAVY: Box = Box( + " \n" + " \n" + " ━━ \n" + " \n" + " \n" + " ━━ \n" + " \n" + " \n" +) + + +HORIZONTALS: Box = Box( + " ── \n" + " \n" + " ── \n" + " \n" + " ── \n" + " ── \n" + " \n" + " ── \n" +) + +ROUNDED: Box = Box( + "╭─┬╮\n" + "│ ││\n" + "├─┼┤\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "╰─┴╯\n" +) + +HEAVY: Box = Box( + "┏━┳┓\n" + "┃ ┃┃\n" + "┣━╋┫\n" + "┃ ┃┃\n" + "┣━╋┫\n" + "┣━╋┫\n" + "┃ ┃┃\n" + "┗━┻┛\n" +) + +HEAVY_EDGE: Box = Box( + "┏━┯┓\n" + "┃ │┃\n" + "┠─┼┨\n" + "┃ │┃\n" + "┠─┼┨\n" + "┠─┼┨\n" + "┃ │┃\n" + "┗━┷┛\n" +) + +HEAVY_HEAD: Box = Box( + "┏━┳┓\n" + "┃ ┃┃\n" + "┡━╇┩\n" + "│ ││\n" + "├─┼┤\n" + "├─┼┤\n" + "│ ││\n" + "└─┴┘\n" +) + +DOUBLE: Box = Box( + "╔═╦╗\n" + "║ ║║\n" + "╠═╬╣\n" + "║ ║║\n" + "╠═╬╣\n" + "╠═╬╣\n" + "║ ║║\n" + "╚═╩╝\n" +) + +DOUBLE_EDGE: Box = Box( + "╔═╤╗\n" + "║ │║\n" + "╟─┼╢\n" + "║ │║\n" + "╟─┼╢\n" + "╟─┼╢\n" + "║ │║\n" + "╚═╧╝\n" +) + +MARKDOWN: Box = Box( + " \n" + "| ||\n" + "|-||\n" + "| ||\n" + "|-||\n" + "|-||\n" + "| ||\n" + " \n", + ascii=True, +) +# fmt: on + +# Map Boxes that don't render with raster fonts on to equivalent that do +LEGACY_WINDOWS_SUBSTITUTIONS = { + ROUNDED: SQUARE, + MINIMAL_HEAVY_HEAD: MINIMAL, + SIMPLE_HEAVY: SIMPLE, + HEAVY: SQUARE, + HEAVY_EDGE: SQUARE, + HEAVY_HEAD: SQUARE, +} + +# Map headed boxes to their headerless equivalents +PLAIN_HEADED_SUBSTITUTIONS = { + HEAVY_HEAD: SQUARE, + SQUARE_DOUBLE_HEAD: SQUARE, + MINIMAL_DOUBLE_HEAD: MINIMAL, + MINIMAL_HEAVY_HEAD: MINIMAL, + ASCII_DOUBLE_HEAD: ASCII2, +} + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.columns import Columns + from pip._vendor.rich.panel import Panel + + from . import box as box + from .console import Console + from .table import Table + from .text import Text + + console = Console(record=True) + + BOXES = [ + "ASCII", + "ASCII2", + "ASCII_DOUBLE_HEAD", + "SQUARE", + "SQUARE_DOUBLE_HEAD", + "MINIMAL", + "MINIMAL_HEAVY_HEAD", + "MINIMAL_DOUBLE_HEAD", + "SIMPLE", + "SIMPLE_HEAD", + "SIMPLE_HEAVY", + "HORIZONTALS", + "ROUNDED", + "HEAVY", + "HEAVY_EDGE", + "HEAVY_HEAD", + "DOUBLE", + "DOUBLE_EDGE", + "MARKDOWN", + ] + + console.print(Panel("[bold green]Box Constants", style="green"), justify="center") + console.print() + + columns = Columns(expand=True, padding=2) + for box_name in sorted(BOXES): + table = Table( + show_footer=True, style="dim", border_style="not dim", expand=True + ) + table.add_column("Header 1", "Footer 1") + table.add_column("Header 2", "Footer 2") + table.add_row("Cell", "Cell") + table.add_row("Cell", "Cell") + table.box = getattr(box, box_name) + table.title = Text(f"box.{box_name}", style="magenta") + columns.add_renderable(table) + console.print(columns) + + # console.save_svg("box.svg") diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/cells.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/cells.py new file mode 100644 index 00000000..f85f928f --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/cells.py @@ -0,0 +1,167 @@ +from __future__ import annotations + +import re +from functools import lru_cache +from typing import Callable + +from ._cell_widths import CELL_WIDTHS + +# Regex to match sequence of the most common character ranges +_is_single_cell_widths = re.compile("^[\u0020-\u006f\u00a0\u02ff\u0370-\u0482]*$").match + + +@lru_cache(4096) +def cached_cell_len(text: str) -> int: + """Get the number of cells required to display text. + + This method always caches, which may use up a lot of memory. It is recommended to use + `cell_len` over this method. + + Args: + text (str): Text to display. + + Returns: + int: Get the number of cells required to display text. + """ + _get_size = get_character_cell_size + total_size = sum(_get_size(character) for character in text) + return total_size + + +def cell_len(text: str, _cell_len: Callable[[str], int] = cached_cell_len) -> int: + """Get the number of cells required to display text. + + Args: + text (str): Text to display. + + Returns: + int: Get the number of cells required to display text. + """ + if len(text) < 512: + return _cell_len(text) + _get_size = get_character_cell_size + total_size = sum(_get_size(character) for character in text) + return total_size + + +@lru_cache(maxsize=4096) +def get_character_cell_size(character: str) -> int: + """Get the cell size of a character. + + Args: + character (str): A single character. + + Returns: + int: Number of cells (0, 1 or 2) occupied by that character. + """ + return _get_codepoint_cell_size(ord(character)) + + +@lru_cache(maxsize=4096) +def _get_codepoint_cell_size(codepoint: int) -> int: + """Get the cell size of a character. + + Args: + codepoint (int): Codepoint of a character. + + Returns: + int: Number of cells (0, 1 or 2) occupied by that character. + """ + + _table = CELL_WIDTHS + lower_bound = 0 + upper_bound = len(_table) - 1 + index = (lower_bound + upper_bound) // 2 + while True: + start, end, width = _table[index] + if codepoint < start: + upper_bound = index - 1 + elif codepoint > end: + lower_bound = index + 1 + else: + return 0 if width == -1 else width + if upper_bound < lower_bound: + break + index = (lower_bound + upper_bound) // 2 + return 1 + + +def set_cell_size(text: str, total: int) -> str: + """Set the length of a string to fit within given number of cells.""" + + if _is_single_cell_widths(text): + size = len(text) + if size < total: + return text + " " * (total - size) + return text[:total] + + if total <= 0: + return "" + cell_size = cell_len(text) + if cell_size == total: + return text + if cell_size < total: + return text + " " * (total - cell_size) + + start = 0 + end = len(text) + + # Binary search until we find the right size + while True: + pos = (start + end) // 2 + before = text[: pos + 1] + before_len = cell_len(before) + if before_len == total + 1 and cell_len(before[-1]) == 2: + return before[:-1] + " " + if before_len == total: + return before + if before_len > total: + end = pos + else: + start = pos + + +def chop_cells( + text: str, + width: int, +) -> list[str]: + """Split text into lines such that each line fits within the available (cell) width. + + Args: + text: The text to fold such that it fits in the given width. + width: The width available (number of cells). + + Returns: + A list of strings such that each string in the list has cell width + less than or equal to the available width. + """ + _get_character_cell_size = get_character_cell_size + lines: list[list[str]] = [[]] + + append_new_line = lines.append + append_to_last_line = lines[-1].append + + total_width = 0 + + for character in text: + cell_width = _get_character_cell_size(character) + char_doesnt_fit = total_width + cell_width > width + + if char_doesnt_fit: + append_new_line([character]) + append_to_last_line = lines[-1].append + total_width = cell_width + else: + append_to_last_line(character) + total_width += cell_width + + return ["".join(line) for line in lines] + + +if __name__ == "__main__": # pragma: no cover + print(get_character_cell_size("😽")) + for line in chop_cells("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", 8): + print(line) + for n in range(80, 1, -1): + print(set_cell_size("""这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑。""", n) + "|") + print("x" * n) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/color.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/color.py new file mode 100644 index 00000000..4270a278 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/color.py @@ -0,0 +1,621 @@ +import platform +import re +from colorsys import rgb_to_hls +from enum import IntEnum +from functools import lru_cache +from typing import TYPE_CHECKING, NamedTuple, Optional, Tuple + +from ._palettes import EIGHT_BIT_PALETTE, STANDARD_PALETTE, WINDOWS_PALETTE +from .color_triplet import ColorTriplet +from .repr import Result, rich_repr +from .terminal_theme import DEFAULT_TERMINAL_THEME + +if TYPE_CHECKING: # pragma: no cover + from .terminal_theme import TerminalTheme + from .text import Text + + +WINDOWS = platform.system() == "Windows" + + +class ColorSystem(IntEnum): + """One of the 3 color system supported by terminals.""" + + STANDARD = 1 + EIGHT_BIT = 2 + TRUECOLOR = 3 + WINDOWS = 4 + + def __repr__(self) -> str: + return f"ColorSystem.{self.name}" + + def __str__(self) -> str: + return repr(self) + + +class ColorType(IntEnum): + """Type of color stored in Color class.""" + + DEFAULT = 0 + STANDARD = 1 + EIGHT_BIT = 2 + TRUECOLOR = 3 + WINDOWS = 4 + + def __repr__(self) -> str: + return f"ColorType.{self.name}" + + +ANSI_COLOR_NAMES = { + "black": 0, + "red": 1, + "green": 2, + "yellow": 3, + "blue": 4, + "magenta": 5, + "cyan": 6, + "white": 7, + "bright_black": 8, + "bright_red": 9, + "bright_green": 10, + "bright_yellow": 11, + "bright_blue": 12, + "bright_magenta": 13, + "bright_cyan": 14, + "bright_white": 15, + "grey0": 16, + "gray0": 16, + "navy_blue": 17, + "dark_blue": 18, + "blue3": 20, + "blue1": 21, + "dark_green": 22, + "deep_sky_blue4": 25, + "dodger_blue3": 26, + "dodger_blue2": 27, + "green4": 28, + "spring_green4": 29, + "turquoise4": 30, + "deep_sky_blue3": 32, + "dodger_blue1": 33, + "green3": 40, + "spring_green3": 41, + "dark_cyan": 36, + "light_sea_green": 37, + "deep_sky_blue2": 38, + "deep_sky_blue1": 39, + "spring_green2": 47, + "cyan3": 43, + "dark_turquoise": 44, + "turquoise2": 45, + "green1": 46, + "spring_green1": 48, + "medium_spring_green": 49, + "cyan2": 50, + "cyan1": 51, + "dark_red": 88, + "deep_pink4": 125, + "purple4": 55, + "purple3": 56, + "blue_violet": 57, + "orange4": 94, + "grey37": 59, + "gray37": 59, + "medium_purple4": 60, + "slate_blue3": 62, + "royal_blue1": 63, + "chartreuse4": 64, + "dark_sea_green4": 71, + "pale_turquoise4": 66, + "steel_blue": 67, + "steel_blue3": 68, + "cornflower_blue": 69, + "chartreuse3": 76, + "cadet_blue": 73, + "sky_blue3": 74, + "steel_blue1": 81, + "pale_green3": 114, + "sea_green3": 78, + "aquamarine3": 79, + "medium_turquoise": 80, + "chartreuse2": 112, + "sea_green2": 83, + "sea_green1": 85, + "aquamarine1": 122, + "dark_slate_gray2": 87, + "dark_magenta": 91, + "dark_violet": 128, + "purple": 129, + "light_pink4": 95, + "plum4": 96, + "medium_purple3": 98, + "slate_blue1": 99, + "yellow4": 106, + "wheat4": 101, + "grey53": 102, + "gray53": 102, + "light_slate_grey": 103, + "light_slate_gray": 103, + "medium_purple": 104, + "light_slate_blue": 105, + "dark_olive_green3": 149, + "dark_sea_green": 108, + "light_sky_blue3": 110, + "sky_blue2": 111, + "dark_sea_green3": 150, + "dark_slate_gray3": 116, + "sky_blue1": 117, + "chartreuse1": 118, + "light_green": 120, + "pale_green1": 156, + "dark_slate_gray1": 123, + "red3": 160, + "medium_violet_red": 126, + "magenta3": 164, + "dark_orange3": 166, + "indian_red": 167, + "hot_pink3": 168, + "medium_orchid3": 133, + "medium_orchid": 134, + "medium_purple2": 140, + "dark_goldenrod": 136, + "light_salmon3": 173, + "rosy_brown": 138, + "grey63": 139, + "gray63": 139, + "medium_purple1": 141, + "gold3": 178, + "dark_khaki": 143, + "navajo_white3": 144, + "grey69": 145, + "gray69": 145, + "light_steel_blue3": 146, + "light_steel_blue": 147, + "yellow3": 184, + "dark_sea_green2": 157, + "light_cyan3": 152, + "light_sky_blue1": 153, + "green_yellow": 154, + "dark_olive_green2": 155, + "dark_sea_green1": 193, + "pale_turquoise1": 159, + "deep_pink3": 162, + "magenta2": 200, + "hot_pink2": 169, + "orchid": 170, + "medium_orchid1": 207, + "orange3": 172, + "light_pink3": 174, + "pink3": 175, + "plum3": 176, + "violet": 177, + "light_goldenrod3": 179, + "tan": 180, + "misty_rose3": 181, + "thistle3": 182, + "plum2": 183, + "khaki3": 185, + "light_goldenrod2": 222, + "light_yellow3": 187, + "grey84": 188, + "gray84": 188, + "light_steel_blue1": 189, + "yellow2": 190, + "dark_olive_green1": 192, + "honeydew2": 194, + "light_cyan1": 195, + "red1": 196, + "deep_pink2": 197, + "deep_pink1": 199, + "magenta1": 201, + "orange_red1": 202, + "indian_red1": 204, + "hot_pink": 206, + "dark_orange": 208, + "salmon1": 209, + "light_coral": 210, + "pale_violet_red1": 211, + "orchid2": 212, + "orchid1": 213, + "orange1": 214, + "sandy_brown": 215, + "light_salmon1": 216, + "light_pink1": 217, + "pink1": 218, + "plum1": 219, + "gold1": 220, + "navajo_white1": 223, + "misty_rose1": 224, + "thistle1": 225, + "yellow1": 226, + "light_goldenrod1": 227, + "khaki1": 228, + "wheat1": 229, + "cornsilk1": 230, + "grey100": 231, + "gray100": 231, + "grey3": 232, + "gray3": 232, + "grey7": 233, + "gray7": 233, + "grey11": 234, + "gray11": 234, + "grey15": 235, + "gray15": 235, + "grey19": 236, + "gray19": 236, + "grey23": 237, + "gray23": 237, + "grey27": 238, + "gray27": 238, + "grey30": 239, + "gray30": 239, + "grey35": 240, + "gray35": 240, + "grey39": 241, + "gray39": 241, + "grey42": 242, + "gray42": 242, + "grey46": 243, + "gray46": 243, + "grey50": 244, + "gray50": 244, + "grey54": 245, + "gray54": 245, + "grey58": 246, + "gray58": 246, + "grey62": 247, + "gray62": 247, + "grey66": 248, + "gray66": 248, + "grey70": 249, + "gray70": 249, + "grey74": 250, + "gray74": 250, + "grey78": 251, + "gray78": 251, + "grey82": 252, + "gray82": 252, + "grey85": 253, + "gray85": 253, + "grey89": 254, + "gray89": 254, + "grey93": 255, + "gray93": 255, +} + + +class ColorParseError(Exception): + """The color could not be parsed.""" + + +RE_COLOR = re.compile( + r"""^ +\#([0-9a-f]{6})$| +color\(([0-9]{1,3})\)$| +rgb\(([\d\s,]+)\)$ +""", + re.VERBOSE, +) + + +@rich_repr +class Color(NamedTuple): + """Terminal color definition.""" + + name: str + """The name of the color (typically the input to Color.parse).""" + type: ColorType + """The type of the color.""" + number: Optional[int] = None + """The color number, if a standard color, or None.""" + triplet: Optional[ColorTriplet] = None + """A triplet of color components, if an RGB color.""" + + def __rich__(self) -> "Text": + """Displays the actual color if Rich printed.""" + from .style import Style + from .text import Text + + return Text.assemble( + f"", + ) + + def __rich_repr__(self) -> Result: + yield self.name + yield self.type + yield "number", self.number, None + yield "triplet", self.triplet, None + + @property + def system(self) -> ColorSystem: + """Get the native color system for this color.""" + if self.type == ColorType.DEFAULT: + return ColorSystem.STANDARD + return ColorSystem(int(self.type)) + + @property + def is_system_defined(self) -> bool: + """Check if the color is ultimately defined by the system.""" + return self.system not in (ColorSystem.EIGHT_BIT, ColorSystem.TRUECOLOR) + + @property + def is_default(self) -> bool: + """Check if the color is a default color.""" + return self.type == ColorType.DEFAULT + + def get_truecolor( + self, theme: Optional["TerminalTheme"] = None, foreground: bool = True + ) -> ColorTriplet: + """Get an equivalent color triplet for this color. + + Args: + theme (TerminalTheme, optional): Optional terminal theme, or None to use default. Defaults to None. + foreground (bool, optional): True for a foreground color, or False for background. Defaults to True. + + Returns: + ColorTriplet: A color triplet containing RGB components. + """ + + if theme is None: + theme = DEFAULT_TERMINAL_THEME + if self.type == ColorType.TRUECOLOR: + assert self.triplet is not None + return self.triplet + elif self.type == ColorType.EIGHT_BIT: + assert self.number is not None + return EIGHT_BIT_PALETTE[self.number] + elif self.type == ColorType.STANDARD: + assert self.number is not None + return theme.ansi_colors[self.number] + elif self.type == ColorType.WINDOWS: + assert self.number is not None + return WINDOWS_PALETTE[self.number] + else: # self.type == ColorType.DEFAULT: + assert self.number is None + return theme.foreground_color if foreground else theme.background_color + + @classmethod + def from_ansi(cls, number: int) -> "Color": + """Create a Color number from it's 8-bit ansi number. + + Args: + number (int): A number between 0-255 inclusive. + + Returns: + Color: A new Color instance. + """ + return cls( + name=f"color({number})", + type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), + number=number, + ) + + @classmethod + def from_triplet(cls, triplet: "ColorTriplet") -> "Color": + """Create a truecolor RGB color from a triplet of values. + + Args: + triplet (ColorTriplet): A color triplet containing red, green and blue components. + + Returns: + Color: A new color object. + """ + return cls(name=triplet.hex, type=ColorType.TRUECOLOR, triplet=triplet) + + @classmethod + def from_rgb(cls, red: float, green: float, blue: float) -> "Color": + """Create a truecolor from three color components in the range(0->255). + + Args: + red (float): Red component in range 0-255. + green (float): Green component in range 0-255. + blue (float): Blue component in range 0-255. + + Returns: + Color: A new color object. + """ + return cls.from_triplet(ColorTriplet(int(red), int(green), int(blue))) + + @classmethod + def default(cls) -> "Color": + """Get a Color instance representing the default color. + + Returns: + Color: Default color. + """ + return cls(name="default", type=ColorType.DEFAULT) + + @classmethod + @lru_cache(maxsize=1024) + def parse(cls, color: str) -> "Color": + """Parse a color definition.""" + original_color = color + color = color.lower().strip() + + if color == "default": + return cls(color, type=ColorType.DEFAULT) + + color_number = ANSI_COLOR_NAMES.get(color) + if color_number is not None: + return cls( + color, + type=(ColorType.STANDARD if color_number < 16 else ColorType.EIGHT_BIT), + number=color_number, + ) + + color_match = RE_COLOR.match(color) + if color_match is None: + raise ColorParseError(f"{original_color!r} is not a valid color") + + color_24, color_8, color_rgb = color_match.groups() + if color_24: + triplet = ColorTriplet( + int(color_24[0:2], 16), int(color_24[2:4], 16), int(color_24[4:6], 16) + ) + return cls(color, ColorType.TRUECOLOR, triplet=triplet) + + elif color_8: + number = int(color_8) + if number > 255: + raise ColorParseError(f"color number must be <= 255 in {color!r}") + return cls( + color, + type=(ColorType.STANDARD if number < 16 else ColorType.EIGHT_BIT), + number=number, + ) + + else: # color_rgb: + components = color_rgb.split(",") + if len(components) != 3: + raise ColorParseError( + f"expected three components in {original_color!r}" + ) + red, green, blue = components + triplet = ColorTriplet(int(red), int(green), int(blue)) + if not all(component <= 255 for component in triplet): + raise ColorParseError( + f"color components must be <= 255 in {original_color!r}" + ) + return cls(color, ColorType.TRUECOLOR, triplet=triplet) + + @lru_cache(maxsize=1024) + def get_ansi_codes(self, foreground: bool = True) -> Tuple[str, ...]: + """Get the ANSI escape codes for this color.""" + _type = self.type + if _type == ColorType.DEFAULT: + return ("39" if foreground else "49",) + + elif _type == ColorType.WINDOWS: + number = self.number + assert number is not None + fore, back = (30, 40) if number < 8 else (82, 92) + return (str(fore + number if foreground else back + number),) + + elif _type == ColorType.STANDARD: + number = self.number + assert number is not None + fore, back = (30, 40) if number < 8 else (82, 92) + return (str(fore + number if foreground else back + number),) + + elif _type == ColorType.EIGHT_BIT: + assert self.number is not None + return ("38" if foreground else "48", "5", str(self.number)) + + else: # self.standard == ColorStandard.TRUECOLOR: + assert self.triplet is not None + red, green, blue = self.triplet + return ("38" if foreground else "48", "2", str(red), str(green), str(blue)) + + @lru_cache(maxsize=1024) + def downgrade(self, system: ColorSystem) -> "Color": + """Downgrade a color system to a system with fewer colors.""" + + if self.type in (ColorType.DEFAULT, system): + return self + # Convert to 8-bit color from truecolor color + if system == ColorSystem.EIGHT_BIT and self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + _h, l, s = rgb_to_hls(*self.triplet.normalized) + # If saturation is under 15% assume it is grayscale + if s < 0.15: + gray = round(l * 25.0) + if gray == 0: + color_number = 16 + elif gray == 25: + color_number = 231 + else: + color_number = 231 + gray + return Color(self.name, ColorType.EIGHT_BIT, number=color_number) + + red, green, blue = self.triplet + six_red = red / 95 if red < 95 else 1 + (red - 95) / 40 + six_green = green / 95 if green < 95 else 1 + (green - 95) / 40 + six_blue = blue / 95 if blue < 95 else 1 + (blue - 95) / 40 + + color_number = ( + 16 + 36 * round(six_red) + 6 * round(six_green) + round(six_blue) + ) + return Color(self.name, ColorType.EIGHT_BIT, number=color_number) + + # Convert to standard from truecolor or 8-bit + elif system == ColorSystem.STANDARD: + if self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + triplet = self.triplet + else: # self.system == ColorSystem.EIGHT_BIT + assert self.number is not None + triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) + + color_number = STANDARD_PALETTE.match(triplet) + return Color(self.name, ColorType.STANDARD, number=color_number) + + elif system == ColorSystem.WINDOWS: + if self.system == ColorSystem.TRUECOLOR: + assert self.triplet is not None + triplet = self.triplet + else: # self.system == ColorSystem.EIGHT_BIT + assert self.number is not None + if self.number < 16: + return Color(self.name, ColorType.WINDOWS, number=self.number) + triplet = ColorTriplet(*EIGHT_BIT_PALETTE[self.number]) + + color_number = WINDOWS_PALETTE.match(triplet) + return Color(self.name, ColorType.WINDOWS, number=color_number) + + return self + + +def parse_rgb_hex(hex_color: str) -> ColorTriplet: + """Parse six hex characters in to RGB triplet.""" + assert len(hex_color) == 6, "must be 6 characters" + color = ColorTriplet( + int(hex_color[0:2], 16), int(hex_color[2:4], 16), int(hex_color[4:6], 16) + ) + return color + + +def blend_rgb( + color1: ColorTriplet, color2: ColorTriplet, cross_fade: float = 0.5 +) -> ColorTriplet: + """Blend one RGB color in to another.""" + r1, g1, b1 = color1 + r2, g2, b2 = color2 + new_color = ColorTriplet( + int(r1 + (r2 - r1) * cross_fade), + int(g1 + (g2 - g1) * cross_fade), + int(b1 + (b2 - b1) * cross_fade), + ) + return new_color + + +if __name__ == "__main__": # pragma: no cover + from .console import Console + from .table import Table + from .text import Text + + console = Console() + + table = Table(show_footer=False, show_edge=True) + table.add_column("Color", width=10, overflow="ellipsis") + table.add_column("Number", justify="right", style="yellow") + table.add_column("Name", style="green") + table.add_column("Hex", style="blue") + table.add_column("RGB", style="magenta") + + colors = sorted((v, k) for k, v in ANSI_COLOR_NAMES.items()) + for color_number, name in colors: + if "grey" in name: + continue + color_cell = Text(" " * 10, style=f"on {name}") + if color_number < 16: + table.add_row(color_cell, f"{color_number}", Text(f'"{name}"')) + else: + color = EIGHT_BIT_PALETTE[color_number] # type: ignore[has-type] + table.add_row( + color_cell, str(color_number), Text(f'"{name}"'), color.hex, color.rgb + ) + + console.print(table) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py new file mode 100644 index 00000000..02cab328 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py @@ -0,0 +1,38 @@ +from typing import NamedTuple, Tuple + + +class ColorTriplet(NamedTuple): + """The red, green, and blue components of a color.""" + + red: int + """Red component in 0 to 255 range.""" + green: int + """Green component in 0 to 255 range.""" + blue: int + """Blue component in 0 to 255 range.""" + + @property + def hex(self) -> str: + """get the color triplet in CSS style.""" + red, green, blue = self + return f"#{red:02x}{green:02x}{blue:02x}" + + @property + def rgb(self) -> str: + """The color in RGB format. + + Returns: + str: An rgb color, e.g. ``"rgb(100,23,255)"``. + """ + red, green, blue = self + return f"rgb({red},{green},{blue})" + + @property + def normalized(self) -> Tuple[float, float, float]: + """Convert components into floats between 0 and 1. + + Returns: + Tuple[float, float, float]: A tuple of three normalized colour components. + """ + red, green, blue = self + return red / 255.0, green / 255.0, blue / 255.0 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/columns.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/columns.py new file mode 100644 index 00000000..669a3a70 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/columns.py @@ -0,0 +1,187 @@ +from collections import defaultdict +from itertools import chain +from operator import itemgetter +from typing import Dict, Iterable, List, Optional, Tuple + +from .align import Align, AlignMethod +from .console import Console, ConsoleOptions, RenderableType, RenderResult +from .constrain import Constrain +from .measure import Measurement +from .padding import Padding, PaddingDimensions +from .table import Table +from .text import TextType +from .jupyter import JupyterMixin + + +class Columns(JupyterMixin): + """Display renderables in neat columns. + + Args: + renderables (Iterable[RenderableType]): Any number of Rich renderables (including str). + width (int, optional): The desired width of the columns, or None to auto detect. Defaults to None. + padding (PaddingDimensions, optional): Optional padding around cells. Defaults to (0, 1). + expand (bool, optional): Expand columns to full width. Defaults to False. + equal (bool, optional): Arrange in to equal sized columns. Defaults to False. + column_first (bool, optional): Align items from top to bottom (rather than left to right). Defaults to False. + right_to_left (bool, optional): Start column from right hand side. Defaults to False. + align (str, optional): Align value ("left", "right", or "center") or None for default. Defaults to None. + title (TextType, optional): Optional title for Columns. + """ + + def __init__( + self, + renderables: Optional[Iterable[RenderableType]] = None, + padding: PaddingDimensions = (0, 1), + *, + width: Optional[int] = None, + expand: bool = False, + equal: bool = False, + column_first: bool = False, + right_to_left: bool = False, + align: Optional[AlignMethod] = None, + title: Optional[TextType] = None, + ) -> None: + self.renderables = list(renderables or []) + self.width = width + self.padding = padding + self.expand = expand + self.equal = equal + self.column_first = column_first + self.right_to_left = right_to_left + self.align: Optional[AlignMethod] = align + self.title = title + + def add_renderable(self, renderable: RenderableType) -> None: + """Add a renderable to the columns. + + Args: + renderable (RenderableType): Any renderable object. + """ + self.renderables.append(renderable) + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + render_str = console.render_str + renderables = [ + render_str(renderable) if isinstance(renderable, str) else renderable + for renderable in self.renderables + ] + if not renderables: + return + _top, right, _bottom, left = Padding.unpack(self.padding) + width_padding = max(left, right) + max_width = options.max_width + widths: Dict[int, int] = defaultdict(int) + column_count = len(renderables) + + get_measurement = Measurement.get + renderable_widths = [ + get_measurement(console, options, renderable).maximum + for renderable in renderables + ] + if self.equal: + renderable_widths = [max(renderable_widths)] * len(renderable_widths) + + def iter_renderables( + column_count: int, + ) -> Iterable[Tuple[int, Optional[RenderableType]]]: + item_count = len(renderables) + if self.column_first: + width_renderables = list(zip(renderable_widths, renderables)) + + column_lengths: List[int] = [item_count // column_count] * column_count + for col_no in range(item_count % column_count): + column_lengths[col_no] += 1 + + row_count = (item_count + column_count - 1) // column_count + cells = [[-1] * column_count for _ in range(row_count)] + row = col = 0 + for index in range(item_count): + cells[row][col] = index + column_lengths[col] -= 1 + if column_lengths[col]: + row += 1 + else: + col += 1 + row = 0 + for index in chain.from_iterable(cells): + if index == -1: + break + yield width_renderables[index] + else: + yield from zip(renderable_widths, renderables) + # Pad odd elements with spaces + if item_count % column_count: + for _ in range(column_count - (item_count % column_count)): + yield 0, None + + table = Table.grid(padding=self.padding, collapse_padding=True, pad_edge=False) + table.expand = self.expand + table.title = self.title + + if self.width is not None: + column_count = (max_width) // (self.width + width_padding) + for _ in range(column_count): + table.add_column(width=self.width) + else: + while column_count > 1: + widths.clear() + column_no = 0 + for renderable_width, _ in iter_renderables(column_count): + widths[column_no] = max(widths[column_no], renderable_width) + total_width = sum(widths.values()) + width_padding * ( + len(widths) - 1 + ) + if total_width > max_width: + column_count = len(widths) - 1 + break + else: + column_no = (column_no + 1) % column_count + else: + break + + get_renderable = itemgetter(1) + _renderables = [ + get_renderable(_renderable) + for _renderable in iter_renderables(column_count) + ] + if self.equal: + _renderables = [ + None + if renderable is None + else Constrain(renderable, renderable_widths[0]) + for renderable in _renderables + ] + if self.align: + align = self.align + _Align = Align + _renderables = [ + None if renderable is None else _Align(renderable, align) + for renderable in _renderables + ] + + right_to_left = self.right_to_left + add_row = table.add_row + for start in range(0, len(_renderables), column_count): + row = _renderables[start : start + column_count] + if right_to_left: + row = row[::-1] + add_row(*row) + yield table + + +if __name__ == "__main__": # pragma: no cover + import os + + console = Console() + + files = [f"{i} {s}" for i, s in enumerate(sorted(os.listdir()))] + columns = Columns(files, padding=(0, 1), expand=False, equal=False) + console.print(columns) + console.rule() + columns.column_first = True + console.print(columns) + columns.right_to_left = True + console.rule() + console.print(columns) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/console.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/console.py new file mode 100644 index 00000000..a11c7c13 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/console.py @@ -0,0 +1,2633 @@ +import inspect +import os +import platform +import sys +import threading +import zlib +from abc import ABC, abstractmethod +from dataclasses import dataclass, field +from datetime import datetime +from functools import wraps +from getpass import getpass +from html import escape +from inspect import isclass +from itertools import islice +from math import ceil +from time import monotonic +from types import FrameType, ModuleType, TracebackType +from typing import ( + IO, + TYPE_CHECKING, + Any, + Callable, + Dict, + Iterable, + List, + Mapping, + NamedTuple, + Optional, + TextIO, + Tuple, + Type, + Union, + cast, +) + +from pip._vendor.rich._null_file import NULL_FILE + +if sys.version_info >= (3, 8): + from typing import Literal, Protocol, runtime_checkable +else: + from pip._vendor.typing_extensions import ( + Literal, + Protocol, + runtime_checkable, + ) # pragma: no cover + +from . import errors, themes +from ._emoji_replace import _emoji_replace +from ._export_format import CONSOLE_HTML_FORMAT, CONSOLE_SVG_FORMAT +from ._fileno import get_fileno +from ._log_render import FormatTimeCallable, LogRender +from .align import Align, AlignMethod +from .color import ColorSystem, blend_rgb +from .control import Control +from .emoji import EmojiVariant +from .highlighter import NullHighlighter, ReprHighlighter +from .markup import render as render_markup +from .measure import Measurement, measure_renderables +from .pager import Pager, SystemPager +from .pretty import Pretty, is_expandable +from .protocol import rich_cast +from .region import Region +from .scope import render_scope +from .screen import Screen +from .segment import Segment +from .style import Style, StyleType +from .styled import Styled +from .terminal_theme import DEFAULT_TERMINAL_THEME, SVG_EXPORT_THEME, TerminalTheme +from .text import Text, TextType +from .theme import Theme, ThemeStack + +if TYPE_CHECKING: + from ._windows import WindowsConsoleFeatures + from .live import Live + from .status import Status + +JUPYTER_DEFAULT_COLUMNS = 115 +JUPYTER_DEFAULT_LINES = 100 +WINDOWS = platform.system() == "Windows" + +HighlighterType = Callable[[Union[str, "Text"]], "Text"] +JustifyMethod = Literal["default", "left", "center", "right", "full"] +OverflowMethod = Literal["fold", "crop", "ellipsis", "ignore"] + + +class NoChange: + pass + + +NO_CHANGE = NoChange() + +try: + _STDIN_FILENO = sys.__stdin__.fileno() +except Exception: + _STDIN_FILENO = 0 +try: + _STDOUT_FILENO = sys.__stdout__.fileno() +except Exception: + _STDOUT_FILENO = 1 +try: + _STDERR_FILENO = sys.__stderr__.fileno() +except Exception: + _STDERR_FILENO = 2 + +_STD_STREAMS = (_STDIN_FILENO, _STDOUT_FILENO, _STDERR_FILENO) +_STD_STREAMS_OUTPUT = (_STDOUT_FILENO, _STDERR_FILENO) + + +_TERM_COLORS = { + "kitty": ColorSystem.EIGHT_BIT, + "256color": ColorSystem.EIGHT_BIT, + "16color": ColorSystem.STANDARD, +} + + +class ConsoleDimensions(NamedTuple): + """Size of the terminal.""" + + width: int + """The width of the console in 'cells'.""" + height: int + """The height of the console in lines.""" + + +@dataclass +class ConsoleOptions: + """Options for __rich_console__ method.""" + + size: ConsoleDimensions + """Size of console.""" + legacy_windows: bool + """legacy_windows: flag for legacy windows.""" + min_width: int + """Minimum width of renderable.""" + max_width: int + """Maximum width of renderable.""" + is_terminal: bool + """True if the target is a terminal, otherwise False.""" + encoding: str + """Encoding of terminal.""" + max_height: int + """Height of container (starts as terminal)""" + justify: Optional[JustifyMethod] = None + """Justify value override for renderable.""" + overflow: Optional[OverflowMethod] = None + """Overflow value override for renderable.""" + no_wrap: Optional[bool] = False + """Disable wrapping for text.""" + highlight: Optional[bool] = None + """Highlight override for render_str.""" + markup: Optional[bool] = None + """Enable markup when rendering strings.""" + height: Optional[int] = None + + @property + def ascii_only(self) -> bool: + """Check if renderables should use ascii only.""" + return not self.encoding.startswith("utf") + + def copy(self) -> "ConsoleOptions": + """Return a copy of the options. + + Returns: + ConsoleOptions: a copy of self. + """ + options: ConsoleOptions = ConsoleOptions.__new__(ConsoleOptions) + options.__dict__ = self.__dict__.copy() + return options + + def update( + self, + *, + width: Union[int, NoChange] = NO_CHANGE, + min_width: Union[int, NoChange] = NO_CHANGE, + max_width: Union[int, NoChange] = NO_CHANGE, + justify: Union[Optional[JustifyMethod], NoChange] = NO_CHANGE, + overflow: Union[Optional[OverflowMethod], NoChange] = NO_CHANGE, + no_wrap: Union[Optional[bool], NoChange] = NO_CHANGE, + highlight: Union[Optional[bool], NoChange] = NO_CHANGE, + markup: Union[Optional[bool], NoChange] = NO_CHANGE, + height: Union[Optional[int], NoChange] = NO_CHANGE, + ) -> "ConsoleOptions": + """Update values, return a copy.""" + options = self.copy() + if not isinstance(width, NoChange): + options.min_width = options.max_width = max(0, width) + if not isinstance(min_width, NoChange): + options.min_width = min_width + if not isinstance(max_width, NoChange): + options.max_width = max_width + if not isinstance(justify, NoChange): + options.justify = justify + if not isinstance(overflow, NoChange): + options.overflow = overflow + if not isinstance(no_wrap, NoChange): + options.no_wrap = no_wrap + if not isinstance(highlight, NoChange): + options.highlight = highlight + if not isinstance(markup, NoChange): + options.markup = markup + if not isinstance(height, NoChange): + if height is not None: + options.max_height = height + options.height = None if height is None else max(0, height) + return options + + def update_width(self, width: int) -> "ConsoleOptions": + """Update just the width, return a copy. + + Args: + width (int): New width (sets both min_width and max_width) + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.min_width = options.max_width = max(0, width) + return options + + def update_height(self, height: int) -> "ConsoleOptions": + """Update the height, and return a copy. + + Args: + height (int): New height + + Returns: + ~ConsoleOptions: New Console options instance. + """ + options = self.copy() + options.max_height = options.height = height + return options + + def reset_height(self) -> "ConsoleOptions": + """Return a copy of the options with height set to ``None``. + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.height = None + return options + + def update_dimensions(self, width: int, height: int) -> "ConsoleOptions": + """Update the width and height, and return a copy. + + Args: + width (int): New width (sets both min_width and max_width). + height (int): New height. + + Returns: + ~ConsoleOptions: New console options instance. + """ + options = self.copy() + options.min_width = options.max_width = max(0, width) + options.height = options.max_height = height + return options + + +@runtime_checkable +class RichCast(Protocol): + """An object that may be 'cast' to a console renderable.""" + + def __rich__( + self, + ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover + ... + + +@runtime_checkable +class ConsoleRenderable(Protocol): + """An object that supports the console protocol.""" + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": # pragma: no cover + ... + + +# A type that may be rendered by Console. +RenderableType = Union[ConsoleRenderable, RichCast, str] +"""A string or any object that may be rendered by Rich.""" + +# The result of calling a __rich_console__ method. +RenderResult = Iterable[Union[RenderableType, Segment]] + +_null_highlighter = NullHighlighter() + + +class CaptureError(Exception): + """An error in the Capture context manager.""" + + +class NewLine: + """A renderable to generate new line(s)""" + + def __init__(self, count: int = 1) -> None: + self.count = count + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> Iterable[Segment]: + yield Segment("\n" * self.count) + + +class ScreenUpdate: + """Render a list of lines at a given offset.""" + + def __init__(self, lines: List[List[Segment]], x: int, y: int) -> None: + self._lines = lines + self.x = x + self.y = y + + def __rich_console__( + self, console: "Console", options: ConsoleOptions + ) -> RenderResult: + x = self.x + move_to = Control.move_to + for offset, line in enumerate(self._lines, self.y): + yield move_to(x, offset) + yield from line + + +class Capture: + """Context manager to capture the result of printing to the console. + See :meth:`~rich.console.Console.capture` for how to use. + + Args: + console (Console): A console instance to capture output. + """ + + def __init__(self, console: "Console") -> None: + self._console = console + self._result: Optional[str] = None + + def __enter__(self) -> "Capture": + self._console.begin_capture() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self._result = self._console.end_capture() + + def get(self) -> str: + """Get the result of the capture.""" + if self._result is None: + raise CaptureError( + "Capture result is not available until context manager exits." + ) + return self._result + + +class ThemeContext: + """A context manager to use a temporary theme. See :meth:`~rich.console.Console.use_theme` for usage.""" + + def __init__(self, console: "Console", theme: Theme, inherit: bool = True) -> None: + self.console = console + self.theme = theme + self.inherit = inherit + + def __enter__(self) -> "ThemeContext": + self.console.push_theme(self.theme) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.console.pop_theme() + + +class PagerContext: + """A context manager that 'pages' content. See :meth:`~rich.console.Console.pager` for usage.""" + + def __init__( + self, + console: "Console", + pager: Optional[Pager] = None, + styles: bool = False, + links: bool = False, + ) -> None: + self._console = console + self.pager = SystemPager() if pager is None else pager + self.styles = styles + self.links = links + + def __enter__(self) -> "PagerContext": + self._console._enter_buffer() + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + if exc_type is None: + with self._console._lock: + buffer: List[Segment] = self._console._buffer[:] + del self._console._buffer[:] + segments: Iterable[Segment] = buffer + if not self.styles: + segments = Segment.strip_styles(segments) + elif not self.links: + segments = Segment.strip_links(segments) + content = self._console._render_buffer(segments) + self.pager.show(content) + self._console._exit_buffer() + + +class ScreenContext: + """A context manager that enables an alternative screen. See :meth:`~rich.console.Console.screen` for usage.""" + + def __init__( + self, console: "Console", hide_cursor: bool, style: StyleType = "" + ) -> None: + self.console = console + self.hide_cursor = hide_cursor + self.screen = Screen(style=style) + self._changed = False + + def update( + self, *renderables: RenderableType, style: Optional[StyleType] = None + ) -> None: + """Update the screen. + + Args: + renderable (RenderableType, optional): Optional renderable to replace current renderable, + or None for no change. Defaults to None. + style: (Style, optional): Replacement style, or None for no change. Defaults to None. + """ + if renderables: + self.screen.renderable = ( + Group(*renderables) if len(renderables) > 1 else renderables[0] + ) + if style is not None: + self.screen.style = style + self.console.print(self.screen, end="") + + def __enter__(self) -> "ScreenContext": + self._changed = self.console.set_alt_screen(True) + if self._changed and self.hide_cursor: + self.console.show_cursor(False) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + if self._changed: + self.console.set_alt_screen(False) + if self.hide_cursor: + self.console.show_cursor(True) + + +class Group: + """Takes a group of renderables and returns a renderable object that renders the group. + + Args: + renderables (Iterable[RenderableType]): An iterable of renderable objects. + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. + """ + + def __init__(self, *renderables: "RenderableType", fit: bool = True) -> None: + self._renderables = renderables + self.fit = fit + self._render: Optional[List[RenderableType]] = None + + @property + def renderables(self) -> List["RenderableType"]: + if self._render is None: + self._render = list(self._renderables) + return self._render + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + if self.fit: + return measure_renderables(console, options, self.renderables) + else: + return Measurement(options.max_width, options.max_width) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> RenderResult: + yield from self.renderables + + +def group(fit: bool = True) -> Callable[..., Callable[..., Group]]: + """A decorator that turns an iterable of renderables in to a group. + + Args: + fit (bool, optional): Fit dimension of group to contents, or fill available space. Defaults to True. + """ + + def decorator( + method: Callable[..., Iterable[RenderableType]] + ) -> Callable[..., Group]: + """Convert a method that returns an iterable of renderables in to a Group.""" + + @wraps(method) + def _replace(*args: Any, **kwargs: Any) -> Group: + renderables = method(*args, **kwargs) + return Group(*renderables, fit=fit) + + return _replace + + return decorator + + +def _is_jupyter() -> bool: # pragma: no cover + """Check if we're running in a Jupyter notebook.""" + try: + get_ipython # type: ignore[name-defined] + except NameError: + return False + ipython = get_ipython() # type: ignore[name-defined] + shell = ipython.__class__.__name__ + if ( + "google.colab" in str(ipython.__class__) + or os.getenv("DATABRICKS_RUNTIME_VERSION") + or shell == "ZMQInteractiveShell" + ): + return True # Jupyter notebook or qtconsole + elif shell == "TerminalInteractiveShell": + return False # Terminal running IPython + else: + return False # Other type (?) + + +COLOR_SYSTEMS = { + "standard": ColorSystem.STANDARD, + "256": ColorSystem.EIGHT_BIT, + "truecolor": ColorSystem.TRUECOLOR, + "windows": ColorSystem.WINDOWS, +} + +_COLOR_SYSTEMS_NAMES = {system: name for name, system in COLOR_SYSTEMS.items()} + + +@dataclass +class ConsoleThreadLocals(threading.local): + """Thread local values for Console context.""" + + theme_stack: ThemeStack + buffer: List[Segment] = field(default_factory=list) + buffer_index: int = 0 + + +class RenderHook(ABC): + """Provides hooks in to the render process.""" + + @abstractmethod + def process_renderables( + self, renderables: List[ConsoleRenderable] + ) -> List[ConsoleRenderable]: + """Called with a list of objects to render. + + This method can return a new list of renderables, or modify and return the same list. + + Args: + renderables (List[ConsoleRenderable]): A number of renderable objects. + + Returns: + List[ConsoleRenderable]: A replacement list of renderables. + """ + + +_windows_console_features: Optional["WindowsConsoleFeatures"] = None + + +def get_windows_console_features() -> "WindowsConsoleFeatures": # pragma: no cover + global _windows_console_features + if _windows_console_features is not None: + return _windows_console_features + from ._windows import get_windows_console_features + + _windows_console_features = get_windows_console_features() + return _windows_console_features + + +def detect_legacy_windows() -> bool: + """Detect legacy Windows.""" + return WINDOWS and not get_windows_console_features().vt + + +class Console: + """A high level console interface. + + Args: + color_system (str, optional): The color system supported by your terminal, + either ``"standard"``, ``"256"`` or ``"truecolor"``. Leave as ``"auto"`` to autodetect. + force_terminal (Optional[bool], optional): Enable/disable terminal control codes, or None to auto-detect terminal. Defaults to None. + force_jupyter (Optional[bool], optional): Enable/disable Jupyter rendering, or None to auto-detect Jupyter. Defaults to None. + force_interactive (Optional[bool], optional): Enable/disable interactive mode, or None to auto detect. Defaults to None. + soft_wrap (Optional[bool], optional): Set soft wrap default on print method. Defaults to False. + theme (Theme, optional): An optional style theme object, or ``None`` for default theme. + stderr (bool, optional): Use stderr rather than stdout if ``file`` is not specified. Defaults to False. + file (IO, optional): A file object where the console should write to. Defaults to stdout. + quiet (bool, Optional): Boolean to suppress all output. Defaults to False. + width (int, optional): The width of the terminal. Leave as default to auto-detect width. + height (int, optional): The height of the terminal. Leave as default to auto-detect height. + style (StyleType, optional): Style to apply to all output, or None for no style. Defaults to None. + no_color (Optional[bool], optional): Enabled no color mode, or None to auto detect. Defaults to None. + tab_size (int, optional): Number of spaces used to replace a tab character. Defaults to 8. + record (bool, optional): Boolean to enable recording of terminal output, + required to call :meth:`export_html`, :meth:`export_svg`, and :meth:`export_text`. Defaults to False. + markup (bool, optional): Boolean to enable :ref:`console_markup`. Defaults to True. + emoji (bool, optional): Enable emoji code. Defaults to True. + emoji_variant (str, optional): Optional emoji variant, either "text" or "emoji". Defaults to None. + highlight (bool, optional): Enable automatic highlighting. Defaults to True. + log_time (bool, optional): Boolean to enable logging of time by :meth:`log` methods. Defaults to True. + log_path (bool, optional): Boolean to enable the logging of the caller by :meth:`log`. Defaults to True. + log_time_format (Union[str, TimeFormatterCallable], optional): If ``log_time`` is enabled, either string for strftime or callable that formats the time. Defaults to "[%X] ". + highlighter (HighlighterType, optional): Default highlighter. + legacy_windows (bool, optional): Enable legacy Windows mode, or ``None`` to auto detect. Defaults to ``None``. + safe_box (bool, optional): Restrict box options that don't render on legacy Windows. + get_datetime (Callable[[], datetime], optional): Callable that gets the current time as a datetime.datetime object (used by Console.log), + or None for datetime.now. + get_time (Callable[[], time], optional): Callable that gets the current time in seconds, default uses time.monotonic. + """ + + _environ: Mapping[str, str] = os.environ + + def __init__( + self, + *, + color_system: Optional[ + Literal["auto", "standard", "256", "truecolor", "windows"] + ] = "auto", + force_terminal: Optional[bool] = None, + force_jupyter: Optional[bool] = None, + force_interactive: Optional[bool] = None, + soft_wrap: bool = False, + theme: Optional[Theme] = None, + stderr: bool = False, + file: Optional[IO[str]] = None, + quiet: bool = False, + width: Optional[int] = None, + height: Optional[int] = None, + style: Optional[StyleType] = None, + no_color: Optional[bool] = None, + tab_size: int = 8, + record: bool = False, + markup: bool = True, + emoji: bool = True, + emoji_variant: Optional[EmojiVariant] = None, + highlight: bool = True, + log_time: bool = True, + log_path: bool = True, + log_time_format: Union[str, FormatTimeCallable] = "[%X]", + highlighter: Optional["HighlighterType"] = ReprHighlighter(), + legacy_windows: Optional[bool] = None, + safe_box: bool = True, + get_datetime: Optional[Callable[[], datetime]] = None, + get_time: Optional[Callable[[], float]] = None, + _environ: Optional[Mapping[str, str]] = None, + ): + # Copy of os.environ allows us to replace it for testing + if _environ is not None: + self._environ = _environ + + self.is_jupyter = _is_jupyter() if force_jupyter is None else force_jupyter + if self.is_jupyter: + if width is None: + jupyter_columns = self._environ.get("JUPYTER_COLUMNS") + if jupyter_columns is not None and jupyter_columns.isdigit(): + width = int(jupyter_columns) + else: + width = JUPYTER_DEFAULT_COLUMNS + if height is None: + jupyter_lines = self._environ.get("JUPYTER_LINES") + if jupyter_lines is not None and jupyter_lines.isdigit(): + height = int(jupyter_lines) + else: + height = JUPYTER_DEFAULT_LINES + + self.tab_size = tab_size + self.record = record + self._markup = markup + self._emoji = emoji + self._emoji_variant: Optional[EmojiVariant] = emoji_variant + self._highlight = highlight + self.legacy_windows: bool = ( + (detect_legacy_windows() and not self.is_jupyter) + if legacy_windows is None + else legacy_windows + ) + + if width is None: + columns = self._environ.get("COLUMNS") + if columns is not None and columns.isdigit(): + width = int(columns) - self.legacy_windows + if height is None: + lines = self._environ.get("LINES") + if lines is not None and lines.isdigit(): + height = int(lines) + + self.soft_wrap = soft_wrap + self._width = width + self._height = height + + self._color_system: Optional[ColorSystem] + + self._force_terminal = None + if force_terminal is not None: + self._force_terminal = force_terminal + + self._file = file + self.quiet = quiet + self.stderr = stderr + + if color_system is None: + self._color_system = None + elif color_system == "auto": + self._color_system = self._detect_color_system() + else: + self._color_system = COLOR_SYSTEMS[color_system] + + self._lock = threading.RLock() + self._log_render = LogRender( + show_time=log_time, + show_path=log_path, + time_format=log_time_format, + ) + self.highlighter: HighlighterType = highlighter or _null_highlighter + self.safe_box = safe_box + self.get_datetime = get_datetime or datetime.now + self.get_time = get_time or monotonic + self.style = style + self.no_color = ( + no_color if no_color is not None else "NO_COLOR" in self._environ + ) + self.is_interactive = ( + (self.is_terminal and not self.is_dumb_terminal) + if force_interactive is None + else force_interactive + ) + + self._record_buffer_lock = threading.RLock() + self._thread_locals = ConsoleThreadLocals( + theme_stack=ThemeStack(themes.DEFAULT if theme is None else theme) + ) + self._record_buffer: List[Segment] = [] + self._render_hooks: List[RenderHook] = [] + self._live: Optional["Live"] = None + self._is_alt_screen = False + + def __repr__(self) -> str: + return f"" + + @property + def file(self) -> IO[str]: + """Get the file object to write to.""" + file = self._file or (sys.stderr if self.stderr else sys.stdout) + file = getattr(file, "rich_proxied_file", file) + if file is None: + file = NULL_FILE + return file + + @file.setter + def file(self, new_file: IO[str]) -> None: + """Set a new file object.""" + self._file = new_file + + @property + def _buffer(self) -> List[Segment]: + """Get a thread local buffer.""" + return self._thread_locals.buffer + + @property + def _buffer_index(self) -> int: + """Get a thread local buffer.""" + return self._thread_locals.buffer_index + + @_buffer_index.setter + def _buffer_index(self, value: int) -> None: + self._thread_locals.buffer_index = value + + @property + def _theme_stack(self) -> ThemeStack: + """Get the thread local theme stack.""" + return self._thread_locals.theme_stack + + def _detect_color_system(self) -> Optional[ColorSystem]: + """Detect color system from env vars.""" + if self.is_jupyter: + return ColorSystem.TRUECOLOR + if not self.is_terminal or self.is_dumb_terminal: + return None + if WINDOWS: # pragma: no cover + if self.legacy_windows: # pragma: no cover + return ColorSystem.WINDOWS + windows_console_features = get_windows_console_features() + return ( + ColorSystem.TRUECOLOR + if windows_console_features.truecolor + else ColorSystem.EIGHT_BIT + ) + else: + color_term = self._environ.get("COLORTERM", "").strip().lower() + if color_term in ("truecolor", "24bit"): + return ColorSystem.TRUECOLOR + term = self._environ.get("TERM", "").strip().lower() + _term_name, _hyphen, colors = term.rpartition("-") + color_system = _TERM_COLORS.get(colors, ColorSystem.STANDARD) + return color_system + + def _enter_buffer(self) -> None: + """Enter in to a buffer context, and buffer all output.""" + self._buffer_index += 1 + + def _exit_buffer(self) -> None: + """Leave buffer context, and render content if required.""" + self._buffer_index -= 1 + self._check_buffer() + + def set_live(self, live: "Live") -> None: + """Set Live instance. Used by Live context manager. + + Args: + live (Live): Live instance using this Console. + + Raises: + errors.LiveError: If this Console has a Live context currently active. + """ + with self._lock: + if self._live is not None: + raise errors.LiveError("Only one live display may be active at once") + self._live = live + + def clear_live(self) -> None: + """Clear the Live instance.""" + with self._lock: + self._live = None + + def push_render_hook(self, hook: RenderHook) -> None: + """Add a new render hook to the stack. + + Args: + hook (RenderHook): Render hook instance. + """ + with self._lock: + self._render_hooks.append(hook) + + def pop_render_hook(self) -> None: + """Pop the last renderhook from the stack.""" + with self._lock: + self._render_hooks.pop() + + def __enter__(self) -> "Console": + """Own context manager to enter buffer context.""" + self._enter_buffer() + return self + + def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None: + """Exit buffer context.""" + self._exit_buffer() + + def begin_capture(self) -> None: + """Begin capturing console output. Call :meth:`end_capture` to exit capture mode and return output.""" + self._enter_buffer() + + def end_capture(self) -> str: + """End capture mode and return captured string. + + Returns: + str: Console output. + """ + render_result = self._render_buffer(self._buffer) + del self._buffer[:] + self._exit_buffer() + return render_result + + def push_theme(self, theme: Theme, *, inherit: bool = True) -> None: + """Push a new theme on to the top of the stack, replacing the styles from the previous theme. + Generally speaking, you should call :meth:`~rich.console.Console.use_theme` to get a context manager, rather + than calling this method directly. + + Args: + theme (Theme): A theme instance. + inherit (bool, optional): Inherit existing styles. Defaults to True. + """ + self._theme_stack.push_theme(theme, inherit=inherit) + + def pop_theme(self) -> None: + """Remove theme from top of stack, restoring previous theme.""" + self._theme_stack.pop_theme() + + def use_theme(self, theme: Theme, *, inherit: bool = True) -> ThemeContext: + """Use a different theme for the duration of the context manager. + + Args: + theme (Theme): Theme instance to user. + inherit (bool, optional): Inherit existing console styles. Defaults to True. + + Returns: + ThemeContext: [description] + """ + return ThemeContext(self, theme, inherit) + + @property + def color_system(self) -> Optional[str]: + """Get color system string. + + Returns: + Optional[str]: "standard", "256" or "truecolor". + """ + + if self._color_system is not None: + return _COLOR_SYSTEMS_NAMES[self._color_system] + else: + return None + + @property + def encoding(self) -> str: + """Get the encoding of the console file, e.g. ``"utf-8"``. + + Returns: + str: A standard encoding string. + """ + return (getattr(self.file, "encoding", "utf-8") or "utf-8").lower() + + @property + def is_terminal(self) -> bool: + """Check if the console is writing to a terminal. + + Returns: + bool: True if the console writing to a device capable of + understanding terminal codes, otherwise False. + """ + if self._force_terminal is not None: + return self._force_terminal + + if hasattr(sys.stdin, "__module__") and sys.stdin.__module__.startswith( + "idlelib" + ): + # Return False for Idle which claims to be a tty but can't handle ansi codes + return False + + if self.is_jupyter: + # return False for Jupyter, which may have FORCE_COLOR set + return False + + # If FORCE_COLOR env var has any value at all, we assume a terminal. + force_color = self._environ.get("FORCE_COLOR") + if force_color is not None: + self._force_terminal = True + return True + + isatty: Optional[Callable[[], bool]] = getattr(self.file, "isatty", None) + try: + return False if isatty is None else isatty() + except ValueError: + # in some situation (at the end of a pytest run for example) isatty() can raise + # ValueError: I/O operation on closed file + # return False because we aren't in a terminal anymore + return False + + @property + def is_dumb_terminal(self) -> bool: + """Detect dumb terminal. + + Returns: + bool: True if writing to a dumb terminal, otherwise False. + + """ + _term = self._environ.get("TERM", "") + is_dumb = _term.lower() in ("dumb", "unknown") + return self.is_terminal and is_dumb + + @property + def options(self) -> ConsoleOptions: + """Get default console options.""" + return ConsoleOptions( + max_height=self.size.height, + size=self.size, + legacy_windows=self.legacy_windows, + min_width=1, + max_width=self.width, + encoding=self.encoding, + is_terminal=self.is_terminal, + ) + + @property + def size(self) -> ConsoleDimensions: + """Get the size of the console. + + Returns: + ConsoleDimensions: A named tuple containing the dimensions. + """ + + if self._width is not None and self._height is not None: + return ConsoleDimensions(self._width - self.legacy_windows, self._height) + + if self.is_dumb_terminal: + return ConsoleDimensions(80, 25) + + width: Optional[int] = None + height: Optional[int] = None + + if WINDOWS: # pragma: no cover + try: + width, height = os.get_terminal_size() + except (AttributeError, ValueError, OSError): # Probably not a terminal + pass + else: + for file_descriptor in _STD_STREAMS: + try: + width, height = os.get_terminal_size(file_descriptor) + except (AttributeError, ValueError, OSError): + pass + else: + break + + columns = self._environ.get("COLUMNS") + if columns is not None and columns.isdigit(): + width = int(columns) + lines = self._environ.get("LINES") + if lines is not None and lines.isdigit(): + height = int(lines) + + # get_terminal_size can report 0, 0 if run from pseudo-terminal + width = width or 80 + height = height or 25 + return ConsoleDimensions( + width - self.legacy_windows if self._width is None else self._width, + height if self._height is None else self._height, + ) + + @size.setter + def size(self, new_size: Tuple[int, int]) -> None: + """Set a new size for the terminal. + + Args: + new_size (Tuple[int, int]): New width and height. + """ + width, height = new_size + self._width = width + self._height = height + + @property + def width(self) -> int: + """Get the width of the console. + + Returns: + int: The width (in characters) of the console. + """ + return self.size.width + + @width.setter + def width(self, width: int) -> None: + """Set width. + + Args: + width (int): New width. + """ + self._width = width + + @property + def height(self) -> int: + """Get the height of the console. + + Returns: + int: The height (in lines) of the console. + """ + return self.size.height + + @height.setter + def height(self, height: int) -> None: + """Set height. + + Args: + height (int): new height. + """ + self._height = height + + def bell(self) -> None: + """Play a 'bell' sound (if supported by the terminal).""" + self.control(Control.bell()) + + def capture(self) -> Capture: + """A context manager to *capture* the result of print() or log() in a string, + rather than writing it to the console. + + Example: + >>> from rich.console import Console + >>> console = Console() + >>> with console.capture() as capture: + ... console.print("[bold magenta]Hello World[/]") + >>> print(capture.get()) + + Returns: + Capture: Context manager with disables writing to the terminal. + """ + capture = Capture(self) + return capture + + def pager( + self, pager: Optional[Pager] = None, styles: bool = False, links: bool = False + ) -> PagerContext: + """A context manager to display anything printed within a "pager". The pager application + is defined by the system and will typically support at least pressing a key to scroll. + + Args: + pager (Pager, optional): A pager object, or None to use :class:`~rich.pager.SystemPager`. Defaults to None. + styles (bool, optional): Show styles in pager. Defaults to False. + links (bool, optional): Show links in pager. Defaults to False. + + Example: + >>> from rich.console import Console + >>> from rich.__main__ import make_test_card + >>> console = Console() + >>> with console.pager(): + console.print(make_test_card()) + + Returns: + PagerContext: A context manager. + """ + return PagerContext(self, pager=pager, styles=styles, links=links) + + def line(self, count: int = 1) -> None: + """Write new line(s). + + Args: + count (int, optional): Number of new lines. Defaults to 1. + """ + + assert count >= 0, "count must be >= 0" + self.print(NewLine(count)) + + def clear(self, home: bool = True) -> None: + """Clear the screen. + + Args: + home (bool, optional): Also move the cursor to 'home' position. Defaults to True. + """ + if home: + self.control(Control.clear(), Control.home()) + else: + self.control(Control.clear()) + + def status( + self, + status: RenderableType, + *, + spinner: str = "dots", + spinner_style: StyleType = "status.spinner", + speed: float = 1.0, + refresh_per_second: float = 12.5, + ) -> "Status": + """Display a status and spinner. + + Args: + status (RenderableType): A status renderable (str or Text typically). + spinner (str, optional): Name of spinner animation (see python -m rich.spinner). Defaults to "dots". + spinner_style (StyleType, optional): Style of spinner. Defaults to "status.spinner". + speed (float, optional): Speed factor for spinner animation. Defaults to 1.0. + refresh_per_second (float, optional): Number of refreshes per second. Defaults to 12.5. + + Returns: + Status: A Status object that may be used as a context manager. + """ + from .status import Status + + status_renderable = Status( + status, + console=self, + spinner=spinner, + spinner_style=spinner_style, + speed=speed, + refresh_per_second=refresh_per_second, + ) + return status_renderable + + def show_cursor(self, show: bool = True) -> bool: + """Show or hide the cursor. + + Args: + show (bool, optional): Set visibility of the cursor. + """ + if self.is_terminal: + self.control(Control.show_cursor(show)) + return True + return False + + def set_alt_screen(self, enable: bool = True) -> bool: + """Enables alternative screen mode. + + Note, if you enable this mode, you should ensure that is disabled before + the application exits. See :meth:`~rich.Console.screen` for a context manager + that handles this for you. + + Args: + enable (bool, optional): Enable (True) or disable (False) alternate screen. Defaults to True. + + Returns: + bool: True if the control codes were written. + + """ + changed = False + if self.is_terminal and not self.legacy_windows: + self.control(Control.alt_screen(enable)) + changed = True + self._is_alt_screen = enable + return changed + + @property + def is_alt_screen(self) -> bool: + """Check if the alt screen was enabled. + + Returns: + bool: True if the alt screen was enabled, otherwise False. + """ + return self._is_alt_screen + + def set_window_title(self, title: str) -> bool: + """Set the title of the console terminal window. + + Warning: There is no means within Rich of "resetting" the window title to its + previous value, meaning the title you set will persist even after your application + exits. + + ``fish`` shell resets the window title before and after each command by default, + negating this issue. Windows Terminal and command prompt will also reset the title for you. + Most other shells and terminals, however, do not do this. + + Some terminals may require configuration changes before you can set the title. + Some terminals may not support setting the title at all. + + Other software (including the terminal itself, the shell, custom prompts, plugins, etc.) + may also set the terminal window title. This could result in whatever value you write + using this method being overwritten. + + Args: + title (str): The new title of the terminal window. + + Returns: + bool: True if the control code to change the terminal title was + written, otherwise False. Note that a return value of True + does not guarantee that the window title has actually changed, + since the feature may be unsupported/disabled in some terminals. + """ + if self.is_terminal: + self.control(Control.title(title)) + return True + return False + + def screen( + self, hide_cursor: bool = True, style: Optional[StyleType] = None + ) -> "ScreenContext": + """Context manager to enable and disable 'alternative screen' mode. + + Args: + hide_cursor (bool, optional): Also hide the cursor. Defaults to False. + style (Style, optional): Optional style for screen. Defaults to None. + + Returns: + ~ScreenContext: Context which enables alternate screen on enter, and disables it on exit. + """ + return ScreenContext(self, hide_cursor=hide_cursor, style=style or "") + + def measure( + self, renderable: RenderableType, *, options: Optional[ConsoleOptions] = None + ) -> Measurement: + """Measure a renderable. Returns a :class:`~rich.measure.Measurement` object which contains + information regarding the number of characters required to print the renderable. + + Args: + renderable (RenderableType): Any renderable or string. + options (Optional[ConsoleOptions], optional): Options to use when measuring, or None + to use default options. Defaults to None. + + Returns: + Measurement: A measurement of the renderable. + """ + measurement = Measurement.get(self, options or self.options, renderable) + return measurement + + def render( + self, renderable: RenderableType, options: Optional[ConsoleOptions] = None + ) -> Iterable[Segment]: + """Render an object in to an iterable of `Segment` instances. + + This method contains the logic for rendering objects with the console protocol. + You are unlikely to need to use it directly, unless you are extending the library. + + Args: + renderable (RenderableType): An object supporting the console protocol, or + an object that may be converted to a string. + options (ConsoleOptions, optional): An options object, or None to use self.options. Defaults to None. + + Returns: + Iterable[Segment]: An iterable of segments that may be rendered. + """ + + _options = options or self.options + if _options.max_width < 1: + # No space to render anything. This prevents potential recursion errors. + return + render_iterable: RenderResult + + renderable = rich_cast(renderable) + if hasattr(renderable, "__rich_console__") and not isclass(renderable): + render_iterable = renderable.__rich_console__(self, _options) # type: ignore[union-attr] + elif isinstance(renderable, str): + text_renderable = self.render_str( + renderable, highlight=_options.highlight, markup=_options.markup + ) + render_iterable = text_renderable.__rich_console__(self, _options) + else: + raise errors.NotRenderableError( + f"Unable to render {renderable!r}; " + "A str, Segment or object with __rich_console__ method is required" + ) + + try: + iter_render = iter(render_iterable) + except TypeError: + raise errors.NotRenderableError( + f"object {render_iterable!r} is not renderable" + ) + _Segment = Segment + _options = _options.reset_height() + for render_output in iter_render: + if isinstance(render_output, _Segment): + yield render_output + else: + yield from self.render(render_output, _options) + + def render_lines( + self, + renderable: RenderableType, + options: Optional[ConsoleOptions] = None, + *, + style: Optional[Style] = None, + pad: bool = True, + new_lines: bool = False, + ) -> List[List[Segment]]: + """Render objects in to a list of lines. + + The output of render_lines is useful when further formatting of rendered console text + is required, such as the Panel class which draws a border around any renderable object. + + Args: + renderable (RenderableType): Any object renderable in the console. + options (Optional[ConsoleOptions], optional): Console options, or None to use self.options. Default to ``None``. + style (Style, optional): Optional style to apply to renderables. Defaults to ``None``. + pad (bool, optional): Pad lines shorter than render width. Defaults to ``True``. + new_lines (bool, optional): Include "\n" characters at end of lines. + + Returns: + List[List[Segment]]: A list of lines, where a line is a list of Segment objects. + """ + with self._lock: + render_options = options or self.options + _rendered = self.render(renderable, render_options) + if style: + _rendered = Segment.apply_style(_rendered, style) + + render_height = render_options.height + if render_height is not None: + render_height = max(0, render_height) + + lines = list( + islice( + Segment.split_and_crop_lines( + _rendered, + render_options.max_width, + include_new_lines=new_lines, + pad=pad, + style=style, + ), + None, + render_height, + ) + ) + if render_options.height is not None: + extra_lines = render_options.height - len(lines) + if extra_lines > 0: + pad_line = [ + [Segment(" " * render_options.max_width, style), Segment("\n")] + if new_lines + else [Segment(" " * render_options.max_width, style)] + ] + lines.extend(pad_line * extra_lines) + + return lines + + def render_str( + self, + text: str, + *, + style: Union[str, Style] = "", + justify: Optional[JustifyMethod] = None, + overflow: Optional[OverflowMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + highlighter: Optional[HighlighterType] = None, + ) -> "Text": + """Convert a string to a Text instance. This is called automatically if + you print or log a string. + + Args: + text (str): Text to render. + style (Union[str, Style], optional): Style to apply to rendered text. + justify (str, optional): Justify method: "default", "left", "center", "full", or "right". Defaults to ``None``. + overflow (str, optional): Overflow method: "crop", "fold", or "ellipsis". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji, or ``None`` to use Console default. + markup (Optional[bool], optional): Enable markup, or ``None`` to use Console default. + highlight (Optional[bool], optional): Enable highlighting, or ``None`` to use Console default. + highlighter (HighlighterType, optional): Optional highlighter to apply. + Returns: + ConsoleRenderable: Renderable object. + + """ + emoji_enabled = emoji or (emoji is None and self._emoji) + markup_enabled = markup or (markup is None and self._markup) + highlight_enabled = highlight or (highlight is None and self._highlight) + + if markup_enabled: + rich_text = render_markup( + text, + style=style, + emoji=emoji_enabled, + emoji_variant=self._emoji_variant, + ) + rich_text.justify = justify + rich_text.overflow = overflow + else: + rich_text = Text( + _emoji_replace(text, default_variant=self._emoji_variant) + if emoji_enabled + else text, + justify=justify, + overflow=overflow, + style=style, + ) + + _highlighter = (highlighter or self.highlighter) if highlight_enabled else None + if _highlighter is not None: + highlight_text = _highlighter(str(rich_text)) + highlight_text.copy_styles(rich_text) + return highlight_text + + return rich_text + + def get_style( + self, name: Union[str, Style], *, default: Optional[Union[Style, str]] = None + ) -> Style: + """Get a Style instance by its theme name or parse a definition. + + Args: + name (str): The name of a style or a style definition. + + Returns: + Style: A Style object. + + Raises: + MissingStyle: If no style could be parsed from name. + + """ + if isinstance(name, Style): + return name + + try: + style = self._theme_stack.get(name) + if style is None: + style = Style.parse(name) + return style.copy() if style.link else style + except errors.StyleSyntaxError as error: + if default is not None: + return self.get_style(default) + raise errors.MissingStyle( + f"Failed to get style {name!r}; {error}" + ) from None + + def _collect_renderables( + self, + objects: Iterable[Any], + sep: str, + end: str, + *, + justify: Optional[JustifyMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + ) -> List[ConsoleRenderable]: + """Combine a number of renderables and text into one renderable. + + Args: + objects (Iterable[Any]): Anything that Rich can render. + sep (str): String to write between print data. + end (str): String to write at end of print data. + justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. + + Returns: + List[ConsoleRenderable]: A list of things to render. + """ + renderables: List[ConsoleRenderable] = [] + _append = renderables.append + text: List[Text] = [] + append_text = text.append + + append = _append + if justify in ("left", "center", "right"): + + def align_append(renderable: RenderableType) -> None: + _append(Align(renderable, cast(AlignMethod, justify))) + + append = align_append + + _highlighter: HighlighterType = _null_highlighter + if highlight or (highlight is None and self._highlight): + _highlighter = self.highlighter + + def check_text() -> None: + if text: + sep_text = Text(sep, justify=justify, end=end) + append(sep_text.join(text)) + text.clear() + + for renderable in objects: + renderable = rich_cast(renderable) + if isinstance(renderable, str): + append_text( + self.render_str( + renderable, emoji=emoji, markup=markup, highlighter=_highlighter + ) + ) + elif isinstance(renderable, Text): + append_text(renderable) + elif isinstance(renderable, ConsoleRenderable): + check_text() + append(renderable) + elif is_expandable(renderable): + check_text() + append(Pretty(renderable, highlighter=_highlighter)) + else: + append_text(_highlighter(str(renderable))) + + check_text() + + if self.style is not None: + style = self.get_style(self.style) + renderables = [Styled(renderable, style) for renderable in renderables] + + return renderables + + def rule( + self, + title: TextType = "", + *, + characters: str = "─", + style: Union[str, Style] = "rule.line", + align: AlignMethod = "center", + ) -> None: + """Draw a line with optional centered title. + + Args: + title (str, optional): Text to render over the rule. Defaults to "". + characters (str, optional): Character(s) to form the line. Defaults to "─". + style (str, optional): Style of line. Defaults to "rule.line". + align (str, optional): How to align the title, one of "left", "center", or "right". Defaults to "center". + """ + from .rule import Rule + + rule = Rule(title=title, characters=characters, style=style, align=align) + self.print(rule) + + def control(self, *control: Control) -> None: + """Insert non-printing control codes. + + Args: + control_codes (str): Control codes, such as those that may move the cursor. + """ + if not self.is_dumb_terminal: + with self: + self._buffer.extend(_control.segment for _control in control) + + def out( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + highlight: Optional[bool] = None, + ) -> None: + """Output to the terminal. This is a low-level way of writing to the terminal which unlike + :meth:`~rich.console.Console.print` won't pretty print, wrap text, or apply markup, but will + optionally apply highlighting and a basic style. + + Args: + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use + console default. Defaults to ``None``. + """ + raw_output: str = sep.join(str(_object) for _object in objects) + self.print( + raw_output, + style=style, + highlight=highlight, + emoji=False, + markup=False, + no_wrap=True, + overflow="ignore", + crop=False, + end=end, + ) + + def print( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + justify: Optional[JustifyMethod] = None, + overflow: Optional[OverflowMethod] = None, + no_wrap: Optional[bool] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + width: Optional[int] = None, + height: Optional[int] = None, + crop: bool = True, + soft_wrap: Optional[bool] = None, + new_line_start: bool = False, + ) -> None: + """Print to the console. + + Args: + objects (positional args): Objects to log to the terminal. + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + justify (str, optional): Justify method: "default", "left", "right", "center", or "full". Defaults to ``None``. + overflow (str, optional): Overflow method: "ignore", "crop", "fold", or "ellipsis". Defaults to None. + no_wrap (Optional[bool], optional): Disable word wrapping. Defaults to None. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to ``None``. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to ``None``. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to ``None``. + width (Optional[int], optional): Width of output, or ``None`` to auto-detect. Defaults to ``None``. + crop (Optional[bool], optional): Crop output to width of terminal. Defaults to True. + soft_wrap (bool, optional): Enable soft wrap mode which disables word wrapping and cropping of text or ``None`` for + Console default. Defaults to ``None``. + new_line_start (bool, False): Insert a new line at the start if the output contains more than one line. Defaults to ``False``. + """ + if not objects: + objects = (NewLine(),) + + if soft_wrap is None: + soft_wrap = self.soft_wrap + if soft_wrap: + if no_wrap is None: + no_wrap = True + if overflow is None: + overflow = "ignore" + crop = False + render_hooks = self._render_hooks[:] + with self: + renderables = self._collect_renderables( + objects, + sep, + end, + justify=justify, + emoji=emoji, + markup=markup, + highlight=highlight, + ) + for hook in render_hooks: + renderables = hook.process_renderables(renderables) + render_options = self.options.update( + justify=justify, + overflow=overflow, + width=min(width, self.width) if width is not None else NO_CHANGE, + height=height, + no_wrap=no_wrap, + markup=markup, + highlight=highlight, + ) + + new_segments: List[Segment] = [] + extend = new_segments.extend + render = self.render + if style is None: + for renderable in renderables: + extend(render(renderable, render_options)) + else: + for renderable in renderables: + extend( + Segment.apply_style( + render(renderable, render_options), self.get_style(style) + ) + ) + if new_line_start: + if ( + len("".join(segment.text for segment in new_segments).splitlines()) + > 1 + ): + new_segments.insert(0, Segment.line()) + if crop: + buffer_extend = self._buffer.extend + for line in Segment.split_and_crop_lines( + new_segments, self.width, pad=False + ): + buffer_extend(line) + else: + self._buffer.extend(new_segments) + + def print_json( + self, + json: Optional[str] = None, + *, + data: Any = None, + indent: Union[None, int, str] = 2, + highlight: bool = True, + skip_keys: bool = False, + ensure_ascii: bool = False, + check_circular: bool = True, + allow_nan: bool = True, + default: Optional[Callable[[Any], Any]] = None, + sort_keys: bool = False, + ) -> None: + """Pretty prints JSON. Output will be valid JSON. + + Args: + json (Optional[str]): A string containing JSON. + data (Any): If json is not supplied, then encode this data. + indent (Union[None, int, str], optional): Number of spaces to indent. Defaults to 2. + highlight (bool, optional): Enable highlighting of output: Defaults to True. + skip_keys (bool, optional): Skip keys not of a basic type. Defaults to False. + ensure_ascii (bool, optional): Escape all non-ascii characters. Defaults to False. + check_circular (bool, optional): Check for circular references. Defaults to True. + allow_nan (bool, optional): Allow NaN and Infinity values. Defaults to True. + default (Callable, optional): A callable that converts values that can not be encoded + in to something that can be JSON encoded. Defaults to None. + sort_keys (bool, optional): Sort dictionary keys. Defaults to False. + """ + from pip._vendor.rich.json import JSON + + if json is None: + json_renderable = JSON.from_data( + data, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + else: + if not isinstance(json, str): + raise TypeError( + f"json must be str. Did you mean print_json(data={json!r}) ?" + ) + json_renderable = JSON( + json, + indent=indent, + highlight=highlight, + skip_keys=skip_keys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + default=default, + sort_keys=sort_keys, + ) + self.print(json_renderable, soft_wrap=True) + + def update_screen( + self, + renderable: RenderableType, + *, + region: Optional[Region] = None, + options: Optional[ConsoleOptions] = None, + ) -> None: + """Update the screen at a given offset. + + Args: + renderable (RenderableType): A Rich renderable. + region (Region, optional): Region of screen to update, or None for entire screen. Defaults to None. + x (int, optional): x offset. Defaults to 0. + y (int, optional): y offset. Defaults to 0. + + Raises: + errors.NoAltScreen: If the Console isn't in alt screen mode. + + """ + if not self.is_alt_screen: + raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") + render_options = options or self.options + if region is None: + x = y = 0 + render_options = render_options.update_dimensions( + render_options.max_width, render_options.height or self.height + ) + else: + x, y, width, height = region + render_options = render_options.update_dimensions(width, height) + + lines = self.render_lines(renderable, options=render_options) + self.update_screen_lines(lines, x, y) + + def update_screen_lines( + self, lines: List[List[Segment]], x: int = 0, y: int = 0 + ) -> None: + """Update lines of the screen at a given offset. + + Args: + lines (List[List[Segment]]): Rendered lines (as produced by :meth:`~rich.Console.render_lines`). + x (int, optional): x offset (column no). Defaults to 0. + y (int, optional): y offset (column no). Defaults to 0. + + Raises: + errors.NoAltScreen: If the Console isn't in alt screen mode. + """ + if not self.is_alt_screen: + raise errors.NoAltScreen("Alt screen must be enabled to call update_screen") + screen_update = ScreenUpdate(lines, x, y) + segments = self.render(screen_update) + self._buffer.extend(segments) + self._check_buffer() + + def print_exception( + self, + *, + width: Optional[int] = 100, + extra_lines: int = 3, + theme: Optional[str] = None, + word_wrap: bool = False, + show_locals: bool = False, + suppress: Iterable[Union[str, ModuleType]] = (), + max_frames: int = 100, + ) -> None: + """Prints a rich render of the last exception and traceback. + + Args: + width (Optional[int], optional): Number of characters used to render code. Defaults to 100. + extra_lines (int, optional): Additional lines of code to render. Defaults to 3. + theme (str, optional): Override pygments theme used in traceback + word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False. + show_locals (bool, optional): Enable display of local variables. Defaults to False. + suppress (Iterable[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback. + max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100. + """ + from .traceback import Traceback + + traceback = Traceback( + width=width, + extra_lines=extra_lines, + theme=theme, + word_wrap=word_wrap, + show_locals=show_locals, + suppress=suppress, + max_frames=max_frames, + ) + self.print(traceback) + + @staticmethod + def _caller_frame_info( + offset: int, + currentframe: Callable[[], Optional[FrameType]] = inspect.currentframe, + ) -> Tuple[str, int, Dict[str, Any]]: + """Get caller frame information. + + Args: + offset (int): the caller offset within the current frame stack. + currentframe (Callable[[], Optional[FrameType]], optional): the callable to use to + retrieve the current frame. Defaults to ``inspect.currentframe``. + + Returns: + Tuple[str, int, Dict[str, Any]]: A tuple containing the filename, the line number and + the dictionary of local variables associated with the caller frame. + + Raises: + RuntimeError: If the stack offset is invalid. + """ + # Ignore the frame of this local helper + offset += 1 + + frame = currentframe() + if frame is not None: + # Use the faster currentframe where implemented + while offset and frame is not None: + frame = frame.f_back + offset -= 1 + assert frame is not None + return frame.f_code.co_filename, frame.f_lineno, frame.f_locals + else: + # Fallback to the slower stack + frame_info = inspect.stack()[offset] + return frame_info.filename, frame_info.lineno, frame_info.frame.f_locals + + def log( + self, + *objects: Any, + sep: str = " ", + end: str = "\n", + style: Optional[Union[str, Style]] = None, + justify: Optional[JustifyMethod] = None, + emoji: Optional[bool] = None, + markup: Optional[bool] = None, + highlight: Optional[bool] = None, + log_locals: bool = False, + _stack_offset: int = 1, + ) -> None: + """Log rich content to the terminal. + + Args: + objects (positional args): Objects to log to the terminal. + sep (str, optional): String to write between print data. Defaults to " ". + end (str, optional): String to write at end of print data. Defaults to "\\\\n". + style (Union[str, Style], optional): A style to apply to output. Defaults to None. + justify (str, optional): One of "left", "right", "center", or "full". Defaults to ``None``. + emoji (Optional[bool], optional): Enable emoji code, or ``None`` to use console default. Defaults to None. + markup (Optional[bool], optional): Enable markup, or ``None`` to use console default. Defaults to None. + highlight (Optional[bool], optional): Enable automatic highlighting, or ``None`` to use console default. Defaults to None. + log_locals (bool, optional): Boolean to enable logging of locals where ``log()`` + was called. Defaults to False. + _stack_offset (int, optional): Offset of caller from end of call stack. Defaults to 1. + """ + if not objects: + objects = (NewLine(),) + + render_hooks = self._render_hooks[:] + + with self: + renderables = self._collect_renderables( + objects, + sep, + end, + justify=justify, + emoji=emoji, + markup=markup, + highlight=highlight, + ) + if style is not None: + renderables = [Styled(renderable, style) for renderable in renderables] + + filename, line_no, locals = self._caller_frame_info(_stack_offset) + link_path = None if filename.startswith("<") else os.path.abspath(filename) + path = filename.rpartition(os.sep)[-1] + if log_locals: + locals_map = { + key: value + for key, value in locals.items() + if not key.startswith("__") + } + renderables.append(render_scope(locals_map, title="[i]locals")) + + renderables = [ + self._log_render( + self, + renderables, + log_time=self.get_datetime(), + path=path, + line_no=line_no, + link_path=link_path, + ) + ] + for hook in render_hooks: + renderables = hook.process_renderables(renderables) + new_segments: List[Segment] = [] + extend = new_segments.extend + render = self.render + render_options = self.options + for renderable in renderables: + extend(render(renderable, render_options)) + buffer_extend = self._buffer.extend + for line in Segment.split_and_crop_lines( + new_segments, self.width, pad=False + ): + buffer_extend(line) + + def _check_buffer(self) -> None: + """Check if the buffer may be rendered. Render it if it can (e.g. Console.quiet is False) + Rendering is supported on Windows, Unix and Jupyter environments. For + legacy Windows consoles, the win32 API is called directly. + This method will also record what it renders if recording is enabled via Console.record. + """ + if self.quiet: + del self._buffer[:] + return + with self._lock: + if self.record: + with self._record_buffer_lock: + self._record_buffer.extend(self._buffer[:]) + + if self._buffer_index == 0: + if self.is_jupyter: # pragma: no cover + from .jupyter import display + + display(self._buffer, self._render_buffer(self._buffer[:])) + del self._buffer[:] + else: + if WINDOWS: + use_legacy_windows_render = False + if self.legacy_windows: + fileno = get_fileno(self.file) + if fileno is not None: + use_legacy_windows_render = ( + fileno in _STD_STREAMS_OUTPUT + ) + + if use_legacy_windows_render: + from pip._vendor.rich._win32_console import LegacyWindowsTerm + from pip._vendor.rich._windows_renderer import legacy_windows_render + + buffer = self._buffer[:] + if self.no_color and self._color_system: + buffer = list(Segment.remove_color(buffer)) + + legacy_windows_render(buffer, LegacyWindowsTerm(self.file)) + else: + # Either a non-std stream on legacy Windows, or modern Windows. + text = self._render_buffer(self._buffer[:]) + # https://bugs.python.org/issue37871 + # https://github.com/python/cpython/issues/82052 + # We need to avoid writing more than 32Kb in a single write, due to the above bug + write = self.file.write + # Worse case scenario, every character is 4 bytes of utf-8 + MAX_WRITE = 32 * 1024 // 4 + try: + if len(text) <= MAX_WRITE: + write(text) + else: + batch: List[str] = [] + batch_append = batch.append + size = 0 + for line in text.splitlines(True): + if size + len(line) > MAX_WRITE and batch: + write("".join(batch)) + batch.clear() + size = 0 + batch_append(line) + size += len(line) + if batch: + write("".join(batch)) + batch.clear() + except UnicodeEncodeError as error: + error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" + raise + else: + text = self._render_buffer(self._buffer[:]) + try: + self.file.write(text) + except UnicodeEncodeError as error: + error.reason = f"{error.reason}\n*** You may need to add PYTHONIOENCODING=utf-8 to your environment ***" + raise + + self.file.flush() + del self._buffer[:] + + def _render_buffer(self, buffer: Iterable[Segment]) -> str: + """Render buffered output, and clear buffer.""" + output: List[str] = [] + append = output.append + color_system = self._color_system + legacy_windows = self.legacy_windows + not_terminal = not self.is_terminal + if self.no_color and color_system: + buffer = Segment.remove_color(buffer) + for text, style, control in buffer: + if style: + append( + style.render( + text, + color_system=color_system, + legacy_windows=legacy_windows, + ) + ) + elif not (not_terminal and control): + append(text) + + rendered = "".join(output) + return rendered + + def input( + self, + prompt: TextType = "", + *, + markup: bool = True, + emoji: bool = True, + password: bool = False, + stream: Optional[TextIO] = None, + ) -> str: + """Displays a prompt and waits for input from the user. The prompt may contain color / style. + + It works in the same way as Python's builtin :func:`input` function and provides elaborate line editing and history features if Python's builtin :mod:`readline` module is previously loaded. + + Args: + prompt (Union[str, Text]): Text to render in the prompt. + markup (bool, optional): Enable console markup (requires a str prompt). Defaults to True. + emoji (bool, optional): Enable emoji (requires a str prompt). Defaults to True. + password: (bool, optional): Hide typed text. Defaults to False. + stream: (TextIO, optional): Optional file to read input from (rather than stdin). Defaults to None. + + Returns: + str: Text read from stdin. + """ + if prompt: + self.print(prompt, markup=markup, emoji=emoji, end="") + if password: + result = getpass("", stream=stream) + else: + if stream: + result = stream.readline() + else: + result = input() + return result + + def export_text(self, *, clear: bool = True, styles: bool = False) -> str: + """Generate text from console contents (requires record=True argument in constructor). + + Args: + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + styles (bool, optional): If ``True``, ansi escape codes will be included. ``False`` for plain text. + Defaults to ``False``. + + Returns: + str: String containing console contents. + + """ + assert ( + self.record + ), "To export console contents set record=True in the constructor or instance" + + with self._record_buffer_lock: + if styles: + text = "".join( + (style.render(text) if style else text) + for text, style, _ in self._record_buffer + ) + else: + text = "".join( + segment.text + for segment in self._record_buffer + if not segment.control + ) + if clear: + del self._record_buffer[:] + return text + + def save_text(self, path: str, *, clear: bool = True, styles: bool = False) -> None: + """Generate text from console and save to a given location (requires record=True argument in constructor). + + Args: + path (str): Path to write text files. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + styles (bool, optional): If ``True``, ansi style codes will be included. ``False`` for plain text. + Defaults to ``False``. + + """ + text = self.export_text(clear=clear, styles=styles) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(text) + + def export_html( + self, + *, + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: Optional[str] = None, + inline_styles: bool = False, + ) -> str: + """Generate HTML from console contents (requires record=True argument in constructor). + + Args: + theme (TerminalTheme, optional): TerminalTheme object containing console colors. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + code_format (str, optional): Format string to render HTML. In addition to '{foreground}', + '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. + inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files + larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. + Defaults to False. + + Returns: + str: String containing console contents as HTML. + """ + assert ( + self.record + ), "To export console contents set record=True in the constructor or instance" + fragments: List[str] = [] + append = fragments.append + _theme = theme or DEFAULT_TERMINAL_THEME + stylesheet = "" + + render_code_format = CONSOLE_HTML_FORMAT if code_format is None else code_format + + with self._record_buffer_lock: + if inline_styles: + for text, style, _ in Segment.filter_control( + Segment.simplify(self._record_buffer) + ): + text = escape(text) + if style: + rule = style.get_html_style(_theme) + if style.link: + text = f'
    {text}' + text = f'{text}' if rule else text + append(text) + else: + styles: Dict[str, int] = {} + for text, style, _ in Segment.filter_control( + Segment.simplify(self._record_buffer) + ): + text = escape(text) + if style: + rule = style.get_html_style(_theme) + style_number = styles.setdefault(rule, len(styles) + 1) + if style.link: + text = f'{text}' + else: + text = f'{text}' + append(text) + stylesheet_rules: List[str] = [] + stylesheet_append = stylesheet_rules.append + for style_rule, style_number in styles.items(): + if style_rule: + stylesheet_append(f".r{style_number} {{{style_rule}}}") + stylesheet = "\n".join(stylesheet_rules) + + rendered_code = render_code_format.format( + code="".join(fragments), + stylesheet=stylesheet, + foreground=_theme.foreground_color.hex, + background=_theme.background_color.hex, + ) + if clear: + del self._record_buffer[:] + return rendered_code + + def save_html( + self, + path: str, + *, + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_HTML_FORMAT, + inline_styles: bool = False, + ) -> None: + """Generate HTML from console contents and write to a file (requires record=True argument in constructor). + + Args: + path (str): Path to write html file. + theme (TerminalTheme, optional): TerminalTheme object containing console colors. + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``. + code_format (str, optional): Format string to render HTML. In addition to '{foreground}', + '{background}', and '{code}', should contain '{stylesheet}' if inline_styles is ``False``. + inline_styles (bool, optional): If ``True`` styles will be inlined in to spans, which makes files + larger but easier to cut and paste markup. If ``False``, styles will be embedded in a style tag. + Defaults to False. + + """ + html = self.export_html( + theme=theme, + clear=clear, + code_format=code_format, + inline_styles=inline_styles, + ) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(html) + + def export_svg( + self, + *, + title: str = "Rich", + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_SVG_FORMAT, + font_aspect_ratio: float = 0.61, + unique_id: Optional[str] = None, + ) -> str: + """ + Generate an SVG from the console contents (requires record=True in Console constructor). + + Args: + title (str, optional): The title of the tab in the output image + theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` + code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables + into the string in order to form the final SVG output. The default template used and the variables + injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. + font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` + string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). + If you aren't specifying a different font inside ``code_format``, you probably don't need this. + unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node + ids). If not set, this defaults to a computed value based on the recorded content. + """ + + from pip._vendor.rich.cells import cell_len + + style_cache: Dict[Style, str] = {} + + def get_svg_style(style: Style) -> str: + """Convert a Style to CSS rules for SVG.""" + if style in style_cache: + return style_cache[style] + css_rules = [] + color = ( + _theme.foreground_color + if (style.color is None or style.color.is_default) + else style.color.get_truecolor(_theme) + ) + bgcolor = ( + _theme.background_color + if (style.bgcolor is None or style.bgcolor.is_default) + else style.bgcolor.get_truecolor(_theme) + ) + if style.reverse: + color, bgcolor = bgcolor, color + if style.dim: + color = blend_rgb(color, bgcolor, 0.4) + css_rules.append(f"fill: {color.hex}") + if style.bold: + css_rules.append("font-weight: bold") + if style.italic: + css_rules.append("font-style: italic;") + if style.underline: + css_rules.append("text-decoration: underline;") + if style.strike: + css_rules.append("text-decoration: line-through;") + + css = ";".join(css_rules) + style_cache[style] = css + return css + + _theme = theme or SVG_EXPORT_THEME + + width = self.width + char_height = 20 + char_width = char_height * font_aspect_ratio + line_height = char_height * 1.22 + + margin_top = 1 + margin_right = 1 + margin_bottom = 1 + margin_left = 1 + + padding_top = 40 + padding_right = 8 + padding_bottom = 8 + padding_left = 8 + + padding_width = padding_left + padding_right + padding_height = padding_top + padding_bottom + margin_width = margin_left + margin_right + margin_height = margin_top + margin_bottom + + text_backgrounds: List[str] = [] + text_group: List[str] = [] + classes: Dict[str, int] = {} + style_no = 1 + + def escape_text(text: str) -> str: + """HTML escape text and replace spaces with nbsp.""" + return escape(text).replace(" ", " ") + + def make_tag( + name: str, content: Optional[str] = None, **attribs: object + ) -> str: + """Make a tag from name, content, and attributes.""" + + def stringify(value: object) -> str: + if isinstance(value, (float)): + return format(value, "g") + return str(value) + + tag_attribs = " ".join( + f'{k.lstrip("_").replace("_", "-")}="{stringify(v)}"' + for k, v in attribs.items() + ) + return ( + f"<{name} {tag_attribs}>{content}" + if content + else f"<{name} {tag_attribs}/>" + ) + + with self._record_buffer_lock: + segments = list(Segment.filter_control(self._record_buffer)) + if clear: + self._record_buffer.clear() + + if unique_id is None: + unique_id = "terminal-" + str( + zlib.adler32( + ("".join(repr(segment) for segment in segments)).encode( + "utf-8", + "ignore", + ) + + title.encode("utf-8", "ignore") + ) + ) + y = 0 + for y, line in enumerate(Segment.split_and_crop_lines(segments, length=width)): + x = 0 + for text, style, _control in line: + style = style or Style() + rules = get_svg_style(style) + if rules not in classes: + classes[rules] = style_no + style_no += 1 + class_name = f"r{classes[rules]}" + + if style.reverse: + has_background = True + background = ( + _theme.foreground_color.hex + if style.color is None + else style.color.get_truecolor(_theme).hex + ) + else: + bgcolor = style.bgcolor + has_background = bgcolor is not None and not bgcolor.is_default + background = ( + _theme.background_color.hex + if style.bgcolor is None + else style.bgcolor.get_truecolor(_theme).hex + ) + + text_length = cell_len(text) + if has_background: + text_backgrounds.append( + make_tag( + "rect", + fill=background, + x=x * char_width, + y=y * line_height + 1.5, + width=char_width * text_length, + height=line_height + 0.25, + shape_rendering="crispEdges", + ) + ) + + if text != " " * len(text): + text_group.append( + make_tag( + "text", + escape_text(text), + _class=f"{unique_id}-{class_name}", + x=x * char_width, + y=y * line_height + char_height, + textLength=char_width * len(text), + clip_path=f"url(#{unique_id}-line-{y})", + ) + ) + x += cell_len(text) + + line_offsets = [line_no * line_height + 1.5 for line_no in range(y)] + lines = "\n".join( + f""" + {make_tag("rect", x=0, y=offset, width=char_width * width, height=line_height + 0.25)} + """ + for line_no, offset in enumerate(line_offsets) + ) + + styles = "\n".join( + f".{unique_id}-r{rule_no} {{ {css} }}" for css, rule_no in classes.items() + ) + backgrounds = "".join(text_backgrounds) + matrix = "".join(text_group) + + terminal_width = ceil(width * char_width + padding_width) + terminal_height = (y + 1) * line_height + padding_height + chrome = make_tag( + "rect", + fill=_theme.background_color.hex, + stroke="rgba(255,255,255,0.35)", + stroke_width="1", + x=margin_left, + y=margin_top, + width=terminal_width, + height=terminal_height, + rx=8, + ) + + title_color = _theme.foreground_color.hex + if title: + chrome += make_tag( + "text", + escape_text(title), + _class=f"{unique_id}-title", + fill=title_color, + text_anchor="middle", + x=terminal_width // 2, + y=margin_top + char_height + 6, + ) + chrome += f""" + + + + + + """ + + svg = code_format.format( + unique_id=unique_id, + char_width=char_width, + char_height=char_height, + line_height=line_height, + terminal_width=char_width * width - 1, + terminal_height=(y + 1) * line_height - 1, + width=terminal_width + margin_width, + height=terminal_height + margin_height, + terminal_x=margin_left + padding_left, + terminal_y=margin_top + padding_top, + styles=styles, + chrome=chrome, + backgrounds=backgrounds, + matrix=matrix, + lines=lines, + ) + return svg + + def save_svg( + self, + path: str, + *, + title: str = "Rich", + theme: Optional[TerminalTheme] = None, + clear: bool = True, + code_format: str = CONSOLE_SVG_FORMAT, + font_aspect_ratio: float = 0.61, + unique_id: Optional[str] = None, + ) -> None: + """Generate an SVG file from the console contents (requires record=True in Console constructor). + + Args: + path (str): The path to write the SVG to. + title (str, optional): The title of the tab in the output image + theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal + clear (bool, optional): Clear record buffer after exporting. Defaults to ``True`` + code_format (str, optional): Format string used to generate the SVG. Rich will inject a number of variables + into the string in order to form the final SVG output. The default template used and the variables + injected by Rich can be found by inspecting the ``console.CONSOLE_SVG_FORMAT`` variable. + font_aspect_ratio (float, optional): The width to height ratio of the font used in the ``code_format`` + string. Defaults to 0.61, which is the width to height ratio of Fira Code (the default font). + If you aren't specifying a different font inside ``code_format``, you probably don't need this. + unique_id (str, optional): unique id that is used as the prefix for various elements (CSS styles, node + ids). If not set, this defaults to a computed value based on the recorded content. + """ + svg = self.export_svg( + title=title, + theme=theme, + clear=clear, + code_format=code_format, + font_aspect_ratio=font_aspect_ratio, + unique_id=unique_id, + ) + with open(path, "wt", encoding="utf-8") as write_file: + write_file.write(svg) + + +def _svg_hash(svg_main_code: str) -> str: + """Returns a unique hash for the given SVG main code. + + Args: + svg_main_code (str): The content we're going to inject in the SVG envelope. + + Returns: + str: a hash of the given content + """ + return str(zlib.adler32(svg_main_code.encode())) + + +if __name__ == "__main__": # pragma: no cover + console = Console(record=True) + + console.log( + "JSONRPC [i]request[/i]", + 5, + 1.3, + True, + False, + None, + { + "jsonrpc": "2.0", + "method": "subtract", + "params": {"minuend": 42, "subtrahend": 23}, + "id": 3, + }, + ) + + console.log("Hello, World!", "{'a': 1}", repr(console)) + + console.print( + { + "name": None, + "empty": [], + "quiz": { + "sport": { + "answered": True, + "q1": { + "question": "Which one is correct team name in NBA?", + "options": [ + "New York Bulls", + "Los Angeles Kings", + "Golden State Warriors", + "Huston Rocket", + ], + "answer": "Huston Rocket", + }, + }, + "maths": { + "answered": False, + "q1": { + "question": "5 + 7 = ?", + "options": [10, 11, 12, 13], + "answer": 12, + }, + "q2": { + "question": "12 - 8 = ?", + "options": [1, 2, 3, 4], + "answer": 4, + }, + }, + }, + } + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py new file mode 100644 index 00000000..65fdf563 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py @@ -0,0 +1,37 @@ +from typing import Optional, TYPE_CHECKING + +from .jupyter import JupyterMixin +from .measure import Measurement + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderableType, RenderResult + + +class Constrain(JupyterMixin): + """Constrain the width of a renderable to a given number of characters. + + Args: + renderable (RenderableType): A renderable object. + width (int, optional): The maximum width (in characters) to render. Defaults to 80. + """ + + def __init__(self, renderable: "RenderableType", width: Optional[int] = 80) -> None: + self.renderable = renderable + self.width = width + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.width is None: + yield self.renderable + else: + child_options = options.update_width(min(self.width, options.max_width)) + yield from console.render(self.renderable, child_options) + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + if self.width is not None: + options = options.update_width(self.width) + measurement = Measurement.get(console, options, self.renderable) + return measurement diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/containers.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/containers.py new file mode 100644 index 00000000..901ff8ba --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/containers.py @@ -0,0 +1,167 @@ +from itertools import zip_longest +from typing import ( + TYPE_CHECKING, + Iterable, + Iterator, + List, + Optional, + TypeVar, + Union, + overload, +) + +if TYPE_CHECKING: + from .console import ( + Console, + ConsoleOptions, + JustifyMethod, + OverflowMethod, + RenderResult, + RenderableType, + ) + from .text import Text + +from .cells import cell_len +from .measure import Measurement + +T = TypeVar("T") + + +class Renderables: + """A list subclass which renders its contents to the console.""" + + def __init__( + self, renderables: Optional[Iterable["RenderableType"]] = None + ) -> None: + self._renderables: List["RenderableType"] = ( + list(renderables) if renderables is not None else [] + ) + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + """Console render method to insert line-breaks.""" + yield from self._renderables + + def __rich_measure__( + self, console: "Console", options: "ConsoleOptions" + ) -> "Measurement": + dimensions = [ + Measurement.get(console, options, renderable) + for renderable in self._renderables + ] + if not dimensions: + return Measurement(1, 1) + _min = max(dimension.minimum for dimension in dimensions) + _max = max(dimension.maximum for dimension in dimensions) + return Measurement(_min, _max) + + def append(self, renderable: "RenderableType") -> None: + self._renderables.append(renderable) + + def __iter__(self) -> Iterable["RenderableType"]: + return iter(self._renderables) + + +class Lines: + """A list subclass which can render to the console.""" + + def __init__(self, lines: Iterable["Text"] = ()) -> None: + self._lines: List["Text"] = list(lines) + + def __repr__(self) -> str: + return f"Lines({self._lines!r})" + + def __iter__(self) -> Iterator["Text"]: + return iter(self._lines) + + @overload + def __getitem__(self, index: int) -> "Text": + ... + + @overload + def __getitem__(self, index: slice) -> List["Text"]: + ... + + def __getitem__(self, index: Union[slice, int]) -> Union["Text", List["Text"]]: + return self._lines[index] + + def __setitem__(self, index: int, value: "Text") -> "Lines": + self._lines[index] = value + return self + + def __len__(self) -> int: + return self._lines.__len__() + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + """Console render method to insert line-breaks.""" + yield from self._lines + + def append(self, line: "Text") -> None: + self._lines.append(line) + + def extend(self, lines: Iterable["Text"]) -> None: + self._lines.extend(lines) + + def pop(self, index: int = -1) -> "Text": + return self._lines.pop(index) + + def justify( + self, + console: "Console", + width: int, + justify: "JustifyMethod" = "left", + overflow: "OverflowMethod" = "fold", + ) -> None: + """Justify and overflow text to a given width. + + Args: + console (Console): Console instance. + width (int): Number of cells available per line. + justify (str, optional): Default justify method for text: "left", "center", "full" or "right". Defaults to "left". + overflow (str, optional): Default overflow for text: "crop", "fold", or "ellipsis". Defaults to "fold". + + """ + from .text import Text + + if justify == "left": + for line in self._lines: + line.truncate(width, overflow=overflow, pad=True) + elif justify == "center": + for line in self._lines: + line.rstrip() + line.truncate(width, overflow=overflow) + line.pad_left((width - cell_len(line.plain)) // 2) + line.pad_right(width - cell_len(line.plain)) + elif justify == "right": + for line in self._lines: + line.rstrip() + line.truncate(width, overflow=overflow) + line.pad_left(width - cell_len(line.plain)) + elif justify == "full": + for line_index, line in enumerate(self._lines): + if line_index == len(self._lines) - 1: + break + words = line.split(" ") + words_size = sum(cell_len(word.plain) for word in words) + num_spaces = len(words) - 1 + spaces = [1 for _ in range(num_spaces)] + index = 0 + if spaces: + while words_size + num_spaces < width: + spaces[len(spaces) - index - 1] += 1 + num_spaces += 1 + index = (index + 1) % len(spaces) + tokens: List[Text] = [] + for index, (word, next_word) in enumerate( + zip_longest(words, words[1:]) + ): + tokens.append(word) + if index < len(spaces): + style = word.get_style_at_offset(console, -1) + next_style = next_word.get_style_at_offset(console, 0) + space_style = style if style == next_style else line.style + tokens.append(Text(" " * spaces[index], style=space_style)) + self[line_index] = Text("").join(tokens) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/control.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/control.py new file mode 100644 index 00000000..88fcb929 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/control.py @@ -0,0 +1,225 @@ +import sys +import time +from typing import TYPE_CHECKING, Callable, Dict, Iterable, List, Union + +if sys.version_info >= (3, 8): + from typing import Final +else: + from pip._vendor.typing_extensions import Final # pragma: no cover + +from .segment import ControlCode, ControlType, Segment + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + +STRIP_CONTROL_CODES: Final = [ + 7, # Bell + 8, # Backspace + 11, # Vertical tab + 12, # Form feed + 13, # Carriage return +] +_CONTROL_STRIP_TRANSLATE: Final = { + _codepoint: None for _codepoint in STRIP_CONTROL_CODES +} + +CONTROL_ESCAPE: Final = { + 7: "\\a", + 8: "\\b", + 11: "\\v", + 12: "\\f", + 13: "\\r", +} + +CONTROL_CODES_FORMAT: Dict[int, Callable[..., str]] = { + ControlType.BELL: lambda: "\x07", + ControlType.CARRIAGE_RETURN: lambda: "\r", + ControlType.HOME: lambda: "\x1b[H", + ControlType.CLEAR: lambda: "\x1b[2J", + ControlType.ENABLE_ALT_SCREEN: lambda: "\x1b[?1049h", + ControlType.DISABLE_ALT_SCREEN: lambda: "\x1b[?1049l", + ControlType.SHOW_CURSOR: lambda: "\x1b[?25h", + ControlType.HIDE_CURSOR: lambda: "\x1b[?25l", + ControlType.CURSOR_UP: lambda param: f"\x1b[{param}A", + ControlType.CURSOR_DOWN: lambda param: f"\x1b[{param}B", + ControlType.CURSOR_FORWARD: lambda param: f"\x1b[{param}C", + ControlType.CURSOR_BACKWARD: lambda param: f"\x1b[{param}D", + ControlType.CURSOR_MOVE_TO_COLUMN: lambda param: f"\x1b[{param+1}G", + ControlType.ERASE_IN_LINE: lambda param: f"\x1b[{param}K", + ControlType.CURSOR_MOVE_TO: lambda x, y: f"\x1b[{y+1};{x+1}H", + ControlType.SET_WINDOW_TITLE: lambda title: f"\x1b]0;{title}\x07", +} + + +class Control: + """A renderable that inserts a control code (non printable but may move cursor). + + Args: + *codes (str): Positional arguments are either a :class:`~rich.segment.ControlType` enum or a + tuple of ControlType and an integer parameter + """ + + __slots__ = ["segment"] + + def __init__(self, *codes: Union[ControlType, ControlCode]) -> None: + control_codes: List[ControlCode] = [ + (code,) if isinstance(code, ControlType) else code for code in codes + ] + _format_map = CONTROL_CODES_FORMAT + rendered_codes = "".join( + _format_map[code](*parameters) for code, *parameters in control_codes + ) + self.segment = Segment(rendered_codes, None, control_codes) + + @classmethod + def bell(cls) -> "Control": + """Ring the 'bell'.""" + return cls(ControlType.BELL) + + @classmethod + def home(cls) -> "Control": + """Move cursor to 'home' position.""" + return cls(ControlType.HOME) + + @classmethod + def move(cls, x: int = 0, y: int = 0) -> "Control": + """Move cursor relative to current position. + + Args: + x (int): X offset. + y (int): Y offset. + + Returns: + ~Control: Control object. + + """ + + def get_codes() -> Iterable[ControlCode]: + control = ControlType + if x: + yield ( + control.CURSOR_FORWARD if x > 0 else control.CURSOR_BACKWARD, + abs(x), + ) + if y: + yield ( + control.CURSOR_DOWN if y > 0 else control.CURSOR_UP, + abs(y), + ) + + control = cls(*get_codes()) + return control + + @classmethod + def move_to_column(cls, x: int, y: int = 0) -> "Control": + """Move to the given column, optionally add offset to row. + + Returns: + x (int): absolute x (column) + y (int): optional y offset (row) + + Returns: + ~Control: Control object. + """ + + return ( + cls( + (ControlType.CURSOR_MOVE_TO_COLUMN, x), + ( + ControlType.CURSOR_DOWN if y > 0 else ControlType.CURSOR_UP, + abs(y), + ), + ) + if y + else cls((ControlType.CURSOR_MOVE_TO_COLUMN, x)) + ) + + @classmethod + def move_to(cls, x: int, y: int) -> "Control": + """Move cursor to absolute position. + + Args: + x (int): x offset (column) + y (int): y offset (row) + + Returns: + ~Control: Control object. + """ + return cls((ControlType.CURSOR_MOVE_TO, x, y)) + + @classmethod + def clear(cls) -> "Control": + """Clear the screen.""" + return cls(ControlType.CLEAR) + + @classmethod + def show_cursor(cls, show: bool) -> "Control": + """Show or hide the cursor.""" + return cls(ControlType.SHOW_CURSOR if show else ControlType.HIDE_CURSOR) + + @classmethod + def alt_screen(cls, enable: bool) -> "Control": + """Enable or disable alt screen.""" + if enable: + return cls(ControlType.ENABLE_ALT_SCREEN, ControlType.HOME) + else: + return cls(ControlType.DISABLE_ALT_SCREEN) + + @classmethod + def title(cls, title: str) -> "Control": + """Set the terminal window title + + Args: + title (str): The new terminal window title + """ + return cls((ControlType.SET_WINDOW_TITLE, title)) + + def __str__(self) -> str: + return self.segment.text + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + if self.segment.text: + yield self.segment + + +def strip_control_codes( + text: str, _translate_table: Dict[int, None] = _CONTROL_STRIP_TRANSLATE +) -> str: + """Remove control codes from text. + + Args: + text (str): A string possibly contain control codes. + + Returns: + str: String with control codes removed. + """ + return text.translate(_translate_table) + + +def escape_control_codes( + text: str, + _translate_table: Dict[int, str] = CONTROL_ESCAPE, +) -> str: + """Replace control codes with their "escaped" equivalent in the given text. + (e.g. "\b" becomes "\\b") + + Args: + text (str): A string possibly containing control codes. + + Returns: + str: String with control codes replaced with their escaped version. + """ + return text.translate(_translate_table) + + +if __name__ == "__main__": # pragma: no cover + from pip._vendor.rich.console import Console + + console = Console() + console.print("Look at the title of your terminal window ^") + # console.print(Control((ControlType.SET_WINDOW_TITLE, "Hello, world!"))) + for i in range(10): + console.set_window_title("🚀 Loading" + "." * i) + time.sleep(0.5) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py new file mode 100644 index 00000000..dca37193 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py @@ -0,0 +1,190 @@ +from typing import Dict + +from .style import Style + +DEFAULT_STYLES: Dict[str, Style] = { + "none": Style.null(), + "reset": Style( + color="default", + bgcolor="default", + dim=False, + bold=False, + italic=False, + underline=False, + blink=False, + blink2=False, + reverse=False, + conceal=False, + strike=False, + ), + "dim": Style(dim=True), + "bright": Style(dim=False), + "bold": Style(bold=True), + "strong": Style(bold=True), + "code": Style(reverse=True, bold=True), + "italic": Style(italic=True), + "emphasize": Style(italic=True), + "underline": Style(underline=True), + "blink": Style(blink=True), + "blink2": Style(blink2=True), + "reverse": Style(reverse=True), + "strike": Style(strike=True), + "black": Style(color="black"), + "red": Style(color="red"), + "green": Style(color="green"), + "yellow": Style(color="yellow"), + "magenta": Style(color="magenta"), + "cyan": Style(color="cyan"), + "white": Style(color="white"), + "inspect.attr": Style(color="yellow", italic=True), + "inspect.attr.dunder": Style(color="yellow", italic=True, dim=True), + "inspect.callable": Style(bold=True, color="red"), + "inspect.async_def": Style(italic=True, color="bright_cyan"), + "inspect.def": Style(italic=True, color="bright_cyan"), + "inspect.class": Style(italic=True, color="bright_cyan"), + "inspect.error": Style(bold=True, color="red"), + "inspect.equals": Style(), + "inspect.help": Style(color="cyan"), + "inspect.doc": Style(dim=True), + "inspect.value.border": Style(color="green"), + "live.ellipsis": Style(bold=True, color="red"), + "layout.tree.row": Style(dim=False, color="red"), + "layout.tree.column": Style(dim=False, color="blue"), + "logging.keyword": Style(bold=True, color="yellow"), + "logging.level.notset": Style(dim=True), + "logging.level.debug": Style(color="green"), + "logging.level.info": Style(color="blue"), + "logging.level.warning": Style(color="red"), + "logging.level.error": Style(color="red", bold=True), + "logging.level.critical": Style(color="red", bold=True, reverse=True), + "log.level": Style.null(), + "log.time": Style(color="cyan", dim=True), + "log.message": Style.null(), + "log.path": Style(dim=True), + "repr.ellipsis": Style(color="yellow"), + "repr.indent": Style(color="green", dim=True), + "repr.error": Style(color="red", bold=True), + "repr.str": Style(color="green", italic=False, bold=False), + "repr.brace": Style(bold=True), + "repr.comma": Style(bold=True), + "repr.ipv4": Style(bold=True, color="bright_green"), + "repr.ipv6": Style(bold=True, color="bright_green"), + "repr.eui48": Style(bold=True, color="bright_green"), + "repr.eui64": Style(bold=True, color="bright_green"), + "repr.tag_start": Style(bold=True), + "repr.tag_name": Style(color="bright_magenta", bold=True), + "repr.tag_contents": Style(color="default"), + "repr.tag_end": Style(bold=True), + "repr.attrib_name": Style(color="yellow", italic=False), + "repr.attrib_equal": Style(bold=True), + "repr.attrib_value": Style(color="magenta", italic=False), + "repr.number": Style(color="cyan", bold=True, italic=False), + "repr.number_complex": Style(color="cyan", bold=True, italic=False), # same + "repr.bool_true": Style(color="bright_green", italic=True), + "repr.bool_false": Style(color="bright_red", italic=True), + "repr.none": Style(color="magenta", italic=True), + "repr.url": Style(underline=True, color="bright_blue", italic=False, bold=False), + "repr.uuid": Style(color="bright_yellow", bold=False), + "repr.call": Style(color="magenta", bold=True), + "repr.path": Style(color="magenta"), + "repr.filename": Style(color="bright_magenta"), + "rule.line": Style(color="bright_green"), + "rule.text": Style.null(), + "json.brace": Style(bold=True), + "json.bool_true": Style(color="bright_green", italic=True), + "json.bool_false": Style(color="bright_red", italic=True), + "json.null": Style(color="magenta", italic=True), + "json.number": Style(color="cyan", bold=True, italic=False), + "json.str": Style(color="green", italic=False, bold=False), + "json.key": Style(color="blue", bold=True), + "prompt": Style.null(), + "prompt.choices": Style(color="magenta", bold=True), + "prompt.default": Style(color="cyan", bold=True), + "prompt.invalid": Style(color="red"), + "prompt.invalid.choice": Style(color="red"), + "pretty": Style.null(), + "scope.border": Style(color="blue"), + "scope.key": Style(color="yellow", italic=True), + "scope.key.special": Style(color="yellow", italic=True, dim=True), + "scope.equals": Style(color="red"), + "table.header": Style(bold=True), + "table.footer": Style(bold=True), + "table.cell": Style.null(), + "table.title": Style(italic=True), + "table.caption": Style(italic=True, dim=True), + "traceback.error": Style(color="red", italic=True), + "traceback.border.syntax_error": Style(color="bright_red"), + "traceback.border": Style(color="red"), + "traceback.text": Style.null(), + "traceback.title": Style(color="red", bold=True), + "traceback.exc_type": Style(color="bright_red", bold=True), + "traceback.exc_value": Style.null(), + "traceback.offset": Style(color="bright_red", bold=True), + "bar.back": Style(color="grey23"), + "bar.complete": Style(color="rgb(249,38,114)"), + "bar.finished": Style(color="rgb(114,156,31)"), + "bar.pulse": Style(color="rgb(249,38,114)"), + "progress.description": Style.null(), + "progress.filesize": Style(color="green"), + "progress.filesize.total": Style(color="green"), + "progress.download": Style(color="green"), + "progress.elapsed": Style(color="yellow"), + "progress.percentage": Style(color="magenta"), + "progress.remaining": Style(color="cyan"), + "progress.data.speed": Style(color="red"), + "progress.spinner": Style(color="green"), + "status.spinner": Style(color="green"), + "tree": Style(), + "tree.line": Style(), + "markdown.paragraph": Style(), + "markdown.text": Style(), + "markdown.em": Style(italic=True), + "markdown.emph": Style(italic=True), # For commonmark backwards compatibility + "markdown.strong": Style(bold=True), + "markdown.code": Style(bold=True, color="cyan", bgcolor="black"), + "markdown.code_block": Style(color="cyan", bgcolor="black"), + "markdown.block_quote": Style(color="magenta"), + "markdown.list": Style(color="cyan"), + "markdown.item": Style(), + "markdown.item.bullet": Style(color="yellow", bold=True), + "markdown.item.number": Style(color="yellow", bold=True), + "markdown.hr": Style(color="yellow"), + "markdown.h1.border": Style(), + "markdown.h1": Style(bold=True), + "markdown.h2": Style(bold=True, underline=True), + "markdown.h3": Style(bold=True), + "markdown.h4": Style(bold=True, dim=True), + "markdown.h5": Style(underline=True), + "markdown.h6": Style(italic=True), + "markdown.h7": Style(italic=True, dim=True), + "markdown.link": Style(color="bright_blue"), + "markdown.link_url": Style(color="blue", underline=True), + "markdown.s": Style(strike=True), + "iso8601.date": Style(color="blue"), + "iso8601.time": Style(color="magenta"), + "iso8601.timezone": Style(color="yellow"), +} + + +if __name__ == "__main__": # pragma: no cover + import argparse + import io + + from pip._vendor.rich.console import Console + from pip._vendor.rich.table import Table + from pip._vendor.rich.text import Text + + parser = argparse.ArgumentParser() + parser.add_argument("--html", action="store_true", help="Export as HTML table") + args = parser.parse_args() + html: bool = args.html + console = Console(record=True, width=70, file=io.StringIO()) if html else Console() + + table = Table("Name", "Styling") + + for style_name, style in DEFAULT_STYLES.items(): + table.add_row(Text(style_name, style=style), str(style)) + + console.print(table) + if html: + print(console.export_html(inline_styles=True)) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py new file mode 100644 index 00000000..ad361838 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py @@ -0,0 +1,37 @@ +import os +import platform + +from pip._vendor.rich import inspect +from pip._vendor.rich.console import Console, get_windows_console_features +from pip._vendor.rich.panel import Panel +from pip._vendor.rich.pretty import Pretty + + +def report() -> None: # pragma: no cover + """Print a report to the terminal with debugging information""" + console = Console() + inspect(console) + features = get_windows_console_features() + inspect(features) + + env_names = ( + "TERM", + "COLORTERM", + "CLICOLOR", + "NO_COLOR", + "TERM_PROGRAM", + "COLUMNS", + "LINES", + "JUPYTER_COLUMNS", + "JUPYTER_LINES", + "JPY_PARENT_PID", + "VSCODE_VERBOSE_LOGGING", + ) + env = {name: os.getenv(name) for name in env_names} + console.print(Panel.fit((Pretty(env)), title="[b]Environment Variables")) + + console.print(f'platform="{platform.system()}"') + + +if __name__ == "__main__": # pragma: no cover + report() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py new file mode 100644 index 00000000..791f0465 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py @@ -0,0 +1,96 @@ +import sys +from typing import TYPE_CHECKING, Optional, Union + +from .jupyter import JupyterMixin +from .segment import Segment +from .style import Style +from ._emoji_codes import EMOJI +from ._emoji_replace import _emoji_replace + +if sys.version_info >= (3, 8): + from typing import Literal +else: + from pip._vendor.typing_extensions import Literal # pragma: no cover + + +if TYPE_CHECKING: + from .console import Console, ConsoleOptions, RenderResult + + +EmojiVariant = Literal["emoji", "text"] + + +class NoEmoji(Exception): + """No emoji by that name.""" + + +class Emoji(JupyterMixin): + __slots__ = ["name", "style", "_char", "variant"] + + VARIANTS = {"text": "\uFE0E", "emoji": "\uFE0F"} + + def __init__( + self, + name: str, + style: Union[str, Style] = "none", + variant: Optional[EmojiVariant] = None, + ) -> None: + """A single emoji character. + + Args: + name (str): Name of emoji. + style (Union[str, Style], optional): Optional style. Defaults to None. + + Raises: + NoEmoji: If the emoji doesn't exist. + """ + self.name = name + self.style = style + self.variant = variant + try: + self._char = EMOJI[name] + except KeyError: + raise NoEmoji(f"No emoji called {name!r}") + if variant is not None: + self._char += self.VARIANTS.get(variant, "") + + @classmethod + def replace(cls, text: str) -> str: + """Replace emoji markup with corresponding unicode characters. + + Args: + text (str): A string with emojis codes, e.g. "Hello :smiley:!" + + Returns: + str: A string with emoji codes replaces with actual emoji. + """ + return _emoji_replace(text) + + def __repr__(self) -> str: + return f"" + + def __str__(self) -> str: + return self._char + + def __rich_console__( + self, console: "Console", options: "ConsoleOptions" + ) -> "RenderResult": + yield Segment(self._char, console.get_style(self.style)) + + +if __name__ == "__main__": # pragma: no cover + import sys + + from pip._vendor.rich.columns import Columns + from pip._vendor.rich.console import Console + + console = Console(record=True) + + columns = Columns( + (f":{name}: {name}" for name in sorted(EMOJI.keys()) if "\u200D" not in name), + column_first=True, + ) + + console.print(columns) + if len(sys.argv) > 1: + console.save_html(sys.argv[1]) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/errors.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/errors.py new file mode 100644 index 00000000..0bcbe53e --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/errors.py @@ -0,0 +1,34 @@ +class ConsoleError(Exception): + """An error in console operation.""" + + +class StyleError(Exception): + """An error in styles.""" + + +class StyleSyntaxError(ConsoleError): + """Style was badly formatted.""" + + +class MissingStyle(StyleError): + """No such style.""" + + +class StyleStackError(ConsoleError): + """Style stack is invalid.""" + + +class NotRenderableError(ConsoleError): + """Object is not renderable.""" + + +class MarkupError(ConsoleError): + """Markup was badly formatted.""" + + +class LiveError(ConsoleError): + """Error related to Live display.""" + + +class NoAltScreen(ConsoleError): + """Alt screen mode was required.""" diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py new file mode 100644 index 00000000..4b0b0da6 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py @@ -0,0 +1,57 @@ +import io +from typing import IO, TYPE_CHECKING, Any, List + +from .ansi import AnsiDecoder +from .text import Text + +if TYPE_CHECKING: + from .console import Console + + +class FileProxy(io.TextIOBase): + """Wraps a file (e.g. sys.stdout) and redirects writes to a console.""" + + def __init__(self, console: "Console", file: IO[str]) -> None: + self.__console = console + self.__file = file + self.__buffer: List[str] = [] + self.__ansi_decoder = AnsiDecoder() + + @property + def rich_proxied_file(self) -> IO[str]: + """Get proxied file.""" + return self.__file + + def __getattr__(self, name: str) -> Any: + return getattr(self.__file, name) + + def write(self, text: str) -> int: + if not isinstance(text, str): + raise TypeError(f"write() argument must be str, not {type(text).__name__}") + buffer = self.__buffer + lines: List[str] = [] + while text: + line, new_line, text = text.partition("\n") + if new_line: + lines.append("".join(buffer) + line) + buffer.clear() + else: + buffer.append(line) + break + if lines: + console = self.__console + with console: + output = Text("\n").join( + self.__ansi_decoder.decode_line(line) for line in lines + ) + console.print(output) + return len(text) + + def flush(self) -> None: + output = "".join(self.__buffer) + if output: + self.__console.print(output) + del self.__buffer[:] + + def fileno(self) -> int: + return self.__file.fileno() diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py new file mode 100644 index 00000000..99f118e2 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py @@ -0,0 +1,89 @@ +# coding: utf-8 +"""Functions for reporting filesizes. Borrowed from https://github.com/PyFilesystem/pyfilesystem2 + +The functions declared in this module should cover the different +use cases needed to generate a string representation of a file size +using several different units. Since there are many standards regarding +file size units, three different functions have been implemented. + +See Also: + * `Wikipedia: Binary prefix `_ + +""" + +__all__ = ["decimal"] + +from typing import Iterable, List, Optional, Tuple + + +def _to_str( + size: int, + suffixes: Iterable[str], + base: int, + *, + precision: Optional[int] = 1, + separator: Optional[str] = " ", +) -> str: + if size == 1: + return "1 byte" + elif size < base: + return "{:,} bytes".format(size) + + for i, suffix in enumerate(suffixes, 2): # noqa: B007 + unit = base**i + if size < unit: + break + return "{:,.{precision}f}{separator}{}".format( + (base * size / unit), + suffix, + precision=precision, + separator=separator, + ) + + +def pick_unit_and_suffix(size: int, suffixes: List[str], base: int) -> Tuple[int, str]: + """Pick a suffix and base for the given size.""" + for i, suffix in enumerate(suffixes): + unit = base**i + if size < unit * base: + break + return unit, suffix + + +def decimal( + size: int, + *, + precision: Optional[int] = 1, + separator: Optional[str] = " ", +) -> str: + """Convert a filesize in to a string (powers of 1000, SI prefixes). + + In this convention, ``1000 B = 1 kB``. + + This is typically the format used to advertise the storage + capacity of USB flash drives and the like (*256 MB* meaning + actually a storage capacity of more than *256 000 000 B*), + or used by **Mac OS X** since v10.6 to report file sizes. + + Arguments: + int (size): A file size. + int (precision): The number of decimal places to include (default = 1). + str (separator): The string to separate the value from the units (default = " "). + + Returns: + `str`: A string containing a abbreviated file size and units. + + Example: + >>> filesize.decimal(30000) + '30.0 kB' + >>> filesize.decimal(30000, precision=2, separator="") + '30.00kB' + + """ + return _to_str( + size, + ("kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"), + 1000, + precision=precision, + separator=separator, + ) diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py new file mode 100644 index 00000000..27714b25 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py @@ -0,0 +1,232 @@ +import re +from abc import ABC, abstractmethod +from typing import List, Union + +from .text import Span, Text + + +def _combine_regex(*regexes: str) -> str: + """Combine a number of regexes in to a single regex. + + Returns: + str: New regex with all regexes ORed together. + """ + return "|".join(regexes) + + +class Highlighter(ABC): + """Abstract base class for highlighters.""" + + def __call__(self, text: Union[str, Text]) -> Text: + """Highlight a str or Text instance. + + Args: + text (Union[str, ~Text]): Text to highlight. + + Raises: + TypeError: If not called with text or str. + + Returns: + Text: A test instance with highlighting applied. + """ + if isinstance(text, str): + highlight_text = Text(text) + elif isinstance(text, Text): + highlight_text = text.copy() + else: + raise TypeError(f"str or Text instance required, not {text!r}") + self.highlight(highlight_text) + return highlight_text + + @abstractmethod + def highlight(self, text: Text) -> None: + """Apply highlighting in place to text. + + Args: + text (~Text): A text object highlight. + """ + + +class NullHighlighter(Highlighter): + """A highlighter object that doesn't highlight. + + May be used to disable highlighting entirely. + + """ + + def highlight(self, text: Text) -> None: + """Nothing to do""" + + +class RegexHighlighter(Highlighter): + """Applies highlighting from a list of regular expressions.""" + + highlights: List[str] = [] + base_style: str = "" + + def highlight(self, text: Text) -> None: + """Highlight :class:`rich.text.Text` using regular expressions. + + Args: + text (~Text): Text to highlighted. + + """ + + highlight_regex = text.highlight_regex + for re_highlight in self.highlights: + highlight_regex(re_highlight, style_prefix=self.base_style) + + +class ReprHighlighter(RegexHighlighter): + """Highlights the text typically produced from ``__repr__`` methods.""" + + base_style = "repr." + highlights = [ + r"(?P<)(?P[-\w.:|]*)(?P[\w\W]*)(?P>)", + r'(?P[\w_]{1,50})=(?P"?[\w_]+"?)?', + r"(?P[][{}()])", + _combine_regex( + r"(?P[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})", + r"(?P([A-Fa-f0-9]{1,4}::?){1,7}[A-Fa-f0-9]{1,4})", + r"(?P(?:[0-9A-Fa-f]{1,2}-){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){7}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){3}[0-9A-Fa-f]{4})", + r"(?P(?:[0-9A-Fa-f]{1,2}-){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{1,2}:){5}[0-9A-Fa-f]{1,2}|(?:[0-9A-Fa-f]{4}\.){2}[0-9A-Fa-f]{4})", + r"(?P[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12})", + r"(?P[\w.]*?)\(", + r"\b(?PTrue)\b|\b(?PFalse)\b|\b(?PNone)\b", + r"(?P\.\.\.)", + r"(?P(?(?\B(/[-\w._+]+)*\/)(?P[-\w._+]*)?", + r"(?b?'''.*?(?(file|https|http|ws|wss)://[-0-9a-zA-Z$_+!`(),.?/;:&=%#~]*)", + ), + ] + + +class JSONHighlighter(RegexHighlighter): + """Highlights JSON""" + + # Captures the start and end of JSON strings, handling escaped quotes + JSON_STR = r"(?b?\".*?(?[\{\[\(\)\]\}])", + r"\b(?Ptrue)\b|\b(?Pfalse)\b|\b(?Pnull)\b", + r"(?P(? None: + super().highlight(text) + + # Additional work to handle highlighting JSON keys + plain = text.plain + append = text.spans.append + whitespace = self.JSON_WHITESPACE + for match in re.finditer(self.JSON_STR, plain): + start, end = match.span() + cursor = end + while cursor < len(plain): + char = plain[cursor] + cursor += 1 + if char == ":": + append(Span(start, end, "json.key")) + elif char in whitespace: + continue + break + + +class ISO8601Highlighter(RegexHighlighter): + """Highlights the ISO8601 date time strings. + Regex reference: https://www.oreilly.com/library/view/regular-expressions-cookbook/9781449327453/ch04s07.html + """ + + base_style = "iso8601." + highlights = [ + # + # Dates + # + # Calendar month (e.g. 2008-08). The hyphen is required + r"^(?P[0-9]{4})-(?P1[0-2]|0[1-9])$", + # Calendar date w/o hyphens (e.g. 20080830) + r"^(?P(?P[0-9]{4})(?P1[0-2]|0[1-9])(?P3[01]|0[1-9]|[12][0-9]))$", + # Ordinal date (e.g. 2008-243). The hyphen is optional + r"^(?P(?P[0-9]{4})-?(?P36[0-6]|3[0-5][0-9]|[12][0-9]{2}|0[1-9][0-9]|00[1-9]))$", + # + # Weeks + # + # Week of the year (e.g., 2008-W35). The hyphen is optional + r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9]))$", + # Week date (e.g., 2008-W35-6). The hyphens are optional + r"^(?P(?P[0-9]{4})-?W(?P5[0-3]|[1-4][0-9]|0[1-9])-?(?P[1-7]))$", + # + # Times + # + # Hours and minutes (e.g., 17:21). The colon is optional + r"^(?P

    ' : '\U0001d4ab', + '\\' : '\U0001d4ac', + '\\' : '\U0000211b', + '\\' : '\U0001d4ae', + '\\' : '\U0001d4af', + '\\' : '\U0001d4b0', + '\\' : '\U0001d4b1', + '\\' : '\U0001d4b2', + '\\' : '\U0001d4b3', + '\\' : '\U0001d4b4', + '\\' : '\U0001d4b5', + '\\' : '\U0001d5ba', + '\\' : '\U0001d5bb', + '\\' : '\U0001d5bc', + '\\' : '\U0001d5bd', + '\\' : '\U0001d5be', + '\\' : '\U0001d5bf', + '\\' : '\U0001d5c0', + '\\' : '\U0001d5c1', + '\\' : '\U0001d5c2', + '\\' : '\U0001d5c3', + '\\' : '\U0001d5c4', + '\\' : '\U0001d5c5', + '\\' : '\U0001d5c6', + '\\' : '\U0001d5c7', + '\\' : '\U0001d5c8', + '\\

    !I7S{BS4i1|@R7s@ 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe new file mode 100644 index 0000000000000000000000000000000000000000..e8bebdba6d8f242244bf397ab067965d47c5093e GIT binary patch literal 108032 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%0AHbpwE%ZM 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 H#ex3;_fXA_ literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/util.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/util.py new file mode 100644 index 00000000..ba58858d --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/util.py @@ -0,0 +1,2025 @@ +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +import codecs +from collections import deque +import contextlib +import csv +from glob import iglob as std_iglob +import io +import json +import logging +import os +import py_compile +import re +import socket +try: + import ssl +except ImportError: # pragma: no cover + ssl = None +import subprocess +import sys +import tarfile +import tempfile +import textwrap + +try: + import threading +except ImportError: # pragma: no cover + import dummy_threading as threading +import time + +from . import DistlibException +from .compat import (string_types, text_type, shutil, raw_input, StringIO, + cache_from_source, urlopen, urljoin, httplib, xmlrpclib, + HTTPHandler, BaseConfigurator, valid_ident, + Container, configparser, URLError, ZipFile, fsdecode, + unquote, urlparse) + +logger = logging.getLogger(__name__) + +# +# Requirement parsing code as per PEP 508 +# + +IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') +VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') +COMPARE_OP = re.compile(r'^(<=?|>=?|={2,3}|[~!]=)\s*') +MARKER_OP = re.compile(r'^((<=?)|(>=?)|={2,3}|[~!]=|in|not\s+in)\s*') +OR = re.compile(r'^or\b\s*') +AND = re.compile(r'^and\b\s*') +NON_SPACE = re.compile(r'(\S+)\s*') +STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') + + +def parse_marker(marker_string): + """ + Parse a marker string and return a dictionary containing a marker expression. + + The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in + the expression grammar, or strings. A string contained in quotes is to be + interpreted as a literal string, and a string not contained in quotes is a + variable (such as os_name). + """ + + def marker_var(remaining): + # either identifier, or literal string + m = IDENTIFIER.match(remaining) + if m: + result = m.groups()[0] + remaining = remaining[m.end():] + elif not remaining: + raise SyntaxError('unexpected end of input') + else: + q = remaining[0] + if q not in '\'"': + raise SyntaxError('invalid expression: %s' % remaining) + oq = '\'"'.replace(q, '') + remaining = remaining[1:] + parts = [q] + while remaining: + # either a string chunk, or oq, or q to terminate + if remaining[0] == q: + break + elif remaining[0] == oq: + parts.append(oq) + remaining = remaining[1:] + else: + m = STRING_CHUNK.match(remaining) + if not m: + raise SyntaxError('error in string literal: %s' % + remaining) + parts.append(m.groups()[0]) + remaining = remaining[m.end():] + else: + s = ''.join(parts) + raise SyntaxError('unterminated string: %s' % s) + parts.append(q) + result = ''.join(parts) + remaining = remaining[1:].lstrip() # skip past closing quote + return result, remaining + + def marker_expr(remaining): + if remaining and remaining[0] == '(': + result, remaining = marker(remaining[1:].lstrip()) + if remaining[0] != ')': + raise SyntaxError('unterminated parenthesis: %s' % remaining) + remaining = remaining[1:].lstrip() + else: + lhs, remaining = marker_var(remaining) + while remaining: + m = MARKER_OP.match(remaining) + if not m: + break + op = m.groups()[0] + remaining = remaining[m.end():] + rhs, remaining = marker_var(remaining) + lhs = {'op': op, 'lhs': lhs, 'rhs': rhs} + result = lhs + return result, remaining + + def marker_and(remaining): + lhs, remaining = marker_expr(remaining) + while remaining: + m = AND.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_expr(remaining) + lhs = {'op': 'and', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + def marker(remaining): + lhs, remaining = marker_and(remaining) + while remaining: + m = OR.match(remaining) + if not m: + break + remaining = remaining[m.end():] + rhs, remaining = marker_and(remaining) + lhs = {'op': 'or', 'lhs': lhs, 'rhs': rhs} + return lhs, remaining + + return marker(marker_string) + + +def parse_requirement(req): + """ + Parse a requirement passed in as a string. Return a Container + whose attributes contain the various parts of the requirement. + """ + remaining = req.strip() + if not remaining or remaining.startswith('#'): + return None + m = IDENTIFIER.match(remaining) + if not m: + raise SyntaxError('name expected: %s' % remaining) + distname = m.groups()[0] + remaining = remaining[m.end():] + extras = mark_expr = versions = uri = None + if remaining and remaining[0] == '[': + i = remaining.find(']', 1) + if i < 0: + raise SyntaxError('unterminated extra: %s' % remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + extras = [] + while s: + m = IDENTIFIER.match(s) + if not m: + raise SyntaxError('malformed extra: %s' % s) + extras.append(m.groups()[0]) + s = s[m.end():] + if not s: + break + if s[0] != ',': + raise SyntaxError('comma expected in extras: %s' % s) + s = s[1:].lstrip() + if not extras: + extras = None + if remaining: + if remaining[0] == '@': + # it's a URI + remaining = remaining[1:].lstrip() + m = NON_SPACE.match(remaining) + if not m: + raise SyntaxError('invalid URI: %s' % remaining) + uri = m.groups()[0] + t = urlparse(uri) + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not (t.scheme and t.netloc): + raise SyntaxError('Invalid URL: %s' % uri) + remaining = remaining[m.end():].lstrip() + else: + + def get_versions(ver_remaining): + """ + Return a list of operator, version tuples if any are + specified, else None. + """ + m = COMPARE_OP.match(ver_remaining) + versions = None + if m: + versions = [] + while True: + op = m.groups()[0] + ver_remaining = ver_remaining[m.end():] + m = VERSION_IDENTIFIER.match(ver_remaining) + if not m: + raise SyntaxError('invalid version: %s' % + ver_remaining) + v = m.groups()[0] + versions.append((op, v)) + ver_remaining = ver_remaining[m.end():] + if not ver_remaining or ver_remaining[0] != ',': + break + ver_remaining = ver_remaining[1:].lstrip() + # Some packages have a trailing comma which would break things + # See issue #148 + if not ver_remaining: + break + m = COMPARE_OP.match(ver_remaining) + if not m: + raise SyntaxError('invalid constraint: %s' % + ver_remaining) + if not versions: + versions = None + return versions, ver_remaining + + if remaining[0] != '(': + versions, remaining = get_versions(remaining) + else: + i = remaining.find(')', 1) + if i < 0: + raise SyntaxError('unterminated parenthesis: %s' % + remaining) + s = remaining[1:i] + remaining = remaining[i + 1:].lstrip() + # As a special diversion from PEP 508, allow a version number + # a.b.c in parentheses as a synonym for ~= a.b.c (because this + # is allowed in earlier PEPs) + if COMPARE_OP.match(s): + versions, _ = get_versions(s) + else: + m = VERSION_IDENTIFIER.match(s) + if not m: + raise SyntaxError('invalid constraint: %s' % s) + v = m.groups()[0] + s = s[m.end():].lstrip() + if s: + raise SyntaxError('invalid constraint: %s' % s) + versions = [('~=', v)] + + if remaining: + if remaining[0] != ';': + raise SyntaxError('invalid requirement: %s' % remaining) + remaining = remaining[1:].lstrip() + + mark_expr, remaining = parse_marker(remaining) + + if remaining and remaining[0] != '#': + raise SyntaxError('unexpected trailing data: %s' % remaining) + + if not versions: + rs = distname + else: + rs = '%s %s' % (distname, ', '.join( + ['%s %s' % con for con in versions])) + return Container(name=distname, + extras=extras, + constraints=versions, + marker=mark_expr, + url=uri, + requirement=rs) + + +def get_resources_dests(resources_root, rules): + """Find destinations for resources files""" + + def get_rel_path(root, path): + # normalizes and returns a lstripped-/-separated path + root = root.replace(os.path.sep, '/') + path = path.replace(os.path.sep, '/') + assert path.startswith(root) + return path[len(root):].lstrip('/') + + destinations = {} + for base, suffix, dest in rules: + prefix = os.path.join(resources_root, base) + for abs_base in iglob(prefix): + abs_glob = os.path.join(abs_base, suffix) + for abs_path in iglob(abs_glob): + resource_file = get_rel_path(resources_root, abs_path) + if dest is None: # remove the entry if it was here + destinations.pop(resource_file, None) + else: + rel_path = get_rel_path(abs_base, abs_path) + rel_dest = dest.replace(os.path.sep, '/').rstrip('/') + destinations[resource_file] = rel_dest + '/' + rel_path + return destinations + + +def in_venv(): + if hasattr(sys, 'real_prefix'): + # virtualenv venvs + result = True + else: + # PEP 405 venvs + result = sys.prefix != getattr(sys, 'base_prefix', sys.prefix) + return result + + +def get_executable(): + # The __PYVENV_LAUNCHER__ dance is apparently no longer needed, as + # changes to the stub launcher mean that sys.executable always points + # to the stub on OS X + # if sys.platform == 'darwin' and ('__PYVENV_LAUNCHER__' + # in os.environ): + # result = os.environ['__PYVENV_LAUNCHER__'] + # else: + # result = sys.executable + # return result + # Avoid normcasing: see issue #143 + # result = os.path.normcase(sys.executable) + result = sys.executable + if not isinstance(result, text_type): + result = fsdecode(result) + return result + + +def proceed(prompt, allowed_chars, error_prompt=None, default=None): + p = prompt + while True: + s = raw_input(p) + p = prompt + if not s and default: + s = default + if s: + c = s[0].lower() + if c in allowed_chars: + break + if error_prompt: + p = '%c: %s\n%s' % (c, error_prompt, prompt) + return c + + +def extract_by_key(d, keys): + if isinstance(keys, string_types): + keys = keys.split() + result = {} + for key in keys: + if key in d: + result[key] = d[key] + return result + + +def read_exports(stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + # Try to load as JSON, falling back on legacy format + data = stream.read() + stream = StringIO(data) + try: + jdata = json.load(stream) + result = jdata['extensions']['python.exports']['exports'] + for group, entries in result.items(): + for k, v in entries.items(): + s = '%s = %s' % (k, v) + entry = get_export_entry(s) + assert entry is not None + entries[k] = entry + return result + except Exception: + stream.seek(0, 0) + + def read_stream(cp, stream): + if hasattr(cp, 'read_file'): + cp.read_file(stream) + else: + cp.readfp(stream) + + cp = configparser.ConfigParser() + try: + read_stream(cp, stream) + except configparser.MissingSectionHeaderError: + stream.close() + data = textwrap.dedent(data) + stream = StringIO(data) + read_stream(cp, stream) + + result = {} + for key in cp.sections(): + result[key] = entries = {} + for name, value in cp.items(key): + s = '%s = %s' % (name, value) + entry = get_export_entry(s) + assert entry is not None + # entry.dist = self + entries[name] = entry + return result + + +def write_exports(exports, stream): + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getwriter('utf-8')(stream) + cp = configparser.ConfigParser() + for k, v in exports.items(): + # TODO check k, v for valid values + cp.add_section(k) + for entry in v.values(): + if entry.suffix is None: + s = entry.prefix + else: + s = '%s:%s' % (entry.prefix, entry.suffix) + if entry.flags: + s = '%s [%s]' % (s, ', '.join(entry.flags)) + cp.set(k, entry.name, s) + cp.write(stream) + + +@contextlib.contextmanager +def tempdir(): + td = tempfile.mkdtemp() + try: + yield td + finally: + shutil.rmtree(td) + + +@contextlib.contextmanager +def chdir(d): + cwd = os.getcwd() + try: + os.chdir(d) + yield + finally: + os.chdir(cwd) + + +@contextlib.contextmanager +def socket_timeout(seconds=15): + cto = socket.getdefaulttimeout() + try: + socket.setdefaulttimeout(seconds) + yield + finally: + socket.setdefaulttimeout(cto) + + +class cached_property(object): + + def __init__(self, func): + self.func = func + # for attr in ('__name__', '__module__', '__doc__'): + # setattr(self, attr, getattr(func, attr, None)) + + def __get__(self, obj, cls=None): + if obj is None: + return self + value = self.func(obj) + object.__setattr__(obj, self.func.__name__, value) + # obj.__dict__[self.func.__name__] = value = self.func(obj) + return value + + +def convert_path(pathname): + """Return 'pathname' as a name that will work on the native filesystem. + + The path is split on '/' and put back together again using the current + directory separator. Needed because filenames in the setup script are + always supplied in Unix style, and have to be converted to the local + convention before we can actually use them in the filesystem. Raises + ValueError on non-Unix-ish systems if 'pathname' either starts or + ends with a slash. + """ + if os.sep == '/': + return pathname + if not pathname: + return pathname + if pathname[0] == '/': + raise ValueError("path '%s' cannot be absolute" % pathname) + if pathname[-1] == '/': + raise ValueError("path '%s' cannot end with '/'" % pathname) + + paths = pathname.split('/') + while os.curdir in paths: + paths.remove(os.curdir) + if not paths: + return os.curdir + return os.path.join(*paths) + + +class FileOperator(object): + + def __init__(self, dry_run=False): + self.dry_run = dry_run + self.ensured = set() + self._init_record() + + def _init_record(self): + self.record = False + self.files_written = set() + self.dirs_created = set() + + def record_as_written(self, path): + if self.record: + self.files_written.add(path) + + def newer(self, source, target): + """Tell if the target is newer than the source. + + Returns true if 'source' exists and is more recently modified than + 'target', or if 'source' exists and 'target' doesn't. + + Returns false if both exist and 'target' is the same age or younger + than 'source'. Raise PackagingFileError if 'source' does not exist. + + Note that this test is not very accurate: files created in the same + second will have the same "age". + """ + if not os.path.exists(source): + raise DistlibException("file '%r' does not exist" % + os.path.abspath(source)) + if not os.path.exists(target): + return True + + return os.stat(source).st_mtime > os.stat(target).st_mtime + + def copy_file(self, infile, outfile, check=True): + """Copy a file respecting dry-run and force flags. + """ + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying %s to %s', infile, outfile) + if not self.dry_run: + msg = None + if check: + if os.path.islink(outfile): + msg = '%s is a symlink' % outfile + elif os.path.exists(outfile) and not os.path.isfile(outfile): + msg = '%s is a non-regular file' % outfile + if msg: + raise ValueError(msg + ' which would be overwritten') + shutil.copyfile(infile, outfile) + self.record_as_written(outfile) + + def copy_stream(self, instream, outfile, encoding=None): + assert not os.path.isdir(outfile) + self.ensure_dir(os.path.dirname(outfile)) + logger.info('Copying stream %s to %s', instream, outfile) + if not self.dry_run: + if encoding is None: + outstream = open(outfile, 'wb') + else: + outstream = codecs.open(outfile, 'w', encoding=encoding) + try: + shutil.copyfileobj(instream, outstream) + finally: + outstream.close() + self.record_as_written(outfile) + + def write_binary_file(self, path, data): + self.ensure_dir(os.path.dirname(path)) + if not self.dry_run: + if os.path.exists(path): + os.remove(path) + with open(path, 'wb') as f: + f.write(data) + self.record_as_written(path) + + def write_text_file(self, path, data, encoding): + self.write_binary_file(path, data.encode(encoding)) + + def set_mode(self, bits, mask, files): + if os.name == 'posix' or (os.name == 'java' and os._name == 'posix'): + # Set the executable bits (owner, group, and world) on + # all the files specified. + for f in files: + if self.dry_run: + logger.info("changing mode of %s", f) + else: + mode = (os.stat(f).st_mode | bits) & mask + logger.info("changing mode of %s to %o", f, mode) + os.chmod(f, mode) + + set_executable_mode = lambda s, f: s.set_mode(0o555, 0o7777, f) + + def ensure_dir(self, path): + path = os.path.abspath(path) + if path not in self.ensured and not os.path.exists(path): + self.ensured.add(path) + d, f = os.path.split(path) + self.ensure_dir(d) + logger.info('Creating %s' % path) + if not self.dry_run: + os.mkdir(path) + if self.record: + self.dirs_created.add(path) + + def byte_compile(self, + path, + optimize=False, + force=False, + prefix=None, + hashed_invalidation=False): + dpath = cache_from_source(path, not optimize) + logger.info('Byte-compiling %s to %s', path, dpath) + if not self.dry_run: + if force or self.newer(path, dpath): + if not prefix: + diagpath = None + else: + assert path.startswith(prefix) + diagpath = path[len(prefix):] + compile_kwargs = {} + if hashed_invalidation and hasattr(py_compile, + 'PycInvalidationMode'): + compile_kwargs[ + 'invalidation_mode'] = py_compile.PycInvalidationMode.CHECKED_HASH + py_compile.compile(path, dpath, diagpath, True, + **compile_kwargs) # raise error + self.record_as_written(dpath) + return dpath + + def ensure_removed(self, path): + if os.path.exists(path): + if os.path.isdir(path) and not os.path.islink(path): + logger.debug('Removing directory tree at %s', path) + if not self.dry_run: + shutil.rmtree(path) + if self.record: + if path in self.dirs_created: + self.dirs_created.remove(path) + else: + if os.path.islink(path): + s = 'link' + else: + s = 'file' + logger.debug('Removing %s %s', s, path) + if not self.dry_run: + os.remove(path) + if self.record: + if path in self.files_written: + self.files_written.remove(path) + + def is_writable(self, path): + result = False + while not result: + if os.path.exists(path): + result = os.access(path, os.W_OK) + break + parent = os.path.dirname(path) + if parent == path: + break + path = parent + return result + + def commit(self): + """ + Commit recorded changes, turn off recording, return + changes. + """ + assert self.record + result = self.files_written, self.dirs_created + self._init_record() + return result + + def rollback(self): + if not self.dry_run: + for f in list(self.files_written): + if os.path.exists(f): + os.remove(f) + # dirs should all be empty now, except perhaps for + # __pycache__ subdirs + # reverse so that subdirs appear before their parents + dirs = sorted(self.dirs_created, reverse=True) + for d in dirs: + flist = os.listdir(d) + if flist: + assert flist == ['__pycache__'] + sd = os.path.join(d, flist[0]) + os.rmdir(sd) + os.rmdir(d) # should fail if non-empty + self._init_record() + + +def resolve(module_name, dotted_path): + if module_name in sys.modules: + mod = sys.modules[module_name] + else: + mod = __import__(module_name) + if dotted_path is None: + result = mod + else: + parts = dotted_path.split('.') + result = getattr(mod, parts.pop(0)) + for p in parts: + result = getattr(result, p) + return result + + +class ExportEntry(object): + + def __init__(self, name, prefix, suffix, flags): + self.name = name + self.prefix = prefix + self.suffix = suffix + self.flags = flags + + @cached_property + def value(self): + return resolve(self.prefix, self.suffix) + + def __repr__(self): # pragma: no cover + return '' % (self.name, self.prefix, + self.suffix, self.flags) + + def __eq__(self, other): + if not isinstance(other, ExportEntry): + result = False + else: + result = (self.name == other.name and self.prefix == other.prefix + and self.suffix == other.suffix + and self.flags == other.flags) + return result + + __hash__ = object.__hash__ + + +ENTRY_RE = re.compile( + r'''(?P([^\[]\S*)) + \s*=\s*(?P(\w+)([:\.]\w+)*) + \s*(\[\s*(?P[\w-]+(=\w+)?(,\s*\w+(=\w+)?)*)\s*\])? + ''', re.VERBOSE) + + +def get_export_entry(specification): + m = ENTRY_RE.search(specification) + if not m: + result = None + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + else: + d = m.groupdict() + name = d['name'] + path = d['callable'] + colons = path.count(':') + if colons == 0: + prefix, suffix = path, None + else: + if colons != 1: + raise DistlibException("Invalid specification " + "'%s'" % specification) + prefix, suffix = path.split(':') + flags = d['flags'] + if flags is None: + if '[' in specification or ']' in specification: + raise DistlibException("Invalid specification " + "'%s'" % specification) + flags = [] + else: + flags = [f.strip() for f in flags.split(',')] + result = ExportEntry(name, prefix, suffix, flags) + return result + + +def get_cache_base(suffix=None): + """ + Return the default base location for distlib caches. If the directory does + not exist, it is created. Use the suffix provided for the base directory, + and default to '.distlib' if it isn't provided. + + On Windows, if LOCALAPPDATA is defined in the environment, then it is + assumed to be a directory, and will be the parent directory of the result. + On POSIX, and on Windows if LOCALAPPDATA is not defined, the user's home + directory - using os.expanduser('~') - will be the parent directory of + the result. + + The result is just the directory '.distlib' in the parent directory as + determined above, or with the name specified with ``suffix``. + """ + if suffix is None: + suffix = '.distlib' + if os.name == 'nt' and 'LOCALAPPDATA' in os.environ: + result = os.path.expandvars('$localappdata') + else: + # Assume posix, or old Windows + result = os.path.expanduser('~') + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if os.path.isdir(result): + usable = os.access(result, os.W_OK) + if not usable: + logger.warning('Directory exists but is not writable: %s', result) + else: + try: + os.makedirs(result) + usable = True + except OSError: + logger.warning('Unable to create %s', result, exc_info=True) + usable = False + if not usable: + result = tempfile.mkdtemp() + logger.warning('Default location unusable, using %s', result) + return os.path.join(result, suffix) + + +def path_to_cache_dir(path): + """ + Convert an absolute path to a directory name for use in a cache. + + The algorithm used is: + + #. On Windows, any ``':'`` in the drive is replaced with ``'---'``. + #. Any occurrence of ``os.sep`` is replaced with ``'--'``. + #. ``'.cache'`` is appended. + """ + d, p = os.path.splitdrive(os.path.abspath(path)) + if d: + d = d.replace(':', '---') + p = p.replace(os.sep, '--') + return d + p + '.cache' + + +def ensure_slash(s): + if not s.endswith('/'): + return s + '/' + return s + + +def parse_credentials(netloc): + username = password = None + if '@' in netloc: + prefix, netloc = netloc.rsplit('@', 1) + if ':' not in prefix: + username = prefix + else: + username, password = prefix.split(':', 1) + if username: + username = unquote(username) + if password: + password = unquote(password) + return username, password, netloc + + +def get_process_umask(): + result = os.umask(0o22) + os.umask(result) + return result + + +def is_string_sequence(seq): + result = True + i = None + for i, s in enumerate(seq): + if not isinstance(s, string_types): + result = False + break + assert i is not None + return result + + +PROJECT_NAME_AND_VERSION = re.compile( + '([a-z0-9_]+([.-][a-z_][a-z0-9_]*)*)-' + '([a-z0-9_.+-]+)', re.I) +PYTHON_VERSION = re.compile(r'-py(\d\.?\d?)') + + +def split_filename(filename, project_name=None): + """ + Extract name, version, python version from a filename (no extension) + + Return name, version, pyver or None + """ + result = None + pyver = None + filename = unquote(filename).replace(' ', '-') + m = PYTHON_VERSION.search(filename) + if m: + pyver = m.group(1) + filename = filename[:m.start()] + if project_name and len(filename) > len(project_name) + 1: + m = re.match(re.escape(project_name) + r'\b', filename) + if m: + n = m.end() + result = filename[:n], filename[n + 1:], pyver + if result is None: + m = PROJECT_NAME_AND_VERSION.match(filename) + if m: + result = m.group(1), m.group(3), pyver + return result + + +# Allow spaces in name because of legacy dists like "Twisted Core" +NAME_VERSION_RE = re.compile(r'(?P[\w .-]+)\s*' + r'\(\s*(?P[^\s)]+)\)$') + + +def parse_name_and_version(p): + """ + A utility method used to get name and version from a string. + + From e.g. a Provides-Dist value. + + :param p: A value in a form 'foo (1.0)' + :return: The name and version as a tuple. + """ + m = NAME_VERSION_RE.match(p) + if not m: + raise DistlibException('Ill-formed name/version string: \'%s\'' % p) + d = m.groupdict() + return d['name'].strip().lower(), d['ver'] + + +def get_extras(requested, available): + result = set() + requested = set(requested or []) + available = set(available or []) + if '*' in requested: + requested.remove('*') + result |= available + for r in requested: + if r == '-': + result.add(r) + elif r.startswith('-'): + unwanted = r[1:] + if unwanted not in available: + logger.warning('undeclared extra: %s' % unwanted) + if unwanted in result: + result.remove(unwanted) + else: + if r not in available: + logger.warning('undeclared extra: %s' % r) + result.add(r) + return result + + +# +# Extended metadata functionality +# + + +def _get_external_data(url): + result = {} + try: + # urlopen might fail if it runs into redirections, + # because of Python issue #13696. Fixed in locators + # using a custom redirect handler. + resp = urlopen(url) + headers = resp.info() + ct = headers.get('Content-Type') + if not ct.startswith('application/json'): + logger.debug('Unexpected response for JSON request: %s', ct) + else: + reader = codecs.getreader('utf-8')(resp) + # data = reader.read().decode('utf-8') + # result = json.loads(data) + result = json.load(reader) + except Exception as e: + logger.exception('Failed to get external data for %s: %s', url, e) + return result + + +_external_data_base_url = 'https://www.red-dove.com/pypi/projects/' + + +def get_project_data(name): + url = '%s/%s/project.json' % (name[0].upper(), name) + url = urljoin(_external_data_base_url, url) + result = _get_external_data(url) + return result + + +def get_package_data(name, version): + url = '%s/%s/package-%s.json' % (name[0].upper(), name, version) + url = urljoin(_external_data_base_url, url) + return _get_external_data(url) + + +class Cache(object): + """ + A class implementing a cache for resources that need to live in the file system + e.g. shared libraries. This class was moved from resources to here because it + could be used by other modules, e.g. the wheel module. + """ + + def __init__(self, base): + """ + Initialise an instance. + + :param base: The base directory where the cache should be located. + """ + # we use 'isdir' instead of 'exists', because we want to + # fail if there's a file with that name + if not os.path.isdir(base): # pragma: no cover + os.makedirs(base) + if (os.stat(base).st_mode & 0o77) != 0: + logger.warning('Directory \'%s\' is not private', base) + self.base = os.path.abspath(os.path.normpath(base)) + + def prefix_to_dir(self, prefix): + """ + Converts a resource prefix to a directory name in the cache. + """ + return path_to_cache_dir(prefix) + + def clear(self): + """ + Clear the cache. + """ + not_removed = [] + for fn in os.listdir(self.base): + fn = os.path.join(self.base, fn) + try: + if os.path.islink(fn) or os.path.isfile(fn): + os.remove(fn) + elif os.path.isdir(fn): + shutil.rmtree(fn) + except Exception: + not_removed.append(fn) + return not_removed + + +class EventMixin(object): + """ + A very simple publish/subscribe system. + """ + + def __init__(self): + self._subscribers = {} + + def add(self, event, subscriber, append=True): + """ + Add a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be added (and called when the + event is published). + :param append: Whether to append or prepend the subscriber to an + existing subscriber list for the event. + """ + subs = self._subscribers + if event not in subs: + subs[event] = deque([subscriber]) + else: + sq = subs[event] + if append: + sq.append(subscriber) + else: + sq.appendleft(subscriber) + + def remove(self, event, subscriber): + """ + Remove a subscriber for an event. + + :param event: The name of an event. + :param subscriber: The subscriber to be removed. + """ + subs = self._subscribers + if event not in subs: + raise ValueError('No subscribers: %r' % event) + subs[event].remove(subscriber) + + def get_subscribers(self, event): + """ + Return an iterator for the subscribers for an event. + :param event: The event to return subscribers for. + """ + return iter(self._subscribers.get(event, ())) + + def publish(self, event, *args, **kwargs): + """ + Publish a event and return a list of values returned by its + subscribers. + + :param event: The event to publish. + :param args: The positional arguments to pass to the event's + subscribers. + :param kwargs: The keyword arguments to pass to the event's + subscribers. + """ + result = [] + for subscriber in self.get_subscribers(event): + try: + value = subscriber(event, *args, **kwargs) + except Exception: + logger.exception('Exception during event publication') + value = None + result.append(value) + logger.debug('publish %s: args = %s, kwargs = %s, result = %s', event, + args, kwargs, result) + return result + + +# +# Simple sequencing +# +class Sequencer(object): + + def __init__(self): + self._preds = {} + self._succs = {} + self._nodes = set() # nodes with no preds/succs + + def add_node(self, node): + self._nodes.add(node) + + def remove_node(self, node, edges=False): + if node in self._nodes: + self._nodes.remove(node) + if edges: + for p in set(self._preds.get(node, ())): + self.remove(p, node) + for s in set(self._succs.get(node, ())): + self.remove(node, s) + # Remove empties + for k, v in list(self._preds.items()): + if not v: + del self._preds[k] + for k, v in list(self._succs.items()): + if not v: + del self._succs[k] + + def add(self, pred, succ): + assert pred != succ + self._preds.setdefault(succ, set()).add(pred) + self._succs.setdefault(pred, set()).add(succ) + + def remove(self, pred, succ): + assert pred != succ + try: + preds = self._preds[succ] + succs = self._succs[pred] + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of anything' % succ) + try: + preds.remove(pred) + succs.remove(succ) + except KeyError: # pragma: no cover + raise ValueError('%r not a successor of %r' % (succ, pred)) + + def is_step(self, step): + return (step in self._preds or step in self._succs + or step in self._nodes) + + def get_steps(self, final): + if not self.is_step(final): + raise ValueError('Unknown: %r' % final) + result = [] + todo = [] + seen = set() + todo.append(final) + while todo: + step = todo.pop(0) + if step in seen: + # if a step was already seen, + # move it to the end (so it will appear earlier + # when reversed on return) ... but not for the + # final step, as that would be confusing for + # users + if step != final: + result.remove(step) + result.append(step) + else: + seen.add(step) + result.append(step) + preds = self._preds.get(step, ()) + todo.extend(preds) + return reversed(result) + + @property + def strong_connections(self): + # http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm + index_counter = [0] + stack = [] + lowlinks = {} + index = {} + result = [] + + graph = self._succs + + def strongconnect(node): + # set the depth index for this node to the smallest unused index + index[node] = index_counter[0] + lowlinks[node] = index_counter[0] + index_counter[0] += 1 + stack.append(node) + + # Consider successors + try: + successors = graph[node] + except Exception: + successors = [] + for successor in successors: + if successor not in lowlinks: + # Successor has not yet been visited + strongconnect(successor) + lowlinks[node] = min(lowlinks[node], lowlinks[successor]) + elif successor in stack: + # the successor is in the stack and hence in the current + # strongly connected component (SCC) + lowlinks[node] = min(lowlinks[node], index[successor]) + + # If `node` is a root node, pop the stack and generate an SCC + if lowlinks[node] == index[node]: + connected_component = [] + + while True: + successor = stack.pop() + connected_component.append(successor) + if successor == node: + break + component = tuple(connected_component) + # storing the result + result.append(component) + + for node in graph: + if node not in lowlinks: + strongconnect(node) + + return result + + @property + def dot(self): + result = ['digraph G {'] + for succ in self._preds: + preds = self._preds[succ] + for pred in preds: + result.append(' %s -> %s;' % (pred, succ)) + for node in self._nodes: + result.append(' %s;' % node) + result.append('}') + return '\n'.join(result) + + +# +# Unarchiving functionality for zip, tar, tgz, tbz, whl +# + +ARCHIVE_EXTENSIONS = ('.tar.gz', '.tar.bz2', '.tar', '.zip', '.tgz', '.tbz', + '.whl') + + +def unarchive(archive_filename, dest_dir, format=None, check=True): + + def check_path(path): + if not isinstance(path, text_type): + path = path.decode('utf-8') + p = os.path.abspath(os.path.join(dest_dir, path)) + if not p.startswith(dest_dir) or p[plen] != os.sep: + raise ValueError('path outside destination: %r' % p) + + dest_dir = os.path.abspath(dest_dir) + plen = len(dest_dir) + archive = None + if format is None: + if archive_filename.endswith(('.zip', '.whl')): + format = 'zip' + elif archive_filename.endswith(('.tar.gz', '.tgz')): + format = 'tgz' + mode = 'r:gz' + elif archive_filename.endswith(('.tar.bz2', '.tbz')): + format = 'tbz' + mode = 'r:bz2' + elif archive_filename.endswith('.tar'): + format = 'tar' + mode = 'r' + else: # pragma: no cover + raise ValueError('Unknown format for %r' % archive_filename) + try: + if format == 'zip': + archive = ZipFile(archive_filename, 'r') + if check: + names = archive.namelist() + for name in names: + check_path(name) + else: + archive = tarfile.open(archive_filename, mode) + if check: + names = archive.getnames() + for name in names: + check_path(name) + if format != 'zip' and sys.version_info[0] < 3: + # See Python issue 17153. If the dest path contains Unicode, + # tarfile extraction fails on Python 2.x if a member path name + # contains non-ASCII characters - it leads to an implicit + # bytes -> unicode conversion using ASCII to decode. + for tarinfo in archive.getmembers(): + if not isinstance(tarinfo.name, text_type): + tarinfo.name = tarinfo.name.decode('utf-8') + + # Limit extraction of dangerous items, if this Python + # allows it easily. If not, just trust the input. + # See: https://docs.python.org/3/library/tarfile.html#extraction-filters + def extraction_filter(member, path): + """Run tarfile.tar_filter, but raise the expected ValueError""" + # This is only called if the current Python has tarfile filters + try: + return tarfile.tar_filter(member, path) + except tarfile.FilterError as exc: + raise ValueError(str(exc)) + + archive.extraction_filter = extraction_filter + + archive.extractall(dest_dir) + + finally: + if archive: + archive.close() + + +def zip_dir(directory): + """zip a directory tree into a BytesIO object""" + result = io.BytesIO() + dlen = len(directory) + with ZipFile(result, "w") as zf: + for root, dirs, files in os.walk(directory): + for name in files: + full = os.path.join(root, name) + rel = root[dlen:] + dest = os.path.join(rel, name) + zf.write(full, dest) + return result + + +# +# Simple progress bar +# + +UNITS = ('', 'K', 'M', 'G', 'T', 'P') + + +class Progress(object): + unknown = 'UNKNOWN' + + def __init__(self, minval=0, maxval=100): + assert maxval is None or maxval >= minval + self.min = self.cur = minval + self.max = maxval + self.started = None + self.elapsed = 0 + self.done = False + + def update(self, curval): + assert self.min <= curval + assert self.max is None or curval <= self.max + self.cur = curval + now = time.time() + if self.started is None: + self.started = now + else: + self.elapsed = now - self.started + + def increment(self, incr): + assert incr >= 0 + self.update(self.cur + incr) + + def start(self): + self.update(self.min) + return self + + def stop(self): + if self.max is not None: + self.update(self.max) + self.done = True + + @property + def maximum(self): + return self.unknown if self.max is None else self.max + + @property + def percentage(self): + if self.done: + result = '100 %' + elif self.max is None: + result = ' ?? %' + else: + v = 100.0 * (self.cur - self.min) / (self.max - self.min) + result = '%3d %%' % v + return result + + def format_duration(self, duration): + if (duration <= 0) and self.max is None or self.cur == self.min: + result = '??:??:??' + # elif duration < 1: + # result = '--:--:--' + else: + result = time.strftime('%H:%M:%S', time.gmtime(duration)) + return result + + @property + def ETA(self): + if self.done: + prefix = 'Done' + t = self.elapsed + # import pdb; pdb.set_trace() + else: + prefix = 'ETA ' + if self.max is None: + t = -1 + elif self.elapsed == 0 or (self.cur == self.min): + t = 0 + else: + # import pdb; pdb.set_trace() + t = float(self.max - self.min) + t /= self.cur - self.min + t = (t - 1) * self.elapsed + return '%s: %s' % (prefix, self.format_duration(t)) + + @property + def speed(self): + if self.elapsed == 0: + result = 0.0 + else: + result = (self.cur - self.min) / self.elapsed + for unit in UNITS: + if result < 1000: + break + result /= 1000.0 + return '%d %sB/s' % (result, unit) + + +# +# Glob functionality +# + +RICH_GLOB = re.compile(r'\{([^}]*)\}') +_CHECK_RECURSIVE_GLOB = re.compile(r'[^/\\,{]\*\*|\*\*[^/\\,}]') +_CHECK_MISMATCH_SET = re.compile(r'^[^{]*\}|\{[^}]*$') + + +def iglob(path_glob): + """Extended globbing function that supports ** and {opt1,opt2,opt3}.""" + if _CHECK_RECURSIVE_GLOB.search(path_glob): + msg = """invalid glob %r: recursive glob "**" must be used alone""" + raise ValueError(msg % path_glob) + if _CHECK_MISMATCH_SET.search(path_glob): + msg = """invalid glob %r: mismatching set marker '{' or '}'""" + raise ValueError(msg % path_glob) + return _iglob(path_glob) + + +def _iglob(path_glob): + rich_path_glob = RICH_GLOB.split(path_glob, 1) + if len(rich_path_glob) > 1: + assert len(rich_path_glob) == 3, rich_path_glob + prefix, set, suffix = rich_path_glob + for item in set.split(','): + for path in _iglob(''.join((prefix, item, suffix))): + yield path + else: + if '**' not in path_glob: + for item in std_iglob(path_glob): + yield item + else: + prefix, radical = path_glob.split('**', 1) + if prefix == '': + prefix = '.' + if radical == '': + radical = '*' + else: + # we support both + radical = radical.lstrip('/') + radical = radical.lstrip('\\') + for path, dir, files in os.walk(prefix): + path = os.path.normpath(path) + for fn in _iglob(os.path.join(path, radical)): + yield fn + + +if ssl: + from .compat import (HTTPSHandler as BaseHTTPSHandler, match_hostname, + CertificateError) + + # + # HTTPSConnection which verifies certificates/matches domains + # + + class HTTPSConnection(httplib.HTTPSConnection): + ca_certs = None # set this to the path to the certs file (.pem) + check_domain = True # only used if ca_certs is not None + + # noinspection PyPropertyAccess + def connect(self): + sock = socket.create_connection((self.host, self.port), + self.timeout) + if getattr(self, '_tunnel_host', False): + self.sock = sock + self._tunnel() + + context = ssl.SSLContext(ssl.PROTOCOL_SSLv23) + if hasattr(ssl, 'OP_NO_SSLv2'): + context.options |= ssl.OP_NO_SSLv2 + if getattr(self, 'cert_file', None): + context.load_cert_chain(self.cert_file, self.key_file) + kwargs = {} + if self.ca_certs: + context.verify_mode = ssl.CERT_REQUIRED + context.load_verify_locations(cafile=self.ca_certs) + if getattr(ssl, 'HAS_SNI', False): + kwargs['server_hostname'] = self.host + + self.sock = context.wrap_socket(sock, **kwargs) + if self.ca_certs and self.check_domain: + try: + match_hostname(self.sock.getpeercert(), self.host) + logger.debug('Host verified: %s', self.host) + except CertificateError: # pragma: no cover + self.sock.shutdown(socket.SHUT_RDWR) + self.sock.close() + raise + + class HTTPSHandler(BaseHTTPSHandler): + + def __init__(self, ca_certs, check_domain=True): + BaseHTTPSHandler.__init__(self) + self.ca_certs = ca_certs + self.check_domain = check_domain + + def _conn_maker(self, *args, **kwargs): + """ + This is called to create a connection instance. Normally you'd + pass a connection class to do_open, but it doesn't actually check for + a class, and just expects a callable. As long as we behave just as a + constructor would have, we should be OK. If it ever changes so that + we *must* pass a class, we'll create an UnsafeHTTPSConnection class + which just sets check_domain to False in the class definition, and + choose which one to pass to do_open. + """ + result = HTTPSConnection(*args, **kwargs) + if self.ca_certs: + result.ca_certs = self.ca_certs + result.check_domain = self.check_domain + return result + + def https_open(self, req): + try: + return self.do_open(self._conn_maker, req) + except URLError as e: + if 'certificate verify failed' in str(e.reason): + raise CertificateError( + 'Unable to verify server certificate ' + 'for %s' % req.host) + else: + raise + + # + # To prevent against mixing HTTP traffic with HTTPS (examples: A Man-In-The- + # Middle proxy using HTTP listens on port 443, or an index mistakenly serves + # HTML containing a http://xyz link when it should be https://xyz), + # you can use the following handler class, which does not allow HTTP traffic. + # + # It works by inheriting from HTTPHandler - so build_opener won't add a + # handler for HTTP itself. + # + class HTTPSOnlyHandler(HTTPSHandler, HTTPHandler): + + def http_open(self, req): + raise URLError( + 'Unexpected HTTP request on what should be a secure ' + 'connection: %s' % req) + + +# +# XML-RPC with timeouts +# +class Transport(xmlrpclib.Transport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.Transport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, x509 = self.get_host_info(host) + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPConnection(h) + return self._connection[1] + + +if ssl: + + class SafeTransport(xmlrpclib.SafeTransport): + + def __init__(self, timeout, use_datetime=0): + self.timeout = timeout + xmlrpclib.SafeTransport.__init__(self, use_datetime) + + def make_connection(self, host): + h, eh, kwargs = self.get_host_info(host) + if not kwargs: + kwargs = {} + kwargs['timeout'] = self.timeout + if not self._connection or host != self._connection[0]: + self._extra_headers = eh + self._connection = host, httplib.HTTPSConnection( + h, None, **kwargs) + return self._connection[1] + + +class ServerProxy(xmlrpclib.ServerProxy): + + def __init__(self, uri, **kwargs): + self.timeout = timeout = kwargs.pop('timeout', None) + # The above classes only come into play if a timeout + # is specified + if timeout is not None: + # scheme = splittype(uri) # deprecated as of Python 3.8 + scheme = urlparse(uri)[0] + use_datetime = kwargs.get('use_datetime', 0) + if scheme == 'https': + tcls = SafeTransport + else: + tcls = Transport + kwargs['transport'] = t = tcls(timeout, use_datetime=use_datetime) + self.transport = t + xmlrpclib.ServerProxy.__init__(self, uri, **kwargs) + + +# +# CSV functionality. This is provided because on 2.x, the csv module can't +# handle Unicode. However, we need to deal with Unicode in e.g. RECORD files. +# + + +def _csv_open(fn, mode, **kwargs): + if sys.version_info[0] < 3: + mode += 'b' + else: + kwargs['newline'] = '' + # Python 3 determines encoding from locale. Force 'utf-8' + # file encoding to match other forced utf-8 encoding + kwargs['encoding'] = 'utf-8' + return open(fn, mode, **kwargs) + + +class CSVBase(object): + defaults = { + 'delimiter': str(','), # The strs are used because we need native + 'quotechar': str('"'), # str in the csv API (2.x won't take + 'lineterminator': str('\n') # Unicode) + } + + def __enter__(self): + return self + + def __exit__(self, *exc_info): + self.stream.close() + + +class CSVReader(CSVBase): + + def __init__(self, **kwargs): + if 'stream' in kwargs: + stream = kwargs['stream'] + if sys.version_info[0] >= 3: + # needs to be a text stream + stream = codecs.getreader('utf-8')(stream) + self.stream = stream + else: + self.stream = _csv_open(kwargs['path'], 'r') + self.reader = csv.reader(self.stream, **self.defaults) + + def __iter__(self): + return self + + def next(self): + result = next(self.reader) + if sys.version_info[0] < 3: + for i, item in enumerate(result): + if not isinstance(item, text_type): + result[i] = item.decode('utf-8') + return result + + __next__ = next + + +class CSVWriter(CSVBase): + + def __init__(self, fn, **kwargs): + self.stream = _csv_open(fn, 'w') + self.writer = csv.writer(self.stream, **self.defaults) + + def writerow(self, row): + if sys.version_info[0] < 3: + r = [] + for item in row: + if isinstance(item, text_type): + item = item.encode('utf-8') + r.append(item) + row = r + self.writer.writerow(row) + + +# +# Configurator functionality +# + + +class Configurator(BaseConfigurator): + + value_converters = dict(BaseConfigurator.value_converters) + value_converters['inc'] = 'inc_convert' + + def __init__(self, config, base=None): + super(Configurator, self).__init__(config) + self.base = base or os.getcwd() + + def configure_custom(self, config): + + def convert(o): + if isinstance(o, (list, tuple)): + result = type(o)([convert(i) for i in o]) + elif isinstance(o, dict): + if '()' in o: + result = self.configure_custom(o) + else: + result = {} + for k in o: + result[k] = convert(o[k]) + else: + result = self.convert(o) + return result + + c = config.pop('()') + if not callable(c): + c = self.resolve(c) + props = config.pop('.', None) + # Check for valid identifiers + args = config.pop('[]', ()) + if args: + args = tuple([convert(o) for o in args]) + items = [(k, convert(config[k])) for k in config if valid_ident(k)] + kwargs = dict(items) + result = c(*args, **kwargs) + if props: + for n, v in props.items(): + setattr(result, n, convert(v)) + return result + + def __getitem__(self, key): + result = self.config[key] + if isinstance(result, dict) and '()' in result: + self.config[key] = result = self.configure_custom(result) + return result + + def inc_convert(self, value): + """Default converter for the inc:// protocol.""" + if not os.path.isabs(value): + value = os.path.join(self.base, value) + with codecs.open(value, 'r', encoding='utf-8') as f: + result = json.load(f) + return result + + +class SubprocessMixin(object): + """ + Mixin for running subprocesses and capturing their output + """ + + def __init__(self, verbose=False, progress=None): + self.verbose = verbose + self.progress = progress + + def reader(self, stream, context): + """ + Read lines from a subprocess' output stream and either pass to a progress + callable (if specified) or write progress information to sys.stderr. + """ + progress = self.progress + verbose = self.verbose + while True: + s = stream.readline() + if not s: + break + if progress is not None: + progress(s, context) + else: + if not verbose: + sys.stderr.write('.') + else: + sys.stderr.write(s.decode('utf-8')) + sys.stderr.flush() + stream.close() + + def run_command(self, cmd, **kwargs): + p = subprocess.Popen(cmd, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + **kwargs) + t1 = threading.Thread(target=self.reader, args=(p.stdout, 'stdout')) + t1.start() + t2 = threading.Thread(target=self.reader, args=(p.stderr, 'stderr')) + t2.start() + p.wait() + t1.join() + t2.join() + if self.progress is not None: + self.progress('done.', 'main') + elif self.verbose: + sys.stderr.write('done.\n') + return p + + +def normalize_name(name): + """Normalize a python package name a la PEP 503""" + # https://www.python.org/dev/peps/pep-0503/#normalized-names + return re.sub('[-_.]+', '-', name).lower() + + +# def _get_pypirc_command(): +# """ +# Get the distutils command for interacting with PyPI configurations. +# :return: the command. +# """ +# from distutils.core import Distribution +# from distutils.config import PyPIRCCommand +# d = Distribution() +# return PyPIRCCommand(d) + + +class PyPIRCFile(object): + + DEFAULT_REPOSITORY = 'https://upload.pypi.org/legacy/' + DEFAULT_REALM = 'pypi' + + def __init__(self, fn=None, url=None): + if fn is None: + fn = os.path.join(os.path.expanduser('~'), '.pypirc') + self.filename = fn + self.url = url + + def read(self): + result = {} + + if os.path.exists(self.filename): + repository = self.url or self.DEFAULT_REPOSITORY + + config = configparser.RawConfigParser() + config.read(self.filename) + sections = config.sections() + if 'distutils' in sections: + # let's get the list of servers + index_servers = config.get('distutils', 'index-servers') + _servers = [ + server.strip() for server in index_servers.split('\n') + if server.strip() != '' + ] + if _servers == []: + # nothing set, let's try to get the default pypi + if 'pypi' in sections: + _servers = ['pypi'] + else: + for server in _servers: + result = {'server': server} + result['username'] = config.get(server, 'username') + + # optional params + for key, default in (('repository', + self.DEFAULT_REPOSITORY), + ('realm', self.DEFAULT_REALM), + ('password', None)): + if config.has_option(server, key): + result[key] = config.get(server, key) + else: + result[key] = default + + # work around people having "repository" for the "pypi" + # section of their config set to the HTTP (rather than + # HTTPS) URL + if (server == 'pypi' and repository + in (self.DEFAULT_REPOSITORY, 'pypi')): + result['repository'] = self.DEFAULT_REPOSITORY + elif (result['server'] != repository + and result['repository'] != repository): + result = {} + elif 'server-login' in sections: + # old format + server = 'server-login' + if config.has_option(server, 'repository'): + repository = config.get(server, 'repository') + else: + repository = self.DEFAULT_REPOSITORY + result = { + 'username': config.get(server, 'username'), + 'password': config.get(server, 'password'), + 'repository': repository, + 'server': server, + 'realm': self.DEFAULT_REALM + } + return result + + def update(self, username, password): + # import pdb; pdb.set_trace() + config = configparser.RawConfigParser() + fn = self.filename + config.read(fn) + if not config.has_section('pypi'): + config.add_section('pypi') + config.set('pypi', 'username', username) + config.set('pypi', 'password', password) + with open(fn, 'w') as f: + config.write(f) + + +def _load_pypirc(index): + """ + Read the PyPI access configuration as supported by distutils. + """ + return PyPIRCFile(url=index.url).read() + + +def _store_pypirc(index): + PyPIRCFile().update(index.username, index.password) + + +# +# get_platform()/get_host_platform() copied from Python 3.10.a0 source, with some minor +# tweaks +# + + +def get_host_platform(): + """Return a string that identifies the current platform. This is used mainly to + distinguish platform-specific build directories and platform-specific built + distributions. Typically includes the OS name and version and the + architecture (as supplied by 'os.uname()'), although the exact information + included depends on the OS; eg. on Linux, the kernel version isn't + particularly important. + + Examples of returned values: + linux-i586 + linux-alpha (?) + solaris-2.6-sun4u + + Windows will return one of: + win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win32 (all others - specifically, sys.platform is returned) + + For other non-POSIX platforms, currently just returns 'sys.platform'. + + """ + if os.name == 'nt': + if 'amd64' in sys.version.lower(): + return 'win-amd64' + if '(arm)' in sys.version.lower(): + return 'win-arm32' + if '(arm64)' in sys.version.lower(): + return 'win-arm64' + return sys.platform + + # Set for cross builds explicitly + if "_PYTHON_HOST_PLATFORM" in os.environ: + return os.environ["_PYTHON_HOST_PLATFORM"] + + if os.name != 'posix' or not hasattr(os, 'uname'): + # XXX what about the architecture? NT is Intel or Alpha, + # Mac OS is M68k or PPC, etc. + return sys.platform + + # Try to distinguish various flavours of Unix + + (osname, host, release, version, machine) = os.uname() + + # Convert the OS name to lowercase, remove '/' characters, and translate + # spaces (for "Power Macintosh") + osname = osname.lower().replace('/', '') + machine = machine.replace(' ', '_').replace('/', '-') + + if osname[:5] == 'linux': + # At least on Linux/Intel, 'machine' is the processor -- + # i386, etc. + # XXX what about Alpha, SPARC, etc? + return "%s-%s" % (osname, machine) + + elif osname[:5] == 'sunos': + if release[0] >= '5': # SunOS 5 == Solaris 2 + osname = 'solaris' + release = '%d.%s' % (int(release[0]) - 3, release[2:]) + # We can't use 'platform.architecture()[0]' because a + # bootstrap problem. We use a dict to get an error + # if some suspicious happens. + bitness = {2147483647: '32bit', 9223372036854775807: '64bit'} + machine += '.%s' % bitness[sys.maxsize] + # fall through to standard osname-release-machine representation + elif osname[:3] == 'aix': + from _aix_support import aix_platform + return aix_platform() + elif osname[:6] == 'cygwin': + osname = 'cygwin' + rel_re = re.compile(r'[\d.]+', re.ASCII) + m = rel_re.match(release) + if m: + release = m.group() + elif osname[:6] == 'darwin': + import _osx_support + try: + from distutils import sysconfig + except ImportError: + import sysconfig + osname, release, machine = _osx_support.get_platform_osx( + sysconfig.get_config_vars(), osname, release, machine) + + return '%s-%s-%s' % (osname, release, machine) + + +_TARGET_TO_PLAT = { + 'x86': 'win32', + 'x64': 'win-amd64', + 'arm': 'win-arm32', +} + + +def get_platform(): + if os.name != 'nt': + return get_host_platform() + cross_compilation_target = os.environ.get('VSCMD_ARG_TGT_ARCH') + if cross_compilation_target not in _TARGET_TO_PLAT: + return get_host_platform() + return _TARGET_TO_PLAT[cross_compilation_target] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/version.py b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/version.py new file mode 100644 index 00000000..14171ac9 --- /dev/null +++ b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/version.py @@ -0,0 +1,751 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2012-2023 The Python Software Foundation. +# See LICENSE.txt and CONTRIBUTORS.txt. +# +""" +Implementation of a flexible versioning scheme providing support for PEP-440, +setuptools-compatible and semantic versioning. +""" + +import logging +import re + +from .compat import string_types +from .util import parse_requirement + +__all__ = ['NormalizedVersion', 'NormalizedMatcher', + 'LegacyVersion', 'LegacyMatcher', + 'SemanticVersion', 'SemanticMatcher', + 'UnsupportedVersionError', 'get_scheme'] + +logger = logging.getLogger(__name__) + + +class UnsupportedVersionError(ValueError): + """This is an unsupported version.""" + pass + + +class Version(object): + def __init__(self, s): + self._string = s = s.strip() + self._parts = parts = self.parse(s) + assert isinstance(parts, tuple) + assert len(parts) > 0 + + def parse(self, s): + raise NotImplementedError('please implement in a subclass') + + def _check_compatible(self, other): + if type(self) != type(other): + raise TypeError('cannot compare %r and %r' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + def __lt__(self, other): + self._check_compatible(other) + return self._parts < other._parts + + def __gt__(self, other): + return not (self.__lt__(other) or self.__eq__(other)) + + def __le__(self, other): + return self.__lt__(other) or self.__eq__(other) + + def __ge__(self, other): + return self.__gt__(other) or self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self._parts) + + def __repr__(self): + return "%s('%s')" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + @property + def is_prerelease(self): + raise NotImplementedError('Please implement in subclasses.') + + +class Matcher(object): + version_class = None + + # value is either a callable or the name of a method + _operators = { + '<': lambda v, c, p: v < c, + '>': lambda v, c, p: v > c, + '<=': lambda v, c, p: v == c or v < c, + '>=': lambda v, c, p: v == c or v > c, + '==': lambda v, c, p: v == c, + '===': lambda v, c, p: v == c, + # by default, compatible => >=. + '~=': lambda v, c, p: v == c or v > c, + '!=': lambda v, c, p: v != c, + } + + # this is a method only to support alternative implementations + # via overriding + def parse_requirement(self, s): + return parse_requirement(s) + + def __init__(self, s): + if self.version_class is None: + raise ValueError('Please specify a version class') + self._string = s = s.strip() + r = self.parse_requirement(s) + if not r: + raise ValueError('Not valid: %r' % s) + self.name = r.name + self.key = self.name.lower() # for case-insensitive comparisons + clist = [] + if r.constraints: + # import pdb; pdb.set_trace() + for op, s in r.constraints: + if s.endswith('.*'): + if op not in ('==', '!='): + raise ValueError('\'.*\' not allowed for ' + '%r constraints' % op) + # Could be a partial version (e.g. for '2.*') which + # won't parse as a version, so keep it as a string + vn, prefix = s[:-2], True + # Just to check that vn is a valid version + self.version_class(vn) + else: + # Should parse as a version, so we can create an + # instance for the comparison + vn, prefix = self.version_class(s), False + clist.append((op, vn, prefix)) + self._parts = tuple(clist) + + def match(self, version): + """ + Check if the provided version matches the constraints. + + :param version: The version to match against this instance. + :type version: String or :class:`Version` instance. + """ + if isinstance(version, string_types): + version = self.version_class(version) + for operator, constraint, prefix in self._parts: + f = self._operators.get(operator) + if isinstance(f, string_types): + f = getattr(self, f) + if not f: + msg = ('%r not implemented ' + 'for %s' % (operator, self.__class__.__name__)) + raise NotImplementedError(msg) + if not f(version, constraint, prefix): + return False + return True + + @property + def exact_version(self): + result = None + if len(self._parts) == 1 and self._parts[0][0] in ('==', '==='): + result = self._parts[0][1] + return result + + def _check_compatible(self, other): + if type(self) != type(other) or self.name != other.name: + raise TypeError('cannot compare %s and %s' % (self, other)) + + def __eq__(self, other): + self._check_compatible(other) + return self.key == other.key and self._parts == other._parts + + def __ne__(self, other): + return not self.__eq__(other) + + # See http://docs.python.org/reference/datamodel#object.__hash__ + def __hash__(self): + return hash(self.key) + hash(self._parts) + + def __repr__(self): + return "%s(%r)" % (self.__class__.__name__, self._string) + + def __str__(self): + return self._string + + +PEP440_VERSION_RE = re.compile(r'^v?(\d+!)?(\d+(\.\d+)*)((a|alpha|b|beta|c|rc|pre|preview)(\d+)?)?' + r'(\.(post|r|rev)(\d+)?)?([._-]?(dev)(\d+)?)?' + r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$', re.I) + + +def _pep_440_key(s): + s = s.strip() + m = PEP440_VERSION_RE.match(s) + if not m: + raise UnsupportedVersionError('Not a valid version: %s' % s) + groups = m.groups() + nums = tuple(int(v) for v in groups[1].split('.')) + while len(nums) > 1 and nums[-1] == 0: + nums = nums[:-1] + + if not groups[0]: + epoch = 0 + else: + epoch = int(groups[0][:-1]) + pre = groups[4:6] + post = groups[7:9] + dev = groups[10:12] + local = groups[13] + if pre == (None, None): + pre = () + else: + if pre[1] is None: + pre = pre[0], 0 + else: + pre = pre[0], int(pre[1]) + if post == (None, None): + post = () + else: + if post[1] is None: + post = post[0], 0 + else: + post = post[0], int(post[1]) + if dev == (None, None): + dev = () + else: + if dev[1] is None: + dev = dev[0], 0 + else: + dev = dev[0], int(dev[1]) + if local is None: + local = () + else: + parts = [] + for part in local.split('.'): + # to ensure that numeric compares as > lexicographic, avoid + # comparing them directly, but encode a tuple which ensures + # correct sorting + if part.isdigit(): + part = (1, int(part)) + else: + part = (0, part) + parts.append(part) + local = tuple(parts) + if not pre: + # either before pre-release, or final release and after + if not post and dev: + # before pre-release + pre = ('a', -1) # to sort before a0 + else: + pre = ('z',) # to sort after all pre-releases + # now look at the state of post and dev. + if not post: + post = ('_',) # sort before 'a' + if not dev: + dev = ('final',) + + return epoch, nums, pre, post, dev, local + + +_normalized_key = _pep_440_key + + +class NormalizedVersion(Version): + """A rational version. + + Good: + 1.2 # equivalent to "1.2.0" + 1.2.0 + 1.2a1 + 1.2.3a2 + 1.2.3b1 + 1.2.3c1 + 1.2.3.4 + TODO: fill this out + + Bad: + 1 # minimum two numbers + 1.2a # release level must have a release serial + 1.2.3b + """ + def parse(self, s): + result = _normalized_key(s) + # _normalized_key loses trailing zeroes in the release + # clause, since that's needed to ensure that X.Y == X.Y.0 == X.Y.0.0 + # However, PEP 440 prefix matching needs it: for example, + # (~= 1.4.5.0) matches differently to (~= 1.4.5.0.0). + m = PEP440_VERSION_RE.match(s) # must succeed + groups = m.groups() + self._release_clause = tuple(int(v) for v in groups[1].split('.')) + return result + + PREREL_TAGS = set(['a', 'b', 'c', 'rc', 'dev']) + + @property + def is_prerelease(self): + return any(t[0] in self.PREREL_TAGS for t in self._parts if t) + + +def _match_prefix(x, y): + x = str(x) + y = str(y) + if x == y: + return True + if not x.startswith(y): + return False + n = len(y) + return x[n] == '.' + + +class NormalizedMatcher(Matcher): + version_class = NormalizedVersion + + # value is either a callable or the name of a method + _operators = { + '~=': '_match_compatible', + '<': '_match_lt', + '>': '_match_gt', + '<=': '_match_le', + '>=': '_match_ge', + '==': '_match_eq', + '===': '_match_arbitrary', + '!=': '_match_ne', + } + + def _adjust_local(self, version, constraint, prefix): + if prefix: + strip_local = '+' not in constraint and version._parts[-1] + else: + # both constraint and version are + # NormalizedVersion instances. + # If constraint does not have a local component, + # ensure the version doesn't, either. + strip_local = not constraint._parts[-1] and version._parts[-1] + if strip_local: + s = version._string.split('+', 1)[0] + version = self.version_class(s) + return version, constraint + + def _match_lt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version >= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_gt(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version <= constraint: + return False + release_clause = constraint._release_clause + pfx = '.'.join([str(i) for i in release_clause]) + return not _match_prefix(version, pfx) + + def _match_le(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version <= constraint + + def _match_ge(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + return version >= constraint + + def _match_eq(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version == constraint) + else: + result = _match_prefix(version, constraint) + return result + + def _match_arbitrary(self, version, constraint, prefix): + return str(version) == str(constraint) + + def _match_ne(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if not prefix: + result = (version != constraint) + else: + result = not _match_prefix(version, constraint) + return result + + def _match_compatible(self, version, constraint, prefix): + version, constraint = self._adjust_local(version, constraint, prefix) + if version == constraint: + return True + if version < constraint: + return False +# if not prefix: +# return True + release_clause = constraint._release_clause + if len(release_clause) > 1: + release_clause = release_clause[:-1] + pfx = '.'.join([str(i) for i in release_clause]) + return _match_prefix(version, pfx) + + +_REPLACEMENTS = ( + (re.compile('[.+-]$'), ''), # remove trailing puncts + (re.compile(r'^[.](\d)'), r'0.\1'), # .N -> 0.N at start + (re.compile('^[.-]'), ''), # remove leading puncts + (re.compile(r'^\((.*)\)$'), r'\1'), # remove parentheses + (re.compile(r'^v(ersion)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile(r'^r(ev)?\s*(\d+)'), r'\2'), # remove leading v(ersion) + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\b(alfa|apha)\b'), 'alpha'), # misspelt alpha + (re.compile(r'\b(pre-alpha|prealpha)\b'), + 'pre.alpha'), # standardise + (re.compile(r'\(beta\)$'), 'beta'), # remove parentheses +) + +_SUFFIX_REPLACEMENTS = ( + (re.compile('^[:~._+-]+'), ''), # remove leading puncts + (re.compile('[,*")([\\]]'), ''), # remove unwanted chars + (re.compile('[~:+_ -]'), '.'), # replace illegal chars + (re.compile('[.]{2,}'), '.'), # multiple runs of '.' + (re.compile(r'\.$'), ''), # trailing '.' +) + +_NUMERIC_PREFIX = re.compile(r'(\d+(\.\d+)*)') + + +def _suggest_semantic_version(s): + """ + Try to suggest a semantic form for a version for which + _suggest_normalized_version couldn't come up with anything. + """ + result = s.strip().lower() + for pat, repl in _REPLACEMENTS: + result = pat.sub(repl, result) + if not result: + result = '0.0.0' + + # Now look for numeric prefix, and separate it out from + # the rest. + # import pdb; pdb.set_trace() + m = _NUMERIC_PREFIX.match(result) + if not m: + prefix = '0.0.0' + suffix = result + else: + prefix = m.groups()[0].split('.') + prefix = [int(i) for i in prefix] + while len(prefix) < 3: + prefix.append(0) + if len(prefix) == 3: + suffix = result[m.end():] + else: + suffix = '.'.join([str(i) for i in prefix[3:]]) + result[m.end():] + prefix = prefix[:3] + prefix = '.'.join([str(i) for i in prefix]) + suffix = suffix.strip() + if suffix: + # import pdb; pdb.set_trace() + # massage the suffix. + for pat, repl in _SUFFIX_REPLACEMENTS: + suffix = pat.sub(repl, suffix) + + if not suffix: + result = prefix + else: + sep = '-' if 'dev' in suffix else '+' + result = prefix + sep + suffix + if not is_semver(result): + result = None + return result + + +def _suggest_normalized_version(s): + """Suggest a normalized version close to the given version string. + + If you have a version string that isn't rational (i.e. NormalizedVersion + doesn't like it) then you might be able to get an equivalent (or close) + rational version from this function. + + This does a number of simple normalizations to the given string, based + on observation of versions currently in use on PyPI. Given a dump of + those version during PyCon 2009, 4287 of them: + - 2312 (53.93%) match NormalizedVersion without change + with the automatic suggestion + - 3474 (81.04%) match when using this suggestion method + + @param s {str} An irrational version string. + @returns A rational version string, or None, if couldn't determine one. + """ + try: + _normalized_key(s) + return s # already rational + except UnsupportedVersionError: + pass + + rs = s.lower() + + # part of this could use maketrans + for orig, repl in (('-alpha', 'a'), ('-beta', 'b'), ('alpha', 'a'), + ('beta', 'b'), ('rc', 'c'), ('-final', ''), + ('-pre', 'c'), + ('-release', ''), ('.release', ''), ('-stable', ''), + ('+', '.'), ('_', '.'), (' ', ''), ('.final', ''), + ('final', '')): + rs = rs.replace(orig, repl) + + # if something ends with dev or pre, we add a 0 + rs = re.sub(r"pre$", r"pre0", rs) + rs = re.sub(r"dev$", r"dev0", rs) + + # if we have something like "b-2" or "a.2" at the end of the + # version, that is probably beta, alpha, etc + # let's remove the dash or dot + rs = re.sub(r"([abc]|rc)[\-\.](\d+)$", r"\1\2", rs) + + # 1.0-dev-r371 -> 1.0.dev371 + # 0.1-dev-r79 -> 0.1.dev79 + rs = re.sub(r"[\-\.](dev)[\-\.]?r?(\d+)$", r".\1\2", rs) + + # Clean: 2.0.a.3, 2.0.b1, 0.9.0~c1 + rs = re.sub(r"[.~]?([abc])\.?", r"\1", rs) + + # Clean: v0.3, v1.0 + if rs.startswith('v'): + rs = rs[1:] + + # Clean leading '0's on numbers. + # TODO: unintended side-effect on, e.g., "2003.05.09" + # PyPI stats: 77 (~2%) better + rs = re.sub(r"\b0+(\d+)(?!\d)", r"\1", rs) + + # Clean a/b/c with no version. E.g. "1.0a" -> "1.0a0". Setuptools infers + # zero. + # PyPI stats: 245 (7.56%) better + rs = re.sub(r"(\d+[abc])$", r"\g<1>0", rs) + + # the 'dev-rNNN' tag is a dev tag + rs = re.sub(r"\.?(dev-r|dev\.r)\.?(\d+)$", r".dev\2", rs) + + # clean the - when used as a pre delimiter + rs = re.sub(r"-(a|b|c)(\d+)$", r"\1\2", rs) + + # a terminal "dev" or "devel" can be changed into ".dev0" + rs = re.sub(r"[\.\-](dev|devel)$", r".dev0", rs) + + # a terminal "dev" can be changed into ".dev0" + rs = re.sub(r"(?![\.\-])dev$", r".dev0", rs) + + # a terminal "final" or "stable" can be removed + rs = re.sub(r"(final|stable)$", "", rs) + + # The 'r' and the '-' tags are post release tags + # 0.4a1.r10 -> 0.4a1.post10 + # 0.9.33-17222 -> 0.9.33.post17222 + # 0.9.33-r17222 -> 0.9.33.post17222 + rs = re.sub(r"\.?(r|-|-r)\.?(\d+)$", r".post\2", rs) + + # Clean 'r' instead of 'dev' usage: + # 0.9.33+r17222 -> 0.9.33.dev17222 + # 1.0dev123 -> 1.0.dev123 + # 1.0.git123 -> 1.0.dev123 + # 1.0.bzr123 -> 1.0.dev123 + # 0.1a0dev.123 -> 0.1a0.dev123 + # PyPI stats: ~150 (~4%) better + rs = re.sub(r"\.?(dev|git|bzr)\.?(\d+)$", r".dev\2", rs) + + # Clean '.pre' (normalized from '-pre' above) instead of 'c' usage: + # 0.2.pre1 -> 0.2c1 + # 0.2-c1 -> 0.2c1 + # 1.0preview123 -> 1.0c123 + # PyPI stats: ~21 (0.62%) better + rs = re.sub(r"\.?(pre|preview|-c)(\d+)$", r"c\g<2>", rs) + + # Tcl/Tk uses "px" for their post release markers + rs = re.sub(r"p(\d+)$", r".post\1", rs) + + try: + _normalized_key(rs) + except UnsupportedVersionError: + rs = None + return rs + +# +# Legacy version processing (distribute-compatible) +# + + +_VERSION_PART = re.compile(r'([a-z]+|\d+|[\.-])', re.I) +_VERSION_REPLACE = { + 'pre': 'c', + 'preview': 'c', + '-': 'final-', + 'rc': 'c', + 'dev': '@', + '': None, + '.': None, +} + + +def _legacy_key(s): + def get_parts(s): + result = [] + for p in _VERSION_PART.split(s.lower()): + p = _VERSION_REPLACE.get(p, p) + if p: + if '0' <= p[:1] <= '9': + p = p.zfill(8) + else: + p = '*' + p + result.append(p) + result.append('*final') + return result + + result = [] + for p in get_parts(s): + if p.startswith('*'): + if p < '*final': + while result and result[-1] == '*final-': + result.pop() + while result and result[-1] == '00000000': + result.pop() + result.append(p) + return tuple(result) + + +class LegacyVersion(Version): + def parse(self, s): + return _legacy_key(s) + + @property + def is_prerelease(self): + result = False + for x in self._parts: + if (isinstance(x, string_types) and x.startswith('*') and + x < '*final'): + result = True + break + return result + + +class LegacyMatcher(Matcher): + version_class = LegacyVersion + + _operators = dict(Matcher._operators) + _operators['~='] = '_match_compatible' + + numeric_re = re.compile(r'^(\d+(\.\d+)*)') + + def _match_compatible(self, version, constraint, prefix): + if version < constraint: + return False + m = self.numeric_re.match(str(constraint)) + if not m: + logger.warning('Cannot compute compatible match for version %s ' + ' and constraint %s', version, constraint) + return True + s = m.groups()[0] + if '.' in s: + s = s.rsplit('.', 1)[0] + return _match_prefix(version, s) + +# +# Semantic versioning +# + + +_SEMVER_RE = re.compile(r'^(\d+)\.(\d+)\.(\d+)' + r'(-[a-z0-9]+(\.[a-z0-9-]+)*)?' + r'(\+[a-z0-9]+(\.[a-z0-9-]+)*)?$', re.I) + + +def is_semver(s): + return _SEMVER_RE.match(s) + + +def _semantic_key(s): + def make_tuple(s, absent): + if s is None: + result = (absent,) + else: + parts = s[1:].split('.') + # We can't compare ints and strings on Python 3, so fudge it + # by zero-filling numeric values so simulate a numeric comparison + result = tuple([p.zfill(8) if p.isdigit() else p for p in parts]) + return result + + m = is_semver(s) + if not m: + raise UnsupportedVersionError(s) + groups = m.groups() + major, minor, patch = [int(i) for i in groups[:3]] + # choose the '|' and '*' so that versions sort correctly + pre, build = make_tuple(groups[3], '|'), make_tuple(groups[5], '*') + return (major, minor, patch), pre, build + + +class SemanticVersion(Version): + def parse(self, s): + return _semantic_key(s) + + @property + def is_prerelease(self): + return self._parts[1][0] != '|' + + +class SemanticMatcher(Matcher): + version_class = SemanticVersion + + +class VersionScheme(object): + def __init__(self, key, matcher, suggester=None): + self.key = key + self.matcher = matcher + self.suggester = suggester + + def is_valid_version(self, s): + try: + self.matcher.version_class(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_matcher(self, s): + try: + self.matcher(s) + result = True + except UnsupportedVersionError: + result = False + return result + + def is_valid_constraint_list(self, s): + """ + Used for processing some metadata fields + """ + # See issue #140. Be tolerant of a single trailing comma. + if s.endswith(','): + s = s[:-1] + return self.is_valid_matcher('dummy_name (%s)' % s) + + def suggest(self, s): + if self.suggester is None: + result = None + else: + result = self.suggester(s) + return result + + +_SCHEMES = { + 'normalized': VersionScheme(_normalized_key, NormalizedMatcher, + _suggest_normalized_version), + 'legacy': VersionScheme(_legacy_key, LegacyMatcher, lambda self, s: s), + 'semantic': VersionScheme(_semantic_key, SemanticMatcher, + _suggest_semantic_version), +} + +_SCHEMES['default'] = _SCHEMES['normalized'] + + +def get_scheme(name): + if name not in _SCHEMES: + raise ValueError('unknown scheme name: %r' % name) + return _SCHEMES[name] diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe new file mode 100644 index 0000000000000000000000000000000000000000..4ee2d3a31b59e8b50f433ecdf0be9e496e8cc3b8 GIT binary patch literal 91648 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe new file mode 100644 index 0000000000000000000000000000000000000000..951d5817c9e6d81c94a173a0d9fead7f1f143331 GIT binary patch literal 168448 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe new file mode 100644 index 0000000000000000000000000000000000000000..5763076d2878093971a0ef9870e1cde7f556b18b GIT binary patch literal 101888 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..60b62805c05c85c06b52f6a1eb5cd71ca53c8267 GIT binary patch literal 65730 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 QYdig-YrV@N2H05qZ(*_c@&Et; literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c6173099cef55bc49feeb8a62a003cf8236153c0 GIT binary patch literal 24365 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86c9cc5b541b86fc69c6b17563ed41751caf1e2f GIT binary patch literal 15125 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 RJ71R_{Vjfx$gAuA{{aFp)OP>? literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..810d1697edbb851c79b4946bd6d03758ee268cc4 GIT binary patch literal 7727 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6eaa004f735f58e1a3dc8078b77dba8d2e155677 GIT binary patch literal 41715 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b1d74bcbf29102e16a98b65ee27011b5624dc32 GIT binary patch literal 88066 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 OXX#4O{gZ=3`2Pc~9q_>b literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..607786cca1e95e577abc18882e508d3817dc7e2c GIT binary patch literal 30394 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 literal 0 HcmV?d00001 diff --git a/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc b/server/src/assets/game/tableGenerator/env/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97b5280a129e62d551dda759545c7d1a3807c8e6 GIT binary patch literal 51497 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