Skip to content
This repository has been archived by the owner on Dec 19, 2021. It is now read-only.

Commit

Permalink
feat: add project files
Browse files Browse the repository at this point in the history
  • Loading branch information
yyc-git committed Jul 10, 2018
0 parents commit e83ba0a
Show file tree
Hide file tree
Showing 9 changed files with 1,739 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.DS_Store
.merlin
.idea/
.vscode/
jest_0/
lib/bs/
lib/js/src/
reference/
node_modules/
mine/

npm-debug


.bsb.lock
11 changes: 11 additions & 0 deletions .yarnignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.idea/
.vscode/
.DS_Store/
lib/bs/
test/
build/
reference/
mine/
server/
examples/
jest_0/
23 changes: 23 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
MIT License

For Jest software

Copyright (c) 2018, glennsl/bs-jest

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
22 changes: 22 additions & 0 deletions bsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "wonder-bs-json",
"sources": [
{
"dir": "src",
"subdirs": true
}
],
"bs-dev-dependencies": [
],
"refmt": 3,
"bs-dependencies": [
],
"package-specs": [
"commonjs"
],
"namespace": true,
"warnings": {
"number": "-10-26-27-K-44-45",
"error": "+5+6"
}
}
20 changes: 20 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "wonder-bs-json",
"version": "0.0.1",
"description": "",
"homepage": "https://github.com/Wonder-Technology/Wonder-bs-json.js",
"license": "MIT",
"main": "",
"scripts": {
"watch": "bsb -clean-world -make-world -w",
"test:watch": "jest --watch --config jest.json"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bs-platform": "4.0.0"
},
"dependencies": {
}
}
26 changes: 26 additions & 0 deletions src/Json.re
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*!
changed from @glennsl/bs-json
*/
module Decode = Json_decode;

module Encode = Json_encode;

exception ParseError(string);

let parse = s =>
try (Some(Js.Json.parseExn(s))) {
| _ => None
};

let parseOrRaise = s =>
try (Js.Json.parseExn(s)) {
| Js.Exn.Error(e) =>
let message =
switch (Js.Exn.message(e)) {
| Some(m) => m
| None => "Unknown error"
};
raise @@ ParseError(message);
};

