summaryrefslogtreecommitdiff
path: root/plugins/SeenPlugin/file.cpp
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-23 13:49:28 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-23 13:49:28 +0000
commita9580df150d799246eaecbf3c1fb5cecf9f8ab49 (patch)
treece046b1cd432d65718c9f6af80521d533ce6d4ca /plugins/SeenPlugin/file.cpp
parent60338d55bb73d0c45b6e092703c4bb88a3c49755 (diff)
SecureIM, SeenPlugin, SendSS, Sessions: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1122 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SeenPlugin/file.cpp')
-rw-r--r--plugins/SeenPlugin/file.cpp119
1 files changed, 0 insertions, 119 deletions
diff --git a/plugins/SeenPlugin/file.cpp b/plugins/SeenPlugin/file.cpp
deleted file mode 100644
index cac37f8c30..0000000000
--- a/plugins/SeenPlugin/file.cpp
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
-"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);
-
-
-}