| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319 |
- #include "stdafx.h"
- #include "CP_Main.h"
- #include "OleClipSource.h"
- #include "shared/TextConvert.h"
- #include "CF_HDropAggregator.h"
- #include "CF_UnicodeTextAggregator.h"
- #include "CF_TextAggregator.h"
- #include "richtextaggregator.h"
- #include "htmlformataggregator.h"
- #include "Shared\Tokenizer.h"
- #include <random>
- #include "Client.h"
- #include "sqlite\unicode\unistr.h"
- #include "sqlite\unicode\uchar.h"
- #include "Path.h"
- #include "Md5.h"
- #include "DittoChaiScript.h"
- #include "ChaiScriptOnCopy.h"
- #include "Slugify.h"
- /*------------------------------------------------------------------*\
- COleClipSource
- \*------------------------------------------------------------------*/
- //IMPLEMENT_DYNAMIC(COleClipSource, COleDataSource)
- COleClipSource::COleClipSource()
- {
- m_bLoadedFormats = false;
- m_convertToHDROPOnDelayRender = false;
- }
- COleClipSource::~COleClipSource()
- {
-
- }
- BOOL COleClipSource::DoDelayRender()
- {
- CClipTypes types;
- m_ClipIDs.GetTypes(types);
- bool foundHDrop = false;
-
- INT_PTR count = types.GetSize();
- for(int i=0; i < count; i++)
- {
- if (m_pasteOptions.m_dragDropFilesOnly)
- {
- if (types[i] == CF_HDROP)
- {
- DelayRenderData(types[i]);
- }
- }
- else
- {
- DelayRenderData(types[i]);
- }
- if (types[i] == CF_HDROP)
- {
- foundHDrop = true;
- }
- }
- if (foundHDrop == false)
- {
- DelayRenderData(CF_HDROP);
- m_convertToHDROPOnDelayRender = true;
- }
- return count > 0;
- }
- BOOL COleClipSource::DoImmediateRender()
- {
- if(m_bLoadedFormats)
- return TRUE;
- m_bLoadedFormats = true;
- if(m_pasteOptions.m_pPasteFormats != NULL)
- {
- return PutFormatOnClipboard(m_pasteOptions.m_pPasteFormats) > 0;
- }
-
- INT_PTR count = m_ClipIDs.GetSize();
- if(count <= 0)
- return 0;
-
- CClip clip;
- if(count > 1)
- {
- CStringA SepA = CTextConvert::ConvertToChar(g_Opt.GetMultiPasteSeparator());
- CCF_TextAggregator CFText(SepA);
- if(m_ClipIDs.AggregateData(CFText, CF_TEXT, g_Opt.m_bMultiPasteReverse, m_pasteOptions.LimitFormatsToText()))
- {
- CClipFormat cf(CF_TEXT, CFText.GetHGlobal());
- clip.m_Formats.Add(cf);
- //clip.m_Formats now owns the global data
- cf.m_autoDeleteData = false;
- }
- CStringW SepW = CTextConvert::ConvertToUnicode(g_Opt.GetMultiPasteSeparator());
- CCF_UnicodeTextAggregator CFUnicodeText(SepW);
- if(m_ClipIDs.AggregateData(CFUnicodeText, CF_UNICODETEXT, g_Opt.m_bMultiPasteReverse, m_pasteOptions.LimitFormatsToText()))
- {
- CClipFormat cf(CF_UNICODETEXT, CFUnicodeText.GetHGlobal());
- clip.m_Formats.Add(cf);
- //clip.m_Formats now owns the global data
- cf.m_autoDeleteData = false;
- }
- if (m_pasteOptions.LimitFormatsToText() == false)
- {
- CCF_HDropAggregator HDrop;
- if(m_ClipIDs.AggregateData(HDrop, CF_HDROP, g_Opt.m_bMultiPasteReverse, m_pasteOptions.LimitFormatsToText()))
- {
- CClipFormat cf(CF_HDROP, HDrop.GetHGlobal());
- clip.m_Formats.Add(cf);
- //clip.m_Formats now owns the global data
- cf.m_autoDeleteData = false;
- }
- CRichTextAggregator RichText(SepA);
- if(m_ClipIDs.AggregateData(RichText, theApp.m_RTFFormat, g_Opt.m_bMultiPasteReverse, m_pasteOptions.LimitFormatsToText()))
- {
- CClipFormat cf(theApp.m_RTFFormat, RichText.GetHGlobal());
- clip.m_Formats.Add(cf);
- //clip.m_Formats now owns the global data
- cf.m_autoDeleteData = false;
- }
- CHTMLFormatAggregator Html(SepA);
- if(m_ClipIDs.AggregateData(Html, theApp.m_HTML_Format, g_Opt.m_bMultiPasteReverse, m_pasteOptions.LimitFormatsToText()))
- {
- CClipFormat cf(theApp.m_HTML_Format, Html.GetHGlobal());
- clip.m_Formats.Add(cf);
- //clip.m_Formats now owns the global data
- cf.m_autoDeleteData = false;
- }
- }
- }
- if (count >= 1 && clip.m_Formats.GetCount() == 0)
- {
- clip.LoadFormats(m_ClipIDs[0], m_pasteOptions.LimitFormatsToText(), m_pasteOptions.IncludeRTFForTextOnly());
- }
- if (m_pasteOptions.LimitFormatsToText())
- {
- PlainTextFilter(clip);
- }
- if(m_pasteOptions.m_pasteUpperCase ||
- m_pasteOptions.m_pasteLowerCase)
- {
- DoUpperLowerCase(clip, m_pasteOptions.m_pasteUpperCase);
- }
- else if(m_pasteOptions.m_pasteCapitalize)
- {
- Capitalize(clip);
- }
- else if(m_pasteOptions.m_pasteSentenceCase)
- {
- SentenceCase(clip);
- }
- else if(m_pasteOptions.m_pasteRemoveLineFeeds)
- {
- RemoveLineFeeds(clip);
- }
- else if(m_pasteOptions.m_pasteAddOneLineFeed)
- {
- AddLineFeeds(clip, 1);
- }
- else if (m_pasteOptions.m_pasteAddTwoLineFeeds)
- {
- AddLineFeeds(clip, 2);
- }
- else if (m_pasteOptions.m_pasteTypoglycemia)
- {
- Typoglycemia(clip);
- }
- else if (m_pasteOptions.m_pasteAddingDateTime)
- {
- AddDateTime(clip);
- }
- else if (m_pasteOptions.m_trimWhiteSpace)
- {
- TrimWhiteSpace(clip);
- }
- else if (m_pasteOptions.m_pasteSlugify)
- {
- Slugify(clip);
- }
- else if (m_pasteOptions.m_invertCase)
- {
- InvertCase(clip);
- }
-
- SaveDittoFileDataToFile(clip);
- if (m_pasteOptions.m_pasteScriptGuid != _T(""))
- {
- for (auto & element : g_Opt.m_pasteScripts.m_list)
- {
- if (element.m_guid == m_pasteOptions.m_pasteScriptGuid)
- {
- try
- {
- Log(StrF(_T("Start of paste script name: %s, script: %s"), element.m_name, element.m_script));
- ChaiScriptOnCopy onPaste;
- CDittoChaiScript clipData(&clip, "");
- if (onPaste.ProcessScript(clipData, (LPCSTR)CTextConvert::ConvertToChar(element.m_script)) == false)
- {
- Log(StrF(_T("End of paste script name: %s, returned false, not saving this copy to Ditto, last Error: %s"), element.m_name, onPaste.m_lastError));
- return FALSE;
- }
- Log(StrF(_T("End of paste script name: %s, returned true, last Error: %s"), element.m_name, onPaste.m_lastError));
- }
- catch (CException *ex)
- {
- TCHAR szCause[255];
- ex->GetErrorMessage(szCause, 255);
- CString cs;
- cs.Format(_T("chai script paste exception: %s"), szCause);
- Log(cs);
- }
- catch (...)
- {
- Log(_T("chai script paste exception 2"));
- }
- break;
- }
- }
- }
- return PutFormatOnClipboard(&clip.m_Formats) > 0;
- }
- void COleClipSource::DoUpperLowerCase(CClip &clip, bool upper)
- {
- IClipFormat *unicodeTextFormat = clip.m_Formats.FindFormatEx(CF_UNICODETEXT);
- if (unicodeTextFormat != NULL)
- {
- HGLOBAL data = unicodeTextFormat->Data();
- wchar_t * stringData = (wchar_t *) GlobalLock(data);
- int size = (int) GlobalSize(data);
- icu::UnicodeString s = stringData;
- GlobalUnlock(data);
- //free the old text we are going to replace it below with an upper case version
- unicodeTextFormat->Free();
- icu::UnicodeString val;
- if (upper)
- {
- val = s.toUpper();
- }
- else
- {
- val = s.toLower();
- }
-
- long lLen = val.length();
- HGLOBAL hGlobal = NewGlobalP((LPVOID)val.getTerminatedBuffer(), ((lLen+1) * sizeof(wchar_t)));
- val.releaseBuffer();
- unicodeTextFormat->Data(hGlobal);
- }
- IClipFormat *asciiTextFormat = clip.m_Formats.FindFormatEx(CF_TEXT);
- if (asciiTextFormat != NULL)
- {
- HGLOBAL data = asciiTextFormat->Data();
- char * stringData = (char *) GlobalLock(data);
- int size = (int) GlobalSize(data);
- CStringA cs(stringData);
- GlobalUnlock(data);
- //free the old text we are going to replace it below with an upper case version
- asciiTextFormat->Free();
-
- CString val;
- if (upper)
- {
- val = cs.MakeUpper();
- }
- else
- {
- val = cs.MakeLower();
- }
- long lLen = val.GetLength();
- HGLOBAL hGlobal = NewGlobalP(val.GetBuffer(lLen), lLen + sizeof(char));
- val.ReleaseBuffer();
- asciiTextFormat->Data(hGlobal);
- }
- }
- void COleClipSource::InvertCase(CClip &clip)
- {
- IClipFormat *unicodeTextFormat = clip.m_Formats.FindFormatEx(CF_UNICODETEXT);
- if (unicodeTextFormat != NULL)
- {
- HGLOBAL data = unicodeTextFormat->Data();
- wchar_t * stringData = (wchar_t *)GlobalLock(data);
- int size = (int)GlobalSize(data);
- CString cs(stringData);
- GlobalUnlock(data);
- //free the old text we are going to replace it below with an upper case version
- unicodeTextFormat->Free();
- long len = cs.GetLength();
- if (len > 0)
- {
- wchar_t * pText = cs.GetBuffer();
-
- for (int i = 0; i < len; i++)
- {
- wchar_t item = pText[i];
- if (u_isUUppercase(item))
- {
- pText[i] = u_tolower(item);
- }
- else
- {
- pText[i] = u_toupper(item);
- }
- }
- }
- cs.ReleaseBuffer();
- HGLOBAL hGlobal = NewGlobalP(cs.GetBuffer(), ((len + 1) * sizeof(wchar_t)));
- unicodeTextFormat->Data(hGlobal);
- }
- IClipFormat *asciiTextFormat = clip.m_Formats.FindFormatEx(CF_TEXT);
- if (asciiTextFormat != NULL)
- {
- HGLOBAL data = asciiTextFormat->Data();
- char * stringData = (char *)GlobalLock(data);
- int size = (int)GlobalSize(data);
- CStringA cs(stringData);
- GlobalUnlock(data);
- //free the old text we are going to replace it below with an upper case version
- asciiTextFormat->Free();
- long len = cs.GetLength();
- if (len > 0)
- {
- char * pText = cs.GetBuffer();
- for (int i = 0; i < len; i++)
- {
- char item = pText[i];
- if (::isupper(item))
- {
- pText[i] = ::tolower(item);
- }
- else
- {
- pText[i] = ::toupper(item);
- }
- }
- }
- cs.ReleaseBuffer();
- HGLOBAL hGlobal = NewGlobalP(cs.GetBuffer(), (len + 1));
- asciiTextFormat->Data(hGlobal);
- }
- }
- void COleClipSource::Capitalize(CClip &clip)
- {
- IClipFormat *unicodeTextFormat = clip.m_Formats.FindFormatEx(CF_UNICODETEXT);
- if (unicodeTextFormat != NULL)
- {
- HGLOBAL data = unicodeTextFormat->Data();
- wchar_t * stringData = (wchar_t *) GlobalLock(data);
- int size = (int) GlobalSize(data);
- CString cs(stringData);
- GlobalUnlock(data);
- //free the old text we are going to replace it below with an upper case version
- unicodeTextFormat->Free();
- icu::UnicodeString temp = cs;
- CString val = temp.toLower().getTerminatedBuffer();
- long len = val.GetLength();
- if (len > 0)
- {
- wchar_t * pText = val.GetBuffer();
-
- pText[0] = u_toupper(pText[0]);
- bool capitalize = false;
-
- for (int i = 1; i < len; i++)
- {
- wchar_t item = pText[i];
- if (item == ' ')
- {
- capitalize = true;
- }
- else if (capitalize)
- {
- pText[i] = u_toupper(item);
- capitalize = false;
- }
- }
- }
-
- val.ReleaseBuffer();
- HGLOBAL hGlobal = NewGlobalP(val.GetBuffer(), ((len + 1) * sizeof(wchar_t)));
- unicodeTextFormat->Data(hGlobal);
- }
- //my change
- //test
- //second test
- IClipFormat *asciiTextFormat = clip.m_Formats.FindFormatEx(CF_TEXT);
- if (asciiTextFormat != NULL)
- {
- HGLOBAL data = asciiTextFormat->Data();
- char * stringData = (char *) GlobalLock(data);
- int size = (int) GlobalSize(data);
- CStringA cs(stringData);
- GlobalUnlock(data);
- //free the old text we are going to replace it below with an upper case version
- asciiTextFormat->Free();
- CStringA val = cs.MakeLower();
- long len = val.GetLength();
- if (len > 0)
- {
- char * pText = val.GetBuffer();
- pText[0] = toupper(pText[0]);
- bool capitalize = false;
- for (int i = 1; i < len; i++)
- {
- char item = pText[i];
- if (item == ' ')
- {
- capitalize = true;
- }
- else if (capitalize)
- {
- pText[i] = toupper(item);
- capitalize = false;
- }
- }
- }
- val.ReleaseBuffer();
- HGLOBAL hGlobal = NewGlobalP(val.GetBuffer(), (len + 1));
- asciiTextFormat->Data(hGlobal);
- }
- }
- void COleClipSource::SentenceCase(CClip &clip)
- {
- IClipFormat *unicodeTextFormat = clip.m_Formats.FindFormatEx(CF_UNICODETEXT);
- if (unicodeTextFormat != NULL)
- {
- HGLOBAL data = unicodeTextFormat->Data();
- wchar_t * stringData = (wchar_t *) GlobalLock(data);
- int size = (int) GlobalSize(data);
- CString cs(stringData);
- GlobalUnlock(data);
- //free the old text we are going to replace it below with an upper case version
- unicodeTextFormat->Free();
- icu::UnicodeString temp = cs;
- CString val = temp.toLower().getTerminatedBuffer();
- long len = val.GetLength();
- if (len > 0)
- {
- wchar_t * pText = val.GetBuffer();
- pText[0] = u_toupper(pText[0]);
- bool capitalize = false;
- for (int i = 1; i < len; i++)
- {
- wchar_t item = pText[i];
- if (item == '.' ||
- item == '!' ||
- item == '?')
- {
- capitalize = true;
- }
- else if (capitalize && item != ' ')
- {
- pText[i] = u_toupper(item);
- capitalize = false;
- }
- }
- }
- val.ReleaseBuffer();
- HGLOBAL hGlobal = NewGlobalP(val.GetBuffer(), ((len + 1) * sizeof(wchar_t)));
- unicodeTextFormat->Data(hGlobal);
- }
- IClipFormat *asciiTextFormat = clip.m_Formats.FindFormatEx(CF_TEXT);
- if (asciiTextFormat != NULL)
- {
- HGLOBAL data = asciiTextFormat->Data();
- char * stringData = (char *) GlobalLock(data);
- int size = (int) GlobalSize(data);
- CStringA cs(stringData);
- GlobalUnlock(data);
- //free the old text we are going to replace it below with an upper case version
- asciiTextFormat->Free();
- CStringA val = cs.MakeLower();
- long len = val.GetLength();
- if (len > 0)
- {
- char * pText = val.GetBuffer();
- pText[0] = toupper(pText[0]);
- bool capitalize = false;
- for (int i = 1; i < len; i++)
- {
- char item = pText[i];
- if (item == '.' ||
- item == '!' ||
- item == '?')
- {
- capitalize = true;
- }
- else if (capitalize && item != ' ')
- {
- pText[i] = toupper(item);
- capitalize = false;
- }
- }
- }
- val.ReleaseBuffer();
- HGLOBAL hGlobal = NewGlobalP(val.GetBuffer(), (len + 1));
- asciiTextFormat->Data(hGlobal);
- }
- }
- void COleClipSource::PlainTextFilter(CClip &clip)
- {
- bool foundText = false;
- INT_PTR hDropIndex = -1;
- INT_PTR count = clip.m_Formats.GetCount();
- for (INT_PTR i = 0; i < count; i++)
- {
- CClipFormat *pCF = &clip.m_Formats.ElementAt(i);
- if (pCF->m_cfType == CF_TEXT ||
- pCF->m_cfType == CF_UNICODETEXT)
- {
- foundText = true;
- }
- else if (pCF->m_cfType == CF_HDROP)
- {
- hDropIndex = i;
- }
- }
- if (foundText &&
- hDropIndex > -1)
- {
- clip.m_Formats.RemoveAt(hDropIndex);
- }
- else if (foundText == false &&
- hDropIndex > -1)
- {
- CCF_HDropAggregator HDrop;
- if (m_ClipIDs.AggregateData(HDrop, CF_HDROP, g_Opt.m_bMultiPasteReverse, m_pasteOptions.LimitFormatsToText()))
- {
- clip.m_Formats.RemoveAt(hDropIndex);
- CClipFormat format(CF_UNICODETEXT, HDrop.GetHGlobalAsString());
- clip.m_Formats.Add(format);
- format.m_autoDeleteData = false; //owned by m_DelayRenderedFormats
- }
- }
- }
- void COleClipSource::RemoveLineFeeds(CClip &clip)
- {
- IClipFormat *pUnicodeText = clip.m_Formats.FindFormatEx(CF_UNICODETEXT);
- if (pUnicodeText != NULL)
- {
- wchar_t *stringData = (wchar_t *) GlobalLock(pUnicodeText->Data());
- if (stringData != NULL)
- {
- CStringW string(stringData);
- GlobalUnlock(pUnicodeText->Data());
- pUnicodeText->Free();
- int count = string.Replace(_T("\r\n"), _T(" "));
- count = string.Replace(_T("\r"), _T(" "));
- count = string.Replace(_T("\n"), _T(" "));
-
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1) * sizeof(wchar_t)));
- pUnicodeText->Data(hGlobal);
- }
- }
- IClipFormat *pAsciiText = clip.m_Formats.FindFormatEx(CF_TEXT);
- if (pAsciiText != NULL)
- {
- char *stringData = (char *) GlobalLock(pAsciiText->Data());
- if (stringData != NULL)
- {
- CStringA string(stringData);
- GlobalUnlock(pAsciiText->Data());
- pAsciiText->Free();
- int count = string.Replace("\r\n", " ");
- count = string.Replace("\r", " ");
- count = string.Replace("\n", " ");
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1)));
- pAsciiText->Data(hGlobal);
- }
- }
- IClipFormat *pRTFFormat = clip.m_Formats.FindFormatEx(theApp.m_RTFFormat);
- if (pRTFFormat != NULL)
- {
- char *stringData = (char *) GlobalLock(pRTFFormat->Data());
- if (stringData != NULL)
- {
- CStringA string(stringData);
- GlobalUnlock(pRTFFormat->Data());
- pRTFFormat->Free();
- int count = string.Replace("\\par\r\n", " ");
- int count2 = string.Replace("\\par ", " ");
- int count3 = string.Replace("\\line ", " ");
-
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1)));
- pRTFFormat->Data(hGlobal);
- }
- }
- }
- void COleClipSource::AddLineFeeds(CClip &clip, int count)
- {
- IClipFormat *pUnicodeText = clip.m_Formats.FindFormatEx(CF_UNICODETEXT);
- if (pUnicodeText != NULL)
- {
- wchar_t *stringData = (wchar_t *) GlobalLock(pUnicodeText->Data());
- if (stringData != NULL)
- {
- CStringW string(stringData);
- GlobalUnlock(pUnicodeText->Data());
- pUnicodeText->Free();
- for(int i = 0; i < count; i++)
- {
- string += _T("\r\n");
- }
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1) * sizeof(wchar_t)));
- pUnicodeText->Data(hGlobal);
- }
- }
- IClipFormat *pAsciiText = clip.m_Formats.FindFormatEx(CF_TEXT);
- if (pAsciiText != NULL)
- {
- char *stringData = (char *) GlobalLock(pAsciiText->Data());
- if (stringData != NULL)
- {
- CStringA string(stringData);
- GlobalUnlock(pAsciiText->Data());
- pAsciiText->Free();
- for (int i = 0; i < count; i++)
- {
- string += "\r\n";
- }
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1)));
- pAsciiText->Data(hGlobal);
- }
- }
- IClipFormat *pRTFFormat = clip.m_Formats.FindFormatEx(theApp.m_RTFFormat);
- if (pRTFFormat != NULL)
- {
- char *stringData = (char *) GlobalLock(pRTFFormat->Data());
- if (stringData != NULL)
- {
- CStringA string(stringData);
- GlobalUnlock(pRTFFormat->Data());
- pRTFFormat->Free();
- for (int i = 0; i < count; i++)
- {
- int pos = string.ReverseFind('}');
- if (pos >= 0)
- {
- int count = string.Insert(pos, "\\par\r\n");
- }
- }
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1)));
- pRTFFormat->Data(hGlobal);
- }
- }
- }
- void COleClipSource::AddDateTime(CClip &clip)
- {
- IClipFormat *pUnicodeText = clip.m_Formats.FindFormatEx(CF_UNICODETEXT);
- if (pUnicodeText != NULL)
- {
- wchar_t *stringData = (wchar_t *)GlobalLock(pUnicodeText->Data());
- if (stringData != NULL)
- {
- CStringW string(stringData);
- GlobalUnlock(pUnicodeText->Data());
- pUnicodeText->Free();
- string += _T("\r\n");
- COleDateTime now(COleDateTime::GetCurrentTime());
- string += now.Format();
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1) * sizeof(wchar_t)));
- pUnicodeText->Data(hGlobal);
- }
- }
- IClipFormat *pAsciiText = clip.m_Formats.FindFormatEx(CF_TEXT);
- if (pAsciiText != NULL)
- {
- char *stringData = (char *)GlobalLock(pAsciiText->Data());
- if (stringData != NULL)
- {
- CStringA string(stringData);
- GlobalUnlock(pAsciiText->Data());
- pAsciiText->Free();
- string += "\r\n\r\n";
- COleDateTime now(COleDateTime::GetCurrentTime());
- string += CTextConvert::UnicodeStringToMultiByte(now.Format());
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1)));
- pAsciiText->Data(hGlobal);
- }
- }
- IClipFormat *pRTFFormat = clip.m_Formats.FindFormatEx(theApp.m_RTFFormat);
- if (pRTFFormat != NULL)
- {
- char *stringData = (char *)GlobalLock(pRTFFormat->Data());
- if (stringData != NULL)
- {
- CStringA string(stringData);
- GlobalUnlock(pRTFFormat->Data());
- pRTFFormat->Free();
-
- int pos = string.ReverseFind('}');
- if (pos >= 0)
- {
- string += _T("\r\n\r\n");
- COleDateTime now(COleDateTime::GetCurrentTime());
-
- CStringA insert;
- insert.Format("\\par\r\n\\par\r\n%s", CTextConvert::UnicodeStringToMultiByte(now.Format()));
- int count = string.Insert(pos, insert);
- }
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1)));
- pRTFFormat->Data(hGlobal);
- }
- }
- }
- void COleClipSource::TrimWhiteSpace(CClip &clip)
- {
- IClipFormat *pUnicodeText = clip.m_Formats.FindFormatEx(CF_UNICODETEXT);
- if (pUnicodeText != NULL)
- {
- wchar_t *stringData = (wchar_t *)GlobalLock(pUnicodeText->Data());
- if (stringData != NULL)
- {
- CStringW string(stringData);
- GlobalUnlock(pUnicodeText->Data());
- pUnicodeText->Free();
- string = string.Trim();
- string = string.Trim(_T("\t"));
- string = string.Trim(_T("\r"));
- string = string.Trim(_T("\n"));
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1) * sizeof(wchar_t)));
- pUnicodeText->Data(hGlobal);
- }
- }
- IClipFormat *pAsciiText = clip.m_Formats.FindFormatEx(CF_TEXT);
- if (pAsciiText != NULL)
- {
- char *stringData = (char *)GlobalLock(pAsciiText->Data());
- if (stringData != NULL)
- {
- CStringA string(stringData);
- GlobalUnlock(pAsciiText->Data());
- pAsciiText->Free();
- string = string.Trim();
- string = string.Trim("\t");
- string = string.Trim("\r");
- string = string.Trim("\n");
- HGLOBAL hGlobal = NewGlobalP(string.GetBuffer(), ((string.GetLength() + 1)));
- pAsciiText->Data(hGlobal);
- }
- }
- }
- void COleClipSource::SaveDittoFileDataToFile(CClip &clip)
- {
- CFileRecieve hDrpData;
- CClipFormat* pCF;
- int hDropIndex = -1;
- bool savedFile = false;
- INT_PTR count = clip.m_Formats.GetSize();
- for (int i = 0; i < count; i++)
- {
- pCF = &clip.m_Formats.ElementAt(i);
- if (pCF->m_cfType == theApp.m_DittoFileData)
- {
- IClipFormat *dittoFileData = &clip.m_Formats.ElementAt(i);
- if (dittoFileData != NULL)
- {
- HGLOBAL data = dittoFileData->Data();
- char * stringData = (char *)GlobalLock(data);
- //original source is store in the first string ending in the null terminator
- CStringA src(stringData);
- stringData += src.GetLength() + 1;
- CStringA originalMd5(stringData);
- stringData += originalMd5.GetLength() + 1;
- int dataSize = (int)GlobalSize(data) - (src.GetLength() + 1) - (originalMd5.GetLength() + 1);
- CMd5 calcMd5;
- CStringA md5String = calcMd5.CalcMD5FromString(stringData, dataSize);
- CString unicodeFilePath;
- CTextConvert::ConvertFromUTF8(src, unicodeFilePath);
- CString unicodeMd5;
- CTextConvert::ConvertFromUTF8(md5String, unicodeMd5);
- Log(StrF(_T("Saving file contents from Ditto, original file: %s, size: %d, md5: %s"), unicodeFilePath, dataSize, unicodeMd5));
- if (md5String == originalMd5)
- {
- using namespace nsPath;
- CPath path(unicodeFilePath);
- CString fileName = path.GetName();
- CString newFilePath = CGetSetOptions::GetPath(PATH_DRAG_FILES);
- newFilePath += fileName;
- CFile f;
- if (f.Open(newFilePath, CFile::modeWrite | CFile::modeCreate))
- {
- f.Write(stringData, dataSize);
- f.Close();
- savedFile = true;
- hDrpData.AddFile(newFilePath);
- }
- else
- {
- Log(StrF(_T("Error saving file: %s"), unicodeFilePath));
- }
- }
- else
- {
- Log(StrF(_T("MD5 ERROR, file: %s, original md5: %s, calc md5: %s"), unicodeFilePath, originalMd5, md5String));
- }
- }
- }
- else if (pCF->m_cfType == CF_HDROP)
- {
- hDropIndex = i;
- }
- }
-
- if (savedFile)
- {
- if (hDropIndex >= 0)
- {
- clip.m_Formats.RemoveAt(hDropIndex);
- }
- CClipFormat cf(CF_HDROP, hDrpData.CreateCF_HDROPBuffer());
- clip.m_Formats.Add(cf);
- //clip.m_Formats now owns the global data
- cf.m_autoDeleteData = false;
- }
- }
- void COleClipSource::Typoglycemia(CClip &clip)
- {
- IClipFormat *unicodeTextFormat = clip.m_Formats.FindFormatEx(CF_UNICODETEXT);
- if (unicodeTextFormat != NULL)
- {
- HGLOBAL data = unicodeTextFormat->Data();
- wchar_t * stringData = (wchar_t *) GlobalLock(data);
- int size = (int) GlobalSize(data);
- CString cs(stringData);
- GlobalUnlock(data);
- //free the old text we are going to replace it below with an upper case version
- unicodeTextFormat->Free();
- CString newString;
-
-
- CTokenizer token(cs, _T(' '));
- CString word;
- while (token.Next(word))
- {
- if(word.GetLength() > 3)
- {
- int end = word.GetLength();
-
- for (int i = end-1; i >= 0; i--)
- {
- if(word[i] == _T('.') ||
- word[i] == _T('!') ||
- word[i] == _T('?'))
- {
- end--;
- }
- else
- {
- break;
- }
- }
- if (end > 3)
- {
- std::uniform_int_distribution<int> dist(1, end - 2);
- std::random_device rd;
- for (int i = 1; i < end - 1; i++)
- {
- int newPos = dist(rd);
- CString cs;
- cs.Format(_T("pos: %d, rnd: %d\r\n"), i, newPos);
- OutputDebugString(cs);
- TCHAR temp = word.GetAt(i);
- word.SetAt(i, word.GetAt(newPos));
- word.SetAt(newPos, temp);
- }
- }
- newString += word;
- }
- else
- {
- newString += word;
- }
- newString += _T(' ');
- }
-
- long len = newString.GetLength();
- HGLOBAL hGlobal = NewGlobalP(newString.GetBuffer(), ((len + 1) * sizeof(wchar_t)));
- unicodeTextFormat->Data(hGlobal);
- }
-
- }
- INT_PTR COleClipSource::PutFormatOnClipboard(CClipFormats *pFormats)
- {
- Log(_T("Start of put format on clipboard"));
- CClipFormat* pCF;
- INT_PTR count = pFormats->GetSize();
- bool bDelayedRenderCF_HDROP = false;
- bool dittoFileData = false;
- INT_PTR i = 0;
- //see if the html format is in the list
- //if it is the list we will not paste CF_TEXT
- for(i = 0; i < count; i++)
- {
- pCF = &pFormats->ElementAt(i);
- if(pCF->m_cfType == theApp.m_RemoteCF_HDROP)
- {
- bDelayedRenderCF_HDROP = true;
- }
- if (pCF->m_cfType == theApp.m_DittoFileData)
- {
- dittoFileData = true;
- //save file data
- //adjust hdrop
- }
- }
- for(i = 0; i < count; i++)
- {
- pCF = &pFormats->ElementAt(i);
- if(bDelayedRenderCF_HDROP)
- {
- if(pCF->m_cfType == CF_HDROP)
- {
- LogSendRecieveInfo("Added delayed cf_hdrop to clipboard");
- DelayRenderData(pCF->m_cfType);
- }
- continue;
- }
- wchar_t * stringData = (wchar_t *) GlobalLock(pCF->m_hgData);
- int size = (int) GlobalSize(pCF->m_hgData);
- CString cs(stringData);
- GlobalUnlock(pCF->m_hgData);
-
- Log(StrF(_T("Setting clipboard type: %s to the clipboard"), GetFormatName(pCF->m_cfType)));
- CacheGlobalData(pCF->m_cfType, pCF->m_hgData);
- pCF->m_hgData = 0; // OLE owns it now
- }
- pFormats->RemoveAll();
- m_bLoadedFormats = true;
- Log(_T("End of put format on clipboard"));
- return count;
- }
- BOOL COleClipSource::OnRenderGlobalData(LPFORMATETC lpFormatEtc, HGLOBAL* phGlobal)
- {
- static bool bInHere = false;
- if(bInHere)
- {
- return FALSE;
- }
- bInHere = true;
- HGLOBAL hData = NULL;
- CClipFormat *pFind = m_DelayRenderedFormats.FindFormat(lpFormatEtc->cfFormat);
- if(pFind)
- {
- if(pFind->m_hgData)
- {
- hData = NewGlobalH(pFind->m_hgData, GlobalSize(pFind->m_hgData));
- }
- }
- else
- {
- if (m_pasteOptions.m_delayRenderLockout > 0 &&
- (GetTickCount() - m_pasteOptions.m_delayRenderLockout) < (DWORD)CGetSetOptions::GetDelayRenderLockout())
- {
- bInHere = false;
- return false;
- }
- LogSendRecieveInfo("Delayed Render, getting data from remote machine");
- CClip clip;
- if(m_ClipIDs.GetCount() > 0)
- {
- clip.LoadFormats(m_ClipIDs[0]);
- CClipFormat *pDittoDelayCF_HDROP = clip.m_Formats.FindFormat(theApp.m_RemoteCF_HDROP);
- CClipFormat *pCF_HDROP = clip.m_Formats.FindFormat(CF_HDROP);
- if(pDittoDelayCF_HDROP && pCF_HDROP)
- {
- CDittoCF_HDROP *pData = (CDittoCF_HDROP*)GlobalLock(pDittoDelayCF_HDROP->m_hgData);
- if(pData)
- {
- CString csComputerName;
- CString csIP;
- CTextConvert::ConvertFromUTF8(pData->m_cIP, csIP);
- CTextConvert::ConvertFromUTF8(pData->m_cComputerName, csComputerName);
-
- GlobalUnlock(pDittoDelayCF_HDROP->m_hgData);
- CClient cl;
- hData = cl.RequestCopiedFiles(*pCF_HDROP, csIP, csComputerName);
- }
- }
- else
- {
- hData = m_ClipIDs.Render(lpFormatEtc->cfFormat);
- if (m_convertToHDROPOnDelayRender &&
- hData == NULL &&
- lpFormatEtc->cfFormat == CF_HDROP)
- {
- hData = ConvertToFileDrop();
- }
- }
- }
- //Add to a cache of already rendered data
- //Windows seems to call this function multiple times
- //so only the first time do we need to go get the data
- HGLOBAL hCopy = NULL;
- if(hData)
- {
- hCopy = NewGlobalH(hData, GlobalSize(hData));
- }
- CClipFormat format(lpFormatEtc->cfFormat, hCopy);
- m_DelayRenderedFormats.Add(format);
- format.m_autoDeleteData = false; //owned by m_DelayRenderedFormats
- }
- BOOL bRet = FALSE;
- if(hData)
- {
- // if phGlobal is null, we can just give the allocated mem
- // else, our data must fit within the GlobalSize(*phGlobal)
- if(*phGlobal == 0)
- {
- *phGlobal = hData;
- }
- else
- {
- SIZE_T len = min(::GlobalSize(*phGlobal), ::GlobalSize(hData));
- if(len)
- {
- CopyToGlobalHH(*phGlobal, hData, len);
- }
- ::GlobalFree(hData);
- }
- bRet = TRUE;
- }
- bInHere = false;
- return bRet;
- }
- HGLOBAL COleClipSource::ConvertToFileDrop()
- {
- CString path = CGetSetOptions::GetPath(PATH_DRAG_FILES);
- CreateDirectory(path, NULL);
- CFileRecieve fileList;
- int dragId = CGetSetOptions::GetDragId();
- int origDragId = dragId;
- for (int i = 0; i < m_ClipIDs.GetCount(); i++)
- {
- CClip fileClip;
- fileClip.LoadFormats(m_ClipIDs[i]);
- CClipFormat *unicodeText = fileClip.m_Formats.FindFormat(CF_UNICODETEXT);
- if (unicodeText)
- {
- CString file;
- file.Format(_T("%stext_%d.txt"), path, dragId++);
- fileClip.WriteTextToFile(file, TRUE, FALSE, FALSE);
- fileList.AddFile(file);
- }
- else
- {
- CClipFormat *asciiText = fileClip.m_Formats.FindFormat(CF_TEXT);
- if (asciiText)
- {
- CString file;
- file.Format(_T("%stext_%d.txt"), path, dragId++);
- fileClip.WriteTextToFile(file, FALSE, TRUE, FALSE);
- fileList.AddFile(file);
- }
- else
- {
- CClipFormat *png = NULL;
- CClipFormat *bitmap = fileClip.m_Formats.FindFormat(CF_DIB);
- if (bitmap == NULL)
- {
- png = fileClip.m_Formats.FindFormat(theApp.m_PNG_Format);
- }
- if(bitmap != NULL ||
- png != NULL)
- {
- CString file;
- file.Format(_T("%simage_%d.png"), path, dragId++);
- if (fileClip.WriteImageToFile(file))
- {
- fileList.AddFile(file);
- }
- }
- }
- }
- }
- if(dragId != origDragId)
- {
- CGetSetOptions::SetDragId(dragId);
- }
- HGLOBAL hData = fileList.CreateCF_HDROPBuffer();
- return hData;
- }
- void COleClipSource::Slugify(CClip &clip)
- {
- IClipFormat *unicodeTextFormat = clip.m_Formats.FindFormatEx(CF_UNICODETEXT);
- if (unicodeTextFormat != NULL)
- {
- HGLOBAL data = unicodeTextFormat->Data();
- wchar_t * stringData = (wchar_t *)GlobalLock(data);
- int size = (int)GlobalSize(data);
- CString cs(stringData);
- GlobalUnlock(data);
- //free the old text we are going to replace it below with an upper case version
- unicodeTextFormat->Free();
- CString newString = slugify(cs.GetString()).c_str();
- long len = newString.GetLength();
- HGLOBAL hGlobal = NewGlobalP(newString.GetBuffer(), ((len + 1) * sizeof(wchar_t)));
- unicodeTextFormat->Data(hGlobal);
- }
- }
|