VirtualBox

Changeset 45454 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Apr 10, 2013 12:16:33 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
84891
Message:

Runtime/http: added RTHttpAbort()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/misc/http.cpp

    r45406 r45454  
    4747typedef struct RTHTTPINTERNAL
    4848{
     49    /** magic value */
    4950    uint32_t u32Magic;
     51    /** cURL handle */
    5052    CURL *pCurl;
    5153    long lLastResp;
     54    /** custom headers */
    5255    struct curl_slist *pHeaders;
     56    /** CA certificate for HTTPS authentication check */
    5357    const char *pcszCAFile;
     58    /** abort the current HTTP request if true */
     59    bool fAbort;
    5460} RTHTTPINTERNAL;
    5561typedef RTHTTPINTERNAL *PRTHTTPINTERNAL;
     
    129135}
    130136
    131 static size_t rtHttpWriteData(void *pvBuf, size_t cb, size_t n, void *pvUser)
     137static DECLCALLBACK(size_t) rtHttpWriteData(void *pvBuf, size_t cb, size_t n, void *pvUser)
    132138{
    133139    PRTHTTPMEMCHUNK pMem = (PRTHTTPMEMCHUNK)pvUser;
     
    142148    }
    143149    return cbAll;
     150}
     151
     152static DECLCALLBACK(int) rtHttpProgress(void *pData, double DlTotal, double DlNow,
     153                                        double UlTotal, double UlNow)
     154{
     155    PRTHTTPINTERNAL pHttpInt = (PRTHTTPINTERNAL)pData;
     156    AssertReturn(pHttpInt->u32Magic == RTHTTP_MAGIC, 1);
     157
     158    return pHttpInt->fAbort ? 1 : 0;
     159}
     160
     161RTR3DECL(int) RTHttpAbort(RTHTTP hHttp)
     162{
     163    PRTHTTPINTERNAL pHttpInt = hHttp;
     164    RTHTTP_VALID_RETURN(pHttpInt);
     165
     166    pHttpInt->fAbort = true;
     167
     168    return VINF_SUCCESS;
    144169}
    145170
     
    278303    RTHTTP_VALID_RETURN(pHttpInt);
    279304
     305    pHttpInt->fAbort = false;
     306
    280307    int rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_URL, pcszUrl);
    281308    if (CURL_FAILED(rcCurl))
     
    303330        return VERR_INTERNAL_ERROR;
    304331    rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_WRITEDATA, (void*)&chunk);
     332    if (CURL_FAILED(rcCurl))
     333        return VERR_INTERNAL_ERROR;
     334    rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_PROGRESSFUNCTION, &rtHttpProgress);
     335    if (CURL_FAILED(rcCurl))
     336        return VERR_INTERNAL_ERROR;
     337    rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_PROGRESSDATA, (void*)pHttpInt);
     338    if (CURL_FAILED(rcCurl))
     339        return VERR_INTERNAL_ERROR;
     340    rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_NOPROGRESS, (long)0);
    305341    if (CURL_FAILED(rcCurl))
    306342        return VERR_INTERNAL_ERROR;
     
    356392                rc = VERR_HTTP_CACERT_WRONG_FORMAT;
    357393                break;
     394            case CURLE_ABORTED_BY_CALLBACK:
     395                /* forcefully aborted */
     396                rc = VERR_HTTP_ABORTED;
     397                break;
    358398            default:
    359399                break;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette