summaryrefslogtreecommitdiff
path: root/libs/audiographer/audiographer/sndfile/tmp_file_sync.h
blob: 8eab56a3a61023ae5046bc9fe2c3fcb6f6855122 (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
#ifndef AUDIOGRAPHER_TMP_FILE_SYNC_H
#define AUDIOGRAPHER_TMP_FILE_SYNC_H

#include <cstdio>
#include <string>

#include <glib.h>
#include "pbd/gstdio_compat.h"

#include "sndfile_writer.h"
#include "sndfile_reader.h"
#include "tmp_file.h"

namespace AudioGrapher
{

/// A temporary file deleted after this class is destructed
template<typename T = DefaultSampleType>
class TmpFileSync
	: public TmpFile<T>
{
  public:

	/// \a filename_template must match the requirements for mkstemp, i.e. end in "XXXXXX"
	TmpFileSync (char * filename_template, int format, ChannelCount channels, samplecnt_t samplerate)
		: SndfileHandle (g_mkstemp(filename_template), true, SndfileBase::ReadWrite, format, channels, samplerate)
		, filename (filename_template)
	{}

	TmpFileSync (int format, ChannelCount channels, samplecnt_t samplerate)
	  : SndfileHandle (fileno (tmpfile()), true, SndfileBase::ReadWrite, format, channels, samplerate)
	{}

	TmpFileSync (TmpFileSync const & other) : SndfileHandle (other) {}
	using SndfileHandle::operator=;

	~TmpFileSync()
	{
		/* explicitly close first, some OS (yes I'm looking at you windows)
		 * cannot delete files that are still open
		 */
		if (!filename.empty()) {
			SndfileBase::close();
			std::remove(filename.c_str());
		}
	}

	void process (ProcessContext<T> const & c)
	{
		SndfileWriter<T>::process (c);

		if (c.has_flag(ProcessContext<T>::EndOfInput)) {
			TmpFile<T>::FileFlushed ();
		}
	}

	using Sink<T>::process;

  private:
	std::string filename;
};

} // namespace

#endif // AUDIOGRAPHER_TMP_FILE_SYNC_H