mars/kernel/mars_client.h

130 lines
3.1 KiB
C
Raw Permalink Normal View History

2014-11-21 10:51:34 +00:00
/*
* MARS Long Distance Replication Software
*
* This file is part of MARS project: http://schoebel.github.io/mars/
*
* Copyright (C) 2010-2014 Thomas Schoebel-Theuer
* Copyright (C) 2011-2014 1&1 Internet AG
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
2011-02-23 20:48:06 +00:00
#ifndef MARS_CLIENT_H
#define MARS_CLIENT_H
#include "mars_net.h"
#include "lib_limiter.h"
extern struct mars_limiter client_limiter;
2012-08-14 14:12:59 +00:00
extern int global_net_io_timeout;
extern int mars_client_info_timeout;
extern int mars_client_abort;
2014-04-01 09:24:46 +00:00
extern int max_client_channels;
extern int max_client_bulk;
extern atomic_t client_sender_count;
extern atomic_t client_receiver_count;
2014-04-01 09:24:46 +00:00
#define MAX_CLIENT_CHANNELS 4
2011-02-23 20:48:06 +00:00
struct client_mref_aspect {
GENERIC_ASPECT(mref);
struct list_head io_head;
2011-03-30 12:02:50 +00:00
struct list_head hash_head;
2012-01-23 12:39:08 +00:00
unsigned long submit_jiffies;
int alloc_len;
2011-02-23 20:48:06 +00:00
bool do_dealloc;
bool has_completed;
2023-05-16 07:33:23 +00:00
bool is_hashed;
2011-02-23 20:48:06 +00:00
};
struct client_brick {
MARS_BRICK(client);
2011-03-29 14:40:40 +00:00
// tunables
int max_flying; // limit on parallelism
bool limit_mode;
2014-04-01 09:24:46 +00:00
bool allow_permuting_writes;
bool separate_reads;
// readonly from outside
int connection_state; // 0 = switched off, 1 = not connected, 2 = connected
2020-01-22 13:19:14 +00:00
/* internal */
atomic_t sender_count;
atomic_t receiver_count;
2016-01-25 06:11:14 +00:00
int socket_count;
atomic_t fly_count;
atomic_t timeout_count;
2011-02-23 20:48:06 +00:00
};
struct client_input {
MARS_INPUT(client);
};
struct client_threadinfo {
struct task_struct *thread;
2014-04-01 09:24:46 +00:00
};
enum CL_CHANNEL_STATE {
CL_CHANNEL_INITIALIZED,
CL_CHANNEL_OPEN, /* socket is estabished */
CL_CHANNEL_USED, /* receiver thread has been created */
CL_CHANNEL_CONNECTED, /* first communication had no error */
};
2014-04-01 09:24:46 +00:00
struct client_channel {
struct mars_socket socket;
struct client_threadinfo receiver;
struct list_head wait_list;
struct client_output *output;
long current_space;
int recv_error;
2023-02-03 09:36:27 +00:00
int thread_restart_count;
2014-04-01 09:24:46 +00:00
int ch_nr;
enum CL_CHANNEL_STATE ch_state;
2014-04-01 09:24:46 +00:00
};
enum CL_BUNDLE_STATE {
CL_BUNDLE_INITIALIZED,
CL_BUNDLE_RESPONSE_GOT,
};
2014-04-01 09:24:46 +00:00
struct client_bundle {
char *host;
char *path;
2018-05-10 09:16:34 +00:00
struct mars_tcp_params *params;
2023-02-03 09:36:27 +00:00
int last_thread_nr;
short old_channel;
enum CL_BUNDLE_STATE bundle_state;
2014-04-01 09:24:46 +00:00
wait_queue_head_t sender_event;
struct client_threadinfo sender;
struct client_channel channel[MAX_CLIENT_CHANNELS];
2011-02-23 20:48:06 +00:00
};
struct client_output {
MARS_OUTPUT(client);
2017-12-10 21:23:48 +00:00
struct mutex mutex;
2011-02-23 20:48:06 +00:00
struct list_head mref_list;
int last_id;
2014-04-01 09:24:46 +00:00
struct client_bundle bundle;
2011-02-23 20:48:06 +00:00
struct mars_info info;
wait_queue_head_t info_event;
2011-03-07 05:55:10 +00:00
bool get_info;
2011-02-23 20:48:06 +00:00
bool got_info;
struct list_head *hash_table;
2011-02-23 20:48:06 +00:00
};
MARS_TYPES(client);
#endif