summaryrefslogtreecommitdiff
path: root/plugins/Msg_Export/src/main.cpp
blob: 1433bac97f0be7915cd1bdf5df93a4cbc5dfa0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404

//This file is part of Msg_Export a Miranda IM plugin
//Copyright (C)2002 Kennet Nielsen ( http://sourceforge.net/projects/msg-export/ )
//
//This program is free software; you can redistribute it and/or
//modify it under the terms of the GNU General Public License
//as published by the Free Software Foundation; either
//version 2 of the License, or (at your option) any later version.
//
//This program is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//GNU General Public License for more details.
//
//You should have received a copy of the GNU General Public License
//along with this program; if not, write to the Free Software
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

#include <windows.h>
#include <Shellapi.h>

//#include "../Miranda-IM/resource.h"

#include "utils.h"
#include "options.h"
#include "FileViewer.h"
#include "Glob.h"

#include "resource.h"


#define MS_SHOW_EXPORT_HISTORY "History/ShowExportHistory"

HINSTANCE hInstance = NULL;
int hLangpack = 0;

// static so they can not be used from other modules ( sourcefiles )
static HANDLE hEventOptionsInitialize = 0;
static HANDLE hDBEventAdded = 0;
static HANDLE hDBContactDeleted = 0;
static HANDLE hEventSystemInit = 0;
static HANDLE hEventSystemShutdown = 0;

static HANDLE hServiceFunc = 0;

static HANDLE hOpenHistoryMenuItem = 0;

/////////////////////////////////////////////////////
// Remember to update the Version in the resource !!!
/////////////////////////////////////////////////////

PLUGININFOEX pluginInfo = {
	sizeof(PLUGININFOEX),
	"Message export (mod by ring0)",
	PLUGIN_MAKE_VERSION(3,1,0,3),
	"Exports every message, URL or File you receive to a text file.\r\n"
	"Messages are exported to one file per user, users may be set to use the same file",
	"Kennet Nielsen, mod by ring0",
	"Kennet_N@ofir.dk",
	"© 2002 Kennet Nielsen",
	"http://sourceforge.net/projects/msg-export/",
	UNICODE_AWARE,
    #ifdef _UNICODE
	{ 0x46102b07, 0xc215, 0x4162, { 0x9c, 0x83, 0xd3, 0x77, 0x88, 0x1d, 0xa7, 0xcc } } // {46102B07-C215-4162-9C83-D377881DA7CC}
    #else
	{ 0x13ff3b7e, 0x4976, 0x471f, { 0xa4, 0x75, 0x16, 0x62, 0xa4, 0xdd, 0xc, 0x3e } } // {13FF3B7E-4976-471f-A475-1662A4DD0C3E}
    #endif
};


/////////////////////////////////////////////////////////////////////
// Member Function : ShowExportHistory
// Type            : Global
// Parameters      : wParam - (WPARAM)(HANDLE)hContact
//                   lParam - ?
// Returns         : static int
// Description     : Called when user selects my menu item "Open Exported History"
//                   
// References      : -
// Remarks         : -
// Created         : 020422 , 22 April 2002
// Developer       : KN   
/////////////////////////////////////////////////////////////////////

static int ShowExportHistory(WPARAM wParam,LPARAM /*lParam*/)
{
	if( bUseInternalViewer() )
	{
		bShowFileViewer( (HANDLE)wParam );
		return 0;
	}
	bOpenExternaly( (HANDLE)wParam );
	return 0;
}

/////////////////////////////////////////////////////////////////////
// Member Function : nSystemShutdown
// Type            : Global
// Parameters      : wparam - 0
//                   lparam - 0
// Returns         : int
// Description     : 
//                   
// References      : -
// Remarks         : -
// Created         : 020428 , 28 April 2002
// Developer       : KN   
/////////////////////////////////////////////////////////////////////

int nSystemShutdown(WPARAM /*wparam*/,LPARAM /*lparam*/)
{
	if( hEventOptionsInitialize )
	{
		UnhookEvent(hEventOptionsInitialize);
		hEventOptionsInitialize = 0;
	}

	if( hDBEventAdded )
	{
		UnhookEvent(hDBEventAdded);
		hDBEventAdded = 0;
	}

	if( hDBContactDeleted )
	{
		UnhookEvent(hDBContactDeleted);
		hDBContactDeleted = 0;
	}

	if( hServiceFunc )
	{
		DestroyServiceFunction( hServiceFunc );
		hServiceFunc = 0;
	}

	if( hEventSystemInit )
	{
		UnhookEvent(hEventSystemInit);
		hEventSystemInit = 0;
	}

	if( hEventSystemShutdown )
	{
		UnhookEvent(hEventSystemShutdown); // here we unhook the fun we are in, might not bee good
		hEventSystemShutdown = 0;
	}
	return 0;
}

/////////////////////////////////////////////////////////////////////
// Member Function : MainInit
// Type            : Global
// Parameters      : wparam - ?
//                   lparam - ?
// Returns         : int
// Description     : Called when system modules has been loaded
//                   
// References      : -
// Remarks         : -
// Created         : 020422 , 22 April 2002
// Developer       : KN   
/////////////////////////////////////////////////////////////////////

int MainInit(WPARAM /*wparam*/,LPARAM /*lparam*/)
{

	Initilize();

	bReadMirandaDirAndPath();
	UpdateFileToColWidth();

	hDBEventAdded = HookEvent( ME_DB_EVENT_ADDED , nExportEvent );
	if( !hDBEventAdded )
		MessageBox( NULL , _T("Failed to HookEvent ME_DB_EVENT_ADDED") , MSG_BOX_TITEL , MB_OK );


	hDBContactDeleted = HookEvent( ME_DB_CONTACT_DELETED , nContactDeleted );
	if( !hDBContactDeleted )
		MessageBox( NULL , _T("Failed to HookEvent ME_DB_CONTACT_DELETED") , MSG_BOX_TITEL , MB_OK );
	

	hEventOptionsInitialize = HookEvent( ME_OPT_INITIALISE , OptionsInitialize );
	if( !hEventOptionsInitialize )
		MessageBox( NULL , _T("Failed to HookEvent ME_OPT_INITIALISE") , MSG_BOX_TITEL , MB_OK );


	CLISTMENUITEM mi;
	ZeroMemory(&mi,sizeof(mi));
	mi.cbSize=sizeof(mi);
	mi.flags=0;
	mi.pszContactOwner=NULL;    //all contacts
	mi.hIcon=LoadIcon(hInstance,MAKEINTRESOURCE(IDI_EXPORT_MESSAGE));

	if( bReplaceHistory )
	{
		mi.position= 1000090000;
		mi.pszName=Translate("View &History");
		mi.pszService=MS_HISTORY_SHOWCONTACTHISTORY;
	}
	else
	{
		mi.position = 1000090100;
		mi.pszName=Translate("Open E&xported History");
		mi.pszService=MS_SHOW_EXPORT_HISTORY;
	}
	hOpenHistoryMenuItem  = Menu_AddContactMenuItem(&mi);

	if( !hOpenHistoryMenuItem )
		MessageBox( NULL , _T("Failed to add menu item Open Exported History\nCallService(MS_CLIST_ADDCONTACTMENUITEM,...)") , MSG_BOX_TITEL , MB_OK );

/*
	hEventSystemShutdown = HookEvent( ME_SYSTEM_SHUTDOWN , nSystemShutdown );

	if( !hEventSystemShutdown )
		MessageBox( NULL , "Failed to HookEvent ME_SYSTEM_SHUTDOWN" , MSG_BOX_TITEL , MB_OK );
*/

/*
	_TCHAR szBuf[ 10000 ];
	for( int n = 0 ; n < 1000 ; n++ )
	{
		for( int y = 0 ; y < n ; y++ )
		{
			szBuf[ y ] = '0' + y%10;//((n + y) % 8 ) ? ('0' + ((n + y) % 10))  : ' ' ;
		}
		szBuf[ y ] = 0;

		HANDLE hFile = CreateFile( "C:\\test.txt" , GENERIC_WRITE , FILE_SHARE_READ , 0 ,OPEN_ALWAYS , FILE_ATTRIBUTE_NORMAL , NULL );
		SetFilePointer( hFile , 0 , 0 , FILE_END );

		bWriteNewLine( hFile , 10 );
		bWriteNewLine( hFile , 0 );
		bWriteNewLine( hFile , 120 );

		DWORD dwBytesWritten;
		WriteFile( hFile , "\r\n\r\n" , 4 , &dwBytesWritten , NULL );

		CloseHandle( hFile );
	//}*/
	
	return 0;
}



/////////////////////////////////////////////////////////////////////
// Member Function : DllMain
// Type            : Global
// Parameters      : hinst       - ?
//                   fdwReason   - ?
//                   lpvReserved - ?
// Returns         : BOOL WINAPI
// Description     : 
//                   
// References      : -
// Remarks         : -
// Created         : 020422 , 22 April 2002
// Developer       : KN   
/////////////////////////////////////////////////////////////////////

BOOL WINAPI DllMain(HINSTANCE hinst,DWORD /*fdwReason*/,LPVOID /*lpvReserved*/)
{
	hInstance=hinst;
	return 1;
}


#ifdef __cplusplus
extern "C" {
#endif


/////////////////////////////////////////////////////////////////////
// Member Function : MirandaPluginInfo
// Type            : Global
// Parameters      : mirandaVersion - ?
// Returns         : 
// Description     : 
//                   
// References      : -
// Remarks         : -
// Created         : 020422 , 22 April 2002
// Developer       : KN   
/////////////////////////////////////////////////////////////////////

__declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD /*mirandaVersion*/)
{
	return &pluginInfo;
}

