Documentation ¶
Overview ¶
* * desc : 参数校验函数 * author : 畅雨 * date : 2016.12.13 * desc : * history :
* * func : 查询sql结果缓存处理单元 * author : 畅雨 * date : 2016.11.25 * desc : 缓存查询的结果 * history :
- 2106.11.30 -优化缓存的存储
* * func : sql参数值的服务端来源定义 * author : 畅雨 * date : 2016.12.17 * desc : 可以将常量,变量,函数的值提供给sql参数的服务端默认值,通过reg函数注册到Context(MAP)中,在SQL的参数中通过名字进行调用得到值作为sql参数的值 * history :
*
- func : 动态SQL执行引擎
- author : 畅雨参数校验函数
- date : 2016.06.13
- desc : 关联关系全部通Id进行关联
- history : -2016.11.20 将执行sql的execMap修改该可以执行多个配置的cmd,采用相同的参数
*
- desc : 请求处理handle
- author:畅雨
- date: 2016.10.27
- history: 2016.10.17:优化 select与pagingselect返回结果,当数据为空时返回[]
*
功能:辅助函数
* * desc : 管理动态SQL,根据配置文件目录从配置文件加载到内存中 * author : 畅雨 * date : 2016.12.13 * desc : * history:
动态SQL路由注册 特别说明:将router定义代码放到 sysrouter.go中 功能:动态SQL执行函数供其他包调用单元 日期: 更新:2016.10.18 增加 PagingSelectMapToMap func 功能:监控配置目录下的文件变化自动载入(修改,删除--OK) 作者:畅雨 日期:2016.06.01 已知问题: 1) 文件改名检测到但无法获知改名后文件故未更新----->可以用ReloadAll重新载入即可 更新记录:
Index ¶
- Constants
- func BacthExecMap(modelId, sqlId string, sp []map[string]interface{}) error
- func BacthMultiExecMap(modelId, sqlId string, mp map[string][]map[string]interface{}) error
- func CheckRequired(str string) bool
- func ClearCache()
- func DirectSQL() faygo.HandlerFunc
- func DirectSQLReloadAll() faygo.HandlerFunc
- func DirectSQLReloadModel() faygo.HandlerFunc
- func ExecMap(modelId, sqlId string, mp map[string]interface{}) (sql.Result, error)
- func ExecStruct(modelId, sqlId string, st interface{}) (sql.Result, error)
- func GetCache(key string, suffix string) (ok bool, result []byte)
- func IsEmail(str string) bool
- func IsFloat(str interface{}) bool
- func IsInt(str interface{}) bool
- func IsVaildDate(str string) bool
- func IsVaildDatetime(str string) bool
- func IsVaildLength(str string, min, max int) bool
- func IsVaildValue(value, min, max float64) bool
- func JSONString(v interface{}, Indent bool) (string, error)
- func Map2Struct(mp map[string]interface{}, st interface{}) error
- func MultiSelectMapToMap(modelId, sqlId string, mp map[string]interface{}) (map[string][]map[string]interface{}, error)
- func MultiSelectMapToRows(modelId, sqlId string, mp map[string]interface{}) (map[string]*core.Rows, error)
- func RegAny(name string, fn interface{}) (err error)
- func ReloadAll()
- func ReloadModel(msqlfile string) error
- func RemoveCache(key string)
- func SelectMapToMap(modelId, sqlId string, mp map[string]interface{}) ([]map[string]interface{}, error)
- func SelectMapToRows(modelId, sqlId string, mp map[string]interface{}) (*core.Rows, error)
- func SelectMapToStruct(modelId, sqlId string, mp map[string]interface{}, st interface{}) (*[]interface{}, error)
- func SelectMapToStructPro(modelId, sqlId string, mp map[string]interface{}, dest interface{}) error
- func SetCache(key string, suffix string, value []byte, timeout int)
- func Struct2Map(st interface{}) map[string]interface{}
- type Execresult
- type MemoPool
- type PagingSelectResult
- type TCmd
- type TDefaultType
- type TModel
- type TModels
- type TParaType
- type TSql
- type TSqlParameter
- type TSqltype
Constants ¶
const ( Int string = "^(?:[-+]?(?:0|[1-9][0-9]*))$" Float string = "^(?:[-+]?(?:[0-9]+))?(?:\\.[0-9]*)?(?:[eE][\\+\\-]?(?:[0-9]+))?$" Email string = "" /* 1212-byte string literal not displayed */ )
类型判断正则表达式定义
const MSCONFIGFILE = "./config/directsql.ini"
配置文件配置参数
Variables ¶
This section is empty.
Functions ¶
func BacthExecMap ¶
批量执行 UPDATE、INSERT、DELETE、mp 是MAP类型命名参数
func BacthMultiExecMap ¶
批量执行 BacthComplex、mp 是MAP类型命名参数,事务中依次执行
func ExecStruct ¶
执行EXEC (UPDATE、DELETE、INSERT),SQL参数是struct 返回结果 sql.Result
func MultiSelectMapToMap ¶
func MultiSelectMapToMap(modelId, sqlId string, mp map[string]interface{}) (map[string][]map[string]interface{}, error)
多個查询 返回 map[string][]map[string]interface{}
func MultiSelectMapToRows ¶
func MultiSelectMapToRows(modelId, sqlId string, mp map[string]interface{}) (map[string]*core.Rows, error)
执行返回多個結果集的多個查询根据modelId,sqlId ,SQLmp:map[string]interface{}命名参数 返回结果 map[string]*Rows
func SelectMapToMap ¶
func SelectMapToMap(modelId, sqlId string, mp map[string]interface{}) ([]map[string]interface{}, error)
查询 根据modelId,sqlId ,SQL参数 map 返回 []map[string]interface{}
func SelectMapToRows ¶
查询 根据modelId,sqlId ,mp:map[string]interface{}命名参数,返回*core.Rows
func SelectMapToStruct ¶
func SelectMapToStruct(modelId, sqlId string, mp map[string]interface{}, st interface{}) (*[]interface{}, error)
查询 根据modelId,sqlId ,SQL参数是map, 返回 []struct 目前使用比较繁琐:st --是结构体的一个空实例,返回的是 改结构体的实例的slice,再使用返还结果时还的需要转换下类型。
func SelectMapToStructPro ¶
查询 根据modelId,sqlId ,SQL参数是map,dest 是待填充的返回结果 []*Struct ---未完成
Types ¶
type Execresult ¶
type Execresult struct { LastInsertId int64 `json:"lastinsertdd"` RowsAffected int64 `json:"rowsaffected"` Info string `json:"info"` }
execMap的返回结果定义
type PagingSelectResult ¶
type PagingSelectResult struct { Total int `json:"total"` Data []map[string]interface{} `json:"data"` }
分頁查詢的返回結果
func PagingSelectMapToMap ¶
func PagingSelectMapToMap(modelId, sqlId string, mp map[string]interface{}) (*PagingSelectResult, error)
执行分页查询SQL mp 是MAP类型命名参数 返回结果 int,[]map[string][]interface{}
type TCmd ¶
type TCmd struct { XMLName xml.Name `xml:"cmd"` Pin string `xml:"in,attr"` //输入参数标示 Rout string `xml:"out,attr"` //输出结果标示 Sql string `xml:",chardata"` //SQL Parameters []*TSqlParameter `xml:"parameters>parameter"` }
TCmd <Select/>等节点的下级节点<sql />对应结构
type TDefaultType ¶
type TDefaultType int
---------------------------------------------------------------------------------------------------- 默认值类型:uuid/nowdate/now/nowunix
const ( DT_UNDEFINED TDefaultType = iota //0=未定义,不处理默认值 DT_UUID //1=uuid DT_NOWDATE //2=当前日期 now date DT_NOWDATETIME //3=当前日期时间 now datetime DT_NOW_UNIX //4=当前时间的unix值 int64 now date DT_CUSTOM //5=自定义,采用注册自定义变量实现 )
type TModel ¶
type TModel struct { Id string //root起用映射、不带扩展名的文件名 DB *core.DB //本模块的db引擎 *xorm.Engine.DB() Sqls map[string]*TSql //sqlentity key=sqlentity.id }
sqlmodel 一个配置文件的SQLModel对应的结构
type TModels ¶
type TModels struct {
// contains filtered or unexported fields
}
全部业务SQL路由表,不根据目录分层次,直接放在map sqlmodels中,key=带路径不带扩展名的文件名
type TSql ¶
type TSql struct { XMLName xml.Name `xml:"sql"` Id string `xml:"id,attr"` //sqlid Sqltypestr string `xml:"type,attr"` Sqltype TSqltype `xml:"-"` //SQL类型 Idfield string `xml:"idfield,attr"` //SQlType为6=嵌套jsoin树时的ID字段 Pidfield string `xml:"pidfield,attr"` //SQlType为6=嵌套jsoin树时的ParentID字段 Cmds []*TCmd `xml:"cmd"` // sqlcmd(sqltype为分页查询时的计数SQL放第一个,结果SQL放第二个) Cached bool `xml:"cached,attr"` //是否启用查询数据缓存功能 Cachetime int `xml:"cachetime,attr"` //默认缓存的时间,单位为分钟,-1为一直有效,-2为一月,-3为一周 -4为一天,单位为分钟 }
sql <Select/>等节点对应的结构
type TSqlParameter ¶
type TSqlParameter struct { Name string `xml:"name,attr"` //参数名称必须与cmd中的对应 Paratypestr string `xml:"type,attr"` //string/number/email/date/datetime/time -不定义则不需要验证 Paratype TParaType `-` //数值类型 Required bool `xml:"required,attr"` //0=不是必须的 1=必须的不能为空 Minlen int `xml:"minlen,attr"` //最小长度 Maxlen int `xml:"maxlen,attr"` //最大长度 MinValue float64 `xml:"minvalue,attr"` //最小值 MaxValue float64 `xml:"maxvalue,attr"` //最大值 Defaultstr string `xml:"default,attr"` // 默认值 undefined/uuid/userid/usercode/username/rootgroupid/rootgroupname/groupid/groupname/nowdate/nowtime Default TDefaultType `-` //数值类型 Return bool `xml:"return,attr"` //服务端生成的默认值是否返回到客户端: 0(false)=默认,不返回 1(true)=返回到客户端 }
TSqlParameter 参数校验定义
type TSqltype ¶
type TSqltype int
TSql 类型
const ( ST_SELECT TSqltype = iota //0 普通查询 ---OK! ST_PAGINGSELECT //1 分页查询 ---OK! ST_NESTEDSELECT //2 嵌套jsoin树---------未实现 ST_MULTISELECT //3 多结果集查询---OK! ST_EXEC //4 执行SQL,可以一个事务内批量执行多个cmd ST_BATCHEXEC //5 根据传入参数在一个事务内多次执行SQL ST_BATCHMULTIEXEC //6 批量执行复合SQL(多数据集批量插入、更新、删除)---OK! ST_IMPORT //7 导入数据的SQL:通过xlsx导入数据配置的SQL ST_EXPORT //8 导出数据的SQL:导出excel格式文件数据 ST_REPORT //9 报表用的SQL:通过xlsx模板创建报表的SQL )