df9b03e2cc17a16cbc640276fd44a0d37479f1b7
[platform/framework/web/wrt-commons.git] / modules / core / src / named_output_pipe.cpp
1 /*
2  * Copyright (c) 2011 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  * @file        named_output_pipe.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of named output pipe
21  */
22 #include <stddef.h>
23 #include <dpl/named_output_pipe.h>
24 #include <dpl/binary_queue.h>
25 #include <dpl/scoped_free.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <unistd.h>
29 #include <fcntl.h>
30 #include <errno.h>
31
32 namespace DPL
33 {
34 NamedOutputPipe::NamedOutputPipe()
35     : m_fifo(-1)
36 {
37 }
38
39 NamedOutputPipe::~NamedOutputPipe()
40 {
41     Close();
42 }
43
44 void NamedOutputPipe::Open(const std::string& pipeName)
45 {
46     // Then open it for reading or writing
47     int fifo = TEMP_FAILURE_RETRY(open(pipeName.c_str(), O_WRONLY | O_NONBLOCK));
48
49     if (fifo == -1)
50         ThrowMsg(Exception::OpenFailed, pipeName);
51
52     m_fifo = fifo;
53 }
54
55 void NamedOutputPipe::Close()
56 {
57     if (m_fifo == -1)
58         return;
59
60     if (TEMP_FAILURE_RETRY(close(m_fifo)) == -1)
61         Throw(Exception::CloseFailed);
62
63     m_fifo = -1;
64 }
65
66 size_t NamedOutputPipe::Write(const BinaryQueue &buffer, size_t bufferSize)
67 {
68     // Adjust write size
69     if (bufferSize > buffer.Size())
70         bufferSize = buffer.Size();
71
72     // FIXME: User write visitor to write !
73     // WriteVisitor visitor
74
75     ScopedFree<void> flattened(malloc(bufferSize));
76     buffer.Flatten(flattened.Get(), bufferSize);
77
78     ssize_t result = TEMP_FAILURE_RETRY(write(m_fifo, flattened.Get(), bufferSize));
79
80     if (result > 0)
81     {
82         // Successfuly written some bytes
83         return static_cast<size_t>(result);
84     }
85     else if (result == 0)
86     {
87         // This is abnormal result
88         ThrowMsg(CommonException::InternalError, "Invalid socket write result, 0 bytes written");
89     }
90     else
91     {
92         // Interpret error result
93         // FIXME: Handle errno
94         Throw(AbstractOutput::Exception::WriteFailed);
95     }
96 }
97
98 int NamedOutputPipe::WaitableWriteHandle() const
99 {
100     return m_fifo;
101 }
102 } // namespace DPL