2018-02-26 18:23:17 +08:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD+Patents license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
// -*- c -*-
|
|
|
|
|
|
|
|
/// Macros and typedefs for C wrapper API declarations
|
|
|
|
|
|
|
|
#ifndef FAISS_C_H
|
|
|
|
#define FAISS_C_H
|
|
|
|
|
|
|
|
typedef long idx_t; ///< all indices are this type
|
|
|
|
|
|
|
|
/// Declare an opaque type for a class type `clazz`.
|
|
|
|
#define FAISS_DECLARE_CLASS(clazz) \
|
|
|
|
typedef struct Faiss ## clazz ## _H Faiss ## clazz;
|
|
|
|
|
|
|
|
/// Declare an opaque type for a class type `clazz`, while
|
|
|
|
/// actually aliasing it to an existing parent class type `parent`.
|
|
|
|
#define FAISS_DECLARE_CLASS_INHERITED(clazz, parent) \
|
|
|
|
typedef struct Faiss ## parent ## _H Faiss ## clazz;
|
|
|
|
|
2018-05-02 19:39:59 +08:00
|
|
|
/// Declare a dynamic downcast operation from a base `FaissIndex*` pointer
|
|
|
|
/// type to a more specific index type. The function returns the same pointer
|
|
|
|
/// if the downcast is valid, and `NULL` otherwise.
|
|
|
|
#define FAISS_DECLARE_INDEX_DOWNCAST(clazz) \
|
|
|
|
Faiss ## clazz * faiss_ ## clazz ## _cast (FaissIndex*);
|
|
|
|
|
2018-02-26 18:23:17 +08:00
|
|
|
/// Declare a getter for the field `name` in class `clazz`,
|
|
|
|
/// of return type `ty`
|
|
|
|
#define FAISS_DECLARE_GETTER(clazz, ty, name) \
|
|
|
|
ty faiss_ ## clazz ## _ ## name (const Faiss ## clazz *);
|
|
|
|
|
|
|
|
/// Declare a setter for the field `name` in class `clazz`,
|
|
|
|
/// in which the user provides a value of type `ty`
|
|
|
|
#define FAISS_DECLARE_SETTER(clazz, ty, name) \
|
2018-05-02 19:39:59 +08:00
|
|
|
void faiss_ ## clazz ## _set_ ## name (Faiss ## clazz *, ty);
|
2018-02-26 18:23:17 +08:00
|
|
|
|
|
|
|
/// Declare a getter and setter for the field `name` in class `clazz`.
|
|
|
|
#define FAISS_DECLARE_GETTER_SETTER(clazz, ty, name) \
|
|
|
|
FAISS_DECLARE_GETTER(clazz, ty, name) \
|
|
|
|
FAISS_DECLARE_SETTER(clazz, ty, name)
|
|
|
|
|
|
|
|
/// Declare a destructor function which frees an object of
|
|
|
|
/// type `clazz`.
|
|
|
|
#define FAISS_DECLARE_DESTRUCTOR(clazz) \
|
|
|
|
void faiss_ ## clazz ## _free (Faiss ## clazz *obj);
|
|
|
|
|
|
|
|
#endif
|