Skip to content

Instantly share code, notes, and snippets.

@maestrith
Created June 11, 2015 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maestrith/513fecdc4b838ab46699 to your computer and use it in GitHub Desktop.
Save maestrith/513fecdc4b838ab46699 to your computer and use it in GitHub Desktop.
Posted using AHK Studio
#SingleInstance,Force
changemixer("user.config","setting","name","COMPort_Audio","COM7")
updateatt("ipinfo.config","flan/server","host","192.168.1.60")
return
updateatt(file,node,attribute,newval){
myxml:=new xml("root",file)
node:=myxml.ssn("//" node "/@" attribute)
node.text:=newval
}
changemixer(file,node,attribute,name,newval){ ;this will change the value for the mixer
myxml:=new xml("root",file)
if(node:=myxml.ssn("//" node "[@" attribute "='" name "']")){
edit:=ssn(node,"value")
edit.text:=newval
}else{
node1:=myxml.add2(node,{name:"My Name",serializeAs:"String"},"",1)
myxml.under(node1,"value","",newval)
top:=myxml.ssn("//MMAVAutomation.My.MySettings")
child:=top.firstchild
top.insertbefore(node1,child)
}
myxml.Transform()
m(myxml[])
}
m(x*){
for a,b in x
list.=b "`n"
MsgBox,,AHK Studio,% list
}
class xml{
keep:=[]
__New(param*){
if !FileExist(A_ScriptDir "\lib")
FileCreateDir,%A_ScriptDir%\lib
root:=param.1,file:=param.2
file:=file?file:root ".xml"
temp:=ComObjCreate("MSXML2.DOMDocument"),temp.setProperty("SelectionLanguage","XPath")
this.xml:=temp
if FileExist(file){
FileRead,info,%file%
if(info=""){
this.xml:=this.CreateElement(temp,root)
FileDelete,%file%
}else
temp.loadxml(info),this.xml:=temp
}else
this.xml:=this.CreateElement(temp,root)
this.file:=file
xml.keep[root]:=this
}
CreateElement(doc,root){
return doc.AppendChild(this.xml.CreateElement(root)).parentnode
}
search(node,find,return=""){
found:=this.xml.SelectNodes(node "[contains(.,'" RegExReplace(find,"&","')][contains(.,'") "')]")
while,ff:=found.item(a_index-1)
if (ff.text=find){
if return
return ff.SelectSingleNode("../" return)
return ff.SelectSingleNode("..")
}
}
lang(info){
info:=info=""?"XPath":"XSLPattern"
this.xml.temp.setProperty("SelectionLanguage",info)
}
unique(info){
if (info.check&&info.text)
return
if info.under{
if info.check
find:=info.under.SelectSingleNode("*[@" info.check "='" info.att[info.check] "']")
if info.Text
find:=this.cssn(info.under,"*[text()='" info.text "']")
if !find
find:=this.under(info.under,info.path,info.att)
for a,b in info.att
find.SetAttribute(a,b)
}
else
{
if info.check
find:=this.ssn("//" info.path "[@" info.check "='" info.att[info.check] "']")
else if info.text
find:=this.ssn("//" info.path "[text()='" info.text "']")
if !find
find:=this.add({path:info.path,att:info.att,dup:1})
for a,b in info.att
find.SetAttribute(a,b)
}
if info.text
find.text:=info.text
return find
}
add2(path,att:="",text:="",dup:=0,list:=""){
p:="/",dup1:=this.ssn("//" path)?1:0,next:=this.ssn("//" path),last:=SubStr(path,InStr(path,"/",0,0)+1)
if !next.xml{
next:=this.ssn("//*")
Loop,Parse,path,/
last:=A_LoopField,p.="/" last,next:=this.ssn(p)?this.ssn(p):next.appendchild(this.xml.CreateElement(last))
}
if(dup&&dup1)
next:=next.parentnode.appendchild(this.xml.CreateElement(last))
for a,b in att
next.SetAttribute(a,b)
for a,b in StrSplit(list,",")
next.SetAttribute(b,att[b])
if(text!="")
next.text:=text
return next
}
add(info){
path:=info.path,p:="/",dup:=this.ssn("//" path)?1:0
if next:=this.ssn("//" path)?this.ssn("//" path):this.ssn("//*")
Loop,Parse,path,/
last:=A_LoopField,p.="/" last,next:=this.ssn(p)?this.ssn(p):next.appendchild(this.xml.CreateElement(last))
if (info.dup&&dup)
next:=next.parentnode.appendchild(this.xml.CreateElement(last))
for a,b in info.att
next.SetAttribute(a,b)
for a,b in StrSplit(info.list,",")
next.SetAttribute(b,info.att[b])
if(info.text!="")
next.text:=info.text
return next
}
ff(info*){
doc:=info.1.NodeName?info.1:this.xml
if(info.1.NodeName)
node:=info.2,find:=info.3
else
node:=info.1,find:=info.2
if InStr(find,"'")
return doc.SelectSingleNode(node "[.=concat('" RegExReplace(find,"'","'," Chr(34) "'" Chr(34) ",'") "')]/..")
else
return doc.SelectSingleNode(node "[.='" find "']/..")
}
find(info){
if(info.att.1&&info.text)
return m("You can only search by either the attribut or the text, not both")
search:=info.path?"//" info.path:"//*"
for a,b in info.att
search.="[@" a "='" b "']"
if info.text
search.="[text()='" info.text "']"
current:=this.ssn(search)
return current
}
under(under,node:="",att:="",text:="",list:=""){
if(node="")
node:=under.node,att:=under.att,list:=under.list,under:=under.under
new:=under.appendchild(this.xml.createelement(node))
for a,b in att
new.SetAttribute(a,b)
for a,b in StrSplit(list,",")
new.SetAttribute(b,att[b])
if text
new.text:=text
return new
}
ssn(node){
return this.xml.SelectSingleNode(node)
}
sn(node){
return this.xml.SelectNodes(node)
}
__Get(x=""){
return this.xml.xml
}
Get(path,Default){
return value:=this.ssn(path).text!=""?this.ssn(path).text:Default
}
transform(){
static
if !IsObject(xsl){
xsl:=ComObjCreate("MSXML2.DOMDocument")
style=
(
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
<xsl:for-each select="@*">
</xsl:for-each>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
)
xsl.loadXML(style),style:=null
}
this.xml.transformNodeToObject(xsl,this.xml)
}
save(x*){
if x.1=1
this.Transform()
filename:=this.file?this.file:x.1.1,encoding:=ffff.pos=3?"UTF-8":ffff.pos=2?"UTF-16":"CP0",enc:=RegExMatch(this[],"[^\x00-\x7F]")?"utf-16":"utf-8"
if(encoding!=enc)
FileDelete,%filename%
file:=fileopen(filename,"rw",encoding),file.seek(0),file.write(this[]),file.length(file.position)
}
remove(rem){
if !IsObject(rem)
rem:=this.ssn(rem)
rem.ParentNode.RemoveChild(rem)
}
ea(path){
list:=[]
if nodes:=path.nodename
nodes:=path.SelectNodes("@*")
else if path.text
nodes:=this.sn("//*[text()='" path.text "']/@*")
else if !IsObject(path)
nodes:=this.sn(path "/@*")
else
for a,b in path
nodes:=this.sn("//*[@" a "='" b "']/@*")
while,n:=nodes.item(A_Index-1)
list[n.nodename]:=n.text
return list
}
}
ssn(node,path){
return node.SelectSingleNode(path)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment