1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/*****************************************************************************
* resource.h: HTTP resource common code
*****************************************************************************
* Copyright (C) 2015 Rémi Denis-Courmont
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef VLC_HTTP_RESOURCE_H
#define VLC_HTTP_RESOURCE_H 1
/**
* \defgroup http_res Resources
* Remote HTTP resources identified by a URL
* \ingroup http
* @{
*/
struct vlc_http_msg;
struct vlc_http_mgr;
struct vlc_http_resource;
struct vlc_http_resource_cbs
{
int (*request_format)(const struct vlc_http_resource *,
struct vlc_http_msg *, void *);
int (*response_validate)(const struct vlc_http_resource *,
const struct vlc_http_msg *, void *);
};
struct vlc_http_resource
{
const struct vlc_http_resource_cbs *cbs;
struct vlc_http_msg *response;
struct vlc_http_mgr *manager;
bool secure;
bool negotiate;
bool failure;
char *host;
unsigned port;
char *authority;
char *path;
char *username;
char *password;
char *agent;
char *referrer;
};
int vlc_http_res_init(struct vlc_http_resource *,
const struct vlc_http_resource_cbs *cbs,
struct vlc_http_mgr *mgr,
const char *uri, const char *ua, const char *ref);
/**
* Destroys an HTTP resource.
*
* Releases all underlying resources allocated or held by the HTTP resource
* object.
*/
void vlc_http_res_destroy(struct vlc_http_resource *);
struct vlc_http_msg *vlc_http_res_open(struct vlc_http_resource *res, void *);
int vlc_http_res_get_status(struct vlc_http_resource *res);
/**
* Gets redirection URL.
*
* Checks if the resource URL lead to a redirection. If so, return the redirect
* location.
*
* @return Heap-allocated URL or NULL if no redirection.
*/
char *vlc_http_res_get_redirect(struct vlc_http_resource *);
/**
* Gets MIME type.
*
* @return Heap-allocated MIME type string, or NULL if unknown.
*/
char *vlc_http_res_get_type(struct vlc_http_resource *);
/**
* Reads data.
*/
struct block_t *vlc_http_res_read(struct vlc_http_resource *);
int vlc_http_res_set_login(struct vlc_http_resource *res,
const char *username, const char *password);
char *vlc_http_res_get_basic_realm(struct vlc_http_resource *res);
/** @} */
#endif
|