Modify CPUBoostingController
[platform/core/appfw/launchpad.git] / src / lib / launchpad-common / server_socket.hh
1 /*
2  * Copyright (c) 2023 Samsung Electronics Co., Ltd All Rights Reserved
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 #ifndef LIB_LAUNCHPAD_COMMON_SERVER_SOCKET_HH_
18 #define LIB_LAUNCHPAD_COMMON_SERVER_SOCKET_HH_
19
20 #include <memory>
21 #include <string>
22
23 #include <client_socket.hh>
24 #include <exception.hh>
25
26 #undef EXPORT_API
27 #define EXPORT_API __attribute__((visibility("default")))
28
29 namespace launchpad {
30
31 class EXPORT_API ServerSocket {
32  public:
33   ServerSocket();
34   explicit ServerSocket(int fd);
35   virtual ~ServerSocket();
36   ServerSocket(const ServerSocket&) = delete;
37   ServerSocket& operator = (const ServerSocket&) = delete;
38
39   std::unique_ptr<ClientSocket> Accept();
40   void Bind(const std::string& bindpoint);
41   void Close();
42   void Listen(int backlog);
43   int GetReceiveBufferSize();
44   int GetSendBufferSize();
45   void SetReceiveBufferSize(int size);
46   void SetSendBufferSize(int size);
47   bool IsClosed() const;
48   int GetFd() const;
49   int RemoveFd();
50   void SetCloseOnExec(bool do_close);
51
52  private:
53   int fd_;
54 };
55
56 }  // namespace launchpad
57
58 #endif  // LIB_LAUNCHPAD_COMMON_SERVER_SOCKET_HH_