This file is indexed.

/usr/lib/nodejs/jju/lib/document.js is in node-jju 1.1.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
/*
 * Author: Alex Kocharin <alex@kocharin.ru>
 * GIT: https://github.com/rlidwka/jju
 * License: WTFPL, grab your copy here: http://www.wtfpl.net/txt/copying/
 */

var assert = require('assert')
  , tokenize = require('./parse').tokenize
  , stringify = require('./stringify').stringify
  , analyze = require('./analyze').analyze

function isObject(x) {
	return typeof(x) === 'object' && x !== null
}

function value_to_tokenlist(value, stack, options, is_key, indent) {
	options = Object.create(options)
	options._stringify_key = !!is_key

	if (indent) {
		options._prefix = indent.prefix.map(function(x) {
			return x.raw
		}).join('')
	}

	if (options._splitMin == null) options._splitMin = 0
	if (options._splitMax == null) options._splitMax = 0

	var stringified = stringify(value, options)

	if (is_key) {
		return [ { raw: stringified, type: 'key', stack: stack, value: value } ]
	}

	options._addstack = stack
	var result = tokenize(stringified, {
		_addstack: stack,
	})
	result.data = null
	return result
}

// '1.2.3' -> ['1','2','3']
function arg_to_path(path) {
	// array indexes
	if (typeof(path) === 'number') path = String(path)

	if (path === '') path = []
	if (typeof(path) === 'string') path = path.split('.')

	if (!Array.isArray(path)) throw new Error('Invalid path type, string or array expected')
	return path
}

// returns new [begin, end] or false if not found
//
//          {x:3, xxx: 111, y: [111,  {q: 1, e: 2}  ,333]  }
// f('y',0) returns this       B^^^^^^^^^^^^^^^^^^^^^^^^E
// then f('1',1) would reduce it to   B^^^^^^^^^^E
function find_element_in_tokenlist(element, lvl, tokens, begin, end) {
	while(tokens[begin].stack[lvl] != element) {
		if (begin++ >= end) return false
	}
	while(tokens[end].stack[lvl] != element) {
		if (end-- < begin) return false
	}
	return [begin, end]
}

function is_whitespace(token_type) {
	return token_type === 'whitespace'
	    || token_type === 'newline'
	    || token_type === 'comment'
}

function find_first_non_ws_token(tokens, begin, end) {
	while(is_whitespace(tokens[begin].type)) {
		if (begin++ >= end) return false
	}
	return begin
}

function find_last_non_ws_token(tokens, begin, end) {
	while(is_whitespace(tokens[end].type)) {
		if (end-- < begin) return false
	}
	return end
}

/*
 * when appending a new element of an object/array, we are trying to
 * figure out the style used on the previous element
 *
 * return {prefix, sep1, sep2, suffix}
 *
 *      '    "key" :  "element"    \r\n'
 * prefix^^^^ sep1^ ^^sep2     ^^^^^^^^suffix
 *
 * begin - the beginning of the object/array
 * end - last token of the last element (value or comma usually)
 */
function detect_indent_style(tokens, is_array, begin, end, level) {
	var result = {
		sep1: [],
		sep2: [],
		suffix: [],
		prefix: [],
		newline: [],
	}

	if (tokens[end].type === 'separator' && tokens[end].stack.length !== level+1 && tokens[end].raw !== ',') {
		// either a beginning of the array (no last element) or other weird situation
		//
		// just return defaults
		return result
	}

	//                              ' "key"  : "value"  ,'
	// skipping last separator, we're now here        ^^
	if (tokens[end].type === 'separator')
		end = find_last_non_ws_token(tokens, begin, end - 1)
	if (end === false) return result

	//                              ' "key"  : "value"  ,'
	// skipping value                          ^^^^^^^
	while(tokens[end].stack.length > level) end--

	if (!is_array) {
		while(is_whitespace(tokens[end].type)) {
			if (end < begin) return result
			if (tokens[end].type === 'whitespace') {
				result.sep2.unshift(tokens[end])
			} else {
				// newline, comment or other unrecognized codestyle
				return result
			}
			end--
		}

		//                              ' "key"  : "value"  ,'
		// skipping separator                    ^
		assert.equal(tokens[end].type, 'separator')
		assert.equal(tokens[end].raw, ':')
		while(is_whitespace(tokens[--end].type)) {
			if (end < begin) return result
			if (tokens[end].type === 'whitespace') {
				result.sep1.unshift(tokens[end])
			} else {
				// newline, comment or other unrecognized codestyle
				return result
			}
		}

		assert.equal(tokens[end].type, 'key')
		end--
	}

	//                              ' "key"  : "value"  ,'
	// skipping key                   ^^^^^
	while(is_whitespace(tokens[end].type)) {
		if (end < begin) return result
		if (tokens[end].type === 'whitespace') {
			result.prefix.unshift(tokens[end])
		} else if (tokens[end].type === 'newline') {
			result.newline.unshift(tokens[end])
			return result
		} else {
			// comment or other unrecognized codestyle
			return result
		}
		end--
	}

	return result
}

