]> Creatis software - crea.git/blob - lib/creaDevManagerLib/CDMUtilities.cpp
d9ef9b7fff10d5504245a47aa2c825575e2fb3ad
[crea.git] / lib / creaDevManagerLib / CDMUtilities.cpp
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5 #                        pour la Sant�)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and
11 #  abiding by the rules of distribution of free software. You can  use,
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B
13 #  license as circulated by CEA, CNRS and INRIA at the following URL
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability.
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------
26  */
27
28 /*
29  * CDMUtilities.cpp
30  *
31  *  Created on: Nov 23, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "CDMUtilities.h"
36
37 #include<vector>
38 #include<string>
39 #include <cstdlib>
40
41 namespace CDMUtilities
42 {
43   template <typename Container>
44   Container& splitter::split
45   (
46       Container& result,
47       const typename Container::value_type& s,
48       const typename Container::value_type& delimiters,
49       empties_t empties
50   )
51   {
52     result.clear();
53     size_t current;
54     size_t next = -1;
55     do
56       {
57         if (empties == no_empties)
58           {
59             next = s.find_first_not_of(delimiters, next + 1);
60             if (next == Container::value_type::npos)
61               {
62                 break;
63               }
64             next -= 1;
65           }
66         current = next + 1;
67         next = s.find_first_of(delimiters, current);
68         result.push_back(s.substr(current, next - current));
69       }
70     while (next != Container::value_type::npos);
71     return result;
72   }
73
74   const std::string fixPath(const std::string& path)
75   {
76     std::string pathFixed = "";
77
78 #if(_WIN32)
79     // ------ Windows
80     //TODO: implementation for windows
81 #else
82     // ------ LINUX / MacOS
83     //break path into folders
84     std::vector<std::string> pathSlpit;
85
86     splitter::split(pathSlpit, path, "/", splitter::no_empties);
87
88     for (int i = 0; i < pathSlpit.size(); i++)
89       {
90         pathFixed += "/" + pathSlpit[i];
91       }
92 #endif
93     return pathFixed;
94
95   }
96
97   int openTextEditor(const std::string& file)
98   {
99     std::string command = TEXT_EDITOR;
100
101     if(file != "")
102       command += " \"" + file + "\" &";
103
104     return system(command.c_str());
105   }
106
107   int openFileExplorer(const std::string& file)
108     {
109       std::string command = FILE_EXPLORER;
110
111       if(file != "")
112         command += " \"" + file + "\" &";
113
114       return system(command.c_str());
115     }
116
117 }