blob: 65866472d473ce27d07962be5c46b75516aaaa04 [file] [log] [blame]
keunyoungb85b2752013-03-08 12:28:03 -08001/*
2* Copyright (C) 2011 The Android Open Source Project
3*
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#ifndef __COMMON_HOST_CONNECTION_H
17#define __COMMON_HOST_CONNECTION_H
18
19#include "IOStream.h"
20#include "renderControl_enc.h"
Yahan Zhoub7f09082016-03-10 11:45:02 -080021#include "ChecksumCalculator.h"
keunyoungb85b2752013-03-08 12:28:03 -080022
Lingfeng Yang18835352016-05-23 12:16:04 -070023#include <string>
24
keunyoungb85b2752013-03-08 12:28:03 -080025class GLEncoder;
Yahan Zhoue8cf63d2016-09-22 12:33:50 -070026struct gl_client_context_t;
keunyoungb85b2752013-03-08 12:28:03 -080027class GL2Encoder;
Yahan Zhoue8cf63d2016-09-22 12:33:50 -070028struct gl2_client_context_t;
keunyoungb85b2752013-03-08 12:28:03 -080029
Lingfeng Yang4f12b8d2016-07-13 16:26:10 -070030// SyncImpl determines the presence of host/guest OpenGL fence sync
31// capabilities. It corresponds exactly to EGL_ANDROID_native_fence_sync
32// capability, but for the emulator, we need to make sure that
33// OpenGL pipe protocols match, so we use a special extension name
34// here.
35// SYNC_IMPL_NONE means that the native fence sync capability is
36// not present, and we will end up using the equivalent of glFinish
37// in order to preserve buffer swapping order.
38// SYNC_IMPL_NATIVE_SYNC means that we do have native fence sync
39// capability, and we will use a fence fd to synchronize buffer swaps.
40enum SyncImpl {
41 SYNC_IMPL_NONE = 0,
42 SYNC_IMPL_NATIVE_SYNC = 1
43};
44// Interface:
45// If this GL extension string shows up, we use
46// SYNC_IMPL_NATIVE_SYNC, otherwise we use SYNC_IMPL_NONE.
Lingfeng Yang2ce4c312016-08-31 14:46:11 -070047// This string is always updated to require the _latest_
48// version of Android emulator native sync in this system image;
49// otherwise, we do not use the feature.
50static const char kRCNativeSync[] = "ANDROID_EMU_native_sync_v2";
Lingfeng Yang4f12b8d2016-07-13 16:26:10 -070051
52// ExtendedRCEncoderContext is an extended version of renderControl_encoder_context_t
53// that will be used to track SyncImpl.
54class ExtendedRCEncoderContext : public renderControl_encoder_context_t {
55public:
56 ExtendedRCEncoderContext(IOStream *stream, ChecksumCalculator *checksumCalculator)
57 : renderControl_encoder_context_t(stream, checksumCalculator) { }
58 void setSyncImpl(SyncImpl syncImpl) { m_syncImpl = syncImpl; }
59 bool hasNativeSync() const { return m_syncImpl == SYNC_IMPL_NATIVE_SYNC; }
60private:
61 SyncImpl m_syncImpl;
62};
63
keunyoungb85b2752013-03-08 12:28:03 -080064class HostConnection
65{
66public:
67 static HostConnection *get();
Lingfeng Yang200c7162016-06-13 08:39:28 -070068 static void exit();
keunyoungb85b2752013-03-08 12:28:03 -080069 ~HostConnection();
70
71 GLEncoder *glEncoder();
72 GL2Encoder *gl2Encoder();
Lingfeng Yang4f12b8d2016-07-13 16:26:10 -070073 ExtendedRCEncoderContext *rcEncoder();
Yahan Zhoub7f09082016-03-10 11:45:02 -080074 ChecksumCalculator *checksumHelper() { return &m_checksumHelper; }
keunyoungb85b2752013-03-08 12:28:03 -080075
76 void flush() {
77 if (m_stream) {
78 m_stream->flush();
79 }
80 }
81
Lingfeng Yang200c7162016-06-13 08:39:28 -070082 void setGrallocOnly(bool gralloc_only) {
83 m_grallocOnly = gralloc_only;
84 }
85
86 bool isGrallocOnly() const { return m_grallocOnly; }
87
keunyoungb85b2752013-03-08 12:28:03 -080088private:
89 HostConnection();
90 static gl_client_context_t *s_getGLContext();
91 static gl2_client_context_t *s_getGL2Context();
Lingfeng Yang18835352016-05-23 12:16:04 -070092
Lingfeng Yang4f12b8d2016-07-13 16:26:10 -070093 std::string queryGLExtensions(ExtendedRCEncoderContext *rcEnc);
Yahan Zhoub7f09082016-03-10 11:45:02 -080094 // setProtocol initilizes GL communication protocol for checksums
95 // should be called when m_rcEnc is created
Lingfeng Yang4f12b8d2016-07-13 16:26:10 -070096 void setChecksumHelper(ExtendedRCEncoderContext *rcEnc);
97 void queryAndSetSyncImpl(ExtendedRCEncoderContext *rcEnc);
keunyoungb85b2752013-03-08 12:28:03 -080098
99private:
100 IOStream *m_stream;
101 GLEncoder *m_glEnc;
102 GL2Encoder *m_gl2Enc;
Lingfeng Yang4f12b8d2016-07-13 16:26:10 -0700103 ExtendedRCEncoderContext *m_rcEnc;
Yahan Zhoub7f09082016-03-10 11:45:02 -0800104 ChecksumCalculator m_checksumHelper;
Lingfeng Yang4f12b8d2016-07-13 16:26:10 -0700105 std::string m_glExtensions;
Lingfeng Yang200c7162016-06-13 08:39:28 -0700106 bool m_grallocOnly;
keunyoungb85b2752013-03-08 12:28:03 -0800107};
108
109#endif