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
|
# This file is part of the Frescobaldi project, http://www.frescobaldi.org/
#
# Copyright (c) 2008 - 2014 by Wilbert Berendsen
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# See http://www.gnu.org/licenses/ for more information.
"""
Entry point of Frescobaldi.
"""
import sip
sip.setapi("QString", 2)
sip.setapi("QVariant", 2)
import os
import re
import sys
from PyQt5.QtCore import QSettings, QTimer, QUrl
from PyQt5.QtGui import QTextCursor
from PyQt5.QtWidgets import QApplication
import appinfo # Information about our application
import app # Instantiate global signals etc
import install # Update QSettings structure etc. if needed
import guistyle # Setup GUI style
import po.setup # Setup language
import remote # IPC with other Frescobaldi instances
def parse_commandline():
"""Parses the command line; returns options and filenames.
If --version, --help or invalid options were given, the application will
exit.
"""
import argparse
argparse._ = _ # let argparse use our translations
parser = argparse.ArgumentParser(conflict_handler="resolve",
description = _("A LilyPond Music Editor"))
parser.add_argument('-v', '--version', action="version",
version="{0} {1}".format(appinfo.appname, appinfo.version),
help=_("show program's version number and exit"))
parser.add_argument('-V', '--version-debug', action="store_true", default=False,
help=_("show version numbers of {appname} and its supporting modules "
"and exit").format(appname=appinfo.appname))
parser.add_argument('-e', '--encoding', metavar=_("ENC"),
help=_("Encoding to use"))
parser.add_argument('-l', '--line', type=int, metavar=_("NUM"),
help=_("Line number to go to, starting at 1"))
parser.add_argument('-c', '--column', type=int, metavar=_("NUM"),
help=_("Column to go to, starting at 0"), default=0)
parser.add_argument('--start', metavar=_("NAME"),
help=_("Session to start ('{none}' for empty session)").format(none="-"),
dest="session")
parser.add_argument('--list-sessions', action="store_true", default=False,
help=_("List the session names and exit"))
parser.add_argument('-n', '--new', action="store_true", default=False,
help=_("Always start a new instance"))
parser.add_argument('files', metavar=_("file"), nargs='*',
help=_("File to be opened"))
# Make sure debugger options are recognized as valid. These are passed automatically
# from PyDev in Eclipse to the inferior process.
if "pydevd" in sys.modules:
parser.add_argument('--vm_type', '-v')
parser.add_argument('-a', '--client')
parser.add_argument('-p', '--port')
parser.add_argument('-f', '--file')
parser.add_argument('-o', '--output')
args = QApplication.arguments()
# Strip interpreter name and its command line options on Windows
if os.name == 'nt':
while args:
if os.path.basename(args[0]).lower().startswith(appinfo.name):
break
args.pop(0)
return parser.parse_args(args[1:])
def url(arg):
"""Converts a filename-like argument to a QUrl."""
if re.match(r'^(https?|s?ftp)://', arg):
return QUrl(arg)
elif arg.startswith('file://'):
return QUrl.fromLocalFile(os.path.abspath(arg[7:]))
elif arg.startswith('file:'):
return QUrl.fromLocalFile(os.path.abspath(arg[5:]))
else:
return QUrl.fromLocalFile(os.path.abspath(arg))
def patch_pyqt():
"""Patch PyQt classes to strip trailing null characters on Python 2
It works around a bug triggered by Unicode characters above 0xFFFF.
"""
if sys.version_info >= (3, 3):
return
old_toLocalFile = QUrl.toLocalFile
QUrl.toLocalFile = lambda url: old_toLocalFile(url).rstrip('\0')
old_toString = QUrl.toString
QUrl.toString = lambda *args: old_toString(*args).rstrip('\0')
old_path = QUrl.path
QUrl.path = lambda self: old_path(self).rstrip('\0')
old_arguments = QApplication.arguments
QApplication.arguments = staticmethod(
lambda: [arg.rstrip('\0') for arg in old_arguments()])
from PyQt5.QtWidgets import QFileDialog
old_getOpenFileNames = QFileDialog.getOpenFileNames
QFileDialog.getOpenFileNames = staticmethod(
lambda *args: [f.rstrip('\0') for f in old_getOpenFileNames(*args)])
old_getOpenFileName = QFileDialog.getOpenFileName
QFileDialog.getOpenFileName = staticmethod(
lambda *args: old_getOpenFileName(*args).rstrip('\0'))
old_getSaveFileName = QFileDialog.getSaveFileName
QFileDialog.getSaveFileName = staticmethod(
lambda *args: old_getSaveFileName(*args).rstrip('\0'))
def check_ly():
"""Check if ly is installed and has the correct version.
If python-ly is not available or too old, we display a critical message
and exit. In the future we will probably remove this function.
In a good software distribution this should never happen, but it can happen
when a user leaves the old stale 'ly' package in the frescobaldi_app
directory, or has not installed python-ly at all.
Because that yields unexpected behaviour and error messages, we better
check for the availability of the 'ly' module beforehand.
Importing ly.pkginfo is not expensive.
"""
ly_required = (0, 9, 4)
try:
import ly.pkginfo
version = tuple(map(int, re.findall(r"\d+", ly.pkginfo.version)))
except (ImportError, AttributeError):
pass
else:
if version >= ly_required:
return
from PyQt5.QtWidgets import QMessageBox
QMessageBox.critical(None, _("Can't run Frescobaldi"), _(
"We are sorry, but Frescobaldi can't run properly.\n\n"
"The python-ly package is not available or too old.\n"
"At least version {version} is required to run Frescobaldi.\n\n"
"If you did install python-ly correctly, please remove the old\n"
"ly package from the frescobaldi_app directory, or completely\n"
"remove and then reinstall Frescobaldi."
).format(version=".".join(format(d) for d in ly_required)))
sys.exit(1)
def main():
"""Main function."""
args = parse_commandline()
if args.version_debug:
import debuginfo
sys.stdout.write(debuginfo.version_info_string() + '\n')
sys.exit(0)
check_ly()
patch_pyqt()
if args.list_sessions:
import sessions
for name in sessions.sessionNames():
sys.stdout.write(name + '\n')
sys.exit(0)
urls = list(map(url, args.files))
if not app.qApp.isSessionRestored():
if not args.new and remote.enabled():
api = remote.get()
if api:
api.command_line(args, urls)
api.close()
sys.exit(0)
if QSettings().value("splash_screen", True, bool):
import splashscreen
splashscreen.show()
# application icon
import icons
QApplication.setWindowIcon(icons.get("frescobaldi"))
QTimer.singleShot(0, remote.setup) # Start listening for IPC
import mainwindow # contains MainWindow class
import session # Initialize QSessionManager support
import sessions # Initialize our own named session support
# boot Frescobaldi-specific stuff that should be running on startup
import viewhighlighter # highlight arbitrary ranges in text
import progress # creates progress bar in view space
import musicpos # shows music time in statusbar
import autocomplete # auto-complete input
import wordboundary # better wordboundary behaviour for the editor
if sys.platform.startswith('darwin'):
import macosx.setup
macosx.setup.initialize()
if app.qApp.isSessionRestored():
# Restore session, we are started by the session manager
session.restoreSession(app.qApp.sessionKey())
return
# load specified session?
doc = None
if args.session and args.session != "-":
doc = sessions.loadSession(args.session)
# Just create one MainWindow
win = mainwindow.MainWindow()
win.show()
win.activateWindow()
# load documents given as arguments
import document
for u in urls:
doc = win.openUrl(u, args.encoding, ignore_errors=True)
if not doc:
doc = document.Document(u, args.encoding)
# were documents loaded?
if not doc:
if app.documents:
doc = app.documents[-1]
elif not args.session:
# no docs, load default session
doc = sessions.loadDefaultSession()
if doc:
win.setCurrentDocument(doc)
else:
win.cleanStart()
if urls and args.line is not None:
# set the last loaded document active and apply navigation if requested
pos = doc.findBlockByNumber(args.line - 1).position() + args.column
cursor = QTextCursor(doc)
cursor.setPosition(pos)
win.currentView().setTextCursor(cursor)
win.currentView().centerCursor()
|