forked from rethinkdb/rethinkdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.coffee
90 lines (75 loc) · 2.74 KB
/
errors.coffee
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
class RqlDriverError extends Error
constructor: (msg) ->
@name = @constructor.name
@msg = msg
@message = msg
if Error.captureStackTrace?
Error.captureStackTrace @, @
class RqlServerError extends Error
constructor: (msg, term, frames) ->
@name = @constructor.name
@msg = msg
@frames = frames[0..]
if term?
if msg[msg.length-1] is '.'
@message = "#{msg.slice(0, msg.length-1)} in:\n#{RqlQueryPrinter::printQuery(term)}\n#{RqlQueryPrinter::printCarrots(term, frames)}"
else
@message = "#{msg} in:\n#{RqlQueryPrinter::printQuery(term)}\n#{RqlQueryPrinter::printCarrots(term, frames)}"
else
@message = "#{msg}"
if Error.captureStackTrace?
Error.captureStackTrace @, @
class RqlRuntimeError extends RqlServerError
class RqlCompileError extends RqlServerError
class RqlClientError extends RqlServerError
class RqlQueryPrinter
printQuery: (term) ->
tree = composeTerm(term)
joinTree tree
composeTerm = (term) ->
args = (composeTerm arg for arg in term.args)
optargs = {}
for own key,arg of term.optargs
optargs[key] = composeTerm(arg)
term.compose(args, optargs)
printCarrots: (term, frames) ->
if frames.length is 0
tree = [carrotify(composeTerm(term))]
else
tree = composeCarrots(term, frames)
(joinTree tree).replace(/[^\^]/g, ' ')
composeCarrots = (term, frames) ->
frame = frames.shift()
args = for arg,i in term.args
if frame is i
composeCarrots(arg, frames)
else
composeTerm(arg)
optargs = {}
for own key,arg of term.optargs
if frame is key
optargs[key] = composeCarrots(arg, frames)
else
optargs[key] = composeTerm(arg)
if frame?
term.compose(args, optargs)
else
carrotify(term.compose(args, optargs))
carrotMarker = {}
carrotify = (tree) -> [carrotMarker, tree]
joinTree = (tree) ->
str = ''
for term in tree
if Array.isArray term
if term.length == 2 and term[0] is carrotMarker
str += (joinTree term[1]).replace(/./g, '^')
else
str += joinTree term
else
str += term
return str
module.exports.RqlDriverError = RqlDriverError
module.exports.RqlRuntimeError = RqlRuntimeError
module.exports.RqlCompileError = RqlCompileError
module.exports.RqlClientError = RqlClientError
module.exports.printQuery = RqlQueryPrinter::printQuery