• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2023 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include "distributed_file_daemon_manager_impl.h"
17 
18 #include "dfs_error.h"
19 #include "distributed_file_daemon_proxy.h"
20 #include "utils_log.h"
21 
22 namespace OHOS {
23 namespace Storage {
24 namespace DistributedFile {
25 using namespace OHOS::Storage;
GetInstance()26 DistributedFileDaemonManagerImpl &DistributedFileDaemonManagerImpl::GetInstance()
27 {
28     static DistributedFileDaemonManagerImpl instance;
29     return instance;
30 };
31 
OpenP2PConnection(const DistributedHardware::DmDeviceInfo & deviceInfo)32 int32_t DistributedFileDaemonManagerImpl::OpenP2PConnection(const DistributedHardware::DmDeviceInfo &deviceInfo)
33 {
34     auto distributedFileDaemonProxy = DistributedFileDaemonProxy::GetInstance();
35     if (!distributedFileDaemonProxy) {
36         LOGE("proxy is null");
37 
38         return OHOS::FileManagement::E_SA_LOAD_FAILED;
39     }
40     return distributedFileDaemonProxy->OpenP2PConnection(deviceInfo);
41 }
42 
CloseP2PConnection(const DistributedHardware::DmDeviceInfo & deviceInfo)43 int32_t DistributedFileDaemonManagerImpl::CloseP2PConnection(const DistributedHardware::DmDeviceInfo &deviceInfo)
44 {
45     auto distributedFileDaemonProxy = DistributedFileDaemonProxy::GetInstance();
46     if (!distributedFileDaemonProxy) {
47         LOGE("proxy is null");
48 
49         return OHOS::FileManagement::E_SA_LOAD_FAILED;
50     }
51     return distributedFileDaemonProxy->CloseP2PConnection(deviceInfo);
52 }
53 } // namespace DistributedFile
54 } // namespace Storage
55 } // namespace OHOS