blob: 9991badbc9d28e1143d88044ea00a59b2dccd9a1 [file] [log] [blame]
/* $Id$
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include "transport/EtchTransportFactory.h"
#include "transport/EtchTcpTransportFactory.h"
#include "support/EtchRuntime.h"
const EtchString& EtchTransportFactory::FILTER() {
static const EtchString name("filter");
return name;
}
EtchTransportFactory::~EtchTransportFactory() {
}
status_t EtchTransportFactory::addFilters(EtchTransportMessage* transport, EtchURL* uri, EtchResources* resources, EtchTransportMessage *& filter) {
//TODO: Add implementation
return ETCH_EUNIMPL;
}
status_t EtchTransportFactory::addFilter(EtchTransportMessage* transport, EtchString* name, EtchURL* uri, EtchResources* resources, EtchTransportMessage *& filter) {
//TODO: Add implementation
return ETCH_EUNIMPL;
}
status_t EtchTransportFactory::getTransport(EtchRuntime* runtime, EtchString uri, EtchResources* resources, EtchTransportMessage*& result) {
EtchURL u(uri);
EtchTransportFactory* f = NULL;
if (getTransportFactory(runtime, u.getScheme(), f) != ETCH_OK) {
return ETCH_ENOT_EXIST;
}
status_t _result = f->newTransport(uri, resources, result);
// TODO check lifecyle here
delete f;
return _result;
}
status_t EtchTransportFactory::getListener(EtchRuntime* runtime, EtchString uri, EtchResources* resources, EtchTransport<EtchServerFactory>*& result) {
EtchURL u(uri);
EtchTransportFactory* f = NULL;
if (getTransportFactory(runtime, u.getScheme(), f) != ETCH_OK) {
return ETCH_ENOT_EXIST;
}
status_t ret = f->newListener(uri, resources, result);
return ret;
}
status_t EtchTransportFactory::getTransportFactory(EtchRuntime* runtime, const EtchString& name, EtchTransportFactory*& result) {
EtchString tmp("tcp");
if (name.equals(&tmp)) {
result = new EtchTcpTransportFactory(runtime);
return ETCH_OK;
}
return ETCH_ENOT_EXIST;
}