PHP 8.2.30
Preview: item_jsonfunc.h Size: 28.18 KB
//usr/include/mysql/server/private/item_jsonfunc.h

#ifndef ITEM_JSONFUNC_INCLUDED
#define ITEM_JSONFUNC_INCLUDED

/* Copyright (c) 2016, 2021, MariaDB

   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 St, Fifth Floor, Boston, MA 02110-1301  USA */


/* This file defines all JSON functions */


#include <json_lib.h>
#include "item_cmpfunc.h"      // Item_bool_func
#include "item_strfunc.h"      // Item_str_func
#include "item_sum.h"
#include "sql_type_json.h"
#include "json_schema.h"

class json_path_with_flags
{
public:
  json_path_t p;
  bool constant;
  bool parsed;
  json_path_step_t *cur_step;
  void set_constant_flag(bool s_constant)
  {
    constant= s_constant;
    parsed= FALSE;
  }
};


void report_path_error_ex(const char *ps, json_path_t *p,
                          const char *fname, int n_param,
                          Sql_condition::enum_warning_level lv);
void report_json_error_ex(const char *js, json_engine_t *je,
                          const char *fname, int n_param,
                          Sql_condition::enum_warning_level lv);

class Json_engine_scan: public json_engine_t
{
public:
  Json_engine_scan(CHARSET_INFO *i_cs, const uchar *str, const uchar *end)
  {
    json_scan_start(this, i_cs, str, end);
  }
  Json_engine_scan(const String &str)
   :Json_engine_scan(str.charset(), (const uchar *) str.ptr(),
                                    (const uchar *) str.end())
  { }
  bool check_and_get_value_scalar(String *res, int *error);
  bool check_and_get_value_complex(String *res, int *error,
                                  json_value_types cur_value_type=
                                                    JSON_VALUE_UNINITIALIZED);
};


class Json_path_extractor: public json_path_with_flags
{
protected:
  String tmp_js, tmp_path;
  virtual ~Json_path_extractor() { }
  virtual bool check_and_get_value(Json_engine_scan *je,
                                   String *to, int *error)=0;
  bool extract(String *to, Item *js, Item *jp, CHARSET_INFO *cs);
};


class Item_func_json_valid: public Item_bool_func
{
protected:
  String tmp_value;

public:
  Item_func_json_valid(THD *thd, Item *json) : Item_bool_func(thd, json) {}
  bool val_bool() override;
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_valid") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override
  {
    if (Item_bool_func::fix_length_and_dec(thd))
      return TRUE;
    set_maybe_null();
    return FALSE;
  }
  bool set_format_by_check_constraint(Send_field_extended_metadata *to) const
    override
  {
    static const Lex_cstring fmt(STRING_WITH_LEN("json"));
    return to->set_format_name(fmt);
  }
  enum Functype functype() const override { return JSON_VALID_FUNC; }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_valid>(thd, this); }
};


class Item_func_json_equals: public Item_bool_func
{
public:
  Item_func_json_equals(THD *thd, Item *a, Item *b):
    Item_bool_func(thd, a, b) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_equals") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_equals>(thd, this); }
  bool val_bool() override;
};


class Item_func_json_exists: public Item_bool_func
{
protected:
  json_path_with_flags path;
  String tmp_js, tmp_path;

public:
  Item_func_json_exists(THD *thd, Item *js, Item *i_path):
    Item_bool_func(thd, js, i_path) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_exists") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  bool val_bool() override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_exists>(thd, this); }
};


class Item_json_func: public Item_str_func
{
public:
  Item_json_func(THD *thd)
   :Item_str_func(thd) { }
  Item_json_func(THD *thd, Item *a)
   :Item_str_func(thd, a) { }
  Item_json_func(THD *thd, Item *a, Item *b)
   :Item_str_func(thd, a, b) { }
  Item_json_func(THD *thd, List<Item> &list)
   :Item_str_func(thd, list) { }
  const Type_handler *type_handler() const override
  {
    return Type_handler_json_common::json_type_handler(max_length);
  }
};


class Item_func_json_value: public Item_str_func,
                            public Json_path_extractor
{

public:
  Item_func_json_value(THD *thd, Item *js, Item *i_path):
    Item_str_func(thd, js, i_path) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_value") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override ;
  String *val_str(String *to) override
  {
    null_value= Json_path_extractor::extract(to, args[0], args[1],
                                             collation.collation);
    return null_value ? NULL : to;
  }
  bool check_and_get_value(Json_engine_scan *je,
                           String *res, int *error) override
  {
    return je->check_and_get_value_scalar(res, error);
  }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_value>(thd, this); }
};


