-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only supports basic types for now
- Loading branch information
Showing
11 changed files
with
244 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
package bson | ||
|
||
// https://bsonspec.org/spec.html | ||
// TODO: more types | ||
|
||
import ( | ||
"embed" | ||
|
||
"github.com/wader/fq/format" | ||
"github.com/wader/fq/format/registry" | ||
"github.com/wader/fq/pkg/decode" | ||
"github.com/wader/fq/pkg/scalar" | ||
) | ||
|
||
//go:embed *.jq | ||
var bsonFS embed.FS | ||
|
||
func init() { | ||
registry.MustRegister(decode.Format{ | ||
Name: format.BSON, | ||
Description: "Binary JSON", | ||
DecodeFn: decodeBSON, | ||
Files: bsonFS, | ||
}) | ||
} | ||
|
||
const ( | ||
elementTypeDouble = 0x01 | ||
elementTypeString = 0x02 | ||
elementTypeDocument = 0x03 | ||
elementTypeArray = 0x04 | ||
elementTypeBinary = 0x05 | ||
elementTypeUndefined = 0x06 | ||
elementTypeObjectID = 0x07 | ||
elementTypeBoolean = 0x08 | ||
elementTypeDatatime = 0x09 | ||
elementTypeNull = 0x0a | ||
elementTypeRegexp = 0x0b | ||
elementTypeInt32 = 0x10 | ||
elementTypeTimestamp = 0x11 | ||
elementTypeInt64 = 0x12 | ||
) | ||
|
||
var elementTypeMap = scalar.UToScalar{ | ||
elementTypeDouble: {Sym: "double", Description: "64-bit binary floating point"}, | ||
elementTypeString: {Sym: "string", Description: "UTF-8 string"}, | ||
elementTypeDocument: {Sym: "document", Description: "Embedded document"}, | ||
elementTypeArray: {Sym: "array", Description: "Array"}, | ||
elementTypeBinary: {Sym: "binary", Description: "Binary data"}, | ||
elementTypeUndefined: {Sym: "undefined", Description: "Undefined (deprecated)"}, | ||
elementTypeObjectID: {Sym: "object_id", Description: "ObjectId"}, | ||
elementTypeBoolean: {Sym: "boolean", Description: "Boolean"}, | ||
elementTypeDatatime: {Sym: "datatime", Description: "UTC datetime"}, | ||
elementTypeNull: {Sym: "null", Description: "Null value"}, | ||
elementTypeRegexp: {Sym: "regexp", Description: "Regular expression"}, | ||
elementTypeInt32: {Sym: "int32", Description: "32-bit integer"}, | ||
elementTypeTimestamp: {Sym: "timestamp", Description: "Timestamp"}, | ||
elementTypeInt64: {Sym: "int64", Description: "64-bit integer"}, | ||
} | ||
|
||
func decodeBSONDocument(d *decode.D) { | ||
size := d.FieldU32("size") | ||
d.LenFn(int64(size-4)*8, func(d *decode.D) { | ||
d.FieldArray("elements", func(d *decode.D) { | ||
for d.BitsLeft() > 8 { | ||
d.FieldStruct("element", func(d *decode.D) { | ||
typ := d.FieldU8("type", elementTypeMap) | ||
d.FieldUTF8Null("name") | ||
switch typ { | ||
case elementTypeDouble: | ||
d.FieldF64("value") | ||
case elementTypeString: | ||
length := d.FieldU32("length") | ||
d.FieldUTF8NullFixedLen("value", int(length)) | ||
case elementTypeDocument: | ||
d.FieldStruct("value", decodeBSONDocument) | ||
case elementTypeArray: | ||
d.FieldStruct("value", decodeBSONDocument) | ||
case elementTypeBinary: | ||
length := d.FieldU32("length") | ||
d.FieldU8("subtype") | ||
d.FieldRawLen("value", int64(length)*8) | ||
case elementTypeUndefined: | ||
case elementTypeObjectID: | ||
d.FieldRawLen("value", 12*8) | ||
case elementTypeBoolean: | ||
d.FieldU8("value") | ||
case elementTypeDatatime: | ||
d.FieldS32("value") | ||
case elementTypeNull: | ||
case elementTypeRegexp: | ||
d.FieldUTF8Null("value") | ||
d.FieldUTF8Null("options") | ||
case elementTypeInt32: | ||
d.FieldS32("value") | ||
case elementTypeTimestamp: | ||
d.FieldU64("value") | ||
case elementTypeInt64: | ||
d.FieldS64("value") | ||
default: | ||
d.FieldRawLen("value", d.BitsLeft()) | ||
} | ||
}) | ||
} | ||
}) | ||
d.FieldU8("terminator", d.ValidateU(0)) | ||
}) | ||
} | ||
|
||
func decodeBSON(d *decode.D, in interface{}) interface{} { | ||
d.Endian = decode.LittleEndian | ||
|
||
decodeBSONDocument(d) | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
def bson_torepr: | ||
def _torepr: | ||
( if .type == null or .type == "array" then | ||
( .value.elements | ||
| map(_torepr) | ||
) | ||
elif .type == "document" then | ||
( .value.elements | ||
| map({key: .name, value: _torepr}) | ||
| from_entries | ||
) | ||
elif .type == "boolean" then .value != 0 | ||
else .value | ||
end | ||
); | ||
( {type: "document", value: .} | ||
| _torepr | ||
); |
Binary file not shown.
Oops, something went wrong.