diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-23 15:47:13 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-23 15:47:13 +0000 |
commit | 49f674c71a033583c59aac67d6720fcb72cc28a4 (patch) | |
tree | e62b136a1372cac62cfac86d531f2c97a11b1c44 /plugins/SeenPlugin/file.cpp | |
parent | 3d2778a48e83fc02e5a2f8e13f4ec596cc1305c2 (diff) |
SeenPlugin:
renamed to .cpp
git-svn-id: http://svn.miranda-ng.org/main/trunk@563 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SeenPlugin/file.cpp')
-rw-r--r-- | plugins/SeenPlugin/file.cpp | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/plugins/SeenPlugin/file.cpp b/plugins/SeenPlugin/file.cpp new file mode 100644 index 0000000000..cac37f8c30 --- /dev/null +++ b/plugins/SeenPlugin/file.cpp @@ -0,0 +1,119 @@ +/*
+"Last Seen mod" plugin for Miranda IM
+Copyright ( C ) 2002-03 micron-x
+Copyright ( C ) 2005-07 Y.B.
+
+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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+File name : $URL: http://svn.berlios.de/svnroot/repos/mgoodies/trunk/lastseen-mod/file.c $
+Revision : $Rev: 1570 $
+Last change on : $Date: 2007-12-30 01:30:07 +0300 (Вс, 30 дек 2007) $
+Last change by : $Author: y_b $
+*/
+
+#include "seen.h"
+/*
+Prepares the log file:
+- calculates the absolute path (and store it in the db)
+- creates the directory
+
+*/
+int InitFileOutput(void)
+{
+ char szfpath[256]="",szmpath[256]="",*str;
+ DBVARIANT dbv;
+
+ GetModuleFileName(NULL,szmpath,MAX_PATH);
+ strcpy(szfpath,!DBGetContactSetting(NULL,S_MOD,"FileName",&dbv)?dbv.pszVal:DEFAULT_FILENAME);
+
+ DBFreeVariant(&dbv);
+
+ if(szfpath[0]=='\\')
+ strcpy(szfpath,szfpath+1);
+
+ str=strrchr(szmpath,'\\');
+ if(str!=NULL)
+ *++str=0;
+
+ strcat(szmpath,szfpath);
+
+ strcpy(szfpath,szmpath);
+
+ str=strrchr(szmpath,'\\');
+ if(str!=NULL)
+ *++str=0;
+/*
+//we dont need this anylonger. the directory is created in filewrite
+ if (!CreateDirectory(szmpath,NULL))
+ {
+ if (!(GetFileAttributes(szmpath) & FILE_ATTRIBUTE_DIRECTORY))
+ {
+ MessageBox(NULL,"Directory could not be created\nPlease choose another!","Last seen plugin",MB_OK|MB_ICONERROR);
+ DBWriteContactSettingByte(NULL,S_MOD,"FileOutput",0);
+ return 0;
+ }
+ }
+*/
+ DBWriteContactSettingString(NULL,S_MOD,"PathToFile",szfpath);
+
+ return 0;
+}
+
+//borrowed from netliblog.c
+static void CreateDirectoryTree(char *szDir)
+{
+ DWORD dwAttributes;
+ char *pszLastBackslash,szTestDir[MAX_PATH];
+
+ lstrcpynA(szTestDir,szDir,sizeof(szTestDir));
+ if ((dwAttributes=GetFileAttributesA(szTestDir))!=0xffffffff && dwAttributes&FILE_ATTRIBUTE_DIRECTORY) return;
+ pszLastBackslash=strrchr(szTestDir,'\\');
+ if(pszLastBackslash==NULL) return;
+ *pszLastBackslash='\0';
+ CreateDirectoryTree(szTestDir);
+ CreateDirectoryA(szTestDir,NULL);
+}
+
+/*
+Writes a line into the log.
+*/
+void FileWrite(HANDLE hcontact)
+{
+ HANDLE fhout;
+ DWORD byteswritten;
+ char szout[1024],sznl[3]="\r\n";
+ DBVARIANT dbv;
+
+ DBGetContactSetting(NULL,S_MOD,"PathToFile",&dbv);
+ strcpy(szout,ParseString(dbv.pszVal,hcontact,1));
+ fhout=CreateFile(szout,GENERIC_WRITE,0,NULL,OPEN_ALWAYS,0,NULL);
+ if (fhout==INVALID_HANDLE_VALUE){
+ CreateDirectoryTree(szout);
+ fhout=CreateFile(szout,GENERIC_WRITE,0,NULL,OPEN_ALWAYS,0,NULL);
+ if (fhout==INVALID_HANDLE_VALUE) return;
+ }
+ DBFreeVariant(&dbv);
+ SetFilePointer(fhout,0,0,FILE_END);
+
+ strcpy(szout,ParseString(!DBGetContactSetting(NULL,S_MOD,"FileStamp",&dbv)?dbv.pszVal:DEFAULT_FILESTAMP,hcontact,1));
+ DBFreeVariant(&dbv);
+
+ WriteFile(fhout,szout, (DWORD)_tcslen(szout),&byteswritten,NULL);
+ WriteFile(fhout,sznl, (DWORD)_tcslen(sznl),&byteswritten,NULL);
+
+ CloseHandle(fhout);
+
+
+}
|