mirror of
https://github.com/openharmony/windowmanager.git
synced 2026-07-01 21:45:06 -04:00
430a84643b
Signed-off-by: xingyanan <xingyanan2@huawei.com> Change-Id: If850d8ff3493d2cc02afffbfa364d2b868cfe6c9 Signed-off-by: xingyanan <xingyanan2@huawei.com>
78 lines
2.5 KiB
C++
78 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 2021 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.
|
|
*/
|
|
|
|
#ifndef OHOS_ROSEN_SNAPSHOT_CONTROLLER_H
|
|
#define OHOS_ROSEN_SNAPSHOT_CONTROLLER_H
|
|
|
|
#include <snapshot.h>
|
|
#include <transaction/rs_interfaces.h>
|
|
#include "future.h"
|
|
#include "window_root.h"
|
|
#include "snapshot_stub.h"
|
|
#include "window_manager_hilog.h"
|
|
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
class SnapshotController : public SnapshotStub {
|
|
public:
|
|
explicit SnapshotController(sptr<WindowRoot>& root) : windowRoot_(root),
|
|
rsInterface_(RSInterfaces::GetInstance()) {};
|
|
SnapshotController() : windowRoot_(nullptr), rsInterface_(RSInterfaces::GetInstance()) {};
|
|
~SnapshotController() = default;
|
|
void Init(sptr<WindowRoot>& root);
|
|
|
|
int32_t GetSnapshot(const sptr<IRemoteObject> &token, AAFwk::Snapshot& snapshot) override;
|
|
|
|
private:
|
|
float scaleW = 0.5f; // width scaling ratio(0.5)
|
|
float scaleH = 0.5f; // height scaling ratio(0.5)
|
|
sptr<WindowRoot> windowRoot_;
|
|
RSInterfaces& rsInterface_;
|
|
|
|
WMError TakeSnapshot(const std::shared_ptr<RSSurfaceNode>& surfaceNode, AAFwk::Snapshot& snapshot);
|
|
|
|
class GetSurfaceCapture : public SurfaceCaptureCallback, public Future<std::shared_ptr<Media::PixelMap>> {
|
|
public:
|
|
GetSurfaceCapture() = default;
|
|
~GetSurfaceCapture() {};
|
|
void OnSurfaceCapture(std::shared_ptr<Media::PixelMap> pixelmap) override
|
|
{
|
|
FutureCall(pixelmap);
|
|
}
|
|
protected:
|
|
void Call(std::shared_ptr<Media::PixelMap> pixelmap) override
|
|
{
|
|
if (!flag_) {
|
|
pixelMap_ = pixelmap;
|
|
flag_ = true;
|
|
}
|
|
}
|
|
bool IsReady() override
|
|
{
|
|
return flag_;
|
|
}
|
|
std::shared_ptr<Media::PixelMap> FetchResult() override
|
|
{
|
|
return pixelMap_;
|
|
}
|
|
private:
|
|
bool flag_ = false;
|
|
std::shared_ptr<Media::PixelMap> pixelMap_ = nullptr;
|
|
};
|
|
};
|
|
}
|
|
}
|
|
#endif // OHOS_ROSEN_SNAPSHOT_CONTROLLER_H
|