mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 12:56:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			140 lines
		
	
	
	
		
			5.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			140 lines
		
	
	
	
		
			5.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Copyright (C) 2007-2013 Arjen G Lentz & Antony T Curtis for Open Query
 | 
						|
   Portions of this file copyright (C) 2000-2006 MySQL AB
 | 
						|
 | 
						|
   This program is free software; you can redistribute it and/or modify
 | 
						|
   it under the terms of the GNU General Public License as published by
 | 
						|
   the Free Software Foundation; version 2 of the License.
 | 
						|
 | 
						|
   This program is distributed in the hope that it will be useful,
 | 
						|
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
   GNU General Public License for more details.
 | 
						|
 | 
						|
   You should have received a copy of the GNU General Public License
 | 
						|
   along with this program; if not, write to the Free Software
 | 
						|
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA */
 | 
						|
 | 
						|
/* ======================================================================
 | 
						|
   Open Query Graph Computation Engine, based on a concept by Arjen Lentz
 | 
						|
   v3 implementation by Antony Curtis, Arjen Lentz, Andrew McDonnell
 | 
						|
   For more information, documentation, support, enhancement engineering,
 | 
						|
   see http://openquery.com/graph or contact graph@openquery.com
 | 
						|
   ======================================================================
 | 
						|
*/
 | 
						|
 | 
						|
#include "handler.h"
 | 
						|
#include "table.h"
 | 
						|
 | 
						|
typedef struct oqgraph_info_st OQGRAPH_INFO;
 | 
						|
typedef uchar byte;
 | 
						|
 | 
						|
namespace open_query
 | 
						|
{
 | 
						|
  struct row;
 | 
						|
  class oqgraph;
 | 
						|
  class oqgraph_share;
 | 
						|
}
 | 
						|
 | 
						|
/* class for the the Open Query Graph handler */
 | 
						|
 | 
						|
class ha_oqgraph: public handler
 | 
						|
{
 | 
						|
  TABLE_SHARE share[1];
 | 
						|
  bool have_table_share;
 | 
						|
  TABLE edges[1];
 | 
						|
  Field *origid;
 | 
						|
  Field *destid;
 | 
						|
  Field *weight;
 | 
						|
 | 
						|
  open_query::oqgraph_share *graph_share;
 | 
						|
  open_query::oqgraph *graph;
 | 
						|
 | 
						|
  int fill_record(byte*, const open_query::row&);
 | 
						|
 | 
						|
public:
 | 
						|
#if MYSQL_VERSION_ID >= 50100
 | 
						|
  ha_oqgraph(handlerton *hton, TABLE_SHARE *table);
 | 
						|
  ulonglong table_flags() const override;
 | 
						|
#else
 | 
						|
  ha_oqgraph(TABLE *table);
 | 
						|
  Table_flags table_flags() const;
 | 
						|
#endif
 | 
						|
  virtual ~ha_oqgraph();
 | 
						|
  const char *index_type(uint inx) override
 | 
						|
  {
 | 
						|
    return "HASH";
 | 
						|
  }
 | 
						|
  /* Rows also use a fixed-size format */
 | 
						|
  enum row_type get_row_type() const override { return ROW_TYPE_FIXED; }
 | 
						|
  ulong index_flags(uint inx, uint part, bool all_parts) const override;
 | 
						|
  const char **bas_ext() const;
 | 
						|
  uint max_supported_keys()          const override { return MAX_KEY; }
 | 
						|
  uint max_supported_key_part_length() const override { return MAX_KEY_LENGTH; }
 | 
						|
  IO_AND_CPU_COST scan_time()  override
 | 
						|
  { return { (double) 1000000000, (double) 1000000000 }; }
 | 
						|
  IO_AND_CPU_COST rnd_pos_time(ha_rows rows)  override
 | 
						|
  { return { (double) rows, (double) rows }; }
 | 
						|
 | 
						|
  // Doesn't make sense to change the engine on a virtual table.
 | 
						|
  virtual bool can_switch_engines() override { return false; }
 | 
						|
 | 
						|
  int open(const char *name, int mode, uint test_if_locked) override;
 | 
						|
  int close(void) override;
 | 
						|
  int write_row(const byte * buf) override;
 | 
						|
  int update_row(const uchar * old_data, const uchar * new_data) override;
 | 
						|
  int delete_row(const byte * buf) override;
 | 
						|
  int index_read(byte * buf, const byte * key,
 | 
						|
		 uint key_len, enum ha_rkey_function find_flag) override;
 | 
						|
  int index_read_idx(byte * buf, uint idx, const byte * key,
 | 
						|
		     uint key_len, enum ha_rkey_function find_flag);
 | 
						|
  int index_next_same(byte * buf, const byte * key, uint key_len) override;
 | 
						|
  int rnd_init(bool scan) override;
 | 
						|
  int rnd_next(byte *buf) override;
 | 
						|
  int rnd_pos(byte * buf, byte *pos) override;
 | 
						|
  void position(const byte *record) override;
 | 
						|
  int info(uint) override;
 | 
						|
  int extra(enum ha_extra_function operation) override;
 | 
						|
  int external_lock(THD *thd, int lock_type) override;
 | 
						|
  int delete_all_rows(void) override;
 | 
						|
  ha_rows records_in_range(uint inx, const key_range *min_key,
 | 
						|
                           const key_range *max_key, page_range *pages) override;
 | 
						|
  int delete_table(const char *from) override;
 | 
						|
  int rename_table(const char * from, const char * to) override;
 | 
						|
  int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info) override;
 | 
						|
  void update_create_info(HA_CREATE_INFO *create_info) override;
 | 
						|
 | 
						|
  THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
 | 
						|
			     enum thr_lock_type lock_type) override;
 | 
						|
  int cmp_ref(const byte *ref1, const byte *ref2) override;
 | 
						|
 | 
						|
  bool get_error_message(int error, String* buf) override;
 | 
						|
 | 
						|
  void fprint_error(const char* fmt, ...);
 | 
						|
 | 
						|
#if MYSQL_VERSION_ID < 100000
 | 
						|
  // Allow compatibility for build with 5.5.32
 | 
						|
  virtual const char *table_type() const { return hton_name(ht)->str; }
 | 
						|
#endif
 | 
						|
 | 
						|
  my_bool register_query_cache_table(THD *thd, const char *table_key,
 | 
						|
                                     uint key_length,
 | 
						|
                                     qc_engine_callback
 | 
						|
                                     *engine_callback,
 | 
						|
                                     ulonglong *engine_data)  override
 | 
						|
  {
 | 
						|
    /* 
 | 
						|
      Do not put data from OQGRAPH tables into query cache (because there 
 | 
						|
      is no way to tell whether the data in the backing table has changed or 
 | 
						|
      not)
 | 
						|
    */
 | 
						|
    return FALSE;
 | 
						|
  }
 | 
						|
 | 
						|
private:
 | 
						|
 | 
						|
  // Various helper functions
 | 
						|
  int oqgraph_check_table_structure (TABLE *table_arg); 
 | 
						|
  bool validate_oqgraph_table_options();
 | 
						|
  void update_key_stats();
 | 
						|
  String error_message;
 | 
						|
};
 |