Click here to Skip to main content
Click here to Skip to main content

Peer-to-Peer Communicator and File Transfer

By , 14 Aug 2001
 

Sample Image - SimpleChat.jpg

Prologue

On this web site you would probably find every functionality that was put into this application. I realize that. Hence I'm not going to post the source code just yet. However, I've put it up here to see how much interest this application would attract, specifically if there is any interest in the techniques that I've used to implement it. I'm going to enumerate some of the techniques in this short article. Let me know if there is anything of interest to you and I will probably write up a separate article for whatever is requested.

Introduction

This is a peer-to-peer communicator that allows you to chat with a single person at a time and exchange files simultaneously.

Sockets, ..., sockets, ... Zzzzzap! (::) (Connection established)

A socket library built upon Berkley sockets was designed and implemented. I've taken a well known approach of having an object package itself into a stream on the sender's side and do the opposite on the receiver side. Using the library above, a hierarchy of classes is introduced to accommodate the file transfer.

Multithreading

A set of classes encapsulate the threading/synchronization Windows API. Each thread is responsible for handling logically separated functional areas of the software. That is, I've introduced:

  • A UI thread.

    This thread is the MFC's main thread that handles all UI components. This thread is a subscriber for event notifications from the rest of the threads.

  • A couple of Listener threads.

    One of which is to listen for incoming requests for the first connection with the remote party to be established. Once the connection is up, another Listener is brought alive to await for any possible requests to send a file.

  • A Sender thread.

    This thread handles the file sending functionality.

  • A Receiver thread.

    This thread handles the file receiving functionality.

Event Model

The Sender and Receiver threads notify the UI thread about the progress of the work by adding notification events into the shared memory queue. The UI thread polls the queue for the notifications every few milliseconds. This approach is good enough for such a simple application, but if I was to have a lot of worker (Hello Microsoft! :)) threads, I should have probably created a dedicated worker thread which all it would do is to sit locked on the queue's mutex, until an event is added and then do UI_Thread::PostThreadMessage(), so that UI would have much faster response to the application events.

Epilogue

I hope by now you're not yelling at the monitor, hoping that I might hear it "Where is the Source Code?!". Well, honestly I don't believe that one can learn a lot from a load of not very well documented source code. So if there are people who want to know, let me know what part of this software would be of most interest to you and I'll come up with an article.

08/15/2001

Well, after getting several emails with the source request, I figured I should probably give it to the community :) Unfortunately I don't have time to explain all of the concepts of the NetLib that is included here, but basically this library allows you in a limited form to marshal an arbitrary C++ object(s) across a network. Some threading and synch classes are included and provider/consumer design pattern is applied for communicating with the UI thread. As soon as I get a brake from work, I'll come up with a better article. Actually let me know if there is a need for it.

Well happy coding to you, I hope this will be of some help.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Marat Bedretdinov
Web Developer
United States United States
Member
I work as a software engineer for 12 years and currently building IONA's Artix ESB.
 
Also check out my company that implemented a Thin Java Object Broker that remotes over HTTP protocol and implements J2EE APIs with ~100 KB runtime on the client side.
 

http://www.jproxy.com


 
Happy coding,
Marat

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionPeer-to-Peer Communicator and File TransfermemberMember 1003840117 May '13 - 9:38 
GeneralMy vote of 5memberMember 43208447 May '12 - 9:42 
Questionhow to run the program...???memberMember 861304130 Mar '12 - 0:36 
Questionhow to run the programmembermax_lord21 Oct '10 - 21:31 
Generalproblemmemberdonon25 Jan '10 - 20:51 
Generallooking for the more clear articlememberMember 417159017 Nov '09 - 4:52 
General[Message Deleted]memberit.ragester2 Apr '09 - 21:53 
GeneralThank youmemberLi Shu30 Oct '08 - 2:46 
GeneralVS 2005memberewasta12 May '08 - 10:15 
AnswerRe: VS 2005memberItai Basel24 Jun '08 - 9:09 
Generalquestionmembersajjad alizadeh9 May '08 - 6:47 
Questionfile transfer with peer to peer network ?memberbenard4 Mar '08 - 4:11 
QuestionNat Traversal?memberbluewater02092 Mar '08 - 21:36 
Generalfatal error C1083memberleenkinpark30531 Oct '07 - 19:12 
Questiontransfer filememberhwzmail8 Oct '07 - 23:27 
Generalthe progrem use too mach memory!membertwblue24 Jun '07 - 23:13 
GeneralRe: the progrem use too mach memory!memberjan bont31 Jul '08 - 3:10 
AnswerRe: the progrem use too mach memory!memberDr. B.M. Linden11 Sep '09 - 9:03 
Questiondoes it resolve domain names?memberbreakpoint27 Mar '06 - 20:32 
GeneralRe: peer to peer file transfermemberFabianSauer21 May '06 - 21:06 
Questionhow to compile and create an exe filememberhow jack21 Feb '06 - 15:48 
QuestionSending unicode characters over the network?memberJockeP21 Nov '05 - 4:17 
QuestionFile Transfer via Serial Port between 2 pc'smembermayurshsawant8110 Nov '05 - 6:17 
Generaldata transfer receive and sendsussNIdoh5 Sep '05 - 21:11 
GeneralPlease help me!I get a access violation in " m_data.m_bDir = h.IsDirectory();"memberMichael sun25 Jul '05 - 3:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 15 Aug 2001
Article Copyright 2001 by Marat Bedretdinov
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid