Jump to content

[Class] Simple TCP with OOP


matwachich
 Share

Recommended Posts

Hi everybody!

Here is my new super tool!

It's an AutoItObject TCP Class! Very simple to use, with example and complet decumentation (Made with NaturalDocs)

There are two classes: Client, and Server.

- The data are encrypted!

- The server can handle multiple clients

- Data buffering, if you send a big amount of data, it will received as it was sent, not as many little parts of it

- OOP programing! (very simple!)

PS: You don't need to download AutoItObject, everything you need is in the zip.

Update: 03/11/2011

+: Added, -: Deleted/Deprecated, *: Modified, !: Bug corrected
=== 1.1c === (30/10/2011)
Server:
+: ClientGetBufferLen method
+: Completed doc of ClientPropertyGet and ClientPropertySet methods (Return values)
*: Now, when calling .Shutdown, the Callback_LostClient is called for each client.
!: Corrected bug: Script error when calling .DisconnectAll befor calling at least one
    time .Startup (Main socket array was not dimensioned)

UDF_TCPClass.rar

Edited by matwachich
Link to comment
Share on other sites

  • 2 weeks later...

matwachich nice job! :graduated: Im surprised you havent got more comments. Very good use of autoitobject. And documentation is cool too. I like the html. One thing about the examples, you should add a check for window close in your loop. Since you have the tray icon hidden I dont know how to get out of it.

edit: and maybe add the examples to your zip so the user dosent have to copy and create from the help file to test it.

Edited by Beege
Link to comment
Share on other sites

Hi everybody!

Here is my new super tool!

It's an AutoItObject TCP Class! Very simple to use, with example and complet decumentation (Made with NaturalDocs)

There are two classes: Client, and Server.

- The data are encrypted!

- The server can handle multiple clients

- Data buffering, if you send a big amount of data, it will received as it was sent, not as many little parts of it

- OOP programing! (very simple!)

PS: You don't need to download AutoItObject, everything you need is in the zip.

Here is the zip, enjoy!

So good work!

One question: how do you compile AutoItObject.au3 to DLL file?

(In the Function of _File_AutoItObject_dll(), how do you get $string?)

Link to comment
Share on other sites

One question: how do you compile AutoItObject.au3 to DLL file?

(In the Function of _File_AutoItObject_dll(), how do you get $string?)

You dont. The Autoitobject UDF automatically extracts the dll for use at runtime.

Link to comment
Share on other sites

Update 1.1b: Bug correction and new examples

Change log:

=== 1.1b === (30/09/2011)
Server:
!: Corrected bug in Number of client's extended properties
*: Documentation corrected (added 0-based for ClientPropertyGet/Set)
+: New Method: NbrClients
*: Property NbrClients is now private
Client:
!: Changed return value of Connect method (see documentation)

PS: If you want to send a file, just read it's content with binary mode (flag 16 in FileOpen) and send it! The receiver will receive binary data, and all you have to do is write it on a file with binary mode too (flag 18 in FileOpen)

For archive download, see first post

Link to comment
Share on other sites

Update 1.1b: Bug correction and new examples

Change log:

=== 1.1b === (30/09/2011)
Server:
!: Corrected bug in Number of client's extended properties
*: Documentation corrected (added 0-based for ClientPropertyGet/Set)
+: New Method: NbrClients
*: Property NbrClients is now private
Client:
!: Changed return value of Connect method (see documentation)

PS: If you want to send a file, just read it's content with binary mode (flag 16 in FileOpen) and send it! The receiver will receive binary data, and all you have to do is write it on a file with binary mode too (flag 18 in FileOpen)

For archive download, see first post

i will try it a.s.a.p.

PS.

I love ur work :graduated:

DS

Link to comment
Share on other sites

i get one error every time i start the app i maid on client side, think it has nothing to do with ur scripts and i think i allways had it.

Yet everything works as it should and cant see any errors in anything else then exept when i start my client (think i implemented ur code a litte wrong?)

Do u have any idea where i should start to look?

in ur client.au3, line 6 is

Global $__TCPClass_oMyErr = ObjEvent("AutoIt.Error", "_TCPClass_ErrFunc")

when i do this.

ConsoleWrite("test")

