mustwin-sentry-raven 0.11.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,23 @@
1
+ # A much simpler source line cacher because linecache sucks at platform compat
2
+
3
+ module Raven
4
+
5
+ class LineCache
6
+ class << self
7
+ CACHE = {}
8
+
9
+ def getlines(path)
10
+ CACHE[path] ||= begin
11
+ IO.readlines(path)
12
+ rescue
13
+ []
14
+ end
15
+ end
16
+
17
+ def getline(path, n)
18
+ return nil if n < 1
19
+ getlines(path)[n - 1]
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,22 @@
1
+ module Raven
2
+ class Logger
3
+ LOG_PREFIX = "** [Raven] "
4
+
5
+ [
6
+ :fatal,
7
+ :error,
8
+ :warn,
9
+ :info,
10
+ :debug,
11
+ ].each do |level|
12
+ define_method level do |*args, &block|
13
+ msg = args[0] # Block-level default args is a 1.9 feature
14
+ msg ||= block.call if block
15
+ logger = Raven.configuration[:logger]
16
+ logger = ::Logger.new(STDOUT) if logger.nil?
17
+
18
+ logger.send(level, "#{LOG_PREFIX}#{msg}") if logger
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,609 @@
1
+ # encoding: UTF-8
2
+ #
3
+ # Copyright 2011, 2012 Keith Rarick
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ # THE SOFTWARE.
22
+
23
+ # See https://github.com/kr/okjson for updates.
24
+
25
+ require 'stringio'
26
+
27
+ # Some parts adapted from
28
+ # http://golang.org/src/pkg/json/decode.go and
29
+ # http://golang.org/src/pkg/utf8/utf8.go
30
+ module Raven
31
+
32
+ module OkJson
33
+ Upstream = '42'
34
+ extend self
35
+
36
+
37
+ # Decodes a json document in string s and
38
+ # returns the corresponding ruby value.
39
+ # String s must be valid UTF-8. If you have
40
+ # a string in some other encoding, convert
41
+ # it first.
42
+ #
43
+ # String values in the resulting structure
44
+ # will be UTF-8.
45
+ def decode(s)
46
+ ts = lex(s)
47
+ v, ts = textparse(ts)
48
+ if ts.length > 0
49
+ raise Error, 'trailing garbage'
50
+ end
51
+ v
52
+ end
53
+
54
+
55
+ # Encodes x into a json text. It may contain only
56
+ # Array, Hash, String, Numeric, true, false, nil.
57
+ # (Note, this list excludes Symbol.)
58
+ # X itself must be an Array or a Hash.
59
+ # No other value can be encoded, and an error will
60
+ # be raised if x contains any other value, such as
61
+ # Nan, Infinity, Symbol, and Proc, or if a Hash key
62
+ # is not a String.
63
+ # Strings contained in x must be valid UTF-8.
64
+ def encode(x)
65
+ visited = []
66
+ case x
67
+ when Hash then objenc(x, visited)
68
+ when Array then arrenc(x, visited)
69
+ else
70
+ raise Error, 'root value must be an Array or a Hash'
71
+ end
72
+ end
73
+
74
+
75
+ def valenc(x, visited)
76
+ case x
77
+ when Hash then objenc(x, visited)
78
+ when Array then arrenc(x, visited)
79
+ when String then strenc(x)
80
+ when Symbol then strenc(x.to_s)
81
+ when Numeric then numenc(x)
82
+ when true then "true"
83
+ when false then "false"
84
+ when nil then "null"
85
+ else
86
+ strenc((x.inspect rescue $!.to_s))
87
+ end
88
+ end
89
+
90
+
91
+ private
92
+
93
+
94
+ # Parses a "json text" in the sense of RFC 4627.
95
+ # Returns the parsed value and any trailing tokens.
96
+ # Note: this is almost the same as valparse,
97
+ # except that it does not accept atomic values.
98
+ def textparse(ts)
99
+ if ts.length <= 0
100
+ raise Error, 'empty'
101
+ end
102
+
103
+ typ, _, val = ts[0]
104
+ case typ
105
+ when '{' then objparse(ts)
106
+ when '[' then arrparse(ts)
107
+ else
108
+ raise Error, "unexpected #{val.inspect}"
109
+ end
110
+ end
111
+
112
+
113
+ # Parses a "value" in the sense of RFC 4627.
114
+ # Returns the parsed value and any trailing tokens.
115
+ def valparse(ts)
116
+ if ts.length <= 0
117
+ raise Error, 'empty'
118
+ end
119
+
120
+ typ, _, val = ts[0]
121
+ case typ
122
+ when '{' then objparse(ts)
123
+ when '[' then arrparse(ts)
124
+ when :val,:str then [val, ts[1..-1]]
125
+ else
126
+ raise Error, "unexpected #{val.inspect}"
127
+ end
128
+ end
129
+
130
+
131
+ # Parses an "object" in the sense of RFC 4627.
132
+ # Returns the parsed value and any trailing tokens.
133
+ def objparse(ts)
134
+ ts = eat('{', ts)
135
+ obj = {}
136
+
137
+ if ts[0][0] == '}'
138
+ return obj, ts[1..-1]
139
+ end
140
+
141
+ k, v, ts = pairparse(ts)
142
+ obj[k] = v
143
+
144
+ if ts[0][0] == '}'
145
+ return obj, ts[1..-1]
146
+ end
147
+
148
+ loop do
149
+ ts = eat(',', ts)
150
+
151
+ k, v, ts = pairparse(ts)
152
+ obj[k] = v
153
+
154
+ if ts[0][0] == '}'
155
+ return obj, ts[1..-1]
156
+ end
157
+ end
158
+ end
159
+
160
+
161
+ # Parses a "member" in the sense of RFC 4627.
162
+ # Returns the parsed values and any trailing tokens.
163
+ def pairparse(ts)
164
+ (typ, _, k), ts = ts[0], ts[1..-1]
165
+ if typ != :str
166
+ raise Error, "unexpected #{k.inspect}"
167
+ end
168
+ ts = eat(':', ts)
169
+ v, ts = valparse(ts)
170
+ [k, v, ts]
171
+ end
172
+
173
+
174
+ # Parses an "array" in the sense of RFC 4627.
175
+ # Returns the parsed value and any trailing tokens.
176
+ def arrparse(ts)
177
+ ts = eat('[', ts)
178
+ arr = []
179
+
180
+ if ts[0][0] == ']'
181
+ return arr, ts[1..-1]
182
+ end
183
+
184
+ v, ts = valparse(ts)
185
+ arr << v
186
+
187
+ if ts[0][0] == ']'
188
+ return arr, ts[1..-1]
189
+ end
190
+
191
+ loop do
192
+ ts = eat(',', ts)
193
+
194
+ v, ts = valparse(ts)
195
+ arr << v
196
+
197
+ if ts[0][0] == ']'
198
+ return arr, ts[1..-1]
199
+ end
200
+ end
201
+ end
202
+
203
+
204
+ def eat(typ, ts)
205
+ if ts[0][0] != typ
206
+ raise Error, "expected #{typ} (got #{ts[0].inspect})"
207
+ end
208
+ ts[1..-1]
209
+ end
210
+
211
+
212
+ # Scans s and returns a list of json tokens,
213
+ # excluding white space (as defined in RFC 4627).
214
+ def lex(s)
215
+ ts = []
216
+ while s.length > 0
217
+ typ, lexeme, val = tok(s)
218
+ if typ == nil
219
+ raise Error, "invalid character at #{s[0,10].inspect}"
220
+ end
221
+ if typ != :space
222
+ ts << [typ, lexeme, val]
223
+ end
224
+ s = s[lexeme.length..-1]
225
+ end
226
+ ts
227
+ end
228
+
229
+
230
+ # Scans the first token in s and
231
+ # returns a 3-element list, or nil
232
+ # if s does not begin with a valid token.
233
+ #
234
+ # The first list element is one of
235
+ # '{', '}', ':', ',', '[', ']',
236
+ # :val, :str, and :space.
237
+ #
238
+ # The second element is the lexeme.
239
+ #
240
+ # The third element is the value of the
241
+ # token for :val and :str, otherwise
242
+ # it is the lexeme.
243
+ def tok(s)
244
+ case s[0]
245
+ when ?{ then ['{', s[0,1], s[0,1]]
246
+ when ?} then ['}', s[0,1], s[0,1]]
247
+ when ?: then [':', s[0,1], s[0,1]]
248
+ when ?, then [',', s[0,1], s[0,1]]
249
+ when ?[ then ['[', s[0,1], s[0,1]]
250
+ when ?] then [']', s[0,1], s[0,1]]
251
+ when ?n then nulltok(s)
252
+ when ?t then truetok(s)
253
+ when ?f then falsetok(s)
254
+ when ?" then strtok(s)
255
+ when Spc, ?\t, ?\n, ?\r then [:space, s[0,1], s[0,1]]
256
+ else
257
+ numtok(s)
258
+ end
259
+ end
260
+
261
+
262
+ def nulltok(s); s[0,4] == 'null' ? [:val, 'null', nil] : [] end
263
+ def truetok(s); s[0,4] == 'true' ? [:val, 'true', true] : [] end
264
+ def falsetok(s); s[0,5] == 'false' ? [:val, 'false', false] : [] end
265
+
266
+
267
+ def numtok(s)
268
+ m = /-?([1-9][0-9]+|[0-9])([.][0-9]+)?([eE][+-]?[0-9]+)?/.match(s)
269
+ if m && m.begin(0) == 0
270
+ if !m[2] && !m[3]
271
+ [:val, m[0], Integer(m[0])]
272
+ elsif m[2]
273
+ [:val, m[0], Float(m[0])]
274
+ else
275
+ [:val, m[0], Integer(m[1])*(10**m[3][1..-1].to_i(10))]
276
+ end
277
+ else
278
+ []
279
+ end
280
+ end
281
+
282
+
283
+ def strtok(s)
284
+ m = /"([^"\\]|\\["\/\\bfnrt]|\\u[0-9a-fA-F]{4})*"/.match(s)
285
+ if ! m
286
+ raise Error, "invalid string literal at #{abbrev(s)}"
287
+ end
288
+ [:str, m[0], unquote(m[0])]
289
+ end
290
+
291
+
292
+ def abbrev(s)
293
+ t = s[0,10]
294
+ p = t['`']
295
+ t = t[0,p] if p
296
+ t = t + '...' if t.length < s.length
297
+ '`' + t + '`'
298
+ end
299
+
300
+
301
+ # Converts a quoted json string literal q into a UTF-8-encoded string.
302
+ # The rules are different than for Ruby, so we cannot use eval.
303
+ # Unquote will raise an error if q contains control characters.
304
+ def unquote(q)
305
+ q = q[1...-1]
306
+ a = q.dup # allocate a big enough string
307
+ # In ruby >= 1.9, a[w] is a codepoint, not a byte.
308
+ if rubydoesenc?
309
+ a.force_encoding('UTF-8')
310
+ end
311
+ r, w = 0, 0
312
+ while r < q.length
313
+ c = q[r]
314
+ if c == ?\\
315
+ r += 1
316
+ if r >= q.length
317
+ raise Error, "string literal ends with a \"\\\": \"#{q}\""
318
+ end
319
+
320
+ case q[r]
321
+ when ?",?\\,?/,?'
322
+ a[w] = q[r]
323
+ r += 1
324
+ w += 1
325
+ when ?b,?f,?n,?r,?t
326
+ a[w] = Unesc[q[r]]
327
+ r += 1
328
+ w += 1
329
+ when ?u
330
+ r += 1
331
+ uchar = begin
332
+ hexdec4(q[r,4])
333
+ rescue RuntimeError => e
334
+ raise Error, "invalid escape sequence \\u#{q[r,4]}: #{e}"
335
+ end
336
+ r += 4
337
+ if surrogate? uchar
338
+ if q.length >= r+6
339
+ uchar1 = hexdec4(q[r+2,4])
340
+ uchar = subst(uchar, uchar1)
341
+ if uchar != Ucharerr
342
+ # A valid pair; consume.
343
+ r += 6
344
+ end
345
+ end
346
+ end
347
+ if rubydoesenc?
348
+ a[w] = '' << uchar
349
+ w += 1
350
+ else
351
+ w += ucharenc(a, w, uchar)
352
+ end
353
+ else
354
+ raise Error, "invalid escape char #{q[r]} in \"#{q}\""
355
+ end
356
+ elsif c == ?" || c < Spc
357
+ raise Error, "invalid character in string literal \"#{q}\""
358
+ else
359
+ # Copy anything else byte-for-byte.
360
+ # Valid UTF-8 will remain valid UTF-8.
361
+ # Invalid UTF-8 will remain invalid UTF-8.
362
+ # In ruby >= 1.9, c is a codepoint, not a byte,
363
+ # in which case this is still what we want.
364
+ a[w] = c
365
+ r += 1
366
+ w += 1
367
+ end
368
+ end
369
+ a[0,w]
370
+ end
371
+
372
+
373
+ # Encodes unicode character u as UTF-8
374
+ # bytes in string a at position i.
375
+ # Returns the number of bytes written.
376
+ def ucharenc(a, i, u)
377
+ if u <= Uchar1max
378
+ a[i] = (u & 0xff).chr
379
+ 1
380
+ elsif u <= Uchar2max
381
+ a[i+0] = (Utag2 | ((u>>6)&0xff)).chr
382
+ a[i+1] = (Utagx | (u&Umaskx)).chr
383
+ 2
384
+ elsif u <= Uchar3max
385
+ a[i+0] = (Utag3 | ((u>>12)&0xff)).chr
386
+ a[i+1] = (Utagx | ((u>>6)&Umaskx)).chr
387
+ a[i+2] = (Utagx | (u&Umaskx)).chr
388
+ 3
389
+ else
390
+ a[i+0] = (Utag4 | ((u>>18)&0xff)).chr
391
+ a[i+1] = (Utagx | ((u>>12)&Umaskx)).chr
392
+ a[i+2] = (Utagx | ((u>>6)&Umaskx)).chr
393
+ a[i+3] = (Utagx | (u&Umaskx)).chr
394
+ 4
395
+ end
396
+ end
397
+
398
+
399
+ def hexdec4(s)
400
+ if s.length != 4
401
+ raise Error, 'short'
402
+ end
403
+ (nibble(s[0])<<12) | (nibble(s[1])<<8) | (nibble(s[2])<<4) | nibble(s[3])
404
+ end
405
+
406
+
407
+ def subst(u1, u2)
408
+ if Usurr1 <= u1 && u1 < Usurr2 && Usurr2 <= u2 && u2 < Usurr3
409
+ return ((u1-Usurr1)<<10) | (u2-Usurr2) + Usurrself
410
+ end
411
+ return Ucharerr
412
+ end
413
+
414
+
415
+ def surrogate?(u)
416
+ Usurr1 <= u && u < Usurr3
417
+ end
418
+
419
+
420
+ def nibble(c)
421
+ if ?0 <= c && c <= ?9 then c.ord - ?0.ord
422
+ elsif ?a <= c && c <= ?z then c.ord - ?a.ord + 10
423
+ elsif ?A <= c && c <= ?Z then c.ord - ?A.ord + 10
424
+ else
425
+ raise Error, "invalid hex code #{c}"
426
+ end
427
+ end
428
+
429
+
430
+ def objenc(x, visited)
431
+ return '"{...}"' if visited.include?(x.__id__)
432
+ visited += [x.__id__]
433
+ '{' + x.map{|k,v| keyenc(k) + ':' + valenc(v, visited)}.join(',') + '}'
434
+ end
435
+
436
+
437
+ def arrenc(a, visited)
438
+ return '"[...]"' if visited.include?(a.__id__)
439
+ visited += [a.__id__]
440
+
441
+ '[' + a.map{|x| valenc(x, visited)}.join(',') + ']'
442
+ end
443
+
444
+
445
+ def keyenc(k)
446
+ case k
447
+ when String then strenc(k)
448
+ when Symbol then strenc(k.to_s)
449
+ else
450
+ strenc(k.inspect)
451
+ end
452
+ end
453
+
454
+
455
+ def strenc(s)
456
+ t = StringIO.new
457
+ t.putc(?")
458
+ r = 0
459
+
460
+ while r < s.length
461
+ case s[r]
462
+ when ?" then t.print('\\"')
463
+ when ?\\ then t.print('\\\\')
464
+ when ?\b then t.print('\\b')
465
+ when ?\f then t.print('\\f')
466
+ when ?\n then t.print('\\n')
467
+ when ?\r then t.print('\\r')
468
+ when ?\t then t.print('\\t')
469
+ else
470
+ c = s[r]
471
+ # In ruby >= 1.9, s[r] is a codepoint, not a byte.
472
+ if rubydoesenc?
473
+ begin
474
+ c.ord # will raise an error if c is invalid UTF-8
475
+ t.write(c)
476
+ rescue
477
+ t.write(Ustrerr)
478
+ end
479
+ elsif Spc <= c && c <= ?~
480
+ t.putc(c)
481
+ else
482
+ n = ucharcopy(t, s, r) # ensure valid UTF-8 output
483
+ r += n - 1 # r is incremented below
484
+ end
485
+ end
486
+ r += 1
487
+ end
488
+ t.putc(?")
489
+ t.string
490
+ end
491
+
492
+
493
+ def numenc(x)
494
+ if (x.nan? rescue false)
495
+ '"NaN"'
496
+ elsif (x.infinite? rescue false)
497
+ '"Infinite"'
498
+ end
499
+ "#{x}"
500
+ end
501
+
502
+
503
+ # Copies the valid UTF-8 bytes of a single character
504
+ # from string s at position i to I/O object t, and
505
+ # returns the number of bytes copied.
506
+ # If no valid UTF-8 char exists at position i,
507
+ # ucharcopy writes Ustrerr and returns 1.
508
+ def ucharcopy(t, s, i)
509
+ n = s.length - i
510
+ raise Utf8Error if n < 1
511
+
512
+ c0 = s[i].ord
513
+
514
+ # 1-byte, 7-bit sequence?
515
+ if c0 < Utagx
516
+ t.putc(c0)
517
+ return 1
518
+ end
519
+
520
+ raise Utf8Error if c0 < Utag2 # unexpected continuation byte?
521
+
522
+ raise Utf8Error if n < 2 # need continuation byte
523
+ c1 = s[i+1].ord
524
+ raise Utf8Error if c1 < Utagx || Utag2 <= c1
525
+
526
+ # 2-byte, 11-bit sequence?
527
+ if c0 < Utag3
528
+ raise Utf8Error if ((c0&Umask2)<<6 | (c1&Umaskx)) <= Uchar1max
529
+ t.putc(c0)
530
+ t.putc(c1)
531
+ return 2
532
+ end
533
+
534
+ # need second continuation byte
535
+ raise Utf8Error if n < 3
536
+
537
+ c2 = s[i+2].ord
538
+ raise Utf8Error if c2 < Utagx || Utag2 <= c2
539
+
540
+ # 3-byte, 16-bit sequence?
541
+ if c0 < Utag4
542
+ u = (c0&Umask3)<<12 | (c1&Umaskx)<<6 | (c2&Umaskx)
543
+ raise Utf8Error if u <= Uchar2max
544
+ t.putc(c0)
545
+ t.putc(c1)
546
+ t.putc(c2)
547
+ return 3
548
+ end
549
+
550
+ # need third continuation byte
551
+ raise Utf8Error if n < 4
552
+ c3 = s[i+3].ord
553
+ raise Utf8Error if c3 < Utagx || Utag2 <= c3
554
+
555
+ # 4-byte, 21-bit sequence?
556
+ if c0 < Utag5
557
+ u = (c0&Umask4)<<18 | (c1&Umaskx)<<12 | (c2&Umaskx)<<6 | (c3&Umaskx)
558
+ raise Utf8Error if u <= Uchar3max
559
+ t.putc(c0)
560
+ t.putc(c1)
561
+ t.putc(c2)
562
+ t.putc(c3)
563
+ return 4
564
+ end
565
+
566
+ raise Utf8Error
567
+ rescue Utf8Error
568
+ t.write(Ustrerr)
569
+ return 1
570
+ end
571
+
572
+
573
+ def rubydoesenc?
574
+ ::String.method_defined?(:force_encoding)
575
+ end
576
+
577
+
578
+ class Utf8Error < ::StandardError
579
+ end
580
+
581
+
582
+ class Error < ::StandardError
583
+ end
584
+
585
+
586
+ Utagx = 0b1000_0000
587
+ Utag2 = 0b1100_0000
588
+ Utag3 = 0b1110_0000
589
+ Utag4 = 0b1111_0000
590
+ Utag5 = 0b1111_1000
591
+ Umaskx = 0b0011_1111
592
+ Umask2 = 0b0001_1111
593
+ Umask3 = 0b0000_1111
594
+ Umask4 = 0b0000_0111
595
+ Uchar1max = (1<<7) - 1
596
+ Uchar2max = (1<<11) - 1
597
+ Uchar3max = (1<<16) - 1
598
+ Ucharerr = 0xFFFD # unicode "replacement char"
599
+ Ustrerr = "\xef\xbf\xbd" # unicode "replacement char"
600
+ Usurrself = 0x10000
601
+ Usurr1 = 0xd800
602
+ Usurr2 = 0xdc00
603
+ Usurr3 = 0xe000
604
+
605
+ Spc = ' '[0]
606
+ Unesc = {?b=>?\b, ?f=>?\f, ?n=>?\n, ?r=>?\r, ?t=>?\t}
607
+ end
608
+
609
+ end