Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df01326b authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk
Browse files

Move HAL 1.x related service to its own directory.

Bug: 69958777
Test: instrumentation
Change-Id: I4739568d9b1f32db7eebb7448f24f177ba2fc831
parent d65b3ca0
Loading
Loading
Loading
Loading
+8 −24
Original line number Diff line number Diff line
@@ -35,14 +35,11 @@ import java.util.OptionalInt;
public class BroadcastRadioService extends SystemService {
    private final ServiceImpl mServiceImpl = new ServiceImpl();

    private final com.android.server.broadcastradio.hal1.BroadcastRadioService mHal1 =
            new com.android.server.broadcastradio.hal1.BroadcastRadioService();
    private final com.android.server.broadcastradio.hal2.BroadcastRadioService mHal2 =
            new com.android.server.broadcastradio.hal2.BroadcastRadioService();

    /**
     * This field is used by native code, do not access or modify.
     */
    private final long mNativeContext = nativeInit();

    private final Object mLock = new Object();
    private List<RadioManager.ModuleProperties> mModules = null;

@@ -50,18 +47,6 @@ public class BroadcastRadioService extends SystemService {
        super(context);
    }

    @Override
    protected void finalize() throws Throwable {
        nativeFinalize(mNativeContext);
        super.finalize();
    }

    private native long nativeInit();
    private native void nativeFinalize(long nativeContext);
    private native List<RadioManager.ModuleProperties> nativeLoadModules(long nativeContext);
    private native Tuner nativeOpenTuner(long nativeContext, int moduleId,
            RadioManager.BandConfig config, boolean withAudio, ITunerCallback callback);

    @Override
    public void onStart() {
        publishBinderService(Context.RADIO_SERVICE, mServiceImpl);
@@ -89,12 +74,7 @@ public class BroadcastRadioService extends SystemService {
            synchronized (mLock) {
                if (mModules != null) return mModules;

                mModules = nativeLoadModules(mNativeContext);
                if (mModules == null) {
                    throw new ParcelableException(new NullPointerException(
                            "couldn't load radio HAL 1.x modules"));
                }

                mModules = mHal1.loadModules();
                mModules.addAll(mHal2.loadModules(getNextId(mModules)));

                return mModules;
@@ -109,7 +89,11 @@ public class BroadcastRadioService extends SystemService {
                throw new IllegalArgumentException("Callback must not be empty");
            }
            synchronized (mLock) {
                return nativeOpenTuner(mNativeContext, moduleId, bandConfig, withAudio, callback);
                if (mHal2.hasModule(moduleId)) {
                    throw new RuntimeException("Not implemented");
                } else {
                    return mHal1.openTuner(moduleId, bandConfig, withAudio, callback);
                }
            }
        }
    }
+66 −0
Original line number Diff line number Diff line
/**
 * 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.
 */

package com.android.server.broadcastradio.hal1;

import android.annotation.NonNull;
import android.Manifest;
import android.content.Context;
import android.content.pm.PackageManager;
import android.hardware.radio.IRadioService;
import android.hardware.radio.ITuner;
import android.hardware.radio.ITunerCallback;
import android.hardware.radio.RadioManager;
import android.os.ParcelableException;

import com.android.server.SystemService;

import java.util.List;
import java.util.Objects;

public class BroadcastRadioService {
    /**
     * This field is used by native code, do not access or modify.
     */
    private final long mNativeContext = nativeInit();

    private final Object mLock = new Object();

    @Override
    protected void finalize() throws Throwable {
        nativeFinalize(mNativeContext);
        super.finalize();
    }

    private native long nativeInit();
    private native void nativeFinalize(long nativeContext);
    private native List<RadioManager.ModuleProperties> nativeLoadModules(long nativeContext);
    private native Tuner nativeOpenTuner(long nativeContext, int moduleId,
            RadioManager.BandConfig config, boolean withAudio, ITunerCallback callback);

    public @NonNull List<RadioManager.ModuleProperties> loadModules() {
        synchronized (mLock) {
            return Objects.requireNonNull(nativeLoadModules(mNativeContext));
        }
    }

    public ITuner openTuner(int moduleId, RadioManager.BandConfig bandConfig,
            boolean withAudio, @NonNull ITunerCallback callback) {
        synchronized (mLock) {
            return nativeOpenTuner(mNativeContext, moduleId, bandConfig, withAudio, callback);
        }
    }
}
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package com.android.server.broadcastradio;
package com.android.server.broadcastradio.hal1;

import android.annotation.NonNull;
import android.annotation.Nullable;
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package com.android.server.broadcastradio;
package com.android.server.broadcastradio.hal1;

import android.annotation.NonNull;
import android.graphics.Bitmap;
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package com.android.server.broadcastradio;
package com.android.server.broadcastradio.hal1;

import android.annotation.NonNull;
import android.hardware.radio.ITuner;
Loading