如何在OMNet ++中将动态模块连接到静态模块

时间:2013-05-24 07:34:19

标签: dynamic module omnet++

我有一个关于计算云的项目,我正在使用Omnet ++。我试图创建一个随机数量的动态模块来表示虚拟机。我现在能够这样做,但我无法将新的动态模块连接到代表虚拟机核心的静态模块。 OMNet ++的用户手册介绍了如何将动态模块连接到另一个动态模块,而不是动态模块到静态模块。

任何人都可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

我创建了一个动态模块,并使用以下代码将其连接到静态模块:

void Txc::initialize()
{
    if(strcmp( getName(), "txc" ) ==0){
        index =0;
        cModuleType *moduleType = cModuleType::get("createmoduledynamically.Txc");
        cModule *module = moduleType->create("node", getParentModule(), 10 , index);//createScheduleInit()

        module->setGateSize("in", 2);
        module->setGateSize("out", 2);

        gate("out",0)->connectTo(module->gate("in",0));
        module->gate("out",0)->connectTo(gate("in",0));

        cMessage *msg = new cMessage("Data");
        send(msg,"out", 0);
    }
}

void Txc::handleMessage(cMessage *msg)
{
    cModule *mod = getParentModule()->getSubmodule("txc");
    Txc * txcMod = check_and_cast<Txc *>(mod);
    txcMod->index++;
    if(txcMod->index<10){
        cModuleType *moduleType = cModuleType::get("createmoduledynamically.Txc");
        cModule *module = moduleType->create("node", getParentModule(), 10 , txcMod->index);//createScheduleInit()

        module->setGateSize("in", 2);
        module->setGateSize("out", 2);

        gate("out",1)->connectTo(module->gate("in",0));
        module->gate("out",0)->connectTo(gate("in",1));

        module->callInitialize();

        send(msg, "out", 1);
    }
}

虽然在静态网络文件中只创建了一个模块:

子模块:     txc:Txc;

希望这会有用。