summaryrefslogtreecommitdiff
path: root/orkaudio/BatchProcessing.cpp
blob: 1435bb423b0150a4b083118e42e6369a3816339e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/*
 * Oreka -- A media capture and retrieval platform
 * 
 * Copyright (C) 2005, orecx LLC
 *
 * http://www.orecx.com
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License.
 * Please refer to http://www.gnu.org/copyleft/gpl.html
 *
 */

#include "ConfigManager.h"
#include "BatchProcessing.h"
#include "LogManager.h"
#include "ace/OS_NS_unistd.h"
#include "audiofile/LibSndFileFile.h"
#include "Daemon.h"
#include "Filter.h"

BatchProcessing BatchProcessing::m_batchProcessingSingleton;

BatchProcessing::BatchProcessing()
{
	m_threadCount = 0;

	struct tm date = {0};
	time_t now = time(NULL);
	ACE_OS::localtime_r(&now, &date);
	m_currentDay = date.tm_mday;
}


BatchProcessing* BatchProcessing::GetInstance()
{
	return &m_batchProcessingSingleton;
}

void BatchProcessing::AddAudioTape(AudioTapeRef audioTapeRef)
{
	if (!m_audioTapeQueue.push(audioTapeRef))
	{
		// Log error
		LOG4CXX_ERROR(LOG.batchProcessingLog, CStdString("BatchProcessing: queue full"));
	}
}

void BatchProcessing::TapeDropRegistration(CStdString& filename)
{
	MutexSentinel sentinel(m_tapeDropMutex);

	CStdString absoluteFilename = CONFIG.m_audioOutputPath + "/" + filename;
	if (ACE_OS::unlink((PCSTR)absoluteFilename) != 0)
	{
		LOG4CXX_DEBUG(LOG.batchProcessingLog, "Could not deleted tape: " + filename);
		m_tapesToDrop.insert(std::make_pair(filename, time(NULL)));
	}
	else
	{
		LOG4CXX_INFO(LOG.batchProcessingLog, "Deleted tape: " + filename);
	}
}

bool BatchProcessing::DropTapeIfNeeded(CStdString& filename)
{
	bool shouldDrop = false;

	MutexSentinel sentinel(m_tapeDropMutex);

	std::map<CStdString, time_t>::iterator pair;
	pair = m_tapesToDrop.find(filename);
	if(pair != m_tapesToDrop.end())
	{
		shouldDrop = true;
		CStdString absoluteFilename = CONFIG.m_audioOutputPath + "/" + filename;
		if (ACE_OS::unlink((PCSTR)absoluteFilename) == 0)
		{
			LOG4CXX_INFO(LOG.batchProcessingLog, "Deleted tape: " + filename);
			m_tapesToDrop.erase(filename);
		}
		else
		{
			LOG4CXX_DEBUG(LOG.batchProcessingLog, "Could not deleted tape: " + filename);
		}
	}

	TapeDropHousekeeping();

	return shouldDrop;
}

void BatchProcessing::TapeDropHousekeeping()
{
	struct tm date = {0};
	time_t now = time(NULL);
	ACE_OS::localtime_r(&now, &date);
	if(m_currentDay != date.tm_mday)
	{
		// another day has passed away ... clear possible leftovers
		m_currentDay = date.tm_mday;
		m_tapesToDrop.clear();
	}
}



void BatchProcessing::ThreadHandler(void *args)
{
	CStdString debug;

	BatchProcessing* pBatchProcessing = BatchProcessing::GetInstance();
	int threadId = 0;
	{
		MutexSentinel sentinel(pBatchProcessing->m_mutex);
		threadId = pBatchProcessing->m_threadCount++;
	}
	CStdString threadIdString = IntToString(threadId);
	LOG4CXX_DEBUG(LOG.batchProcessingLog, CStdString("Created thread #") + threadIdString);

	bool stop = false;

	for(;stop == false;)
	{
		AudioFileRef fileRef;
		AudioFileRef outFileRef;

		try
		{
			AudioTapeRef audioTapeRef = pBatchProcessing->m_audioTapeQueue.pop();
			if(audioTapeRef.get() == NULL)
			{
				if(DaemonSingleton::instance()->IsStopping())
				{
					stop = true;
				}
			}
			else
			{
				fileRef = audioTapeRef->GetAudioFileRef();

				if(pBatchProcessing->DropTapeIfNeeded(audioTapeRef->GetFilename()) == true)
				{
					// The tape we have pulled has been dropped in the meantime. just delete the capture file
					if(CONFIG.m_deleteNativeFile)
					{
						fileRef->Delete();
					}
				}
				else
				{
					// Let's work on the tape we have pulled
					CStdString threadIdString = IntToString(threadId);
					LOG4CXX_INFO(LOG.batchProcessingLog, CStdString("Th") + threadIdString + " processing: " + audioTapeRef->GetIdentifier());

					fileRef->MoveOrig();
					fileRef->Open(AudioFile::READ);

					AudioChunkRef chunkRef;
					AudioChunkRef tmpChunkRef;

					switch(CONFIG.m_storageAudioFormat)
					{
					case AudioTape::FfUlaw:
						outFileRef.reset(new LibSndFileFile(SF_FORMAT_ULAW | SF_FORMAT_WAV));
						break;
					case AudioTape::FfAlaw:
						outFileRef.reset(new LibSndFileFile(SF_FORMAT_ALAW | SF_FORMAT_WAV));
						break;
					case AudioTape::FfGsm:
						outFileRef.reset(new LibSndFileFile(SF_FORMAT_GSM610 | SF_FORMAT_WAV));
						break;
					case AudioTape::FfPcmWav:
					default:
						outFileRef.reset(new LibSndFileFile(SF_FORMAT_PCM_16 | SF_FORMAT_WAV));
					}
					CStdString file = CONFIG.m_audioOutputPath + "/" + audioTapeRef->GetPath() + audioTapeRef->GetIdentifier();
					outFileRef->Open(file, AudioFile::WRITE, false, fileRef->GetSampleRate());

					FilterRef filter;
					FilterRef decoder1;
					FilterRef decoder2;

					bool firstChunk = true;
					bool voIpSession = false;

					while(fileRef->ReadChunkMono(chunkRef))
					{
						AudioChunkDetails details = *chunkRef->GetDetails();
						if(firstChunk && details.m_rtpPayloadType != -1)
						{
							firstChunk = false;
							CStdString filterName("RtpMixer");
							filter = FilterRegistry::instance()->GetNewFilter(filterName);
							if(filter.get() == NULL)
							{
								debug = "BatchProcessing - Could not instanciate RTP mixer";
								throw(debug);
							}
							decoder1 = FilterRegistry::instance()->GetNewFilter(details.m_rtpPayloadType);
							decoder2 = FilterRegistry::instance()->GetNewFilter(details.m_rtpPayloadType);
							if(decoder1.get() == NULL || decoder2.get() == NULL)
							{
								debug.Format("BatchProcessing - Could not find decoder for RTP payload type:%u", chunkRef->GetDetails()->m_rtpPayloadType);
								throw(debug);
							}
							voIpSession = true;
						}
						if(voIpSession)
						{	
							if(details.m_channel == 2)
							{
								decoder2->AudioChunkIn(chunkRef);
								decoder2->AudioChunkOut(tmpChunkRef);
							}
							else
							{
								decoder1->AudioChunkIn(chunkRef);
								decoder1->AudioChunkOut(tmpChunkRef);
							}
							filter->AudioChunkIn(tmpChunkRef);
							filter->AudioChunkOut(tmpChunkRef);
						}
						outFileRef->WriteChunk(tmpChunkRef);

						// Give up CPU to make sure the actual recording always has priority
						ACE_Time_Value yield;
						yield.set(0,1);	// 1 us
						ACE_OS::sleep(yield);
					}

					fileRef->Close();
					outFileRef->Close();

					if(CONFIG.m_deleteNativeFile)
					{
						fileRef->Delete();
						CStdString threadIdString = IntToString(threadId);
						LOG4CXX_INFO(LOG.batchProcessingLog, CStdString("Th") + threadIdString + " deleting native: " + audioTapeRef->GetIdentifier());
					}
					pBatchProcessing->DropTapeIfNeeded(audioTapeRef->GetFilename());		// maybe the tape was dropped while we were processing it
				}
			}
		}
		catch (CStdString& e)
		{
			LOG4CXX_ERROR(LOG.batchProcessingLog, CStdString("BatchProcessing: ") + e);
		}
		//catch(...)
		//{
		//	LOG4CXX_ERROR(LOG.batchProcessingLog, CStdString("BatchProcessing: unknown exception"));
		//}
	}
	LOG4CXX_INFO(LOG.batchProcessingLog, CStdString("Exiting thread #" + threadIdString));
}