-rw-r--r-- | src/eyefiservice.cc | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/src/eyefiservice.cc b/src/eyefiservice.cc index e89b2fc..276977a 100644 --- a/src/eyefiservice.cc +++ b/src/eyefiservice.cc | |||
@@ -31,4 +31,10 @@ static bool detached_child() { | |||
31 | } | 31 | } |
32 | 32 | ||
33 | static int E(eyefiService* efs,const char *c,const std::exception& e) { | ||
34 | efs->keep_alive=0; | ||
35 | syslog(LOG_ERR,"error while processing %s: %s",c,e.what()); | ||
36 | return efs->soap_receiverfault(gnu::autosprintf("error processing %s",c),0); | ||
37 | } | ||
38 | |||
33 | int eyefiService::StartSession( | 39 | int eyefiService::StartSession( |
34 | std::string macaddress,std::string cnonce, | 40 | std::string macaddress,std::string cnonce, |
@@ -61,8 +67,5 @@ int eyefiService::StartSession( | |||
61 | } | 67 | } |
62 | return SOAP_OK; | 68 | return SOAP_OK; |
63 | }catch(std::runtime_error& e) { | 69 | }catch(const std::exception& e) { return E(this,"StartSession",e); } |
64 | syslog(LOG_ERR,"error while processing StartSession: %s",e.what()); | ||
65 | return soap_receiverfault(e.what(),0); | ||
66 | } | ||
67 | 70 | ||
68 | int eyefiService::GetPhotoStatus( | 71 | int eyefiService::GetPhotoStatus( |
@@ -70,5 +73,5 @@ int eyefiService::GetPhotoStatus( | |||
70 | std::string filename, long filesize, std::string filesignature, | 73 | std::string filename, long filesize, std::string filesignature, |
71 | int flags, | 74 | int flags, |
72 | struct rns__GetPhotoStatusResponse &r ) { | 75 | struct rns__GetPhotoStatusResponse &r ) try { |
73 | #ifndef NDEBUG | 76 | #ifndef NDEBUG |
74 | syslog(LOG_DEBUG, | 77 | syslog(LOG_DEBUG, |
@@ -88,9 +91,9 @@ int eyefiService::GetPhotoStatus( | |||
88 | r.fileid = 1; r.offset = 0; | 91 | r.fileid = 1; r.offset = 0; |
89 | return SOAP_OK; | 92 | return SOAP_OK; |
90 | } | 93 | }catch(const std::exception& e) { return E(this,"GetPhotoStatus",e); } |
91 | 94 | ||
92 | int eyefiService::MarkLastPhotoInRoll( | 95 | int eyefiService::MarkLastPhotoInRoll( |
93 | std::string macaddress, int mergedelta, | 96 | std::string macaddress, int mergedelta, |
94 | struct rns__MarkLastPhotoInRollResponse&/* r */ ) { | 97 | struct rns__MarkLastPhotoInRollResponse&/* r */ ) try { |
95 | #ifndef NDEBUG | 98 | #ifndef NDEBUG |
96 | syslog(LOG_DEBUG, | 99 | syslog(LOG_DEBUG, |
@@ -111,5 +114,5 @@ int eyefiService::MarkLastPhotoInRoll( | |||
111 | keep_alive = 0; | 114 | keep_alive = 0; |
112 | return SOAP_OK; | 115 | return SOAP_OK; |
113 | } | 116 | }catch(const std::exception& e) { return E(this,"MarkLastPhotoInRoll",e); } |
114 | 117 | ||
115 | int eyefiService::UploadPhoto( | 118 | int eyefiService::UploadPhoto( |
@@ -117,5 +120,5 @@ int eyefiService::UploadPhoto( | |||
117 | std::string filename, long filesize, std::string filesignature, | 120 | std::string filename, long filesize, std::string filesignature, |
118 | std::string encryption, int flags, | 121 | std::string encryption, int flags, |
119 | struct rns__UploadPhotoResponse& r ) { | 122 | struct rns__UploadPhotoResponse& r ) try { |
120 | #ifndef NDEBUG | 123 | #ifndef NDEBUG |
121 | syslog(LOG_DEBUG, | 124 | syslog(LOG_DEBUG, |
@@ -227,3 +230,3 @@ int eyefiService::UploadPhoto( | |||
227 | r.success = true; | 230 | r.success = true; |
228 | return SOAP_OK; | 231 | return SOAP_OK; |
229 | } | 232 | }catch(const std::exception& e) { return E(this,"UploadPhoto",e); } |