class TranscompileTask

Overview

Class storing information about regarding transcompilation tasks.

input_code is the user provided code. output_code is the transpiled code. completed is the status of completion. priority is the priority regarding if the request came from a user or guest. inp_lang is the language of the provided code. outp_lang is the target language of the transcompilation.

Included Modules

Defined in:

models/transcompile_task.cr

Constant Summary

ASSOCIATIONS = [] of Nil

Class storing information about regarding transcompilation tasks.

input_code is the user provided code. output_code is the transpiled code. completed is the status of completion. priority is the priority regarding if the request came from a user or guest. inp_lang is the language of the provided code. outp_lang is the target language of the transcompilation.

COLUMNS = [{name: id, type: Int64, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: created_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: updated_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: input_code, type: String, nilable: false, autogenerated: false, value: "", serialized: false}, {name: output_code, type: String, nilable: true, autogenerated: false, value: "", serialized: false}, {name: completed, type: Bool, nilable: false, autogenerated: false, value: false, serialized: false}, {name: priority, type: Int32, nilable: false, autogenerated: false, value: 2, serialized: false}, {name: inp_lang, type: String, nilable: false, autogenerated: false, value: "none", serialized: false}, {name: outp_lang, type: String, nilable: false, autogenerated: false, value: "none", serialized: false}] of Nil

Class storing information about regarding transcompilation tasks.

input_code is the user provided code. output_code is the transpiled code. completed is the status of completion. priority is the priority regarding if the request came from a user or guest. inp_lang is the language of the provided code. outp_lang is the target language of the transcompilation.

PRIMARY_KEY_NAME = :id
PRIMARY_KEY_TYPE = Int64

Constructors

Class Method Summary

Instance Method Summary

Class methods inherited from class BaseModel

database : Avram::Database.class database

Constructor Detail

def self.new(id : Int64, created_at : Time, updated_at : Time, input_code : String, output_code : Nil | String, completed : Bool, priority : Int32, inp_lang : String, outp_lang : String) #

def self.new(__temp_111 : DB::ResultSet) #

Class Method Detail

def self.column_names : Array(Symbol) #

def self.columns : Array(NamedTuple(name: Symbol, nilable: Bool, type: String)) #

def self.ensure_correct_column_mappings! #

def self.from_rs(__temp_111 : DB::ResultSet) #

def self.primary_key_name : Symbol | Nil #

def self.schema_enforcer_validations #

def self.table_name : String #

Instance Method Detail

def base_query_class : ::TranscompileTask::BaseQuery.class #

This makes it easy for plugins and extensions to use the base SaveOperation


def completed : Bool #

def completed=(_completed : Bool::Lucky::ColumnType) #

def completed? : Bool #

def created_at : Time #

def created_at=(_created_at : Time::Lucky::ColumnType) #

def delete_operation_class : ::TranscompileTask::DeleteOperation.class #

def id : Int64 #

def id=(_id : Int64::Lucky::ColumnType) #

def inp_lang : String #

def inp_lang=(_inp_lang : String::Lucky::ColumnType) #

def input_code : String #

def input_code=(_input_code : String::Lucky::ColumnType) #

def outp_lang : String #

def outp_lang=(_outp_lang : String::Lucky::ColumnType) #

def output_code : String | Nil #

def output_code=(_output_code : String::Lucky::ColumnType | Nil) #

def priority : Int32 #

def priority=(_priority : Int32::Lucky::ColumnType) #

def save_operation_class : ::TranscompileTask::SaveOperation.class #

def updated_at : Time #

def updated_at=(_updated_at : Time::Lucky::ColumnType) #