Init basesystem source codes.
[staging/basesystem.git] / systemservice / logger_service / server / include / ss_logger_popups.h
1 /*
2  * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 ///////////////////////////////////////////////////////////////////////////////
18 /// \ingroup  tag_SS_LoggerService
19 /// \brief    This file supports error event logging.
20 ///
21 ///////////////////////////////////////////////////////////////////////////////
22 #ifndef LOGGER_SERVICE_SERVER_INCLUDE_SS_LOGGER_POPUPS_H_
23 #define LOGGER_SERVICE_SERVER_INCLUDE_SS_LOGGER_POPUPS_H_
24 #include <native_service/frameworkunified_types.h>
25 #include <system_service/ss_logger_service_protocol.h>
26 #include <string>
27 #include <vector>
28
29 #include "ss_logger_cfg.h"
30 #include "ss_logger_error_event_cfg.h"
31 class CLoggerPopups {
32  public:
33   CLoggerPopups();
34   virtual ~CLoggerPopups();
35   EFrameworkunifiedStatus Initialize(CLoggerCfg* f_pLoggerCfg);
36   BOOL IsPopupNeeded(TLoggerErrorEvent f_event);
37   BOOL CanShowStartPopup(std::vector<TLoggingArtifact>* f_remainingArtifact);
38   EFrameworkunifiedStatus ShowStartPopup(HANDLE f_hApp, TLoggerErrorEvent f_event,
39                             std::vector<TLoggingArtifact>* f_remainingArtifact,
40                             std::string f_dest);
41   EFrameworkunifiedStatus ShowEndPopup(HANDLE f_hApp, TLoggerErrorEvent f_event,
42                           std::string f_dest);
43   EFrameworkunifiedStatus ShowErrorPopup(HANDLE f_hApp, TLoggerErrorEvent f_event,
44                             UI_16 f_errCode);
45   std::string getDeviceName(std::string f_dest);
46  private:
47   CLoggerCfg *m_pLoggerCfg;
48   BOOL m_startShown;
49 };
50
51 #endif  // LOGGER_SERVICE_SERVER_INCLUDE_SS_LOGGER_POPUPS_H_