fd8bbf16创建于 2025年9月12日历史提交
/*
 * Copyright (c) 2023 Huawei Device Co., Ltd.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import { image } from '@kit.ImageKit';
import { resourceManager } from '@kit.LocalizationKit';
import { VideoItem } from './VideoItem';
import { VIDEO_DATA } from '../common/constants/CommonConstants';
import { GlobalContext } from '../common/util/GlobalContext';
import { hilog } from '@kit.PerformanceAnalysisKit';
import { BusinessError } from '@kit.BasicServicesKit';

const uiContext: UIContext | undefined = AppStorage.get('uiContext');
let context = uiContext!.getHostContext()!;
export class HomeVideoListModel {
  private videoLocalList: Array<VideoItem> = [];
  private videoInternetList: Array<VideoItem> = [];

  /**
   * Scan the local video.
   *
   * @return Local video list data
   */
  async getLocalVideo() {
    this.videoLocalList = [];
    await this.assemblingVideoItem();
    GlobalContext.getContext().setObject('videoLocalList', this.videoLocalList);
    return this.videoLocalList;
  }

  /**
   * Assembling the video object
   */
  async assemblingVideoItem() {
    for (let index = 0; index < VIDEO_DATA.length; index++) {
      const element = VIDEO_DATA[index];
      let videoItem = await context.resourceManager.getRawFd(element.iSrc).catch((err: BusinessError) => {
        hilog.error(0x0000, 'HomeVideoListModel', `getRawFd failed. code=${err.code}, message=${err.message}`);
      });
      let uri = videoItem;
      if (!uri) {
        return;
      }
      this.videoLocalList.push(new VideoItem(element.name, uri, ''));
    }
  }

  /**
   * Scan the internet video.
   *
   * @param name Video Name.
   * @param pixelMap pixelMap object.
   * @param src Playback Path.
   * @return Network video list data.
   */
  async setInternetVideo(name: string, src: string, pixelMap?: image.PixelMap) {
    this.videoInternetList.push(new VideoItem(name, {} as resourceManager.RawFileDescriptor, src, pixelMap));
    let videoInternetList = this.videoInternetList;
    GlobalContext.getContext().setObject('videoInternetList', videoInternetList);
    return videoInternetList;
  }
}

let homeVideoListModel = new HomeVideoListModel();

export default homeVideoListModel as HomeVideoListModel;