cf0944ad575b9ca5caabc5b10d45bbf5580438c5
[staging/basesystem.git] / video_in_hal / systemservice / logger_service / server / include / readerWriter / writer / udp_writer.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    TODO
20 ///
21 ///////////////////////////////////////////////////////////////////////////////
22 #ifndef LOGGER_SERVICE_SERVER_INCLUDE_READERWRITER_WRITER_UDP_WRITER_H_
23 #define LOGGER_SERVICE_SERVER_INCLUDE_READERWRITER_WRITER_UDP_WRITER_H_
24
25 #include <netinet/in.h>
26 #include <string>
27 #include "writer.h"
28
29 #define REMOTE_IP_PORT    3500
30 namespace ReaderWriter {
31 #define UDP_MAX_LENGTH (UI_32)1024*4
32 #define UDP_CACHED_BLOCK_SIZE (UI_32)1024*4
33 #define SEND_RETRY_VALUE (UI_8) 5
34
35 #define OWN_ADDRESS "169.254.80.8"
36 class CUdpWriter : public CWriter {
37  public:
38   CUdpWriter();
39   virtual ~CUdpWriter();
40   EFrameworkunifiedStatus Initialize(CLoggerCfg* f_pLoggerCfg, std::string f_Name1,
41                         UI_32 f_size1, std::string f_Name2, UI_32 f_size2);
42
43   EFrameworkunifiedStatus Write(UI_8 *f_data, UI_32 f_length, SI_32 &f_bytesWritten);  // NOLINT (runtime/references)
44   void Close();
45   EFrameworkunifiedStatus UpdateLoggingParameters(void);
46   BOOL IsOpen(void);
47   EFrameworkunifiedStatus Open(void);
48   EFrameworkunifiedStatus FlushCache(void);
49  private:
50   EFrameworkunifiedStatus WriteData(UI_8 *f_data, UI_32 f_length, SI_32 &f_bytesWritten);  // NOLINT (runtime/references)
51
52   int m_SocketHandle;
53   sockaddr_in m_oSAInfo;
54   std::string m_IPAddress;
55   UI_32 m_index;
56   UI_32 m_port;
57   BOOL m_InitialTimeElapsed;
58   UI_8 m_buffer[UDP_CACHED_BLOCK_SIZE];
59 };
60
61 }  // namespace ReaderWriter
62
63 #endif  // LOGGER_SERVICE_SERVER_INCLUDE_READERWRITER_WRITER_UDP_WRITER_H_