2015-11-19 12:47:11 +00:00
|
|
|
{EventEmitter} = require 'events'
|
|
|
|
|
|
|
|
bindings = process.atomBinding 'session'
|
|
|
|
|
|
|
|
PERSIST_PERFIX = 'persist:'
|
|
|
|
|
2015-11-19 13:03:42 +00:00
|
|
|
# Returns the Session from |partition| string.
|
2015-11-19 12:47:11 +00:00
|
|
|
exports.fromPartition = (partition='') ->
|
|
|
|
if partition.startsWith PERSIST_PERFIX
|
|
|
|
bindings.fromPartition partition.substr(PERSIST_PERFIX.length), false
|
|
|
|
else
|
|
|
|
bindings.fromPartition partition, true
|
|
|
|
|
2015-11-19 13:03:42 +00:00
|
|
|
# Returns the default session.
|
|
|
|
Object.defineProperty exports, 'defaultSession',
|
|
|
|
enumerable: true
|
|
|
|
get: -> exports.fromPartition ''
|
|
|
|
|
2015-11-19 12:47:11 +00:00
|
|
|
wrapSession = (session) ->
|
|
|
|
# session is an EventEmitter.
|
|
|
|
session.__proto__ = EventEmitter.prototype
|
|
|
|
|
|
|
|
bindings._setWrapSession wrapSession
|