17c804472Sopenharmony_ci/*
27c804472Sopenharmony_ci * Copyright (c) 2023 Huawei Device Co., Ltd.
37c804472Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
47c804472Sopenharmony_ci * you may not use this file except in compliance with the License.
57c804472Sopenharmony_ci * You may obtain a copy of the License at
67c804472Sopenharmony_ci *
77c804472Sopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
87c804472Sopenharmony_ci *
97c804472Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software
107c804472Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
117c804472Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
127c804472Sopenharmony_ci * See the License for the specific language governing permissions and
137c804472Sopenharmony_ci * limitations under the License.
147c804472Sopenharmony_ci */
157c804472Sopenharmony_ci
167c804472Sopenharmony_ci#ifndef COMMANDLINEINTERFACE_H
177c804472Sopenharmony_ci#define COMMANDLINEINTERFACE_H
187c804472Sopenharmony_ci
197c804472Sopenharmony_ci#include <memory>
207c804472Sopenharmony_ci#include <vector>
217c804472Sopenharmony_ci
227c804472Sopenharmony_ci#include "CommandLine.h"
237c804472Sopenharmony_ci#include "LocalSocket.h"
247c804472Sopenharmony_ci
257c804472Sopenharmony_ciclass CommandLineInterface {
267c804472Sopenharmony_cipublic:
277c804472Sopenharmony_ci    CommandLineInterface(const CommandLineInterface&) = delete;
287c804472Sopenharmony_ci    CommandLineInterface& operator=(const CommandLineInterface&) = delete;
297c804472Sopenharmony_ci    void InitPipe(const std::string name);
307c804472Sopenharmony_ci    static CommandLineInterface& GetInstance();
317c804472Sopenharmony_ci    static void SendJsonData(const Json2::Value&);
327c804472Sopenharmony_ci    void SendJSHeapMemory(size_t total, size_t alloc, size_t peak) const;
337c804472Sopenharmony_ci    void SendWebsocketStartupSignal() const;
347c804472Sopenharmony_ci    void ProcessCommand() const;
357c804472Sopenharmony_ci    void ProcessCommandMessage(std::string message) const;
367c804472Sopenharmony_ci    void ApplyConfig(const Json2::Value& val) const;
377c804472Sopenharmony_ci    void ApplyConfigMembers(const Json2::Value& commands, const Json2::Value::Members& members) const;
387c804472Sopenharmony_ci    void ApplyConfigCommands(const std::string& key, const std::unique_ptr<CommandLine>& command) const;
397c804472Sopenharmony_ci    void Init(std::string pipeBaseName);
407c804472Sopenharmony_ci    void ReadAndApplyConfig(std::string path) const;
417c804472Sopenharmony_ci    void CreatCommandToSendData(const std::string, const Json2::Value&, const std::string) const;
427c804472Sopenharmony_ci
437c804472Sopenharmony_ci    const static std::string COMMAND_VERSION;
447c804472Sopenharmony_ci
457c804472Sopenharmony_ciprivate:
467c804472Sopenharmony_ci    explicit CommandLineInterface();
477c804472Sopenharmony_ci    virtual ~CommandLineInterface();
487c804472Sopenharmony_ci    bool ProcessCommandValidate(bool parsingSuccessful, const Json2::Value& jsonData, const std::string& errors) const;
497c804472Sopenharmony_ci    CommandLine::CommandType GetCommandType(std::string name) const;
507c804472Sopenharmony_ci    std::unique_ptr<LocalSocket> socket;
517c804472Sopenharmony_ci    const static uint32_t MAX_COMMAND_LENGTH = 128;
527c804472Sopenharmony_ci    static bool isFirstWsSend;
537c804472Sopenharmony_ci    static bool isPipeConnected;
547c804472Sopenharmony_ci    std::vector<std::string> staticIgnoreCmd = { "ResolutionSwitch", "exit", "Language", "SupportedLanguages" };
557c804472Sopenharmony_ci    bool IsStaticIgnoreCmd(const std::string cmd) const;
567c804472Sopenharmony_ci};
577c804472Sopenharmony_ci
587c804472Sopenharmony_ci#endif // COMMANDLINEINTERFACE_H
59