Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
captainwong
jlib
Commits
295cdfc8
Commit
295cdfc8
authored
Dec 14, 2016
by
captainwong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:/captainwong/Global
Because I Can.
parents
7bdb54bc
837f8d03
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
9 deletions
+13
-9
observer.h
dp/observer.h
+8
-8
singleton.h
dp/singleton.h
+4
-0
MyWSAError.h
win32/MyWSAError.h
+1
-1
No files found.
dp/observer.h
View file @
295cdfc8
...
@@ -23,24 +23,24 @@ public:
...
@@ -23,24 +23,24 @@ public:
typedef
std
::
weak_ptr
<
observer_type
>
observer_ptr
;
typedef
std
::
weak_ptr
<
observer_type
>
observer_ptr
;
typedef
std
::
lock_guard
<
std
::
mutex
>
lock_guard_type
;
typedef
std
::
lock_guard
<
std
::
mutex
>
lock_guard_type
;
protected
:
protected
:
mutable
std
::
mutex
_mutex
;
mutable
std
::
mutex
mutex_
;
std
::
list
<
observer_ptr
>
_observers
;
std
::
list
<
observer_ptr
>
observers_
;
public
:
public
:
void
register_observer
(
const
observer_ptr
&
obj
)
{
void
register_observer
(
const
observer_ptr
&
obj
)
{
lock_guard_type
lock
(
_mutex
);
lock_guard_type
lock
(
mutex_
);
_observers
.
push_back
(
obj
);
observers_
.
push_back
(
obj
);
}
}
void
notify_observers
(
const
target
&
target
)
{
void
notify_observers
(
const
target
&
target
)
{
lock_guard_type
lock
(
_mutex
);
lock_guard_type
lock
(
mutex_
);
auto
iter
=
_observers
.
begin
();
auto
iter
=
observers_
.
begin
();
while
(
iter
!=
_observers
.
end
())
{
while
(
iter
!=
observers_
.
end
())
{
std
::
shared_ptr
<
observer_type
>
obj
(
iter
->
lock
());
std
::
shared_ptr
<
observer_type
>
obj
(
iter
->
lock
());
if
(
obj
)
{
if
(
obj
)
{
obj
->
on_update
(
target
);
obj
->
on_update
(
target
);
++
iter
;
++
iter
;
}
else
{
}
else
{
iter
=
_observers
.
erase
(
iter
);
iter
=
observers_
.
erase
(
iter
);
}
}
}
}
}
}
...
...
dp/singleton.h
View file @
295cdfc8
...
@@ -38,6 +38,10 @@ public:
...
@@ -38,6 +38,10 @@ public:
static
void
release_singleton
()
{
static
void
release_singleton
()
{
instance_
=
nullptr
;
instance_
=
nullptr
;
}
}
static
bool
is_instance_exists
()
{
return
instance_
!=
nullptr
;
}
};
};
...
...
win32/MyWSAError.h
View file @
295cdfc8
#pragma once
#pragma once
namespace
jlib
namespace
jlib
{
{
inline
wchar_t
*
FormatWSAError
(
int
errornumber
)
inline
const
wchar_t
*
FormatWSAError
(
int
errornumber
)
{
{
switch
(
errornumber
)
{
switch
(
errornumber
)
{
case
WSANOTINITIALISED
:
case
WSANOTINITIALISED
:
...
...
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