aboutsummaryrefslogblamecommitdiffstats
path: root/crow.h
blob: 2962e6abd60c0c03ad15419790e92599dab036c4 (plain) (tree)
1
2
3
4
5
6
7
8
9





                     
                      
                 
 
                             
 
                        
                    
                    



                   
                                                                                      
 
              
 
              

           

                            


         
                                           
         
                                       

         






                                                                                                            
                                        




                         
                               



                                                                    
                                                      






                                       




                               

                  
                       
                                                             
                         
         





                                                 

                            
                                  
 
                       

      
 
#pragma once
#include <string>
#include <functional>
#include <memory>
#include <future>
#include <stdint.h>
#include <type_traits>
#include <thread>

//#define CROW_ENABLE_LOGGING

#include "http_server.h"
#include "utility.h"
#include "routing.h"

// TEST
#include <iostream>

#define CROW_ROUTE(app, url) app.route<crow::black_magic::get_parameter_tag(url)>(url)

namespace crow
{
    class Crow
    {
    public:
        using self_t = Crow;
        Crow()
        {
        }

        response handle(const request& req)
        {
            return router_.handle(req);
        }

        template <uint64_t Tag>
        auto route(std::string&& rule)
            -> typename std::result_of<decltype(&Router::new_rule_tagged<Tag>)(Router, std::string&&)>::type
        {
            return router_.new_rule_tagged<Tag>(std::move(rule));
        }

        self_t& port(std::uint16_t port)
        {
            port_ = port;
            return *this;
        }

        self_t& multithreaded()
        {
            return concurrency(std::thread::hardware_concurrency());
        }

        self_t& concurrency(std::uint16_t concurrency)
        {
            if (concurrency < 1)
                concurrency = 1;
            concurrency_ = concurrency;
            return *this;
        }

        void validate()
        {
            router_.validate();
        }

        void run()
        {
            validate();
            Server<self_t> server(this, port_, concurrency_);
            server.run();
        }
        void debug_print()
        {
            std::cerr << "Routing:" << std::endl;
            router_.debug_print();
        }

    private:
        uint16_t port_ = 80;
        uint16_t concurrency_ = 1;

        Router router_;
    };
};