summaryrefslogtreecommitdiffstats
path: root/mojo/application/public/cpp/lib/interface_factory_connector.h
blob: cd99dff61ee03057ac9e5060cb2657285a041a4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MOJO_APPLICATION_PUBLIC_CPP_LIB_INTERFACE_FACTORY_CONNECTOR_H_
#define MOJO_APPLICATION_PUBLIC_CPP_LIB_INTERFACE_FACTORY_CONNECTOR_H_

#include <utility>

#include "mojo/application/public/cpp/interface_factory.h"
#include "mojo/application/public/cpp/service_connector.h"
#include "mojo/public/cpp/bindings/interface_request.h"

namespace mojo {
namespace internal {

template <typename Interface>
class InterfaceFactoryConnector : public ServiceConnector {
 public:
  explicit InterfaceFactoryConnector(InterfaceFactory<Interface>* factory)
      : factory_(factory) {}
  ~InterfaceFactoryConnector() override {}

  void ConnectToService(ApplicationConnection* application_connection,
                        const std::string& interface_name,
                        ScopedMessagePipeHandle client_handle) override {
    factory_->Create(application_connection,
                     MakeRequest<Interface>(std::move(client_handle)));
  }

 private:
  InterfaceFactory<Interface>* factory_;
  MOJO_DISALLOW_COPY_AND_ASSIGN(InterfaceFactoryConnector);
};

}  // namespace internal
}  // namespace mojo

#endif  // MOJO_APPLICATION_PUBLIC_CPP_LIB_INTERFACE_FACTORY_CONNECTOR_H_