⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wait_on_read.spl

📁 ACE编程的一本经典BIBLE的源代码,喜欢网络编程的别错过
💻 SPL
字号:
<?xml version="1.0"?>

<!-- Wait Strategy Specialization
 *   ===============================
 *   Details all the specialization transformations necessary
 *   to specialize the Wait_Strategy with the Wait_On_Read strategy
 *
 *   @author Arvind S. Krishna <arvindk@dre.vanderbilt.edu>
 *   Wait_On_Read.spl,v 1.1 2005/09/29 21:37:43 arvindk Exp
-->

<transform>

<module name="TAO/tao">

<file name="Wait_Strategy.cpp">

<!-- Copy specialized code from the Wait_On_Read strategy
     to this file -->

<copy-from-source>

 <!-- Name of the source file from which to copy. In this case, this is
      the Wait_On_Read source file -->
 <source>Wait_On_Read.cpp</source>

 <!-- Copy data between the following hooks defined in the aforementioned
      file -->
 <copy-hook-start>WAIT_STRATEGY_SPL_COPY_HOOK_START</copy-hook-start>
 <copy-hook-end>WAIT_STRATEGY_SPL_COPY_HOOK_END</copy-hook-end>

 <!-- Destination hook in the Wait_Strategy.h file where the code
      should be placed -->
 <dest-hook>TAO_WAIT_STRATEGY_SPL_ADD_HOOK</dest-hook>

</copy-from-source>

<!-- Copy include files to the hook to get the necessary include files -->
<add>
 <hook>WAIT_STRATEGY_SPL_COPY_HOOK_START</hook>
 <data>
#include "Wait_On_Read.h"
#include "Transport.h"
#include "Resume_Handle.h"
#include "Synch_Reply_Dispatcher.h"
#include "Client_Strategy_Factory.h"
#include "ORB_Core.h"
#include "ace/Reactor.h"
#include "ace/Countdown_Time.h"
 </data>
</add>

<!-- Once this is done, replace all occurences of TAO_Wait_On_Read with
     TAO_Wait_Strategy -->
<substitute>
 <search>TAO_Wait_On_Read</search>
 <replace>TAO_Wait_Strategy</replace>
</substitute>

</file>

<file name="tao.mpc">

<!-- Do not build the other Wait strategy classes -->
<substitute>
 <search>Wait_On_Read.h</search>
 <replace>// Wait_On_Read.cpp</replace>
</substitute>
<substitute>
 <search>Wait_On_Read.cpp</search>
 <replace>// Wait_On_Read.cpp</replace>
</substitute>

<substitute>
 <search>Wait_On_Reactor.h</search>
 <replace>// Wait_On_Reactor.cpp</replace>
</substitute>
<substitute>
 <search>Wait_On_Reactor.cpp</search>
 <replace>// Wait_On_Reactor.cpp</replace>
</substitute>

<substitute>
 <search>Wait_On_Leader_Follower.h</search>
 <replace>// Wait_On_Leader_Follower.cpp</replace>
</substitute>
<substitute>
 <search>Wait_On_Leader_Follower.cpp</search>
 <replace>// Wait_On_Leader_Follower.cpp</replace>
</substitute>

<substitute>
 <search>Wait_On_LF_No_Upcall.h</search>
 <replace>// Wait_On_LF_No_Upcall.cpp</replace>
</substitute>
<substitute>
 <search>Wait_On_LF_No_Upcall.cpp</search>
 <replace>// Wait_On_LF_No_Upcall.cpp</replace>
</substitute>

</file>

</module>

</transform>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -