exonware-xwsystem 0.0.1.409__tar.gz → 0.0.1.411__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (930) hide show
  1. exonware_xwsystem-0.0.1.411/.github/workflows/publish.yml +77 -0
  2. exonware_xwsystem-0.0.1.411/PKG-INFO +843 -0
  3. exonware_xwsystem-0.0.1.411/README.md +774 -0
  4. exonware_xwsystem-0.0.1.411/pyproject.toml +130 -0
  5. exonware_xwsystem-0.0.1.411/src/exonware/__init__.py +40 -0
  6. exonware_xwsystem-0.0.1.411/src/exonware/conf.py +109 -0
  7. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/__init__.py +869 -0
  8. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/__init__.py +250 -0
  9. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/base.py +291 -0
  10. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/bloom_cache.py +215 -0
  11. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/cache_manager.py +26 -0
  12. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/conditional.py +149 -0
  13. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/contracts.py +832 -0
  14. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/decorators.py +268 -0
  15. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/defs.py +57 -0
  16. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/disk_cache.py +334 -0
  17. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/distributed.py +52 -0
  18. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/errors.py +99 -0
  19. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/events.py +199 -0
  20. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/eviction_strategies.py +270 -0
  21. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/fluent.py +126 -0
  22. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/integrity.py +129 -0
  23. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/lfu_cache.py +288 -0
  24. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/lfu_optimized.py +553 -0
  25. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/lru_cache.py +602 -0
  26. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/memory_bounded.py +289 -0
  27. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/metrics_exporter.py +197 -0
  28. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/observable_cache.py +151 -0
  29. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/pluggable_cache.py +233 -0
  30. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/rate_limiter.py +252 -0
  31. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/read_through.py +251 -0
  32. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/secure_cache.py +300 -0
  33. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/serializable.py +167 -0
  34. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/stats.py +187 -0
  35. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/tagging.py +202 -0
  36. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/ttl_cache.py +566 -0
  37. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/two_tier_cache.py +257 -0
  38. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/utils.py +215 -0
  39. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/validation.py +233 -0
  40. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/warming.py +242 -0
  41. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/caching/write_behind.py +219 -0
  42. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/__init__.py +43 -0
  43. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/args.py +389 -0
  44. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/base.py +315 -0
  45. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/colors.py +281 -0
  46. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/console.py +113 -0
  47. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/contracts.py +193 -0
  48. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/defs.py +134 -0
  49. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/errors.py +74 -0
  50. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/progress.py +462 -0
  51. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/prompts.py +98 -0
  52. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/cli/tables.py +256 -0
  53. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/__init__.py +98 -0
  54. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/base.py +287 -0
  55. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/contracts.py +877 -0
  56. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/defaults.py +182 -0
  57. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/defs.py +81 -0
  58. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/errors.py +80 -0
  59. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/logging.py +91 -0
  60. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/logging_setup.py +116 -0
  61. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/performance.py +406 -0
  62. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/performance_modes.py +1007 -0
  63. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/config/version_manager.py +162 -0
  64. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/__init__.py +21 -0
  65. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/advanced_client.py +550 -0
  66. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/base.py +276 -0
  67. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/client.py +561 -0
  68. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/contracts.py +155 -0
  69. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/defs.py +65 -0
  70. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/http_client/errors.py +91 -0
  71. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/__init__.py +221 -0
  72. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/__init__.py +121 -0
  73. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/archive.py +103 -0
  74. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/archive_files.py +220 -0
  75. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/archivers.py +292 -0
  76. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/base.py +377 -0
  77. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/codec_integration.py +58 -0
  78. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/compression.py +187 -0
  79. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/__init__.py +135 -0
  80. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/brotli_format.py +151 -0
  81. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/lz4_format.py +150 -0
  82. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/rar.py +126 -0
  83. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/sevenzip.py +136 -0
  84. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/squashfs_format.py +155 -0
  85. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/tar.py +106 -0
  86. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/wim_format.py +135 -0
  87. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/zip.py +89 -0
  88. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/zpaq_format.py +153 -0
  89. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/archive/formats/zstandard.py +143 -0
  90. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/base.py +1390 -0
  91. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/codec/__init__.py +196 -0
  92. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/codec/base.py +882 -0
  93. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/codec/contracts.py +213 -0
  94. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/codec/registry.py +779 -0
  95. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/__init__.py +111 -0
  96. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/atomic.py +471 -0
  97. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/base.py +165 -0
  98. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/lock.py +128 -0
  99. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/common/watcher.py +158 -0
  100. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/contracts.py +1709 -0
  101. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/data_operations.py +480 -0
  102. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/defs.py +260 -0
  103. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/errors.py +412 -0
  104. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/facade.py +912 -0
  105. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/__init__.py +111 -0
  106. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/base.py +149 -0
  107. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/conversion.py +244 -0
  108. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/file.py +319 -0
  109. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paged_source.py +163 -0
  110. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paging/__init__.py +45 -0
  111. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paging/byte_paging.py +74 -0
  112. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paging/line_paging.py +87 -0
  113. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paging/record_paging.py +101 -0
  114. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/paging/registry.py +180 -0
  115. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/file/source.py +214 -0
  116. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/filesystem/__init__.py +42 -0
  117. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/filesystem/base.py +27 -0
  118. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/filesystem/local.py +155 -0
  119. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/folder/__init__.py +27 -0
  120. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/folder/base.py +38 -0
  121. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/folder/folder.py +214 -0
  122. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/__init__.py +172 -0
  123. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/auto_serializer.py +440 -0
  124. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/base.py +1146 -0
  125. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/contracts.py +524 -0
  126. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/defs.py +78 -0
  127. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/errors.py +173 -0
  128. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/flyweight.py +406 -0
  129. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/format_detector.py +392 -0
  130. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/__init__.py +13 -0
  131. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/bson.py +170 -0
  132. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/cbor.py +173 -0
  133. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/marshal.py +162 -0
  134. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/msgpack.py +187 -0
  135. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/pickle.py +180 -0
  136. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/binary/plistlib.py +174 -0
  137. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/database/dbm.py +124 -0
  138. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/database/shelve.py +119 -0
  139. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/database/sqlite3.py +156 -0
  140. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/configparser.py +194 -0
  141. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/csv.py +213 -0
  142. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/formdata.py +175 -0
  143. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/json.py +409 -0
  144. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/json5.py +194 -0
  145. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/jsonlines.py +326 -0
  146. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/multipart.py +212 -0
  147. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/toml.py +255 -0
  148. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/xml.py +592 -0
  149. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/formats/text/yaml.py +231 -0
  150. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/registry.py +187 -0
  151. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/serializer.py +1172 -0
  152. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/utils/__init__.py +32 -0
  153. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/serialization/utils/path_ops.py +304 -0
  154. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/stream/__init__.py +50 -0
  155. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/stream/async_operations.py +491 -0
  156. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/stream/base.py +42 -0
  157. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/io/stream/codec_io.py +434 -0
  158. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/async_fabric.py +358 -0
  159. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/base.py +379 -0
  160. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/contracts.py +187 -0
  161. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/defs.py +69 -0
  162. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/errors.py +115 -0
  163. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/message_queue.py +428 -0
  164. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/pipes.py +548 -0
  165. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/process_manager.py +342 -0
  166. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/process_pool.py +493 -0
  167. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/ipc/shared_memory.py +448 -0
  168. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/base.py +343 -0
  169. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/contracts.py +854 -0
  170. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/defs.py +70 -0
  171. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/error_recovery.py +627 -0
  172. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/errors.py +120 -0
  173. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/memory_monitor.py +406 -0
  174. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/metrics.py +349 -0
  175. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/performance_manager_generic.py +469 -0
  176. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/performance_monitor.py +393 -0
  177. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/performance_validator.py +534 -0
  178. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/system_monitor.py +700 -0
  179. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/tracing.py +427 -0
  180. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/monitoring/tracker.py +278 -0
  181. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/__init__.py +99 -0
  182. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/base.py +85 -0
  183. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/contracts.py +63 -0
  184. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/defs.py +69 -0
  185. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/diff.py +245 -0
  186. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/merge.py +164 -0
  187. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/operations/patch.py +239 -0
  188. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/base.py +160 -0
  189. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/context_manager.py +365 -0
  190. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/contracts.py +706 -0
  191. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/defs.py +252 -0
  192. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/dynamic_facade.py +151 -0
  193. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/errors.py +643 -0
  194. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/handler_factory.py +347 -0
  195. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/import_registry.py +603 -0
  196. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/object_pool.py +254 -0
  197. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/patterns/registry.py +446 -0
  198. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/plugins/__init__.py +28 -0
  199. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/plugins/base.py +630 -0
  200. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/plugins/contracts.py +985 -0
  201. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/plugins/defs.py +74 -0
  202. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/plugins/errors.py +400 -0
  203. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/__init__.py +105 -0
  204. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/base.py +484 -0
  205. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/contracts.py +171 -0
  206. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/defs.py +53 -0
  207. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/env.py +395 -0
  208. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/errors.py +105 -0
  209. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/runtime/reflection.py +408 -0
  210. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/auth.py +484 -0
  211. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/base.py +417 -0
  212. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/contracts.py +918 -0
  213. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/crypto.py +840 -0
  214. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/defs.py +91 -0
  215. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/errors.py +135 -0
  216. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/hazmat.py +716 -0
  217. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/security/path_validator.py +313 -0
  218. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/shared/__init__.py +107 -0
  219. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/shared/base.py +309 -0
  220. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/shared/contracts.py +710 -0
  221. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/shared/defs.py +168 -0
  222. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/shared/errors.py +77 -0
  223. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/__init__.py +24 -0
  224. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/base.py +475 -0
  225. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/circular_detector.py +343 -0
  226. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/contracts.py +198 -0
  227. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/defs.py +68 -0
  228. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/errors.py +105 -0
  229. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/structures/tree_walker.py +344 -0
  230. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/async_primitives.py +547 -0
  231. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/base.py +392 -0
  232. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/contracts.py +835 -0
  233. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/defs.py +53 -0
  234. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/errors.py +105 -0
  235. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/threading/safe_factory.py +225 -0
  236. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/base.py +454 -0
  237. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/contracts.py +184 -0
  238. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/__init__.py +63 -0
  239. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/base.py +244 -0
  240. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/contracts.py +94 -0
  241. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/defs.py +69 -0
  242. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/errors.py +75 -0
  243. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/formatting.py +137 -0
  244. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/humanize.py +449 -0
  245. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/parsing.py +221 -0
  246. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/dt/timezone_utils.py +124 -0
  247. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/errors.py +129 -0
  248. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/test_runner.py +526 -0
  249. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/utils/utils_contracts.py +63 -0
  250. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/__init__.py +21 -0
  251. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/base.py +345 -0
  252. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/contracts.py +249 -0
  253. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/data_validator.py +271 -0
  254. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/declarative.py +618 -0
  255. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/defs.py +36 -0
  256. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/errors.py +115 -0
  257. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/validation/fluent_validator.py +395 -0
  258. exonware_xwsystem-0.0.1.411/src/exonware/xwsystem/version.py +77 -0
  259. exonware_xwsystem-0.0.1.411/src/xwsystem.py +39 -0
  260. exonware_xwsystem-0.0.1.411/tests/0.core/README.md +280 -0
  261. exonware_xwsystem-0.0.1.411/tests/0.core/caching/runner.py +93 -0
  262. exonware_xwsystem-0.0.1.411/tests/0.core/caching/runner_out.md +31 -0
  263. exonware_xwsystem-0.0.1.411/tests/0.core/caching/test_caching_standalone.py +38 -0
  264. exonware_xwsystem-0.0.1.411/tests/0.core/caching/test_core_caching.py +197 -0
  265. exonware_xwsystem-0.0.1.411/tests/0.core/caching/test_core_caching_installation.py +34 -0
  266. exonware_xwsystem-0.0.1.411/tests/0.core/enterprise/runner.py +86 -0
  267. exonware_xwsystem-0.0.1.411/tests/0.core/enterprise/test_core_xsystem_enterprise.py +283 -0
  268. exonware_xwsystem-0.0.1.411/tests/0.core/http_client/runner.py +245 -0
  269. exonware_xwsystem-0.0.1.411/tests/0.core/io/runner.py +356 -0
  270. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_io_modular_imports.py +33 -0
  271. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_xsystem_io.py +521 -0
  272. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_xsystem_io_archive.py +373 -0
  273. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_xsystem_io_serialization_comprehensive.py +494 -0
  274. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_core_xsystem_serialization.py +389 -0
  275. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_serialization_record_ops_core.py +181 -0
  276. exonware_xwsystem-0.0.1.411/tests/0.core/io/test_yaml_import_behavior.py +120 -0
  277. exonware_xwsystem-0.0.1.411/tests/0.core/monitoring/runner.py +269 -0
  278. exonware_xwsystem-0.0.1.411/tests/0.core/operations/__init__.py +2 -0
  279. exonware_xwsystem-0.0.1.411/tests/0.core/operations/runner.py +34 -0
  280. exonware_xwsystem-0.0.1.411/tests/0.core/operations/test_core_xsystem_operations.py +233 -0
  281. exonware_xwsystem-0.0.1.411/tests/0.core/runner.py +591 -0
  282. exonware_xwsystem-0.0.1.411/tests/0.core/security/runner.py +273 -0
  283. exonware_xwsystem-0.0.1.411/tests/0.core/shared/__init__.py +2 -0
  284. exonware_xwsystem-0.0.1.411/tests/0.core/shared/runner.py +34 -0
  285. exonware_xwsystem-0.0.1.411/tests/0.core/shared/test_core_xsystem_shared.py +140 -0
  286. exonware_xwsystem-0.0.1.411/tests/0.core/threading_tests/runner.py +327 -0
  287. exonware_xwsystem-0.0.1.411/tests/0.core/utils/test_auto_install.py +108 -0
  288. exonware_xwsystem-0.0.1.411/tests/0.core/utils/test_core_lazy_loading.py +81 -0
  289. exonware_xwsystem-0.0.1.411/tests/0.core/utils/test_core_xsystem_utils.py +402 -0
  290. exonware_xwsystem-0.0.1.411/tests/0.core/utils/test_core_xwsystem_utils.py +402 -0
  291. exonware_xwsystem-0.0.1.411/tests/0.core/validation/runner.py +302 -0
  292. exonware_xwsystem-0.0.1.411/tests/0.core/validation/test_core_xsystem_validation.py +618 -0
  293. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_tests/runner.py +84 -0
  294. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_tests/test_lfu_optimized.py +182 -0
  295. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_tests/test_security.py +248 -0
  296. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_tests/test_validation.py +176 -0
  297. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/conftest.py +32 -0
  298. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/lru_cache_tests/test_lru_cache.py +141 -0
  299. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/runner.py +94 -0
  300. exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit/security_tests/test_secure_cache.py +85 -0
  301. exonware_xwsystem-0.0.1.411/tests/1.unit/codec_tests/conftest.py +67 -0
  302. exonware_xwsystem-0.0.1.411/tests/1.unit/codec_tests/runner.py +92 -0
  303. exonware_xwsystem-0.0.1.411/tests/1.unit/codec_tests/runner_out.md +31 -0
  304. exonware_xwsystem-0.0.1.411/tests/1.unit/codec_tests/test_universal_codec_registry.py +301 -0
  305. exonware_xwsystem-0.0.1.411/tests/1.unit/codec_tests/test_xwio_codec_integration.py +143 -0
  306. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/ALL_ISSUES_RESOLVED.md +233 -0
  307. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/COMPLETENESS_REPORT.md +323 -0
  308. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/CRITICAL_FIXES_APPLIED.md +162 -0
  309. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/FINAL_STATUS.md +280 -0
  310. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/FINAL_VICTORY.md +295 -0
  311. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/FIXES_COMPLETED.md +275 -0
  312. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/README.md +178 -0
  313. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/archive_tests/test_archive_files.py +45 -0
  314. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/archive_tests/test_archivers.py +70 -0
  315. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/archive_tests/test_base.py +46 -0
  316. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/codec_tests/test_base.py +51 -0
  317. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/codec_tests/test_contracts.py +36 -0
  318. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/codec_tests/test_registry.py +76 -0
  319. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/codec_tests/test_simple_examples.py +470 -0
  320. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/common_tests/test_atomic.py +29 -0
  321. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/common_tests/test_lock.py +71 -0
  322. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/common_tests/test_path_manager.py +49 -0
  323. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/common_tests/test_watcher.py +90 -0
  324. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/__init__.py +1 -0
  325. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_conversion.py +67 -0
  326. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_file.py +86 -0
  327. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_paged_source.py +86 -0
  328. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_paging_byte.py +64 -0
  329. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_paging_line.py +68 -0
  330. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_paging_record.py +61 -0
  331. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_paging_registry.py +76 -0
  332. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/file_tests/test_source.py +100 -0
  333. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/filesystem_tests/__init__.py +1 -0
  334. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/filesystem_tests/test_base.py +25 -0
  335. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/filesystem_tests/test_local.py +131 -0
  336. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/folder_tests/__init__.py +1 -0
  337. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/folder_tests/test_base.py +29 -0
  338. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/folder_tests/test_folder.py +134 -0
  339. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/runner.py +123 -0
  340. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/runner_out.md +53 -0
  341. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/__init__.py +2 -0
  342. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_bson.py +35 -0
  343. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_cbor.py +35 -0
  344. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_marshal.py +35 -0
  345. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_msgpack.py +35 -0
  346. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_pickle.py +35 -0
  347. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/binary_tests/test_plistlib.py +35 -0
  348. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/__init__.py +2 -0
  349. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/test_dbm.py +35 -0
  350. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/test_shelve.py +35 -0
  351. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/database_tests/test_sqlite3.py +35 -0
  352. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_configparser.py +35 -0
  353. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_csv.py +36 -0
  354. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_formdata.py +33 -0
  355. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json.py +37 -0
  356. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json5.py +115 -0
  357. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_jsonlines.py +124 -0
  358. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_multipart.py +33 -0
  359. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_toml.py +50 -0
  360. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_xml.py +35 -0
  361. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_yaml.py +35 -0
  362. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/test_base.py +51 -0
  363. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/test_contracts.py +41 -0
  364. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/serialization_tests/test_registry.py +58 -0
  365. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/stream_tests/__init__.py +1 -0
  366. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/stream_tests/test_async_operations.py +47 -0
  367. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/stream_tests/test_base.py +30 -0
  368. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/stream_tests/test_codec_io.py +88 -0
  369. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/test_base.py +133 -0
  370. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/test_contracts.py +131 -0
  371. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/test_defs.py +121 -0
  372. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/test_errors.py +87 -0
  373. exonware_xwsystem-0.0.1.411/tests/1.unit/io_tests/test_facade.py +76 -0
  374. exonware_xwsystem-0.0.1.411/tests/1.unit/operations_tests/runner.py +123 -0
  375. exonware_xwsystem-0.0.1.411/tests/1.unit/operations_tests/runner_out.md +69 -0
  376. exonware_xwsystem-0.0.1.411/tests/1.unit/operations_tests/test_diff.py +254 -0
  377. exonware_xwsystem-0.0.1.411/tests/1.unit/operations_tests/test_merge.py +286 -0
  378. exonware_xwsystem-0.0.1.411/tests/1.unit/operations_tests/test_patch.py +306 -0
  379. exonware_xwsystem-0.0.1.411/tests/1.unit/performance_tests/test_threading_performance.py +328 -0
  380. exonware_xwsystem-0.0.1.411/tests/1.unit/security_tests/test_crypto_comprehensive.py +428 -0
  381. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/multilingual_emoji_test.py +165 -0
  382. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_all_serializers.py +716 -0
  383. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_bson_debug.py +95 -0
  384. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_complete_optimization.py +374 -0
  385. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_optimization_progress.py +174 -0
  386. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_optimization_simple.py +130 -0
  387. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_optimizations.py +304 -0
  388. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_serialization_basic_features.py +245 -0
  389. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_serialization_security_performance.py +692 -0
  390. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_serialization_worst_case_scenarios.py +861 -0
  391. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_universal_options.py +271 -0
  392. exonware_xwsystem-0.0.1.411/tests/1.unit/serialization_tests/test_xserialization.py +304 -0
  393. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/__init__.py +2 -0
  394. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/conftest.py +4 -0
  395. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/runner.py +36 -0
  396. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/test_base.py +61 -0
  397. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/test_contracts.py +75 -0
  398. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/test_defs.py +87 -0
  399. exonware_xwsystem-0.0.1.411/tests/1.unit/shared_tests/test_errors.py +114 -0
  400. exonware_xwsystem-0.0.1.411/tests/1.unit/test_advanced_http.py +491 -0
  401. exonware_xwsystem-0.0.1.411/tests/1.unit/test_async_io.py +294 -0
  402. exonware_xwsystem-0.0.1.411/tests/1.unit/test_direct_mapping.py +78 -0
  403. exonware_xwsystem-0.0.1.411/tests/1.unit/test_dynamic_mapping.py +64 -0
  404. exonware_xwsystem-0.0.1.411/tests/1.unit/utils/runner.py +37 -0
  405. exonware_xwsystem-0.0.1.411/tests/1.unit/utils/runner_out.md +63 -0
  406. exonware_xwsystem-0.0.1.411/tests/1.unit/utils/test_lazy_hook_early_installation.py +269 -0
  407. exonware_xwsystem-0.0.1.411/tests/1.unit/utils/test_lazy_mode_example.py +114 -0
  408. exonware_xwsystem-0.0.1.411/tests/2.integration/caching/runner.py +94 -0
  409. exonware_xwsystem-0.0.1.411/tests/2.integration/caching/test_end_to_end.py +177 -0
  410. exonware_xwsystem-0.0.1.411/tests/2.integration/io_tests/test_end_to_end.py +105 -0
  411. exonware_xwsystem-0.0.1.411/tests/2.integration/io_tests/test_io_codec_integration.py +705 -0
  412. exonware_xwsystem-0.0.1.411/tests/2.integration/io_tests/test_lazy_hook_integration.py +148 -0
  413. exonware_xwsystem-0.0.1.411/tests/2.integration/io_tests/test_yaml_lazy_integration.py +128 -0
  414. exonware_xwsystem-0.0.1.411/tests/2.integration/test_caching_integration.py +270 -0
  415. exonware_xwsystem-0.0.1.411/tests/2.integration/test_security_integration.py +400 -0
  416. exonware_xwsystem-0.0.1.411/tests/3.advance/caching/runner.py +129 -0
  417. exonware_xwsystem-0.0.1.411/tests/3.advance/caching/test_performance.py +95 -0
  418. exonware_xwsystem-0.0.1.411/tests/3.advance/caching/test_security.py +94 -0
  419. exonware_xwsystem-0.0.1.411/tests/3.advance/runner.py +161 -0
  420. exonware_xwsystem-0.0.1.411/tests/3.advance/test_caching_extensibility.py +171 -0
  421. exonware_xwsystem-0.0.1.411/tests/3.advance/test_caching_performance.py +150 -0
  422. exonware_xwsystem-0.0.1.411/tests/3.advance/test_caching_security.py +121 -0
  423. exonware_xwsystem-0.0.1.411/tests/README.md +217 -0
  424. exonware_xwsystem-0.0.1.411/tests/performance/benchmark_suite.py +608 -0
  425. exonware_xwsystem-0.0.1.411/tests/pytest.ini +45 -0
  426. exonware_xwsystem-0.0.1.411/tests/runner.py +294 -0
  427. exonware_xwsystem-0.0.1.409/.github/workflows/publish.yml +0 -77
  428. exonware_xwsystem-0.0.1.409/PKG-INFO +0 -845
  429. exonware_xwsystem-0.0.1.409/README.md +0 -774
  430. exonware_xwsystem-0.0.1.409/pyproject.toml +0 -128
  431. exonware_xwsystem-0.0.1.409/src/exonware/__init__.py +0 -40
  432. exonware_xwsystem-0.0.1.409/src/exonware/conf.py +0 -119
  433. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/__init__.py +0 -879
  434. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/__init__.py +0 -250
  435. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/base.py +0 -291
  436. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/bloom_cache.py +0 -215
  437. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/cache_manager.py +0 -26
  438. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/conditional.py +0 -149
  439. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/contracts.py +0 -832
  440. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/decorators.py +0 -268
  441. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/defs.py +0 -57
  442. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/disk_cache.py +0 -334
  443. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/distributed.py +0 -52
  444. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/errors.py +0 -99
  445. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/events.py +0 -199
  446. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/eviction_strategies.py +0 -270
  447. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/fluent.py +0 -126
  448. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/integrity.py +0 -129
  449. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/lfu_cache.py +0 -273
  450. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/lfu_optimized.py +0 -553
  451. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/lru_cache.py +0 -595
  452. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/memory_bounded.py +0 -289
  453. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/metrics_exporter.py +0 -197
  454. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/observable_cache.py +0 -151
  455. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/pluggable_cache.py +0 -233
  456. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/rate_limiter.py +0 -252
  457. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/read_through.py +0 -251
  458. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/secure_cache.py +0 -300
  459. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/serializable.py +0 -167
  460. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/stats.py +0 -187
  461. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/tagging.py +0 -202
  462. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/ttl_cache.py +0 -551
  463. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/two_tier_cache.py +0 -257
  464. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/utils.py +0 -215
  465. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/validation.py +0 -233
  466. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/warming.py +0 -242
  467. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/caching/write_behind.py +0 -219
  468. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/__init__.py +0 -43
  469. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/args.py +0 -389
  470. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/base.py +0 -315
  471. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/colors.py +0 -281
  472. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/console.py +0 -113
  473. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/contracts.py +0 -193
  474. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/defs.py +0 -134
  475. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/errors.py +0 -74
  476. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/progress.py +0 -462
  477. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/prompts.py +0 -98
  478. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/cli/tables.py +0 -256
  479. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/__init__.py +0 -98
  480. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/base.py +0 -287
  481. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/contracts.py +0 -877
  482. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/defaults.py +0 -182
  483. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/defs.py +0 -81
  484. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/errors.py +0 -80
  485. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/logging.py +0 -91
  486. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/logging_setup.py +0 -116
  487. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/performance.py +0 -406
  488. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/performance_modes.py +0 -1007
  489. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/config/version_manager.py +0 -162
  490. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/http/__init__.py +0 -21
  491. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/http/advanced_client.py +0 -550
  492. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/http/base.py +0 -276
  493. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/http/client.py +0 -561
  494. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/http/contracts.py +0 -155
  495. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/http/defs.py +0 -65
  496. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/http/errors.py +0 -91
  497. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/__init__.py +0 -221
  498. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/__init__.py +0 -121
  499. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/archive.py +0 -103
  500. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/archive_files.py +0 -220
  501. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/archivers.py +0 -292
  502. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/base.py +0 -377
  503. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/codec_integration.py +0 -58
  504. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/compression.py +0 -187
  505. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/__init__.py +0 -135
  506. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/brotli_format.py +0 -148
  507. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/lz4_format.py +0 -147
  508. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/rar.py +0 -123
  509. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/sevenzip.py +0 -133
  510. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/squashfs_format.py +0 -155
  511. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/tar.py +0 -106
  512. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/wim_format.py +0 -132
  513. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/zip.py +0 -89
  514. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/zpaq_format.py +0 -153
  515. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/archive/formats/zstandard.py +0 -140
  516. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/base.py +0 -1390
  517. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/codec/__init__.py +0 -196
  518. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/codec/base.py +0 -635
  519. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/codec/contracts.py +0 -216
  520. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/codec/registry.py +0 -779
  521. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/common/__init__.py +0 -111
  522. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/common/atomic.py +0 -471
  523. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/common/base.py +0 -165
  524. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/common/lock.py +0 -128
  525. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/common/watcher.py +0 -158
  526. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/contracts.py +0 -1714
  527. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/defs.py +0 -260
  528. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/errors.py +0 -383
  529. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/facade.py +0 -912
  530. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/__init__.py +0 -111
  531. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/base.py +0 -149
  532. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/conversion.py +0 -244
  533. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/file.py +0 -317
  534. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/paged_source.py +0 -156
  535. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/paging/__init__.py +0 -45
  536. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/paging/byte_paging.py +0 -74
  537. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/paging/line_paging.py +0 -87
  538. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/paging/record_paging.py +0 -101
  539. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/paging/registry.py +0 -180
  540. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/file/source.py +0 -203
  541. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/filesystem/__init__.py +0 -42
  542. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/filesystem/base.py +0 -27
  543. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/filesystem/local.py +0 -147
  544. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/folder/__init__.py +0 -27
  545. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/folder/base.py +0 -38
  546. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/folder/folder.py +0 -214
  547. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/__init__.py +0 -172
  548. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/auto_serializer.py +0 -427
  549. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/base.py +0 -933
  550. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/contracts.py +0 -435
  551. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/defs.py +0 -78
  552. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/errors.py +0 -173
  553. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/flyweight.py +0 -406
  554. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/format_detector.py +0 -389
  555. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/__init__.py +0 -13
  556. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/binary/bson.py +0 -170
  557. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/binary/cbor.py +0 -173
  558. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/binary/marshal.py +0 -162
  559. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/binary/msgpack.py +0 -187
  560. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/binary/pickle.py +0 -180
  561. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/binary/plistlib.py +0 -174
  562. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/database/dbm.py +0 -72
  563. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/database/shelve.py +0 -72
  564. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/database/sqlite3.py +0 -72
  565. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/text/configparser.py +0 -194
  566. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/text/csv.py +0 -213
  567. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/text/formdata.py +0 -175
  568. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/text/json.py +0 -391
  569. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/text/json5.py +0 -109
  570. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/text/jsonlines.py +0 -116
  571. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/text/multipart.py +0 -212
  572. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/text/toml.py +0 -194
  573. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/text/xml.py +0 -210
  574. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/formats/text/yaml.py +0 -181
  575. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/registry.py +0 -187
  576. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/serializer.py +0 -1000
  577. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/utils/__init__.py +0 -32
  578. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/serialization/utils/path_ops.py +0 -304
  579. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/stream/__init__.py +0 -50
  580. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/stream/async_operations.py +0 -491
  581. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/stream/base.py +0 -46
  582. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/io/stream/codec_io.py +0 -437
  583. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/ipc/async_fabric.py +0 -359
  584. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/ipc/base.py +0 -379
  585. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/ipc/contracts.py +0 -187
  586. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/ipc/defs.py +0 -69
  587. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/ipc/errors.py +0 -115
  588. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/ipc/message_queue.py +0 -430
  589. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/ipc/pipes.py +0 -548
  590. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/ipc/process_manager.py +0 -342
  591. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/ipc/process_pool.py +0 -493
  592. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/ipc/shared_memory.py +0 -448
  593. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/lazy_bootstrap.py +0 -79
  594. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/base.py +0 -343
  595. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/contracts.py +0 -854
  596. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/defs.py +0 -70
  597. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/error_recovery.py +0 -627
  598. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/errors.py +0 -120
  599. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/memory_monitor.py +0 -406
  600. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/metrics.py +0 -349
  601. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/performance_manager_generic.py +0 -469
  602. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/performance_monitor.py +0 -393
  603. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/performance_validator.py +0 -534
  604. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/system_monitor.py +0 -700
  605. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/tracing.py +0 -427
  606. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/monitoring/tracker.py +0 -278
  607. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/operations/__init__.py +0 -99
  608. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/operations/base.py +0 -85
  609. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/operations/contracts.py +0 -63
  610. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/operations/defs.py +0 -69
  611. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/operations/diff.py +0 -245
  612. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/operations/merge.py +0 -164
  613. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/operations/patch.py +0 -239
  614. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/patterns/base.py +0 -160
  615. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/patterns/context_manager.py +0 -365
  616. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/patterns/contracts.py +0 -708
  617. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/patterns/defs.py +0 -252
  618. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/patterns/dynamic_facade.py +0 -151
  619. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/patterns/errors.py +0 -643
  620. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/patterns/handler_factory.py +0 -346
  621. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/patterns/import_registry.py +0 -603
  622. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/patterns/object_pool.py +0 -253
  623. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/patterns/registry.py +0 -433
  624. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/plugins/__init__.py +0 -28
  625. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/plugins/base.py +0 -630
  626. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/plugins/contracts.py +0 -985
  627. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/plugins/defs.py +0 -74
  628. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/plugins/errors.py +0 -400
  629. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/runtime/__init__.py +0 -105
  630. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/runtime/base.py +0 -484
  631. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/runtime/contracts.py +0 -171
  632. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/runtime/defs.py +0 -53
  633. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/runtime/env.py +0 -395
  634. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/runtime/errors.py +0 -105
  635. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/runtime/reflection.py +0 -408
  636. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/security/auth.py +0 -452
  637. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/security/base.py +0 -417
  638. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/security/contracts.py +0 -918
  639. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/security/crypto.py +0 -840
  640. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/security/defs.py +0 -91
  641. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/security/errors.py +0 -135
  642. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/security/hazmat.py +0 -716
  643. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/security/path_validator.py +0 -313
  644. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/shared/__init__.py +0 -107
  645. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/shared/base.py +0 -309
  646. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/shared/contracts.py +0 -710
  647. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/shared/defs.py +0 -168
  648. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/shared/errors.py +0 -77
  649. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/structures/__init__.py +0 -24
  650. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/structures/base.py +0 -475
  651. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/structures/circular_detector.py +0 -343
  652. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/structures/contracts.py +0 -198
  653. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/structures/defs.py +0 -68
  654. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/structures/errors.py +0 -105
  655. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/structures/tree_walker.py +0 -344
  656. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/threading/async_primitives.py +0 -547
  657. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/threading/base.py +0 -392
  658. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/threading/contracts.py +0 -835
  659. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/threading/defs.py +0 -53
  660. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/threading/errors.py +0 -105
  661. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/threading/safe_factory.py +0 -224
  662. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/base.py +0 -454
  663. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/contracts.py +0 -184
  664. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/dt/__init__.py +0 -63
  665. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/dt/base.py +0 -244
  666. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/dt/contracts.py +0 -94
  667. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/dt/defs.py +0 -69
  668. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/dt/errors.py +0 -75
  669. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/dt/formatting.py +0 -137
  670. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/dt/humanize.py +0 -449
  671. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/dt/parsing.py +0 -221
  672. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/dt/timezone_utils.py +0 -124
  673. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/errors.py +0 -129
  674. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/test_runner.py +0 -526
  675. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/utils/utils_contracts.py +0 -63
  676. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/validation/__init__.py +0 -21
  677. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/validation/base.py +0 -345
  678. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/validation/contracts.py +0 -249
  679. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/validation/data_validator.py +0 -261
  680. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/validation/declarative.py +0 -618
  681. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/validation/defs.py +0 -36
  682. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/validation/errors.py +0 -115
  683. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/validation/fluent_validator.py +0 -395
  684. exonware_xwsystem-0.0.1.409/src/exonware/xwsystem/version.py +0 -77
  685. exonware_xwsystem-0.0.1.409/src/xwsystem.py +0 -39
  686. exonware_xwsystem-0.0.1.409/tests/0.core/README.md +0 -254
  687. exonware_xwsystem-0.0.1.409/tests/0.core/caching/runner.py +0 -93
  688. exonware_xwsystem-0.0.1.409/tests/0.core/caching/runner_out.md +0 -31
  689. exonware_xwsystem-0.0.1.409/tests/0.core/caching/test_caching_standalone.py +0 -81
  690. exonware_xwsystem-0.0.1.409/tests/0.core/caching/test_core_caching.py +0 -197
  691. exonware_xwsystem-0.0.1.409/tests/0.core/caching/test_core_caching_installation.py +0 -34
  692. exonware_xwsystem-0.0.1.409/tests/0.core/enterprise/runner.py +0 -86
  693. exonware_xwsystem-0.0.1.409/tests/0.core/enterprise/test_core_xsystem_enterprise.py +0 -292
  694. exonware_xwsystem-0.0.1.409/tests/0.core/http/runner.py +0 -245
  695. exonware_xwsystem-0.0.1.409/tests/0.core/io/__init__.py +0 -6
  696. exonware_xwsystem-0.0.1.409/tests/0.core/io/runner.py +0 -297
  697. exonware_xwsystem-0.0.1.409/tests/0.core/io/test_core_io_modular_imports.py +0 -33
  698. exonware_xwsystem-0.0.1.409/tests/0.core/io/test_core_xsystem_io.py +0 -460
  699. exonware_xwsystem-0.0.1.409/tests/0.core/monitoring/runner.py +0 -269
  700. exonware_xwsystem-0.0.1.409/tests/0.core/runner.py +0 -567
  701. exonware_xwsystem-0.0.1.409/tests/0.core/security/runner.py +0 -273
  702. exonware_xwsystem-0.0.1.409/tests/0.core/serialization/__init__.py +0 -6
  703. exonware_xwsystem-0.0.1.409/tests/0.core/serialization/runner.py +0 -230
  704. exonware_xwsystem-0.0.1.409/tests/0.core/serialization/test_core_xsystem_serialization.py +0 -388
  705. exonware_xwsystem-0.0.1.409/tests/0.core/threading_tests/runner.py +0 -327
  706. exonware_xwsystem-0.0.1.409/tests/0.core/utils/test_auto_install.py +0 -105
  707. exonware_xwsystem-0.0.1.409/tests/0.core/utils/test_core_lazy_loading.py +0 -83
  708. exonware_xwsystem-0.0.1.409/tests/0.core/utils/test_core_xsystem_utils.py +0 -399
  709. exonware_xwsystem-0.0.1.409/tests/0.core/utils/test_core_xwsystem_utils.py +0 -399
  710. exonware_xwsystem-0.0.1.409/tests/0.core/validation/runner.py +0 -302
  711. exonware_xwsystem-0.0.1.409/tests/0.core/validation/test_core_xsystem_validation.py +0 -618
  712. exonware_xwsystem-0.0.1.409/tests/1.unit/caching/conftest.py +0 -32
  713. exonware_xwsystem-0.0.1.409/tests/1.unit/caching/lru_cache_tests/test_lru_cache.py +0 -141
  714. exonware_xwsystem-0.0.1.409/tests/1.unit/caching/runner.py +0 -94
  715. exonware_xwsystem-0.0.1.409/tests/1.unit/caching/security_tests/test_secure_cache.py +0 -85
  716. exonware_xwsystem-0.0.1.409/tests/1.unit/caching_tests/runner.py +0 -84
  717. exonware_xwsystem-0.0.1.409/tests/1.unit/caching_tests/test_lfu_optimized.py +0 -182
  718. exonware_xwsystem-0.0.1.409/tests/1.unit/caching_tests/test_security.py +0 -248
  719. exonware_xwsystem-0.0.1.409/tests/1.unit/caching_tests/test_validation.py +0 -176
  720. exonware_xwsystem-0.0.1.409/tests/1.unit/codec_tests/conftest.py +0 -67
  721. exonware_xwsystem-0.0.1.409/tests/1.unit/codec_tests/runner.py +0 -92
  722. exonware_xwsystem-0.0.1.409/tests/1.unit/codec_tests/runner_out.md +0 -31
  723. exonware_xwsystem-0.0.1.409/tests/1.unit/codec_tests/test_universal_codec_registry.py +0 -301
  724. exonware_xwsystem-0.0.1.409/tests/1.unit/codec_tests/test_xwio_codec_integration.py +0 -121
  725. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/ALL_ISSUES_RESOLVED.md +0 -233
  726. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/COMPLETENESS_REPORT.md +0 -323
  727. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/CRITICAL_FIXES_APPLIED.md +0 -162
  728. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/FINAL_STATUS.md +0 -280
  729. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/FINAL_VICTORY.md +0 -295
  730. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/FIXES_COMPLETED.md +0 -275
  731. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/README.md +0 -178
  732. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/archive_tests/test_archive_files.py +0 -45
  733. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/archive_tests/test_archivers.py +0 -70
  734. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/archive_tests/test_base.py +0 -46
  735. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/codec_tests/test_base.py +0 -51
  736. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/codec_tests/test_contracts.py +0 -36
  737. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/codec_tests/test_registry.py +0 -76
  738. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/codec_tests/test_simple_examples.py +0 -470
  739. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/common_tests/test_atomic.py +0 -29
  740. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/file_tests/__init__.py +0 -2
  741. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/filesystem_tests/__init__.py +0 -2
  742. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/folder_tests/__init__.py +0 -2
  743. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/runner.py +0 -123
  744. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/runner_out.md +0 -53
  745. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json.py +0 -47
  746. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_json5.py +0 -115
  747. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_jsonlines.py +0 -124
  748. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/test_yaml.py +0 -45
  749. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/serialization_tests/test_base.py +0 -51
  750. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/serialization_tests/test_contracts.py +0 -41
  751. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/serialization_tests/test_registry.py +0 -58
  752. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/stream_tests/__init__.py +0 -2
  753. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/test_base.py +0 -133
  754. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/test_contracts.py +0 -131
  755. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/test_defs.py +0 -121
  756. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/test_errors.py +0 -87
  757. exonware_xwsystem-0.0.1.409/tests/1.unit/io_tests/test_facade.py +0 -76
  758. exonware_xwsystem-0.0.1.409/tests/1.unit/operations_tests/runner.py +0 -123
  759. exonware_xwsystem-0.0.1.409/tests/1.unit/operations_tests/runner_out.md +0 -69
  760. exonware_xwsystem-0.0.1.409/tests/1.unit/operations_tests/test_diff.py +0 -254
  761. exonware_xwsystem-0.0.1.409/tests/1.unit/operations_tests/test_merge.py +0 -286
  762. exonware_xwsystem-0.0.1.409/tests/1.unit/operations_tests/test_patch.py +0 -306
  763. exonware_xwsystem-0.0.1.409/tests/1.unit/performance_tests/test_threading_performance.py +0 -328
  764. exonware_xwsystem-0.0.1.409/tests/1.unit/security_tests/test_crypto_comprehensive.py +0 -428
  765. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/multilingual_emoji_test.py +0 -165
  766. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_all_serializers.py +0 -716
  767. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_bson_debug.py +0 -95
  768. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_complete_optimization.py +0 -374
  769. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_optimization_progress.py +0 -174
  770. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_optimization_simple.py +0 -130
  771. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_optimizations.py +0 -306
  772. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_serialization_basic_features.py +0 -248
  773. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_serialization_security_performance.py +0 -695
  774. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_serialization_worst_case_scenarios.py +0 -864
  775. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_universal_options.py +0 -264
  776. exonware_xwsystem-0.0.1.409/tests/1.unit/serialization_tests/test_xserialization.py +0 -295
  777. exonware_xwsystem-0.0.1.409/tests/1.unit/test_advanced_http.py +0 -491
  778. exonware_xwsystem-0.0.1.409/tests/1.unit/test_async_io.py +0 -294
  779. exonware_xwsystem-0.0.1.409/tests/1.unit/test_direct_mapping.py +0 -74
  780. exonware_xwsystem-0.0.1.409/tests/1.unit/test_dynamic_mapping.py +0 -60
  781. exonware_xwsystem-0.0.1.409/tests/1.unit/utils/runner.py +0 -37
  782. exonware_xwsystem-0.0.1.409/tests/1.unit/utils/runner_out.md +0 -63
  783. exonware_xwsystem-0.0.1.409/tests/1.unit/utils/test_lazy_hook_early_installation.py +0 -266
  784. exonware_xwsystem-0.0.1.409/tests/1.unit/utils/test_lazy_mode_example.py +0 -111
  785. exonware_xwsystem-0.0.1.409/tests/2.integration/caching/runner.py +0 -94
  786. exonware_xwsystem-0.0.1.409/tests/2.integration/caching/test_end_to_end.py +0 -176
  787. exonware_xwsystem-0.0.1.409/tests/2.integration/io_tests/test_end_to_end.py +0 -105
  788. exonware_xwsystem-0.0.1.409/tests/2.integration/io_tests/test_io_codec_integration.py +0 -703
  789. exonware_xwsystem-0.0.1.409/tests/2.integration/io_tests/test_lazy_hook_integration.py +0 -145
  790. exonware_xwsystem-0.0.1.409/tests/2.integration/test_caching_integration.py +0 -270
  791. exonware_xwsystem-0.0.1.409/tests/2.integration/test_security_integration.py +0 -400
  792. exonware_xwsystem-0.0.1.409/tests/3.advance/caching/runner.py +0 -129
  793. exonware_xwsystem-0.0.1.409/tests/3.advance/caching/test_performance.py +0 -95
  794. exonware_xwsystem-0.0.1.409/tests/3.advance/caching/test_security.py +0 -94
  795. exonware_xwsystem-0.0.1.409/tests/3.advance/runner.py +0 -161
  796. exonware_xwsystem-0.0.1.409/tests/3.advance/test_caching_extensibility.py +0 -171
  797. exonware_xwsystem-0.0.1.409/tests/3.advance/test_caching_performance.py +0 -150
  798. exonware_xwsystem-0.0.1.409/tests/3.advance/test_caching_security.py +0 -121
  799. exonware_xwsystem-0.0.1.409/tests/README.md +0 -217
  800. exonware_xwsystem-0.0.1.409/tests/performance/benchmark_suite.py +0 -608
  801. exonware_xwsystem-0.0.1.409/tests/pytest.ini +0 -48
  802. exonware_xwsystem-0.0.1.409/tests/runner.py +0 -290
  803. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/.gitignore +0 -0
  804. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/LICENSE +0 -0
  805. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/caching/USAGE_GUIDE.md +0 -0
  806. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/conf.py +0 -0
  807. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/io/common/path_manager.py +0 -0
  808. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/io/serialization/formats/binary/__init__.py +0 -0
  809. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/io/serialization/formats/database/__init__.py +0 -0
  810. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/io/serialization/formats/text/__init__.py +0 -0
  811. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/ipc/__init__.py +0 -0
  812. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/monitoring/__init__.py +0 -0
  813. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/operations/errors.py +0 -0
  814. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/patterns/__init__.py +0 -0
  815. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/security/__init__.py +0 -0
  816. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/security/resource_limits.py +0 -0
  817. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/threading/__init__.py +0 -0
  818. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/threading/locks.py +0 -0
  819. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/utils/paths.py +0 -0
  820. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/exonware/xwsystem/validation/type_safety.py +0 -0
  821. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/src/xwsystem_wrapper.py +0 -0
  822. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/caching/__init__.py +0 -0
  823. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/caching/conftest.py +0 -0
  824. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/caching/test_core_xsystem_caching.py +0 -0
  825. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/cli/__init__.py +0 -0
  826. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/cli/runner.py +0 -0
  827. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/cli/test_core_xsystem_cli.py +0 -0
  828. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/config/__init__.py +0 -0
  829. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/config/runner.py +0 -0
  830. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/config/test_core_xsystem_config.py +0 -0
  831. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/core/__init__.py +0 -0
  832. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/core/runner.py +0 -0
  833. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/core/test_core_xsystem_core.py +0 -0
  834. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/enterprise/__init__.py +0 -0
  835. {exonware_xwsystem-0.0.1.409/tests/0.core/http → exonware_xwsystem-0.0.1.411/tests/0.core/http_client}/__init__.py +0 -0
  836. {exonware_xwsystem-0.0.1.409/tests/0.core/http → exonware_xwsystem-0.0.1.411/tests/0.core/http_client}/test_core_xsystem_http.py +0 -0
  837. {exonware_xwsystem-0.0.1.409/tests/0.core/serialization → exonware_xwsystem-0.0.1.411/tests/0.core/io}/test_core_serialization_fixed_features.py +0 -0
  838. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/ipc/__init__.py +0 -0
  839. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/ipc/runner.py +0 -0
  840. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/ipc/test_core_xsystem_ipc.py +0 -0
  841. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/ipc/test_core_xwsystem_ipc.py +0 -0
  842. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/monitoring/__init__.py +0 -0
  843. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/monitoring/test_core_xsystem_monitoring.py +0 -0
  844. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/patterns/__init__.py +0 -0
  845. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/patterns/runner.py +0 -0
  846. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/patterns/test_core_xsystem_patterns.py +0 -0
  847. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/performance/__init__.py +0 -0
  848. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/performance/runner.py +0 -0
  849. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/performance/test_core_xsystem_performance.py +0 -0
  850. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/plugins/__init__.py +0 -0
  851. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/plugins/runner.py +0 -0
  852. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/plugins/test_core_xsystem_plugins.py +0 -0
  853. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/runtime/__init__.py +0 -0
  854. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/runtime/runner.py +0 -0
  855. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/runtime/test_core_xsystem_runtime.py +0 -0
  856. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/security/__init__.py +0 -0
  857. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/security/test_core_xsystem_security.py +0 -0
  858. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/serialization/data/config.json +0 -0
  859. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/serialization/data/config.yaml +0 -0
  860. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/serialization/data/test_data.json +0 -0
  861. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/serialization/data/user_data.pkl +0 -0
  862. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/structures/__init__.py +0 -0
  863. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/structures/runner.py +0 -0
  864. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/structures/test_core_xsystem_structures.py +0 -0
  865. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/threading_tests/__init__.py +0 -0
  866. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/threading_tests/test_core_xsystem_threading.py +0 -0
  867. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/utils/__init__.py +0 -0
  868. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/utils/runner.py +0 -0
  869. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/0.core/validation/__init__.py +0 -0
  870. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/caching_tests/__init__.py +0 -0
  871. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/caching_tests/conftest.py +0 -0
  872. {exonware_xwsystem-0.0.1.409/tests/1.unit/caching → exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit}/__init__.py +0 -0
  873. {exonware_xwsystem-0.0.1.409/tests/1.unit/caching → exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit}/lru_cache_tests/__init__.py +0 -0
  874. {exonware_xwsystem-0.0.1.409/tests/1.unit/caching → exonware_xwsystem-0.0.1.411/tests/1.unit/caching_unit}/security_tests/__init__.py +0 -0
  875. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/codec_tests/__init__.py +0 -0
  876. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/config_tests/__init__.py +0 -0
  877. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/config_tests/conftest.py +0 -0
  878. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/config_tests/test_logging_config.py +0 -0
  879. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/FIX_PLAN.md +0 -0
  880. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/RENAMING_COMPLETE.md +0 -0
  881. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/VICTORY_REPORT.md +0 -0
  882. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/__init__.py +0 -0
  883. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/archive_tests/__init__.py +0 -0
  884. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/archive_tests/test_archive_format_metadata.py +0 -0
  885. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/codec_tests/__init__.py +0 -0
  886. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/common_tests/__init__.py +0 -0
  887. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/conftest.py +0 -0
  888. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/serialization_tests/__init__.py +0 -0
  889. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/serialization_tests/formats_tests/__init__.py +0 -0
  890. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/io_tests/serialization_tests/formats_tests/text_tests/__init__.py +0 -0
  891. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/operations_tests/__init__.py +0 -0
  892. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/patterns_tests/__init__.py +0 -0
  893. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/patterns_tests/conftest.py +0 -0
  894. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/patterns_tests/test_handler_factory.py +0 -0
  895. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/performance_tests/__init__.py +0 -0
  896. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/performance_tests/conftest.py +0 -0
  897. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/security_tests/conftest.py +0 -0
  898. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/security_tests/test_input_validation.py +0 -0
  899. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/security_tests/test_path_validator.py +0 -0
  900. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/security_tests/test_security_edge_cases.py +0 -0
  901. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/serialization_tests/__init__.py +0 -0
  902. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/serialization_tests/conftest.py +0 -0
  903. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/serialization_tests/runner.py +0 -0
  904. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/serialization_tests/test_final_optimization.py +0 -0
  905. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/serialization_tests/test_new_serializers.py +0 -0
  906. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/structures_tests/__init__.py +0 -0
  907. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/structures_tests/conftest.py +0 -0
  908. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/structures_tests/test_circular_detector.py +0 -0
  909. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/test_caching.py +0 -0
  910. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/test_core_components.py +0 -0
  911. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/test_ipc.py +0 -0
  912. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/test_standalone_mapping.py +0 -0
  913. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/threading_tests/__init__.py +0 -0
  914. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/threading_tests/conftest.py +0 -0
  915. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/threading_tests/debug_imports.py +0 -0
  916. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/threading_tests/test_threading_utilities.py +0 -0
  917. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/utils/__init__.py +0 -0
  918. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/utils/dt/__init__.py +0 -0
  919. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/utils/dt/runner.py +0 -0
  920. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/1.unit/utils/dt/test_core_xwsystem_utls_dt.py +0 -0
  921. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/2.integration/caching/__init__.py +0 -0
  922. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/2.integration/caching/conftest.py +0 -0
  923. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/2.integration/io_tests/__init__.py +0 -0
  924. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/2.integration/io_tests/test_format_conversion_workflow.py +0 -0
  925. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/2.integration/test_module_interactions.py +0 -0
  926. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/3.advance/__init__.py +0 -0
  927. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/3.advance/caching/__init__.py +0 -0
  928. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/3.advance/conftest.py +0 -0
  929. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/__init__.py +0 -0
  930. {exonware_xwsystem-0.0.1.409 → exonware_xwsystem-0.0.1.411}/tests/conftest.py +0 -0