function Document(text, options) {
	if (!(this instanceof Document)) return new Document(text, options)

	if (options == null) options = {}
	//options._structure = true
	var tokens = this._tokens = tokenize(text, options)
	this._data = tokens.data
	tokens.data = null
	this._options = options

	var stats = analyze(text, options)
	if (options.indent == null) {
		options.indent = stats.indent
	}
	if (options.quote == null) {
		options.quote = stats.quote
	}
	if (options.quote_keys == null) {
		options.quote_keys = stats.quote_keys
	}
	if (options.no_trailing_comma == null) {
		options.no_trailing_comma = !stats.has_trailing_comma
	}
}

// return true if it's a proper object
//        throw otherwise
function check_if_can_be_placed(key, object, is_unset) {
	//if (object == null) return false
	function error(add) {
		return new Error("You can't " + (is_unset ? 'unset' : 'set') + " key '" + key + "'" + add)
	}

	if (!isObject(object)) {
		throw error(' of an non-object')
	}
	if (Array.isArray(object)) {
		// array, check boundary
		if (String(key).match(/^\d+$/)) {
			key = Number(String(key))
			if (object.length < key || (is_unset && object.length === key)) {
				throw error(', out of bounds')
			} else if (is_unset && object.length !== key+1) {
				throw error(' in the middle of an array')
			} else {
				return true
			}
		} else {
			throw error(' of an array')
		}
	} else {
		// object
		return true
	}
}

// usage: document.set('path.to.something', 'value')
//    or: document.set(['path','to','something'], 'value')
Document.prototype.set = function(path, value) {
	path = arg_to_path(path)

	// updating this._data and check for errors
	if (path.length === 0) {
		if (value === undefined) throw new Error("can't remove root document")
		this._data = value
		var new_key = false

	} else {
		var data = this._data

		for (var i=0; i<path.length-1; i++) {
			check_if_can_be_placed(path[i], data, false)
			data = data[path[i]]
		}
		if (i === path.length-1) {
			check_if_can_be_placed(path[i], data, value === undefined)
		}

		var new_key = !(path[i] in data)

		if (value === undefined) {
			if (Array.isArray(data)) {
				data.pop()
			} else {
				delete data[path[i]]
			}
		} else {
			data[path[i]] = value
		}
	}

	// for inserting document
	if (!this._tokens.length)
		this._tokens = [ { raw: '', type: 'literal', stack: [], value: undefined } ]

	var position = [
		find_first_non_ws_token(this._tokens, 0, this._tokens.length - 1),
		find_last_non_ws_token(this._tokens, 0, this._tokens.length - 1),
	]
	for (var i=0; i<path.length-1; i++) {
		position = find_element_in_tokenlist(path[i], i, this._tokens, position[0], position[1])
		if (position == false) throw new Error('internal error, please report this')
	}
	// assume that i == path.length-1 here

	if (path.length === 0) {
		var newtokens = value_to_tokenlist(value, path, this._options)
		// all good

	} else if (!new_key) {
		// replace old value with a new one (or deleting something)
		var pos_old = position
		position = find_element_in_tokenlist(path[i], i, this._tokens, position[0], position[1])

		if (value === undefined && position !== false) {
			// deleting element (position !== false ensures there's something)
			var newtokens = []

			if (!Array.isArray(data)) {
				// removing element from an object, `{x:1, key:CURRENT} -> {x:1}`
				// removing sep, literal and optional sep
				// ':'
				var pos2 = find_last_non_ws_token(this._tokens, pos_old[0], position[0] - 1)
				assert.equal(this._tokens[pos2].type, 'separator')
				assert.equal(this._tokens[pos2].raw, ':')
				position[0] = pos2

				// key
				var pos2 = find_last_non_ws_token(this._tokens, pos_old[0], position[0] - 1)
				assert.equal(this._tokens[pos2].type, 'key')
				assert.equal(this._tokens[pos2].value, path[path.length-1])
				position[0] = pos2
			}

			// removing comma in arrays and objects
			var pos2 = find_last_non_ws_token(this._tokens, pos_old[0], position[0] - 1)
			assert.equal(this._tokens[pos2].type, 'separator')
			if (this._tokens[pos2].raw === ',') {
				position[0] = pos2
			} else {
				// beginning of the array/object, so we should remove trailing comma instead
				pos2 = find_first_non_ws_token(this._tokens, position[1] + 1, pos_old[1])
				assert.equal(this._tokens[pos2].type, 'separator')
				if (this._tokens[pos2].raw === ',') {
					position[1] = pos2
				}
			}

		} else {
			var indent = pos2 !== false
			           ? detect_indent_style(this._tokens, Array.isArray(data), pos_old[0], position[1] - 1, i)
			           : {}
			var newtokens = value_to_tokenlist(value, path, this._options, false, indent)
		}

	} else {
		// insert new key, that's tricky
		var path_1 = path.slice(0, i)

		//	find a last separator after which we're inserting it
		var pos2 = find_last_non_ws_token(this._tokens, position[0] + 1, position[1] - 1)
		assert(pos2 !== false)

		var indent = pos2 !== false
		           ? detect_indent_style(this._tokens, Array.isArray(data), position[0] + 1, pos2, i)
		           : {}

		var newtokens = value_to_tokenlist(value, path, this._options, false, indent)

		// adding leading whitespaces according to detected codestyle
		var prefix = []
		if (indent.newline && indent.newline.length)
			prefix = prefix.concat(indent.newline)
		if (indent.prefix && indent.prefix.length)
			prefix = prefix.concat(indent.prefix)

		// adding '"key":' (as in "key":"value") to object values
		if (!Array.isArray(data)) {
			prefix = prefix.concat(value_to_tokenlist(path[path.length-1], path_1, this._options, true))
			if (indent.sep1 && indent.sep1.length)
				prefix = prefix.concat(indent.sep1)
			prefix.push({raw: ':', type: 'separator', stack: path_1})
			if (indent.sep2 && indent.sep2.length)
				prefix = prefix.concat(indent.sep2)
		}

		newtokens.unshift.apply(newtokens, prefix)

		// check if prev token is a separator AND they're at the same level
		if (this._tokens[pos2].type === 'separator' && this._tokens[pos2].stack.length === path.length-1) {
			// previous token is either , or [ or {
			if (this._tokens[pos2].raw === ',') {
				// restore ending comma
				newtokens.push({raw: ',', type: 'separator', stack: path_1})
			}
		} else {
			// previous token isn't a separator, so need to insert one
			newtokens.unshift({raw: ',', type: 'separator', stack: path_1})
		}

		if (indent.suffix && indent.suffix.length)
			newtokens.push.apply(newtokens, indent.suffix)

		assert.equal(this._tokens[position[1]].type, 'separator')
		position[0] = pos2+1
		position[1] = pos2
	}

	newtokens.unshift(position[1] - position[0] + 1)
	newtokens.unshift(position[0])
	this._tokens.splice.apply(this._tokens, newtokens)

	return this
}

