/* * Copyright (c) 2017 TOYOTA MOTOR CORPORATION * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef HOMESCREENCONNECT_H #define HOMESCREENCONNECT_H #include #include #include #include #include #include #include extern "C" { #include #include } using namespace std; class HomescreenConnect : public QObject { Q_OBJECT public: explicit HomescreenConnect(QObject *parent = 0); ~HomescreenConnect(); static const std::vector state_lists; static const std::vector event_lists; int init(int port, const string& token); void on_hangup(void *closure, struct afb_wsj1 *wsj); void on_call(void *closure, const char *api, const char *verb, struct afb_wsj1_msg *msg); void on_event(void *closure, const char *event, struct afb_wsj1_msg *msg); void on_reply(void *closure, struct afb_wsj1_msg *msg); signals: void statusChanged(bool status); void showInformation(QString info); void stopTimer(void); void retryStart(void); private slots: void subscribe(void); void stopGetCode(void); void resendCode(void); void startTimer(void); private: int initialize_websocket(void); int send_code(const char *str); struct afb_wsj1* sp_websock; struct afb_wsj1_itf minterface; sd_event* mploop; std::string muri; int mport = 2000; std::string mtoken = "hs"; const char *amazonCode; QTimer *timer; QTimer *retrytimer; int retrycount; }; #endif // HOMESCREENCONNECT_H