blob: 93c11eba0a205ce666ae6fa23a571cbcf7380e4b [file] [log] [blame]
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef AXIS2_WS_INFO_H
#define AXIS2_WS_INFO_H
/**
* @file axis2_ws_info.h
* @brief Axis2 Ws Info interface
*/
#include <axis2.h>
#include <axis2_error.h>
#include <axis2_defines.h>
#include <axis2_env.h>
#include <axis2_allocator.h>
#include <axis2_qname.h>
#include <axis2_conf.h>
#ifdef __cplusplus
extern "C"
{
#endif
struct axis2_conf;
typedef struct axis2_ws_info axis2_ws_info_t;
typedef struct axis2_ws_info_ops axis2_ws_info_ops_t;
/** @defgroup axis2_ws_info Ws Info
* @ingroup axis2_deployment
* @{
*/
/**
* @brief Ws Info ops struct
* Encapsulator struct for ops of axis2_ws_info
*/
AXIS2_DECLARE_DATA struct axis2_ws_info_ops
{
/** De-allocate memory
* @return status code
*/
axis2_status_t (AXIS2_CALL *
free)(axis2_ws_info_t *ws_info,
axis2_env_t **env);
axis2_char_t *(AXIS2_CALL *
get_file_name) (axis2_ws_info_t *ws_info,
axis2_env_t **env);
axis2_status_t (AXIS2_CALL *
set_file_name) (axis2_ws_info_t *ws_info,
axis2_env_t **env,
axis2_char_t *file_name);
long (AXIS2_CALL *
get_last_modified_date) (axis2_ws_info_t *ws_info,
axis2_env_t **env);
axis2_status_t (AXIS2_CALL *
set_last_modified_date) (axis2_ws_info_t *ws_info,
axis2_env_t **env,
long last_modified_date);
int (AXIS2_CALL *
get_type) (axis2_ws_info_t *ws_info,
axis2_env_t **env);
};
/**
* @brief Ws Info struct
*/
AXIS2_DECLARE_DATA struct axis2_ws_info
{
axis2_ws_info_ops_t *ops;
};
/**
* Creates description builder struct
* @param repos_path
* @return pointer to newly created ws info
*/
AXIS2_DECLARE(axis2_ws_info_t *)
axis2_ws_info_create_with_file_name_and_last_modified_date (axis2_env_t **env,
axis2_char_t *file_name,
long last_modified_date);
AXIS2_DECLARE(axis2_ws_info_t *)
axis2_ws_info_create_with_file_name_and_last_modified_date_and_type (
axis2_env_t **env,
axis2_char_t *file_name,
long last_modified_date,
int type);
/*************************** Function macros **********************************/
#define AXIS2_WS_INFO_FREE(ws_info, env) \
((ws_info)->ops->free (ws_info, env))
#define AXIS2_WS_INFO_GET_FILE_NAME(ws_info, env) \
((ws_info)->ops->get_file_name (ws_info, env))
#define AXIS2_WS_INFO_SET_FILE_NAME(ws_info, env, file_name) \
((ws_info)->ops->set_file_name (ws_info, env, file_name))
#define AXIS2_WS_INFO_GET_LAST_MODIFIED_DATE(ws_info, env) \
((ws_info)->ops->get_last_modified_date (ws_info, env))
#define AXIS2_WS_INFO_SET_LAST_MODIFIED_DATE(ws_info, env, last_modified_date) \
((ws_info)->ops->set_last_modified_date (ws_info, env, last_modified_date))
#define AXIS2_WS_INFO_GET_TYPE(ws_info, env) \
((ws_info)->ops->get_type (ws_info, env))
/*************************** End of function macros ***************************/
/** @} */
#ifdef __cplusplus
}
#endif
#endif /* AXIS2_WS_INFO_H */