File: utilsImpl.hpp

package info (click to toggle)
pbseqlib 0~20161219-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,924 kB
  • ctags: 5,123
  • sloc: cpp: 82,727; makefile: 305; python: 239; sh: 8
file content (52 lines) | stat: -rw-r--r-- 1,220 bytes parent folder | download | duplicates (2)
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
#ifndef _BLASR_UTIL_IMPL_HPP_
#define _BLASR_UTIL_IMPL_HPP_
#include <stdlib.h>
#include <cstdlib>   // abort()
#include <new>       // bad_alloc
#include <iostream>  // cout/cerr


template<typename t_file>
void CrucialOpen(std::string &fileName, t_file &file, std::ios_base::openmode mode) {
	if (mode==0)
		file.open(fileName.c_str());
	else
		file.open(fileName.c_str(), mode);

	if (!file.good()) {
		std::cout << "Could not open " << fileName << std::endl;
		exit(1);
	}
}
template<typename T_Int>
T_Int CeilOfFraction(T_Int num, T_Int denom) {
	return num / denom + ((num % denom) && 1);
}

template<typename T>
inline T* ProtectedNew(uint64_t size) {
    T * ptr = nullptr;
    try {
        ptr = new T[size];
    } catch (std::bad_alloc & ba) {
        std::cout << "ERROR, allocating " << size * sizeof(T) << " bytes."
                  << ba.what() << std::endl;
        abort();
    }
    return ptr;
}

template<typename T>
inline T* ProtectedNew(void) {
    T * ptr = nullptr;
    try {
       ptr = new T;
    } catch (std::bad_alloc & ba) {
        std::cout << "ERROR, allocating " << sizeof(T) << " bytes."
                  << ba.what() << std::endl;
        abort();
    }
    return ptr;
}

#endif