Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
conduwuit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
🥺
conduwuit
Commits
b19d2ad5
Commit
b19d2ad5
authored
11 months ago
by
Jason Volk
Committed by
🥺
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
daily logging improvements
Signed-off-by:
Jason Volk
<
jason@zemos.net
>
parent
8ecf722a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/service/rooms/auth_chain/mod.rs
+1
-0
1 addition, 0 deletions
src/service/rooms/auth_chain/mod.rs
src/service/rooms/typing/mod.rs
+4
-5
4 additions, 5 deletions
src/service/rooms/typing/mod.rs
with
5 additions
and
5 deletions
src/service/rooms/auth_chain/mod.rs
+
1
−
0
View file @
b19d2ad5
...
@@ -30,6 +30,7 @@ pub(crate) async fn event_ids_iter<'a>(
...
@@ -30,6 +30,7 @@ pub(crate) async fn event_ids_iter<'a>(
.filter_map
(
move
|
sid
|
services
()
.rooms.short
.get_eventid_from_short
(
sid
)
.ok
()))
.filter_map
(
move
|
sid
|
services
()
.rooms.short
.get_eventid_from_short
(
sid
)
.ok
()))
}
}
#[tracing::instrument(skip_all)]
pub
(
crate
)
async
fn
get_auth_chain
(
&
self
,
room_id
:
&
RoomId
,
starting_events
:
&
[
&
EventId
])
->
Result
<
Vec
<
u64
>>
{
pub
(
crate
)
async
fn
get_auth_chain
(
&
self
,
room_id
:
&
RoomId
,
starting_events
:
&
[
&
EventId
])
->
Result
<
Vec
<
u64
>>
{
const
NUM_BUCKETS
:
usize
=
50
;
//TODO: change possible w/o disrupting db?
const
NUM_BUCKETS
:
usize
=
50
;
//TODO: change possible w/o disrupting db?
const
BUCKET
:
BTreeSet
<
(
u64
,
&
EventId
)
>
=
BTreeSet
::
new
();
const
BUCKET
:
BTreeSet
<
(
u64
,
&
EventId
)
>
=
BTreeSet
::
new
();
...
...
This diff is collapsed.
Click to expand it.
src/service/rooms/typing/mod.rs
+
4
−
5
View file @
b19d2ad5
...
@@ -6,10 +6,9 @@
...
@@ -6,10 +6,9 @@
OwnedRoomId
,
OwnedUserId
,
RoomId
,
UserId
,
OwnedRoomId
,
OwnedUserId
,
RoomId
,
UserId
,
};
};
use
tokio
::
sync
::{
broadcast
,
RwLock
};
use
tokio
::
sync
::{
broadcast
,
RwLock
};
use
tracing
::
debug
;
use
crate
::{
use
crate
::{
services
,
debug_info
,
services
,
utils
::{
self
,
user_id
::
user_is_local
},
utils
::{
self
,
user_id
::
user_is_local
},
Result
,
Result
,
};
};
...
@@ -26,7 +25,7 @@ impl Service {
...
@@ -26,7 +25,7 @@ impl Service {
/// Sets a user as typing until the timeout timestamp is reached or
/// Sets a user as typing until the timeout timestamp is reached or
/// roomtyping_remove is called.
/// roomtyping_remove is called.
pub
(
crate
)
async
fn
typing_add
(
&
self
,
user_id
:
&
UserId
,
room_id
:
&
RoomId
,
timeout
:
u64
)
->
Result
<
()
>
{
pub
(
crate
)
async
fn
typing_add
(
&
self
,
user_id
:
&
UserId
,
room_id
:
&
RoomId
,
timeout
:
u64
)
->
Result
<
()
>
{
debug!
(
"typing
ad
d {:?} in {:?} timeout:{:?}"
,
user_id
,
room_id
,
timeout
);
debug
_info
!
(
"typing
starte
d {:?} in {:?} timeout:{:?}"
,
user_id
,
room_id
,
timeout
);
// update clients
// update clients
self
.typing
self
.typing
.write
()
.write
()
...
@@ -50,7 +49,7 @@ pub(crate) async fn typing_add(&self, user_id: &UserId, room_id: &RoomId, timeou
...
@@ -50,7 +49,7 @@ pub(crate) async fn typing_add(&self, user_id: &UserId, room_id: &RoomId, timeou
/// Removes a user from typing before the timeout is reached.
/// Removes a user from typing before the timeout is reached.
pub
(
crate
)
async
fn
typing_remove
(
&
self
,
user_id
:
&
UserId
,
room_id
:
&
RoomId
)
->
Result
<
()
>
{
pub
(
crate
)
async
fn
typing_remove
(
&
self
,
user_id
:
&
UserId
,
room_id
:
&
RoomId
)
->
Result
<
()
>
{
debug!
(
"typing
remove
{:?} in {:?}"
,
user_id
,
room_id
);
debug
_info
!
(
"typing
stopped
{:?} in {:?}"
,
user_id
,
room_id
);
// update clients
// update clients
self
.typing
self
.typing
.write
()
.write
()
...
@@ -107,7 +106,7 @@ async fn typings_maintain(&self, room_id: &RoomId) -> Result<()> {
...
@@ -107,7 +106,7 @@ async fn typings_maintain(&self, room_id: &RoomId) -> Result<()> {
let
typing
=
&
mut
self
.typing
.write
()
.await
;
let
typing
=
&
mut
self
.typing
.write
()
.await
;
let
room
=
typing
.entry
(
room_id
.to_owned
())
.or_default
();
let
room
=
typing
.entry
(
room_id
.to_owned
())
.or_default
();
for
user
in
&
removable
{
for
user
in
&
removable
{
debug!
(
"typing
maintain remove
{:?} in {:?}"
,
&
user
,
room_id
);
debug
_info
!
(
"typing
timeout
{:?} in {:?}"
,
&
user
,
room_id
);
room
.remove
(
user
);
room
.remove
(
user
);
}
}
// update clients
// update clients
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment