| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 767 人关注过本帖
标题:P2P And C# 请求翻译
只看楼主 加入收藏
夜归人
Rank: 1
等 级:新手上路
帖 子:116
专家分:0
注 册:2006-11-11
收藏
 问题点数:0 回复次数:3 
P2P And C# 请求翻译

P2P And C#
By Shripad Kulkarni

http://www.csharphelp.com/archives/archive261.html


This article describes the simple approach to design a peer to peer network.

The figure1 shown below gives a general idea how p2p works. Although there are many other types where index server or central servers are not required , or can be eliminated so client talk directly to other clients.

The P2P concept generally consists of a central Index server. This server does not contain any files, physically. It only maintains the information about the users who are logged on to the network, the IP address of the client and the list of files shared at any given moment by a user. The client and the server communicate with each other over a socket connection using simple commands.

When a client "A" wants to search for files shared by other clients on the P2P network
?The Client "A"logs into the index server with a userid and the folder information that the client is willing to share.
?The Client "A" registers all the files with the server so that other clients can search for these files.
?The Client "A" makes a request to the index server to search files matching a given input pattern.
?The index server searches files names in its repository and returns to the Client "A"

The user sharing the file eg Client "B"
IP address of the user
Files names that it found.
Once the Client "A" selects the download option, Client "A" makes a socket connection to the Client "B" using the IP address returned by search.

You can define any port that you wish to listen at. For a list of TCP ports and what port numbers that can be used click here


If there is a successful connection is establised, inform the other client to begin sending the file.

Once the download is complete, register this file with the index server as your copy of the shared file.
Such a P2P network can be used to share any type of file. It can be used for your local network or a global network.

For more information about Firewall and SOCKS click here

The C# language make life very easy with the help of the TCPListener and the TCPClient classes.
Here is a listing of the transfer class ..


public MyTcpListener(int port) : base(port)
{

}
public void StopMe()
{
if ( this.Server != null )
{
this.Server.Close();
}
}
}

///
/// Summary description for Transfer.
///
public class Transfer
{
MyTcpListener tcpl;

public Transfer()
{
OptionsLoader ol = new OptionsLoader();
int port = 8081;
if (ol.Port > 0)
{
port = ol.Port;
}
else
{
// The default in case nothing else is set
port = 8081;
}

this.tcpl = new MyTcpListener(port);
}

public void TransferShutdown()
{
tcpl.StopMe();
}

public void ListenForPeers()
{
try
{

Encoding ASCII = Encoding.ASCII;

tcpl.Start();

while (true)
{
// Accept will block until someone connects
Socket s = tcpl.AcceptSocket();
NetworkStream DataStream = new NetworkStream(s);

String filename;
Byte[] Buffer = new Byte[256];
DataStream.Read(Buffer, 0, 256);
filename = Encoding.ASCII.GetString(Buffer);
StringBuilder sbFileName = new StringBuilder(filename);
StringBuilder sbFileName2 = sbFileName.Replace("\", "\\");
FileStream fs = new FileStream(sbFileName2.ToString(), FileMode.Open, FileAccess.Read);
BinaryReader reader = new BinaryReader(fs);
byte[] bytes = new byte[1024];
int read;
while((read = reader.Read(bytes, 0, bytes.Length)) != 0)
{
DataStream.Write(bytes, 0, read);
}
reader.Close();
DataStream.Flush();
DataStream.Close();
}
}
catch(SocketException ex)
{
MessageBox.Show(ex.ToString());
}
}

public void DownloadToClient(String server, string remotefilename, string localfilename)
{
try
{
TcpClient tcpc = new TcpClient();
Byte[] read = new Byte[1024];

OptionsLoader ol = new OptionsLoader();
int port = 0;
if (ol.Port > 0)
{
port = ol.Port;
}
else
{
// The default in case nothing else is set
port = 8081;
}


// Try to connect to the server
IPHostEntry IPHost = Dns.Resolve(server);
string []aliases = IPHost.Aliases;
IPAddress[] addr = IPHost.AddressList;

IPEndPoint ep = new IPEndPoint(addr[0], port);
tcpc.Connect(ep);

// Get the stream
Stream s = tcpc.GetStream();
Byte[] b = Encoding.ASCII.GetBytes(remotefilename.ToCharArray());
s.Write( b, 0, b.Length );
int bytes;
FileStream fs = new FileStream(localfilename, FileMode.OpenOrCreate);
BinaryWriter w = new BinaryWriter(fs);

// Read the stream and convert it to ASII
while( (bytes = s.Read(read, 0, read.Length)) != 0)
{
w.Write(read, 0, bytes);
read = new Byte[1024];
}

tcpc.Close();
w.Close();
fs.Close();
}
catch(Exception ex)
{
throw new Exception(ex.ToString());
}
}
}
}


[此贴子已经被作者于2006-11-15 16:22:46编辑过]

搜索更多相关主题的帖子: And approach peer archives 
2006-11-15 16:22
CrazyWeed0907
Rank: 2
等 级:新手上路
威 望:5
帖 子:1385
专家分:0
注 册:2006-5-30
收藏
得分:0 

叫人翻译啊
这么长,还得写半天呢
主要讲点对点通信
英文你看不懂还找英文资料看



“十步杀一人,千里不留行。事了拂衣去,深藏身与名。”
2006-11-15 18:26
夜归人
Rank: 1
等 级:新手上路
帖 子:116
专家分:0
注 册:2006-11-11
收藏
得分:0 

我看得懂,这篇是讲流媒体的,不过还是想有人翻译一下


我睡着听爱情走过,路上大雨滂沱.
2006-11-15 22:33
chenjin145
Rank: 1
等 级:禁止访问
帖 子:3922
专家分:0
注 册:2006-7-12
收藏
得分:0 
来自:live41


[url=javascript:alert(1);] [div]fdgfdgfdg\" on\"[/div] [/url]
2006-11-16 09:22
快速回复:P2P And C# 请求翻译
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015388 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved