Merge branch 'devel/master' into tizen
[platform/core/uifw/dali-adaptor.git] / dali / internal / network / common / socket-factory-interface.h
1 #ifndef DALI_INTERNAL_ADAPTOR_BASE_SOCKET_FACTORY_INTERFACE_H
2 #define DALI_INTERNAL_ADAPTOR_BASE_SOCKET_FACTORY_INTERFACE_H
3
4 /*
5  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 #include <dali/internal/network/common/socket-interface.h>
22
23 namespace Dali
24 {
25 namespace Internal
26 {
27 namespace Adaptor
28 {
29 /**
30  * @brief abstract class to create and destroy sockets
31  */
32 class SocketFactoryInterface
33 {
34 public:
35   /**
36    * @brief Create a new socket
37    * @param protocol network protocol
38    * @return true on success, false on failure
39    */
40   virtual SocketInterface* NewSocket(SocketInterface::Protocol protocol) = 0;
41
42   /**
43     * @brief destroy a socket
44     * @param[in] socket socket to destroy
45     */
46   virtual void DestroySocket(SocketInterface* socket) = 0;
47
48 protected:
49   /**
50    * @brief Constructor
51    */
52   SocketFactoryInterface()
53   {
54   }
55
56   /**
57    * @brief Virtual destructor
58    */
59   virtual ~SocketFactoryInterface()
60   {
61   }
62
63 private:
64   // Undefined copy constructor.
65   SocketFactoryInterface(const SocketFactoryInterface&);
66
67   // Undefined assignment operator.
68   SocketFactoryInterface& operator=(const SocketFactoryInterface&);
69 };
70
71 } // namespace Adaptor
72 } // namespace Internal
73 } // namespace Dali
74
75 #endif // DALI_INTERNAL_ADAPTOR_BASE_SOCKET_FACTORY_INTERFACE_H