53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
/**
|
|
* Copyright (C) 2008 Happy Fish / YuQing
|
|
*
|
|
* FastDFS may be copied only under the terms of the GNU General
|
|
* Public License V3, which may be found in the FastDFS source kit.
|
|
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail.
|
|
**/
|
|
|
|
//storage_service.h
|
|
|
|
#ifndef _STORAGE_SERVICE_H_
|
|
#define _STORAGE_SERVICE_H_
|
|
|
|
#define STORAGE_CREATE_FLAG_NONE 0
|
|
#define STORAGE_CREATE_FLAG_FILE 1
|
|
#define STORAGE_CREATE_FLAG_LINK 2
|
|
|
|
#define STORAGE_DELETE_FLAG_NONE 0
|
|
#define STORAGE_DELETE_FLAG_FILE 1
|
|
#define STORAGE_DELETE_FLAG_LINK 2
|
|
|
|
#include "fastcommon/logger.h"
|
|
#include "fdfs_define.h"
|
|
#include "fastcommon/fast_task_queue.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int g_storage_thread_count;
|
|
extern pthread_mutex_t g_storage_thread_lock;
|
|
|
|
int storage_service_init();
|
|
void storage_service_destroy();
|
|
|
|
int fdfs_stat_file_sync_func(void *args);
|
|
int storage_deal_task(struct fast_task_info *pTask);
|
|
|
|
int storage_nio_notify(struct fast_task_info *pTask);
|
|
void storage_accept_loop(int server_sock);
|
|
int storage_terminate_threads();
|
|
|
|
int storage_get_storage_path_index(int *store_path_index);
|
|
|
|
void storage_get_store_path(const char *filename, const int filename_len, \
|
|
int *sub_path_high, int *sub_path_low);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|