-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranspile.js
538 lines (477 loc) · 26.8 KB
/
transpile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
"use strict";
const fs = require ('fs')
const log = require ('ololog')
const ansi = require ('ansicolor').nice
//-----------------------------------------------------------------------------
function regexAll (text, array) {
for (let i in array) {
let regex = array[i][0]
regex = typeof regex == 'string' ? new RegExp (regex, 'g') : new RegExp (regex)
text = text.replace (regex, array[i][1])
}
return text
}
//-----------------------------------------------------------------------------
let ccxtjs = fs.readFileSync ('ccxt.js', 'utf8')
let contents = ccxtjs.match (/\/\/====(?:[\s\S]+?)\/\/====/) [0]
let exchanges
let regex = /^var ([\S]+) =\s*(?:extend\s*\(([^\,]+)\,\s*)?{([\s\S]+?)^}/gm // exchange class
let python = []
let pythonAsync = []
let php = []
//-----------------------------------------------------------------------------
while (exchanges = regex.exec (contents)) {
let id = exchanges[1]
let parent = exchanges[2]
let all = exchanges[3].trim ().split (/\,\s*\n\s*\n/)
let params = ' ' + all[0]
let methods = all.slice (1)
let py = []
let pyAsync = []
let ph = []
params = params.split ("\n")
let pyParams = params
.join ("\n ")
.replace (/ true/g, ' True')
.replace (/ false/g, ' False')
.replace (/ undefined/g, ' None')
.replace (/ \/\//g, ' #')
.replace (/([^\n\s]) \#/g, '$1 #') // PEP8 E261
.replace (/\{ /g, '{') // PEP8 E201
.replace (/\[ /g, '[') // PEP8 E201
.replace (/([^\s]+) (\]+)/g, '$1$2') // PEP8 E202
.replace (/([^\s]+) (\}+)\,/g, '$1$2,') // PEP8 E202
function pyAddClass (py) {
py.push ('')
py.push ('')
py.push ('class ' + id + ' (' + (parent ? parent : 'Exchange') + '):')
py.push ('')
py.push (' def __init__(self, config={}):')
py.push (' params = {')
py.push (' ' + pyParams + ((all.length > 1) ? ',' : ''))
py.push (' }')
py.push (' params.update(config)')
py.push (' super(' + id + ', self).__init__(params)')
}
pyAddClass (py);
pyAddClass (pyAsync);
let phParams = params
.join ("\n ")
.replace (/ undefined/g, ' null')
.replace (/': /g, "' => ")
.replace (/ {/g, ' array (')
.replace (/ \[/g, ' array (')
.replace (/\}\s?\}\s?\}([\,\n]|$)/g, ')))$1')
.replace (/\}\s?\}([\,\n]|$)/g, '))$1')
.replace (/\}([\,\n]|$)/g, ')$1')
.replace (/\]\]/g, '))')
.replace (/\]/g, ')')
ph.push ('')
ph.push ('class ' + id + ' extends ' + (parent ? parent : 'Exchange') + ' {')
ph.push ('')
ph.push (' public function __construct ($options = array ()) {')
ph.push (' parent::__construct (array_merge(array (')
ph.push (' ' + phParams + ((all.length > 1) ? ',' : ''))
ph.push (' ), $options));')
ph.push (' }')
for (let i = 0; i < methods.length; i++) {
let part = methods[i].trim ()
let lines = part.split ("\n")
let header = lines[0].trim ()
let regex2 = /(async |)([\S]+)\s\(([^)]*)\)\s*{/g // exchange method
let matches = regex2.exec (header)
let keyword = matches[1]
let method = matches[2]
let args = matches[3].trim ()
method = method.replace ('fetchBalance', 'fetch_balance')
// .replace ('fetchCategories', 'fetch_categories')
.replace ('priceToPrecision', 'price_to_precision')
.replace ('amountToPrecision', 'amount_to_precision')
.replace ('feeToPrecision', 'fee_to_precision')
.replace ('costToPrecision', 'cost_to_precision')
.replace ('commonCurrencyCode', 'common_currency_code')
.replace ('loadMarkets', 'load_markets')
.replace ('fetchMarkets', 'fetch_markets')
.replace ('fetchL2OrderBook', 'fetch_l2_order_book')
.replace ('fetchOrderBook', 'fetch_order_book')
.replace ('fetchOHLCV', 'fetch_ohlcv')
.replace ('parseOHLCVs', 'parse_ohlcvs')
.replace ('parseOHLCV', 'parse_ohlcv')
.replace ('fetchTickers', 'fetch_tickers')
.replace ('fetchTicker', 'fetch_ticker')
.replace ('parseBalance', 'parse_balance')
.replace ('parseTicker', 'parse_ticker')
.replace ('parseTradesData', 'parse_trades_data')
.replace ('parseTrades', 'parse_trades')
.replace ('parseTrade', 'parse_trade')
.replace ('parseOrderBook', 'parse_order_book')
.replace ('parseBidAsks', 'parse_bidasks')
.replace ('parseBidAsk', 'parse_bidask')
.replace ('parseOrders', 'parse_orders')
.replace ('parseOrderStatus', 'parse_order_status')
.replace ('parseOrder', 'parse_order')
.replace ('filterOrdersBySymbol', 'filter_orders_by_symbol')
.replace ('fetchTrades', 'fetch_trades')
.replace ('fetchOrderStatus', 'fetch_order_status')
.replace ('fetchOrderTrades', 'fetch_order_trades')
.replace ('fetchOrders', 'fetch_orders')
.replace ('fetchOrder', 'fetch_order')
.replace ('fetchOpenOrders', 'fetch_open_orders')
.replace ('fetchMyTrades', 'fetch_my_trades')
.replace ('fetchAllMyTrades', 'fetch_all_my_trades')
.replace ('editLimitBuyOrder', 'edit_limit_buy_order')
.replace ('editLimitSellOrder', 'edit_limit_sell_order')
.replace ('editLimitOrder', 'edit_limit_order')
.replace ('editOrder', 'edit_order')
.replace ('createOrder', 'create_order')
.replace ('cancelOrder', 'cancel_order')
.replace ('calculateFeeRate', 'calculate_fee_rate')
.replace ('calculateFee', 'calculate_fee')
.replace ('signIn', 'sign_in')
.replace ('handleErrors', 'handle_errors')
args = args.length ? args.split (',').map (x => x.trim ()) : []
let phArgs = args.join (', $').trim ()
phArgs = phArgs.length ? ('$' + phArgs) : ''
let pyArgs = args.map (x => x.replace (' = ', '=')).join (', ')
let variables = args.map (arg => arg.split ('=').map (x => x.trim ()) [0])
let body = lines.slice (1, -1).join ("\n")
let regex3 = /[^a-zA-Z0-9_]let\s+(?:\[([^\]]+)\]|([a-zA-Z0-9_]+))/g // local variables
let localVariablesMatches
while (localVariablesMatches = regex3.exec (body)) {
let m = localVariablesMatches[1] ? localVariablesMatches[1] : localVariablesMatches[2]
m = m.trim ().split (', ')
m.forEach (x => variables.push (x.trim ()))
variables.push (localVariablesMatches[1])
}
let phVarsRegex = variables.map (x => [ "([^$$a-zA-Z0-9\\.\\>'_])" + x + "([^a-zA-Z0-9'_])", '$1$$' + x + '$2' ])
let pyRegex = [
[ /typeof\s+([^\s\[]+)(?:\s|\[(.+?)\])\s+\=\=\s+\'undefined\'/g, '$1[$2] is None' ],
[ /typeof\s+([^\s\[]+)(?:\s|\[(.+?)\])\s+\!\=\s+\'undefined\'/g, '$1[$2] is not None' ],
[ /typeof\s+([^\s]+)\s+\=\=\s+\'undefined\'/g, '$1 is None' ],
[ /typeof\s+([^\s]+)\s+\!\=\s+\'undefined\'/g, '$1 is not None' ],
[ /undefined/g, 'None' ],
[ /this\.stringToBinary\s*\((.*)\)/g, '$1' ],
[ /this\.stringToBase64\s/g, 'base64.b64encode' ],
[ /this\.base64ToBinary\s/g, 'base64.b64decode' ],
[ /\.safeFloat\s/g, '.safe_float'],
[ /\.safeInteger\s/g, '.safe_integer'],
[ /\.safeString\s/g, '.safe_string'],
[ /\.safeValue\s/g, '.safe_value'],
[ /\.binaryConcat\s/g, '.binary_concat'],
[ /\.binaryToString\s/g, '.binary_to_string' ],
[ /\.implodeParams\s/g, '.implode_params'],
[ /\.extractParams\s/g, '.extract_params'],
[ /\.parseBalance\s/g, '.parse_balance'],
[ /\.parseOHLCVs\s/g, '.parse_ohlcvs'],
[ /\.parseOHLCV\s/g, '.parse_ohlcv'],
[ /\.parseTicker\s/g, '.parse_ticker'],
[ /\.parseTradesData\s/g, '.parse_trades_data'],
[ /\.parseTrades\s/g, '.parse_trades'],
[ /\.parseTrade\s/g, '.parse_trade'],
[ /\.parseOrderBook\s/g, '.parse_order_book'],
[ /\.parseBidAsks\s/g, '.parse_bidasks'],
[ /\.parseBidAsk\s/g, '.parse_bidask'],
[ /\.parseOrders\s/g, '.parse_orders'],
[ /\.parseOrderStatus\s/g, '.parse_order_status'],
[ /\.parseOrder\s/g, '.parse_order'],
[ /\.filterOrdersBySymbol\s/g, '.filter_orders_by_symbol'],
[ /\.deepExtend\s/g, '.deep_extend'],
[ /\.indexBy\s/g, '.index_by'],
[ /\.sortBy\s/g, '.sort_by'],
[ /\.groupBy\s/g, '.group_by'],
[ /\.marketIds\s/g, '.market_ids'],
[ /\.marketId\s/g, '.market_id'],
[ /\.fetchL2OrderBook\s/g, '.fetch_l2_order_book'],
[ /\.fetchOrderBook\s/g, '.fetch_order_book'],
[ /\.fetchMyTrades\s/g, '.fetch_my_trades'],
[ /\.fetchOrderStatus\s/g, '.fetch_order_status'],
[ /\.fetchOpenOrders\s/g, '.fetch_open_orders'],
[ /\.fetchOrders\s/g, '.fetch_orders'],
[ /\.fetchOrder\s/g, '.fetch_order'],
[ /\.fetchTickers\s/g, '.fetch_tickers'],
[ /\.fetchTicker\s/g, '.fetch_ticker'],
[ /\.priceToPrecision\s/g, '.price_to_precision'],
[ /\.amountToPrecision\s/g, '.amount_to_precision'],
[ /\.feeToPrecision\s/g, '.fee_to_precision'],
[ /\.costToPrecision\s/g, '.cost_to_precision'],
[ /\.commonCurrencyCode\s/g, '.common_currency_code'],
[ /\.loadMarkets\s/g, '.load_markets'],
[ /\.calculateFeeRate\s/g, '.calculate_fee_rate'],
[ /\.calculateFee\s/g, '.calculate_fee'],
[ /\.editLimitBuyOrder\s/g, '.edit_limit_buy_order'],
[ /\.editLimitSellOrder\s/g, '.edit_limit_sell_order'],
[ /\.editLimitOrder\s/g, '.edit_limit_order'],
[ /\.editOrder\s/g, '.edit_order'],
[ /\.encodeURIComponent\s/g, '.encode_uri_component'],
[ /\.handleErrors\s/g, '.handle_errors'],
// [ /this\.urlencode\s/g, '_urlencode.urlencode ' ], // use self.urlencode instead
[ /this\./g, 'self.' ],
[ /([^a-zA-Z\'])this([^a-zA-Z])/g, '$1self$2' ],
[ /([^a-zA-Z0-9_])let\s\[\s*([^\]]+)\s\]/g, '$1$2' ],
[ /([^a-zA-Z0-9_])let\s\{\s*([^\}]+)\s\}\s\=\s([^\;]+)/g, '$1$2 = (lambda $2: ($2))(**$3)' ],
[ /([^a-zA-Z0-9_])let\s/g, '$1' ],
[ /Object\.keys\s*\((.*)\)\.length/g, '$1' ],
[ /Object\.keys\s*\((.*)\)/g, 'list($1.keys())' ],
[ /\[([^\]]+)\]\.join\s*\(([^\)]+)\)/g, "$2.join([$1])" ],
[ /hash \(([^,]+)\, \'(sha[0-9])\'/g, "hash($1, '$2'" ],
[ /hmac \(([^,]+)\, ([^,]+)\, \'(md5)\'/g, 'hmac($1, $2, hashlib.$3' ],
[ /hmac \(([^,]+)\, ([^,]+)\, \'(sha[0-9]+)\'/g, 'hmac($1, $2, hashlib.$3' ],
[ /throw new ([\S]+) \((.*)\)/g, 'raise $1($2)'],
[ /throw ([\S]+)/g, 'raise $1'],
[ /try {/g, 'try:'],
[ /\}\s+catch \(([\S]+)\) {/g, 'except Exception as $1:'],
[ /([\s\(])extend(\s)/g, '$1self.extend$2' ],
[ /\} else if/g, 'elif' ],
[ /if\s+\((.*)\)\s+\{/g, 'if $1:' ],
[ /if\s+\((.*)\)\s*[\n]/g, "if $1:\n" ],
[ /\}\s*else\s*\{/g, 'else:' ],
[ /else\s*[\n]/g, "else:\n" ],
[ /for\s+\(([a-zA-Z0-9_]+)\s*=\s*([^\;\s]+\s*)\;[^\<\>\=]+(?:\<=|\>=|<|>)\s*(.*)\.length\s*\;[^\)]+\)\s*{/g, 'for $1 in range($2, len($3)):'],
[ /\s\|\|\s/g, ' or ' ],
[ /\s\&\&\s/g, ' and ' ],
[ /\!([^\=])/g, 'not $1'],
[ /([^\s]+)\.length/g, 'len($1)' ],
[ /\.push\s*\(([\s\S]+?)\);/g, '.append($1);' ],
[ /^\s*}\s*$/gm, '' ],
[ /;/g, '' ],
[ /\.toUpperCase\s*/g, '.upper' ],
[ /\.toLowerCase\s*/g, '.lower' ],
[ /JSON\.stringify\s*/g, 'json.dumps' ],
[ /JSON\.parse\s*/g, 'json.loads' ],
// [ /([^\(\s]+)\.includes\s+\(([^\)]+)\)/g, '$2 in $1' ],
// [ /\'%([^\']+)\'\.sprintf\s*\(([^\)]+)\)/g, "'{:$1}'.format($2)" ],
[ /([^\s]+)\.toFixed\s*\(([0-9]+)\)/g, "'{:.$2f}'.format($1)" ],
[ /([^\s]+)\.toFixed\s*\(([^\)]+)\)/g, "('{:.' + str($2) + 'f}').format($1)" ],
[ /parseFloat\s*/g, 'float'],
[ /parseInt\s*/g, 'int'],
[ /self\[([^\]+]+)\]/g, 'getattr(self, $1)' ],
[ /([^\s]+)\.slice \(([^\,\)]+)\,\s?([^\)]+)\)/g, '$1[$2:$3]' ],
[ /([^\s]+)\.slice \(([^\)\:]+)\)/g, '$1[$2:]' ],
[ /Math\.floor\s*\(([^\)]+)\)/g, 'int(math.floor($1))' ],
[ /Math\.abs\s*\(([^\)]+)\)/g, 'abs($1)' ],
[ /Math\.pow\s*\(([^\)]+)\)/g, 'math.pow($1)' ],
[ /Math\.round\s*\(([^\)]+)\)/g, 'int(round($1))' ],
[ /Math\.log/g, 'math.log' ],
[ /(\([^\)]+\)|[^\s]+)\s*\?\s*(\([^\)]+\)|[^\s]+)\s*\:\s*(\([^\)]+\)|[^\s]+)/g, '$2 if $1 else $3'],
[/ \/\//g, ' #' ],
[/([^\n\s]) \#/g, '$1 #' ], // PEP8 E261
[ /\.indexOf/g, '.find'],
[ /\strue/g, ' True'],
[ /\sfalse/g, ' False'],
[ /\(([^\s]+)\sin\s([^\)]+)\)/g, '($1 in list($2.keys()))' ],
[ /([^\s]+\s*\(\))\.toString\s+\(\)/g, 'str($1)' ],
[ /([^\s]+)\.toString \(\)/g, 'str($1)' ],
[ /([^\s]+)\.join\s*\(\s*([^\)\[\]]+?)\s*\)/g, '$2.join($1)' ],
[ /Math\.(max|min)\s/g, '$1' ],
[ /console\.log\s/g, 'print'],
[ /process\.exit\s+/g, 'sys.exit'],
[ /([^:+=\s]+) \(/g, '$1(' ], // PEP8 E225 remove whitespaces before left ( round bracket
[ /\[ /g, '[' ], // PEP8 E201 remove whitespaces after left [ square bracket
[ /\{ /g, '{' ], // PEP8 E201 remove whitespaces after left { bracket
[ /([^\s]+) \]/g, '$1]' ], // PEP8 E202 remove whitespaces before right ] square bracket
[ /([^\s]+) \}/g, '$1}' ], // PEP8 E202 remove whitespaces before right } bracket
[ /([^a-z])(elif|if|or)\(/g, '$1$2 \(' ], // a correction for PEP8 E225 side-effect for compound and ternary conditionals
[ /\=\=\sTrue/g, 'is True' ], // a correction for PEP8 E712, it likes "is True", not "== True"
]
let phRegex = [
[ /typeof\s+([^\s\[]+)(?:\s|\[(.+?)\])\s+\=\=\s+\'undefined\'/g, '$1[$2] == null' ],
[ /typeof\s+([^\s\[]+)(?:\s|\[(.+?)\])\s+\!\=\s+\'undefined\'/g, '$1[$2] != null' ],
[ /typeof\s+([^\s]+)\s+\=\=\s+\'undefined\'/, '$1 === null' ],
[ /typeof\s+([^\s]+)\s+\!\=\s+\'undefined\'/, '$1 !== null' ],
[ /undefined/g, 'null' ],
[ /this\.extend/g, 'array_merge' ],
[ /this\.deepExtend/g, 'array_replace_recursive'],
[ /this\.stringToBinary\s*\((.*)\)/g, '$1' ],
[ /this\.stringToBase64/g, 'base64_encode' ],
[ /this\.base64ToBinary/g, 'base64_decode' ],
[ /\.safeFloat/g, '.safe_float'],
[ /\.safeInteger/g, '.safe_integer'],
[ /\.safeString/g, '.safe_string'],
[ /\.safeValue/g, '.safe_value'],
[ /\.parseOHLCVs/g, '.parse_ohlcvs'],
[ /\.parseOHLCV/g, '.parse_ohlcv'],
[ /\.parseTicker/g, '.parse_ticker'],
[ /\.parseTradesData/g, '.parse_trades_data'],
[ /\.parseTrades/g, '.parse_trades'],
[ /\.parseTrade/g, '.parse_trade'],
[ /\.parseOrderBook/g, '.parse_order_book'],
[ /\.parseBidAsks/g, '.parse_bidasks'],
[ /\.parseBidAsk/g, '.parse_bidask'],
[ /\.binaryConcat/g, '.binary_concat'],
[ /\.binaryToString/g, '.binary_to_string' ],
[ /\.implodeParams/g, '.implode_params'],
[ /\.extractParams/g, '.extract_params'],
[ /\.parseBalance/g, '.parse_balance'],
[ /\.indexBy/g, '.index_by'],
[ /\.sortBy/g, '.sort_by'],
[ /\.groupBy/g, '.group_by'],
[ /\.marketIds/g, '.market_ids'],
[ /\.marketId/g, '.market_id'],
[ /\.fetchL2OrderBook/g, '.fetch_l2_order_book'],
[ /\.fetchOrderBook/g, '.fetch_order_book'],
[ /\.fetchMyTrades/g, '.fetch_my_trades'],
[ /\.fetchOrderStatus/g, '.fetch_order_status'],
[ /\.fetchOpenOrders/g, '.fetch_open_orders'],
[ /\.fetchOrders/g, '.fetch_orders'],
[ /\.fetchOrder/g, '.fetch_order'],
[ /\.fetchTickers/g, '.fetch_tickers'],
[ /\.fetchTicker/g, '.fetch_ticker'],
[ /\.parseOrders/g, '.parse_orders'],
[ /\.parseOrderStatus/g, '.parse_order_status'],
[ /\.parseOrder/g, '.parse_order'],
[ /\.filterOrdersBySymbol/g, '.filter_orders_by_symbol'],
[ /\.priceToPrecision/g, '.price_to_precision'],
[ /\.amountToPrecision/g, '.amount_to_precision'],
[ /\.feeToPrecision/g, '.fee_to_precision'],
[ /\.costToPrecision/g, '.cost_to_precision'],
[ /\.commonCurrencyCode/g, '.common_currency_code'],
[ /\.loadMarkets/g, '.load_markets'],
[ /\.calculateFeeRate/g, '.calculate_fee_rate'],
[ /\.calculateFee/g, '.calculate_fee'],
[ /\.editLimitBuyOrder/g, '.edit_limit_buy_order'],
[ /\.editLimitSellOrder/g, '.edit_limit_sell_order'],
[ /\.editLimitOrder/g, '.edit_limit_order'],
[ /\.editOrder/g, '.edit_order'],
[ /\.encodeURIComponent/g, '.encode_uri_component'],
[ /\.handleErrors/g, '.handle_errors'],
[ /this\./g, '$this->' ],
[ / this;/g, ' $this;' ],
[ /([^'])this_\./g, '$1$this_->' ],
[ /\{\}/g, 'array ()' ],
[ /\[\]/g, 'array ()' ],
[ /\{([^\n\}]+)\}/g, 'array ($1)' ],
[ /([^a-zA-Z0-9_])let\s\[\s*([^\]]+)\s\]/g, '$1list ($2)' ],
[ /([^a-zA-Z0-9_])let\s\{\s*([^\}]+)\s\}/g, '$1array_values (list ($2))' ],
[ /([^a-zA-Z0-9_])let\s/g, '$1' ],
[ /Object\.keys\s*\((.*)\)\.length/g, '$1' ],
[ /Object\.keys\s*\((.*)\)/g, 'array_keys ($1)' ],
[ /([^\s]+\s*\(\))\.toString \(\)/g, '(string) $1' ],
[ /([^\s]+)\.toString \(\)/g, '(string) $1' ],
[ /throw new Error \((.*)\)/g, 'throw new \\Exception ($1)'],
[ /throw new ([\S]+) \((.*)\)/g, 'throw new $1 ($2)'],
[ /throw ([\S]+)\;/g, 'throw $$$1;'],
[ /\}\s+catch \(([\S]+)\) {/g, '} catch (Exception $$$1) {'],
[ /for\s+\(([a-zA-Z0-9_]+)\s*=\s*([^\;\s]+\s*)\;[^\<\>\=]+(\<=|\>=|<|>)\s*(.*)\.length\s*\;([^\)]+)\)\s*{/g, 'for ($1 = $2; $1 $3 count ($4);$5) {'],
[ /([^\s]+)\.length\;/g, 'count ($1);' ],
[ /([^\s]+)\.length/g, 'strlen ($1)' ],
[ /\.push\s*\(([\s\S]+?)\)\;/g, '[] = $1;' ],
[ /(\s)await(\s)/g, '$1' ],
[ /([\S])\: /g, '$1 => ' ],
[ /\{([^\;\{]+?)\}([^\s])/g, 'array ($1)$2' ],
[ /\[\s*([^\]]+?)\s*\]\.join\s*\(\s*([^\)]+?)\s*\)/g, "implode ($2, array ($1))" ],
[ /\[\s([^\]]+?)\s\]/g, 'array ($1)' ],
[ /JSON\.stringify/g, 'json_encode' ],
[ /JSON\.parse\s+\(([^\)]+)\)/g, 'json_decode ($1, $$as_associative_array = true)' ],
[ /([^\(\s]+)\.includes\s+\(([^\)]+)\)/g, 'mb_strpos ($1, $2)' ],
// [ /\'([^\']+)\'\.sprintf\s*\(([^\)]+)\)/g, "sprintf ('$1', $2)" ],
[ /([^\s]+)\.toFixed\s*\(([0-9]+)\)/g, "sprintf ('%$2f', $1)" ],
[ /([^\s]+)\.toFixed\s*\(([^\)]+)\)/g, "sprintf ('%' . $2 . 'f', $1)" ],
[ /parseFloat\s/g, 'floatval '],
[ /parseInt\s/g, 'intval '],
[ / \+ /g, ' . ' ],
[ / \+\= /g, ' .= ' ],
[ /([^\s]+(?:\s*\(.+\))?)\.toUpperCase\s*\(\)/g, 'strtoupper ($1)' ],
[ /([^\s]+(?:\s*\(.+\))?)\.toLowerCase\s*\(\)/g, 'strtolower ($1)' ],
[ /([^\s]+(?:\s*\(.+\))?)\.replace\s*\(([^\)]+)\)/g, 'str_replace ($2, $1)' ],
[ /this\[([^\]+]+)\]/g, '$$this->$$$1' ],
[ /([^\s]+).slice \(([^\)\:]+)\)/g, 'mb_substr ($1, $2)' ],
[ /([^\s]+).slice \(([^\,\)]+)\,\s*([^\)]+)\)/g, 'mb_substr ($1, $2, $3)' ],
[ /([^\s]+).split \(([^\,]+?)\)/g, 'explode ($2, $1)' ],
[ /Math\.floor\s*\(([^\)]+)\)/g, '(int) floor ($1)' ],
[ /Math\.abs\s*\(([^\)]+)\)/g, 'abs ($1)' ],
[ /Math\.round\s*\(([^\)]+)\)/g, '(int) round ($1)' ],
[ /Math\.pow\s*\(([^\)]+)\)/g, 'pow ($1)' ],
[ /Math\.log/g, 'log' ],
[ /([^\(\s]+)\s+%\s+([^\s\)]+)/g, 'fmod ($1, $2)' ],
[ /\(([^\s]+)\.indexOf\s*\(([^\)]+)\)\s*\>\=\s*0\)/g, '(mb_strpos ($1, $2) !== false)' ],
[ /([^\s]+)\.indexOf\s*\(([^\)]+)\)\s*\>\=\s*0/g, 'mb_strpos ($1, $2) !== false' ],
[ /([^\s]+)\.indexOf\s*\(([^\)]+)\)/g, 'mb_strpos ($1, $2)' ],
[ /\(([^\s]+)\sin\s([^\)]+)\)/g, '(array_key_exists ($1, $2))' ],
[ /([^\s]+)\.join\s*\(\s*([^\)]+?)\s*\)/g, 'implode ($2, $1)' ],
[ /Math\.(max|min)/g, '$1' ],
[ /console\.log/g, 'var_dump'],
[ /process\.exit/g, 'exit'],
]
let pyRegexSync = pyRegex.concat ([
[ /(\s)await(\s)/g, '$1' ]
])
let pyBody = regexAll (body, pyRegexSync).replace (/$\s*$/gm, '').replace (/\'([абвгдеёжзийклмнопрстуфхцчшщъыьэюя]+)\'/gm, "u'$1'")
let pyBodyAsync = regexAll (body, pyRegex).replace (/$\s*$/gm, '').replace (/\'([абвгдеёжзийклмнопрстуфхцчшщъыьэюя]+)\'/gm, "u'$1'")
// special case for Python OrderedDicts
let orderedRegex = /\.ordered\s+\(\{([^\}]+)\}\)/g
let orderedMatches = undefined
while (orderedMatches = orderedRegex.exec (pyBody)) {
let replaced = orderedMatches[1].replace (/^(\s+)([^\:]+)\:\s*([^\,]+)\,$/gm, '$1($2, $3),')
pyBody = pyBody.replace (orderedRegex, '\.ordered ([' + replaced + '])')
}
let pyString = 'def ' + method + '(self' + (pyArgs.length ? ', ' + pyArgs.replace (/undefined/g, 'None').replace (/false/g, 'False').replace (/true/g, 'True') : '') + '):'
py.push ('');
py.push (' ' + pyString);
py.push (pyBody);
pyAsync.push ('');
pyAsync.push (' ' + keyword + pyString);
pyAsync.push (pyBodyAsync);
let phBody = regexAll (body, phRegex.concat (phVarsRegex))
ph.push ('');
ph.push (' public function ' + method + ' (' + phArgs.replace (/undefined/g, 'null').replace ('{}', 'array ()') + ') {');
ph.push (phBody);
ph.push (' }')
}
py.push ('')
pyAsync.push ('')
python.push (py.join ("\n"))
pythonAsync.push (pyAsync.join ("\n"))
ph.push ('}')
ph.push ('')
php.push (ph.join ("\n"))
}
//-----------------------------------------------------------------------------
function transpile (oldName, newName, content, comment = '//') {
log.bright.cyan ('Transpiling ' + oldName.yellow + ' → ' + newName.yellow)
let fileContents = fs.readFileSync (oldName, 'utf8')
fileContents = fileContents.split ("\n" + comment + " ===") [0]
fileContents +=
"\n" + comment + " =============================================================================\n" +
content.join ("\n" + comment + " -----------------------------------------------------------------------------\n")
fs.truncateSync (newName)
fs.writeFileSync (newName, fileContents)
}
//-----------------------------------------------------------------------------
function copyFile (oldName, newName) {
let contents = fs.readFileSync (oldName, 'utf8')
fs.truncateSync (newName)
fs.writeFileSync (newName, contents)
}
//-----------------------------------------------------------------------------
function transpilePythonAsyncToSync (oldName, newName) {
log.magenta ('Transpiling ' + oldName.yellow + ' → ' + newName.yellow)
const fileContents = fs.readFileSync (oldName, 'utf8')
let lines = fileContents.split ("\n")
lines = lines.filter (line => ![ 'import asyncio' ].includes (line))
.map (line => {
return (
line.replace ('asyncio.get_event_loop().run_until_complete(main())', 'main()')
.replace ('import ccxt.async as ccxt', 'import ccxt')
.replace (/.*token\_bucket.*/g, '')
.replace ('async ', '')
.replace ('await ', ''))
})
// lines.forEach (line => log (line))
function deleteFunction (f, from) {
const re1 = new RegExp ('def ' + f + '[^\#]+', 'g')
const re2 = new RegExp ('[\\s]+' + f + '\\(exchange\\)', 'g')
return from.replace (re1, '').replace (re2, '')
}
let newContents = lines.join ('\n')
newContents = deleteFunction ('test_tickers_async', newContents)
newContents = deleteFunction ('test_l2_order_books_async', newContents)
fs.truncateSync (newName)
fs.writeFileSync (newName, newContents)
}
//-----------------------------------------------------------------------------
transpile ('./ccxt/exchanges.py', './ccxt/exchanges.py', python, '#')
transpile ('./ccxt/async/exchanges.py', './ccxt/async/exchanges.py', pythonAsync, '#')
transpile ('./ccxt.php', './build/ccxt.php', php, '//')
transpilePythonAsyncToSync ('./test/test_async.py', './test/test.py')
//-----------------------------------------------------------------------------
log.bright.green ('Transpiled successfully.')