File size: 20,837 Bytes
8739cbb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 |
--same as monodatacollector but for .net and .netcore
--can theoretically be used on mono as well
if getTranslationFolder()~='' then
loadPOFile(getTranslationFolder()..'dotnetforceddatacollector.po')
end
local pathsep
local libfolder
if getOperatingSystem()==0 then
pathsep=[[\]]
libfolder='dlls'
else
pathsep='/'
libfolder='dylibs'
end
dotnet_timeout=3000
DOTNETCMD_TEST=0
DOTNETCMD_INITMODULELIST=1
DOTNETCMD_GETMETHODENTRYPOINT=2
DOTNETCMD_GETFIELDTYPENAME=3
DOTNETCMD_GETFIELDVALUE=4
DOTNETCMD_SETFIELDVALUE=5
DOTNETCMD_LOADMODULE=6
DOTNETCMD_GETMETHODPARAMETERS=7
DOTNETCMD_WRAPOBJECT=8
DOTNETCMD_UNWRAPOBJECT=9
DOTNETCMD_INVOKEMETHOD=10
DOTNETCMD_FIND_MODULEID_WITH_CLASSLIST=11
DOTNETCMD_EXIT=255
dotnetmodulelist={}
function dotnet_findDotNetMethodAddress(namespace, classname, methodname, modulename)
--print(string.format("dotnet_findDotNetMethodAddress('%s','%s','%s','%s')",namespace,classname, methodname, modulename))
local fcn
if namespace==nil then namespace='' end
if modulename then modulename=modulename:lower() end
if namespace~='' then
fcn=namespace..'.'..classname
else
fcn=classname
end
local dc=getDotNetDataCollector()
local moduleid
local domains=dc.enumDomains()
local i
for i=1,#domains do
local modules=dc.enumModuleList(domains[i].DomainHandle)
local j
for j=1,#modules do
if (modulename==nil) or (modulename==extractFileName(modules[j].Name):lower()) then
local classes=dc.enumTypeDefs(modules[j].ModuleHandle)
local k
t={}
for k=1,#classes do
--printf("%d: %s (%d) <=>%s (%d)",k, classes[k].Name, #classes[k].Name, fcn, #fcn)
t[k]=classes[k].Name
if classes[k].Name==fcn then
--found the class
--print("yes")
local ml=dc.getTypeDefMethods(modules[j].ModuleHandle, classes[k].TypeDefToken)
local l
for l=1,#ml do
if ml[l].Name==methodname then
--print("Found method. Calling dotnet_getMethodEntryPoint")
local r=dotnet_getMethodEntryPoint(dotnet_getModuleID(extractFileName(modules[j].Name)), ml[l].MethodToken)
if r then
--printf("%s at address %8x", methodname, r)
return r
else
--print("failure")
end
end
end
end
end
end
end
end
end
function dotnet_loadModule(path)
if path==nil then
print(debug.traceback())
error('dotnet_loadModule: path is nil')
end
local r
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_LOADMODULE)
dotnetpipe.writeDword(#path);
dotnetpipe.writeString(path)
r=dotnetpipe.readDword()
if dotnetpipe==nil then return false end
dotnetpipe.unlock()
if r==1 then
dotnet_initModuleList()
reinitializeDotNetSymbolhandler(extractFileName(path))
return true
else
return false
end
end
function dotnet_initModuleList()
--load the modulelist from the injected dll. Watch the order
dotnetmodulelist={}
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_INITMODULELIST)
local count=dotnetpipe.readDword()
if not (count or dotnetpipe) then return end
local i
for i=1,count do
local stringsize=dotnetpipe.readDword()
local s=dotnetpipe.readString(stringsize)
stringsize=dotnetpipe.readDword()
local s2=dotnetpipe.readString(stringsize)
stringsize=dotnetpipe.readDword()
local s3=dotnetpipe.readString(stringsize)
dotnetmodulelist[i]={}
dotnetmodulelist[i].Name=s
dotnetmodulelist[i].ScopeName=s2
dotnetmodulelist[i].GUID=s3
dotnetmodulelist[i].Index=i
dotnetmodulelist[s]=dotnetmodulelist[i] --so the list can get searched by both numeric as string
end
dotnetpipe.unlock()
end
function dotnet_setFieldValue(moduleid, fielddef, instanceaddress, value)
local result
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_SETFIELDVALUE)
dotnetpipe.writeDword(moduleid)
dotnetpipe.writeDword(fielddef)
dotnetpipe.writeQword(instanceaddress)
dotnetpipe.writeDword(#value)
dotnetpipe.writeString(value)
dotnetpipe.unlock()
return result
end
function dotnet_getFieldValue(moduleid, fielddef, instanceaddress)
local result
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_GETFIELDVALUE)
dotnetpipe.writeDword(moduleid)
dotnetpipe.writeDword(fielddef)
dotnetpipe.writeQword(instanceaddress)
local stringsize=dotnetpipe.readDword()
local result=dotnetpipe.readString(stringsize)
dotnetpipe.unlock()
return result
end
function dotnet_getFieldTypeName(moduleid, fielddef)
local result
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_GETFIELDTYPENAME)
dotnetpipe.writeDword(moduleid)
dotnetpipe.writeDword(fielddef)
local stringsize=dotnetpipe.readDword()
local result=dotnetpipe.readString(stringsize)
dotnetpipe.unlock()
return result
end
function dotnet_getMethodEntryPoint(moduleid, methoddef)
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_GETMETHODENTRYPOINT)
dotnetpipe.writeDword(moduleid)
dotnetpipe.writeDword(methoddef)
local result=dotnetpipe.readQword()
dotnetpipe.unlock()
return result
end
function dotnet_getMethodParameters(moduleid, methoddef)
if dotnetpipe==nil then return nil end
if moduleid==nil then error('moduleid is nil') end
if methoddef==nil then error('methoddef is nil') end
local returntype,parameters,sz
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_GETMETHODPARAMETERS)
dotnetpipe.writeDword(moduleid)
dotnetpipe.writeDword(methoddef)
sz=dotnetpipe.readDword()
returntype=dotnetpipe.readString(sz)
sz=dotnetpipe.readDword()
parameters=dotnetpipe.readString(sz)
local count=dotnetpipe.readByte()
local TypeCodes={}
for i=1,count do
TypeCodes[i]=dotnetpipe.readByte()
end
dotnetpipe.unlock()
return returntype, parameters, TypeCodes
end
function dotnet_wrapobject(objectaddress)
if dotnetpipe then
local result
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_WRAPOBJECT)
dotnetpipe.writeQword(objectaddress)
result=dotnetpipe.readQword()
dotnetpipe.unlock()
return result
end
end
function dotnet_unwrapobject(wrappedobjecthandle)
local result
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_UNWRAPOBJECT)
dotnetpipe.writeQword(wrappedobjecthandle)
dotnetpipe.unlock()
return result
end
TypeCode={}
TypeCode.Empty=0
TypeCode.Object=1
TypeCode.DBNull=2
TypeCode.Boolean=3
TypeCode.Char=4
TypeCode.SByte=5
TypeCode.Byte=6
TypeCode.Int16=7
TypeCode.UInt16=8
TypeCode.Int32=9
TypeCode.UInt32=10
TypeCode.Int64=11
TypeCode.UInt64=12
TypeCode.Single=13
TypeCode.Double=14
TypeCode.Decimal=15
TypeCode.DateTime=16
TypeCode.String=18 --handle as utf8string
dotnet_writeObjectValue={}
dotnet_writeObjectValue[TypeCode.Empty]=function() end
dotnet_writeObjectValue[TypeCode.Object]=function(wrappedObjectHandle) dotnetpipe.writeQword(wrappedObjectHandle) end
dotnet_writeObjectValue[TypeCode.DBNull]=dotnet_writeObjectValue[TypeCode.Empty]
dotnet_writeObjectValue[TypeCode.Boolean]=function(flag) dotnetpipe.writeByte(flag and 1 or 0) end
dotnet_writeObjectValue[TypeCode.Char]=function(c)
c=string.sub(c,1,1)
dotnetpipe.writeWideString(c,false)
end
dotnet_writeObjectValue[TypeCode.SByte]=function(v) dotnetpipe.writeByte(v) end
dotnet_writeObjectValue[TypeCode.Byte]=dotnet_writeObjectValue[TypeCode.SByte]
dotnet_writeObjectValue[TypeCode.Int16]=function(v) dotnetpipe.writeWord(v) end
dotnet_writeObjectValue[TypeCode.UInt16]=dotnet_writeObjectValue[TypeCode.Int16]
dotnet_writeObjectValue[TypeCode.Int32]=function(v) dotnetpipe.writeDword(v) end
dotnet_writeObjectValue[TypeCode.UInt32]=dotnet_writeObjectValue[TypeCode.Int32]
dotnet_writeObjectValue[TypeCode.Int64]=function(v) dotnetpipe.writeQword(v) end
dotnet_writeObjectValue[TypeCode.UInt64]=dotnet_writeObjectValue[TypeCode.Int64]
dotnet_writeObjectValue[TypeCode.Single]=function(v) dotnetpipe.writeFloat(v) end
dotnet_writeObjectValue[TypeCode.Double]=function(v) dotnetpipe.writeDouble(v) end
dotnet_writeObjectValue[TypeCode.Decimal]=dotnet_writeObjectValue[TypeCode.Double] --not a perfect match, but will do
dotnet_writeObjectValue[TypeCode.DateTime]=dotnet_writeObjectValue[TypeCode.UInt64]
dotnet_writeObjectValue[TypeCode.String]=function(s)
dotnetpipe.writeDword(#s)
dotnetpipe.writeString(s)
end
dotnet_StringToTypeCodeValue={}
dotnet_StringToTypeCodeValue[TypeCode.Empty]=function(s) return 0 end
dotnet_StringToTypeCodeValue[TypeCode.Object]=function(s)
if s=='' then return 0 end --void gets handled as an object with address 0
if s:sub(1,2)=='0x' then
return tonumber(s)
else
return tonumber(s,16)
end
end
dotnet_StringToTypeCodeValue[TypeCode.DBNull]=dotnet_StringToTypeCodeValue[TypeCode.Object]
dotnet_StringToTypeCodeValue[TypeCode.Boolean]=function(s)
local s=s:upper()
if s=='1' or s=='TRUE' then return true end
if s=='0' or s=='FALSE' then return false end
return nil
end
dotnet_StringToTypeCodeValue[TypeCode.Char]=function(s) return s:sub(1,1) end
dotnet_StringToTypeCodeValue[TypeCode.SByte]=function(s) return tonumber(s) end
dotnet_StringToTypeCodeValue[TypeCode.Byte]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.Int16]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.UInt16]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.Int32]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.UInt32]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.Int64]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.UInt64]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.Single]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.Double]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.Decimal]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.DateTime]=dotnet_StringToTypeCodeValue[TypeCode.SByte]
dotnet_StringToTypeCodeValue[TypeCode.String]=function(s) return s end
dotnet_readObjectValue={}
dotnet_readObjectValue[TypeCode.Empty]=function() return nil end
dotnet_readObjectValue[TypeCode.Object]=function() return dotnetpipe.readQword() end
dotnet_readObjectValue[TypeCode.DBNull]=dotnet_readObjectValue[TypeCode.Empty]
dotnet_readObjectValue[TypeCode.Boolean]=function() return dotnetpipe.readByte()~=0 end
dotnet_readObjectValue[TypeCode.Char]=function() return dotnetpipe.readWideString(1) end
dotnet_readObjectValue[TypeCode.SByte]=function() return signExtend(dotnetpipe.readByte(),7) end
dotnet_readObjectValue[TypeCode.Byte]=function() return dotnetpipe.readByte() end
dotnet_readObjectValue[TypeCode.Int16]=function() return signExtend(dotnetpipe.readWord(),15) end
dotnet_readObjectValue[TypeCode.UInt16]=function() return dotnetpipe.readWord() end
dotnet_readObjectValue[TypeCode.Int32]=function() return signExtend(dotnetpipe.readDWord(),31) end
dotnet_readObjectValue[TypeCode.UInt32]=function() return dotnetpipe.readDWord() end
dotnet_readObjectValue[TypeCode.Int64]=function() return dotnetpipe.readQword(v) end
dotnet_readObjectValue[TypeCode.UInt64]=dotnet_readObjectValue[TypeCode.UInt64]
dotnet_readObjectValue[TypeCode.Single]=function() return dotnetpipe.readFloat(v) end
dotnet_readObjectValue[TypeCode.Double]=function() return dotnetpipe.readDouble(v) end
dotnet_readObjectValue[TypeCode.Decimal]=dotnet_readObjectValue[TypeCode.Double] --not a perfect match, but will do
dotnet_readObjectValue[TypeCode.DateTime]=dotnet_readObjectValue[TypeCode.UInt64]
dotnet_readObjectValue[TypeCode.String]=function()
local length=dotnetpipe.readDword()
return dotnetpipe.readString(length)
end
dotnet_readObjectValue[255]=function()
local msg=dotnet_readObjectValue[TypeCode.String]
print("Invoke Error: "..msg)
return nil
end
function dotnet_writeObject(parameter)
--pre: dotnetpipe lock is obtained
printf("dotnet_writeObject parameter.Type=%d parameter.Value="..parameter.Value, parameter.Type)
dotnetpipe.writeByte(parameter.Type)
local handler=dotnet_writeObjectValue[parameter.Type]
if handler then
handler(parameter.Value)
else
print("Unknown write handler:"..parameter.Type)
print(debug.traceback())
return false
end
return true
end
function dotnet_readObject()
printf("dotnet_readObject")
local result
local Type=dotnetpipe.readByte()
local handler=dotnet_readObjectValue[Type]
if handler then
return handler()
else
if (Type~=nil) then
print("Unknown read handler:"..Type)
else
print("Unknown read handler:"..Type)
end
print(debug.traceback())
return nil
end
end
function dotnet_invoke_method(moduleid, methoddef, wrappedObjectHandle, parameters)
local result
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_INVOKEMETHOD)
dotnetpipe.writeDword(moduleid)
dotnetpipe.writeDword(methoddef)
dotnetpipe.writeQword(wrappedObjectHandle)
--print("writing parameters")
if parameters then
dotnetpipe.writeByte(#parameters)
local i
for i=1,#parameters do
dotnet_writeObject(parameters[i])
end
else
dotnetpipe.writeByte(0)
end
-- print("Reading result")
result=dotnet_readObject()
dotnetpipe.unlock()
return result
end
function dotnet_invoke_method_dialog(name, moduleid, methoddef, wrappedAddress)
if wrappedAddress==nil then
return nil,'no wrapped object address provided'
end
if not inMainThread() then
return nil,'dotnet_invoke_method_dialog must run in the main thread'
end
local returntype, parameters, typeCodes=dotnet_getMethodParameters(moduleid, methoddef)
if returntype==nil then
return nil,'dotnet_getMethodParameters failed'
end
parameters=parameters:sub(2,#parameters-1) --strip the braces
local paramlist=table.pack(parameters:split(','))
if #paramlist~=#typeCodes-1 then --bug?
paramlist={}
local i
for i=1,#typeCodes do
paramlist[i]='tc'..typecodes[i]..' param'..i;
end
end
--still here, so all checks are ok, spawn the dialog
local mifinfo
mifinfo=createMethodInvokedialog(name, paramlist, function()
local instance=wrappedAddress
end)
--print("createMethodInvokedialog returned")
mifinfo.btnOk.OnClick=function(b)
--use typeCodes to fill the paramlist
print("DotnetInterface: mifinfo.btnOk.OnClick ")
local parameters={}
for i=2,#typeCodes do
local e={}
e.Type=typeCodes[i]
local valuehandler=dotnet_StringToTypeCodeValue[e.Type]
if valuehandler then
e.Value=valuehandler(mifinfo.parameters[i-1].edtVarText.Text)
if e.Value==nil then --nil is error
messageDialog('The input :"'..mifinfo.parameters[i].edtVarText.Text..'" could not be parsed for '..mifinfo.parameters[i].lblVarName, mtError,mbOK);
return
end
else
messageDialog('TypeCodes '..valuehandler..' is not known', mtError,mbOK);
return
end
table.insert(parameters,e)
end
local result=dotnet_invoke_method(moduleid, methoddef, wrappedAddress, parameters)
end
-- print("showing mifinfo.mif")
mifinfo.mif.show()
return mifinfo
end
function dotnet_getModuleIDFromClassList(modulename, classnamelist)
--scans for modules that contain all the given classnames.
--when found, apply to the dotnetmodulelist so it doesn't need to be found anymore
-- print("dotnet_getModuleIDFromClassList. #classnamelist="..#classnamelist);
if (classnamelist==nil) or (#classnamelist==0) then
print("empty classlist")
return nil
end
local result=0xffff
if dotnetpipe then
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_FIND_MODULEID_WITH_CLASSLIST)
dotnetpipe.writeByte(#classnamelist)
for i=1,#classnamelist do
local s=classnamelist[i]
dotnetpipe.writeDword(#s);
dotnetpipe.writeString(classnamelist[i])
end
result=dotnetpipe.readWord()
dotnetpipe.unlock()
end
if result==0xffff then
print("DOTNETCMD_FIND_MODULEID_WITH_CLASSLIST failed");
return nil
else
--dotnetmodulelist[modulename]=dotnetmodulelist[result+1]
return result
end
end
function dotnet_getModuleID(modulename)
if dotnetmodulelist==nil then
dotnet_initModuleList()
if dotnetmodulelist==nil then return end
end
local m=dotnetmodulelist[modulename]
if m then
return m.Index-1
else
--try the scopenames extension
--printf("dotnet_getModuleID(%s): Try alternate method", modulename)
for i=1,#dotnetmodulelist do
if dotnetmodulelist[i].ScopeName==modulename then
return i-1
end
if extractFileNameWithoutExt(dotnetmodulelist[i].ScopeName)==modulename then
return i-1
end
if extractFileNameWithoutExt(modulename)==dotnetmodulelist[i].ScopeName then
return i-1
end
end
print("not found")
end
end
function dotnet_disconnect()
print("dotnet_disconnect")
if dotnetpipe then
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_EXIT)
dotnetpipe.unlock()
dotnetpipe.destroy()
end
dotnetpipe=nil
end
function LaunchDotNetInterface()
local dllname
local remotePipeHandle
if dotnetpipe and (tonumber(dotnetpipe.processid)==getOpenedProcessID()) then
return true
end
if dotnetpipe then
dotnet_disconnect()
if dotnetpipe~=nil then
dotnetpipe.destroy()
dotnetpipe=nil
end
end
dllname="DotNetInterface.dll" --it's an "Any CPU" library
--create a pipe and duplicate it's handle to the target process
local serverpipe=createPipe('cedotnetpipe_pid'..getOpenedProcessID(), 256*1024,1024)
remotePipeHandle=duplicateHandle(serverpipe.Handle)
serverpipe.destroy()
--print(string.format("new handle=%d", remotePipeHandle))
local injectResult, injectError=injectDotNetLibrary(getAutorunPath()..libfolder..pathsep..dllname, 'DotNetInterface.PipeServer','Init',string.format("%d",remotePipeHandle), dotnet_timeout)
if (injectResult==nil) or (injectResult==false )then
if injectError then
messageDialog(translate('Inject error : ')..string.format("%x",injectError), mtError, mbOK);
else
messageDialog(translate('Inject error : ')..translate('Unknown'), mtError, mbOK);
end
return
end
dotnetpipe=connectToPipe('cedotnetpipe_pid'..getOpenedProcessID() ,dotnet_timeout)
if (dotnetpipe==nil) then
print("dotnetpipe is nil. Failed to connect")
return --failure
end
--print("connected")
dotnetpipe.OnError=function(self)
-- print("dotnetpipe error")
-- print(debug.traceback())
dotnetpipe=nil
end
dotnetpipe.OnTimeout=function(self)
dotnetpipe=nil
print("dotnet timeout")
end
local val=math.random(1,255)
--printf("val=%x",val)
dotnetpipe.lock()
dotnetpipe.writeByte(DOTNETCMD_TEST)
dotnetpipe.writeByte(val)
local result=dotnetpipe.readByte()
--if result then
--printf("result=%x", result)
--end
if dotnetpipe==nil then return false end
dotnetpipe.unlock()
local resultcalc=val ~ 0xce
if result~=resultcalc then
messageDialog('pipe connection error (invalid value returned)', mtError, mbOK);
if dotnetpipe~=nil then
dotnetpipe.destroy()
dotnetpipe=nil
end
return
end
-- print("calling dotnet_initModuleList")
dotnet_initModuleList()
dotnetpipe.processid=getOpenedProcessID()
dotnetpipe.isValid=function() return getOpenedProcessID()==tonumber(dotnetpipe.processid) end
--still here, return true
return true
end |