File: conv_device.C

package info (click to toggle)
mixviews 1.20-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,920 kB
  • ctags: 5,958
  • sloc: cpp: 32,873; ansic: 2,110; makefile: 411; sh: 17
file content (135 lines) | stat: -rw-r--r-- 3,829 bytes parent folder | download
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
// conv_device.C

/******************************************************************************
 *
 *  MiXViews - an X window system based sound & data editor/processor
 *
 *  Copyright (c) 1993, 1994 Regents of the University of California
 *
 *  Author:     Douglas Scott
 *  Date:       December 13, 1994
 *
 *  Permission to use, copy and modify this software and its documentation
 *  for research and/or educational purposes and without fee is hereby granted,
 *  provided that the above copyright notice appear in all copies and that
 *  both that copyright notice and this permission notice appear in
 *  supporting documentation. The author reserves the right to distribute this
 *  software and its documentation.  The University of California and the author
 *  make no representations about the suitability of this software for any 
 *  purpose, and in no event shall University of California be liable for any
 *  damage, loss of data, or profits resulting from its use.
 *  It is provided "as is" without express or implied warranty.
 *
 ******************************************************************************/


#ifdef __GNUG__
#pragma implementation
#endif

#include "application.h"
#include "conv_device.h"
#include "statusaction.h"

ConverterDevice::ConverterDevice(const char* devName) : device_name(nil) {
	setDeviceName(devName);
}

void
ConverterDevice::setDeviceName(const char* name) {
	delete [] device_name;
	device_name = newstr(name);
}

// to avoid monopolizing the device, it is closed whenever stopped

int
ConverterDevice::stop() {
	BUG("ConverterDevice::stop()");
	int stat = close();		// must close before doing anything else
	if(!stat) Application::error("ConverterDevice::stop:  close error.");
	return RealConverter::stop() && stat;
}

void
ConverterDevice::fail() {
	BUG("ConverterDevice::fail()");
	close();
	RealConverter::fail();
}
	
boolean
ConverterDevice::reOpen() {
	BUG("ConverterDevice::reOpen()");
	close();
	if(!open(deviceName(), (willRecord() ? O_RDONLY : O_WRONLY))) {
		char msg[128];
		sprintf(msg, "ConverterDevice::reOpen: Cannot open %s", deviceName());
		error(msg);
		return false;
	}
	return true;
}

int
ConverterDevice::doConversion(StatusAction* askedToStop) {
	register addr sound = (addr) pointerToData();
	int bytesToGo = dataSize();
	int writeBytes = min(writeSize(), dataSize());
	Application::inform("Playing...");
	int status = true;
	while(bytesToGo > 0) {
		if((*askedToStop)())
			return stop();
		int bytesWritten = write(sound, writeBytes);
		if(bytesWritten < 0) {
			if(errno == EAGAIN || errno == EWOULDBLOCK) {
				waitForDevice();
				continue;
			}
			status = false;
			break;
		}
		sound += bytesWritten;
		bytesToGo -= bytesWritten;
		writeBytes = min(bytesToGo, writeBytes);
#ifdef debug
		fprintf(stderr, "\t%d-byte block written.  %d bytes remaining.\n", bytesWritten, max(0, bytesToGo));
#endif
	}
	if(status == false)
		error("ConverterDevice::doConversion: write error");
	else status = waitForStop(askedToStop);
	return stop() && status;
}

int
ConverterDevice::doRecording(StatusAction* askedToStop) {
	register addr sound = (addr) pointerToData();
	int bytesToGo = dataSize();
	int readBytes = min(readSize(), dataSize());
	int status = 1;
	Application::inform("Recording...");
	while(bytesToGo > 0) {
		if((*askedToStop)())
			break;
		int bytesRead = read(sound, readBytes);
		if(bytesRead < 0) {
			if(errno == EAGAIN || errno == EWOULDBLOCK) {
				waitForDevice();
				continue;
			}
			status = false;
			break;
		}
		sound += bytesRead;
		bytesToGo -= bytesRead;
		readBytes = min(bytesToGo, readBytes);
#ifdef debug
		fprintf(stderr, "\t%d bytes read.  %d bytes remaining.\n", bytesRead, max(0, bytesToGo));
#endif
	}
	if(status == false)
		error("ConverterDevice::doRecording: read error");
	return stop() && status;
}