forked from sidorares/node-mysql2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse-field.js
64 lines (55 loc) · 1.91 KB
/
parse-field.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
'use strict';
const Packet = require('./lib/packets/packet.js');
const Packets = require('./lib/packets/index.js');
const compileParser = require('./lib/compile_binary_parser.js');
let fields = [];
function parseC(s) {
const raw = Buffer.from(s, 'hex');
const p = new Packet(0, raw, 0, raw.end);
const c = new Packets.ColumnDefinition(p);
fields.push(c);
return c.inspect();
}
console.log(
parseC(
'036465660000001a62696c6c696e675f69735f7069636b75705f6c6f636174696f6e000c3f0001000000030100000000'
)
);
console.log(
parseC(
'036465660d6e616d7368695f6465765f6165087368697070696e671373616c65735f6f726465725f61646472657373117368697070696e675f61646472657373310861646472657373310c2100fd020000fd0010000000'
)
);
console.log(
parseC(
'036465660d6e616d7368695f6465765f6165087368697070696e671373616c65735f6f726465725f616464726573731b7368697070696e675f666b5f7069636b75705f6c6f636174696f6e12666b5f7069636b75705f6c6f636174696f6e0c3f000a000000030000000000'
)
);
console.log(
parseC(
'036465660000001a62696c6c696e675f69735f7069636b75705f6c6f636174696f6e000c3f0001000000030100000000'
)
);
compileParser(fields, {}, { debug: true });
fields = [];
console.log(
parseC(
'036465660000001a62696c6c696e675f69735f7069636b75705f6c6f636174696f6e000c3f0001000000088100000000'
)
);
console.log(
parseC(
'036465660d6e616d7368695f6465765f6165087368697070696e671373616c65735f6f726465725f61646472657373117368697070696e675f61646472657373310861646472657373310c2100fd020000fd0010000000'
)
);
console.log(
parseC(
'036465660d6e616d7368695f6465765f6165087368697070696e671373616c65735f6f726465725f616464726573731b7368697070696e675f666b5f7069636b75705f6c6f636174696f6e12666b5f7069636b75705f6c6f636174696f6e0c3f000a000000030000000000'
)
);
console.log(
parseC(
'036465660000001a62696c6c696e675f69735f7069636b75705f6c6f636174696f6e000c3f0001000000088100000000'
)
);
compileParser(fields, {}, { debug: true });