class Item_func_json_query: public Item_json_func,
                            public Json_path_extractor
{
public:
  Item_func_json_query(THD *thd, Item *js, Item *i_path):
    Item_json_func(thd, js, i_path) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_query") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *to) override
  {
    null_value= Json_path_extractor::extract(to, args[0], args[1],
                                             collation.collation);
    return null_value ? NULL : to;
  }
  bool check_and_get_value(Json_engine_scan *je,
                           String *res, int *error) override
  {
    return je->check_and_get_value_complex(res, error, JSON_VALUE_UNINITIALIZED);
  }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_query>(thd, this); }
};


class Item_func_json_quote: public Item_str_func
{
protected:
  String tmp_s;

public:
  Item_func_json_quote(THD *thd, Item *s): Item_str_func(thd, s) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_quote") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *) override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_quote>(thd, this); }
};


class Item_func_json_unquote: public Item_str_func
{
protected:
  String tmp_s;
  String *read_json(json_engine_t *je);
public:
  Item_func_json_unquote(THD *thd, Item *s): Item_str_func(thd, s) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_unquote") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *) override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_unquote>(thd, this); }
};


class Item_json_str_multipath: public Item_json_func
{
protected:
  json_path_with_flags *paths;
  String *tmp_paths;
private:
  /**
    Number of paths returned by calling virtual method get_n_paths() and
    remembered inside fix_fields(). It is used by the virtual destructor
    ~Item_json_str_multipath() to iterate along allocated memory chunks stored
    in the array tmp_paths and free every of them. The virtual method
    get_n_paths() can't be used for this goal from within virtual destructor.
    We could get rid of the virtual method get_n_paths() and store the number
    of paths directly in the constructor of classes derived from the class
    Item_json_str_multipath but presence of the method get_n_paths() allows
    to check invariant that the number of arguments not changed between
    sequential runs of the same prepared statement that seems to be useful.
  */
  uint n_paths;
public:
  Item_json_str_multipath(THD *thd, List<Item> &list):
    Item_json_func(thd, list), paths(NULL), tmp_paths(0), n_paths(0) {}
  virtual ~Item_json_str_multipath();

  bool fix_fields(THD *thd, Item **ref) override;
  virtual uint get_n_paths() const = 0;
};


class Item_func_json_extract: public Item_json_str_multipath
{
protected:
  String tmp_js;
public:
  String *read_json(String *str, json_value_types *type,
                    char **out_val, int *value_len);
  Item_func_json_extract(THD *thd, List<Item> &list):
    Item_json_str_multipath(thd, list) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_extract") };
    return name;
  }
  enum Functype functype() const override { return JSON_EXTRACT_FUNC; }
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *) override;
  longlong val_int() override;
  double val_real() override;
  my_decimal *val_decimal(my_decimal *) override;
  uint get_n_paths() const override { return arg_count - 1; }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_extract>(thd, this); }
};


class Item_func_json_contains: public Item_bool_func
{
protected:
  String tmp_js;
  json_path_with_flags path;
  String tmp_path;
  bool a2_constant, a2_parsed;
  String tmp_val, *val;
public:
  Item_func_json_contains(THD *thd, List<Item> &list):
    Item_bool_func(thd, list) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_contains") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  bool val_bool() override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_contains>(thd, this); }
};


class Item_func_json_contains_path: public Item_bool_func
{
protected:
  String tmp_js;
  json_path_with_flags *paths;
  String *tmp_paths;
  bool mode_one;
  bool ooa_constant, ooa_parsed;
  bool *p_found;

public:
  Item_func_json_contains_path(THD *thd, List<Item> &list):
    Item_bool_func(thd, list), tmp_paths(0) {}
  virtual ~Item_func_json_contains_path();
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_contains_path") };
    return name;
  }
  bool fix_fields(THD *thd, Item **ref) override;
  bool fix_length_and_dec(THD *thd) override;
  bool val_bool() override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_contains_path>(thd, this); }
};


class Item_func_json_array: public Item_json_func
{
protected:
  String tmp_val;
  ulong result_limit;
public:
  Item_func_json_array(THD *thd):
    Item_json_func(thd) {}
  Item_func_json_array(THD *thd, List<Item> &list):
    Item_json_func(thd, list) {}
  String *val_str(String *) override;
  bool fix_length_and_dec(THD *thd) override;
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_array") };
    return name;
  }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_array>(thd, this); }
};


