• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            寶杉的博客

            UNIX/LINUX;ACE;SNMP;C++
            posts - 33, comments - 23, trackbacks - 0, articles - 0

            [原]ACE流--初學ACE

            Posted on 2007-07-25 10:57 寶杉 閱讀(1417) 評論(2)  編輯 收藏 引用 所屬分類: ACE/CORBA

                  ACE中的流包裝提供面向連接的通信。流數據傳輸包裝類包括ACE_SOCK_Stream和ACE_LSOCK_Stream,它們分別包裝TCP/IP和UNIX域socket協議數據傳輸功能。連接建立類包括針對TCP/IP的ACE_SOCK_Connector和ACE_SOCK_Acceptor,以及針對UNIX域socket的ACE_LSOCK_Connector和ACE_LSOCK_Acceptor。
                  Acceptor類用于被動地接受連接(使用BSD accept()調用),而Connector類用于主動地建立連接(使用BSD connect()調用)。
                  下面的例子演示接收器和連接器是怎樣用于建立連接的。該連接隨后將用于使用流數據傳輸類來傳輸數據。

            server端代碼:
            // 環境VC6.0+ACE5.4.2
            // proj:ACE stream server
            // date:07-7-24
            // robin
            //

            #include "stdafx.h"

            #include "ace/Log_Msg.h"
            #include "ace/Time_Value.h"
            #include "ace/OS.h"


            #include "ace/SOCK_Acceptor.h"
            #include "ace/SOCK_Stream.h"

            #define SIZE_DATA 18
            #define SIZE_BUF 1024
            #define NO_ITERATIONS 5

            class Server
            {
            public:
             Server (int port) : server_addr_(port),peer_acceptor_(server_addr_)
             {
              data_buf_ = new char[SIZE_BUF];
             }

             //Handle the connection once it has been established. Here the
             //connection is handled by reading SIZE_DATA amount of data from the
             //remote and then closing the connection stream down.

             int handle_connection()
             {
              // Read data from client
              for(int i=0;i<NO_ITERATIONS;i++)
              {
               int byte_count=0;
               if( (byte_count = new_stream_.recv_n(data_buf_, SIZE_DATA, 0) ) == -1 )
                ACE_ERROR ((LM_ERROR, "%p\n", "Error in recv"));
               else
               {
                data_buf_[byte_count]=0;
                ACE_DEBUG((LM_DEBUG,"Server received %s \n",data_buf_));
               }
              }

              // Close new endpoint
              if (new_stream_.close () == -1)
               ACE_ERROR ((LM_ERROR, "%p\n", "close"));
              return 0;
             }


             //Use the acceptor component peer_acceptor_ to accept the connection
             //into the underlying stream new_stream_. After the connection has been
             //established call the handle_connection() method.
             
             int accept_connections ()
             {
              if (peer_acceptor_.get_local_addr (server_addr_) == -1)
               ACE_ERROR_RETURN ((LM_ERROR,"%p\n","Error in get_local_addr"),1);
              ACE_DEBUG ((LM_DEBUG,"Starting server at port %d\n",
               server_addr_.get_port_number ()));
              
              // Performs the iterative server activities.

              while(1)
              {
               ACE_Time_Value timeout (ACE_DEFAULT_TIMEOUT);
               if (peer_acceptor_.accept(new_stream_, &client_addr_, &timeout)== -1)
               {
                ACE_ERROR ((LM_ERROR, "%p\n", "accept"));
                continue;
               }
               else
               {
                ACE_DEBUG((LM_DEBUG,
                 "Connection established with remote %s:%d\n",
                 client_addr_.get_host_name(),client_addr_.get_port_number()));

                //Handle the connection
                handle_connection();
               }
              }
             }

            private:
             char *data_buf_;
             ACE_INET_Addr server_addr_;
             ACE_INET_Addr client_addr_;
             ACE_SOCK_Acceptor peer_acceptor_;
             ACE_SOCK_Stream new_stream_;
            };


            int main (int argc, char *argv[])
            {
             if(argc<2)
             {
              ACE_ERROR((LM_ERROR,"Usage %s <port_num>", argv[0]));
              ACE_OS::exit(1);
             }

            // char *ip;
            // ip = new char[strlen("192.168.1.160")];
            // Server server(ACE_OS::atoi(ip));  //argv[1])

             Server server(ACE_OS::atoi(argv[1]));
             server.accept_connections();
             return 0;
            }

            client端:
            // proj:ACE stream client
            // client
            // date:7-24
            // robin

            #include "stdafx.h"

            //******additional*******//
            #include "ace/Log_Msg.h"  //ACE_ERROR ACE_DEBUG
            #include "ace/Time_Value.h"  // ACE_Time_Value
            #include "ace/OS.h"    // ACE_OS::atoi exit
            //******additional*******//

            #include "ace/SOCK_Connector.h"
            #include "ace/INET_Addr.h"

            #define SIZE_BUF 128
            #define NO_ITERATIONS 5


            class Client
            {
            public:
             Client(char *hostname, int port):remote_addr_(port,hostname)
             {
              data_buf_="Hello from Client";
             }

             //Uses a connector component `connector_’ to connect to a
             //remote machine and pass the connection into a stream
             //component client_stream_
             int connect_to_server()
             {
              // Initiate blocking connection with server.
              ACE_DEBUG ((LM_DEBUG, "(%P|%t) Starting connect to %s:%d\n",
               remote_addr_.get_host_name(),remote_addr_.get_port_number()));
              if (connector_.connect (client_stream_, remote_addr_) == -1)
               ACE_ERROR_RETURN ((LM_ERROR,"(%P|%t) %p\n","connection failed"),-1);
              else
               ACE_DEBUG ((LM_DEBUG,"(%P|%t) connected to %s\n",
               remote_addr_.get_host_name ()));
              return 0;
             }


             //Uses a stream component to send data to the remote host.
             int send_to_server()
             {
              // Send data to server
              for(int i=0;i<NO_ITERATIONS; i++)
              {
               if (client_stream_.send_n (data_buf_,
                ACE_OS::strlen(data_buf_)+1, 0) == -1)
               {
                ACE_ERROR_RETURN ((LM_ERROR,"(%P|%t) %p\n","send_n"),0);
                break;
               }
              }
              //Close down the connection
              close();
             }

             //Close down the connection properly.
             int close()
             {
              if (client_stream_.close () == -1)
               ACE_ERROR_RETURN ((LM_ERROR,"(%P|%t) %p\n","close"),-1);
              else
               return 0;
             }
            private:
             ACE_SOCK_Stream client_stream_;
             ACE_INET_Addr remote_addr_;
             ACE_SOCK_Connector connector_;
             char *data_buf_;
            };


            int main(int argc, char* argv[])
            {
             if(argc<3)
             {
              ACE_DEBUG((LM_DEBUG,"Usage %s <hostname> <port_number>\n", argv[0]));
              ACE_OS::exit(1);
             }

             Client client(argv[1],ACE_OS::atoi(argv[2]));
             client.connect_to_server();
             client.send_to_server();
             return 0;
            }


            運行結果:
            cmd里到exe目錄下,先啟動服務端server.exe 192.168.1.160
            如圖1:

            正在輪詢等待。

            再到client服務端,同樣的方法
            運行命令行參數格式 client.exe 192.168.1.160 192
             解析:ACE_DEBUG((LM_DEBUG,"Usage %s <hostname> <port_number>\n", argv[0]));
                     命令行參數為 <hostname><port> = <192.168.1.160><192>
                     端口是由圖1的第二行顯示,不是自己設定的。
            如圖2:

            只是照搬書上的例子,后面打算自己分析一下。

            Feedback

            # re: [原]ACE流--初學ACE  回復  更多評論   

            2007-07-25 17:46 by 夢在天涯
            en ,有時間俺也學ACE,沒有用過,也沒有看過!以后就靠大家的學習心得了

            # re: [原]ACE流--初學ACE  回復  更多評論   

            2007-07-27 09:59 by 寶杉
            @夢在天涯
            是啊 好書很難找 ACE自帶的例子有點難
            我有兩本推薦
            C++網絡編程 卷1 運用ACE和模式消除復雜性
            中篇:ACE程序員教程
            和一個ACE的查詢網址:http://www.cs.wustl.edu/~schmidt/research.html
            亚洲AV日韩精品久久久久久| 伊人久久综合无码成人网| 久久精品国产99国产电影网 | jizzjizz国产精品久久| 国产91久久精品一区二区| 久久91精品综合国产首页| 无码国内精品久久人妻麻豆按摩| 久久99久国产麻精品66| 9191精品国产免费久久| 精品一二三区久久aaa片| 国产精品99久久久久久猫咪| 久久WWW免费人成一看片| 亚洲一区二区三区日本久久九| 性做久久久久久久久久久| 一本久久a久久精品综合夜夜 | 国产精品久久99| 久久精品国产男包| 久久久久久青草大香综合精品| 亚洲中文字幕无码久久综合网| 99久久国产亚洲高清观看2024 | 久久九九免费高清视频| 久久国产精品成人片免费| 久久久久久久91精品免费观看| 香蕉久久一区二区不卡无毒影院| 亚洲国产精品无码久久一线| 亚洲精品NV久久久久久久久久 | 伊人久久大香线蕉综合5g| 伊人久久大香线焦综合四虎 | 久久中文字幕视频、最近更新| 久久亚洲国产欧洲精品一| 久久精品无码一区二区无码 | 婷婷五月深深久久精品| 亚洲综合伊人久久综合| 亚洲狠狠婷婷综合久久久久| 久久人人爽人人爽人人片AV高清| 亚洲精品乱码久久久久久不卡| 国产99久久久国产精免费| 久久se精品一区二区影院| 久久精品国产第一区二区| 精品久久人人做人人爽综合| 久久国产午夜精品一区二区三区|