author | Michael Krelin <hacker@klever.net> | 2012-01-07 18:01:35 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2012-01-07 18:01:35 (UTC) |
commit | 90cb8164f279f1d7fd3fa3234301cda5827ae97f (patch) (side-by-side diff) | |
tree | edb371f833ef94506dd1be8d1084d7c6a595d739 | |
parent | 0d4910ba75f2b2034b105a6ed44c88a53e36064c (diff) | |
download | iii-90cb8164f279f1d7fd3fa3234301cda5827ae97f.zip iii-90cb8164f279f1d7fd3fa3234301cda5827ae97f.tar.gz iii-90cb8164f279f1d7fd3fa3234301cda5827ae97f.tar.bz2 |
support .CR2 files
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | src/eyefiservice.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/eyefiservice.cc b/src/eyefiservice.cc index 9350386..5c4e308 100644 --- a/src/eyefiservice.cc +++ b/src/eyefiservice.cc @@ -156,33 +156,34 @@ int eyefiService::UploadPhoto( } #endif if(!tf.empty()) throw std::runtime_error("already seen tarball"); if(!digest.empty()) throw std::runtime_error("already have integrity digest"); digest = integrity_digest((*i).ptr,(*i).size,eyekinfig.get_upload_key()); #ifndef NDEBUG syslog(LOG_DEBUG," computed integrity digest=%s", digest.hex().c_str()); #endif tarchive_t a((*i).ptr,(*i).size); while(a.read_next_header()) { std::string f = indir.get_file(a.entry_pathname()); std::string::size_type fl = f.length(); if(fl<4) continue; const char *s = f.c_str()+fl-4; - static const char *suffixes[] = { ".JPG",".AVI",".MP4",".NEF",".RAW",".TIF",".DNG",".CRW", ".RW2" }; + static const char *suffixes[] = { ".JPG",".AVI",".MP4",".NEF",".RAW",".TIF",".DNG",".CRW", + ".RW2",".CR2" }; if(std::find_if(suffixes,suffixes+sizeof(suffixes)/sizeof(*suffixes), std::not1(std::bind1st(std::ptr_fun(strcasecmp),s))) != suffixes+sizeof(suffixes)/sizeof(*suffixes)) tf = f; else if(!strcasecmp(s,".log")) lf = f; else continue; int fd=open(f.c_str(),O_CREAT|O_WRONLY,0666); if(fd<0) throw std::runtime_error(gnu::autosprintf("failed to create output file '%s'",f.c_str())); if(!a.read_data_into_fd(fd)) throw std::runtime_error(gnu::autosprintf("failed to untar file into '%s'",f.c_str())); close(fd); } } } |