class Item_func_json_array_append: public Item_json_str_multipath
{
protected:
  String tmp_js;
  String tmp_val;
public:
  Item_func_json_array_append(THD *thd, List<Item> &list):
    Item_json_str_multipath(thd, list) {}
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *) override;
  uint get_n_paths() const override { return arg_count/2; }
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_array_append") };
    return name;
  }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_array_append>(thd, this); }
};


class Item_func_json_array_insert: public Item_func_json_array_append
{
public:
  Item_func_json_array_insert(THD *thd, List<Item> &list):
    Item_func_json_array_append(thd, list) {}
  String *val_str(String *) override;
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_array_insert") };
    return name;
  }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_array_insert>(thd, this); }
};


class Item_func_json_object: public Item_func_json_array
{
public:
  Item_func_json_object(THD *thd):
    Item_func_json_array(thd) {}
  Item_func_json_object(THD *thd, List<Item> &list):
    Item_func_json_array(thd, list) {}
  String *val_str(String *) override;
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_object") };
    return name;
  }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_object>(thd, this); }
};


class Item_func_json_merge: public Item_func_json_array
{
protected:
  String tmp_js1, tmp_js2;
public:
  Item_func_json_merge(THD *thd, List<Item> &list):
    Item_func_json_array(thd, list) {}
  String *val_str(String *) override;
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_merge_preserve") };
    return name;
  }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_merge>(thd, this); }
};

class Item_func_json_merge_patch: public Item_func_json_merge
{
public:
  Item_func_json_merge_patch(THD *thd, List<Item> &list):
    Item_func_json_merge(thd, list) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_merge_patch") };
    return name;
  }
  String *val_str(String *) override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_merge_patch>(thd, this); }
};


class Item_func_json_normalize: public Item_json_func
{
public:
  Item_func_json_normalize(THD *thd, Item *a):
    Item_json_func(thd, a) {}
  String *val_str(String *) override;
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_normalize") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_normalize>(thd, this); }
};


class Item_func_json_object_to_array: public Item_json_func
{
  protected:
  String tmp;
public:
  Item_func_json_object_to_array(THD *thd, Item *a):
    Item_json_func(thd, a) {}
  String *val_str(String *) override;
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_object_to_array") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_object_to_array>(thd, this); }
};


class Item_func_json_length: public Item_long_func
{
  bool check_arguments() const override
  {
    const LEX_CSTRING name= func_name_cstring();
    if (arg_count == 0 || arg_count > 2)
    {
      my_error(ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT, MYF(0), name.str);
      return true;
    }
    return args[0]->check_type_can_return_text(name) ||
      (arg_count > 1 && args[1]->check_type_general_purpose_string(name));
  }
protected:
  json_path_with_flags path;
  String tmp_js;
  String tmp_path;
public:
  Item_func_json_length(THD *thd, List<Item> &list):
    Item_long_func(thd, list) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_length") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  longlong val_int() override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_length>(thd, this); }
};


class Item_func_json_depth: public Item_long_func
{
  bool check_arguments() const override
  { return args[0]->check_type_can_return_text(func_name_cstring()); }
protected:
  String tmp_js;
public:
  Item_func_json_depth(THD *thd, Item *js): Item_long_func(thd, js) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_depth") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override { max_length= 10; return FALSE; }
  longlong val_int() override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_depth>(thd, this); }
};


class Item_func_json_type: public Item_str_func
{
protected:
  String tmp_js;
public:
  Item_func_json_type(THD *thd, Item *js): Item_str_func(thd, js) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_type") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *) override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_type>(thd, this); }
};


class Item_func_json_insert: public Item_json_str_multipath
{
protected:
  String tmp_js;
  String tmp_val;
  bool mode_insert, mode_replace;
public:
  Item_func_json_insert(bool i_mode, bool r_mode, THD *thd, List<Item> &list):
    Item_json_str_multipath(thd, list),
      mode_insert(i_mode), mode_replace(r_mode) {}
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *) override;
  uint get_n_paths() const override { return arg_count/2; }
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING json_set=    {STRING_WITH_LEN("json_set") };
    static LEX_CSTRING json_insert= {STRING_WITH_LEN("json_insert") };
    static LEX_CSTRING json_replace= {STRING_WITH_LEN("json_replace") };
    return (mode_insert ?
            (mode_replace ? json_set : json_insert) : json_replace);
  }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_insert>(thd, this); }
};