static const MUUID interfaces[] = { MIID_HISTORYEXPORT, MIID_LAST};
extern "C" __declspec(dllexport) const MUUID * MirandaPluginInterfaces(void)
{
	return interfaces;
}

/////////////////////////////////////////////////////////////////////
// Member Function : Load
// Type            : Global
// Parameters      : link - ?
// Returns         : int
// Description     : 
//                   
// References      : -
// Remarks         : -
// Created         : 020422 , 22 April 2002
// Developer       : KN   
/////////////////////////////////////////////////////////////////////

int __declspec(dllexport)Load()
{
	mir_getLP(&pluginInfo);
	hEventSystemInit = HookEvent(ME_SYSTEM_MODULESLOADED,MainInit);

	if( !hEventSystemInit )
	{
		MessageBox( NULL , _T("Failed to HookEvent ME_SYSTEM_MODULESLOADED") , MSG_BOX_TITEL , MB_OK );
		return 0;
	}

	nMaxLineWidth = DBGetContactSettingWord( NULL , MODULE , "MaxLineWidth" , nMaxLineWidth );
	if( nMaxLineWidth < 5 )
		nMaxLineWidth = 5;

	sExportDir  = _DBGetString( NULL , MODULE , "ExportDir" , _T("%dbpath%\\MsgExport\\") );
	sDefaultFile = _DBGetString( NULL , MODULE , "DefaultFile" , _T("%nick%.txt") );

	sTimeFormat = _DBGetString( NULL , MODULE , "TimeFormat" , _T("d s") );

	sFileViewerPrg = _DBGetString( NULL , MODULE , "FileViewerPrg" , _T("") );
	bUseInternalViewer( DBGetContactSettingByte( NULL , MODULE , "UseInternalViewer" , bUseInternalViewer() ) != 0 );

	bReplaceHistory = DBGetContactSettingByte( NULL , MODULE , "ReplaceHistory" , bReplaceHistory ) != 0;
	bAppendNewLine = DBGetContactSettingByte( NULL , MODULE , "AppendNewLine" , bAppendNewLine ) != 0;
	bUseUtf8InNewFiles = DBGetContactSettingByte( NULL , MODULE , "UseUtf8InNewFiles" , bUseUtf8InNewFiles ) != 0;
	bUseLessAndGreaterInExport = DBGetContactSettingByte( NULL , MODULE , "UseLessAndGreaterInExport" , bUseLessAndGreaterInExport ) != 0;

	enRenameAction = (ENDialogAction)DBGetContactSettingByte( NULL , MODULE , "RenameAction" , enRenameAction );
	enDeleteAction = (ENDialogAction)DBGetContactSettingByte( NULL , MODULE , "DeleteAction" , enDeleteAction );;

	// Plugin sweeper support
	DBWriteContactSettingTString(NULL,"Uninstall","Message Export",_T(MODULE));

	if( bReplaceHistory )
	{
		hServiceFunc = CreateServiceFunction(MS_HISTORY_SHOWCONTACTHISTORY,(MIRANDASERVICE)ShowExportHistory); //this need new code
/*		if( hServiceFunc )
		{
			int *disableDefaultModule=(int*)CallService(MS_PLUGINS_GETDISABLEDEFAULTARRAY,0,0);
			if( disableDefaultModule )
			{
				disableDefaultModule[DEFMOD_UIHISTORY] = TRUE;
			}
			else
			{
				DestroyServiceFunction( hServiceFunc );
				hServiceFunc = 0;
			}
		}*/

		if( ! hServiceFunc ) 
			MessageBox( NULL , TranslateTS(_T("Failed to replace Miranda History.\r\nThis is most likely due to changes in Miranda.")) , MSG_BOX_TITEL , MB_OK );
	}

	if( ! hServiceFunc )
	{
		hServiceFunc = CreateServiceFunction(MS_SHOW_EXPORT_HISTORY,(MIRANDASERVICE)ShowExportHistory);
	}

	if( ! hServiceFunc )
	{
		MessageBox( NULL , _T("Failed to CreateServiceFunction MS_SHOW_EXPORT_HISTORY") , MSG_BOX_TITEL , MB_OK );
	}

	return 0;
}

/////////////////////////////////////////////////////////////////////
// Member Function : Unload
// Type            : Global
// Parameters      : none
// Returns         : 
// Description     : 
//                   
// References      : -
// Remarks         : -
// Created         : 020422 , 22 April 2002
// Developer       : KN   
/////////////////////////////////////////////////////////////////////

__declspec(dllexport)int Unload(void)
{
	//if( !hEventSystemShutdown ) // we will try to unload anyway 
	{
		nSystemShutdown(0,0);
	}
	Uninitilize();
	bUseInternalViewer( false );
	return 0;
}

#ifdef __cplusplus
}
#endif