X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLyX.cpp;h=7c2376f980082b8a8575c2f8b391fb01cafcd683;hb=12c7e7dde3851ad894380fd42ba741dd3d0cbcc7;hp=42f79297cc0c8cf64da29457574de830baae1f4d;hpb=31dbbc43d9cbb90c402474bf6179e0c1a7e9478f;p=lyx.git diff --git a/src/LyX.cpp b/src/LyX.cpp index 42f79297cc..7c2376f980 100644 --- a/src/LyX.cpp +++ b/src/LyX.cpp @@ -90,6 +90,13 @@ namespace os = support::os; bool use_gui = true; +// We default to open documents in an already running instance, provided that +// the lyxpipe has been setup. This can be overridden either on the command +// line or through preference settings. + +RunMode run_mode = PREFERRED; + + // Tell what files can be silently overwritten during batch export. // Possible values are: NO_FILES, MAIN_FILE, ALL_FILES, UNSPECIFIED. // Unless specified on command line (through the -f switch) or through the @@ -284,8 +291,11 @@ int LyX::exec(int & argc, char * argv[]) // Minimal setting of locale before parsing command line try { init_package(os::utf8_argv(0), string(), string(), - top_build_dir_is_one_level_up); - } catch (ExceptionMessage const & message) {} + top_build_dir_is_one_level_up); + } catch (ExceptionMessage const & message) { + LYXERR(Debug::LOCALE, message.title_ + ", " + message.details_); + } + // FIXME: This breaks out of source build under Windows. locale_init(); // Here we need to parse the command line. At least @@ -294,8 +304,8 @@ int LyX::exec(int & argc, char * argv[]) try { init_package(os::utf8_argv(0), - cl_system_support, cl_user_support, - top_build_dir_is_one_level_up); + cl_system_support, cl_user_support, + top_build_dir_is_one_level_up); } catch (ExceptionMessage const & message) { if (message.type_ == ErrorException) { Alert::error(message.title_, message.details_); @@ -362,13 +372,20 @@ int LyX::exec(int & argc, char * argv[]) prepareExit(); return exit_status; } - + + // If not otherwise specified by a command line option or + // by preferences, we default to reuse a running instance. + if (run_mode == PREFERRED) + run_mode = USE_REMOTE; + // FIXME /* Create a CoreApplication class that will provide the main event loop * and the socket callback registering. With Qt4, only QtCore * library would be needed. * When this is done, a server_mode could be created and the following two * line would be moved out from here. + * However, note that the first of the two lines below triggers the + * "single instance" behavior, which should occur right at this point. */ // Note: socket callback must be registered after init(argc, argv) // such that package().temp_dir() is properly initialized. @@ -377,7 +394,15 @@ int LyX::exec(int & argc, char * argv[]) FileName(package().temp_dir().absFileName() + "/lyxsocket"))); // Start the real execution loop. - exit_status = pimpl_->application_->exec(); + if (!theServer().deferredLoadingToOtherInstance()) + exit_status = pimpl_->application_->exec(); + else if (!pimpl_->files_to_load_.empty()) { + vector::const_iterator it = pimpl_->files_to_load_.begin(); + vector::const_iterator end = pimpl_->files_to_load_.end(); + lyxerr << _("The following files could not be loaded:") << endl; + for (; it != end; ++it) + lyxerr << *it << endl; + } prepareExit(); @@ -493,7 +518,7 @@ bool LyX::loadFiles() continue; Buffer * buf = pimpl_->buffer_list_.newBuffer(fname.absFileName(), false); - if (buf->loadLyXFile(fname)) { + if (buf->loadLyXFile() == Buffer::ReadSuccess) { ErrorList const & el = buf->errorList("Parse"); if (!el.empty()) for_each(el.begin(), el.end(), @@ -546,7 +571,7 @@ void LyX::execCommands() break; } } - + // create the first main window lyx::dispatch(FuncRequest(LFUN_WINDOW_NEW, geometryArg)); @@ -674,7 +699,7 @@ static void error_handler(int err_sig) (err_sig != SIGHUP && !getEnv("LYXDEBUG").empty())) { #else if (err_sig == SIGSEGV || !getEnv("LYXDEBUG").empty()) { -#endif +#endif #ifdef _MSC_VER // with abort() it crashes again. exit(err_sig); @@ -805,6 +830,7 @@ bool LyX::init() // Set up command definitions pimpl_->toplevel_cmddef_.read(lyxrc.def_file); + // FIXME // Set up bindings pimpl_->toplevel_keymap_.read("site"); pimpl_->toplevel_keymap_.read(lyxrc.bind_file); @@ -846,7 +872,7 @@ bool LyX::init() // This must happen after package initialization and after lyxrc is // read, therefore it can't be done by a static object. ConverterCache::init(); - + return true; } @@ -882,7 +908,7 @@ static bool needsUpdate(string const & file) firstrun = false; } - FileName absfile = + FileName absfile = FileName(addName(package().user_support().absFileName(), file)); return !absfile.exists() || configure_script.lastModified() > absfile.lastModified(); @@ -1036,8 +1062,13 @@ int parse_help(string const &, string const &, string &) " specifying whether all files, main file only, or no files,\n" " respectively, are to be overwritten during a batch export.\n" " Anything else is equivalent to `all', but is not consumed.\n" - "\t-batch execute commands without launching GUI and exit.\n" - "\t-version summarize version and build info\n" + "\t-n [--no-remote]\n" + " open documents in a new instance\n" + "\t-r [--remote]\n" + " open documents in an already running instance\n" + " (a working lyxpipe is needed)\n" + "\t-batch execute commands without launching GUI and exit.\n" + "\t-version summarize version and build info\n" "Check the LyX man page for more details.")) << endl; exit(0); return 0; @@ -1131,14 +1162,28 @@ int parse_geometry(string const & arg1, string const &, string &) } -int parse_batch(string const &, string const &, string &) +int parse_batch(string const &, string const &, string &) { use_gui = false; return 0; } -int parse_force(string const & arg, string const &, string &) +int parse_noremote(string const &, string const &, string &) +{ + run_mode = NEW_INSTANCE; + return 0; +} + + +int parse_remote(string const &, string const &, string &) +{ + run_mode = USE_REMOTE; + return 0; +} + + +int parse_force(string const & arg, string const &, string &) { if (arg == "all") { force_overwrite = ALL_FILES; @@ -1179,6 +1224,10 @@ void LyX::easyParse(int & argc, char * argv[]) cmdmap["-batch"] = parse_batch; cmdmap["-f"] = parse_force; cmdmap["--force-overwrite"] = parse_force; + cmdmap["-n"] = parse_noremote; + cmdmap["--no-remote"] = parse_noremote; + cmdmap["-r"] = parse_remote; + cmdmap["--remote"] = parse_remote; for (int i = 1; i < argc; ++i) { map::const_iterator it @@ -1232,6 +1281,13 @@ void dispatch(FuncRequest const & action, DispatchResult & dr) } +vector & theFilesToLoad() +{ + LASSERT(singleton_, /**/); + return singleton_->pimpl_->files_to_load_; +} + + BufferList & theBufferList() { LASSERT(singleton_, /**/); @@ -1351,39 +1407,48 @@ SpellChecker * theSpellChecker() void setSpellChecker() { -#if defined(USE_MACOSX_PACKAGING) + SpellChecker::ChangeNumber speller_change_number =singleton_->pimpl_->spell_checker_ ? + singleton_->pimpl_->spell_checker_->changeNumber() : 0; + if (lyxrc.spellchecker == "native") { +#if defined(USE_MACOSX_PACKAGING) if (!singleton_->pimpl_->apple_spell_checker_) singleton_->pimpl_->apple_spell_checker_ = new AppleSpellChecker(); singleton_->pimpl_->spell_checker_ = singleton_->pimpl_->apple_spell_checker_; - return; - } +#else + singleton_->pimpl_->spell_checker_ = 0; #endif + } else if (lyxrc.spellchecker == "aspell") { #if defined(USE_ASPELL) - if (lyxrc.spellchecker == "aspell") { if (!singleton_->pimpl_->aspell_checker_) singleton_->pimpl_->aspell_checker_ = new AspellChecker(); singleton_->pimpl_->spell_checker_ = singleton_->pimpl_->aspell_checker_; - return; - } +#else + singleton_->pimpl_->spell_checker_ = 0; #endif + } else if (lyxrc.spellchecker == "enchant") { #if defined(USE_ENCHANT) - if (lyxrc.spellchecker == "enchant") { if (!singleton_->pimpl_->enchant_checker_) singleton_->pimpl_->enchant_checker_ = new EnchantChecker(); singleton_->pimpl_->spell_checker_ = singleton_->pimpl_->enchant_checker_; - return; - } +#else + singleton_->pimpl_->spell_checker_ = 0; #endif + } else if (lyxrc.spellchecker == "hunspell") { #if defined(USE_HUNSPELL) - if (lyxrc.spellchecker == "hunspell") { if (!singleton_->pimpl_->hunspell_checker_) singleton_->pimpl_->hunspell_checker_ = new HunspellChecker(); singleton_->pimpl_->spell_checker_ = singleton_->pimpl_->hunspell_checker_; - return; - } +#else + singleton_->pimpl_->spell_checker_ = 0; #endif - singleton_->pimpl_->spell_checker_ = 0; + } else { + singleton_->pimpl_->spell_checker_ = 0; + } + if (singleton_->pimpl_->spell_checker_) { + singleton_->pimpl_->spell_checker_->changeNumber(speller_change_number); + singleton_->pimpl_->spell_checker_->advanceChangeNumber(); + } } } // namespace lyx