00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #include <stdlib.h>
00036 #include <stdio.h>
00037 #include <string.h>
00038 #include <assert.h>
00039 #include <errno.h>
00040
00041 #include <sys/types.h>
00042 #include <sys/socket.h>
00043 #include <netdb.h>
00044 #include <netinet/in.h>
00045 #include <unistd.h>
00046 #include <fcntl.h>
00047
00048 #include <mps/mps.h>
00049 #include <mps/transport_fastmsg.h>
00050
00051 #include "FastmsgLink.h"
00052 #include "FastmsgServer.h"
00053
00054 #include <map>
00055 #include <utility>
00056 #include <string>
00057
00058 namespace MPS {
00059
00060 FastmsgTransport *FastmsgTransport::instance = 0;
00061
00062 FastmsgTransport::FastmsgTransport(Scheduler &s)
00063 : Transport("fastmsg"),
00064 sched(s)
00065 {}
00066
00067 ref<Connection> FastmsgTransport::connectTo(Address const &spec) {
00068 if (spec.getParamCount() != 1)
00069 throw MPSException("Incorrect parameter count in Address to FastmsgTransport");
00070
00071 return new FastmsgLink(spec.getParam(0), spec);
00072 }
00073
00074 string FastmsgTransport::registerServer(Server *server, Address const &spec) {
00075 string oid = server->getObjectName();
00076 char sockName[32];
00077
00078 sprintf(sockName, "mps2_%d", (int) getpid());
00079 sched.spawn(new MailboxThread(sched,
00080 Mailbox::create(oid.c_str()),
00081 new FastmsgServerFactory(server),
00082 sockName));
00083
00084 return string("mps:fastmsg:") + oid;
00085 }
00086
00087 string FastmsgTransport::deregisterServer(Server *server, Address const &spec) {
00088
00089 throw MPSException("FastmsgTransport::deregisterServer not yet implemented");
00090 }
00091
00092 }