#include "Client.au3"

ConsoleWrite("test1")

i can see it must be the client.au3

>Running:(3.3.6.1):C:\Program\AutoIt3\autoit3.exe "H:\Jobb\scripts\Dev\ChargeDeamon\utveckling\Ny\CH-Agent\CH-Agent.au3" -d  
testA COM Error has occured!
err.description is:
err.windescription:
err.number is:  00000002
err.lastdllerror is:  0
err.scriptline is:  6
err.source is:
err.helpfile is:
err.helpcontext is:
test1@@(266) :(42:37)Updateing client settnigs...
@@ (500) :(42:37) _Getbiosinfo()
@@(266) :(42:37)Updateing webserver...
Edited by lgvlgv
Link to comment
Share on other sites

Update 1.1b: Bug correction and new examples Change log:

=== 1.1b === (30/09/2011) Server: !: Corrected bug in Number of client's extended properties *: Documentation corrected (added 0-based for ClientPropertyGet/Set) +: New Method: NbrClients *: Property NbrClients is now private Client: !: Changed return value of Connect method (see documentation)
PS: If you want to send a file, just read it's content with binary mode (flag 16 in FileOpen) and send it! The receiver will receive binary data, and all you have to do is write it on a file with binary mode too (flag 18 in FileOpen) For archive download, see first post

What im i doing wrong?

server sends:
Case $ButtonViewDesktop
Local $sock1 = _GUICtrlListView_GetItemTextArray(GUICtrlGetHandle($ListViewClients)) ;gets the socket
SendPacketToServer($sock1[7], "~~GetScreenShot")

client do:
Case $data[0] = "~~GetScreenShot"
SetClientStatus(1, "Sending Screenshot")
_ScreenCapture_SetJPGQuality(100)
_ScreenCapture_Capture(@DesktopDir & "\tempscreen1.jpg")
sleep(1000)
local $screenfile = FileOpen(@DesktopDir & "\tempscreen1.jpg", 16)
$oClient.Send("~~SendingScreenshot|" & $screenfile)
sERVER RECIVES:
Case $data[0] = "~~SendingScreenshot"
;_ArrayDisplay($data)
local $screenshotfile = FileOpen(@DesktopDir & "\SCREEN.JPG", 18)
Filewrite($screenshotfile, $data[1])
FileClose($screenshotfile)
Link to comment
Share on other sites

Try like this

Filewrite($screenshotfile, Binary($data[1]))

Or, try to not mix between String data and binary data here: $oClient.Send("~~SendingScreenshot|" & $screenfile)

What i do is, to send a small command to the server to tell him that the next received data will be a screen shot, and just after that, i send ONLY the screen shot binary data, and it works for me.

About the com error, i really don't know, don't have it.

Link to comment
Share on other sites

Try like this

Filewrite($screenshotfile, Binary($data[1]))

Or, try to not mix between String data and binary data here: $oClient.Send("~~SendingScreenshot|" & $screenfile)

What i do is, to send a small command to the server to tell him that the next received data will be a screen shot, and just after that, i send ONLY the screen shot binary data, and it works for me.

About the com error, i really don't know, don't have it.

Ive got it working :graduated: thx alot.

had 2 stupid errors in the script one was that i only read 4096 of the file no matter how big it was ;) (cut and past from another guys script)

One last question!

there are another threed here on the forums about running "ur own" scripts as a service do u know if its possible to merge ur example with there exampels?

i nuderstand this is not ur table, but beeing a guru and all u probbebly allready have the answer. sorrry for my bad swenglish (im swedish ;) )

any of the example would do :)

Edited by lgvlgv
Link to comment
Share on other sites

#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.6.1
Author:      Matwachich
Script Function:
#ce ----------------------------------------------------------------------------
#include <Services.au3>
Global $srvName = "custom_service", $srvDesc = "My Custom Au3 Service"
If Not _Service_Exists($srvName) Then
; This creates your service in windows service manager, it hase to be done
; only one time.
_Service_Create($srvName, $srvDesc, _
     $SERVICE_WIN32_OWN_PROCESS + $SERVICE_INTERACTIVE_PROCESS, _
     $SERVICE_AUTO_START, _
     $SERVICE_ERROR_IGNORE, _
     '"' & @ScriptFullPath & '"')
