/* * Copyright (C) 2017 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 ANDROID_HARDWARE_CAS_V1_0_CAS_IMPL_H_ #define ANDROID_HARDWARE_CAS_V1_0_CAS_IMPL_H_ #include #include namespace android { struct CasPlugin; namespace hardware { namespace cas { namespace V1_0 { struct ICasListener; namespace implementation { class SharedLibrary; class CasImpl : public ICas { public: CasImpl(const sp &listener); virtual ~CasImpl(); static void OnEvent( void *appData, int32_t event, int32_t arg, uint8_t *data, size_t size); void init(const sp& library, CasPlugin *plugin); void onEvent( int32_t event, int32_t arg, uint8_t *data, size_t size); // ICas inherits virtual Return setPrivateData( const HidlCasData& pvtData) override; virtual Return openSession( openSession_cb _hidl_cb) override; virtual Return closeSession( const HidlCasSessionId& sessionId) override; virtual Return setSessionPrivateData( const HidlCasSessionId& sessionId, const HidlCasData& pvtData) override; virtual Return processEcm( const HidlCasSessionId& sessionId, const HidlCasData& ecm) override; virtual Return processEmm( const HidlCasData& emm) override; virtual Return sendEvent( int32_t event, int32_t arg, const HidlCasData& eventData) override; virtual Return provision( const hidl_string& provisionString) override; virtual Return refreshEntitlements( int32_t refreshType, const HidlCasData& refreshData) override; virtual Return release() override; private: struct PluginHolder; sp mLibrary; std::shared_ptr mPluginHolder; sp mListener; DISALLOW_EVIL_CONSTRUCTORS(CasImpl); }; } // namespace implementation } // namespace V1_0 } // namespace cas } // namespace hardware } // namespace android #endif // ANDROID_HARDWARE_CAS_V1_0_CAS_IMPL_H_