00001 /* 00002 * Copyright 2004-2006 Intel Corporation 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 00017 #ifndef _TR_AGENT_H 00018 #define _TR_AGENT_H 00019 00020 #include <oasys/debug/DebugUtils.h> 00021 #include <oasys/debug/Log.h> 00022 00023 #include "SimEvent.h" 00024 #include "SimEventHandler.h" 00025 #include "naming/EndpointID.h" 00026 00027 namespace dtnsim { 00028 class Node; 00029 00030 class TrAgent : public SimEventHandler, public oasys::Logger { 00031 public: 00032 static TrAgent* init(Node* node, double start_time, 00033 const EndpointID& src, const EndpointID& dst, 00034 int argc, const char** argv); 00035 00036 virtual ~TrAgent() {} 00037 00038 void process(SimEvent *e); 00039 00040 private: 00041 TrAgent(Node* node, const EndpointID& src, const EndpointID& dst); 00042 00043 void send_bundle(); 00044 00045 Node* node_; 00046 EndpointID src_; 00047 EndpointID dst_; 00048 int size_; 00049 int reps_; 00050 int batch_; 00051 double interval_; 00052 }; 00053 00054 } // namespace dtnsim 00055 00056 #endif /* _TR_AGENT_H */