Files
external_libcamera/src/libcamera/include/ipa_proxy.h
Laurent Pinchart 1e704c84a9 libcamera: Move ipa includes to the same level as libcamera
The ipa includes are located in include/libcamera/ipa/. This gives an
incorrect impression that they are a sub-part of the rest of the
libcamera API, while they are the API towards the IPA the same way that
include/libcamera/ contains the API towards applications. To clarify
this, move them to include/ipa/.

The IPA headers are however still part of libcamera, so installing them
to ${prefix}/include/ipa/ would make little sense. To fix this, move the
application facing API to ${prefix}/include/libcamera/libcamera/ when
installed, and the IPA to ${prefix}/include/libcamera/ipa/. When major
versions of libcamera will be released, they could then be installed
side by side in ${prefix}/include/libcamera-${version}/.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
2019-09-15 13:57:08 +03:00

67 lines
1.3 KiB
C++

/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* ipa_proxy.h - Image Processing Algorithm proxy
*/
#ifndef __LIBCAMERA_IPA_PROXY_H__
#define __LIBCAMERA_IPA_PROXY_H__
#include <memory>
#include <string>
#include <vector>
#include <ipa/ipa_interface.h>
#include "ipa_module.h"
#include "utils.h"
namespace libcamera {
class IPAProxy : public IPAInterface
{
public:
IPAProxy();
~IPAProxy();
bool isValid() const { return valid_; }
protected:
std::string resolvePath(const std::string &file) const;
bool valid_;
};
class IPAProxyFactory
{
public:
IPAProxyFactory(const char *name);
virtual ~IPAProxyFactory(){};
virtual std::unique_ptr<IPAProxy> create(IPAModule *ipam) = 0;
const std::string &name() const { return name_; }
static void registerType(IPAProxyFactory *factory);
static std::vector<IPAProxyFactory *> &factories();
private:
std::string name_;
};
#define REGISTER_IPA_PROXY(proxy) \
class proxy##Factory final : public IPAProxyFactory \
{ \
public: \
proxy##Factory() : IPAProxyFactory(#proxy) {} \
std::unique_ptr<IPAProxy> create(IPAModule *ipam) \
{ \
return utils::make_unique<proxy>(ipam); \
} \
}; \
static proxy##Factory global_##proxy##Factory;
} /* namespace libcamera */
#endif /* __LIBCAMERA_IPA_PROXY_H__ */