Refactor the console stuff
This commit is contained in:
+6
-3
@@ -18,6 +18,7 @@ from ActivityHost import ActivityHost
|
||||
from ChatController import ChatController
|
||||
from sugar.activity import ActivityFactory
|
||||
from sugar.activity import Activity
|
||||
import sugar.logger
|
||||
|
||||
class ShellDbusService(dbus.service.Object):
|
||||
def __init__(self, shell, bus_name):
|
||||
@@ -59,13 +60,12 @@ class Shell(gobject.GObject):
|
||||
self._console_windows = {}
|
||||
|
||||
def start(self):
|
||||
#log_writer = LogWriter("Shell", False)
|
||||
#log_writer.start()
|
||||
|
||||
session_bus = dbus.SessionBus()
|
||||
bus_name = dbus.service.BusName('com.redhat.Sugar.Shell', bus=session_bus)
|
||||
ShellDbusService(self, bus_name)
|
||||
|
||||
sugar.logger.start('Shell', self)
|
||||
|
||||
self._owner = ShellOwner()
|
||||
self._owner.announce()
|
||||
|
||||
@@ -132,6 +132,9 @@ class Shell(gobject.GObject):
|
||||
module = self._registry.get_activity(activity.get_default_type())
|
||||
console = self.get_console(module.get_id())
|
||||
activity.show_dialog(console)
|
||||
else:
|
||||
console = self.get_console('Shell')
|
||||
console.show()
|
||||
|
||||
def join_activity(self, service):
|
||||
info = self._registry.get_activity(service.get_type())
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import logging
|
||||
import os
|
||||
import socket
|
||||
import sys
|
||||
@@ -9,8 +8,8 @@ def get_display_number():
|
||||
"""Find a free display number trying to connect to 6000+ ports"""
|
||||
retries = 20
|
||||
display_number = 1
|
||||
display_is_free = False
|
||||
|
||||
display_is_free = False
|
||||
|
||||
while not display_is_free and retries > 0:
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
try:
|
||||
@@ -57,10 +56,6 @@ class XnestProcess(Process):
|
||||
|
||||
class Emulator:
|
||||
"""The OLPC emulator"""
|
||||
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def start(self):
|
||||
try:
|
||||
process = XephyrProcess()
|
||||
@@ -70,6 +65,6 @@ class Emulator:
|
||||
process = XnestProcess()
|
||||
process.start()
|
||||
except:
|
||||
logging.error('Cannot run the emulator. You need to install \
|
||||
Xephyr or Xnest.')
|
||||
print('Cannot run the emulator. You need to install\
|
||||
Xephyr or Xnest.')
|
||||
sys.exit(0)
|
||||
|
||||
@@ -74,7 +74,6 @@ from ActivityRegistry import ActivityRegistry
|
||||
|
||||
registry = ActivityRegistry()
|
||||
registry.scan_directory(activities_dest)
|
||||
#registry.scan_directory(os.path.join(env.get_user_dir(), 'activities'))
|
||||
|
||||
from session.Emulator import Emulator
|
||||
|
||||
@@ -82,8 +81,6 @@ from session.Emulator import Emulator
|
||||
emulator = Emulator()
|
||||
emulator.start()
|
||||
|
||||
print 'Redirecting output to the console, press F3 to open it.'
|
||||
|
||||
from session.Session import Session
|
||||
|
||||
session = Session(registry)
|
||||
|
||||
@@ -12,6 +12,9 @@ gtk.gdk.threads_init()
|
||||
dbus.glib.threads_init()
|
||||
|
||||
from sugar.activity import ActivityFactory
|
||||
import sugar.logger
|
||||
|
||||
sugar.logger.start(sys.argv[1])
|
||||
|
||||
logging.info('Starting activity factory %s' % sys.argv[1])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user