~ubuntu-branches/ubuntu/trusty/hugin/trusty-proposed

« back to all changes in this revision

Viewing changes to src/hugin_cpfind/cpfind/Utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2011-01-06 14:28:24 UTC
  • mfrom: (1.1.9 upstream) (0.1.21 experimental)
  • Revision ID: james.westby@ubuntu.com-20110106142824-zn9lxylg5z44dynn
* Drop Cyril Brulebois from Uploaders. Thank you very much for your work.
* Bump package version. (rc3 was re-released as 2010.4.0).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* Copyright (C) 2007-2008 Anael Orlinski
 
3
*
 
4
* This file is part of Panomatic.
 
5
*
 
6
* Panomatic is free software; you can redistribute it and/or modify
 
7
* it under the terms of the GNU General Public License as published by
 
8
* the Free Software Foundation; either version 2 of the License, or
 
9
* (at your option) any later version.
 
10
 
11
* Panomatic is distributed in the hope that it will be useful,
 
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
* GNU General Public License for more details.
 
15
 
16
* You should have received a copy of the GNU General Public License
 
17
* along with Panomatic; if not, write to the Free Software
 
18
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
*/
 
20
 
 
21
#ifndef __utils_h
 
22
#define __utils_h
 
23
 
 
24
#ifdef WIN32
 
25
#include <vigra/windows.h>
 
26
#include <process.h>
 
27
#else
 
28
//#include <pthread.h>
 
29
#include <sys/time.h>
 
30
#endif
 
31
 
 
32
#include <zthread/Condition.h>
 
33
#include <zthread/FastMutex.h>
 
34
#include <zthread/Guard.h>
 
35
 
 
36
 
 
37
 
 
38
#define TIMETRACE(TEXT, CODE) { utils::os_TIME t1,t2; utils::os_GetTime(&t1); CODE; \
 
39
  utils::os_GetTime(&t2); std::cout << TEXT << " took " << utils::os_TimeDiff(&t2,&t1)/1000.0 << " seconds." << std::endl; }
 
40
 
 
41
 
 
42
namespace utils {
 
43
 
 
44
int getCPUCount();
 
45
 
 
46
        
 
47
//extern "C" {
 
48
 
 
49
#ifdef WIN32
 
50
        typedef DWORD os_TIME;
 
51
#else
 
52
        typedef struct timeval os_TIME;
 
53
#endif
 
54
 
 
55
        inline void os_GetTime(os_TIME *time) { 
 
56
#ifdef WIN32    
 
57
                *time = GetTickCount();
 
58
#else
 
59
                struct timezone tz;
 
60
                gettimeofday(time, &tz);
 
61
#endif
 
62
        }
 
63
 
 
64
        inline int os_TimeDiff(os_TIME *time1, os_TIME *time2) 
 
65
        { 
 
66
#ifdef WIN32    
 
67
                return *time1 - *time2;
 
68
#else
 
69
                return (int)((double)time1->tv_sec*1000 + ((double)time1->tv_usec)*1e-3 -
 
70
                        (double)time2->tv_sec*1000 - ((double)time2->tv_usec)*1e-3);
 
71
#endif
 
72
        }
 
73
 
 
74
 
 
75
//}
 
76
}
 
77
 
 
78
#endif // __utils_h