2016-12-16 10:37:42 +00:00
package main
2017-05-07 08:31:41 +00:00
2017-06-05 11:57:27 +00:00
import (
"log"
"fmt"
"bytes"
"strings"
"strconv"
//"regexp"
"reflect"
"path/filepath"
"io/ioutil"
"text/template/parse"
)
2016-12-16 10:37:42 +00:00
2017-01-01 15:45:43 +00:00
var ctemplates [ ] string
var tmpl_ptr_map map [ string ] interface { } = make ( map [ string ] interface { } )
2017-02-11 14:51:16 +00:00
var text_overlap_list map [ string ] int
func init ( ) {
text_overlap_list = make ( map [ string ] int )
}
2017-01-01 15:45:43 +00:00
2016-12-16 10:37:42 +00:00
type VarItem struct
{
Name string
Destination string
Type string
}
type VarItemReflect struct
{
Name string
Destination string
Value reflect . Value
}
type CTemplateSet struct
{
tlist map [ string ] * parse . Tree
dir string
funcMap map [ string ] interface { }
importMap map [ string ] string
2017-01-17 07:55:46 +00:00
Fragments map [ string ] int
FragmentCursor map [ string ] int
FragOut string
2016-12-16 10:37:42 +00:00
varList map [ string ] VarItem
localVars map [ string ] map [ string ] VarItemReflect
2016-12-17 03:39:53 +00:00
stats map [ string ] int
pVarList string
pVarPosition int
2016-12-18 12:56:06 +00:00
previousNode parse . NodeType
currentNode parse . NodeType
nextNode parse . NodeType
2016-12-16 10:37:42 +00:00
//tempVars map[string]string
doImports bool
expectsInt interface { }
}
func ( c * CTemplateSet ) compile_template ( name string , dir string , expects string , expectsInt interface { } , varList map [ string ] VarItem ) ( out string ) {
c . dir = dir
c . doImports = true
2017-04-12 10:10:36 +00:00
c . funcMap = map [ string ] interface { } {
"and" : "&&" ,
"not" : "!" ,
"or" : "||" ,
"eq" : true ,
"ge" : true ,
"gt" : true ,
"le" : true ,
"lt" : true ,
"ne" : true ,
"add" : true ,
"subtract" : true ,
"multiply" : true ,
"divide" : true ,
}
2017-06-16 10:41:30 +00:00
2017-04-12 10:10:36 +00:00
c . importMap = map [ string ] string {
"io" : "io" ,
"strconv" : "strconv" ,
}
2016-12-16 10:37:42 +00:00
c . varList = varList
2016-12-17 03:39:53 +00:00
//c.pVarList = ""
//c.pVarPosition = 0
c . stats = make ( map [ string ] int )
2016-12-16 10:37:42 +00:00
c . expectsInt = expectsInt
holdreflect := reflect . ValueOf ( expectsInt )
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
res , err := ioutil . ReadFile ( dir + name )
if err != nil {
log . Fatal ( err )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
content := string ( res )
2017-05-07 08:31:41 +00:00
if minify_templates {
2017-02-11 14:51:16 +00:00
content = minify ( content )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
tree := parse . New ( name , c . funcMap )
var treeSet map [ string ] * parse . Tree = make ( map [ string ] * parse . Tree )
tree , err = tree . Parse ( content , "{{" , "}}" , treeSet , c . funcMap )
if err != nil {
log . Fatal ( err )
}
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( name )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
out = ""
fname := strings . TrimSuffix ( name , filepath . Ext ( name ) )
c . tlist = make ( map [ string ] * parse . Tree )
c . tlist [ fname ] = tree
varholder := "tmpl_" + fname + "_vars"
2017-06-16 10:41:30 +00:00
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( c . tlist )
}
c . localVars = make ( map [ string ] map [ string ] VarItemReflect )
c . localVars [ fname ] = make ( map [ string ] VarItemReflect )
c . localVars [ fname ] [ "." ] = VarItemReflect { "." , varholder , holdreflect }
2017-01-17 07:55:46 +00:00
if c . Fragments == nil {
c . Fragments = make ( map [ string ] int )
}
c . FragmentCursor = make ( map [ string ] int )
c . FragmentCursor [ fname ] = 0
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
subtree := c . tlist [ fname ]
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( subtree . Root )
}
2017-06-16 10:41:30 +00:00
2016-12-18 12:56:06 +00:00
treeLength := len ( subtree . Root . Nodes )
for index , node := range subtree . Root . Nodes {
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( "Node: " + node . String ( ) )
}
2017-06-16 10:41:30 +00:00
2016-12-18 12:56:06 +00:00
c . previousNode = c . currentNode
c . currentNode = node . Type ( )
if treeLength != ( index + 1 ) {
c . nextNode = subtree . Root . Nodes [ index + 1 ] . Type ( )
}
2016-12-16 10:37:42 +00:00
out += c . compile_switch ( varholder , holdreflect , fname , node )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
var importList string
if c . doImports {
for _ , item := range c . importMap {
importList += "import \"" + item + "\"\n"
}
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
var varString string
for _ , varItem := range c . varList {
varString += "var " + varItem . Name + " " + varItem . Type + " = " + varItem . Destination + "\n"
}
2017-06-16 10:41:30 +00:00
fout := "// Code generated by Gosora. More below:\n/* This file was automatically generated by the software. Please don't edit it as your changes may be overwritten at any moment. */\n"
fout += "// +build !no_templategen\npackage main\n" + importList + c . pVarList + "\n"
2017-01-01 15:45:43 +00:00
fout += "func init() {\n\ttemplate_" + fname + "_handle = template_" + fname + "\n\t//o_template_" + fname + "_handle = template_" + fname + "\n\tctemplates = append(ctemplates,\"" + fname + "\")\n\ttmpl_ptr_map[\"" + fname + "\"] = &template_" + fname + "_handle\n\ttmpl_ptr_map[\"o_" + fname + "\"] = template_" + fname + "\n}\n\n"
fout += "func template_" + fname + "(tmpl_" + fname + "_vars " + expects + ", w io.Writer) {\n" + varString + out + "}\n"
2017-06-16 10:41:30 +00:00
2017-01-01 15:45:43 +00:00
fout = strings . Replace ( fout , ` ) )
2016-12-17 03:39:53 +00:00
w . Write ( [ ] byte ( ` , " + " , - 1 )
2017-01-01 15:45:43 +00:00
fout = strings . Replace ( fout , "` + `" , "" , - 1 )
2017-01-17 07:55:46 +00:00
//spstr := "`([:space:]*)`"
//whitespace_writes := regexp.MustCompile(`(?s)w.Write\(\[\]byte\(`+spstr+`\)\)`)
//fout = whitespace_writes.ReplaceAllString(fout,"")
2017-06-16 10:41:30 +00:00
Added the Social Groups plugin. This is still under construction.
Made a few improvements to the ForumStore, including bringing it's API closer in line with the other datastores, adding stubs for future subforum functionality, and improving efficiency in a few places.
The auth interface now handles all the authentication stuff.
Renamed the debug config variable to debug_mode.
Added the PluginPerms API.
Internal Errors will now dump the stack trace in the console.
Added support for installable plugins.
Refactored the routing logic so that the router now handles the common PreRoute logic(exc. /static/)
Added the CreateTable method to the query generator. It might need some tweaking to better support other database systems.
Added the same CreateTable method to the query builder.
Began work on PostgreSQL support.
Added the string-string hook type
Added the pre_render hook type.
Added the ParentID and ParentType fields to forums.
Added the get_forum_url_prefix function.
Added a more generic build_slug function.
Added the get_topic_url_prefix function.
Added the override_perms and override_forum_perms functions for bulk setting and unsetting permissions.
Added more ExtData fields in a few structs and removed them on the Perms struct as the PluginPerms API supersedes them there.
Plugins can now see the router instance.
The plugin initialisation handlers can now throw errors.
Plugins are now initialised after all the forum's subsystems are.
Refactored the unit test logic. For instance, we now use the proper .Log method rather than fmt.Println in many cases.
Sorry, we'll have to break Github's generated file detection, as the build instructions aren't working, unless I put them at the top, and they're far, far more important than getting Github to recognise the generated code as generated code.
Fixed an issue with mysql.go's _init_database() overwriting the dbpassword variable. Not a huge issue, but it is a "gotcha" for those not expecting a ':' at the start.
Fixed an issue with forum creation where the forum permissions didn't get cached.
Fixed a bug in plugin_bbcode where negative numbers in rand would crash Gosora.
Made the outputs of plugin_markdown and plugin_bbcode more compliant with the tests.
Revamped the phrase system to make it easier for us to add language pack related features in the future.
Added the WidgetMenu widget type.
Revamped the theme again. I'm experimenting to see which approach I like most.
- Excuse the little W3C rage. Some things about CSS drive me crazy :p
Tests:
Added 22 bbcode_full_parse tests.
Added 19 bbcode_regex_parse tests.
Added 27 markdown_parse tests.
Added four UserStore tests. More to come when the test database functionality is added.
Added 18 name_to_slug tests.
Hooks:
Added the pre_render hook.
Added the pre_render_forum_list hook.
Added the pre_render_view_forum hook.
Added the pre_render_topic_list hook.
Added the pre_render_view_topic hook.
Added the pre_render_profile hook.
Added the pre_render_custom_page hook.
Added the pre_render_overview hook.
Added the pre_render_create_topic hook.
Added the pre_render_account_own_edit_critical hook.
Added the pre_render_account_own_edit_avatar hook.
Added the pre_render_account_own_edit_username hook.
Added the pre_render_account_own_edit_email hook.
Added the pre_render_login hook.
Added the pre_render_register hook.
Added the pre_render_ban hook.
Added the pre_render_panel_dashboard hook.
Added the pre_render_panel_forums hook.
Added the pre_render_panel_delete_forum hook.
Added the pre_render_panel_edit_forum hook.
Added the pre_render_panel_settings hook.
Added the pre_render_panel_setting hook.
Added the pre_render_panel_plugins hook.
Added the pre_render_panel_users hook.
Added the pre_render_panel_edit_user hook.
Added the pre_render_panel_groups hook.
Added the pre_render_panel_edit_group hook.
Added the pre_render_panel_edit_group_perms hook.
Added the pre_render_panel_themes hook.
Added the pre_render_panel_mod_log hook.
Added the pre_render_error hook.
Added the pre_render_security_error hook.
Added the create_group_preappend hook.
Added the intercept_build_widgets hook.
Added the simple_forum_check_pre_perms hook.
Added the forum_check_pre_perms hook.
2017-07-09 12:06:04 +00:00
if debug_mode {
2017-05-07 08:31:41 +00:00
for index , count := range c . stats {
fmt . Println ( index + ": " + strconv . Itoa ( count ) )
}
fmt . Println ( " " )
2016-12-17 03:39:53 +00:00
}
2017-06-16 10:41:30 +00:00
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( "Output!" )
2017-01-01 15:45:43 +00:00
fmt . Println ( fout )
2016-12-16 10:37:42 +00:00
}
2017-01-01 15:45:43 +00:00
return fout
2016-12-16 10:37:42 +00:00
}
func ( c * CTemplateSet ) compile_switch ( varholder string , holdreflect reflect . Value , template_name string , node interface { } ) ( out string ) {
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "in compile_switch" )
}
2016-12-16 10:37:42 +00:00
switch node := node . ( type ) {
case * parse . ActionNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( "Action Node" )
}
if node . Pipe == nil {
break
}
for _ , cmd := range node . Pipe . Cmds {
out += c . compile_subswitch ( varholder , holdreflect , template_name , cmd )
}
return out
case * parse . IfNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "If Node:" )
fmt . Println ( "node.Pipe" , node . Pipe )
2016-12-16 10:37:42 +00:00
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
var expr string
for _ , cmd := range node . Pipe . Cmds {
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "If Node Bit:" , cmd )
fmt . Println ( "If Node Bit Type:" , reflect . ValueOf ( cmd ) . Type ( ) . Name ( ) )
2016-12-16 10:37:42 +00:00
}
expr += c . compile_varswitch ( varholder , holdreflect , template_name , cmd )
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "If Node Expression Step:" , c . compile_varswitch ( varholder , holdreflect , template_name , cmd ) )
}
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "If Node Expression:" , expr )
2016-12-16 10:37:42 +00:00
}
2017-06-16 10:41:30 +00:00
2016-12-18 12:56:06 +00:00
c . previousNode = c . currentNode
c . currentNode = parse . NodeList
c . nextNode = - 1
2016-12-16 10:37:42 +00:00
if node . ElseList == nil {
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Selected Branch 1" )
2016-12-16 10:37:42 +00:00
}
return "if " + expr + " {\n" + c . compile_switch ( varholder , holdreflect , template_name , node . List ) + "}\n"
} else {
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Selected Branch 2" )
2016-12-16 10:37:42 +00:00
}
return "if " + expr + " {\n" + c . compile_switch ( varholder , holdreflect , template_name , node . List ) + "} else {\n" + c . compile_switch ( varholder , holdreflect , template_name , node . ElseList ) + "}\n"
}
case * parse . ListNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( "List Node" )
}
for _ , subnode := range node . Nodes {
out += c . compile_switch ( varholder , holdreflect , template_name , subnode )
}
return out
case * parse . RangeNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( "Range Node!" )
fmt . Println ( node . Pipe )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
var outVal reflect . Value
for _ , cmd := range node . Pipe . Cmds {
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Range Bit:" , cmd )
2016-12-16 10:37:42 +00:00
}
out , outVal = c . compile_reflectswitch ( varholder , holdreflect , template_name , cmd )
}
2017-06-16 10:41:30 +00:00
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Returned:" , out )
2016-12-16 10:37:42 +00:00
fmt . Println ( "Range Kind Switch!" )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
switch outVal . Kind ( ) {
case reflect . Map :
var item reflect . Value
for _ , key := range outVal . MapKeys ( ) {
item = outVal . MapIndex ( key )
}
2017-06-16 10:41:30 +00:00
2016-12-21 02:30:32 +00:00
if node . ElseList != nil {
out = "if len(" + out + ") != 0 {\nfor _, item := range " + out + " {\n" + c . compile_switch ( "item" , item , template_name , node . List ) + "}\n} else {\n" + c . compile_switch ( "item" , item , template_name , node . ElseList ) + "}\n"
} else {
out = "if len(" + out + ") != 0 {\nfor _, item := range " + out + " {\n" + c . compile_switch ( "item" , item , template_name , node . List ) + "}\n}"
}
2016-12-18 12:56:06 +00:00
case reflect . Slice :
2017-06-19 08:06:54 +00:00
if outVal . Len ( ) == 0 {
panic ( "The sample data needs at-least one or more elements for the slices. We're looking into removing this requirement at some point!" )
}
2016-12-18 12:56:06 +00:00
item := outVal . Index ( 0 )
2016-12-16 10:37:42 +00:00
out = "if len(" + out + ") != 0 {\nfor _, item := range " + out + " {\n" + c . compile_switch ( "item" , item , template_name , node . List ) + "}\n}"
case reflect . Invalid :
return ""
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
if node . ElseList != nil {
out += " else {\n" + c . compile_switch ( varholder , holdreflect , template_name , node . ElseList ) + "}\n"
} else {
out += "\n"
}
return out
case * parse . TemplateNode :
return c . compile_subtemplate ( varholder , holdreflect , node )
case * parse . TextNode :
2016-12-18 12:56:06 +00:00
c . previousNode = c . currentNode
c . currentNode = node . Type ( )
c . nextNode = 0
2017-01-17 07:55:46 +00:00
tmpText := bytes . TrimSpace ( node . Text )
if len ( tmpText ) == 0 {
return ""
} else {
//return "w.Write([]byte(`" + string(node.Text) + "`))\n"
fragment_name := template_name + "_" + strconv . Itoa ( c . FragmentCursor [ template_name ] )
_ , ok := c . Fragments [ fragment_name ]
if ! ok {
c . Fragments [ fragment_name ] = len ( node . Text )
c . FragOut += "var " + fragment_name + " []byte = []byte(`" + string ( node . Text ) + "`)\n"
}
c . FragmentCursor [ template_name ] = c . FragmentCursor [ template_name ] + 1
return "w.Write(" + fragment_name + ")\n"
}
2016-12-16 10:37:42 +00:00
default :
panic ( "Unknown Node in main switch" )
}
return ""
}
func ( c * CTemplateSet ) compile_subswitch ( varholder string , holdreflect reflect . Value , template_name string , node * parse . CommandNode ) ( out string ) {
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "in compile_subswitch" )
}
2016-12-16 10:37:42 +00:00
firstWord := node . Args [ 0 ]
switch n := firstWord . ( type ) {
case * parse . FieldNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Field Node:" , n . Ident )
2016-12-16 10:37:42 +00:00
}
2017-06-16 10:41:30 +00:00
2017-06-19 08:06:54 +00:00
/* Use reflect to determine if the field is for a method, otherwise assume it's a variable. Variable declarations are coming soon! */
2016-12-16 10:37:42 +00:00
cur := holdreflect
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
var varbit string
if cur . Kind ( ) == reflect . Interface {
cur = cur . Elem ( )
varbit += ".(" + cur . Type ( ) . Name ( ) + ")"
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
for _ , id := range n . Ident {
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Data Kind:" , cur . Kind ( ) . String ( ) )
fmt . Println ( "Field Bit:" , id )
2016-12-16 10:37:42 +00:00
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
cur = cur . FieldByName ( id )
if cur . Kind ( ) == reflect . Interface {
cur = cur . Elem ( )
2016-12-17 03:39:53 +00:00
/ * if cur . Kind ( ) == reflect . String && cur . Type ( ) . Name ( ) != "string" {
varbit = "string(" + varbit + "." + id + ")" * /
//if cur.Kind() == reflect.String && cur.Type().Name() != "string" {
2016-12-18 12:56:06 +00:00
if cur . Type ( ) . PkgPath ( ) != "main" && cur . Type ( ) . PkgPath ( ) != "" {
2016-12-17 03:39:53 +00:00
c . importMap [ "html/template" ] = "html/template"
varbit += "." + id + ".(" + strings . TrimPrefix ( cur . Type ( ) . PkgPath ( ) , "html/" ) + "." + cur . Type ( ) . Name ( ) + ")"
2016-12-16 10:37:42 +00:00
} else {
varbit += "." + id + ".(" + cur . Type ( ) . Name ( ) + ")"
}
} else {
varbit += "." + id
}
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( "End Cycle" )
}
}
out = c . compile_varsub ( varholder + varbit , cur )
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
for _ , varItem := range c . varList {
if strings . HasPrefix ( out , varItem . Destination ) {
out = strings . Replace ( out , varItem . Destination , varItem . Name , 1 )
}
}
return out
case * parse . DotNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Dot Node:" , node . String ( ) )
2016-12-16 10:37:42 +00:00
}
return c . compile_varsub ( varholder , holdreflect )
case * parse . NilNode :
panic ( "Nil is not a command x.x" )
case * parse . VariableNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Variable Node:" , n . String ( ) )
2016-12-16 10:37:42 +00:00
fmt . Println ( n . Ident )
}
2017-01-12 02:55:08 +00:00
varname , reflectVal := c . compile_if_varsub ( n . String ( ) , varholder , template_name , holdreflect )
return c . compile_varsub ( varname , reflectVal )
2016-12-16 10:37:42 +00:00
case * parse . StringNode :
return n . Quoted
2017-01-21 18:16:27 +00:00
case * parse . IdentifierNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Identifier Node:" , node )
fmt . Println ( "Identifier Node Args:" , node . Args )
2017-01-21 18:16:27 +00:00
}
return c . compile_varsub ( c . compile_identswitch ( varholder , holdreflect , template_name , node ) )
2016-12-16 10:37:42 +00:00
default :
2017-06-05 11:57:27 +00:00
fmt . Println ( "Unknown Kind:" , reflect . ValueOf ( firstWord ) . Elem ( ) . Kind ( ) )
fmt . Println ( "Unknown Type:" , reflect . ValueOf ( firstWord ) . Elem ( ) . Type ( ) . Name ( ) )
2016-12-16 10:37:42 +00:00
panic ( "I don't know what node this is" )
}
return ""
}
func ( c * CTemplateSet ) compile_varswitch ( varholder string , holdreflect reflect . Value , template_name string , node * parse . CommandNode ) ( out string ) {
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "in compile_varswitch" )
}
2016-12-16 10:37:42 +00:00
firstWord := node . Args [ 0 ]
switch n := firstWord . ( type ) {
case * parse . FieldNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Field Node:" , n . Ident )
2016-12-16 10:37:42 +00:00
for _ , id := range n . Ident {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Field Bit:" , id )
2016-12-16 10:37:42 +00:00
}
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
/* Use reflect to determine if the field is for a method, otherwise assume it's a variable. Coming Soon. */
return c . compile_boolsub ( n . String ( ) , varholder , template_name , holdreflect )
case * parse . ChainNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Chain Node:" , n . Node )
fmt . Println ( "Chain Node Args:" , node . Args )
2016-12-16 10:37:42 +00:00
}
break
case * parse . IdentifierNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Identifier Node:" , node )
fmt . Println ( "Identifier Node Args:" , node . Args )
2016-12-16 10:37:42 +00:00
}
2017-01-21 18:16:27 +00:00
return c . compile_identswitch_n ( varholder , holdreflect , template_name , node )
2016-12-16 10:37:42 +00:00
case * parse . DotNode :
return varholder
case * parse . VariableNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Variable Node:" , n . String ( ) )
fmt . Println ( "Variable Node Identifier:" , n . Ident )
2016-12-16 10:37:42 +00:00
}
out , _ = c . compile_if_varsub ( n . String ( ) , varholder , template_name , holdreflect )
return out
case * parse . NilNode :
panic ( "Nil is not a command x.x" )
case * parse . PipeNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( "Pipe Node!" )
fmt . Println ( n )
2017-06-05 11:57:27 +00:00
fmt . Println ( "Args:" , node . Args )
2016-12-16 10:37:42 +00:00
}
2017-01-21 18:16:27 +00:00
out += c . compile_identswitch_n ( varholder , holdreflect , template_name , node )
2017-06-16 10:41:30 +00:00
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Out:" , out )
2016-12-16 10:37:42 +00:00
}
return out
default :
2017-06-05 11:57:27 +00:00
fmt . Println ( "Unknown Kind:" , reflect . ValueOf ( firstWord ) . Elem ( ) . Kind ( ) )
fmt . Println ( "Unknown Type:" , reflect . ValueOf ( firstWord ) . Elem ( ) . Type ( ) . Name ( ) )
2016-12-16 10:37:42 +00:00
panic ( "I don't know what node this is! Grr..." )
}
return ""
}
2017-01-21 18:16:27 +00:00
func ( c * CTemplateSet ) compile_identswitch_n ( varholder string , holdreflect reflect . Value , template_name string , node * parse . CommandNode ) ( out string ) {
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "in compile_identswitch_n" )
}
2017-01-21 18:16:27 +00:00
out , _ = c . compile_identswitch ( varholder , holdreflect , template_name , node )
return out
}
func ( c * CTemplateSet ) compile_identswitch ( varholder string , holdreflect reflect . Value , template_name string , node * parse . CommandNode ) ( out string , val reflect . Value ) {
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "in compile_identswitch" )
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
//var outbuf map[int]string
2016-12-16 10:37:42 +00:00
ArgLoop :
2017-06-05 11:57:27 +00:00
for pos := 0 ; pos < len ( node . Args ) ; pos ++ {
id := node . Args [ pos ]
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "pos:" , pos )
fmt . Println ( "ID:" , id )
2016-12-16 10:37:42 +00:00
}
switch id . String ( ) {
case "not" :
out += "!"
case "or" :
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "Building or function" )
}
if pos == 0 {
fmt . Println ( "pos:" , pos )
panic ( "or is missing a left operand" )
return out , val
}
if len ( node . Args ) <= pos {
fmt . Println ( "post pos:" , pos )
fmt . Println ( "len(node.Args):" , len ( node . Args ) )
panic ( "or is missing a right operand" )
return out , val
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
left := c . compile_boolsub ( node . Args [ pos - 1 ] . String ( ) , varholder , template_name , holdreflect )
_ , funcExists := c . funcMap [ node . Args [ pos + 1 ] . String ( ) ]
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
var right string
if ! funcExists {
right = c . compile_boolsub ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect )
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
out += left + " || " + right
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "Left operand:" , node . Args [ pos - 1 ] )
fmt . Println ( "Right operand:" , node . Args [ pos + 1 ] )
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
if ! funcExists {
pos ++
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "pos:" , pos )
fmt . Println ( "len(node.Args):" , len ( node . Args ) )
}
2016-12-16 10:37:42 +00:00
case "and" :
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "Building and function" )
}
if pos == 0 {
fmt . Println ( "pos:" , pos )
panic ( "and is missing a left operand" )
return out , val
}
if len ( node . Args ) <= pos {
fmt . Println ( "post pos:" , pos )
fmt . Println ( "len(node.Args):" , len ( node . Args ) )
panic ( "and is missing a right operand" )
return out , val
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
left := c . compile_boolsub ( node . Args [ pos - 1 ] . String ( ) , varholder , template_name , holdreflect )
_ , funcExists := c . funcMap [ node . Args [ pos + 1 ] . String ( ) ]
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
var right string
if ! funcExists {
right = c . compile_boolsub ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect )
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
out += left + " && " + right
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "Left operand:" , node . Args [ pos - 1 ] )
fmt . Println ( "Right operand:" , node . Args [ pos + 1 ] )
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
if ! funcExists {
pos ++
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "pos:" , pos )
fmt . Println ( "len(node.Args):" , len ( node . Args ) )
}
2016-12-16 10:37:42 +00:00
case "le" :
out += c . compile_if_varsub_n ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect ) + " <= " + c . compile_if_varsub_n ( node . Args [ pos + 2 ] . String ( ) , varholder , template_name , holdreflect )
2017-05-07 08:31:41 +00:00
if super_debug {
2017-01-21 18:16:27 +00:00
fmt . Println ( node . Args [ pos + 1 ] )
fmt . Println ( node . Args [ pos + 2 ] )
}
2016-12-16 10:37:42 +00:00
break ArgLoop
2017-01-12 02:55:08 +00:00
case "lt" :
out += c . compile_if_varsub_n ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect ) + " < " + c . compile_if_varsub_n ( node . Args [ pos + 2 ] . String ( ) , varholder , template_name , holdreflect )
2017-05-07 08:31:41 +00:00
if super_debug {
2017-01-21 18:16:27 +00:00
fmt . Println ( node . Args [ pos + 1 ] )
fmt . Println ( node . Args [ pos + 2 ] )
}
2017-01-12 02:55:08 +00:00
break ArgLoop
case "gt" :
out += c . compile_if_varsub_n ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect ) + " > " + c . compile_if_varsub_n ( node . Args [ pos + 2 ] . String ( ) , varholder , template_name , holdreflect )
2017-05-07 08:31:41 +00:00
if super_debug {
2017-01-21 18:16:27 +00:00
fmt . Println ( node . Args [ pos + 1 ] )
fmt . Println ( node . Args [ pos + 2 ] )
}
2017-01-12 02:55:08 +00:00
break ArgLoop
case "ge" :
out += c . compile_if_varsub_n ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect ) + " >= " + c . compile_if_varsub_n ( node . Args [ pos + 2 ] . String ( ) , varholder , template_name , holdreflect )
2017-05-07 08:31:41 +00:00
if super_debug {
2017-01-21 18:16:27 +00:00
fmt . Println ( node . Args [ pos + 1 ] )
fmt . Println ( node . Args [ pos + 2 ] )
}
2017-01-12 02:55:08 +00:00
break ArgLoop
case "eq" :
out += c . compile_if_varsub_n ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect ) + " == " + c . compile_if_varsub_n ( node . Args [ pos + 2 ] . String ( ) , varholder , template_name , holdreflect )
2017-05-07 08:31:41 +00:00
if super_debug {
2017-01-21 18:16:27 +00:00
fmt . Println ( node . Args [ pos + 1 ] )
fmt . Println ( node . Args [ pos + 2 ] )
}
2017-01-12 02:55:08 +00:00
break ArgLoop
case "ne" :
out += c . compile_if_varsub_n ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect ) + " != " + c . compile_if_varsub_n ( node . Args [ pos + 2 ] . String ( ) , varholder , template_name , holdreflect )
2017-05-07 08:31:41 +00:00
if super_debug {
2017-01-21 18:16:27 +00:00
fmt . Println ( node . Args [ pos + 1 ] )
fmt . Println ( node . Args [ pos + 2 ] )
}
break ArgLoop
case "add" :
param1 , val2 := c . compile_if_varsub ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect )
param2 , val3 := c . compile_if_varsub ( node . Args [ pos + 2 ] . String ( ) , varholder , template_name , holdreflect )
2017-06-16 10:41:30 +00:00
2017-01-21 18:16:27 +00:00
if val2 . IsValid ( ) {
val = val2
} else if val3 . IsValid ( ) {
val = val3
} else {
numSample := 1
val = reflect . ValueOf ( numSample )
}
2017-06-16 10:41:30 +00:00
2017-01-21 18:16:27 +00:00
out += param1 + " + " + param2
2017-05-07 08:31:41 +00:00
if super_debug {
2017-01-21 18:16:27 +00:00
fmt . Println ( "add" )
fmt . Println ( node . Args [ pos + 1 ] )
fmt . Println ( node . Args [ pos + 2 ] )
}
break ArgLoop
case "subtract" :
param1 , val2 := c . compile_if_varsub ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect )
param2 , val3 := c . compile_if_varsub ( node . Args [ pos + 2 ] . String ( ) , varholder , template_name , holdreflect )
2017-06-16 10:41:30 +00:00
2017-01-21 18:16:27 +00:00
if val2 . IsValid ( ) {
val = val2
} else if val3 . IsValid ( ) {
val = val3
} else {
numSample := 1
val = reflect . ValueOf ( numSample )
}
2017-06-16 10:41:30 +00:00
2017-01-21 18:16:27 +00:00
out += param1 + " - " + param2
2017-05-07 08:31:41 +00:00
if super_debug {
2017-01-21 18:16:27 +00:00
fmt . Println ( "subtract" )
fmt . Println ( node . Args [ pos + 1 ] )
fmt . Println ( node . Args [ pos + 2 ] )
}
break ArgLoop
case "divide" :
param1 , val2 := c . compile_if_varsub ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect )
param2 , val3 := c . compile_if_varsub ( node . Args [ pos + 2 ] . String ( ) , varholder , template_name , holdreflect )
2017-06-16 10:41:30 +00:00
2017-01-21 18:16:27 +00:00
if val2 . IsValid ( ) {
val = val2
} else if val3 . IsValid ( ) {
val = val3
} else {
numSample := 1
val = reflect . ValueOf ( numSample )
}
2017-06-16 10:41:30 +00:00
2017-01-21 18:16:27 +00:00
out += param1 + " / " + param2
2017-05-07 08:31:41 +00:00
if super_debug {
2017-01-21 18:16:27 +00:00
fmt . Println ( "divide" )
fmt . Println ( node . Args [ pos + 1 ] )
fmt . Println ( node . Args [ pos + 2 ] )
}
break ArgLoop
case "multiply" :
param1 , val2 := c . compile_if_varsub ( node . Args [ pos + 1 ] . String ( ) , varholder , template_name , holdreflect )
param2 , val3 := c . compile_if_varsub ( node . Args [ pos + 2 ] . String ( ) , varholder , template_name , holdreflect )
2017-06-16 10:41:30 +00:00
2017-01-21 18:16:27 +00:00
if val2 . IsValid ( ) {
val = val2
} else if val3 . IsValid ( ) {
val = val3
} else {
numSample := 1
val = reflect . ValueOf ( numSample )
}
2017-06-16 10:41:30 +00:00
2017-01-21 18:16:27 +00:00
out += param1 + " * " + param2
2017-05-07 08:31:41 +00:00
if super_debug {
2017-01-21 18:16:27 +00:00
fmt . Println ( "multiply" )
fmt . Println ( node . Args [ pos + 1 ] )
fmt . Println ( node . Args [ pos + 2 ] )
}
2017-01-12 02:55:08 +00:00
break ArgLoop
2016-12-16 10:37:42 +00:00
default :
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( "Variable!" )
}
2017-06-05 11:57:27 +00:00
if len ( node . Args ) > ( pos + 1 ) {
next_node := node . Args [ pos + 1 ] . String ( )
if next_node == "or" || next_node == "and" {
continue
}
}
2016-12-16 10:37:42 +00:00
out += c . compile_if_varsub_n ( id . String ( ) , varholder , template_name , holdreflect )
}
}
2017-06-16 10:41:30 +00:00
2017-06-05 11:57:27 +00:00
//for _, outval := range outbuf {
// out += outval
//}
2017-01-21 18:16:27 +00:00
return out , val
2016-12-16 10:37:42 +00:00
}
func ( c * CTemplateSet ) compile_reflectswitch ( varholder string , holdreflect reflect . Value , template_name string , node * parse . CommandNode ) ( out string , outVal reflect . Value ) {
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "in compile_reflectswitch" )
}
2016-12-16 10:37:42 +00:00
firstWord := node . Args [ 0 ]
switch n := firstWord . ( type ) {
case * parse . FieldNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Field Node:" , n . Ident )
2016-12-16 10:37:42 +00:00
for _ , id := range n . Ident {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Field Bit:" , id )
2016-12-16 10:37:42 +00:00
}
}
/* Use reflect to determine if the field is for a method, otherwise assume it's a variable. Coming Soon. */
return c . compile_if_varsub ( n . String ( ) , varholder , template_name , holdreflect )
case * parse . ChainNode :
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( "Chain Node: " )
fmt . Println ( n . Node )
fmt . Println ( node . Args )
}
return "" , outVal
case * parse . DotNode :
return varholder , holdreflect
case * parse . NilNode :
panic ( "Nil is not a command x.x" )
default :
//panic("I don't know what node this is")
}
return "" , outVal
}
func ( c * CTemplateSet ) compile_if_varsub_n ( varname string , varholder string , template_name string , cur reflect . Value ) ( out string ) {
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "in compile_if_varsub_n" )
}
2016-12-16 10:37:42 +00:00
out , _ = c . compile_if_varsub ( varname , varholder , template_name , cur )
return out
}
func ( c * CTemplateSet ) compile_if_varsub ( varname string , varholder string , template_name string , cur reflect . Value ) ( out string , val reflect . Value ) {
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "in compile_if_varsub" )
}
2016-12-16 10:37:42 +00:00
if varname [ 0 ] != '.' && varname [ 0 ] != '$' {
return varname , cur
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
bits := strings . Split ( varname , "." )
if varname [ 0 ] == '$' {
var res VarItemReflect
if varname [ 1 ] == '.' {
res = c . localVars [ template_name ] [ "." ]
} else {
res = c . localVars [ template_name ] [ strings . TrimPrefix ( bits [ 0 ] , "$" ) ]
}
out += res . Destination
cur = res . Value
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
if cur . Kind ( ) == reflect . Interface {
cur = cur . Elem ( )
}
} else {
if cur . Kind ( ) == reflect . Interface {
cur = cur . Elem ( )
out += varholder + ".(" + cur . Type ( ) . Name ( ) + ")"
} else {
out += varholder
}
}
bits [ 0 ] = strings . TrimPrefix ( bits [ 0 ] , "$" )
2017-06-16 10:41:30 +00:00
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Cur Kind:" , cur . Kind ( ) )
fmt . Println ( "Cur Type:" , cur . Type ( ) . Name ( ) )
2016-12-16 10:37:42 +00:00
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
for _ , bit := range bits {
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( "Variable Field!" )
fmt . Println ( bit )
}
if bit == "" {
continue
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
cur = cur . FieldByName ( bit )
if cur . Kind ( ) == reflect . Interface {
cur = cur . Elem ( )
out += "." + bit + ".(" + cur . Type ( ) . Name ( ) + ")"
} else {
out += "." + bit
}
2017-06-16 10:41:30 +00:00
2017-06-19 08:06:54 +00:00
if ! cur . IsValid ( ) {
panic ( out + "^\n" + "Invalid value. Maybe, it doesn't exist?" )
}
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Data Kind:" , cur . Kind ( ) )
fmt . Println ( "Data Type:" , cur . Type ( ) . Name ( ) )
2016-12-16 10:37:42 +00:00
}
}
2017-06-16 10:41:30 +00:00
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Out Value:" , out )
fmt . Println ( "Out Kind:" , cur . Kind ( ) )
fmt . Println ( "Out Type:" , cur . Type ( ) . Name ( ) )
2017-01-21 18:16:27 +00:00
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
for _ , varItem := range c . varList {
if strings . HasPrefix ( out , varItem . Destination ) {
out = strings . Replace ( out , varItem . Destination , varItem . Name , 1 )
}
}
2017-06-16 10:41:30 +00:00
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Out Value:" , out )
fmt . Println ( "Out Kind:" , cur . Kind ( ) )
fmt . Println ( "Out Type:" , cur . Type ( ) . Name ( ) )
2017-01-21 18:16:27 +00:00
}
2017-06-16 10:41:30 +00:00
2016-12-17 03:39:53 +00:00
_ , ok := c . stats [ out ]
if ok {
c . stats [ out ] ++
} else {
c . stats [ out ] = 1
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
return out , cur
}
func ( c * CTemplateSet ) compile_boolsub ( varname string , varholder string , template_name string , val reflect . Value ) string {
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "in compile_boolsub" )
}
2016-12-16 10:37:42 +00:00
out , val := c . compile_if_varsub ( varname , varholder , template_name , val )
switch val . Kind ( ) {
2017-03-03 16:28:49 +00:00
case reflect . Int : out += " > 0"
case reflect . Bool : // Do nothing
case reflect . String : out += " != \"\""
case reflect . Int64 : out += " > 0"
2016-12-16 10:37:42 +00:00
default :
2017-06-05 11:57:27 +00:00
fmt . Println ( "Variable Name:" , varname )
fmt . Println ( "Variable Holder:" , varholder )
fmt . Println ( "Variable Kind:" , val . Kind ( ) )
2016-12-16 10:37:42 +00:00
panic ( "I don't know what this variable's type is o.o\n" )
}
return out
}
func ( c * CTemplateSet ) compile_varsub ( varname string , val reflect . Value ) string {
2017-06-05 11:57:27 +00:00
if super_debug {
fmt . Println ( "in compile_varsub" )
}
2016-12-16 10:37:42 +00:00
for _ , varItem := range c . varList {
if strings . HasPrefix ( varname , varItem . Destination ) {
varname = strings . Replace ( varname , varItem . Destination , varItem . Name , 1 )
}
}
2017-06-16 10:41:30 +00:00
2016-12-17 03:39:53 +00:00
_ , ok := c . stats [ varname ]
if ok {
c . stats [ varname ] ++
} else {
c . stats [ varname ] = 1
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
if val . Kind ( ) == reflect . Interface {
val = val . Elem ( )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
switch val . Kind ( ) {
case reflect . Int :
2016-12-17 03:39:53 +00:00
return "w.Write([]byte(strconv.Itoa(" + varname + ")))\n"
2016-12-16 10:37:42 +00:00
case reflect . Bool :
2016-12-17 03:39:53 +00:00
return "if " + varname + " {\nw.Write([]byte(\"true\"))} else {\nw.Write([]byte(\"false\"))\n}\n"
2016-12-16 10:37:42 +00:00
case reflect . String :
2016-12-17 03:39:53 +00:00
if val . Type ( ) . Name ( ) != "string" && ! strings . HasPrefix ( varname , "string(" ) {
return "w.Write([]byte(string(" + varname + ")))\n"
2016-12-16 10:37:42 +00:00
} else {
2016-12-17 03:39:53 +00:00
return "w.Write([]byte(" + varname + "))\n"
2016-12-16 10:37:42 +00:00
}
case reflect . Int64 :
2016-12-17 03:39:53 +00:00
return "w.Write([]byte(strconv.FormatInt(" + varname + ", 10)))"
2016-12-16 10:37:42 +00:00
default :
2017-06-25 09:56:39 +00:00
if ! val . IsValid ( ) {
panic ( varname + "^\n" + "Invalid value. Maybe, it doesn't exist?" )
}
2017-06-05 11:57:27 +00:00
fmt . Println ( "Unknown Variable Name:" , varname )
fmt . Println ( "Unknown Kind:" , val . Kind ( ) )
fmt . Println ( "Unknown Type:" , val . Type ( ) . Name ( ) )
2016-12-16 10:37:42 +00:00
panic ( "// I don't know what this variable's type is o.o\n" )
}
}
func ( c * CTemplateSet ) compile_subtemplate ( pvarholder string , pholdreflect reflect . Value , node * parse . TemplateNode ) ( out string ) {
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "in compile_subtemplate" )
2016-12-16 10:37:42 +00:00
fmt . Println ( "Template Node: " + node . Name )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
fname := strings . TrimSuffix ( node . Name , filepath . Ext ( node . Name ) )
varholder := "tmpl_" + fname + "_vars"
var holdreflect reflect . Value
if node . Pipe != nil {
for _ , cmd := range node . Pipe . Cmds {
firstWord := cmd . Args [ 0 ]
switch firstWord . ( type ) {
case * parse . DotNode :
varholder = pvarholder
holdreflect = pholdreflect
break
case * parse . NilNode :
panic ( "Nil is not a command x.x" )
default :
out = "var " + varholder + " := false\n"
out += c . compile_command ( cmd )
}
}
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
res , err := ioutil . ReadFile ( c . dir + node . Name )
if err != nil {
log . Fatal ( err )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
content := string ( res )
2017-05-07 08:31:41 +00:00
if minify_templates {
2017-02-11 14:51:16 +00:00
content = minify ( content )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
tree := parse . New ( node . Name , c . funcMap )
var treeSet map [ string ] * parse . Tree = make ( map [ string ] * parse . Tree )
tree , err = tree . Parse ( content , "{{" , "}}" , treeSet , c . funcMap )
if err != nil {
log . Fatal ( err )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
c . tlist [ fname ] = tree
subtree := c . tlist [ fname ]
2017-05-07 08:31:41 +00:00
if super_debug {
2016-12-16 10:37:42 +00:00
fmt . Println ( subtree . Root )
}
2017-06-16 10:41:30 +00:00
2016-12-16 10:37:42 +00:00
c . localVars [ fname ] = make ( map [ string ] VarItemReflect )
c . localVars [ fname ] [ "." ] = VarItemReflect { "." , varholder , holdreflect }
2017-01-17 07:55:46 +00:00
c . FragmentCursor [ fname ] = 0
2017-06-16 10:41:30 +00:00
2016-12-18 12:56:06 +00:00
treeLength := len ( subtree . Root . Nodes )
for index , node := range subtree . Root . Nodes {
2017-05-07 08:31:41 +00:00
if super_debug {
2017-06-05 11:57:27 +00:00
fmt . Println ( "Node:" , node . String ( ) )
2016-12-16 10:37:42 +00:00
}
2017-06-16 10:41:30 +00:00
2016-12-18 12:56:06 +00:00
c . previousNode = c . currentNode
c . currentNode = node . Type ( )
if treeLength != ( index + 1 ) {
c . nextNode = subtree . Root . Nodes [ index + 1 ] . Type ( )
}
2016-12-16 10:37:42 +00:00
out += c . compile_switch ( varholder , holdreflect , fname , node )
}
2017-06-16 10:41:30 +00:00
return out
2016-12-16 10:37:42 +00:00
}
func ( c * CTemplateSet ) compile_command ( * parse . CommandNode ) ( out string ) {
2017-02-15 10:49:30 +00:00
panic ( "Uh oh! Something went wrong!" )
2016-12-16 10:37:42 +00:00
return ""
2017-02-11 14:51:16 +00:00
}
func minify ( data string ) string {
data = strings . Replace ( data , "\t" , "" , - 1 )
data = strings . Replace ( data , "\v" , "" , - 1 )
data = strings . Replace ( data , "\n" , "" , - 1 )
data = strings . Replace ( data , "\r" , "" , - 1 )
data = strings . Replace ( data , " " , " " , - 1 )
return data
}