summaryrefslogblamecommitdiffstats
path: root/src/core/hle/kernel/k_server_port.h
blob: 13fa54e5ed4ef85a0b89b7227430e60a4b034607 (plain) (tree)
1
2
3
4
5
6
7
8
9





                                            
                 
                 
                  
                 
                                
                                                     
                                   
                            


                  
                  
                 
                     
                            
 


                                                                  
       

                                             
 
                                                              


                                                           
 
       
                                                                 
      
                                                                       



                                                                 

                                                                        
 
       


                                                                                                 
                                        
 









                                                                     
       


                                                                                                   
                                                 


                                              

                                                                   
                                                               
 




                                             
 










                                                                     
 
        
                                                         
                                                  






                                                                                  

  
                     
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "common/common_types.h"
#include "core/hle/kernel/k_synchronization_object.h"
#include "core/hle/kernel/object.h"
#include "core/hle/result.h"

namespace Kernel {

class KClientPort;
class KernelCore;
class KServerSession;
class SessionRequestHandler;

class KServerPort final : public KSynchronizationObject {
    KERNEL_AUTOOBJECT_TRAITS(KServerPort, KSynchronizationObject);

public:
    explicit KServerPort(KernelCore& kernel);
    virtual ~KServerPort() override;

    using HLEHandler = std::shared_ptr<SessionRequestHandler>;
    using PortPair = std::pair<KServerPort*, KClientPort*>;

    void Initialize(std::string&& name_);

    /**
     * Creates a pair of ServerPort and an associated ClientPort.
     *
     * @param kernel The kernel instance to create the port pair under.
     * @param max_sessions Maximum number of sessions to the port
     * @param name Optional name of the ports
     * @return The created port tuple
     */
    static PortPair CreatePortPair(KernelCore& kernel, u32 max_sessions,
                                   std::string name = "UnknownPort");

    /**
     * Accepts a pending incoming connection on this port. If there are no pending sessions, will
     * return ERR_NO_PENDING_SESSIONS.
     */
    ResultVal<KServerSession*> Accept();

    /// Whether or not this server port has an HLE handler available.
    bool HasHLEHandler() const {
        return hle_handler != nullptr;
    }

    /// Gets the HLE handler for this port.
    HLEHandler GetHLEHandler() const {
        return hle_handler;
    }

    /**
     * Sets the HLE handler template for the port. ServerSessions crated by connecting to this port
     * will inherit a reference to this handler.
     */
    void SetHleHandler(HLEHandler hle_handler_) {
        hle_handler = std::move(hle_handler_);
    }

    /// Appends a ServerSession to the collection of ServerSessions
    /// waiting to be accepted by this port.
    void AppendPendingSession(KServerSession* pending_session);

    // Overridden virtual functions.
    virtual void Destroy() override;
    virtual bool IsSignaled() const override;

    // DEPRECATED

    std::string GetTypeName() const override {
        return "ServerPort";
    }
    std::string GetName() const override {
        return name;
    }

    static constexpr HandleType HANDLE_TYPE = HandleType::ServerPort;
    HandleType GetHandleType() const override {
        return HANDLE_TYPE;
    }

private:
    /// ServerSessions waiting to be accepted by the port
    std::vector<KServerSession*> pending_sessions;

    /// This session's HLE request handler template (optional)
    /// ServerSessions created from this port inherit a reference to this handler.
    HLEHandler hle_handler;

    /// Name of the port (optional)
    std::string name;
};

} // namespace Kernel