Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'phrase-extract')
-rw-r--r--phrase-extract/InputFileStream.h2
-rw-r--r--phrase-extract/extract-mixed-syntax/InputFileStream.h2
-rw-r--r--phrase-extract/extract-mixed-syntax/gzfilebuf.h4
-rw-r--r--phrase-extract/gzfilebuf.h4
-rwxr-xr-xphrase-extract/lexical-reordering/InputFileStream.h2
-rwxr-xr-xphrase-extract/lexical-reordering/gzfilebuf.h4
6 files changed, 12 insertions, 6 deletions
diff --git a/phrase-extract/InputFileStream.h b/phrase-extract/InputFileStream.h
index e2a31bc82..5de416237 100644
--- a/phrase-extract/InputFileStream.h
+++ b/phrase-extract/InputFileStream.h
@@ -37,7 +37,7 @@ protected:
std::streambuf *m_streambuf;
public:
- InputFileStream(const std::string &filePath);
+ explicit InputFileStream(const std::string &filePath);
~InputFileStream();
void Close();
diff --git a/phrase-extract/extract-mixed-syntax/InputFileStream.h b/phrase-extract/extract-mixed-syntax/InputFileStream.h
index e2a31bc82..5de416237 100644
--- a/phrase-extract/extract-mixed-syntax/InputFileStream.h
+++ b/phrase-extract/extract-mixed-syntax/InputFileStream.h
@@ -37,7 +37,7 @@ protected:
std::streambuf *m_streambuf;
public:
- InputFileStream(const std::string &filePath);
+ explicit InputFileStream(const std::string &filePath);
~InputFileStream();
void Close();
diff --git a/phrase-extract/extract-mixed-syntax/gzfilebuf.h b/phrase-extract/extract-mixed-syntax/gzfilebuf.h
index b5b0ce87f..4c818ddbb 100644
--- a/phrase-extract/extract-mixed-syntax/gzfilebuf.h
+++ b/phrase-extract/extract-mixed-syntax/gzfilebuf.h
@@ -1,6 +1,7 @@
#ifndef moses_gzfile_buf_h
#define moses_gzfile_buf_h
+#include <stdexcept>
#include <streambuf>
#include <zlib.h>
#include <cstring>
@@ -10,7 +11,8 @@ class gzfilebuf : public std::streambuf
public:
gzfilebuf(const char *filename) {
_gzf = gzopen(filename, "rb");
- setg (_buff+sizeof(int), // beginning of putback area
+ if (!_gzf)
+ throw std::runtime_error("Could not open " + std::string(filename) + "."); setg (_buff+sizeof(int), // beginning of putback area
_buff+sizeof(int), // read position
_buff+sizeof(int)); // end position
}
diff --git a/phrase-extract/gzfilebuf.h b/phrase-extract/gzfilebuf.h
index b5b0ce87f..4c818ddbb 100644
--- a/phrase-extract/gzfilebuf.h
+++ b/phrase-extract/gzfilebuf.h
@@ -1,6 +1,7 @@
#ifndef moses_gzfile_buf_h
#define moses_gzfile_buf_h
+#include <stdexcept>
#include <streambuf>
#include <zlib.h>
#include <cstring>
@@ -10,7 +11,8 @@ class gzfilebuf : public std::streambuf
public:
gzfilebuf(const char *filename) {
_gzf = gzopen(filename, "rb");
- setg (_buff+sizeof(int), // beginning of putback area
+ if (!_gzf)
+ throw std::runtime_error("Could not open " + std::string(filename) + "."); setg (_buff+sizeof(int), // beginning of putback area
_buff+sizeof(int), // read position
_buff+sizeof(int)); // end position
}
diff --git a/phrase-extract/lexical-reordering/InputFileStream.h b/phrase-extract/lexical-reordering/InputFileStream.h
index 1f37715fd..dcc28a60c 100755
--- a/phrase-extract/lexical-reordering/InputFileStream.h
+++ b/phrase-extract/lexical-reordering/InputFileStream.h
@@ -37,7 +37,7 @@ protected:
std::streambuf *m_streambuf;
public:
- InputFileStream(const std::string &filePath);
+ explicit InputFileStream(const std::string &filePath);
~InputFileStream();
void Open(const std::string &filePath);
diff --git a/phrase-extract/lexical-reordering/gzfilebuf.h b/phrase-extract/lexical-reordering/gzfilebuf.h
index b5b0ce87f..4c818ddbb 100755
--- a/phrase-extract/lexical-reordering/gzfilebuf.h
+++ b/phrase-extract/lexical-reordering/gzfilebuf.h
@@ -1,6 +1,7 @@
#ifndef moses_gzfile_buf_h
#define moses_gzfile_buf_h
+#include <stdexcept>
#include <streambuf>
#include <zlib.h>
#include <cstring>
@@ -10,7 +11,8 @@ class gzfilebuf : public std::streambuf
public:
gzfilebuf(const char *filename) {
_gzf = gzopen(filename, "rb");
- setg (_buff+sizeof(int), // beginning of putback area
+ if (!_gzf)
+ throw std::runtime_error("Could not open " + std::string(filename) + "."); setg (_buff+sizeof(int), // beginning of putback area
_buff+sizeof(int), // read position
_buff+sizeof(int)); // end position
}