EndIf
; This starts your service, calling the _Svc_Main function
_Service_init($srvName)
; ##############################################################
Func _Svc_Main()
; Now, all your code goes here!
EndFunc

Link to comment
Share on other sites

#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.6.1
Author:      Matwachich
Script Function:
#ce ----------------------------------------------------------------------------
#include <Services.au3>
Global $srvName = "custom_service", $srvDesc = "My Custom Au3 Service"
If Not _Service_Exists($srvName) Then
; This creates your service in windows service manager, it hase to be done
; only one time.
_Service_Create($srvName, $srvDesc, _
     $SERVICE_WIN32_OWN_PROCESS + $SERVICE_INTERACTIVE_PROCESS, _
     $SERVICE_AUTO_START, _
     $SERVICE_ERROR_IGNORE, _
     '"' & @ScriptFullPath & '"')
EndIf
; This starts your service, calling the _Svc_Main function
_Service_init($srvName)
; ##############################################################
Func _Svc_Main()
; Now, all your code goes here!
EndFunc

ahh, its under _Svc_main i should put it :graduated: tryed to put it everywere else ;)

i will try it as soon as i get home :)

//Thx alot

Link to comment
Share on other sites

  • 3 weeks later...

question...

o_server.au3 add code

#region ### START Koda GUI section ###

$GUI_Main = GUICreate("Mini-Server", 1408, 228)

$tab = GUICtrlCreateTab(6, 6, 1297, 217)

$bsen = GUICtrlCreateButton('bsend',1300,6,100,25)

GUISetState(@SW_SHOW)

#endregion ### END Koda GUI section ###

---------->

While 1

$nMsg = GUIGetMsg()

Switch $nMsg

Case $GUI_EVENT_CLOSE

Exit

Case $bsen

Local $Sockets = $oSrv.SocketIDList()

If $oSrv.Broadcast($Sockets, 'bsend') Then

MsgBox(0,'','all')

EndIf

EndSwitch

; ---

$oSrv.Process()

__Process($nMsg)

WEnd

is not send...msg..help me....

Edited by davidkim

I interest am many quite in AutoitScript.From that is [http://cafe.naver.com/autoitscript[/color]] Korea of cafe(blog) to be operating, [size="2"][color="#ff00ff"]English cannot well[/size].Many help it requests.To read, it stands it thanks.

Link to comment
Share on other sites

While 1

$nMsg = GUIGetMsg()

Switch $nMsg

Case $GUI_EVENT_CLOSE

Exit

Case $bsen

Local $Sockets = $oSrv.SocketIDList()

If $oSrv.Broadcast($Sockets, 'bsend') Then ; is not send...

MsgBox(0,'','all')

EndIf

;/// is var enable....

_ArrayDisplay($__TCPServer_Sockets)

For $i = 0 To $oSrv.max_clients - 1

If $__TCPServer_Sockets[$i][0] <> -1 Then TCPSend($__TCPServer_Sockets[$i][0], 'bsend')

;// is send not.......

Next

help me...

EndSwitch

; ---

$oSrv.Process()

__Process($nMsg)

WEnd

I interest am many quite in AutoitScript.From that is [http://cafe.naver.com/autoitscript[/color]] Korea of cafe(blog) to be operating, [size="2"][color="#ff00ff"]English cannot well[/size].Many help it requests.To read, it stands it thanks.

Link to comment
Share on other sites

Your problem is that you have not well read the documentation of the broadcast method. It takes only one parameter: The data to be sent.

Why do you pass it the socketID list???!!!

#region ### START Koda GUI section ###
$GUI_Main = GUICreate("Mini-Server", 1408, 228)
$tab = GUICtrlCreateTab(6, 6, 1297, 217)
$bsen = GUICtrlCreateButton('bsend', 1300, 6, 100, 25)
GUISetState(@SW_SHOW)
#endregion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
  Case $GUI_EVENT_CLOSE
   Exit
  Case $bsen
   If $oSrv.Broadcast('bsend') Then
    MsgBox(0, '', 'all')
   EndIf
EndSwitch
; ---
$oSrv.Process()
__Process($nMsg)
WEnd
Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...