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
|
// Copyright (C) 1999-2018
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"
#include "mmap.h"
#ifndef __WIN32
#include <unistd.h>
#include <sys/types.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/mman.h>
FitsMMap::FitsMMap(const char* fn)
{
// parse the fn and options
parse(fn);
if (!valid_)
return;
// reset
valid_ = 0;
if (!pName_)
return;
// Map the file.
int file = open(pName_, O_RDONLY);
if (file == -1)
return;
struct stat info;
if (fstat(file, &info) < 0)
return;
// check to see if we have something, we may have a small array
if (info.st_size <= 0)
return;
// map it
mapsize_ = info.st_size;
mapdata_ = (char*)mmap(NULL, mapsize_, PROT_READ, MAP_SHARED, file, 0);
// close the file
close(file);
// are we valid?
if ((long)mapdata_ == -1)
return;
// so far, so good
valid_ = 1;
}
FitsMMap::~FitsMMap()
{
if (mapdata_)
munmap((caddr_t)mapdata_, mapsize_);
}
#else
FitsMMap::FitsMMap(const char* fn) {}
FitsMMap::~FitsMMap() {}
#endif
|