Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create data transmitting class for fgviewer #8332

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions libs/fgviewer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ endif()
set(PUBLIC_HDRS
include/fgviewer/DebugServer.h
include/fgviewer/JsonWriter.h
include/fgviewer/FrameGraphInfo.h
)

set(SRCS
src/ApiHandler.cpp
src/ApiHandler.h
src/DebugServer.cpp
src/FrameGraphInfo.cpp
)

# ==================================================================================================
Expand Down
23 changes: 9 additions & 14 deletions libs/fgviewer/include/fgviewer/DebugServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#ifndef FGVIEWER_DEBUGSERVER_H
#define FGVIEWER_DEBUGSERVER_H

#include <fgviewer/FrameGraphInfo.h>

#include <utils/CString.h>
#include <utils/Mutex.h>

Expand All @@ -27,17 +29,9 @@ class CivetServer;

namespace filament::fgviewer {

using FrameGraphInfoKey = uint32_t;
using ViewHandle = uint32_t;

struct FrameGraphPassInfo {
utils::CString pass_name;
// TODO: Add struct detail properties
};

struct FrameGraphInfo {
utils::CString view_name;
std::vector<FrameGraphPassInfo> passes;
};

/**
* Server-side frame graph debugger.
Expand All @@ -50,30 +44,31 @@ class DebugServer {
static std::string_view const kSuccessHeader;
static std::string_view const kErrorHeader;

DebugServer(int port);
explicit DebugServer(int port);
~DebugServer();

/**
* Notifies the debugger that a new view has been added.
*/
void addView(const utils::CString& name, FrameGraphInfo info);
ViewHandle createView(utils::CString name);

/**
* Notifies the debugger that the given view has been deleted.
*/
void removeView(const utils::CString& name);
void destroyView(ViewHandle h);

/**
* Updates the information for a given view.
*/
void updateView(const utils::CString& name, FrameGraphInfo info);
void update(ViewHandle h, FrameGraphInfo info);

bool isReady() const { return mServer; }

private:
CivetServer* mServer;

std::unordered_map<FrameGraphInfoKey, FrameGraphInfo> mViews;
std::unordered_map<ViewHandle, FrameGraphInfo> mViews;
uint32_t mViewCounter = 0;
mutable utils::Mutex mViewsMutex;

class FileRequestHandler* mFileHandler = nullptr;
Expand Down
81 changes: 81 additions & 0 deletions libs/fgviewer/include/fgviewer/FrameGraphInfo.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/*
* Copyright (C) 2024 The Android Open Source Project
*
* 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 FGVIEWER_FRAMEGRAPHINFO_H
#define FGVIEWER_FRAMEGRAPHINFO_H

#include <utils/CString.h>

#include <cstdint>
#include <memory>
#include <vector>
#include <unordered_map>

namespace filament::fgviewer {
using ResourceId = uint32_t;

class FrameGraphInfo {
public:
explicit FrameGraphInfo(utils::CString viewName);

~FrameGraphInfo();

FrameGraphInfo(FrameGraphInfo &&rhs) noexcept;

FrameGraphInfo(FrameGraphInfo const &) = delete;

struct Pass {
Pass(utils::CString name, std::vector<ResourceId> reads,
std::vector<ResourceId> writes): name(std::move(name)), reads(std::move(reads)),
writes(std::move(writes)) {
}

utils::CString name;
std::vector<ResourceId> reads;
std::vector<ResourceId> writes;
};

struct Resource {
Resource(ResourceId id, utils::CString name,
std::vector<std::pair<utils::CString, utils::CString> > properties): id(id),
name(std::move(name)),
properties(std::move(properties)) {
}

ResourceId id;
utils::CString name;
// We use a vector of string pair here to store the resource properties,
// so different kinds of resources could choose different types of
// properties to record.
// ex.
// Texture2D --> { {"name","XXX"}, {"sizeX", "1024"}, {"sizeY", "768"} }
// Buffer1D --> { {"name", "XXX"}, {"size", "512"} }
std::vector<std::pair<utils::CString, utils::CString> > properties;
};

// Resources and passes will be stored inside the impl class.
void setResources(std::unordered_map<ResourceId, Resource> resources);

// The incoming passes should be sorted by the execution order.
void setPasses(std::vector<Pass> sortedPasses);

private:
class FrameGraphInfoImpl;
std::unique_ptr<FrameGraphInfoImpl> pImpl;
};
} // namespace filament::fgviewer

#endif //FGVIEWER_FRAMEGRAPHINFO_H
27 changes: 12 additions & 15 deletions libs/fgviewer/src/DebugServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include <fgviewer/DebugServer.h>
#include <fgviewer/FrameGraphInfo.h>

#include "ApiHandler.h"

Expand All @@ -31,12 +32,6 @@ namespace filament::fgviewer {

namespace {
std::string const BASE_URL = "libs/fgviewer/web";

FrameGraphInfoKey getKeybyString(const utils::CString &input,
uint32_t seed) {
return utils::hash::murmurSlow(reinterpret_cast<uint8_t const*>(
input.c_str()), input.size(), 0);
}
} // anonymous

using namespace utils;
Expand All @@ -49,6 +44,7 @@ std::string_view const DebugServer::kErrorHeader =
"HTTP/1.1 404 Not Found\r\nContent-Type: %s\r\n"
"Connection: close\r\n\r\n";


class FileRequestHandler : public CivetHandler {
public:
FileRequestHandler(DebugServer* server) : mServer(server) {}
Expand Down Expand Up @@ -110,22 +106,23 @@ DebugServer::~DebugServer() {
delete mServer;
}

void DebugServer::addView(const utils::CString &name, FrameGraphInfo info) {
ViewHandle DebugServer::createView(utils::CString name) {
std::unique_lock<utils::Mutex> lock(mViewsMutex);
const FrameGraphInfoKey key = getKeybyString(name, 0);
mViews.insert({key, info});
ViewHandle handle = mViewCounter++;
mViews.emplace(handle, FrameGraphInfo(std::move(name)));

return handle;
}

void DebugServer::removeView(const utils::CString& name) {
void DebugServer::destroyView(ViewHandle h) {
std::unique_lock<utils::Mutex> lock(mViewsMutex);
const FrameGraphInfoKey key = getKeybyString(name, 0);
mViews.erase(key);
mViews.erase(h);
}

void DebugServer::updateView(const utils::CString& name, FrameGraphInfo info) {
void DebugServer::update(ViewHandle h, FrameGraphInfo info) {
std::unique_lock<utils::Mutex> lock(mViewsMutex);
const FrameGraphInfoKey key = getKeybyString(name, 0);
mViews[key] = info;
mViews.erase(h);
mViews.emplace(h, std::move(info));
}

} // namespace filament::fgviewer
61 changes: 61 additions & 0 deletions libs/fgviewer/src/FrameGraphInfo.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*
* Copyright (C) 2024 The Android Open Source Project
*
* 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.
*/

#include <fgviewer/FrameGraphInfo.h>

namespace filament::fgviewer {

class FrameGraphInfo::FrameGraphInfoImpl {
public:
void setViewName(utils::CString name) {
viewName = std::move(name);
}

void setPasses(std::vector<Pass> sortedPasses) {
passes = std::move(sortedPasses);
}

void setResources(std::unordered_map<ResourceId, Resource> resourceMap) {
resources = std::move(resourceMap);
}

private:
utils::CString viewName;
// The order of the passes in the vector indicates the execution
// order of the passes.
std::vector<Pass> passes;
std::unordered_map<ResourceId, Resource> resources;
};


FrameGraphInfo::FrameGraphInfo(utils::CString viewName)
: pImpl(std::make_unique<FrameGraphInfoImpl>()) {
pImpl->setViewName(std::move(viewName));
}

FrameGraphInfo::~FrameGraphInfo() = default;

FrameGraphInfo::FrameGraphInfo(FrameGraphInfo&& rhs) noexcept = default;

void FrameGraphInfo::setResources(
std::unordered_map<ResourceId, Resource> resources) {
pImpl->setResources(std::move(resources));
}

void FrameGraphInfo::setPasses(std::vector<Pass> sortedPasses) {
pImpl->setPasses(std::move(sortedPasses));
}
} // namespace filament::fgviewer
Loading