// convenience method
Document.prototype.unset = function(path) {
	return this.set(path, undefined)
}

Document.prototype.get = function(path) {
	path = arg_to_path(path)

	var data = this._data
	for (var i=0; i<path.length; i++) {
		if (!isObject(data)) return undefined
		data = data[path[i]]
	}
	return data
}

Document.prototype.has = function(path) {
	path = arg_to_path(path)

	var data = this._data
	for (var i=0; i<path.length; i++) {
		if (!isObject(data)) return false
		data = data[path[i]]
	}
	return data !== undefined
}

// compare old object and new one, and change differences only
Document.prototype.update = function(value) {
	var self = this
	change([], self._data, value)
	return self

	function change(path, old_data, new_data) {
		if (!isObject(new_data) || !isObject(old_data)) {
			// if source or dest is primitive, just replace
			if (new_data !== old_data)
				self.set(path, new_data)

		} else if (Array.isArray(new_data) != Array.isArray(old_data)) {
			// old data is an array XOR new data is an array, replace as well
			self.set(path, new_data)

		} else if (Array.isArray(new_data)) {
			// both values are arrays here

			if (new_data.length > old_data.length) {
				// adding new elements, so going forward
				for (var i=0; i<new_data.length; i++) {
					path.push(String(i))
					change(path, old_data[i], new_data[i])
					path.pop()
				}

			} else {
				// removing something, so going backward
				for (var i=old_data.length-1; i>=0; i--) {
					path.push(String(i))
					change(path, old_data[i], new_data[i])
					path.pop()
				}
			}

		} else {
			// both values are objects here
			for (var i in new_data) {
				path.push(String(i))
				change(path, old_data[i], new_data[i])
				path.pop()
			}

			for (var i in old_data) {
				if (i in new_data) continue
				path.push(String(i))
				change(path, old_data[i], new_data[i])
				path.pop()
			}
		}
	}
}

Document.prototype.toString = function() {
	return this._tokens.map(function(x) {
		return x.raw
	}).join('')
}

module.exports.Document = Document

module.exports.update = function updateJSON(source, new_value, options) {
	return (new Document(source, options)).update(new_value).toString()
}