]> AND Private Git Repository - loba.git/blobdiff - main.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Add VARIANTS to ag_parameters. Create ag_parameters1024 for big platforms.
[loba.git] / main.cpp
index 97ab14e0eb809f44c6f4c9b65abdf5a8246860da..89e9becf3bd4c33f6d0081729c95ec368240cbab 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -4,6 +4,7 @@
 #include <cstring>              // strchr
 #include <iostream>
 #include <stdexcept>
+#include <unistd.h>
 #include <msg/msg.h>
 #include <xbt/log.h>
 
@@ -149,6 +150,15 @@ static bool check_for_lost_load()
     return res;
 }
 
+static void check_file_access(const std::string& name)
+{
+    if (access(name.c_str(), R_OK) != 0) {
+        std::cerr << "ERROR: cannot access to file \""
+                  << name << "\" for reading: " << strerror(errno) << "\n";
+        exit(EXIT_FAILURE_ARGS);
+    }
+}
+
 static void signal_handler(int /*sig*/)
 {
     if (!opt::exit_request) {
@@ -236,6 +246,7 @@ int main(int argc, char* argv[])
 
     // Create the platform and the application.
     XBT_DEBUG("Loading platform file...");
+    check_file_access(opt::platform_file);
     MSG_create_environment(opt::platform_file.c_str());
     XBT_DEBUG("Creating hostdata...");
     hostdata::create();
@@ -264,6 +275,7 @@ int main(int argc, char* argv[])
         }
         MY_launch_application(); // it is already opt::* aware...
     } else {
+        check_file_access(opt::deployment_file);
         MSG_launch_application(opt::deployment_file.c_str());
     }