@pgsql/utils
TypeScript icon, indicating that this package has built-in type declarations

13.10.1 • Public • Published

@pgsql/utils

@pgsql/utils is a companion utility library for @pgsql/types, offering convenient functions to work with PostgreSQL Abstract Syntax Tree (AST) nodes and enums in a type-safe manner. This library facilitates the creation of AST nodes and simplifies the process of converting between enum names and their respective integer values, as defined in the PostgreSQL parser output.

Table of Contents

  1. @pgsql/utils
  2. Installation
  3. Usage
  4. Related Projects
  5. Disclaimer

Features

  • AST Node Creation: Simplifies the process of constructing PostgreSQL AST nodes, allowing for easy assembly of SQL queries or statements programmatically.
  • Type-safe Enum Conversion: Convert between string and integer representations of PostgreSQL AST enum values.
  • Comprehensive Coverage: Supports all enum types and node types defined in the PostgreSQL AST.
  • Seamless Integration: Designed to be used alongside the @pgsql/types package for a complete AST handling solution.

Installation

To add @pgsql/utils to your project, use the following npm command:

npm install @pgsql/utils

Usage

AST Node Creation

With the AST helper methods, creating complex SQL ASTs becomes straightforward and intuitive.

JSON AST

Explore the PostgreSQL Abstract Syntax Tree (AST) as JSON objects with ease using @pgsql/utils. Below is an example of how you can generate a JSON AST using TypeScript:

import ast from '@pgsql/utils';
const selectStmt = ast.selectStmt({
  targetList: [
    ast.resTarget({
      val: ast.columnRef({
        fields: [ast.aStar()]
      })
    })
  ],
  fromClause: [
    ast.rangeVar({
      relname: 'some_amazing_table',
      inh: true,
      relpersistence: 'p'
    })
  ],
  limitOption: 'LIMIT_OPTION_DEFAULT',
  op: 'SETOP_NONE'
});
console.log(selectStmt);
// Output: { "SelectStmt": { "targetList": [ { "ResTarget": { "val": { "ColumnRef": { "fields": [ { "A_Star": {} } ] } } } } ], "fromClause": [ { "RangeVar": { "relname": "some_amazing_table", "inh": true, "relpersistence": "p" } } ], "limitOption": "LIMIT_OPTION_DEFAULT", "op": "SETOP_NONE" } }

Select Statement

import ast, { CreateStmt, ColumnDef } from '@pgsql/utils';
import { deparse } from 'pgsql-deparser';

const selectStmt: SelectStmt = ast.selectStmt({
  targetList: [
    ast.resTarget({
      val: ast.columnRef({
        fields: [ast.aStar()]
      })
    })
  ],
  fromClause: [
    ast.rangeVar({
      schemaname: 'myschema',
      relname: 'mytable',
      inh: true,
      relpersistence: 'p'
    })
  ],
  whereClause: ast.aExpr({
    kind: 'AEXPR_OP',
    name: [ast.string({ str: '=' })],
    lexpr: ast.columnRef({
      fields: [ast.string({ str: 'a' })]
    }),
    rexpr: ast.typeCast({
      arg: ast.aConst({
        val: ast.string({ str: 't' })
      }),
      typeName: ast.typeName({
        names: [
          ast.string({ str: 'pg_catalog' }),
          ast.string({ str: 'bool' })
        ],
        typemod: -1
      })
    })
  }),
  limitOption: 'LIMIT_OPTION_DEFAULT',
  op: 'SETOP_NONE'
});

deparse(createStmt, {});
// SELECT * FROM myschema.mytable WHERE a = TRUE

Creating Table Schemas Dynamically

// Example JSON schema
const schema = {
  "tableName": "users",
  "columns": [
    { "name": "id", "type": "int", "constraints": ["PRIMARY KEY"] },
    { "name": "username", "type": "string" },
    { "name": "email", "type": "string", "constraints": ["UNIQUE"] },
    { "name": "created_at", "type": "timestamp", "constraints": ["NOT NULL"] }
  ]
};

// Construct the CREATE TABLE statement
const createStmt = ast.createStmt({
  relation: ast.rangeVar({ 
    relname: schema.tableName,
    inh: true,
    relpersistence: 'p'
  }).RangeVar as RangeVar, // special case due to PG AST
  tableElts: schema.columns.map(column => ast.columnDef({
    colname: column.name,
    typeName: ast.typeName({
      names: [ast.string({ str: column.type })]
    }),
    constraints: column.constraints?.map(constraint =>
      ast.constraint({
        contype: constraint === "PRIMARY KEY" ? "CONSTR_PRIMARY" : constraint === "UNIQUE" ? "CONSTR_UNIQUE" : "CONSTR_NOTNULL"
      })
    )
  }))
});

// `deparse` function converts AST to SQL string
const sql = deparse(createStmt, {});

console.log(sql);
// OUTPUT: 

// CREATE TABLE users (
//  id int PRIMARY KEY,
// 	username text,
// 	email text UNIQUE,
// 	created_at timestamp NOT NULL 
// )

Enum Value Conversion

@pgsql/utils provides the getEnumValue function to convert between the string and integer representations of enum values.

Here are a couple of examples demonstrating how to use @pgsql/utils in real applications:

Example 1: Converting Enum Name to Integer

Suppose you are working with the A_Expr_Kind enum and you have the name of an enum value. You can get its integer representation like this:

import { getEnumValue } from '@pgsql/utils';

const enumName = 'AEXPR_OP';
const enumValue = getEnumValue('A_Expr_Kind', enumName);

console.log(enumValue); // Outputs the integer value corresponding to 'AEXPR_OP'

Example 2: Converting Integer to Enum Name

import { getEnumValue } from '@pgsql/utils';

const intValue = 1;
const enumName = getEnumValue('SortByDir', intValue);

console.log(enumName); // Outputs 'SORTBY_ASC' if 1 corresponds to 'SORTBY_ASC'

Related

  • pgsql-parser: The real PostgreSQL parser for Node.js, providing symmetric parsing and deparsing of SQL statements with actual PostgreSQL parser integration.
  • pgsql-deparser: A streamlined tool designed for converting PostgreSQL ASTs back into SQL queries, focusing solely on deparser functionality to complement pgsql-parser.
  • pgsql-enums: A utility package offering easy access to PostgreSQL enumeration types in JSON format, aiding in string and integer conversions of enums used within ASTs to compliment pgsql-parser
  • @pgsql/enums: Provides PostgreSQL AST enums in TypeScript, enhancing type safety and usability in projects interacting with PostgreSQL AST nodes.
  • @pgsql/types: Offers TypeScript type definitions for PostgreSQL AST nodes, facilitating type-safe construction, analysis, and manipulation of ASTs.
  • @pgsql/utils: A comprehensive utility library for PostgreSQL, offering type-safe AST node creation and enum value conversions, simplifying the construction and manipulation of PostgreSQL ASTs.
  • pg-proto-parser: A TypeScript tool that parses PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
  • libpg-query: The real PostgreSQL parser exposed for Node.js, used primarily in pgsql-parser for parsing and deparsing SQL queries.

Disclaimer

AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.

No developer or entity involved in creating Software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the Software code or Software CLI, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.

Readme

Keywords

none

Package Sidebar

Install

npm i @pgsql/utils

Weekly Downloads

6,997

Version

13.10.1

License

SEE LICENSE IN LICENSE

Unpacked Size

1.9 MB

Total Files

39

Last publish

Collaborators

  • pyramation