Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of libMiMic by
mbed/HttpdConnection.cpp@18:1970fec78229, 2013-04-26 (annotated)
- Committer:
- nyatla
- Date:
- Fri Apr 26 14:55:24 2013 +0000
- Revision:
- 18:1970fec78229
- Parent:
- 17:f29e1ca90e3d
- Child:
- 19:33b9ba0859ee
update modLocalFileSystem; add simple directory index page
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nyatla | 4:909dc70956e7 | 1 | #include "HttpdConnection.h" |
nyatla | 4:909dc70956e7 | 2 | namespace MiMic |
nyatla | 4:909dc70956e7 | 3 | { |
nyatla | 18:1970fec78229 | 4 | |
nyatla | 18:1970fec78229 | 5 | int HttpdConnection::getMethodType() |
nyatla | 18:1970fec78229 | 6 | { |
nyatla | 18:1970fec78229 | 7 | return NyLPC_cHttpdConnection_getMethod(this->_ref_inst); |
nyatla | 18:1970fec78229 | 8 | } |
nyatla | 18:1970fec78229 | 9 | |
nyatla | 18:1970fec78229 | 10 | bool HttpdConnection::isMethodType(int i_method_type) |
nyatla | 18:1970fec78229 | 11 | { |
nyatla | 18:1970fec78229 | 12 | return NyLPC_cHttpdConnection_getMethod(this->_ref_inst)==i_method_type; |
nyatla | 18:1970fec78229 | 13 | } |
nyatla | 18:1970fec78229 | 14 | |
nyatla | 4:909dc70956e7 | 15 | HttpdConnection::HttpdConnection(NyLPC_TcHttpdConnection* i_ref_inst) |
nyatla | 4:909dc70956e7 | 16 | { |
nyatla | 4:909dc70956e7 | 17 | this->_ref_inst=i_ref_inst; |
nyatla | 4:909dc70956e7 | 18 | } |
nyatla | 4:909dc70956e7 | 19 | bool HttpdConnection::sendHeader(unsigned short i_status_code,const char* i_content_type,const char* i_additional_header) |
nyatla | 4:909dc70956e7 | 20 | { |
nyatla | 4:909dc70956e7 | 21 | return NyLPC_TBool_TRUE==NyLPC_cHttpdConnection_sendResponseHeader(this->_ref_inst,i_status_code,i_content_type,i_additional_header); |
nyatla | 4:909dc70956e7 | 22 | } |
nyatla | 4:909dc70956e7 | 23 | bool HttpdConnection::sendHeader(unsigned short i_status_code,const char* i_content_type,const char* i_additional_header,unsigned int i_length) |
nyatla | 4:909dc70956e7 | 24 | { |
nyatla | 4:909dc70956e7 | 25 | return NyLPC_TBool_TRUE==NyLPC_cHttpdConnection_sendResponseHeader2(this->_ref_inst,i_status_code,i_content_type,i_length,i_additional_header); |
nyatla | 4:909dc70956e7 | 26 | } |
nyatla | 4:909dc70956e7 | 27 | bool HttpdConnection::sendBody(const void* i_data,NyLPC_TUInt32 i_size) |
nyatla | 4:909dc70956e7 | 28 | { |
nyatla | 4:909dc70956e7 | 29 | return NyLPC_TBool_TRUE==NyLPC_cHttpdConnection_sendResponseBody(this->_ref_inst,i_data,i_size); |
nyatla | 4:909dc70956e7 | 30 | } |
nyatla | 4:909dc70956e7 | 31 | bool HttpdConnection::sendBodyF(const char* i_fmt,...) |
nyatla | 4:909dc70956e7 | 32 | { |
nyatla | 4:909dc70956e7 | 33 | va_list a; |
nyatla | 4:909dc70956e7 | 34 | if(this->_ref_inst->_res_status!=NyLPC_cHttpdConnection_ResStatus_BODY) |
nyatla | 4:909dc70956e7 | 35 | { |
nyatla | 4:909dc70956e7 | 36 | NyLPC_OnErrorGoto(Error); |
nyatla | 4:909dc70956e7 | 37 | } |
nyatla | 4:909dc70956e7 | 38 | //Bodyの書込み |
nyatla | 4:909dc70956e7 | 39 | va_start(a,i_fmt); |
nyatla | 4:909dc70956e7 | 40 | if(!NyLPC_cHttpBodyWriter_formatV(&(this->_ref_inst->_body_writer),i_fmt,a)){ |
nyatla | 4:909dc70956e7 | 41 | NyLPC_OnErrorGoto(Error_Send); |
nyatla | 4:909dc70956e7 | 42 | } |
nyatla | 4:909dc70956e7 | 43 | va_end(a); |
nyatla | 4:909dc70956e7 | 44 | return true; |
nyatla | 4:909dc70956e7 | 45 | Error_Send: |
nyatla | 4:909dc70956e7 | 46 | va_end(a); |
nyatla | 4:909dc70956e7 | 47 | NyLPC_cHttpBodyWriter_finalize(&(this->_ref_inst->_in_stream)); |
nyatla | 4:909dc70956e7 | 48 | Error: |
nyatla | 4:909dc70956e7 | 49 | this->_ref_inst->_res_status=NyLPC_cHttpdConnection_ResStatus_ERROR; |
nyatla | 4:909dc70956e7 | 50 | return false; |
nyatla | 7:2b33a8d84eb3 | 51 | } |
nyatla | 7:2b33a8d84eb3 | 52 | void HttpdConnection::lockHttpd() |
nyatla | 7:2b33a8d84eb3 | 53 | { |
nyatla | 7:2b33a8d84eb3 | 54 | NyLPC_cHttpdConnection_lock(this->_ref_inst); |
nyatla | 7:2b33a8d84eb3 | 55 | } |
nyatla | 7:2b33a8d84eb3 | 56 | void HttpdConnection::releaseHttpd() |
nyatla | 7:2b33a8d84eb3 | 57 | { |
nyatla | 7:2b33a8d84eb3 | 58 | NyLPC_cHttpdConnection_unlock(this->_ref_inst); |
nyatla | 7:2b33a8d84eb3 | 59 | } |
nyatla | 4:909dc70956e7 | 60 | } |