@@ -0,0 +1,77 @@
1
+ name: Dual PyPI Publish - exonware-xwsystem & xwsystem
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - 'v*' # Triggers on version tags like v0.0.2, v1.0.0, etc.
7
+ workflow_dispatch: # Allows manual trigger of the workflow
8
+
9
+ jobs:
10
+ publish:
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v4
18
+ with:
19
+ python-version: '3.12'
20
+
21
+ - name: Install dependencies
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install build twine
25
+
26
+ - name: Build exonware-xwsystem package
27
+ run: |
28
+ echo "Building exonware-xwsystem package..."
29
+ python -m build
30
+
31
+ - name: Build xwsystem wrapper package
32
+ run: |
33
+ echo "Building xwsystem wrapper package..."
34
+ cp pyproject.toml pyproject.backup.toml
35
+ cp pyproject.xwsystem.toml pyproject.toml
36
+ python -m build --wheel
37
+ mv pyproject.backup.toml pyproject.toml
38
+
39
+ - name: List built packages
40
+ run: |
41
+ echo "Built packages:"
42
+ find dist -name "*.whl" -o -name "*.tar.gz" | sort
43
+
44
+ - name: Publish exonware-xwsystem to PyPI
45
+ env:
46
+ TWINE_USERNAME: __token__
47
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
48
+ run: |
49
+ echo "Publishing exonware-xwsystem to PyPI..."
50
+ ls -la dist/
51
+ twine upload dist/exonware_xwsystem-*.whl dist/exonware_xwsystem-*.tar.gz
52
+
53
+ - name: Publish xwsystem wrapper to PyPI
54
+ env:
55
+ TWINE_USERNAME: __token__
56
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
57
+ run: |
58
+ echo "Publishing xwsystem wrapper to PyPI..."
59
+ twine upload dist/xwsystem-*.whl
60
+
61
+ - name: Success notification
62
+ run: |
63
+ echo "✅ Successfully published both packages:"
64
+ echo " 📦 exonware-xwsystem v${{ github.ref_name }} (full package)"
65
+ echo " 📦 xwsystem v${{ github.ref_name }} (wrapper)"
66
+ echo ""
67
+ echo "PyPI URLs:"
68
+ echo " https://pypi.org/project/exonware-xwsystem/"
69
+ echo " https://pypi.org/project/xwsystem/"
70
+ echo ""
71
+ echo "Install with either:"
72
+ echo " pip install xwsystem[lazy] # Recommended (wrapper)"
73
+ echo " pip install exonware-xwsystem[lazy] # Direct"
74
+ echo ""
75
+ echo "Both import paths work:"
76
+ echo " import xwsystem"
77
+ echo " import exonware.xwsystem"