blob: cf77b6ba5314705480d502d45ac4411ae073f3bc [file] [log] [blame]
Yifan Hongb0dde932017-02-10 17:49:58 -08001/*
Yifan Hong443df792017-05-09 18:49:45 -07002 * Copyright (C) 2017 The Android Open Source Project
Yifan Hongb0dde932017-02-10 17:49:58 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef FRAMEWORK_NATIVE_CMDS_LSHAL_LSHAL_H_
18#define FRAMEWORK_NATIVE_CMDS_LSHAL_LSHAL_H_
19
Yifan Hong443df792017-05-09 18:49:45 -070020#include <iostream>
Yifan Hongb0dde932017-02-10 17:49:58 -080021#include <string>
Yifan Hongb0dde932017-02-10 17:49:58 -080022
Yifan Hong443df792017-05-09 18:49:45 -070023#include <android-base/macros.h>
Yifan Hongb0dde932017-02-10 17:49:58 -080024#include <android/hidl/manager/1.0/IServiceManager.h>
Yifan Hong443df792017-05-09 18:49:45 -070025#include <utils/StrongPointer.h>
Yifan Hongb0dde932017-02-10 17:49:58 -080026
Yifan Hong4b865492017-02-28 19:38:24 -080027#include "NullableOStream.h"
Yifan Hong443df792017-05-09 18:49:45 -070028#include "utils.h"
Yifan Hongb0dde932017-02-10 17:49:58 -080029
30namespace android {
31namespace lshal {
32
Yifan Hongb0dde932017-02-10 17:49:58 -080033class Lshal {
34public:
Yifan Hong443df792017-05-09 18:49:45 -070035 Lshal();
36 Status main(const Arg &arg);
37 void usage(const std::string &command = "") const;
38 NullableOStream<std::ostream> err() const;
39 NullableOStream<std::ostream> out() const;
Yifan Hongb0dde932017-02-10 17:49:58 -080040
Yifan Hong48dc9f82017-05-09 19:33:08 -070041 Status emitDebugInfo(
Andreas Huber28d35912017-03-24 13:14:11 -070042 const std::string &interfaceName,
Yifan Hong443df792017-05-09 18:49:45 -070043 const std::string &instanceName,
44 const std::vector<std::string> &options,
Yifan Hong48dc9f82017-05-09 19:33:08 -070045 std::ostream &out,
46 NullableOStream<std::ostream> err) const;
Yifan Hong443df792017-05-09 18:49:45 -070047private:
48 Status parseArgs(const Arg &arg);
49 std::string mCommand;
50 Arg mCmdArgs;
Yifan Hong4b865492017-02-28 19:38:24 -080051 NullableOStream<std::ostream> mErr = std::cerr;
52 NullableOStream<std::ostream> mOut = std::cout;
Andreas Huber28d35912017-03-24 13:14:11 -070053
Yifan Hong443df792017-05-09 18:49:45 -070054 DISALLOW_COPY_AND_ASSIGN(Lshal);
Yifan Hongb0dde932017-02-10 17:49:58 -080055};
56
Yifan Hongb0dde932017-02-10 17:49:58 -080057} // namespace lshal
58} // namespace android
59
60#endif // FRAMEWORK_NATIVE_CMDS_LSHAL_LSHAL_H_