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

« back to all changes in this revision

Viewing changes to src/rawspeed/RawSpeed/CameraMetadataException.cpp

  • 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
#include "StdAfx.h"
 
2
#include "CameraMetadataException.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
namespace RawSpeed {
 
26
 
 
27
void ThrowCME(const char* fmt, ...) {
 
28
  va_list val;
 
29
  va_start(val, fmt);
 
30
  char buf[8192];
 
31
#if defined(__unix__) || defined(__MINGW32__)
 
32
  vsnprintf(buf, 8192, fmt, val);
 
33
#else
 
34
  vsprintf_s(buf, 8192, fmt, val);
 
35
#endif
 
36
  va_end(val);
 
37
  _RPT1(0, "EXCEPTION: %s\n", buf);
 
38
  throw CameraMetadataException(buf);
 
39
}
 
40
 
 
41
CameraMetadataException::CameraMetadataException(const string _msg): runtime_error(_msg) {
 
42
  _RPT1(0, "CameraMetadata Exception: %s\n", _msg.c_str());
 
43
}
 
44
 
 
45
} // namespace RawSpeed