Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
ITADataSources
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Institute of Technical Acoustics (ITA)
ITADataSources
Commits
9138f612
Commit
9138f612
authored
Mar 27, 2017
by
Anne Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
protocol Log added
parent
4ac135c6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
87 additions
and
10 deletions
+87
-10
include/ITANetAudioMessage.h
include/ITANetAudioMessage.h
+3
-0
src/ITANetAudioMessage.cpp
src/ITANetAudioMessage.cpp
+68
-2
src/ITANetAudioStreamingClient.cpp
src/ITANetAudioStreamingClient.cpp
+1
-0
tests/NetAudio/ITANetAudioStreamingClientTest.cpp
tests/NetAudio/ITANetAudioStreamingClientTest.cpp
+15
-8
No files found.
include/ITANetAudioMessage.h
View file @
9138f612
...
...
@@ -36,6 +36,7 @@
#include <vector>
class
VistaConnectionIP
;
class
ITABufferedDataLoggerImplProtocol
;
//! Network audio messages
/**
...
...
@@ -103,6 +104,8 @@ private:
VistaByteBufferDeSerializer
m_oIncoming
;
//!< Deserialization buffer for messages
std
::
vector
<
VistaType
::
byte
>
m_vecIncomingBuffer
;
// Net IO buffer
ITABufferedDataLoggerImplProtocol
*
m_pProtocolLogger
;
VistaConnectionIP
*
m_pConnection
;
//DEBUG
...
...
src/ITANetAudioMessage.cpp
View file @
9138f612
...
...
@@ -5,6 +5,7 @@
#include <VistaBase/VistaExceptionBase.h>
#include <VistaBase/VistaStreamUtils.h>
#include <ITAClock.h>
#include <ITADataLog.h>
#include <cstring>
#include <algorithm>
...
...
@@ -14,6 +15,40 @@
static
int
S_nMessageIds
=
0
;
struct
ITAProtocolLog
:
public
ITALogDataBase
{
inline
static
std
::
ostream
&
outputDesc
(
std
::
ostream
&
os
)
{
os
<<
"BlockId"
;
os
<<
"
\t
"
<<
"WorldTimeStamp"
;
os
<<
"
\t
"
<<
"MessageType"
;
os
<<
"
\t
"
<<
"Status"
;
os
<<
"
\t
"
<<
"Paketgroesse"
;
os
<<
std
::
endl
;
return
os
;
};
inline
std
::
ostream
&
outputData
(
std
::
ostream
&
os
)
const
{
os
<<
uiBlockId
;
os
<<
"
\t
"
<<
std
::
setprecision
(
12
)
<<
dWorldTimeStamp
;
os
<<
"
\t
"
<<
iMessageType
;
os
<<
"
\t
"
<<
iStatus
;
os
<<
"
\t
"
<<
nMessagePayloadSize
;
os
<<
std
::
endl
;
return
os
;
};
unsigned
int
uiBlockId
;
//!< Block identifier (audio streaming)
double
dWorldTimeStamp
;
int
iMessageType
;
//!< ... usw
int
iStatus
;
//!< ... usw
VistaType
::
sint32
nMessagePayloadSize
;
};
class
ITABufferedDataLoggerImplProtocol
:
public
ITABufferedDataLogger
<
ITAProtocolLog
>
{};
CITANetAudioMessage
::
CITANetAudioMessage
(
VistaSerializingToolset
::
ByteOrderSwapBehavior
bSwapBuffers
)
:
m_vecIncomingBuffer
(
2048
)
,
m_oOutgoing
(
2048
)
...
...
@@ -23,13 +58,26 @@ CITANetAudioMessage::CITANetAudioMessage( VistaSerializingToolset::ByteOrderSwap
m_oOutgoing
.
SetByteorderSwapFlag
(
bSwapBuffers
);
m_oIncoming
.
SetByteorderSwapFlag
(
bSwapBuffers
);
ResetMessage
();
m_pProtocolLogger
=
new
ITABufferedDataLoggerImplProtocol
();
}
void
CITANetAudioMessage
::
ResetMessage
()
{
if
(
m_oIncoming
.
GetTailSize
()
>
0
)
if
(
m_oIncoming
.
GetTailSize
()
>
0
)
{
vstr
::
err
()
<<
"CITANetAudioMessage::ResetMessage() called before message was fully processed!"
<<
std
::
endl
;
ITAProtocolLog
oLog
;
oLog
.
uiBlockId
=
m_nMessageId
;
oLog
.
iMessageType
=
m_nMessageType
;
oLog
.
iStatus
=
-
1
;
oLog
.
nMessagePayloadSize
=
0
;
oLog
.
dWorldTimeStamp
=
ITAClock
::
getDefaultClock
()
->
getTime
();
m_pProtocolLogger
->
log
(
oLog
);
}
// wait till sending is complete -> this prevents us
// from deleting the buffer while it is still being read
// by the connection
...
...
@@ -61,11 +109,13 @@ void CITANetAudioMessage::SetConnection( VistaConnectionIP* pConn )
void
CITANetAudioMessage
::
WriteMessage
()
{
ITAProtocolLog
oLog
;
VistaType
::
byte
*
pBuffer
=
(
VistaType
::
byte
*
)
m_oOutgoing
.
GetBuffer
();
VistaType
::
sint32
iSwapDummy
;
// rewrite size dummy
iSwapDummy
=
m_oOutgoing
.
GetBufferSize
()
-
sizeof
(
VistaType
::
sint32
);
oLog
.
nMessagePayloadSize
=
iSwapDummy
;
if
(
m_oOutgoing
.
GetByteorderSwapFlag
()
)
VistaSerializingToolset
::
Swap4
(
&
iSwapDummy
);
std
::
memcpy
(
pBuffer
,
&
iSwapDummy
,
sizeof
(
VistaType
::
sint32
)
);
...
...
@@ -74,6 +124,7 @@ void CITANetAudioMessage::WriteMessage()
// rewrite type dummy
iSwapDummy
=
m_nMessageType
;
oLog
.
iMessageType
=
m_nMessageType
;
if
(
m_oOutgoing
.
GetByteorderSwapFlag
()
)
VistaSerializingToolset
::
Swap4
(
&
iSwapDummy
);
std
::
memcpy
(
pBuffer
,
&
iSwapDummy
,
sizeof
(
VistaType
::
sint32
)
);
...
...
@@ -82,10 +133,13 @@ void CITANetAudioMessage::WriteMessage()
// rewrite messageid dummy
iSwapDummy
=
m_nMessageId
;
oLog
.
uiBlockId
=
m_nMessageId
;
if
(
m_oOutgoing
.
GetByteorderSwapFlag
()
)
VistaSerializingToolset
::
Swap4
(
&
iSwapDummy
);
std
::
memcpy
(
pBuffer
,
&
iSwapDummy
,
sizeof
(
VistaType
::
sint32
)
);
oLog
.
iStatus
=
0
;
oLog
.
dWorldTimeStamp
=
ITAClock
::
getDefaultClock
()
->
getTime
();
m_pProtocolLogger
->
log
(
oLog
);
#if NET_AUDIO_SHOW_TRAFFIC
vstr
::
out
()
<<
"CITANetAudioMessage [ Writing] "
<<
m_nMessageType
<<
" (id="
<<
std
::
setw
(
4
)
<<
m_nMessageId
<<
")"
<<
std
::
endl
;
#endif
...
...
@@ -113,6 +167,7 @@ void CITANetAudioMessage::WriteMessage()
bool
CITANetAudioMessage
::
ReadMessage
(
int
timeout
)
{
ITAProtocolLog
oLog
;
#if NET_AUDIO_SHOW_TRAFFIC
vstr
::
out
()
<<
"CITANetAudioMessage [ Reading ] Waiting for incoming data"
<<
std
::
endl
;
#endif
...
...
@@ -130,6 +185,7 @@ bool CITANetAudioMessage::ReadMessage( int timeout)
VistaType
::
sint32
nMessagePayloadSize
;
int
nBytesRead
=
m_pConnection
->
ReadInt32
(
nMessagePayloadSize
);
oLog
.
nMessagePayloadSize
=
nMessagePayloadSize
;
assert
(
nBytesRead
==
sizeof
(
VistaType
::
sint32
)
);
#if NET_AUDIO_SHOW_TRAFFIC
vstr
::
out
()
<<
"CITANetAudioMessage [ Reading ] Expecting "
<<
nMessagePayloadSize
<<
" bytes message payload"
<<
std
::
endl
;
...
...
@@ -159,10 +215,15 @@ bool CITANetAudioMessage::ReadMessage( int timeout)
}
m_iBytesReceivedTotal
=
0
;
oLog
.
iStatus
=
1
;
oLog
.
dWorldTimeStamp
=
ITAClock
::
getDefaultClock
()
->
getTime
();
// Transfer data into members
m_oIncoming
.
SetBuffer
(
&
m_vecIncomingBuffer
[
0
],
nMessagePayloadSize
,
false
);
m_nMessageType
=
ReadInt
();
m_nMessageId
=
ReadInt
();
oLog
.
iMessageType
=
m_nMessageType
;
oLog
.
uiBlockId
=
m_nMessageId
;
m_pProtocolLogger
->
log
(
oLog
);
#if NET_AUDIO_SHOW_TRAFFIC
vstr
::
out
()
<<
"CITANetAudioMessage [ Reading ] Finished receiving "
<<
m_nMessageType
<<
" (id="
<<
std
::
setw
(
4
)
<<
m_nMessageId
<<
")"
<<
std
::
endl
;
...
...
@@ -292,6 +353,7 @@ VistaConnectionIP* CITANetAudioMessage::GetConnection() const
void
CITANetAudioMessage
::
ClearConnection
()
{
m_pConnection
=
NULL
;
delete
m_pProtocolLogger
;
}
void
CITANetAudioMessage
::
WriteIntVector
(
const
std
::
vector
<
int
>
viData
)
...
...
@@ -334,6 +396,10 @@ void CITANetAudioMessage::WriteStreamingParameters( const CITANetAudioProtocol::
WriteInt
(
oParams
.
iRingBufferSize
);
WriteInt
(
oParams
.
iTargetSampleLatency
);
WriteDouble
(
oParams
.
dTimeIntervalSendInfos
);
std
::
string
paras
=
std
::
string
(
"NetAudioLogProtocol"
)
+
std
::
string
(
"_BS"
)
+
std
::
to_string
(
oParams
.
iBlockSize
)
+
std
::
string
(
"_Ch"
)
+
std
::
to_string
(
oParams
.
iChannels
)
+
std
::
string
(
"_tl"
)
+
std
::
to_string
(
oParams
.
iTargetSampleLatency
)
+
std
::
string
(
".txt"
);
m_pProtocolLogger
->
setOutputFile
(
paras
);
}
int
CITANetAudioMessage
::
ReadRingBufferSize
()
...
...
src/ITANetAudioStreamingClient.cpp
View file @
9138f612
...
...
@@ -212,4 +212,5 @@ void CITANetAudioStreamingClient::Disconnect()
m_pClient
->
Disconnect
();
m_bStopIndicated
=
false
;
m_bStopped
=
false
;
m_pMessage
->
ClearConnection
();
}
tests/NetAudio/ITANetAudioStreamingClientTest.cpp
View file @
9138f612
...
...
@@ -18,16 +18,23 @@ int main(int argc, char* argv[])
if
(
argc
!=
7
)
{
fprintf
(
stderr
,
"Fehler: Syntax = ServerName ServerPort SampleRate BufferSize Channel RingBufferSize!
\n
"
);
//
fprintf(stderr, "Fehler: Syntax = ServerName ServerPort SampleRate BufferSize Channel RingBufferSize!\n");
}
string
sServerName
=
argv
[
1
];
unsigned
int
iServerPort
=
atoi
(
argv
[
2
]);
double
dSampleRate
=
strtod
(
argv
[
3
],
NULL
);
int
iBlockLength
=
atoi
(
argv
[
4
]);
int
iChannels
=
atoi
(
argv
[
5
]);
int
iBufferSize
=
atoi
(
argv
[
6
]);
/*
string sServerName = argv[1];
unsigned int iServerPort = atoi(argv[2]);
double dSampleRate = strtod(argv[3], NULL);
int iBlockLength = atoi(argv[4]);
int iChannels = atoi(argv[5]);
int iBufferSize = atoi(argv[6]);
*/
string
sServerName
=
"137.226.61.85"
;
unsigned
int
iServerPort
=
12480
;
double
dSampleRate
=
44100.0
;
int
iBlockLength
=
32
;
int
iChannels
=
2
;
int
iBufferSize
=
32
*
16
;
cout
<<
"Channel "
<<
iChannels
<<
endl
;
...
...
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