class Item_func_json_remove: public Item_json_str_multipath
{
protected:
  String tmp_js;
public:
  Item_func_json_remove(THD *thd, List<Item> &list):
    Item_json_str_multipath(thd, list) {}
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *) override;
  uint get_n_paths() const override { return arg_count - 1; }
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_remove") };
    return name;
  }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_remove>(thd, this); }
};


class Item_func_json_keys: public Item_str_func
{
protected:
  json_path_with_flags path;
  String tmp_js, tmp_path;

public:
  Item_func_json_keys(THD *thd, List<Item> &list):
    Item_str_func(thd, list) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_keys") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *) override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_keys>(thd, this); }
};


class Item_func_json_search: public Item_json_str_multipath
{
protected:
  String tmp_js, tmp_path, esc_value;
  bool mode_one;
  bool ooa_constant, ooa_parsed;
  int escape;
  int n_path_found;
  json_path_t sav_path;

  int compare_json_value_wild(json_engine_t *je, const String *cmp_str);

public:
  Item_func_json_search(THD *thd, List<Item> &list):
    Item_json_str_multipath(thd, list) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_search") };
    return name;
  }
  bool fix_fields(THD *thd, Item **ref) override;
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *) override;
  uint get_n_paths() const override { return arg_count > 4 ? arg_count - 4 : 0; }

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_search>(thd, this); }
};


class Item_func_json_format: public Item_json_func
{
public:
  enum formats
  {
    NONE,
    COMPACT,
    LOOSE,
    DETAILED
  };
protected:
  formats fmt;
  String tmp_js;
public:
  Item_func_json_format(THD *thd, Item *js, formats format):
    Item_json_func(thd, js), fmt(format) {}
  Item_func_json_format(THD *thd, List<Item> &list):
    Item_json_func(thd, list), fmt(DETAILED) {}

  LEX_CSTRING func_name_cstring() const override;
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *str) override;
  String *val_json(String *str) override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_format>(thd, this); }
};


class Item_func_json_arrayagg : public Item_func_group_concat
{
protected:
  /*
    Overrides Item_func_group_concat::skip_nulls()
    NULL-s should be added to the result as JSON null value.
  */
  bool skip_nulls() const override { return false; }
  String *get_str_from_item(Item *i, String *tmp) override;
  String *get_str_from_field(Item *i, Field *f, String *tmp,
                             const uchar *key, size_t offset) override;
  void cut_max_length(String *result,
                      uint old_length, uint max_length) const override;
public:
  String m_tmp_json; /* Used in get_str_from_*.. */
  Item_func_json_arrayagg(THD *thd, Name_resolution_context *context_arg,
                          bool is_distinct, List<Item> *is_select,
                          const SQL_I_List<ORDER> &is_order, String *is_separator,
                          bool limit_clause, Item *row_limit, Item *offset_limit):
      Item_func_group_concat(thd, context_arg, is_distinct, is_select, is_order,
                             is_separator, limit_clause, row_limit, offset_limit)
  {
  }
  Item_func_json_arrayagg(THD *thd, Item_func_json_arrayagg *item) :
    Item_func_group_concat(thd, item) {}
  const Type_handler *type_handler() const override
  {
    return Type_handler_json_common::json_type_handler_sum(this);
  }

  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_arrayagg(") };
    return name;
  }
  bool fix_fields(THD *thd, Item **ref) override;
  enum Sumfunctype sum_func() const override { return JSON_ARRAYAGG_FUNC; }

  String* val_str(String *str) override;

  Item *copy_or_same(THD* thd) override;

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_arrayagg>(thd, this); }
};


class Item_func_json_objectagg : public Item_sum
{
  String result;
public:
  Item_func_json_objectagg(THD *thd, Item *key, Item *value) :
    Item_sum(thd, key, value)
  {
    quick_group= FALSE;
    result.append('{');
  }

  Item_func_json_objectagg(THD *thd, Item_func_json_objectagg *item);
  void cleanup() override;

