123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- """A base class session manager."""
- # Copyright (c) Jupyter Development Team.
- # Distributed under the terms of the Modified BSD License.
- import os
- import uuid
- try:
- import sqlite3
- except ImportError:
- # fallback on pysqlite2 if Python was build without sqlite
- from pysqlite2 import dbapi2 as sqlite3
- from tornado import gen, web
- from traitlets.config.configurable import LoggingConfigurable
- from ipython_genutils.py3compat import unicode_type
- from traitlets import Instance
- class SessionManager(LoggingConfigurable):
- kernel_manager = Instance('notebook.services.kernels.kernelmanager.MappingKernelManager')
- contents_manager = Instance('notebook.services.contents.manager.ContentsManager')
-
- # Session database initialized below
- _cursor = None
- _connection = None
- _columns = {'session_id', 'path', 'name', 'type', 'kernel_id'}
-
- @property
- def cursor(self):
- """Start a cursor and create a database called 'session'"""
- if self._cursor is None:
- self._cursor = self.connection.cursor()
- self._cursor.execute("""CREATE TABLE session
- (session_id, path, name, type, kernel_id)""")
- return self._cursor
- @property
- def connection(self):
- """Start a database connection"""
- if self._connection is None:
- self._connection = sqlite3.connect(':memory:')
- self._connection.row_factory = sqlite3.Row
- return self._connection
-
- def close(self):
- """Close the sqlite connection"""
- if self._cursor is not None:
- self._cursor.close()
- self._cursor = None
- def __del__(self):
- """Close connection once SessionManager closes"""
- self.close()
- def session_exists(self, path):
- """Check to see if the session of a given name exists"""
- self.cursor.execute("SELECT * FROM session WHERE path=?", (path,))
- reply = self.cursor.fetchone()
- if reply is None:
- return False
- else:
- return True
- def new_session_id(self):
- "Create a uuid for a new session"
- return unicode_type(uuid.uuid4())
- @gen.coroutine
- def create_session(self, path=None, name=None, type=None, kernel_name=None, kernel_id=None):
- """Creates a session and returns its model"""
- session_id = self.new_session_id()
- if kernel_id is not None and kernel_id in self.kernel_manager:
- pass
- else:
- kernel_id = yield self.start_kernel_for_session(session_id, path, name, type, kernel_name)
- result = yield gen.maybe_future(
- self.save_session(session_id, path=path, name=name, type=type, kernel_id=kernel_id)
- )
- # py2-compat
- raise gen.Return(result)
- @gen.coroutine
- def start_kernel_for_session(self, session_id, path, name, type, kernel_name):
- """Start a new kernel for a given session."""
- # allow contents manager to specify kernels cwd
- kernel_path = self.contents_manager.get_kernel_path(path=path)
- kernel_id = yield gen.maybe_future(
- self.kernel_manager.start_kernel(path=kernel_path, kernel_name=kernel_name)
- )
- # py2-compat
- raise gen.Return(kernel_id)
- def save_session(self, session_id, path=None, name=None, type=None, kernel_id=None):
- """Saves the items for the session with the given session_id
-
- Given a session_id (and any other of the arguments), this method
- creates a row in the sqlite session database that holds the information
- for a session.
-
- Parameters
- ----------
- session_id : str
- uuid for the session; this method must be given a session_id
- path : str
- the path for the given session
- name: str
- the name of the session
- type: string
- the type of the session
- kernel_id : str
- a uuid for the kernel associated with this session
-
- Returns
- -------
- model : dict
- a dictionary of the session model
- """
- self.cursor.execute("INSERT INTO session VALUES (?,?,?,?,?)",
- (session_id, path, name, type, kernel_id)
- )
- return self.get_session(session_id=session_id)
- def get_session(self, **kwargs):
- """Returns the model for a particular session.
-
- Takes a keyword argument and searches for the value in the session
- database, then returns the rest of the session's info.
- Parameters
- ----------
- **kwargs : keyword argument
- must be given one of the keywords and values from the session database
- (i.e. session_id, path, name, type, kernel_id)
- Returns
- -------
- model : dict
- returns a dictionary that includes all the information from the
- session described by the kwarg.
- """
- if not kwargs:
- raise TypeError("must specify a column to query")
- conditions = []
- for column in kwargs.keys():
- if column not in self._columns:
- raise TypeError("No such column: %r", column)
- conditions.append("%s=?" % column)
- query = "SELECT * FROM session WHERE %s" % (' AND '.join(conditions))
- self.cursor.execute(query, list(kwargs.values()))
- try:
- row = self.cursor.fetchone()
- except KeyError:
- # The kernel is missing, so the session just got deleted.
- row = None
- if row is None:
- q = []
- for key, value in kwargs.items():
- q.append("%s=%r" % (key, value))
- raise web.HTTPError(404, u'Session not found: %s' % (', '.join(q)))
- return self.row_to_model(row)
- def update_session(self, session_id, **kwargs):
- """Updates the values in the session database.
-
- Changes the values of the session with the given session_id
- with the values from the keyword arguments.
-
- Parameters
- ----------
- session_id : str
- a uuid that identifies a session in the sqlite3 database
- **kwargs : str
- the key must correspond to a column title in session database,
- and the value replaces the current value in the session
- with session_id.
- """
- self.get_session(session_id=session_id)
- if not kwargs:
- # no changes
- return
- sets = []
- for column in kwargs.keys():
- if column not in self._columns:
- raise TypeError("No such column: %r" % column)
- sets.append("%s=?" % column)
- query = "UPDATE session SET %s WHERE session_id=?" % (', '.join(sets))
- self.cursor.execute(query, list(kwargs.values()) + [session_id])
- def row_to_model(self, row):
- """Takes sqlite database session row and turns it into a dictionary"""
- if row['kernel_id'] not in self.kernel_manager:
- # The kernel was killed or died without deleting the session.
- # We can't use delete_session here because that tries to find
- # and shut down the kernel.
- self.cursor.execute("DELETE FROM session WHERE session_id=?",
- (row['session_id'],))
- raise KeyError
- model = {
- 'id': row['session_id'],
- 'path': row['path'],
- 'name': row['name'],
- 'type': row['type'],
- 'kernel': self.kernel_manager.kernel_model(row['kernel_id'])
- }
- if row['type'] == 'notebook':
- # Provide the deprecated API.
- model['notebook'] = {'path': row['path'], 'name': row['name']}
- return model
- def list_sessions(self):
- """Returns a list of dictionaries containing all the information from
- the session database"""
- c = self.cursor.execute("SELECT * FROM session")
- result = []
- # We need to use fetchall() here, because row_to_model can delete rows,
- # which messes up the cursor if we're iterating over rows.
- for row in c.fetchall():
- try:
- result.append(self.row_to_model(row))
- except KeyError:
- pass
- return result
- @gen.coroutine
- def delete_session(self, session_id):
- """Deletes the row in the session database with given session_id"""
- session = self.get_session(session_id=session_id)
- yield gen.maybe_future(self.kernel_manager.shutdown_kernel(session['kernel']['id']))
- self.cursor.execute("DELETE FROM session WHERE session_id=?", (session_id,))
|