- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
69 lines
1.8 KiB
C++
69 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef HERMES_ENABLE_DEBUGGER
|
|
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
|
|
#include <hermes/hermes.h>
|
|
#include <hermes/inspector-modern/chrome/Registration.h>
|
|
#include <hermes/inspector/RuntimeAdapter.h>
|
|
#include <hermes/inspector/chrome/CDPHandler.h>
|
|
#include <jsinspector-modern/InspectorInterfaces.h>
|
|
|
|
namespace facebook {
|
|
namespace hermes {
|
|
namespace inspector_modern {
|
|
namespace chrome {
|
|
|
|
/*
|
|
* ConnectionDemux keeps track of all debuggable Hermes runtimes (called
|
|
* "pages" in the higher-level React Native API) in this process. See
|
|
* Registration.h for documentation of the public API.
|
|
*/
|
|
class ConnectionDemux {
|
|
public:
|
|
explicit ConnectionDemux(
|
|
facebook::react::jsinspector_modern::IInspector& inspector);
|
|
~ConnectionDemux();
|
|
|
|
ConnectionDemux(const ConnectionDemux&) = delete;
|
|
ConnectionDemux& operator=(const ConnectionDemux&) = delete;
|
|
|
|
DebugSessionToken enableDebugging(
|
|
std::unique_ptr<RuntimeAdapter> adapter,
|
|
const std::string& title);
|
|
void disableDebugging(DebugSessionToken session);
|
|
|
|
private:
|
|
int addPage(
|
|
std::shared_ptr<hermes::inspector_modern::chrome::CDPHandler> conn);
|
|
void removePage(int pageId);
|
|
|
|
facebook::react::jsinspector_modern::IInspector& globalInspector_;
|
|
|
|
std::mutex mutex_;
|
|
std::unordered_map<
|
|
int,
|
|
std::shared_ptr<hermes::inspector_modern::chrome::CDPHandler>>
|
|
conns_;
|
|
std::shared_ptr<std::unordered_set<std::string>> inspectedContexts_;
|
|
};
|
|
|
|
} // namespace chrome
|
|
} // namespace inspector_modern
|
|
} // namespace hermes
|
|
} // namespace facebook
|
|
|
|
#endif // HERMES_ENABLE_DEBUGGER
|