代码拉取完成,页面将自动刷新
同步操作将从 方瑾/async 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef __FS_H__
#define __FS_H__
#include<Windows.h>
#include<pthread.h>
#include"io.h"
#include"events.h"
enum _FsConstants {
F_OK = 0, // 文件可见
W_OK = 2, // 文件可读
R_OK = 4, // 文件可写
X_OK = 6 // 文件可执行
};
typedef enum _FsConstants FsConstants;
typedef struct _WIN32_FILE_ATTRIBUTE_DATA *FileAttributes;
#define newFileAttributes() NEW(struct _WIN32_FILE_ATTRIBUTE_DATA)
typedef struct watch * Watch;
typedef void(*WatchFileCallback)(Watch watch);
typedef void(*WatchFile)(string path, WatchFileCallback callback);
typedef void(*AccessFileCallback)(string error, Boolean result);
typedef void(*AccessFile)(string path, AccessFileCallback callback);
typedef struct watch {
string id;
string path;
FileAttributes fileAttributes;
WatchFileCallback onChange;
FILETIME ftCreationTime;
FILETIME ftLastAccessTime;
FILETIME ftLastWriteTime;
}*Watch;
#define newWatch() NEW(struct watch)
typedef struct fs{
WatchFile watchFile;
}*Fs;
#define newFs() NEW(struct fs)
static void watchFileTask(let args);
static void onFileChange(Event event, let args);
// 初始化IO服务进程数据
IoService initIoService(Array undealQueue, Array finishQueue);
// 进程退出时释放内存
void freeIoService();
// 处理IO完成结果
void dealFinishIOEvent(IoEvent event);
// 处理已完成的access事件
static void accessFileEvent(Event event, let args);
// 监听文件的变化
void watchFile(string path, WatchFileCallback callback, int interval);
// 验证文件是否存在
void accessFile(string path, FsConstants mode, AccessFileCallback callback);
#endif // ! __FS_H__
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。