Tizen Native API  7.0
App Control URI

The App Control URI API provides functions for URI.

Required Header

#include <app_control_uri.h>

Overview

Provides functions to set/get/build URI data conform to RFC 3986.

Functions

int app_control_uri_builder_create (app_control_uri_builder_h *handle)
 Creates a URI builder handle.
int app_control_uri_builder_set_scheme (app_control_uri_builder_h handle, const char *scheme)
 Sets the scheme component.
int app_control_uri_builder_set_authority (app_control_uri_builder_h handle, const char *auth)
 Sets the authority component.
int app_control_uri_builder_set_path (app_control_uri_builder_h handle, const char *path)
 Sets the path component.
int app_control_uri_builder_add_path (app_control_uri_builder_h handle, const char *path)
 Adds the path component.
int app_control_uri_builder_set_fragment (app_control_uri_builder_h handle, const char *fragment)
 Sets the fragment identifier component.
int app_control_uri_builder_add_query (app_control_uri_builder_h handle, const char *key, const char *val)
 Adds the key-value pair attribute of the query component.
int app_control_uri_builder_build (app_control_uri_builder_h builder, app_control_uri_h *app_control_uri)
 Creates a URI handle using the attributes of URI builder handle.
int app_control_uri_builder_destroy (app_control_uri_builder_h handle)
 Destroys the URI builder handle.
int app_control_uri_create (const char *encoded_app_control_uri, app_control_uri_h *handle)
 Creates a URI handle from the encoded URI string.
int app_control_uri_destroy (app_control_uri_h handle)
 Destroys the URI handle.
int app_control_uri_encode (app_control_uri_h handle, char **encoded_app_control_uri)
 Encodes the URI handle to string. The string is RFC 3986-compliant.
int app_control_uri_get_scheme (app_control_uri_h handle, const char **scheme)
 Gets the scheme component from a URI handle.
int app_control_uri_get_authority (app_control_uri_h handle, const char **auth)
 Gets the authority component from a URI handle.
int app_control_uri_get_path (app_control_uri_h handle, const char **path)
 Gets the path component from a URI handle.
int app_control_uri_get_fragment (app_control_uri_h handle, const char **fragment)
 Gets the fragment identifier component from a URI handle.
int app_control_uri_get_query (app_control_uri_h handle, app_control_uri_query_h *query_handle)
 Gets the handle of the query component from a URI handle.
int app_control_uri_get_host (app_control_uri_h handle, const char **host)
 Gets the host subcomponent from a URI handle.
int app_control_uri_get_port (app_control_uri_h handle, const char **port)
 Gets the port subcomponent from a URI handle.
int app_control_uri_get_user (app_control_uri_h handle, const char **user)
 Gets the user subcomponent from a URI handle.
int app_control_uri_query_foreach (app_control_uri_query_h handle, app_control_uri_query_foreach_cb callback, void *user_data)
 Retrieves key-value pair attributes in the query component.

Typedefs

typedef void * app_control_uri_builder_h
 The URI builder handle.
typedef void * app_control_uri_h
 The URI handle.
typedef const void * app_control_uri_query_h
 The query component handle of the URI.
typedef bool(* app_control_uri_query_foreach_cb )(const char *key, const char *val, void *user_data)
 Called to retrieve key-value pair attributes contained in the query component.

Typedef Documentation

The URI builder handle.

Since :
5.5
typedef void* app_control_uri_h

The URI handle.

Since :
5.5
typedef bool(* app_control_uri_query_foreach_cb)(const char *key, const char *val, void *user_data)

Called to retrieve key-value pair attributes contained in the query component.

Since :
5.5
Remarks:
key and val must not be released. The platform will release them when the query object is released (see app_control_uri_get_query())
Parameters:
[in]keyThe name of the query component key-value pairs
[in]valThe value associated with the given key
[in]user_dataThe user data passed from the foreach function
Returns:
true to continue with the next iteration of the loop, otherwise false to break out of the loop
See also:
app_control_uri_query_foreach()
typedef const void* app_control_uri_query_h

The query component handle of the URI.

Since :
5.5

Enumeration Type Documentation

Enumeration for error codes of the App Control URI submodule.

Since :
5.5
Enumerator:
APP_CONTROL_URI_ERROR_NONE 

Successful

APP_CONTROL_URI_ERROR_IO_ERROR 

Internal I/O error

APP_CONTROL_URI_ERROR_OUT_OF_MEMORY 

Out of memory

APP_CONTROL_URI_ERROR_INVALID_PARAMETER 

Invalid parameter


Function Documentation

int app_control_uri_builder_add_path ( app_control_uri_builder_h  handle,
const char *  path 
)

Adds the path component.

Builder appends path component to the path. If path doesn't start with a '/', builder will prepend the given path with a '/'.

Since :
5.5
Parameters:
[in]handleThe URI builder handle
[in]pathThe path component
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_builder_add_query ( app_control_uri_builder_h  handle,
const char *  key,
const char *  val 
)

Adds the key-value pair attribute of the query component.

Since :
5.5
Parameters:
[in]handleThe URI builder handle
[in]keyThe name of the query component key-value pairs
[in]valThe value associated with the given key
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter

Creates a URI handle using the attributes of URI builder handle.

Since :
5.5
Remarks:
The app_control_uri should be released using app_control_uri_destroy().
Parameters:
[in]builderThe URI builder handle
[out]app_control_uriThe URI handle
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
APP_CONTROL_URI_ERROR_OUT_OF_MEMORYOut of memory

