@btc-vision/bitcoin 6.4.9 → 6.4.11

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 (230) hide show
  1. package/.babelrc +4 -4
  2. package/.mocharc.json +13 -13
  3. package/.prettierrc.json +12 -12
  4. package/CHANGELOG.md +403 -403
  5. package/CONTRIBUTING.md +83 -83
  6. package/LICENSE +21 -21
  7. package/README.md +201 -201
  8. package/browser/index.d.ts +1 -1
  9. package/browser/index.js +1 -1
  10. package/browser/{ops.d.ts → opcodes.d.ts} +2 -3
  11. package/browser/script.d.ts +2 -2
  12. package/build/address.js +2 -1
  13. package/build/index.d.ts +1 -1
  14. package/build/index.js +1 -1
  15. package/build/{ops.d.ts → opcodes.d.ts} +2 -3
  16. package/build/{ops.js → opcodes.js} +4 -5
  17. package/build/payments/embed.js +1 -1
  18. package/build/payments/p2ms.js +1 -1
  19. package/build/payments/p2op.js +1 -1
  20. package/build/payments/p2pk.js +1 -1
  21. package/build/payments/p2pkh.js +1 -1
  22. package/build/payments/p2sh.js +3 -3
  23. package/build/payments/p2tr.js +1 -1
  24. package/build/payments/p2wpkh.js +2 -2
  25. package/build/payments/p2wsh.js +2 -2
  26. package/build/push_data.js +9 -9
  27. package/build/script.d.ts +2 -2
  28. package/build/script.js +12 -12
  29. package/build/transaction.js +1 -1
  30. package/cjs/package.json +3 -3
  31. package/gulpfile.js +42 -42
  32. package/package.json +150 -150
  33. package/src/address.ts +304 -303
  34. package/src/bip66.ts +107 -107
  35. package/src/block.ts +233 -233
  36. package/src/bufferutils.ts +188 -188
  37. package/src/crypto.ts +108 -108
  38. package/src/ecc_lib.ts +94 -94
  39. package/src/hooks/AdvancedSignatureManager.ts +104 -104
  40. package/src/hooks/SignatureManager.ts +84 -84
  41. package/src/index.ts +105 -105
  42. package/src/merkle.ts +31 -31
  43. package/src/{ops.ts → opcodes.ts} +280 -282
  44. package/src/payments/bip341.ts +140 -140
  45. package/src/payments/embed.ts +61 -61
  46. package/src/payments/index.ts +172 -172
  47. package/src/payments/lazy.ts +28 -28
  48. package/src/payments/p2ms.ts +156 -156
  49. package/src/payments/p2op.ts +195 -195
  50. package/src/payments/p2pk.ts +93 -93
  51. package/src/payments/p2pkh.ts +214 -214
  52. package/src/payments/p2sh.ts +210 -210
  53. package/src/payments/p2tr.ts +309 -309
  54. package/src/payments/p2wpkh.ts +144 -144
  55. package/src/payments/p2wsh.ts +217 -217
  56. package/src/psbt/bip371.ts +441 -441
  57. package/src/push_data.ts +97 -97
  58. package/src/script.ts +247 -247
  59. package/src/script_number.ts +72 -72
  60. package/src/script_signature.ts +91 -91
  61. package/src/transaction.ts +656 -656
  62. package/test/address.spec.ts +155 -155
  63. package/test/bitcoin.core.spec.ts +212 -212
  64. package/test/block.spec.ts +171 -171
  65. package/test/bufferutils.spec.ts +450 -450
  66. package/test/crypto.spec.ts +49 -49
  67. package/test/fixtures/address.json +329 -329
  68. package/test/fixtures/block.json +148 -148
  69. package/test/fixtures/bufferutils.json +102 -102
  70. package/test/fixtures/core/README.md +26 -26
  71. package/test/fixtures/core/base58_encode_decode.json +50 -50
  72. package/test/fixtures/core/base58_keys_invalid.json +152 -152
  73. package/test/fixtures/core/base58_keys_valid.json +452 -452
  74. package/test/fixtures/core/blocks.json +27 -27
  75. package/test/fixtures/core/sig_canonical.json +7 -7
  76. package/test/fixtures/core/sig_noncanonical.json +33 -33
  77. package/test/fixtures/core/sighash.json +3505 -3505
  78. package/test/fixtures/core/tx_valid.json +2023 -2023
  79. package/test/fixtures/crypto.json +43 -43
  80. package/test/fixtures/ecdsa.json +217 -217
  81. package/test/fixtures/ecpair.json +141 -141
  82. package/test/fixtures/embed.json +108 -108
  83. package/test/fixtures/p2ms.json +434 -434
  84. package/test/fixtures/p2pk.json +179 -179
  85. package/test/fixtures/p2pkh.json +276 -276
  86. package/test/fixtures/p2sh.json +508 -508
  87. package/test/fixtures/p2tr.json +1198 -1198
  88. package/test/fixtures/p2wpkh.json +290 -290
  89. package/test/fixtures/p2wsh.json +489 -489
  90. package/test/fixtures/psbt.json +924 -924
  91. package/test/fixtures/script.json +465 -465
  92. package/test/fixtures/script_number.json +225 -225
  93. package/test/fixtures/signature.json +140 -140
  94. package/test/fixtures/transaction.json +916 -916
  95. package/test/integration/_regtest.ts +6 -6
  96. package/test/integration/addresses.spec.ts +142 -142
  97. package/test/integration/bip32.spec.ts +130 -130
  98. package/test/integration/blocks.spec.ts +28 -28
  99. package/test/integration/cltv.spec.ts +241 -241
  100. package/test/integration/csv.spec.ts +452 -452
  101. package/test/integration/payments.spec.ts +110 -110
  102. package/test/integration/taproot.spec.ts +663 -663
  103. package/test/integration/transactions.spec.ts +668 -668
  104. package/test/payments.spec.ts +114 -114
  105. package/test/payments.utils.ts +165 -165
  106. package/test/psbt.spec.ts +1285 -1285
  107. package/test/script.spec.ts +186 -186
  108. package/test/script_number.spec.ts +26 -26
  109. package/test/script_signature.spec.ts +66 -66
  110. package/test/transaction.spec.ts +337 -337
  111. package/test/ts-node-register.js +7 -7
  112. package/test/tsconfig.json +48 -48
  113. package/test/types.spec.ts +53 -53
  114. package/tsconfig.base.json +27 -27
  115. package/tsconfig.json +19 -19
  116. package/tsconfig.webpack.json +18 -18
  117. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/.ready +0 -0
  118. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/.release-please-manifest.json +0 -3
  119. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/CHANGELOG.md +0 -962
  120. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/CONTRIBUTING.md +0 -34
  121. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/LICENSE +0 -24
  122. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/README.md +0 -273
  123. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/SECURITY.md +0 -2
  124. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/addon.gypi +0 -204
  125. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/bin/node-gyp.js +0 -138
  126. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/.release-please-manifest.json +0 -3
  127. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/LICENSE +0 -28
  128. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/data/ninja/build.ninja +0 -4
  129. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +0 -12
  130. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/docs/GypVsCMake.md +0 -116
  131. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/docs/Hacking.md +0 -46
  132. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/docs/InputFormatReference.md +0 -1080
  133. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/docs/LanguageSpecification.md +0 -430
  134. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/docs/README.md +0 -27
  135. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/docs/Testing.md +0 -450
  136. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/docs/UserDocumentation.md +0 -965
  137. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/gyp +0 -8
  138. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/gyp.bat +0 -5
  139. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/gyp_main.py +0 -45
  140. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +0 -365
  141. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +0 -206
  142. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +0 -1272
  143. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +0 -1547
  144. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +0 -59
  145. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +0 -153
  146. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +0 -271
  147. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +0 -574
  148. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +0 -692
  149. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/common.py +0 -711
  150. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +0 -171
  151. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +0 -169
  152. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +0 -113
  153. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +0 -55
  154. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
  155. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +0 -804
  156. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +0 -1173
  157. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +0 -1318
  158. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +0 -127
  159. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +0 -103
  160. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +0 -461
  161. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +0 -89
  162. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +0 -57
  163. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +0 -2745
  164. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +0 -3976
  165. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +0 -44
  166. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +0 -2964
  167. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +0 -67
  168. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +0 -1391
  169. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +0 -25
  170. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/input.py +0 -3115
  171. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +0 -98
  172. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +0 -771
  173. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +0 -1260
  174. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +0 -174
  175. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +0 -61
  176. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +0 -373
  177. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +0 -1938
  178. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation_test.py +0 -53
  179. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +0 -302
  180. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +0 -3198
  181. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +0 -65
  182. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +0 -3
  183. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +0 -177
  184. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +0 -23
  185. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +0 -15
  186. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +0 -108
  187. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +0 -252
  188. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +0 -83
  189. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +0 -359
  190. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +0 -61
  191. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +0 -192
  192. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/markers.py +0 -252
  193. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +0 -825
  194. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
  195. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +0 -90
  196. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +0 -1030
  197. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/tags.py +0 -553
  198. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/utils.py +0 -172
  199. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pylib/packaging/version.py +0 -563
  200. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/pyproject.toml +0 -120
  201. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/release-please-config.json +0 -11
  202. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/gyp/test_gyp.py +0 -261
  203. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/Find-VisualStudio.cs +0 -250
  204. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/build.js +0 -227
  205. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/clean.js +0 -15
  206. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/configure.js +0 -328
  207. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/create-config-gypi.js +0 -150
  208. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/download.js +0 -39
  209. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/find-node-directory.js +0 -63
  210. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/find-python.js +0 -310
  211. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/find-visualstudio.js +0 -590
  212. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/install.js +0 -415
  213. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/list.js +0 -26
  214. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/log.js +0 -168
  215. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/node-gyp.js +0 -188
  216. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/process-release.js +0 -146
  217. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/rebuild.js +0 -12
  218. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/remove.js +0 -43
  219. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/lib/util.js +0 -81
  220. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/macOS_Catalina_acid_test.sh +0 -21
  221. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/package.json +0 -51
  222. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/release-please-config.json +0 -40
  223. package/.yarn/unplugged/node-gyp-npm-10.2.0-cad1109948/node_modules/node-gyp/src/win_delay_load_hook.cc +0 -39
  224. package/coverage/tmp/coverage-31752-1735543485354-0.json +0 -1
  225. package/coverage/tmp/coverage-59920-1735543484555-0.json +0 -1
  226. package/coverage/tmp/coverage-66252-1735543483919-0.json +0 -1
  227. package/coverage/tmp/coverage-68440-1735543485236-0.json +0 -1
  228. package/coverage/tmp/coverage-70588-1735543484426-0.json +0 -1
  229. package/coverage/tmp/coverage-79292-1735543485296-0.json +0 -1
  230. package/coverage/tmp/coverage-80212-1735543483980-0.json +0 -1
@@ -1,83 +0,0 @@
1
- """PEP 656 support.
2
-
3
- This module implements logic to detect if the currently running Python is
4
- linked against musl, and what musl version is used.
5
- """
6
-
7
- import functools
8
- import re
9
- import subprocess
10
- import sys
11
- from typing import Iterator, NamedTuple, Optional, Sequence
12
-
13
- from ._elffile import ELFFile
14
-
15
-
16
- class _MuslVersion(NamedTuple):
17
- major: int
18
- minor: int
19
-
20
-
21
- def _parse_musl_version(output: str) -> Optional[_MuslVersion]:
22
- lines = [n for n in (n.strip() for n in output.splitlines()) if n]
23
- if len(lines) < 2 or lines[0][:4] != "musl":
24
- return None
25
- m = re.match(r"Version (\d+)\.(\d+)", lines[1])
26
- if not m:
27
- return None
28
- return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2)))
29
-
30
-
31
- @functools.lru_cache()
32
- def _get_musl_version(executable: str) -> Optional[_MuslVersion]:
33
- """Detect currently-running musl runtime version.
34
-
35
- This is done by checking the specified executable's dynamic linking
36
- information, and invoking the loader to parse its output for a version
37
- string. If the loader is musl, the output would be something like::
38
-
39
- musl libc (x86_64)
40
- Version 1.2.2
41
- Dynamic Program Loader
42
- """
43
- try:
44
- with open(executable, "rb") as f:
45
- ld = ELFFile(f).interpreter
46
- except (OSError, TypeError, ValueError):
47
- return None
48
- if ld is None or "musl" not in ld:
49
- return None
50
- proc = subprocess.run([ld], stderr=subprocess.PIPE, text=True)
51
- return _parse_musl_version(proc.stderr)
52
-
53
-
54
- def platform_tags(archs: Sequence[str]) -> Iterator[str]:
55
- """Generate musllinux tags compatible to the current platform.
56
-
57
- :param archs: Sequence of compatible architectures.
58
- The first one shall be the closest to the actual architecture and be the part of
59
- platform tag after the ``linux_`` prefix, e.g. ``x86_64``.
60
- The ``linux_`` prefix is assumed as a prerequisite for the current platform to
61
- be musllinux-compatible.
62
-
63
- :returns: An iterator of compatible musllinux tags.
64
- """
65
- sys_musl = _get_musl_version(sys.executable)
66
- if sys_musl is None: # Python not dynamically linked against musl.
67
- return
68
- for arch in archs:
69
- for minor in range(sys_musl.minor, -1, -1):
70
- yield f"musllinux_{sys_musl.major}_{minor}_{arch}"
71
-
72
-
73
- if __name__ == "__main__": # pragma: no cover
74
- import sysconfig
75
-
76
- plat = sysconfig.get_platform()
77
- assert plat.startswith("linux-"), "not linux"
78
-
79
- print("plat:", plat)
80
- print("musl:", _get_musl_version(sys.executable))
81
- print("tags:", end=" ")
82
- for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])):
83
- print(t, end="\n ")
@@ -1,359 +0,0 @@
1
- """Handwritten parser of dependency specifiers.
2
-
3
- The docstring for each __parse_* function contains ENBF-inspired grammar representing
4
- the implementation.
5
- """
6
-
7
- import ast
8
- from typing import Any, List, NamedTuple, Optional, Tuple, Union
9
-
10
- from ._tokenizer import DEFAULT_RULES, Tokenizer
11
-
12
-
13
- class Node:
14
- def __init__(self, value: str) -> None:
15
- self.value = value
16
-
17
- def __str__(self) -> str:
18
- return self.value
19
-
20
- def __repr__(self) -> str:
21
- return f"<{self.__class__.__name__}('{self}')>"
22
-
23
- def serialize(self) -> str:
24
- raise NotImplementedError
25
-
26
-
27
- class Variable(Node):
28
- def serialize(self) -> str:
29
- return str(self)
30
-
31
-
32
- class Value(Node):
33
- def serialize(self) -> str:
34
- return f'"{self}"'
35
-
36
-
37
- class Op(Node):
38
- def serialize(self) -> str:
39
- return str(self)
40
-
41
-
42
- MarkerVar = Union[Variable, Value]
43
- MarkerItem = Tuple[MarkerVar, Op, MarkerVar]
44
- # MarkerAtom = Union[MarkerItem, List["MarkerAtom"]]
45
- # MarkerList = List[Union["MarkerList", MarkerAtom, str]]
46
- # mypy does not support recursive type definition
47
- # https://github.com/python/mypy/issues/731
48
- MarkerAtom = Any
49
- MarkerList = List[Any]
50
-
51
-
52
- class ParsedRequirement(NamedTuple):
53
- name: str
54
- url: str
55
- extras: List[str]
56
- specifier: str
57
- marker: Optional[MarkerList]
58
-
59
-
60
- # --------------------------------------------------------------------------------------
61
- # Recursive descent parser for dependency specifier
62
- # --------------------------------------------------------------------------------------
63
- def parse_requirement(source: str) -> ParsedRequirement:
64
- return _parse_requirement(Tokenizer(source, rules=DEFAULT_RULES))
65
-
66
-
67
- def _parse_requirement(tokenizer: Tokenizer) -> ParsedRequirement:
68
- """
69
- requirement = WS? IDENTIFIER WS? extras WS? requirement_details
70
- """
71
- tokenizer.consume("WS")
72
-
73
- name_token = tokenizer.expect(
74
- "IDENTIFIER", expected="package name at the start of dependency specifier"
75
- )
76
- name = name_token.text
77
- tokenizer.consume("WS")
78
-
79
- extras = _parse_extras(tokenizer)
80
- tokenizer.consume("WS")
81
-
82
- url, specifier, marker = _parse_requirement_details(tokenizer)
83
- tokenizer.expect("END", expected="end of dependency specifier")
84
-
85
- return ParsedRequirement(name, url, extras, specifier, marker)
86
-
87
-
88
- def _parse_requirement_details(
89
- tokenizer: Tokenizer,
90
- ) -> Tuple[str, str, Optional[MarkerList]]:
91
- """
92
- requirement_details = AT URL (WS requirement_marker?)?
93
- | specifier WS? (requirement_marker)?
94
- """
95
-
96
- specifier = ""
97
- url = ""
98
- marker = None
99
-
100
- if tokenizer.check("AT"):
101
- tokenizer.read()
102
- tokenizer.consume("WS")
103
-
104
- url_start = tokenizer.position
105
- url = tokenizer.expect("URL", expected="URL after @").text
106
- if tokenizer.check("END", peek=True):
107
- return (url, specifier, marker)
108
-
109
- tokenizer.expect("WS", expected="whitespace after URL")
110
-
111
- # The input might end after whitespace.
112
- if tokenizer.check("END", peek=True):
113
- return (url, specifier, marker)
114
-
115
- marker = _parse_requirement_marker(
116
- tokenizer, span_start=url_start, after="URL and whitespace"
117
- )
118
- else:
119
- specifier_start = tokenizer.position
120
- specifier = _parse_specifier(tokenizer)
121
- tokenizer.consume("WS")
122
-
123
- if tokenizer.check("END", peek=True):
124
- return (url, specifier, marker)
125
-
126
- marker = _parse_requirement_marker(
127
- tokenizer,
128
- span_start=specifier_start,
129
- after=(
130
- "version specifier"
131
- if specifier
132
- else "name and no valid version specifier"
133
- ),
134
- )
135
-
136
- return (url, specifier, marker)
137
-
138
-
139
- def _parse_requirement_marker(
140
- tokenizer: Tokenizer, *, span_start: int, after: str
141
- ) -> MarkerList:
142
- """
143
- requirement_marker = SEMICOLON marker WS?
144
- """
145
-
146
- if not tokenizer.check("SEMICOLON"):
147
- tokenizer.raise_syntax_error(
148
- f"Expected end or semicolon (after {after})",
149
- span_start=span_start,
150
- )
151
- tokenizer.read()
152
-
153
- marker = _parse_marker(tokenizer)
154
- tokenizer.consume("WS")
155
-
156
- return marker
157
-
158
-
159
- def _parse_extras(tokenizer: Tokenizer) -> List[str]:
160
- """
161
- extras = (LEFT_BRACKET wsp* extras_list? wsp* RIGHT_BRACKET)?
162
- """
163
- if not tokenizer.check("LEFT_BRACKET", peek=True):
164
- return []
165
-
166
- with tokenizer.enclosing_tokens(
167
- "LEFT_BRACKET",
168
- "RIGHT_BRACKET",
169
- around="extras",
170
- ):
171
- tokenizer.consume("WS")
172
- extras = _parse_extras_list(tokenizer)
173
- tokenizer.consume("WS")
174
-
175
- return extras
176
-
177
-
178
- def _parse_extras_list(tokenizer: Tokenizer) -> List[str]:
179
- """
180
- extras_list = identifier (wsp* ',' wsp* identifier)*
181
- """
182
- extras: List[str] = []
183
-
184
- if not tokenizer.check("IDENTIFIER"):
185
- return extras
186
-
187
- extras.append(tokenizer.read().text)
188
-
189
- while True:
190
- tokenizer.consume("WS")
191
- if tokenizer.check("IDENTIFIER", peek=True):
192
- tokenizer.raise_syntax_error("Expected comma between extra names")
193
- elif not tokenizer.check("COMMA"):
194
- break
195
-
196
- tokenizer.read()
197
- tokenizer.consume("WS")
198
-
199
- extra_token = tokenizer.expect("IDENTIFIER", expected="extra name after comma")
200
- extras.append(extra_token.text)
201
-
202
- return extras
203
-
204
-
205
- def _parse_specifier(tokenizer: Tokenizer) -> str:
206
- """
207
- specifier = LEFT_PARENTHESIS WS? version_many WS? RIGHT_PARENTHESIS
208
- | WS? version_many WS?
209
- """
210
- with tokenizer.enclosing_tokens(
211
- "LEFT_PARENTHESIS",
212
- "RIGHT_PARENTHESIS",
213
- around="version specifier",
214
- ):
215
- tokenizer.consume("WS")
216
- parsed_specifiers = _parse_version_many(tokenizer)
217
- tokenizer.consume("WS")
218
-
219
- return parsed_specifiers
220
-
221
-
222
- def _parse_version_many(tokenizer: Tokenizer) -> str:
223
- """
224
- version_many = (SPECIFIER (WS? COMMA WS? SPECIFIER)*)?
225
- """
226
- parsed_specifiers = ""
227
- while tokenizer.check("SPECIFIER"):
228
- span_start = tokenizer.position
229
- parsed_specifiers += tokenizer.read().text
230
- if tokenizer.check("VERSION_PREFIX_TRAIL", peek=True):
231
- tokenizer.raise_syntax_error(
232
- ".* suffix can only be used with `==` or `!=` operators",
233
- span_start=span_start,
234
- span_end=tokenizer.position + 1,
235
- )
236
- if tokenizer.check("VERSION_LOCAL_LABEL_TRAIL", peek=True):
237
- tokenizer.raise_syntax_error(
238
- "Local version label can only be used with `==` or `!=` operators",
239
- span_start=span_start,
240
- span_end=tokenizer.position,
241
- )
242
- tokenizer.consume("WS")
243
- if not tokenizer.check("COMMA"):
244
- break
245
- parsed_specifiers += tokenizer.read().text
246
- tokenizer.consume("WS")
247
-
248
- return parsed_specifiers
249
-
250
-
251
- # --------------------------------------------------------------------------------------
252
- # Recursive descent parser for marker expression
253
- # --------------------------------------------------------------------------------------
254
- def parse_marker(source: str) -> MarkerList:
255
- return _parse_full_marker(Tokenizer(source, rules=DEFAULT_RULES))
256
-
257
-
258
- def _parse_full_marker(tokenizer: Tokenizer) -> MarkerList:
259
- retval = _parse_marker(tokenizer)
260
- tokenizer.expect("END", expected="end of marker expression")
261
- return retval
262
-
263
-
264
- def _parse_marker(tokenizer: Tokenizer) -> MarkerList:
265
- """
266
- marker = marker_atom (BOOLOP marker_atom)+
267
- """
268
- expression = [_parse_marker_atom(tokenizer)]
269
- while tokenizer.check("BOOLOP"):
270
- token = tokenizer.read()
271
- expr_right = _parse_marker_atom(tokenizer)
272
- expression.extend((token.text, expr_right))
273
- return expression
274
-
275
-
276
- def _parse_marker_atom(tokenizer: Tokenizer) -> MarkerAtom:
277
- """
278
- marker_atom = WS? LEFT_PARENTHESIS WS? marker WS? RIGHT_PARENTHESIS WS?
279
- | WS? marker_item WS?
280
- """
281
-
282
- tokenizer.consume("WS")
283
- if tokenizer.check("LEFT_PARENTHESIS", peek=True):
284
- with tokenizer.enclosing_tokens(
285
- "LEFT_PARENTHESIS",
286
- "RIGHT_PARENTHESIS",
287
- around="marker expression",
288
- ):
289
- tokenizer.consume("WS")
290
- marker: MarkerAtom = _parse_marker(tokenizer)
291
- tokenizer.consume("WS")
292
- else:
293
- marker = _parse_marker_item(tokenizer)
294
- tokenizer.consume("WS")
295
- return marker
296
-
297
-
298
- def _parse_marker_item(tokenizer: Tokenizer) -> MarkerItem:
299
- """
300
- marker_item = WS? marker_var WS? marker_op WS? marker_var WS?
301
- """
302
- tokenizer.consume("WS")
303
- marker_var_left = _parse_marker_var(tokenizer)
304
- tokenizer.consume("WS")
305
- marker_op = _parse_marker_op(tokenizer)
306
- tokenizer.consume("WS")
307
- marker_var_right = _parse_marker_var(tokenizer)
308
- tokenizer.consume("WS")
309
- return (marker_var_left, marker_op, marker_var_right)
310
-
311
-
312
- def _parse_marker_var(tokenizer: Tokenizer) -> MarkerVar:
313
- """
314
- marker_var = VARIABLE | QUOTED_STRING
315
- """
316
- if tokenizer.check("VARIABLE"):
317
- return process_env_var(tokenizer.read().text.replace(".", "_"))
318
- elif tokenizer.check("QUOTED_STRING"):
319
- return process_python_str(tokenizer.read().text)
320
- else:
321
- tokenizer.raise_syntax_error(
322
- message="Expected a marker variable or quoted string"
323
- )
324
-
325
-
326
- def process_env_var(env_var: str) -> Variable:
327
- if (
328
- env_var == "platform_python_implementation"
329
- or env_var == "python_implementation"
330
- ):
331
- return Variable("platform_python_implementation")
332
- else:
333
- return Variable(env_var)
334
-
335
-
336
- def process_python_str(python_str: str) -> Value:
337
- value = ast.literal_eval(python_str)
338
- return Value(str(value))
339
-
340
-
341
- def _parse_marker_op(tokenizer: Tokenizer) -> Op:
342
- """
343
- marker_op = IN | NOT IN | OP
344
- """
345
- if tokenizer.check("IN"):
346
- tokenizer.read()
347
- return Op("in")
348
- elif tokenizer.check("NOT"):
349
- tokenizer.read()
350
- tokenizer.expect("WS", expected="whitespace after 'not'")
351
- tokenizer.expect("IN", expected="'in' after 'not'")
352
- return Op("not in")
353
- elif tokenizer.check("OP"):
354
- return Op(tokenizer.read().text)
355
- else:
356
- return tokenizer.raise_syntax_error(
357
- "Expected marker operator, one of "
358
- "<=, <, !=, ==, >=, >, ~=, ===, in, not in"
359
- )
@@ -1,61 +0,0 @@
1
- # This file is dual licensed under the terms of the Apache License, Version
2
- # 2.0, and the BSD License. See the LICENSE file in the root of this repository
3
- # for complete details.
4
-
5
-
6
- class InfinityType:
7
- def __repr__(self) -> str:
8
- return "Infinity"
9
-
10
- def __hash__(self) -> int:
11
- return hash(repr(self))
12
-
13
- def __lt__(self, other: object) -> bool:
14
- return False
15
-
16
- def __le__(self, other: object) -> bool:
17
- return False
18
-
19
- def __eq__(self, other: object) -> bool:
20
- return isinstance(other, self.__class__)
21
-
22
- def __gt__(self, other: object) -> bool:
23
- return True
24
-
25
- def __ge__(self, other: object) -> bool:
26
- return True
27
-
28
- def __neg__(self: object) -> "NegativeInfinityType":
29
- return NegativeInfinity
30
-
31
-
32
- Infinity = InfinityType()
33
-
34
-
35
- class NegativeInfinityType:
36
- def __repr__(self) -> str:
37
- return "-Infinity"
38
-
39
- def __hash__(self) -> int:
40
- return hash(repr(self))
41
-
42
- def __lt__(self, other: object) -> bool:
43
- return True
44
-
45
- def __le__(self, other: object) -> bool:
46
- return True
47
-
48
- def __eq__(self, other: object) -> bool:
49
- return isinstance(other, self.__class__)
50
-
51
- def __gt__(self, other: object) -> bool:
52
- return False
53
-
54
- def __ge__(self, other: object) -> bool:
55
- return False
56
-
57
- def __neg__(self: object) -> InfinityType:
58
- return Infinity
59
-
60
-
61
- NegativeInfinity = NegativeInfinityType()
@@ -1,192 +0,0 @@
1
- import contextlib
2
- import re
3
- from dataclasses import dataclass
4
- from typing import Dict, Iterator, NoReturn, Optional, Tuple, Union
5
-
6
- from .specifiers import Specifier
7
-
8
-
9
- @dataclass
10
- class Token:
11
- name: str
12
- text: str
13
- position: int
14
-
15
-
16
- class ParserSyntaxError(Exception):
17
- """The provided source text could not be parsed correctly."""
18
-
19
- def __init__(
20
- self,
21
- message: str,
22
- *,
23
- source: str,
24
- span: Tuple[int, int],
25
- ) -> None:
26
- self.span = span
27
- self.message = message
28
- self.source = source
29
-
30
- super().__init__()
31
-
32
- def __str__(self) -> str:
33
- marker = " " * self.span[0] + "~" * (self.span[1] - self.span[0]) + "^"
34
- return "\n ".join([self.message, self.source, marker])
35
-
36
-
37
- DEFAULT_RULES: "Dict[str, Union[str, re.Pattern[str]]]" = {
38
- "LEFT_PARENTHESIS": r"\(",
39
- "RIGHT_PARENTHESIS": r"\)",
40
- "LEFT_BRACKET": r"\[",
41
- "RIGHT_BRACKET": r"\]",
42
- "SEMICOLON": r";",
43
- "COMMA": r",",
44
- "QUOTED_STRING": re.compile(
45
- r"""
46
- (
47
- ('[^']*')
48
- |
49
- ("[^"]*")
50
- )
51
- """,
52
- re.VERBOSE,
53
- ),
54
- "OP": r"(===|==|~=|!=|<=|>=|<|>)",
55
- "BOOLOP": r"\b(or|and)\b",
56
- "IN": r"\bin\b",
57
- "NOT": r"\bnot\b",
58
- "VARIABLE": re.compile(
59
- r"""
60
- \b(
61
- python_version
62
- |python_full_version
63
- |os[._]name
64
- |sys[._]platform
65
- |platform_(release|system)
66
- |platform[._](version|machine|python_implementation)
67
- |python_implementation
68
- |implementation_(name|version)
69
- |extra
70
- )\b
71
- """,
72
- re.VERBOSE,
73
- ),
74
- "SPECIFIER": re.compile(
75
- Specifier._operator_regex_str + Specifier._version_regex_str,
76
- re.VERBOSE | re.IGNORECASE,
77
- ),
78
- "AT": r"\@",
79
- "URL": r"[^ \t]+",
80
- "IDENTIFIER": r"\b[a-zA-Z0-9][a-zA-Z0-9._-]*\b",
81
- "VERSION_PREFIX_TRAIL": r"\.\*",
82
- "VERSION_LOCAL_LABEL_TRAIL": r"\+[a-z0-9]+(?:[-_\.][a-z0-9]+)*",
83
- "WS": r"[ \t]+",
84
- "END": r"$",
85
- }
86
-
87
-
88
- class Tokenizer:
89
- """Context-sensitive token parsing.
90
-
91
- Provides methods to examine the input stream to check whether the next token
92
- matches.
93
- """
94
-
95
- def __init__(
96
- self,
97
- source: str,
98
- *,
99
- rules: "Dict[str, Union[str, re.Pattern[str]]]",
100
- ) -> None:
101
- self.source = source
102
- self.rules: Dict[str, re.Pattern[str]] = {
103
- name: re.compile(pattern) for name, pattern in rules.items()
104
- }
105
- self.next_token: Optional[Token] = None
106
- self.position = 0
107
-
108
- def consume(self, name: str) -> None:
109
- """Move beyond provided token name, if at current position."""
110
- if self.check(name):
111
- self.read()
112
-
113
- def check(self, name: str, *, peek: bool = False) -> bool:
114
- """Check whether the next token has the provided name.
115
-
116
- By default, if the check succeeds, the token *must* be read before
117
- another check. If `peek` is set to `True`, the token is not loaded and
118
- would need to be checked again.
119
- """
120
- assert (
121
- self.next_token is None
122
- ), f"Cannot check for {name!r}, already have {self.next_token!r}"
123
- assert name in self.rules, f"Unknown token name: {name!r}"
124
-
125
- expression = self.rules[name]
126
-
127
- match = expression.match(self.source, self.position)
128
- if match is None:
129
- return False
130
- if not peek:
131
- self.next_token = Token(name, match[0], self.position)
132
- return True
133
-
134
- def expect(self, name: str, *, expected: str) -> Token:
135
- """Expect a certain token name next, failing with a syntax error otherwise.
136
-
137
- The token is *not* read.
138
- """
139
- if not self.check(name):
140
- raise self.raise_syntax_error(f"Expected {expected}")
141
- return self.read()
142
-
143
- def read(self) -> Token:
144
- """Consume the next token and return it."""
145
- token = self.next_token
146
- assert token is not None
147
-
148
- self.position += len(token.text)
149
- self.next_token = None
150
-
151
- return token
152
-
153
- def raise_syntax_error(
154
- self,
155
- message: str,
156
- *,
157
- span_start: Optional[int] = None,
158
- span_end: Optional[int] = None,
159
- ) -> NoReturn:
160
- """Raise ParserSyntaxError at the given position."""
161
- span = (
162
- self.position if span_start is None else span_start,
163
- self.position if span_end is None else span_end,
164
- )
165
- raise ParserSyntaxError(
166
- message,
167
- source=self.source,
168
- span=span,
169
- )
170
-
171
- @contextlib.contextmanager
172
- def enclosing_tokens(
173
- self, open_token: str, close_token: str, *, around: str
174
- ) -> Iterator[None]:
175
- if self.check(open_token):
176
- open_position = self.position
177
- self.read()
178
- else:
179
- open_position = None
180
-
181
- yield
182
-
183
- if open_position is None:
184
- return
185
-
186
- if not self.check(close_token):
187
- self.raise_syntax_error(
188
- f"Expected matching {close_token} for {open_token}, after {around}",
189
- span_start=open_position,
190
- )
191
-
192
- self.read()