2025-01-21 16:20:51 +08:00
|
|
|
|
|
2025-01-25 15:29:06 +08:00
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
#include "u_log.h"
|
|
|
|
|
|
#include "ns_cli.h"
|
|
|
|
|
|
#include "u_rpc_svr.h"
|
|
|
|
|
|
#include "u_prot.h"
|
|
|
|
|
|
#include "u_env.h"
|
|
|
|
|
|
#include "u_task.h"
|
|
|
|
|
|
#include "cons_cli.h"
|
|
|
|
|
|
#include "fs_rpc.h"
|
2025-01-21 16:20:51 +08:00
|
|
|
|
#include <stdio.h>
|
2025-01-25 15:29:06 +08:00
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
#include <getopt.h>
|
|
|
|
|
|
#include <u_fast_ipc.h>
|
|
|
|
|
|
#include "appfs.h"
|
|
|
|
|
|
#include "hw_block.h"
|
|
|
|
|
|
#include "appfs_open.h"
|
2025-02-13 11:18:19 +08:00
|
|
|
|
#include "u_sleep.h"
|
2025-02-13 13:28:16 +08:00
|
|
|
|
#include "u_hd_man.h"
|
2025-01-25 15:29:06 +08:00
|
|
|
|
#define STACK_COM_ITME_SIZE (2 * 1024)
|
|
|
|
|
|
ATTR_ALIGN(8)
|
|
|
|
|
|
uint8_t stack_coms[STACK_COM_ITME_SIZE];
|
|
|
|
|
|
uint8_t msg_buf_coms[MSG_BUG_LEN];
|
2025-02-13 13:28:16 +08:00
|
|
|
|
static obj_handler_t com_th_obj;
|
2025-01-25 15:29:06 +08:00
|
|
|
|
static fs_info_t fs_obj;
|
|
|
|
|
|
void fast_ipc_init(void)
|
|
|
|
|
|
{
|
2025-02-13 13:28:16 +08:00
|
|
|
|
com_th_obj = handler_alloc();
|
|
|
|
|
|
assert(com_th_obj != HANDLER_INVALID);
|
|
|
|
|
|
u_fast_ipc_init(stack_coms, msg_buf_coms, 1, STACK_COM_ITME_SIZE, &com_th_obj);
|
2025-01-25 15:29:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
int main(int argc, char *argv[])
|
2025-01-21 16:20:51 +08:00
|
|
|
|
{
|
2025-01-25 15:29:06 +08:00
|
|
|
|
obj_handler_t hd;
|
|
|
|
|
|
int ret;
|
|
|
|
|
|
char *mount_path = NULL;
|
|
|
|
|
|
char *dev_path = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
fast_ipc_init();
|
|
|
|
|
|
int o;
|
|
|
|
|
|
const char *optstring = "d:m:"; // 有三个选项-abc,其中c选项后有冒号,所以后面必须有参数
|
|
|
|
|
|
while ((o = getopt(argc, argv, optstring)) != -1)
|
|
|
|
|
|
{
|
|
|
|
|
|
switch (o)
|
|
|
|
|
|
{
|
|
|
|
|
|
case 'd':
|
|
|
|
|
|
dev_path = optarg;
|
2025-03-23 17:35:56 +08:00
|
|
|
|
printf("dev path:%s\n", optarg);
|
2025-01-25 15:29:06 +08:00
|
|
|
|
break;
|
|
|
|
|
|
case 'm':
|
|
|
|
|
|
printf("mount path:%s\n", optarg);
|
|
|
|
|
|
mount_path = optarg;
|
|
|
|
|
|
break;
|
|
|
|
|
|
case '?':
|
|
|
|
|
|
printf("error optopt: %c\n", optopt);
|
|
|
|
|
|
printf("error opterr: %d\n", opterr);
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if (dev_path == NULL || mount_path == NULL)
|
|
|
|
|
|
{
|
|
|
|
|
|
printf("dev or mout path don't setting.\n");
|
|
|
|
|
|
printf("example:appfs -m /bin -d /block\n");
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
ret = hw_init_block(&fs_obj, dev_path);
|
2025-03-23 17:35:56 +08:00
|
|
|
|
assert(ret >= 0 && "hw_init_block error.");
|
2025-01-25 15:29:06 +08:00
|
|
|
|
ret = appfs_init(&fs_obj);
|
2025-03-23 17:35:56 +08:00
|
|
|
|
assert(ret >= 0 && "appfs_init error.");
|
2025-01-25 15:29:06 +08:00
|
|
|
|
ret = appfs_open_init(&fs_obj);
|
2025-03-23 17:35:56 +08:00
|
|
|
|
assert(ret >= 0 && "appfs_open_init error.");
|
2025-01-25 15:29:06 +08:00
|
|
|
|
|
2025-03-09 00:21:55 +08:00
|
|
|
|
ret = rpc_meta_init_def(TASK_THIS, &hd);
|
2025-03-23 17:35:56 +08:00
|
|
|
|
assert(ret >= 0 && "rpc_meta_init_def error.");
|
2025-01-25 15:29:06 +08:00
|
|
|
|
fs_svr_init();
|
2025-02-25 23:59:56 +08:00
|
|
|
|
ns_register(mount_path, hd, 0);
|
2025-01-25 15:29:06 +08:00
|
|
|
|
cons_write_str("appfs mount success\n");
|
2025-02-13 11:18:19 +08:00
|
|
|
|
while (1)
|
|
|
|
|
|
{
|
2025-03-09 23:53:18 +08:00
|
|
|
|
u_sleep_ms(U_SLEEP_ALWAYS);
|
2025-02-13 11:18:19 +08:00
|
|
|
|
}
|
2025-01-21 16:20:51 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
}
|