Creates a URI builder handle.

Since :
5.5
Remarks:
The handle should be released using app_control_uri_builder_destroy().
Parameters:
[out]handleThe URI builder handle
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
APP_CONTROL_URI_ERROR_OUT_OF_MEMORYOut of memory
See also:
app_control_uri_builder_destroy()

Destroys the URI builder handle.

Since :
5.5
Parameters:
[in]handleThe URI builder handle
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_builder_set_authority ( app_control_uri_builder_h  handle,
const char *  auth 
)

Sets the authority component.

Since :
5.5
Parameters:
[in]handleThe URI builder handle
[in]authThe authority component
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_builder_set_fragment ( app_control_uri_builder_h  handle,
const char *  fragment 
)

Sets the fragment identifier component.

Since :
5.5
Parameters:
[in]handleThe URI builder handle
[in]fragmentThe fragment identifier component
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_builder_set_path ( app_control_uri_builder_h  handle,
const char *  path 
)

Sets the path component.

If the path was already set, it will be replaced with path.

Since :
5.5
Parameters:
[in]handleThe URI builder handle
[in]pathThe path component
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_builder_set_scheme ( app_control_uri_builder_h  handle,
const char *  scheme 
)

Sets the scheme component.

Since :
5.5
Parameters:
[in]handleThe URI builder handle
[in]schemeThe scheme component
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_create ( const char *  encoded_app_control_uri,
app_control_uri_h handle 
)

Creates a URI handle from the encoded URI string.

Since :
5.5
Remarks:
The handle should be released using app_control_uri_destroy().
Parameters:
[in]encoded_app_control_uriThe encoded URI string
[out]handleThe URI handle
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
APP_CONTROL_URI_ERROR_OUT_OF_MEMORYOut of memory
See also:
app_control_uri_encode()

Destroys the URI handle.

Since :
5.5
Parameters:
[in]handleThe URI handle
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_encode ( app_control_uri_h  handle,
char **  encoded_app_control_uri 
)

Encodes the URI handle to string. The string is RFC 3986-compliant.

Since :
5.5
Remarks:
The encoded_app_control_uri URI string should be released using free().
Parameters:
[in]handleThe URI handle
[out]encoded_app_control_uriThe encoded URI string
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessfully
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
APP_CONTROL_URI_ERROR_OUT_OF_MEMORYOut of memory
int app_control_uri_get_authority ( app_control_uri_h  handle,
const char **  auth 
)

Gets the authority component from a URI handle.

Since :
5.5
Remarks:
The auth must not be released. The platform will release it when the App Control URI object containing it is released.
Parameters:
[in]handleThe URI handle
[out]authThe authority component
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessfully
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_get_fragment ( app_control_uri_h  handle,
const char **  fragment 
)

Gets the fragment identifier component from a URI handle.

Since :
5.5
Remarks:
The fragment must not be released. The platform will release it when the App Control URI object containing it is released.
Parameters:
[in]handleThe URI handle
[out]fragmentThe fragment identifier component
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessfully
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_get_host ( app_control_uri_h  handle,
const char **  host 
)

Gets the host subcomponent from a URI handle.

Since :
5.5
Remarks:
The host must not be released. The platform will release it when the App Control URI object containing it is released.
Parameters:
[in]handleThe URI handle
[out]hostThe host subcomponent of authority
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessfully
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_get_path ( app_control_uri_h  handle,
const char **  path 
)

Gets the path component from a URI handle.

Since :
5.5
Remarks:
The path must not be released. The platform will release it when the App Control URI object containing it is released.
Parameters:
[in]handleThe URI handle
[out]pathThe path component
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessfully
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_get_port ( app_control_uri_h  handle,
const char **  port 
)

Gets the port subcomponent from a URI handle.

Since :
5.5
Remarks:
The port must not be released. The platform will release it when the App Control URI object containing it is released.
Parameters:
[in]handleThe URI handle
[out]portThe port subcomponent of authority
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessfully
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter

Gets the handle of the query component from a URI handle.

Since :
5.5
Remarks:
The query_handle will be released by the platform when the App Control URI object which contains the query is released.
Parameters:
[in]handleThe URI handle
[out]query_handleThe query component handle of the URI
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessfully
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_get_scheme ( app_control_uri_h  handle,
const char **  scheme 
)

Gets the scheme component from a URI handle.

Since :
5.5
Remarks:
The scheme must not be released. The platform will release it when the App Control URI object containing it is released.
Parameters:
[in]handleThe URI handle
[out]schemeThe scheme component
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessfully
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter
int app_control_uri_get_user ( app_control_uri_h  handle,
const char **  user 
)

Gets the user subcomponent from a URI handle.

Since :
5.5
Remarks:
The user must not be released. The platform will release it when the App Control URI object containing it is released.
Parameters:
[in]handleThe URI handle
[out]userThe user subcomponent of authority
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessfully
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter

Retrieves key-value pair attributes in the query component.

Since :
5.5
Parameters:
[in]handleThe query component handle of the URI
[in]callbackThe iteration callback function
[in]user_dataThe user data to be passed the callback function
Returns:
0 on success, otherwise a negative error value
Return values:
APP_CONTROL_URI_ERROR_NONESuccessful
APP_CONTROL_URI_ERROR_INVALID_PARAMETERInvalid parameter