Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tg
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
tg
Commits
e5f524b0
Commit
e5f524b0
authored
Aug 22, 2014
by
Vysheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix queries_num
parent
be79a6c0
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
74 additions
and
12 deletions
+74
-12
loop.c
loop.c
+60
-3
main.c
main.c
+9
-5
queries.c
queries.c
+4
-4
tgl.h
tgl.h
+1
-0
No files found.
loop.c
View file @
e5f524b0
...
@@ -64,10 +64,10 @@ extern int unknown_user_list_pos;
...
@@ -64,10 +64,10 @@ extern int unknown_user_list_pos;
extern
int
unknown_user_list
[];
extern
int
unknown_user_list
[];
int
register_mode
;
int
register_mode
;
extern
int
safe_quit
;
extern
int
safe_quit
;
int
queries_num
;
extern
int
sync_from_start
;
extern
int
sync_from_start
;
void
got_it
(
char
*
line
,
int
len
);
void
got_it
(
char
*
line
,
int
len
);
void
write_state_file
(
void
);
static
void
stdin_read_callback
(
evutil_socket_t
fd
,
short
what
,
void
*
arg
)
{
static
void
stdin_read_callback
(
evutil_socket_t
fd
,
short
what
,
void
*
arg
)
{
if
(((
long
)
arg
)
&
1
)
{
if
(((
long
)
arg
)
&
1
)
{
...
@@ -95,11 +95,12 @@ void net_loop (int flags, int (*is_end)(void)) {
...
@@ -95,11 +95,12 @@ void net_loop (int flags, int (*is_end)(void)) {
#ifdef USE_LUA
#ifdef USE_LUA
lua_do_all
();
lua_do_all
();
#endif
#endif
if
(
safe_quit
&&
!
queries_num
)
{
if
(
safe_quit
&&
!
tgl_state
.
active_queries
)
{
printf
(
"All done. Exit
\n
"
);
printf
(
"All done. Exit
\n
"
);
rl_callback_handler_remove
();
rl_callback_handler_remove
();
exit
(
0
);
exit
(
0
);
}
}
write_state_file
();
if
(
unknown_user_list_pos
)
{
if
(
unknown_user_list_pos
)
{
int
i
;
int
i
;
for
(
i
=
0
;
i
<
unknown_user_list_pos
;
i
++
)
{
for
(
i
=
0
;
i
<
unknown_user_list_pos
;
i
++
)
{
...
@@ -231,6 +232,62 @@ int wait_dialog_list;
...
@@ -231,6 +232,62 @@ int wait_dialog_list;
extern
struct
tgl_update_callback
upd_cb
;
extern
struct
tgl_update_callback
upd_cb
;
#define DC_SERIALIZED_MAGIC 0x868aa81d
#define DC_SERIALIZED_MAGIC 0x868aa81d
#define STATE_FILE_MAGIC 0x28949a93
#define SECRET_FILE_MAGIX 0x37a1988a
char
*
get_auth_key_filename
(
void
);
char
*
get_state_filename
(
void
);
void
read_state_file
(
void
)
{
if
(
binlog_enabled
)
{
return
;
}
int
state_file_fd
=
open
(
get_state_filename
(),
O_CREAT
|
O_RDWR
,
0600
);
if
(
state_file_fd
<
0
)
{
return
;
}
int
version
,
magic
;
if
(
read
(
state_file_fd
,
&
magic
,
4
)
<
4
)
{
close
(
state_file_fd
);
return
;
}
if
(
magic
!=
(
int
)
STATE_FILE_MAGIC
)
{
close
(
state_file_fd
);
return
;
}
if
(
read
(
state_file_fd
,
&
version
,
4
)
<
4
)
{
close
(
state_file_fd
);
return
;
}
assert
(
version
>=
0
);
int
x
[
4
];
if
(
read
(
state_file_fd
,
x
,
16
)
<
16
)
{
close
(
state_file_fd
);
return
;
}
int
pts
=
x
[
0
];
int
qts
=
x
[
1
];
int
seq
=
x
[
2
];
int
date
=
x
[
3
];
close
(
state_file_fd
);
bl_do_set_seq
(
seq
);
bl_do_set_pts
(
pts
);
bl_do_set_qts
(
qts
);
bl_do_set_date
(
date
);
}
void
write_state_file
(
void
)
{
if
(
binlog_enabled
)
{
return
;
}
static
int
wseq
;
static
int
wpts
;
static
int
wqts
;
static
int
wdate
;
if
(
wseq
>=
tgl_state
.
seq
&&
wpts
>=
tgl_state
.
pts
&&
wqts
>=
tgl_state
.
qts
&&
wdate
>=
tgl_state
.
date
)
{
return
;
}
wseq
=
tgl_state
.
seq
;
wpts
=
tgl_state
.
pts
;
wqts
=
tgl_state
.
qts
;
wdate
=
tgl_state
.
date
;
int
state_file_fd
=
open
(
get_state_filename
(),
O_CREAT
|
O_RDWR
,
0600
);
if
(
state_file_fd
<
0
)
{
logprintf
(
"Can not write state file '%s': %m
\n
"
,
get_state_filename
());
exit
(
2
);
}
int
x
[
6
];
x
[
0
]
=
STATE_FILE_MAGIC
;
x
[
1
]
=
0
;
x
[
2
]
=
wpts
;
x
[
3
]
=
wqts
;
x
[
4
]
=
wseq
;
x
[
5
]
=
wdate
;
assert
(
write
(
state_file_fd
,
x
,
24
)
==
24
);
close
(
state_file_fd
);
}
void
write_dc
(
struct
tgl_dc
*
DC
,
void
*
extra
)
{
void
write_dc
(
struct
tgl_dc
*
DC
,
void
*
extra
)
{
int
auth_file_fd
=
*
(
int
*
)
extra
;
int
auth_file_fd
=
*
(
int
*
)
extra
;
...
@@ -253,7 +310,6 @@ void write_dc (struct tgl_dc *DC, void *extra) {
...
@@ -253,7 +310,6 @@ void write_dc (struct tgl_dc *DC, void *extra) {
assert
(
write
(
auth_file_fd
,
DC
->
auth_key
,
256
)
==
256
);
assert
(
write
(
auth_file_fd
,
DC
->
auth_key
,
256
)
==
256
);
}
}
char
*
get_auth_key_filename
(
void
);
void
write_auth_file
(
void
)
{
void
write_auth_file
(
void
)
{
if
(
binlog_enabled
)
{
return
;
}
if
(
binlog_enabled
)
{
return
;
}
int
auth_file_fd
=
open
(
get_auth_key_filename
(),
O_CREAT
|
O_RDWR
,
0600
);
int
auth_file_fd
=
open
(
get_auth_key_filename
(),
O_CREAT
|
O_RDWR
,
0600
);
...
@@ -350,6 +406,7 @@ int loop (void) {
...
@@ -350,6 +406,7 @@ int loop (void) {
tgl_reopen_binlog_for_writing
();
tgl_reopen_binlog_for_writing
();
}
else
{
}
else
{
read_auth_file
();
read_auth_file
();
read_state_file
();
}
}
binlog_read
=
1
;
binlog_read
=
1
;
//exit (0);
//exit (0);
...
...
main.c
View file @
e5f524b0
...
@@ -321,7 +321,6 @@ void parse_config (void) {
...
@@ -321,7 +321,6 @@ void parse_config (void) {
parse_config_val
(
&
conf
,
&
auth_file_name
,
"auth_file"
,
AUTH_KEY_FILE
,
config_directory
);
parse_config_val
(
&
conf
,
&
auth_file_name
,
"auth_file"
,
AUTH_KEY_FILE
,
config_directory
);
parse_config_val
(
&
conf
,
&
downloads_directory
,
"downloads"
,
DOWNLOADS_DIRECTORY
,
config_directory
);
parse_config_val
(
&
conf
,
&
downloads_directory
,
"downloads"
,
DOWNLOADS_DIRECTORY
,
config_directory
);
parse_config_val
(
&
conf
,
&
binlog_file_name
,
"binlog"
,
BINLOG_FILE
,
config_directory
);
if
(
!
lua_file
)
{
if
(
!
lua_file
)
{
parse_config_val
(
&
conf
,
&
lua_file
,
"lua_script"
,
0
,
config_directory
);
parse_config_val
(
&
conf
,
&
lua_file
,
"lua_script"
,
0
,
config_directory
);
...
@@ -331,11 +330,14 @@ void parse_config (void) {
...
@@ -331,11 +330,14 @@ void parse_config (void) {
config_lookup_bool
(
&
conf
,
buf
,
&
binlog_enabled
);
config_lookup_bool
(
&
conf
,
buf
,
&
binlog_enabled
);
if
(
binlog_enabled
)
{
if
(
binlog_enabled
)
{
parse_config_val
(
&
conf
,
&
binlog_file_name
,
"binlog"
,
BINLOG_FILE
,
config_directory
);
tgl_set_binlog_mode
(
1
);
tgl_set_binlog_mode
(
1
);
tgl_set_binlog_path
(
binlog_file_name
);
tgl_set_binlog_path
(
binlog_file_name
);
}
else
{
}
else
{
tgl_set_binlog_mode
(
0
);
tgl_set_binlog_mode
(
0
);
tgl_set_auth_file_path
(
auth_file_name
);
parse_config_val
(
&
conf
,
&
state_file_name
,
"state_file"
,
STATE_FILE
,
config_directory
);
parse_config_val
(
&
conf
,
&
secret_chat_file_name
,
"secret"
,
SECRET_CHAT_FILE
,
config_directory
);
//tgl_set_auth_file_path (auth_file_name);
}
}
tgl_set_download_directory
(
downloads_directory
);
tgl_set_download_directory
(
downloads_directory
);
...
@@ -349,16 +351,18 @@ void parse_config (void) {
...
@@ -349,16 +351,18 @@ void parse_config (void) {
#else
#else
void
parse_config
(
void
)
{
void
parse_config
(
void
)
{
printf
(
"libconfig not enabled
\n
"
);
printf
(
"libconfig not enabled
\n
"
);
tasprintf
(
&
auth_file_name
,
"%s/%s/%s"
,
get_home_directory
(),
CONFIG_DIRECTORY
,
AUTH_KEY_FILE
);
tasprintf
(
&
downloads_directory
,
"%s/%s/%s"
,
get_home_directory
(),
CONFIG_DIRECTORY
,
DOWNLOADS_DIRECTORY
);
tasprintf
(
&
downloads_directory
,
"%s/%s/%s"
,
get_home_directory
(),
CONFIG_DIRECTORY
,
DOWNLOADS_DIRECTORY
);
tasprintf
(
&
binlog_file_name
,
"%s/%s/%s"
,
get_home_directory
(),
CONFIG_DIRECTORY
,
BINLOG_FILE
);
if
(
binlog_enabled
)
{
if
(
binlog_enabled
)
{
tasprintf
(
&
binlog_file_name
,
"%s/%s/%s"
,
get_home_directory
(),
CONFIG_DIRECTORY
,
BINLOG_FILE
);
tgl_set_binlog_mode
(
1
);
tgl_set_binlog_mode
(
1
);
tgl_set_binlog_path
(
binlog_file_name
);
tgl_set_binlog_path
(
binlog_file_name
);
}
else
{
}
else
{
tgl_set_binlog_mode
(
0
);
tgl_set_binlog_mode
(
0
);
tgl_set_auth_file_path
(
auth_file_name
;
//tgl_set_auth_file_path (auth_file_name;
tasprintf
(
&
auth_file_name
,
"%s/%s/%s"
,
get_home_directory
(),
CONFIG_DIRECTORY
,
AUTH_KEY_FILE
);
tasprintf
(
&
state_file_name
,
"%s/%s/%s"
,
get_home_directory
(),
CONFIG_DIRECTORY
,
STATE_FILE
);
tasprintf
(
&
secret_chat_file_name
,
"%s/%s/%s"
,
get_home_directory
(),
CONFIG_DIRECTORY
,
SECRET_CHAT_FILE
);
}
}
tgl_set_download_directory
(
downloads_directory
);
tgl_set_download_directory
(
downloads_directory
);
}
}
...
...
queries.c
View file @
e5f524b0
...
@@ -73,7 +73,7 @@ char *get_downloads_directory (void);
...
@@ -73,7 +73,7 @@ char *get_downloads_directory (void);
//extern int binlog_enabled;
//extern int binlog_enabled;
//extern int sync_from_start;
//extern int sync_from_start;
static
int
queries_num
;
//
static int queries_num;
static
void
out_peer_id
(
tgl_peer_id_t
id
);
static
void
out_peer_id
(
tgl_peer_id_t
id
);
#define QUERY_TIMEOUT 6.0
#define QUERY_TIMEOUT 6.0
...
@@ -159,7 +159,7 @@ struct query *tglq_send_query (struct tgl_dc *DC, int ints, void *data, struct q
...
@@ -159,7 +159,7 @@ struct query *tglq_send_query (struct tgl_dc *DC, int ints, void *data, struct q
q
->
extra
=
extra
;
q
->
extra
=
extra
;
q
->
callback
=
callback
;
q
->
callback
=
callback
;
q
->
callback_extra
=
callback_extra
;
q
->
callback_extra
=
callback_extra
;
queries_num
++
;
tgl_state
.
active_queries
++
;
return
q
;
return
q
;
}
}
...
@@ -201,7 +201,7 @@ void tglq_query_error (long long id) {
...
@@ -201,7 +201,7 @@ void tglq_query_error (long long id) {
event_free
(
q
->
ev
);
event_free
(
q
->
ev
);
tfree
(
q
,
sizeof
(
*
q
));
tfree
(
q
,
sizeof
(
*
q
));
}
}
queries_num
--
;
tgl_state
.
active_queries
--
;
}
}
#define MAX_PACKED_SIZE (1 << 24)
#define MAX_PACKED_SIZE (1 << 24)
...
@@ -267,7 +267,7 @@ void tglq_query_result (long long id UU) {
...
@@ -267,7 +267,7 @@ void tglq_query_result (long long id UU) {
in_ptr
=
end
;
in_ptr
=
end
;
in_end
=
eend
;
in_end
=
eend
;
}
}
queries_num
--
;
tgl_state
.
active_queries
--
;
}
}
...
...
tgl.h
View file @
e5f524b0
...
@@ -109,6 +109,7 @@ struct tgl_state {
...
@@ -109,6 +109,7 @@ struct tgl_state {
int
test_mode
;
int
test_mode
;
int
verbosity
;
int
verbosity
;
int
unread_messages
;
int
unread_messages
;
int
active_queries
;
long
long
locks
;
long
long
locks
;
struct
tgl_dc
*
DC_list
[
TGL_MAX_DC_NUM
];
struct
tgl_dc
*
DC_list
[
TGL_MAX_DC_NUM
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment