63f676a04fe7b64c3c636b6fec3592751c59a62b
[ardour.git] / libs / pbd3 / transmitter.cc
1 /*
2     Copyright (C) 1998-99 Paul Barton-Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <cstdlib>
22 #include <signal.h>
23 #include <iostream>
24 #include <string>
25
26 #include <pbd/transmitter.h>
27
28 using std::string;
29 using std::ios;
30
31 Transmitter  error (Transmitter::Error);
32 Transmitter  info (Transmitter::Info);
33 Transmitter  fatal (Transmitter::Fatal);
34 Transmitter  warning (Transmitter::Warning);
35
36 Transmitter::Transmitter (Channel c)
37
38 {
39         channel = c;
40         switch (c) {
41         case Error:
42                 send = &error;
43                 break;
44         case Warning:
45                 send = &warning;
46                 break;
47         case Info:
48                 send = &info;
49                 break;
50         case Fatal:
51                 send = &fatal;
52                 break;
53         case Throw:
54                 /* we should never call Transmitter::deliver
55                    for thrown messages (because its overridden in the
56                    class heirarchy). force a segv if we do.
57                 */
58                 send = 0;
59                 break;
60         }
61 }               
62
63 void
64 Transmitter::deliver ()
65
66 {
67         string foo;
68
69         /* NOTE: this is just a default action for a Transmitter or a
70            derived class. Any class can override this to produce some
71            other action when deliver() is called. 
72         */
73
74         *this << '\0';
75
76         /* send the SigC++ signal */
77
78         foo = str();
79         (*send) (channel, foo.c_str());
80
81         /* XXX when or how can we delete this ? */
82         // delete foo;
83
84         /* return to a pristine state */
85
86         clear ();
87         seekp (0, ios::beg);
88         seekg (0, ios::beg);
89
90         /* do the right thing if this should not return */
91         
92         if (does_not_return()) {
93                 sigset_t mask;
94                 
95                 sigemptyset (&mask);
96                 sigsuspend (&mask);
97                 /*NOTREACHED*/
98                 exit (1);
99         } 
100 }
101
102 bool
103 Transmitter::does_not_return ()
104
105 {
106         if (channel == Fatal || channel == Throw) {
107                 return true;
108         } else {
109                 return false;
110         }
111 }
112
113 extern "C" {
114   void pbd_c_error (const char *str)
115  
116   {
117         extern Transmitter error;
118         error << str << endmsg;
119   }
120 }