hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2019 Fuzhou Rockchip Electronics Co., Ltd. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
 
#ifndef _RK_DBUS_SM_KEY_H_
#define _RK_DBUS_SM_KEY_H_
 
namespace rockchip {
namespace aiserver {
 
enum MediaPathType { UNKNOW = -1, MEDIA_PATH_VIDEO, MEDIA_PATH_PHOTO };
 
enum DiskStatus { DISK_REMOVE = 0, DISK_INSERT };
 
#define SM_TABLE_KEY_ID "id"
#define SM_TABLE_KEY_MOUNT_PATH "sMountPath"
#define SM_TABLE_KEY_NAME "sName"
#define SM_TABLE_KEY_DEV "sDev"
#define SM_TABLE_KEY_SCAN_PATH "sScanPath"
#define SM_TABLE_KEY_MEDIA_PATH "sMediaPath"
#define SM_TABLE_KEY_STATUS "iStatus"
#define SM_TABLE_KEY_NO_SPARE_SPACE "iLowFreeStatus"
 
#define SM_TABLE_KEY_CAM_ID "iCamId"
#define SM_TABLE_KEY_FILE_TYPE "iType"
// TODO FILL
 
} // namespace aiserver
} // namespace rockchip
 
#endif // _RK_DBUS_SM_KEY_H_