VinaLC: Parallel Molecular Docking Program

Biochemical and Biophysical Systems Group
VinaLC version: 1.1.2

convert_substring.h
Go to the documentation of this file.
1 /*
2 
3  Copyright (c) 2006-2010, The Scripps Research Institute
4 
5  Licensed under the Apache License, Version 2.0 (the "License");
6  you may not use this file except in compliance with the License.
7  You may obtain a copy of the License at
8 
9  http://www.apache.org/licenses/LICENSE-2.0
10 
11  Unless required by applicable law or agreed to in writing, software
12  distributed under the License is distributed on an "AS IS" BASIS,
13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  See the License for the specific language governing permissions and
15  limitations under the License.
16 
17  Author: Dr. Oleg Trott <ot14@columbia.edu>,
18  The Olson Lab,
19  The Scripps Research Institute
20 
21 */
22 
23 #ifndef VINA_CONVERT_SUBSTRING_H
24 #define VINA_CONVERT_SUBSTRING_H
25 
26 #include <cctype> // for isspace
27 #include <boost/lexical_cast.hpp>
28 #include "common.h"
29 
30 struct bad_conversion {};
31 
32 template<typename T>
33 T convert_substring(const std::string& str, sz i, sz j) { // indexes are 1-based, the substring should be non-null
34  if(i < 1 || i > j+1 || j > str.size()) throw bad_conversion();
35 
36  // omit leading whitespace
37  while(i <= j && std::isspace(str[i-1]))
38  ++i;
39 
40  T tmp;
41  try {
42  tmp = boost::lexical_cast<T>(str.substr(i-1, j-i+1));
43  }
44  catch(...) {
45  throw bad_conversion();
46  }
47  return tmp;
48 }
49 
50 inline bool substring_is_blank(const std::string& str, sz i, sz j) { // indexes are 1-based, the substring should be non-null
51  if(i < 1 || i > j+1 || j > str.size()) throw bad_conversion();
52  VINA_RANGE(k, i-1, j)
53  if(!std::isspace(str[k]))
54  return false;
55  return true;
56 }
57 
58 // when this was written, lexical cast to unsigned didn't work very well with "-123", etc.
59 template<>
60 inline unsigned convert_substring<unsigned>(const std::string& str, sz i, sz j) { // indexes are 1-based, the substring should be non-null
61  int tmp = convert_substring<int>(str, i, j);
62  if(tmp < 0) throw bad_conversion();
63  return static_cast<unsigned>(tmp);
64 }
65 
66 #endif