Documentation
¶
Index ¶
- func AppendToFile(filePath, contents string) (bytesWritten int, created bool, err error)
- func MakeTestDirectory(t *testing.T, path string)
- func ParentOptionFiles(dirPath string, baseConfig *mybase.Config) ([]*mybase.File, error)
- func ReadTestFile(t *testing.T, filename string) string
- func RemoveTestDirectory(t *testing.T, path string)
- func RemoveTestFile(t *testing.T, filename string)
- func WriteTestFile(t *testing.T, filename, contents string)
- type Dir
- func (dir *Dir) BaseName() string
- func (dir *Dir) Delete() error
- func (dir *Dir) FirstInstance() (*tengo.Instance, error)
- func (dir *Dir) HasFile(name string) (bool, error)
- func (dir *Dir) HasSchema() bool
- func (dir *Dir) InstanceDefaultParams() (string, error)
- func (dir *Dir) Instances() ([]*tengo.Instance, error)
- func (dir *Dir) SchemaNames(instance *tengo.Instance) ([]string, error)
- func (dir *Dir) String() string
- func (dir *Dir) Subdirs() ([]*Dir, int, error)
- type LogicalSchema
- type SQLFile
- func (sf SQLFile) Create(contents string) error
- func (sf SQLFile) Delete() error
- func (sf SQLFile) Exists() (bool, error)
- func (sf SQLFile) Path() string
- func (sf SQLFile) String() string
- func (sf SQLFile) Tokenize() (*TokenizedSQLFile, error)
- func (sf SQLFile) WriteStatements(statements []*Statement) (int, error)
- type Statement
- type StatementType
- type TokenizedSQLFile
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AppendToFile ¶
AppendToFile appends the supplied string to the file at the given path. If the file already exists and is not newline-terminated, a newline will be added before contents are appended. If the file does not exist, it will be created.
func MakeTestDirectory ¶
MakeTestDirectory wraps os.MkdirAll. If an error occurs, it is fatal to the test.
func ParentOptionFiles ¶
ParentOptionFiles returns a slice of *mybase.File, corresponding to the option files in the specified path's parent dir hierarchy. Evaluation of parent dirs stops once we hit either a directory containing .git, the user's home directory, or the root of the filesystem. The result is ordered such that the closest-to-root dir's File is returned first and this dir's direct parent File last. The return value excludes dirPath's file, as well as the home directory's, as these are presumed to be parsed elsewhere. The files will be read and parsed, using baseConfig to know which options are defined and valid.
func ReadTestFile ¶
ReadTestFile wraps ioutil.ReadFile. If an error occurs, it is fatal to the test.
func RemoveTestDirectory ¶
RemoveTestDirectory wraps os.RemoveAll. If an error occurs, it is fatal to the test.
func RemoveTestFile ¶
RemoveTestFile deletes a file (or directory). If an error occurs, it is fatal to the test.
func WriteTestFile ¶
WriteTestFile wraps ioutil.WriteFile. If an error occurs, it is fatal to the test.
Types ¶
type Dir ¶
type Dir struct {
Path string
Config *mybase.Config
OptionFile *mybase.File
SQLFiles []SQLFile
LogicalSchemas []*LogicalSchema // for now, always 0 or 1 elements; 2+ in same dir to be supported in future
IgnoredStatements []*Statement // statements with unknown type / not supported by this package
}
Dir is a parsed representation of a directory that may have contained a .skeema config file and/or *.sql files.
func ParseDir ¶
ParseDir parses the specified directory, including all *.sql files in it, its .skeema config file, and all .skeema config files of its parent directory hierarchy. Evaluation of parent dirs stops once we hit either a directory containing .git, the user's home directory, or the root of the filesystem. Config sources are ordered such that the closest-to-root-dir's .skeema file is added first (and the current working dir's last), meaning that options "cascade" down the fs hierarchy and can be overridden by child directories.
func (*Dir) FirstInstance ¶
FirstInstance returns at most one tengo.Instance based on the directory's configuration. If the config maps to multiple instances, only the first will be returned. If the config maps to no instances, nil will be returned. The instance WILL be checked for connectivity. If multiple instances are returned and some have connectivity issues, the first reachable instance will be returned.
func (*Dir) HasSchema ¶
HasSchema returns true if this dir maps to at least one schema, either by stating a "schema" option in the dir's config for the current environment, and/or by having *.sql files that explicitly mention a schema name.
func (*Dir) InstanceDefaultParams ¶
InstanceDefaultParams returns a param string for use in constructing a DSN. Any overrides specified in the config for this dir will be taken into account. The returned string will already be in the correct format (HTTP query string). An error will be returned if the configuration tried manipulating params that should not be user-specified.
func (*Dir) Instances ¶
Instances returns 0 or more tengo.Instance pointers, based on the directory's configuration. The Instances will NOT be checked for connectivity. However, if the configuration is invalid (for example, illegal hostname or invalid connect-options), an error will be returned instead of any instances.
func (*Dir) SchemaNames ¶
SchemaNames interprets the value of the dir's "schema" option, returning one or more schema names that the statements in dir's *.sql files will be applied to, in cases where no schema name is explicitly specified. An instance must be supplied since the value may be instance-specific.
func (*Dir) Subdirs ¶
Subdirs reads the list of direct, non-hidden subdirectories of dir, parses them (*.sql and .skeema files), and returns them. An error will be returned if there are problems reading dir's the directory list. Otherwise, err is nil but the returned int is a count of subdirs that had problems being read or parsed.
type LogicalSchema ¶ added in v1.1.0
type LogicalSchema struct {
Name string
CharSet string
Collation string
CreateTables map[string]*Statement // keyed by table name
AlterTables []*Statement // alterations that are run separately from CreateTables, afterwards
}
LogicalSchema represents a set of statements from *.sql files in a directory that all operated on the same schema. Note that Name is often blank, which means "all SQL statements in this dir that don't have an explicit USE statement before them". This "nameless" LogicalSchema is mapped to schema names based on the "schema" option in the dir's OptionFile.
type SQLFile ¶
SQLFile represents a file containing zero or more SQL statements.
func (SQLFile) Tokenize ¶
func (sf SQLFile) Tokenize() (*TokenizedSQLFile, error)
Tokenize reads the file and splits it into statements, returning a TokenizedSQLFile that wraps sf with the statements added. Statements preserve their whitespace and semicolons; the return value exactly represents the entire file. Some of the returned "statements" may just be comments and/or whitespace, since any comments and/or whitespace between SQL statements gets split into separate Statement values.
type Statement ¶
type Statement struct {
File string
LineNo int
CharNo int
Text string
DefaultDatabase string // only populated if a StatementTypeUse was encountered
Type StatementType
TableName string // only populated for Types relating to Tables
FromFile *TokenizedSQLFile
}
Statement represents a logical instruction in a file, consisting of either an SQL statement, a command (e.g. "USE some_database"), or whitespace and/or comments between two separate statements or commands.
func (*Statement) Location ¶
Location returns the file, line number, and character number where the statement was obtained from
func (*Statement) Remove ¶
func (stmt *Statement) Remove()
Remove removes the statement from the list of statements in stmt.FromFile. It does not rewrite the file though.
func (*Statement) SplitTextBody ¶
SplitTextBody returns Text with its trailing semicolon and whitespace (if any) separated out into a separate string.
type StatementType ¶
type StatementType int
StatementType indicates the type of a SQL statement found in a SQLFile. Parsing of types is very rudimentary, which can be advantageous for linting purposes. Otherwise, SQL errors or typos would prevent type detection.
const ( StatementTypeUnknown StatementType = iota StatementTypeNoop // entirely whitespace and/or comments StatementTypeUse StatementTypeCreateTable StatementTypeAlterTable )
Constants enumerating different types of statements
type TokenizedSQLFile ¶
TokenizedSQLFile represents a SQLFile that has been tokenized into statements successfully.
func NewTokenizedSQLFile ¶
func NewTokenizedSQLFile(sf SQLFile, statements []*Statement) *TokenizedSQLFile
NewTokenizedSQLFile creates a TokenizedSQLFile whose statements have a FromFile pointer linking back to the TokenizedSQLFile. This permits easy mutation of the statements and rewriting of the file.
func (*TokenizedSQLFile) Rewrite ¶
func (tsf *TokenizedSQLFile) Rewrite() (int, error)
Rewrite rewrites the SQLFile with the current statements, returning the number of bytes written. If the file's statements now only consist of noop (comments and whitespace) statements, the file will be deleted instead, and a length of 0 will be returned.