r4132: *** empty log message ***
[wdq2wav.git] / wdq2wav.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          wdq2wav.h
5 **   Purpose:       Header file for wdq2wav.cpp
6 **   Programmer:    Kevin Rosenberg <kevin@rosenberg.net>
7 **   Date Started:  Jan 2003
8 **
9 **  Copyright (c) 2003 Kevin Rosenberg
10 **
11 **  $Id: wdq2wav.h,v 1.16 2003/02/28 04:21:15 kevin Exp $
12 **
13 **  This program is free software; you can redistribute it and/or modify
14 **  it under the terms of the GNU General Public License (version 2) as
15 **  published by the Free Software Foundation.
16 **
17 **  This program is distributed in the hope that it will be useful,
18 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
19 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 **  GNU General Public License for more details.
21 **
22 **  You should have received a copy of the GNU General Public License
23 **  along with this program; if not, write to the Free Software
24 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25 ******************************************************************************/
26
27 #include <stdio.h>
28 #include <iostream>
29 #include <cstdio>
30 #include <cstring>
31 #include <string>
32 #include <sstream>
33 #include <ctime>
34 #include <fcntl.h>
35 #include <math.h>
36 #include <sys/types.h>
37 #include <sys/stat.h>
38 #ifdef WIN32
39 #include <io.h>
40 #include <getopt.h>
41 #else
42 #include <unistd.h>
43 #endif
44
45 #ifdef LINUX
46 #include <endian.h>
47 #if __BYTE_ORDER == __BIG_ENDIAN
48 #define WORDS_BIG_ENDIAN 1
49 #endif
50 #endif
51
52 extern const char* g_szIdStr;
53 extern bool g_quiet;
54 extern bool g_verbose;
55 extern bool g_debug;
56
57 #define MAX_INPUT_STR 256
58
59 void error_msg (const char *msg);
60 void info_msg (const char *msg);
61 void info_msg_sans_newline (const char *msg);
62
63 bool wdq2wav (const char* wdq_fname, const int channel, const char *wav_fname, bool play);
64
65 class WindaqFile
66 {
67 public:
68   WindaqFile (const char* fname);
69   ~WindaqFile ();
70   bool ReadHeader();
71
72   bool m_valid;
73   std::string m_error;
74   int m_fd;
75   int m_nChannels;
76   unsigned long int m_nSamples;
77   double m_sample_rate;
78   std::string m_strFile;
79   unsigned int m_sr_denom, m_sr_numer;
80   unsigned short int m_nHeader_bytes, m_channel_offset, m_nBytes_channel_header;
81   unsigned int m_nData_bytes;
82   unsigned int m_time_acq_start;
83   unsigned int m_time_acq_stop;
84 };
85
86 class WindaqChannel 
87 {
88 public:
89   WindaqFile& r_wdq;
90   signed short int *m_data;
91   double m_slope;
92   double m_intercept;
93   unsigned int m_channel;
94   bool m_valid;
95   std::string m_units;
96   signed short int m_min_raw_data;
97   signed short int m_max_raw_data;
98   double m_max_scaled_data;
99   double m_min_scaled_data;
100
101   WindaqChannel (WindaqFile& wdq, const int channel);
102   ~WindaqChannel ();
103
104  private:
105   bool read_channel_data();
106 };
107
108
109 class WavFile 
110 {
111  public:
112   bool m_valid;
113   signed short int* m_data;
114   unsigned long int m_nSamples;
115   std::string m_strFile;
116   int m_fd;
117   double m_rate;
118   unsigned int m_nChannels;
119   unsigned int m_nBitsPerSample;
120   unsigned int m_nBytesPerSample;
121   unsigned long int m_nHeaderBytes;
122   long int m_nDataBytes;
123   long int m_nFileBytes;
124
125   WavFile (WindaqChannel& wdq_channel, const char* fname);
126   ~WavFile ();
127
128   bool WriteFile ();
129
130   bool Play();
131   
132  private:
133   bool fill_header();
134 };
135
136 template<class T>
137 inline T nearest (double x)
138 {
139   return (x > 0 ?
140           static_cast<T>(x+0.5) : static_cast<T>(x-0.5));
141 }