mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:32:46 +00:00 
			
		
		
		
	 7abb782206
			
		
	
	
		7abb782206
		
	
	
	
	
		
			
			https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Jan de Visser <jan@de-visser.net>
 | |
|  * Copyright (c) 2022, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibIPC/ConnectionToServer.h>
 | |
| #include <SQLServer/SQLClientEndpoint.h>
 | |
| #include <SQLServer/SQLServerEndpoint.h>
 | |
| 
 | |
| namespace SQL {
 | |
| 
 | |
| class SQLClient
 | |
|     : public IPC::ConnectionToServer<SQLClientEndpoint, SQLServerEndpoint>
 | |
|     , public SQLClientEndpoint {
 | |
|     IPC_CLIENT_CONNECTION(SQLClient, "/tmp/portal/sql")
 | |
|     virtual ~SQLClient() = default;
 | |
| 
 | |
|     Function<void(int, String const&)> on_connected;
 | |
|     Function<void(int)> on_disconnected;
 | |
|     Function<void(int, int, String const&)> on_connection_error;
 | |
|     Function<void(int, int, String const&)> on_execution_error;
 | |
|     Function<void(int, bool, int, int, int)> on_execution_success;
 | |
|     Function<void(int, Vector<String> const&)> on_next_result;
 | |
|     Function<void(int, int)> on_results_exhausted;
 | |
| 
 | |
| private:
 | |
|     SQLClient(NonnullOwnPtr<Core::Stream::LocalSocket> socket)
 | |
|         : IPC::ConnectionToServer<SQLClientEndpoint, SQLServerEndpoint>(*this, move(socket))
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     virtual void connected(int connection_id, String const& connected_to_database) override;
 | |
|     virtual void connection_error(int connection_id, int code, String const& message) override;
 | |
|     virtual void execution_success(int statement_id, bool has_results, int created, int updated, int deleted) override;
 | |
|     virtual void next_result(int statement_id, Vector<String> const&) override;
 | |
|     virtual void results_exhausted(int statement_id, int total_rows) override;
 | |
|     virtual void execution_error(int statement_id, int code, String const& message) override;
 | |
|     virtual void disconnected(int connection_id) override;
 | |
| };
 | |
| 
 | |
| }
 |