[@bs.val] external stringify : Js.Json.t => string = "JSON.stringify";
266 changes: 266 additions & 0 deletions src/Json_decode.re
Original file line number Diff line number Diff line change
@@ -0,0 +1,266 @@
/*!
changed from @glennsl/bs-json
*/
[@bs.new]
external _unsafeCreateUninitializedArray : int => array('a) = "Array";

[@bs.val] external _stringify : Js.Json.t => string = "JSON.stringify";

let _isInteger = value =>
Js.Float.isFinite(value) && Js.Math.floor_float(value) === value;

type decoder('a) = Js.Json.t => 'a;

exception DecodeError(string);

let bool = json =>
if (Js.typeof(json) == "boolean") {
(Obj.magic(json: Js.Json.t): bool);
} else {
raise @@ DecodeError("Expected boolean, got " ++ _stringify(json));
};

let float = json =>
if (Js.typeof(json) == "number") {
(Obj.magic(json: Js.Json.t): float);
} else {
raise @@ DecodeError("Expected number, got " ++ _stringify(json));
};

let int = json => {
let f = float(json);
if (_isInteger(f)) {
(Obj.magic(f: float): int);
} else {
raise @@ DecodeError("Expected integer, got " ++ _stringify(json));
};
};

let string = json =>
if (Js.typeof(json) == "string") {
(Obj.magic(json: Js.Json.t): string);
} else {
raise @@ DecodeError("Expected string, got " ++ _stringify(json));
};

let char = json => {
let s = string(json);
if (String.length(s) == 1) {
s.[0];
} else {
raise @@
DecodeError("Expected single-character string, got " ++ _stringify(json));
};
};

let date = json => json |> string |> Js.Date.fromString;

let nullable = (decode, json) =>
if ((Obj.magic(json): Js.null('a)) === Js.null) {
Js.null;
} else {
Js.Null.return(decode(json));
};

let nullAs = (value, json) =>
if ((Obj.magic(json): Js.null('a)) === Js.null) {
value;
} else {
raise @@ DecodeError("Expected null, got " ++ _stringify(json));
};

let array = (decode, json) =>
if (Js.Array.isArray(json)) {
let source: array(Js.Json.t) = Obj.magic(json: Js.Json.t);
let length = Js.Array.length(source);
let target = _unsafeCreateUninitializedArray(length);
for (i in 0 to length - 1) {
let value =
try (decode(Array.unsafe_get(source, i))) {
| DecodeError(msg) =>
raise @@
DecodeError(msg ++ "\n\tin array at index " ++ string_of_int(i))
};
Array.unsafe_set(target, i, value);
};
target;
} else {
raise @@ DecodeError("Expected array, got " ++ _stringify(json));
};

let list = (decode, json) => json |> array(decode) |> Array.to_list;

let pair = (decodeA, decodeB, json) =>
if (Js.Array.isArray(json)) {
let source: array(Js.Json.t) = Obj.magic(json: Js.Json.t);
let length = Js.Array.length(source);
if (length == 2) {
try (
decodeA(Array.unsafe_get(source, 0)),
decodeB(Array.unsafe_get(source, 1)),
) {
| DecodeError(msg) => raise @@ DecodeError(msg ++ "\n\tin pair/tuple2")
};
} else {
raise @@
DecodeError(
{j|Expected array of length 2, got array of length $length|j},
);
};
} else {
raise @@ DecodeError("Expected array, got " ++ _stringify(json));
};

let tuple2 = pair;

let tuple3 = (decodeA, decodeB, decodeC, json) =>
if (Js.Array.isArray(json)) {
let source: array(Js.Json.t) = Obj.magic(json: Js.Json.t);
let length = Js.Array.length(source);
if (length == 3) {
try (
decodeA(Array.unsafe_get(source, 0)),
decodeB(Array.unsafe_get(source, 1)),
decodeC(Array.unsafe_get(source, 2)),
) {
| DecodeError(msg) => raise @@ DecodeError(msg ++ "\n\tin tuple3")
};
} else {
raise @@
DecodeError(
{j|Expected array of length 3, got array of length $length|j},
);
};
} else {
raise @@ DecodeError("Expected array, got " ++ _stringify(json));
};

let tuple4 = (decodeA, decodeB, decodeC, decodeD, json) =>
if (Js.Array.isArray(json)) {
let source: array(Js.Json.t) = Obj.magic(json: Js.Json.t);
let length = Js.Array.length(source);
if (length == 4) {
try (
decodeA(Array.unsafe_get(source, 0)),
decodeB(Array.unsafe_get(source, 1)),
decodeC(Array.unsafe_get(source, 2)),
decodeD(Array.unsafe_get(source, 3)),
) {
| DecodeError(msg) => raise @@ DecodeError(msg ++ "\n\tin tuple4")
};
} else {
raise @@
DecodeError(
{j|Expected array of length 4, got array of length $length|j},
);
};
} else {
raise @@ DecodeError("Expected array, got " ++ _stringify(json));
};

let dict = (decode, json) =>
if (Js.typeof(json) == "object"
&& ! Js.Array.isArray(json)
&& ! ((Obj.magic(json): Js.null('a)) === Js.null)) {
let source: Js.Dict.t(Js.Json.t) = Obj.magic(json: Js.Json.t);
let keys = Js.Dict.keys(source);
let l = Js.Array.length(keys);
let target = Js.Dict.empty();
for (i in 0 to l - 1) {
let key = Array.unsafe_get(keys, i);
let value =
try (decode(Js.Dict.unsafeGet(source, key))) {
| DecodeError(msg) => raise @@ DecodeError(msg ++ "\n\tin dict")
};
Js.Dict.set(target, key, value);
};
target;
} else {
raise @@ DecodeError("Expected object, got " ++ _stringify(json));
};

let field = (key, decode, json) =>
if (Js.typeof(json) == "object"
&& ! Js.Array.isArray(json)
&& ! ((Obj.magic(json): Js.null('a)) === Js.null)) {
let dict: Js.Dict.t(Js.Json.t) = Obj.magic(json: Js.Json.t);
switch (Js.Dict.get(dict, key)) {
| Some(value) =>
try (decode(value)) {
| DecodeError(msg) =>
raise @@ DecodeError(msg ++ "\n\tat field '" ++ key ++ "'")
}
| None => raise @@ DecodeError({j|Expected field '$(key)'|j})
};
} else {
raise @@ DecodeError("Expected object, got " ++ _stringify(json));
};

let optimizedField = (key, decode, json) =>
if (Js.typeof(json) == "object"
&& ! Js.Array.isArray(json)
&& ! ((Obj.magic(json): Js.null('a)) === Js.null)) {
let dict: Js.Dict.t(Js.Json.t) = Obj.magic(json: Js.Json.t);
switch (Js.Dict.get(dict, key)) {
| Some(value) =>
try (decode(value)) {
| DecodeError(msg) =>
raise @@ DecodeError(msg ++ "\n\tat field '" ++ key ++ "'")
}
/* decode(value) */
/* | None => raise @@ DecodeError({j|Expected field '$(key)'|j}) */
| None =>
Obj.magic(1000)
};
} else {
raise @@ DecodeError("Expected object, got " ++ _stringify(json));
/* Obj.magic(1001) */
};

let rec at = (key_path, decoder) =>
switch (key_path) {
| [key] => field(key, decoder)
| [first, ...rest] => field(first, at(rest, decoder))
| [] =>
raise @@
Invalid_argument("Expected key_path to contain at least one element")
};

let optional = (decode, json) =>
try (Some(decode(json))) {
| DecodeError(_) => None
};

let optimizedOptional = (decode, json) => {
let result = decode(json);
result === Obj.magic(1000) ? None : result |. Some;
};

let oneOf = (decoders, json) => {
let rec inner = (decoders, errors) =>
switch (decoders) {
| [] =>
let revErrors = List.rev(errors);
raise @@
DecodeError(
{j|All decoders given to oneOf failed. Here are all the errors: $revErrors. And the JSON being decoded: |j}
++ _stringify(json),
);
| [decode, ...rest] =>
try (decode(json)) {
| DecodeError(e) => inner(rest, [e, ...errors])
}
};
inner(decoders, []);
};

let either = (a, b) => oneOf([a, b]);

let withDefault = (default, decode, json) =>
try (decode(json)) {
| DecodeError(_) => default
};

let map = (f, decode, json) => f(decode(json));

let andThen = (b, a, json) => b(a(json), json);
Loading

0 comments on commit e83ba0a

Please sign in to comment.