/************************************************************************** * Copyright (C) 2016 by Savoir-faire Linux * * Author: Jäger Nicolas * * Author: Traczyk Andreas * * * * 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 3 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, see . * **************************************************************************/ using namespace concurrency; namespace RingClientUWP { /* delegate */ delegate void IncomingCall(String^ accountId, String^ callId, String^ from); delegate void StateChange(String^ callId, String^ state, int code); delegate void IncomingAccountMessage(String^ accountId, String^ from, String^ payload); delegate void Calling(Call^ call); public ref class RingD sealed { public: /* functions */ /* properties */ static property RingD^ instance { RingD^ get() { static RingD^ instance_ = ref new RingD(); return instance_; } } property bool daemonRunning { bool get() { return daemonRunning_; } } internal: /* functions */ void startDaemon(); void reloadAccountList(); void sendAccountTextMessage(String^ message); void createRINGAccount(String^ alias); void createSIPAccount(String^ alias); void refuseIncommingCall(Call^ call); void acceptIncommingCall(Call^ call); void placeCall(Contact^ contact); void cancelOutGoingCall(Call^ call); /* TODO : move members */ bool hasConfig; std::string accountName; /* events */ event IncomingCall^ incomingCall; event StateChange^ stateChange; event IncomingAccountMessage^ incomingAccountMessage; event Calling^ calling; private: /* sub classes */ enum class Request { None, AddRingAccount, AddSIPAccount, RefuseIncommingCall, AcceptIncommingCall, CancelOutGoingCall }; ref class Task { internal: Task(Request r) { request = r; } Task(Request r, Call^ c) { request = r; _call = c; } public: property Request request; property Call^ _call; }; /* functions */ RingD(); // singleton void dequeueTasks(); /* members */ std::string localFolder_; bool daemonRunning_ = false; std::queue tasksList_; }; }