~ubuntu-branches/ubuntu/saucy/darktable/saucy

« back to all changes in this revision

Viewing changes to src/rawspeed/RawSpeed/FileMap.h

  • Committer: Bazaar Package Importer
  • Author(s): David Bremner
  • Date: 2011-04-14 23:42:12 UTC
  • Revision ID: james.westby@ubuntu.com-20110414234212-kuffcz5wiu18v6ra
Tags: upstream-0.8
ImportĀ upstreamĀ versionĀ 0.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#pragma once
 
2
#include "FileIOException.h"
 
3
/* 
 
4
    RawSpeed - RAW file decoder.
 
5
 
 
6
    Copyright (C) 2009 Klaus Post
 
7
 
 
8
    This library is free software; you can redistribute it and/or
 
9
    modify it under the terms of the GNU Lesser General Public
 
10
    License as published by the Free Software Foundation; either
 
11
    version 2 of the License, or (at your option) any later version.
 
12
 
 
13
    This library is distributed in the hope that it will be useful,
 
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
    Lesser General Public License for more details.
 
17
 
 
18
    You should have received a copy of the GNU Lesser General Public
 
19
    License along with this library; if not, write to the Free Software
 
20
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
21
 
 
22
    http://www.klauspost.com
 
23
*/
 
24
 
 
25
#include "IOException.h"
 
26
 
 
27
namespace RawSpeed {
 
28
 
 
29
/*************************************************************************
 
30
 * This is the basic file map
 
31
 *
 
32
 * It allows access to a file.
 
33
 * Base implementation is for a complete file that is already in memory.
 
34
 * This can also be done as a MemMap 
 
35
 * 
 
36
 *****************************/
 
37
class FileMap
 
38
{
 
39
public:
 
40
  FileMap(uint32 _size);                 // Allocates the data array itself
 
41
  FileMap(uchar8* _data, uint32 _size);  // Data already allocated.
 
42
  ~FileMap(void);
 
43
  const uchar8* getData(uint32 offset);
 
44
  uchar8* getDataWrt(uint32 offset) {return &data[offset];}
 
45
  uint32 getSize() {return size;}
 
46
  bool isValid(uint32 offset) {return offset<=size;}
 
47
  FileMap* clone();
 
48
  /* For testing purposes */
 
49
  void corrupt(int errors);
 
50
  FileMap* cloneRandomSize();
 
51
private:
 
52
 uchar8* data;
 
53
 uint32 size;
 
54
 bool mOwnAlloc;
 
55
};
 
56
 
 
57
} // namespace RawSpeed