aboutsummaryrefslogtreecommitdiff
path: root/input.cc
diff options
context:
space:
mode:
Diffstat (limited to 'input.cc')
-rw-r--r--input.cc25
1 files changed, 22 insertions, 3 deletions
diff --git a/input.cc b/input.cc
index c396b47..f30cdca 100644
--- a/input.cc
+++ b/input.cc
@@ -20,10 +20,12 @@
#include "input.h"
#include <memory>
+#include <sstream>
#include "abigail_reader.h"
#include "btf_reader.h"
#include "elf_reader.h"
+#include "error.h"
#include "filter.h"
#include "graph.h"
#include "metrics.h"
@@ -32,9 +34,11 @@
namespace stg {
-Id Read(Graph& graph, InputFormat format, const char* input,
- ReadOptions options, const std::unique_ptr<Filter>& file_filter,
- Metrics& metrics) {
+namespace {
+
+Id ReadInternal(Graph& graph, InputFormat format, const char* input,
+ ReadOptions options, const std::unique_ptr<Filter>& file_filter,
+ Metrics& metrics) {
switch (format) {
case InputFormat::ABI: {
Time read(metrics, "read ABI");
@@ -55,4 +59,19 @@ Id Read(Graph& graph, InputFormat format, const char* input,
}
}
+} // namespace
+
+Id Read(Graph& graph, InputFormat format, const char* input,
+ ReadOptions options, const std::unique_ptr<Filter>& file_filter,
+ Metrics& metrics) {
+ try {
+ return ReadInternal(graph, format, input, options, file_filter, metrics);
+ } catch (Exception& e) {
+ std::ostringstream os;
+ os << "processing file '" << input << '\'';
+ e.Add(os.str());
+ throw;
+ }
+}
+
} // namespace stg