JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
WinSMTool.cpp
Go to the documentation of this file.
1
2#include "WinSMTool.h"
3#include "WinTools.h"
4
5
6using namespace jbxwl;
7
8
13
14
15CWinSharedMem::CWinSharedMem(const char* name, int size)
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}
42
43
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}
60
61
62// 共有メモリの内容を取得
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}
80
81
82// 共有メモリへ書き込む
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}
98
99
100
102
104
105
107{
108 jbxwl::_Debug_SHM = new CWinSharedMem("jbxwl_SHM_DEBUGGER");
109}
110
111
113{
114 if (jbxwl::_Debug_SHM != NULL) delete(jbxwl::_Debug_SHM);
115 jbxwl::_Debug_SHM = NULL;
116}
#define JBXWL_DEFAULT_SMNAME
Definition WinSMTool.h:11
#define JBXWL_DEFAULT_SMSZIE
Definition WinSMTool.h:12
virtual ~CWinSharedMem(void)
Definition WinSMTool.cpp:44
CWinSharedMem * _Debug_SHM
////////////////////////////////////////////////////////////
CString mbs2ts(char *str)
Definition WinTools.cpp:79
void open_shm_debuger(void)
void close_shm_debuger(void)