libardour added.
[ardour.git] / libs / ardour / ardour / utils.h
1 /*
2     Copyright (C) 1999 Paul 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 #ifndef __ardour_utils_h__
22 #define __ardour_utils_h__
23
24 #include <iostream>
25 #include <string>
26 #include <cmath>
27
28 #include "ardour.h"
29
30 class XMLNode;
31
32 using std::ostream;
33
34 void elapsed_time_to_str (char *buf, uint32_t seconds);
35 string legalize_for_path (std::string str);
36 ostream& operator<< (ostream& o, const ARDOUR::BBT_Time& bbt);
37 XMLNode* find_named_node (const XMLNode& node, std::string name);
38 string placement_as_string (ARDOUR::Placement);
39
40 static inline float f_max(float x, float a) {
41         x -= a;
42         x += fabsf (x);
43         x *= 0.5f;
44         x += a;
45         
46         return (x);
47 }
48
49 int cmp_nocase (const std::string& s, const std::string& s2);
50
51 int tokenize_fullpath (string fullpath, string& path, string& name);
52
53 int touch_file(string path);
54
55 uint32_t long get_uid();
56
57 string region_name_from_path (string path);
58
59 #endif /* __ardour_utils_h__ */