mirror of
https://github.com/commaai/msgq.git
synced 2026-06-13 08:25:46 +08:00
* add visionbuf make static ignore that * Needs decleration * add test binary * c++ * create some structure * some impl * socket stuff * Accept socket connection * Alloc some buffers * Create pub sockets and send buffer id * make listener private * Implement receive * use error check macros in cl_helpers * constructors to pass in opencl context * add some convenience values in struct * refactor creating buffers * rgb is not so simple * add fake stride and expose buffers * add comment * add extra data struct * support conflate * init opencl on all buffers * make ion compile * fix qcom2 * correctly setup yuv pointers when importing buffer * also included from c * Remove send print statements * send metadata * reveive metadata * also used in c code * dont start listener automatically * Was started in 2 places * set 100ms timeout on socket * verify server id to detect reconnects * handle reconnect * buffer cleanup * let user handle opencl creation * add default values * Add support for aligned rgb buffers * add align macro * dont use namespace * use poller * apple ifdef in ipc.cc * VisionBuf is C++ class * Install opencl headers * cppcheck c++ * remove c header guard * fix mac build * simplify constructors * Update visionipc/visionipc.h Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com> * Update visionipc/visionbuf_ion.cc Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com> * add brackets * s/VIPCBufExtra/VisionIpcBufExtra/g * Add unittesting harness * remove vipc demo * very basic tests * add conflate test * Install opencl * suppress msgq warnings * Make it work using zmq * cl in qcom replay * run unittests in zmq mode as well * non blocking connect * always larger frame queues Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
57 lines
1.3 KiB
Docker
57 lines
1.3 KiB
Docker
FROM ubuntu:20.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
autoconf \
|
|
build-essential \
|
|
ca-certificates \
|
|
capnproto \
|
|
clang \
|
|
cppcheck \
|
|
curl \
|
|
git \
|
|
libbz2-dev \
|
|
libcapnp-dev \
|
|
libffi-dev \
|
|
liblzma-dev \
|
|
libncurses5-dev \
|
|
libncursesw5-dev \
|
|
libreadline-dev \
|
|
libsqlite3-dev \
|
|
libssl-dev \
|
|
libtool \
|
|
libzmq3-dev \
|
|
llvm \
|
|
make \
|
|
ocl-icd-opencl-dev \
|
|
opencl-headers \
|
|
python-openssl \
|
|
tk-dev \
|
|
wget \
|
|
xz-utils \
|
|
zlib1g-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
|
|
ENV PATH="/root/.pyenv/bin:/root/.pyenv/shims:${PATH}"
|
|
RUN pyenv install 3.8.2 && \
|
|
pyenv global 3.8.2 && \
|
|
pyenv rehash && \
|
|
pip3 install --no-cache-dir pyyaml==5.1.2 Cython==0.29.14 scons==3.1.1 pycapnp==1.0.0b1 pre-commit==2.4.0 pylint==2.5.2 parameterized==0.7.4 coverage==5.1
|
|
|
|
WORKDIR /project/cereal/messaging
|
|
RUN git clone https://github.com/catchorg/Catch2.git && \
|
|
cd Catch2 && \
|
|
git checkout 229cc4823c8cbe67366da8179efc6089dd3893e9 && \
|
|
mv single_include/catch2 ../catch2 && \
|
|
cd .. \
|
|
rm -rf Catch2
|
|
|
|
WORKDIR /project/cereal
|
|
|
|
ENV PYTHONPATH=/project
|
|
|
|
COPY . .
|
|
RUN rm -rf .git && \
|
|
scons -c && scons -j$(nproc)
|