  enum Sumfunctype sum_func () const override { return JSON_OBJECTAGG_FUNC;}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_objectagg") };
    return name;
  }
  const Type_handler *type_handler() const override
  {
    return Type_handler_json_common::json_type_handler_sum(this);
  }
  void clear() override;
  bool add() override;
  void reset_field() override { DBUG_ASSERT(0); }        // not used
  void update_field() override { DBUG_ASSERT(0); }       // not used
  bool fix_fields(THD *,Item **) override;

  double val_real() override { return 0.0; }
  longlong val_int() override { return 0; }
  my_decimal *val_decimal(my_decimal *decimal_value) override
  {
    my_decimal_set_zero(decimal_value);
    return decimal_value;
  }
  bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override
  {
    return get_date_from_string(thd, ltime, fuzzydate);
  }
  String* val_str(String* str) override;
  Item *copy_or_same(THD* thd) override;
  void no_rows_in_result() override {}

protected:
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_objectagg>(thd, this); }
};

extern bool is_json_type(const Item *item);

class Item_func_json_overlaps: public Item_bool_func
{
  String tmp_js;
  bool a2_constant, a2_parsed;
  String tmp_val, *val;
public:
  Item_func_json_overlaps(THD *thd, Item *a, Item *b):
    Item_bool_func(thd, a, b)
    {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_overlaps") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  bool val_bool() override;
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_overlaps>(thd, this); }
};

class Item_func_json_schema_valid: public Item_bool_func
{
  String tmp_js;
  bool schema_parsed;
  String tmp_val, *val;
  List<Json_schema_keyword> keyword_list;
  List<Json_schema_keyword> all_keywords;

public:
  Item_func_json_schema_valid(THD *thd, Item *a, Item *b):
    Item_bool_func(thd, a, b)
    {
      val= NULL;
      schema_parsed= false;
      set_maybe_null();
    }
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_schema_valid") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  bool val_bool() override;
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_schema_valid>(thd, this); }
  void cleanup() override;
};

class Item_func_json_key_value: public Item_json_func,
                            public Json_path_extractor
{

  String tmp_str;

public:
  Item_func_json_key_value(THD *thd, Item *js, Item *i_path):
    Item_json_func(thd, js, i_path) {}
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_key_value") };
    return name;
  }
  bool fix_length_and_dec(THD *thd) override;
  String *val_str(String *to) override;
  bool check_and_get_value(Json_engine_scan *je,
                           String *res, int *error) override
  {
    return je->check_and_get_value_complex(res, error, JSON_VALUE_OBJECT);
  }
  bool get_key_value(json_engine_t *je, String *str);
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_key_value>(thd, this); }
};



class Item_func_json_array_intersect: public Item_str_func
{
protected:
  String tmp_js1, tmp_js2, temp_str;
  bool item_hash_inited, seen_hash_inited, root_inited;
  HASH items, seen;
  MEM_ROOT hash_root;
  bool parse_for_each_row;
public:
  Item_func_json_array_intersect(THD *thd, Item *a, Item *b):
    Item_str_func(thd, a, b)
    { item_hash_inited= seen_hash_inited= root_inited= parse_for_each_row= false; }
  String *val_str(String *) override;
  bool fix_length_and_dec(THD *thd) override;
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_array_intersect") };
    return name;
  }
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_array_intersect>(thd, this); }
  void cleanup() override
  {
    Item_str_func::cleanup();
    if (item_hash_inited)
      my_hash_free(&items);
    if (seen_hash_inited)
      my_hash_free(&seen);
    if (root_inited)
      free_root(&hash_root, MYF(0));
  }
  bool prepare_json_and_create_hash(json_engine_t *je1, String *js);
  bool get_intersect_between_arrays(String *str, json_engine_t *value,
                                         HASH *items, HASH *seen);
};

class Item_func_json_object_filter_keys: public Item_str_func
{
protected:
  String tmp_js1, tmp_js2;
  bool hash_inited, root_inited;
  HASH items;
  MEM_ROOT hash_root;
public:
  Item_func_json_object_filter_keys(THD *thd, Item *a, Item *b):
    Item_str_func(thd, a, b) { hash_inited= root_inited= false; }
  String *val_str(String *) override;
  bool fix_length_and_dec(THD *thd) override;
  LEX_CSTRING func_name_cstring() const override
  {
    static LEX_CSTRING name= {STRING_WITH_LEN("json_object_filter_keys") };
    return name;
  }
  Item *shallow_copy(THD *thd) const override
  { return get_item_copy<Item_func_json_object_filter_keys>(thd, this); }

  void cleanup() override
  {
    Item_str_func::cleanup();
    if (hash_inited)
      my_hash_free(&items);
    if (root_inited)
      free_root(&hash_root, MYF(0));
  }
};


#endif /* ITEM_JSONFUNC_INCLUDED */

