Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
5e8f51a9
Commit
5e8f51a9
authored
Jan 27, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/httpd: use the BufferedSocket class for HttpdClient
parent
be3d2188
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
163 additions
and
379 deletions
+163
-379
Makefile.am
Makefile.am
+0
-1
ClientNew.cxx
src/ClientNew.cxx
+0
-1
glib_socket.h
src/glib_socket.h
+0
-40
HttpdClient.cxx
src/output/HttpdClient.cxx
+145
-292
HttpdClient.hxx
src/output/HttpdClient.hxx
+17
-44
HttpdOutputPlugin.cxx
src/output/HttpdOutputPlugin.cxx
+1
-1
No files found.
Makefile.am
View file @
5e8f51a9
...
@@ -130,7 +130,6 @@ src_mpd_SOURCES = \
...
@@ -130,7 +130,6 @@ src_mpd_SOURCES = \
src/thread/PosixCond.hxx
\
src/thread/PosixCond.hxx
\
src/thread/WindowsCond.hxx
\
src/thread/WindowsCond.hxx
\
src/thread/GLibCond.hxx
\
src/thread/GLibCond.hxx
\
src/glib_socket.h
\
src/clock.c src/clock.h
\
src/clock.c src/clock.h
\
src/notify.cxx src/notify.hxx
\
src/notify.cxx src/notify.hxx
\
src/audio_config.c src/audio_config.h
\
src/audio_config.c src/audio_config.h
\
...
...
src/ClientNew.cxx
View file @
5e8f51a9
...
@@ -27,7 +27,6 @@ extern "C" {
...
@@ -27,7 +27,6 @@ extern "C" {
#include "resolver.h"
#include "resolver.h"
}
}
#include "Permission.hxx"
#include "Permission.hxx"
#include "glib_socket.h"
#include <assert.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/types.h>
...
...
src/glib_socket.h
deleted
100644 → 0
View file @
be3d2188
/*
* Copyright (C) 2003-2011 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_GLIB_SOCKET_H
#define MPD_GLIB_SOCKET_H
#include <glib.h>
/**
* Portable wrapper for g_io_channel_unix_new() or
* g_io_channel_win32_new_socket().
*/
G_GNUC_MALLOC
static
inline
GIOChannel
*
g_io_channel_new_socket
(
int
fd
)
{
#ifdef G_OS_WIN32
return
g_io_channel_win32_new_socket
(
fd
);
#else
return
g_io_channel_unix_new
(
fd
);
#endif
}
#endif
src/output/HttpdClient.cxx
View file @
5e8f51a9
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
#include "util/fifo_buffer.h"
#include "util/fifo_buffer.h"
#include "Page.hxx"
#include "Page.hxx"
#include "IcyMetaDataServer.hxx"
#include "IcyMetaDataServer.hxx"
#include "
glib_socket.h
"
#include "
SocketError.hxx
"
#include <assert.h>
#include <assert.h>
#include <string.h>
#include <string.h>
...
@@ -34,22 +34,15 @@
...
@@ -34,22 +34,15 @@
HttpdClient
::~
HttpdClient
()
HttpdClient
::~
HttpdClient
()
{
{
if
(
state
==
RESPONSE
)
{
if
(
state
==
RESPONSE
)
{
if
(
write_source_id
!=
0
)
g_source_remove
(
write_source_id
);
if
(
current_page
!=
nullptr
)
if
(
current_page
!=
nullptr
)
current_page
->
Unref
();
current_page
->
Unref
();
for
(
auto
page
:
pages
)
for
(
auto
page
:
pages
)
page
->
Unref
();
page
->
Unref
();
}
else
}
fifo_buffer_free
(
input
);
if
(
metadata
)
if
(
metadata
)
metadata
->
Unref
();
metadata
->
Unref
();
g_source_remove
(
read_source_id
);
g_io_channel_unref
(
channel
);
}
}
void
void
...
@@ -71,7 +64,6 @@ HttpdClient::BeginResponse()
...
@@ -71,7 +64,6 @@ HttpdClient::BeginResponse()
assert
(
state
!=
RESPONSE
);
assert
(
state
!=
RESPONSE
);
state
=
RESPONSE
;
state
=
RESPONSE
;
write_source_id
=
0
;
current_page
=
nullptr
;
current_page
=
nullptr
;
httpd
->
SendHeader
(
*
this
);
httpd
->
SendHeader
(
*
this
);
...
@@ -129,31 +121,6 @@ HttpdClient::HandleLine(const char *line)
...
@@ -129,31 +121,6 @@ HttpdClient::HandleLine(const char *line)
}
}
}
}
char
*
HttpdClient
::
ReadLine
()
{
assert
(
state
!=
RESPONSE
);
const
ScopeLock
protect
(
httpd
->
mutex
);
size_t
length
;
const
char
*
p
=
(
const
char
*
)
fifo_buffer_read
(
input
,
&
length
);
if
(
p
==
nullptr
)
/* empty input buffer */
return
nullptr
;
const
char
*
newline
=
(
const
char
*
)
memchr
(
p
,
'\n'
,
length
);
if
(
newline
==
nullptr
)
/* incomplete line */
return
nullptr
;
char
*
line
=
g_strndup
(
p
,
newline
-
p
);
fifo_buffer_consume
(
input
,
newline
-
p
+
1
);
/* remove trailing whitespace (e.g. '\r') */
return
g_strchomp
(
line
);
}
/**
/**
* Sends the status line and response headers to the client.
* Sends the status line and response headers to the client.
*/
*/
...
@@ -161,10 +128,6 @@ bool
...
@@ -161,10 +128,6 @@ bool
HttpdClient
::
SendResponse
()
HttpdClient
::
SendResponse
()
{
{
char
buffer
[
1024
];
char
buffer
[
1024
];
GError
*
error
=
nullptr
;
GIOStatus
status
;
gsize
bytes_written
;
assert
(
state
==
RESPONSE
);
assert
(
state
==
RESPONSE
);
if
(
dlna_streaming_requested
)
{
if
(
dlna_streaming_requested
)
{
...
@@ -205,141 +168,21 @@ HttpdClient::SendResponse()
...
@@ -205,141 +168,21 @@ HttpdClient::SendResponse()
httpd
->
content_type
);
httpd
->
content_type
);
}
}
status
=
g_io_channel_write_chars
(
channel
,
ssize_t
nbytes
=
SocketMonitor
::
Write
(
buffer
,
strlen
(
buffer
));
buffer
,
strlen
(
buffer
),
if
(
gcc_unlikely
(
nbytes
<
0
))
{
&
bytes_written
,
&
error
);
const
SocketErrorMessage
msg
;
g_warning
(
"failed to write to client: %s"
,
(
const
char
*
)
msg
);
switch
(
status
)
{
case
G_IO_STATUS_NORMAL
:
case
G_IO_STATUS_AGAIN
:
return
true
;
case
G_IO_STATUS_EOF
:
/* client has disconnected */
Close
();
Close
();
return
false
;
return
false
;
case
G_IO_STATUS_ERROR
:
/* I/O error */
g_warning
(
"failed to write to client: %s"
,
error
->
message
);
g_error_free
(
error
);
Close
();
return
false
;
}
/* unreachable */
Close
();
return
false
;
}
bool
HttpdClient
::
Received
()
{
assert
(
state
!=
RESPONSE
);
char
*
line
;
bool
success
;
while
((
line
=
ReadLine
())
!=
nullptr
)
{
success
=
HandleLine
(
line
);
g_free
(
line
);
if
(
!
success
)
{
assert
(
state
!=
RESPONSE
);
return
false
;
}
if
(
state
==
RESPONSE
)
{
if
(
!
fifo_buffer_is_empty
(
input
))
{
g_warning
(
"unexpected input from client"
);
return
false
;
}
fifo_buffer_free
(
input
);
return
SendResponse
();
}
}
}
return
true
;
return
true
;
}
}
bool
HttpdClient
::
HttpdClient
(
HttpdOutput
*
_httpd
,
int
_fd
,
EventLoop
&
_loop
,
HttpdClient
::
Read
()
{
size_t
max_length
;
GError
*
error
=
nullptr
;
GIOStatus
status
;
gsize
bytes_read
;
if
(
state
==
RESPONSE
)
{
/* the client has already sent the request, and he
must not send more */
char
buffer
[
1
];
status
=
g_io_channel_read_chars
(
channel
,
buffer
,
sizeof
(
buffer
),
&
bytes_read
,
nullptr
);
if
(
status
==
G_IO_STATUS_NORMAL
)
g_warning
(
"unexpected input from client"
);
return
false
;
}
char
*
p
=
(
char
*
)
fifo_buffer_write
(
input
,
&
max_length
);
if
(
p
==
nullptr
)
{
g_warning
(
"buffer overflow"
);
return
false
;
}
status
=
g_io_channel_read_chars
(
channel
,
p
,
max_length
,
&
bytes_read
,
&
error
);
switch
(
status
)
{
case
G_IO_STATUS_NORMAL
:
fifo_buffer_append
(
input
,
bytes_read
);
return
Received
();
case
G_IO_STATUS_AGAIN
:
/* try again later, after select() */
return
true
;
case
G_IO_STATUS_EOF
:
/* peer disconnected */
return
false
;
case
G_IO_STATUS_ERROR
:
/* I/O error */
g_warning
(
"failed to read from client: %s"
,
error
->
message
);
g_error_free
(
error
);
return
false
;
}
/* unreachable */
return
false
;
}
static
gboolean
httpd_client_in_event
(
G_GNUC_UNUSED
GIOChannel
*
source
,
GIOCondition
condition
,
gpointer
data
)
{
HttpdClient
*
client
=
(
HttpdClient
*
)
data
;
if
(
condition
==
G_IO_IN
&&
client
->
Read
())
{
return
true
;
}
else
{
client
->
LockClose
();
return
false
;
}
}
HttpdClient
::
HttpdClient
(
HttpdOutput
*
_httpd
,
int
_fd
,
bool
_metadata_supported
)
bool
_metadata_supported
)
:
httpd
(
_httpd
),
:
BufferedSocket
(
_fd
,
_loop
),
channel
(
g_io_channel_new_socket
(
_fd
)),
httpd
(
_httpd
),
input
(
fifo_buffer_new
(
4096
)),
state
(
REQUEST
),
state
(
REQUEST
),
dlna_streaming_requested
(
false
),
dlna_streaming_requested
(
false
),
metadata_supported
(
_metadata_supported
),
metadata_supported
(
_metadata_supported
),
...
@@ -348,16 +191,6 @@ HttpdClient::HttpdClient(HttpdOutput *_httpd, int _fd,
...
@@ -348,16 +191,6 @@ HttpdClient::HttpdClient(HttpdOutput *_httpd, int _fd,
metadata
(
nullptr
),
metadata
(
nullptr
),
metadata_current_position
(
0
),
metadata_fill
(
0
)
metadata_current_position
(
0
),
metadata_fill
(
0
)
{
{
/* GLib is responsible for closing the file descriptor */
g_io_channel_set_close_on_unref
(
channel
,
true
);
/* NULL encoding means the stream is binary safe */
g_io_channel_set_encoding
(
channel
,
nullptr
,
nullptr
);
/* we prefer to do buffering */
g_io_channel_set_buffered
(
channel
,
false
);
read_source_id
=
g_io_add_watch
(
channel
,
GIOCondition
(
G_IO_IN
|
G_IO_ERR
|
G_IO_HUP
),
httpd_client_in_event
,
this
);
}
}
size_t
size_t
...
@@ -382,49 +215,27 @@ HttpdClient::CancelQueue()
...
@@ -382,49 +215,27 @@ HttpdClient::CancelQueue()
page
->
Unref
();
page
->
Unref
();
pages
.
clear
();
pages
.
clear
();
if
(
write_source_id
!=
0
&&
current_page
==
nullptr
)
{
if
(
current_page
==
nullptr
)
g_source_remove
(
write_source_id
);
CancelWrite
();
write_source_id
=
0
;
}
}
}
static
GIOStatus
ssize_t
write_page_to_channel
(
GIOChannel
*
channel
,
HttpdClient
::
TryWritePage
(
const
Page
&
page
,
size_t
position
)
const
Page
&
page
,
size_t
position
,
gsize
*
bytes_written_r
,
GError
**
error
)
{
{
assert
(
channel
!=
nullptr
);
assert
(
position
<
page
.
size
);
assert
(
position
<
page
.
size
);
return
g_io_channel_write_chars
(
channel
,
return
Write
(
page
.
data
+
position
,
page
.
size
-
position
);
(
const
gchar
*
)
page
.
data
+
position
,
page
.
size
-
position
,
bytes_written_r
,
error
);
}
}
static
GIOStatus
ssize_t
write_n_bytes_to_channel
(
GIOChannel
*
channel
,
const
Page
&
page
,
HttpdClient
::
TryWritePageN
(
const
Page
&
page
,
size_t
position
,
ssize_t
n
)
size_t
position
,
gint
n
,
gsize
*
bytes_written_r
,
GError
**
error
)
{
{
GIOStatus
status
;
return
n
>=
0
?
Write
(
page
.
data
+
position
,
n
)
assert
(
channel
!=
nullptr
);
:
TryWritePage
(
page
,
position
);
assert
(
position
<
page
.
size
);
if
(
n
==
-
1
)
{
status
=
write_page_to_channel
(
channel
,
page
,
position
,
bytes_written_r
,
error
);
}
else
{
status
=
g_io_channel_write_chars
(
channel
,
(
const
gchar
*
)
page
.
data
+
position
,
n
,
bytes_written_r
,
error
);
}
return
status
;
}
}
in
t
ssize_
t
HttpdClient
::
GetBytesTillMetaData
()
const
HttpdClient
::
GetBytesTillMetaData
()
const
{
{
if
(
metadata_requested
&&
if
(
metadata_requested
&&
...
@@ -435,40 +246,47 @@ HttpdClient::GetBytesTillMetaData() const
...
@@ -435,40 +246,47 @@ HttpdClient::GetBytesTillMetaData() const
}
}
inline
bool
inline
bool
HttpdClient
::
Write
()
HttpdClient
::
Try
Write
()
{
{
GError
*
error
=
nullptr
;
GIOStatus
status
;
gsize
bytes_written
;
const
ScopeLock
protect
(
httpd
->
mutex
);
const
ScopeLock
protect
(
httpd
->
mutex
);
assert
(
state
==
RESPONSE
);
assert
(
state
==
RESPONSE
);
if
(
write_source_id
==
0
)
/* another thread has removed the event source while
this thread was waiting for httpd->mutex */
return
false
;
if
(
current_page
==
nullptr
)
{
if
(
current_page
==
nullptr
)
{
if
(
pages
.
empty
())
{
/* another thread has removed the event source
while this thread was waiting for
httpd->mutex */
CancelWrite
();
return
true
;
}
current_page
=
pages
.
front
();
current_page
=
pages
.
front
();
pages
.
pop_front
();
pages
.
pop_front
();
current_position
=
0
;
current_position
=
0
;
}
}
const
gin
t
bytes_to_write
=
GetBytesTillMetaData
();
const
ssize_
t
bytes_to_write
=
GetBytesTillMetaData
();
if
(
bytes_to_write
==
0
)
{
if
(
bytes_to_write
==
0
)
{
gint
metadata_to_write
;
metadata_to_write
=
metadata_current_position
;
if
(
!
metadata_sent
)
{
if
(
!
metadata_sent
)
{
status
=
write_page_to_channel
(
channel
,
ssize_t
nbytes
=
TryWritePage
(
*
metadata
,
*
metadata
,
metadata_current_position
);
metadata_to_write
,
if
(
nbytes
<
0
)
{
&
bytes_written
,
&
error
);
auto
e
=
GetSocketError
();
if
(
IsSocketErrorAgain
(
e
))
return
true
;
if
(
!
IsSocketErrorClosed
(
e
))
{
SocketErrorMessage
msg
(
e
);
g_warning
(
"failed to write to client: %s"
,
(
const
char
*
)
msg
);
}
Close
();
return
false
;
}
metadata_current_position
+=
bytes_written
;
metadata_current_position
+=
nbytes
;
if
(
metadata
->
size
-
metadata_current_position
==
0
)
{
if
(
metadata
->
size
-
metadata_current_position
==
0
)
{
metadata_fill
=
0
;
metadata_fill
=
0
;
...
@@ -478,85 +296,62 @@ HttpdClient::Write()
...
@@ -478,85 +296,62 @@ HttpdClient::Write()
}
else
{
}
else
{
guchar
empty_data
=
0
;
guchar
empty_data
=
0
;
Page
*
empty_meta
=
Page
::
Copy
(
&
empty_data
,
1
);
ssize_t
nbytes
=
Write
(
&
empty_data
,
1
);
if
(
nbytes
<
0
)
{
auto
e
=
GetSocketError
();
if
(
IsSocketErrorAgain
(
e
))
return
true
;
status
=
write_page_to_channel
(
channel
,
if
(
!
IsSocketErrorClosed
(
e
))
{
*
empty_meta
,
SocketErrorMessage
msg
(
e
);
metadata_to_write
,
g_warning
(
"failed to write to client: %s"
,
&
bytes_written
,
&
error
);
(
const
char
*
)
msg
);
}
metadata_current_position
+=
bytes_written
;
Close
();
return
false
;
if
(
empty_meta
->
size
-
metadata_current_position
==
0
)
{
metadata_fill
=
0
;
metadata_current_position
=
0
;
}
}
empty_meta
->
Unref
();
metadata_fill
=
0
;
metadata_current_position
=
0
;
}
}
bytes_written
=
0
;
}
else
{
}
else
{
status
=
write_n_bytes_to_channel
(
channel
,
*
current_page
,
ssize_t
nbytes
=
current_position
,
bytes_to_write
,
TryWritePageN
(
*
current_page
,
current_position
,
&
bytes_written
,
&
error
);
bytes_to_write
);
}
if
(
nbytes
<
0
)
{
auto
e
=
GetSocketError
();
if
(
IsSocketErrorAgain
(
e
))
return
true
;
if
(
!
IsSocketErrorClosed
(
e
))
{
SocketErrorMessage
msg
(
e
);
g_warning
(
"failed to write to client: %s"
,
(
const
char
*
)
msg
);
}
switch
(
status
)
{
Close
();
case
G_IO_STATUS_NORMAL
:
return
false
;
current_position
+=
bytes_written
;
}
current_position
+=
nbytes
;
assert
(
current_position
<=
current_page
->
size
);
assert
(
current_position
<=
current_page
->
size
);
if
(
metadata_requested
)
if
(
metadata_requested
)
metadata_fill
+=
bytes_written
;
metadata_fill
+=
nbytes
;
if
(
current_position
>=
current_page
->
size
)
{
if
(
current_position
>=
current_page
->
size
)
{
current_page
->
Unref
();
current_page
->
Unref
();
current_page
=
nullptr
;
current_page
=
nullptr
;
if
(
pages
.
empty
())
{
if
(
pages
.
empty
())
/* all pages are sent: remove the
/* all pages are sent: remove the
event source */
event source */
write_source_id
=
0
;
CancelWrite
();
return
false
;
}
}
}
return
true
;
case
G_IO_STATUS_AGAIN
:
return
true
;
case
G_IO_STATUS_EOF
:
/* client has disconnected */
Close
();
return
false
;
case
G_IO_STATUS_ERROR
:
/* I/O error */
g_warning
(
"failed to write to client: %s"
,
error
->
message
);
g_error_free
(
error
);
Close
();
return
false
;
}
}
/* unreachable */
return
true
;
Close
();
return
false
;
}
static
gboolean
httpd_client_out_event
(
gcc_unused
GIOChannel
*
source
,
gcc_unused
GIOCondition
condition
,
gpointer
data
)
{
assert
(
condition
==
G_IO_OUT
);
HttpdClient
*
client
=
(
HttpdClient
*
)
data
;
return
client
->
Write
();
}
}
void
void
...
@@ -569,10 +364,7 @@ HttpdClient::PushPage(Page *page)
...
@@ -569,10 +364,7 @@ HttpdClient::PushPage(Page *page)
page
->
Ref
();
page
->
Ref
();
pages
.
push_back
(
page
);
pages
.
push_back
(
page
);
if
(
write_source_id
==
0
)
ScheduleWrite
();
write_source_id
=
g_io_add_watch
(
channel
,
G_IO_OUT
,
httpd_client_out_event
,
this
);
}
}
void
void
...
@@ -589,3 +381,64 @@ HttpdClient::PushMetaData(Page *page)
...
@@ -589,3 +381,64 @@ HttpdClient::PushMetaData(Page *page)
metadata
=
page
;
metadata
=
page
;
metadata_sent
=
false
;
metadata_sent
=
false
;
}
}
bool
HttpdClient
::
OnSocketReady
(
unsigned
flags
)
{
if
(
!
BufferedSocket
::
OnSocketReady
(
flags
))
return
false
;
if
(
flags
&
WRITE
)
if
(
!
TryWrite
())
return
false
;
return
true
;
}
BufferedSocket
::
InputResult
HttpdClient
::
OnSocketInput
(
const
void
*
data
,
size_t
length
)
{
if
(
state
==
RESPONSE
)
{
g_warning
(
"unexpected input from client"
);
LockClose
();
return
InputResult
::
CLOSED
;
}
const
char
*
line
=
(
const
char
*
)
data
;
const
char
*
newline
=
(
const
char
*
)
memchr
(
line
,
'\n'
,
length
);
if
(
newline
==
nullptr
)
return
InputResult
::
MORE
;
ConsumeInput
(
newline
+
1
-
line
);
if
(
newline
>
line
&&
newline
[
-
1
]
==
'\r'
)
--
newline
;
/* terminate the string at the end of the line; the const_cast
is a dirty hack */
*
const_cast
<
char
*>
(
newline
)
=
0
;
if
(
!
HandleLine
(
line
))
{
assert
(
state
==
RESPONSE
);
LockClose
();
return
InputResult
::
CLOSED
;
}
if
(
state
==
RESPONSE
&&
!
SendResponse
())
return
InputResult
::
CLOSED
;
return
InputResult
::
AGAIN
;
}
void
HttpdClient
::
OnSocketError
(
GError
*
error
)
{
g_warning
(
"error on HTTP client: %s"
,
error
->
message
);
g_error_free
(
error
);
}
void
HttpdClient
::
OnSocketClosed
()
{
LockClose
();
}
src/output/HttpdClient.hxx
View file @
5e8f51a9
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
#ifndef MPD_OUTPUT_HTTPD_CLIENT_HXX
#ifndef MPD_OUTPUT_HTTPD_CLIENT_HXX
#define MPD_OUTPUT_HTTPD_CLIENT_HXX
#define MPD_OUTPUT_HTTPD_CLIENT_HXX
#include "event/BufferedSocket.hxx"
#include "gcc.h"
#include "gcc.h"
#include <glib.h>
#include <glib.h>
...
@@ -31,37 +32,13 @@
...
@@ -31,37 +32,13 @@
struct
HttpdOutput
;
struct
HttpdOutput
;
class
Page
;
class
Page
;
class
HttpdClient
final
{
class
HttpdClient
final
:
public
BufferedSocket
{
/**
/**
* The httpd output object this client is connected to.
* The httpd output object this client is connected to.
*/
*/
HttpdOutput
*
const
httpd
;
HttpdOutput
*
const
httpd
;
/**
/**
* The TCP socket.
*/
GIOChannel
*
channel
;
/**
* The GLib main loop source id for reading from the socket,
* and to detect errors.
*/
guint
read_source_id
;
/**
* The GLib main loop source id for writing to the socket. If
* 0, then there is no event source currently (because there
* are no queued pages).
*/
guint
write_source_id
;
/**
* For buffered reading. This pointer is only valid while the
* HTTP request is read.
*/
struct
fifo_buffer
*
input
;
/**
* The current state of the client.
* The current state of the client.
*/
*/
enum
{
enum
{
...
@@ -140,7 +117,8 @@ public:
...
@@ -140,7 +117,8 @@ public:
* @param httpd the HTTP output device
* @param httpd the HTTP output device
* @param fd the socket file descriptor
* @param fd the socket file descriptor
*/
*/
HttpdClient
(
HttpdOutput
*
httpd
,
int
_fd
,
bool
_metadata_supported
);
HttpdClient
(
HttpdOutput
*
httpd
,
int
_fd
,
EventLoop
&
_loop
,
bool
_metadata_supported
);
/**
/**
* Note: this does not remove the client from the
* Note: this does not remove the client from the
...
@@ -166,21 +144,6 @@ public:
...
@@ -166,21 +144,6 @@ public:
*/
*/
void
CancelQueue
();
void
CancelQueue
();
bool
Read
();
/**
* Data has been received from the client and it is appended
* to the input buffer.
*/
bool
Received
();
/**
* Check if a complete line of input is present in the input
* buffer, and duplicates it. It is removed from the input
* buffer. The return value has to be freed with g_free().
*/
char
*
ReadLine
();
/**
/**
* Handle a line of the HTTP request.
* Handle a line of the HTTP request.
*/
*/
...
@@ -197,9 +160,12 @@ public:
...
@@ -197,9 +160,12 @@ public:
bool
SendResponse
();
bool
SendResponse
();
gcc_pure
gcc_pure
in
t
GetBytesTillMetaData
()
const
;
ssize_
t
GetBytesTillMetaData
()
const
;
bool
Write
();
ssize_t
TryWritePage
(
const
Page
&
page
,
size_t
position
);
ssize_t
TryWritePageN
(
const
Page
&
page
,
size_t
position
,
ssize_t
n
);
bool
TryWrite
();
/**
/**
* Appends a page to the client's queue.
* Appends a page to the client's queue.
...
@@ -209,7 +175,14 @@ public:
...
@@ -209,7 +175,14 @@ public:
/**
/**
* Sends the passed metadata.
* Sends the passed metadata.
*/
*/
void
PushMetaData
(
Page
*
page
);
void
PushMetaData
(
Page
*
page
);
protected
:
virtual
bool
OnSocketReady
(
unsigned
flags
)
override
;
virtual
InputResult
OnSocketInput
(
const
void
*
data
,
size_t
length
)
override
;
virtual
void
OnSocketError
(
GError
*
error
)
override
;
virtual
void
OnSocketClosed
()
override
;
};
};
#endif
#endif
src/output/HttpdOutputPlugin.cxx
View file @
5e8f51a9
...
@@ -189,7 +189,7 @@ httpd_output_finish(struct audio_output *ao)
...
@@ -189,7 +189,7 @@ httpd_output_finish(struct audio_output *ao)
inline
void
inline
void
HttpdOutput
::
AddClient
(
int
fd
)
HttpdOutput
::
AddClient
(
int
fd
)
{
{
clients
.
emplace_front
(
this
,
fd
,
clients
.
emplace_front
(
this
,
fd
,
GetEventLoop
(),
encoder
->
plugin
->
tag
==
NULL
);
encoder
->
plugin
->
tag
==
NULL
);
++
clients_cnt
;
++
clients_cnt
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment