-
Notifications
You must be signed in to change notification settings - Fork 1
/
fileio.cpp
97 lines (91 loc) · 2.59 KB
/
fileio.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/******************************************************/
/* */
/* fileio.cpp - file I/O */
/* */
/******************************************************/
/* Copyright 2020,2022 Pierre Abbat.
* This file is part of Wolkenbase.
*
* Wolkenbase is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Wolkenbase is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Wolkenbase. If not, see <http://www.gnu.org/licenses/>.
*/
#include "fileio.h"
#include "cloud.h"
#include "threads.h"
using namespace std;
string noExt(string fileName)
{
long long slashPos,dotPos; // npos turns into -1, which is convenient
string between;
slashPos=fileName.rfind('/');
dotPos=fileName.rfind('.');
if (dotPos>slashPos)
{
between=fileName.substr(slashPos+1,dotPos-slashPos-1);
if (between.find_first_not_of('.')>between.length())
dotPos=-1;
}
if (dotPos>slashPos)
fileName.erase(dotPos);
return fileName;
}
string extension(string fileName)
{
long long slashPos,dotPos; // npos turns into -1, which is convenient
string between;
slashPos=fileName.rfind('/');
dotPos=fileName.rfind('.');
if (dotPos>slashPos)
{
between=fileName.substr(slashPos+1,dotPos-slashPos-1);
if (between.find_first_not_of('.')>between.length())
dotPos=-1;
}
if (dotPos>slashPos)
fileName.erase(0,dotPos);
else
fileName="";
return fileName;
}
string baseName(string fileName)
{
long long slashPos;
slashPos=fileName.rfind('/');
return fileName.substr(slashPos+1);
}
void deleteFile(string fileName)
{
remove(fileName.c_str());
}
#ifdef XYZ
#include "ply.h"
#include "xyzfile.h"
int readCloud(string &inputFile,double inUnit,int flags)
{
int i,already=cloud.size(),ret=0;
readPly(inputFile);
if (cloud.size()>already)
ret=RES_LOAD_PLY;
if (cloud.size()==already)
{
readXyzText(inputFile);
if (cloud.size()>already)
ret=RES_LOAD_XYZ;
}
if (cloud.size()>already)
cout<<"Read "<<cloud.size()-already<<" dots\n";
for (i=already;i<cloud.size();i++)
cloud[i]*=inUnit;
return ret;
}
#endif