Directory Contents

Dirs: 3 × Files: 344

Name Size Perms Modified Actions
atomic DIR
- drwxr-xr-x 2026-03-05 12:55:12
Edit Download
data DIR
- drwxr-xr-x 2026-02-11 01:04:51
Edit Download
providers DIR
- drwxr-xr-x 2026-03-05 12:55:12
Edit Download
1.11 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.75 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.29 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.90 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.66 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.95 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.41 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.09 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.87 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.23 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
14.22 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.76 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.09 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.74 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.88 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.06 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.66 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
12.51 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.26 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.00 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.74 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.32 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
980 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.21 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.53 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.06 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.69 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.60 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.09 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.56 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.83 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.36 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.21 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
217.78 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.15 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.13 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
10.53 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.04 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
16.87 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
11.62 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.69 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.45 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.38 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
19.54 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
206.33 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
884 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.35 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.55 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.28 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
63.42 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.10 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.26 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.29 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.07 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
852 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.29 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
277.96 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
132.71 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
11.24 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
135.71 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
38.68 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
28.18 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.11 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
76.42 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
57.64 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
70.99 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
64.47 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.31 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
33.75 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.54 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
25.21 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.13 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.44 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.08 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.94 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
29.54 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
25.92 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
141.94 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.15 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.77 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.29 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
42.01 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.31 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.20 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
51.34 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.57 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
172.56 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.85 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.38 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.73 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.25 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
37.65 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.94 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.17 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
22.65 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
17.18 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.62 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.78 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
14.58 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
41.12 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
204 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.17 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.99 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.64 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.11 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.98 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
27.28 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.05 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.37 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.56 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
10.87 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.68 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.74 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
904 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
14.15 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.84 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.77 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
18.14 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.16 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.45 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
848 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.40 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.88 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1014 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.07 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.14 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.34 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
10.17 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.37 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.90 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
67.90 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.10 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.10 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.89 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.37 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.71 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
65.14 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.84 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
14.78 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
8.29 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.21 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.28 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.30 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
19.40 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.14 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.08 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.35 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.59 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.85 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.21 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.52 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.25 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.56 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.43 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.78 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
28.44 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
973 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
32.23 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.94 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.66 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
12.27 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
548 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.40 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.07 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
15.20 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.55 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.67 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
16.02 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.28 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.66 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
29.95 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.40 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
16.29 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
17.80 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.49 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.63 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
35.02 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.10 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
10.93 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.12 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.29 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.34 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.23 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
25.16 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
8.50 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.65 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.23 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
13.75 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
16.39 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.97 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
11.99 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
842 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
67 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
23.11 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.84 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
22.17 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.99 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
38.61 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
40.41 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
24.71 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
14.08 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
13.75 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.85 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.69 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
15.08 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
10.86 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
12.40 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.97 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
13.83 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
25.87 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.30 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
895 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.88 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.77 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
21.34 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.51 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
272.57 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
11.72 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.86 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.96 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
10.07 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.40 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
16.11 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.14 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.28 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.51 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.52 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.26 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.73 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.53 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
954 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
39.39 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
30.39 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.26 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.70 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.84 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
995 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.32 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.05 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
8.29 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
47.52 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
174.59 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.45 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.11 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
21.87 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.25 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.16 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
960 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.58 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
8.80 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
12.38 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.80 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.53 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.40 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.18 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
11.40 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
15.08 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.63 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.01 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
982 B lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.99 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.23 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
90.96 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.06 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.74 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.73 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.28 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
21.96 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
16.41 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
37.92 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.52 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.55 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.24 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
11.88 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.03 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.36 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
291.64 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
64.05 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.34 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
18.59 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.77 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.01 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.23 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.59 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.26 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.74 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.04 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.55 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.02 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.41 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
6.65 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.30 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.22 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
30.71 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.67 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
118.49 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.13 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.70 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.88 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.24 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.77 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.06 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.17 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.53 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.43 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.90 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.65 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.51 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.13 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
7.76 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.39 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.85 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.43 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.42 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.88 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.53 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.23 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.01 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.64 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.47 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
2.50 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.53 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.45 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.32 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.80 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.21 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
21.02 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.20 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.68 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.35 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.60 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
5.48 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.55 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.06 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
3.86 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.93 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.77 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
11.22 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
17.75 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.08 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
9.58 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
4.31 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.51 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download
1.86 KB lrw-r--r-- 2026-02-11 01:04:51
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).