JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
CWinSharedMem Class Reference

#include <WinSMTool.h>

Public Member Functions

 CWinSharedMem (void)
 
 CWinSharedMem (const char *name, int size=JBXWL_DEFAULT_SMSZIE)
 
virtual ~CWinSharedMem (void)
 
int get ()
 
void put ()
 

Public Attributes

Buffer * buf
 

Protected Attributes

HANDLE m_hMapping = NULL
 
HANDLE m_hMapping_sz = NULL
 
void * m_pMappingView = NULL
 
void * m_pMappingView_sz = NULL
 
CMutex * m_pMutex = NULL
 

Detailed Description

Definition at line 19 of file WinSMTool.h.

Constructor & Destructor Documentation

◆ CWinSharedMem() [1/2]

CWinSharedMem ( void )

Definition at line 9 of file WinSMTool.cpp.

10{
12}
#define JBXWL_DEFAULT_SMNAME
Definition WinSMTool.h:11
#define JBXWL_DEFAULT_SMSZIE
Definition WinSMTool.h:12

References CWinSharedMem::CWinSharedMem(), JBXWL_DEFAULT_SMNAME, and JBXWL_DEFAULT_SMSZIE.

Referenced by CWinSharedMem::CWinSharedMem().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ CWinSharedMem() [2/2]

CWinSharedMem ( const char * name,
int size = JBXWL_DEFAULT_SMSZIE )

Definition at line 15 of file WinSMTool.cpp.

16{
17 buf = new_Buffer(JBXWL_DEFAULT_SMSZIE + 1);
18
19 TCHAR sznm[] = _T("_SZ");
20
21 m_hMapping = OpenFileMapping(FILE_MAP_ALL_ACCESS, FALSE, mbs2ts((char*)name));
22 if (m_hMapping == NULL) {
23 // メモリマップドファイルの生成
24 m_hMapping = ::CreateFileMapping(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, size, mbs2ts((char*)name));
25 }
26 if (m_hMapping != NULL) {
27 // プロセス内のアドレス空間にファイルのビューをマップ
28 m_pMappingView = ::MapViewOfFile(m_hMapping, FILE_MAP_ALL_ACCESS, 0, 0, size);
29 // ミューテックスオブジェクトの生成
30 m_pMutex = new CMutex((BOOL)FALSE, (LPCTSTR)(mbs2ts((char*)name) + mbs2ts("_mutex")));
31 }
32
33 // サイズ用 4byte
34 m_hMapping_sz = OpenFileMapping(FILE_MAP_ALL_ACCESS, FALSE, mbs2ts((char*)name) + sznm);
35 if (m_hMapping_sz == NULL) {
36 m_hMapping_sz = ::CreateFileMapping(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, size, mbs2ts((char*)name) + sznm);
37 }
38 if (m_hMapping_sz != NULL) {
39 m_pMappingView_sz = ::MapViewOfFile(m_hMapping_sz, FILE_MAP_ALL_ACCESS, 0, 0, 4);
40 }
41}
CString mbs2ts(char *str)
Definition WinTools.cpp:79

References CWinSharedMem::buf, JBXWL_DEFAULT_SMSZIE, CWinSharedMem::m_hMapping, CWinSharedMem::m_hMapping_sz, CWinSharedMem::m_pMappingView, CWinSharedMem::m_pMappingView_sz, CWinSharedMem::m_pMutex, and jbxwl::mbs2ts().

Here is the call graph for this function:

◆ ~CWinSharedMem()

~CWinSharedMem ( void )
virtual

Definition at line 44 of file WinSMTool.cpp.

45{
46 if (m_pMappingView != NULL) ::UnmapViewOfFile(m_pMappingView);
47 if (m_hMapping != NULL) ::CloseHandle(m_hMapping);
48 if (m_pMappingView_sz != NULL) ::UnmapViewOfFile(m_pMappingView_sz);
49 if (m_hMapping_sz != NULL) ::CloseHandle(m_hMapping_sz);
50 if (m_pMutex!=NULL) delete m_pMutex;
51
52 m_pMappingView = NULL;
53 m_hMapping = NULL;
54 m_pMappingView_sz = NULL;
55 m_hMapping_sz = NULL;
56 m_pMutex = NULL;
57
58 del_Buffer(&buf);
59}

References CWinSharedMem::buf, CWinSharedMem::m_hMapping, CWinSharedMem::m_hMapping_sz, CWinSharedMem::m_pMappingView, CWinSharedMem::m_pMappingView_sz, and CWinSharedMem::m_pMutex.

Member Function Documentation

◆ get()

int get ( )

Definition at line 63 of file WinSMTool.cpp.

64{
65 int sz, cc;
66
67 m_pMutex->Lock(INFINITE);
68 {
69 memcpy(&sz, m_pMappingView_sz, 4);
70 if (sz > 0) {
71 copy_b2Buffer(m_pMappingView, buf, sz);
72 cc = 0;
73 memcpy(m_pMappingView_sz, &cc, 4);
74 }
75 }
76 m_pMutex->Unlock();
77
78 return sz;
79}

References CWinSharedMem::buf, CWinSharedMem::m_pMappingView, CWinSharedMem::m_pMappingView_sz, and CWinSharedMem::m_pMutex.

◆ put()

void put ( )

Definition at line 83 of file WinSMTool.cpp.

84{
85 int seeksz = 0;
86
87 m_pMutex->Lock(INFINITE);
88 {
89 memcpy(&seeksz, m_pMappingView_sz, 4);
90 memcpy(((unsigned char*)m_pMappingView + seeksz), buf->buf, buf->vldsz);
91 seeksz += buf->vldsz;
92 memcpy(m_pMappingView_sz, &seeksz, 4);
93 }
94 m_pMutex->Unlock();
95
96 return;
97}

References CWinSharedMem::buf, CWinSharedMem::m_pMappingView, CWinSharedMem::m_pMappingView_sz, and CWinSharedMem::m_pMutex.

Member Data Documentation

◆ buf

◆ m_hMapping

HANDLE m_hMapping = NULL
protected

Definition at line 27 of file WinSMTool.h.

Referenced by CWinSharedMem::CWinSharedMem(), and CWinSharedMem::~CWinSharedMem().

◆ m_hMapping_sz

HANDLE m_hMapping_sz = NULL
protected

Definition at line 28 of file WinSMTool.h.

Referenced by CWinSharedMem::CWinSharedMem(), and CWinSharedMem::~CWinSharedMem().

◆ m_pMappingView

void* m_pMappingView = NULL
protected

◆ m_pMappingView_sz

void* m_pMappingView_sz = NULL
protected

◆ m_pMutex

CMutex* m_pMutex = NULL
protected

The documentation for this class was generated from the following files: