/* * Copyright © 2017 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3, as published * by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranties of * MERCHANTABILITY, SATISFACTORY QUALITY, 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, see . * * Authors: * Ted Gould */ #pragma once #include #include "helper.h" #include "jobs-base.h" namespace ubuntu { namespace app_launch { namespace helper_impls { /** We really should have put a relationship between Helper::Instance and Application::Instance in the API. But to work around that today we're just handling it here because the helper interface is a subset of what the Application::Instance class provides */ class BaseInstance : public Helper::Instance { public: std::shared_ptr impl; BaseInstance(const std::shared_ptr& inst); BaseInstance(const std::shared_ptr& inst); bool isRunning() override; void stop() override; const std::string& getInstanceId() { return impl->getInstanceId(); } }; class Base : public Helper { public: Base(const Helper::Type& type, const AppID& appid, const std::shared_ptr& registry); AppID appId() override; bool hasInstances() override; std::vector> instances() override; std::shared_ptr launch(std::vector urls = {}) override; std::shared_ptr launch(MirPromptSession* session, std::vector urls = {}) override; std::shared_ptr existingInstance(const std::string& instanceid); private: Helper::Type _type; AppID _appid; std::shared_ptr _registry; std::list> defaultEnv(); }; } // namespace helper_impl } // namespace app_launch } // namespace ubuntu