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 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
//--------------------------------------------------------------------------
// File: ooofilt.cxx
// Contents: Filter Implementation for OpenOffice.Org Document using
// Indexing Service
// Summary: The OpenOffice.org filter reads OpenOffice.org files (with the
// extension .sxw .sxi, etc) and extract their content, author,
// keywords,subject,comments and title to be filtered.
// Platform: Windows 2000, Windows XP
//--------------------------------------------------------------------------
#include "internal/contentreader.hxx"
#include "internal/metainforeader.hxx"
#include "internal/registry.hxx"
#include "internal/fileextensions.hxx"
//--------------------------------------------------------------------------
// Include file Purpose
// windows.h Win32 declarations
// string.h string wstring declarations
// filter.h IFilter interface declarations
// filterr.h FACILITY_ITF error definitions for IFilter
// ntquery.h Indexing Service declarations
// assert.h assertion function.
// ooofilt.hxx OpenOffice.org filter declarations
// propspec.hxx PROPSPEC
//--------------------------------------------------------------------------
#if defined _MSC_VER
#pragma warning(push, 1)
#endif
#include <windows.h>
#if defined _MSC_VER
#pragma warning(pop)
#endif
#include <string.h>
#include <filter.h>
#include <filterr.h>
#include <ntquery.h>
#include "assert.h"
#include "ooofilt.hxx"
#include <objidl.h>
#include <stdio.h>
#include "propspec.hxx"
#ifdef __MINGW32__
#include <algorithm>
using ::std::min;
#endif
#include "internal/stream_helper.hxx"
//C-------------------------------------------------------------------------
// Class: COooFilter
// Summary: Implements OpenOffice.org filter class
//--------------------------------------------------------------------------
//M-------------------------------------------------------------------------
// Method: COooFilter::COooFilter
// Summary: Class constructor
// Arguments: void
// Purpose: Manages global instance count
//--------------------------------------------------------------------------
COooFilter::COooFilter() :
m_lRefs(1),
m_pContentReader(NULL),
m_pMetaInfoReader(NULL),
m_eState(FilteringContent),
m_ulUnicodeBufferLen(0),
m_ulUnicodeCharsRead(0),
m_ulPropertyNum(0),
m_ulCurrentPropertyNum(0),
m_ulChunkID(1),
m_fContents(FALSE),
m_fEof(FALSE),
m_ChunkPosition(0),
m_cAttributes(0),
m_pAttributes(0),
m_pStream(NULL)
{
InterlockedIncrement( &g_lInstances );
}
//M-------------------------------------------------------------------------
// Method: COooFilter::~COooFilter
// Summary: Class destructor
// Arguments: void
// Purpose: Manages global instance count and file handle
//--------------------------------------------------------------------------
COooFilter::~COooFilter()
{
delete [] m_pAttributes;
if (m_pContentReader)
delete m_pContentReader;
if (m_pMetaInfoReader)
delete m_pMetaInfoReader;
InterlockedDecrement( &g_lInstances );
}
//M-------------------------------------------------------------------------
// Method: COooFilter::QueryInterface (IUnknown::QueryInterface)
// Summary: Queries for requested interface
// Arguments: riid
// [in] Reference IID of requested interface
// ppvObject
// [out] Address that receives requested interface pointer
// Returns: S_OK
// Interface is supported
// E_NOINTERFACE
// Interface is not supported
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::QueryInterface(
REFIID riid,
void ** ppvObject)
{
IUnknown *pUnkTemp = 0;
if ( IID_IFilter == riid )
pUnkTemp = (IUnknown *)(IFilter *)this;
else if ( IID_IPersistFile == riid )
pUnkTemp = (IUnknown *)(IPersistFile *)this;
else if ( IID_IPersist == riid )
pUnkTemp = (IUnknown *)(IPersist *)(IPersistFile *)this;
else if (IID_IPersistStream == riid)
pUnkTemp = (IUnknown *)(IPersistStream *)this;
else if ( IID_IUnknown == riid )
pUnkTemp = (IUnknown *)(IPersist *)(IPersistFile *)this;
else
{
*ppvObject = NULL;
return E_NOINTERFACE;
}
*ppvObject = (void *)pUnkTemp;
pUnkTemp->AddRef();
return S_OK;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::AddRef (IUnknown::AddRef)
// Summary: Increments interface refcount
// Arguments: void
// Returns: Value of incremented interface refcount
//--------------------------------------------------------------------------
ULONG STDMETHODCALLTYPE COooFilter::AddRef()
{
return InterlockedIncrement( &m_lRefs );
}
//M-------------------------------------------------------------------------
// Method: COooFilter::Release (IUnknown::Release)
// Summary: Decrements interface refcount, deleting if unreferenced
// Arguments: void
// Returns: Value of decremented interface refcount
//--------------------------------------------------------------------------
ULONG STDMETHODCALLTYPE COooFilter::Release()
{
ULONG ulTmp = InterlockedDecrement( &m_lRefs );
if ( 0 == ulTmp )
delete this;
return ulTmp;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::Init (IFilter::Init)
// Summary: Initializes OpenOffice.org filter instance
// Arguments: grfFlags
// [in] Flags for filter behavior
// cAttributes
// [in] Number attributes in array aAttributes
// aAttributes
// [in] Array of requested attribute strings
// pFlags
// [out] Pointer to return flags for additional properties
// Returns: S_OK
// Initialization succeeded
// E_FAIL
// File not previously loaded
// E_INVALIDARG
// Count and contents of attributes do not agree
// FILTER_E_ACCESS
// Unable to access file to be filtered
// FILTER_E_PASSWORD
// (not implemented)
//--------------------------------------------------------------------------
const int COUNT_ATTRIBUTES = 5;
SCODE STDMETHODCALLTYPE COooFilter::Init(
ULONG grfFlags,
ULONG cAttributes,
FULLPROPSPEC const * aAttributes,
ULONG * pFlags)
{
// Enumerate OLE properties, since any NTFS file can have them
*pFlags = IFILTER_FLAGS_OLE_PROPERTIES;
try
{
m_fContents = FALSE;
m_ulPropertyNum = 0;
m_ulCurrentPropertyNum = 0;
if ( m_cAttributes > 0 )
{
delete[] m_pAttributes;
m_pAttributes = 0;
m_cAttributes = 0;
}
if( 0 < cAttributes )
{
// Filter properties specified in aAttributes
if ( 0 == aAttributes )
return E_INVALIDARG;
m_pAttributes = new CFullPropSpec[cAttributes];
m_cAttributes = cAttributes;
// Is caller want to filter contents?
CFullPropSpec *pAttrib = (CFullPropSpec *) aAttributes;
ULONG ulNumAttr;
for ( ulNumAttr = 0 ; ulNumAttr < cAttributes; ulNumAttr++ )
{
if ( pAttrib[ulNumAttr].IsPropertyPropid() &&
pAttrib[ulNumAttr].GetPropertyPropid() == PID_STG_CONTENTS &&
pAttrib[ulNumAttr].GetPropSet() == guidStorage )
{
m_fContents = TRUE;
}
// save the requested properties.
m_pAttributes[ulNumAttr] = pAttrib[ulNumAttr];
}
}
else if ( grfFlags & IFILTER_INIT_APPLY_INDEX_ATTRIBUTES )
{
// Filter contents and all pseudo-properties
m_fContents = TRUE;
m_pAttributes = new CFullPropSpec[COUNT_ATTRIBUTES];
m_cAttributes = COUNT_ATTRIBUTES;
m_pAttributes[0].SetPropSet( FMTID_SummaryInformation );
m_pAttributes[0].SetProperty( PIDSI_AUTHOR );
m_pAttributes[1].SetPropSet( FMTID_SummaryInformation );
m_pAttributes[1].SetProperty( PIDSI_TITLE );
m_pAttributes[2].SetPropSet( FMTID_SummaryInformation );
m_pAttributes[2].SetProperty( PIDSI_SUBJECT );
m_pAttributes[3].SetPropSet( FMTID_SummaryInformation );
m_pAttributes[3].SetProperty( PIDSI_KEYWORDS );
m_pAttributes[4].SetPropSet( FMTID_SummaryInformation );
m_pAttributes[4].SetProperty( PIDSI_COMMENTS );
}
else if ( 0 == grfFlags )
{
// Filter only contents
m_fContents = TRUE;
}
else
m_fContents = FALSE;
// Re-initialize
if ( m_fContents )
{
m_fEof = FALSE;
m_eState = FilteringContent;
m_ulUnicodeCharsRead = 0;
m_ChunkPosition = 0;
}
else
{
m_fEof = TRUE;
m_eState = FilteringProperty;
}
m_ulChunkID = 1;
}
catch (const std::exception&)
{
return E_FAIL;
}
return S_OK;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::GetChunk (IFilter::GetChunk)
// Summary: Gets the next chunk
// Arguments: ppStat
// [out] Pointer to description of current chunk
// Returns: S_OK
// Chunk was successfully retrieved
// E_FAIL
// Character conversion failed
// FILTER_E_ACCESS
// General access failure occurred
// FILTER_E_END_OF_CHUNKS
// Previous chunk was the last chunk
// FILTER_E_EMBEDDING_UNAVAILABLE
// (not implemented)
// FILTER_E_LINK_UNAVAILABLE
// (not implemented)
// FILTER_E_PASSWORD
// (not implemented)
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::GetChunk(STAT_CHUNK * pStat)
{
for(;;)
{
switch ( m_eState )
{
case FilteringContent:
{
// Read Unicodes from buffer.
if( m_ChunkPosition == m_pContentReader ->getChunkBuffer().size() )
{
m_ulUnicodeBufferLen=0;
m_fEof = TRUE;
}
if ( !m_fContents || m_fEof )
{
m_eState = FilteringProperty;
continue;
}
m_pwsBuffer = m_pContentReader -> getChunkBuffer()[m_ChunkPosition].second;
m_ulUnicodeBufferLen = m_pwsBuffer.length();
DWORD ChunkLCID = LocaleSetToLCID( m_pContentReader -> getChunkBuffer()[m_ChunkPosition].first );
// Set chunk description
pStat->idChunk = m_ulChunkID;
pStat->breakType = CHUNK_NO_BREAK;
pStat->flags = CHUNK_TEXT;
pStat->locale = ChunkLCID;
pStat->attribute.guidPropSet = guidStorage;
pStat->attribute.psProperty.ulKind = PRSPEC_PROPID;
pStat->attribute.psProperty.propid = PID_STG_CONTENTS;
pStat->idChunkSource = m_ulChunkID;
pStat->cwcStartSource = 0;
pStat->cwcLenSource = 0;
m_ulUnicodeCharsRead = 0;
m_ulChunkID++;
m_ChunkPosition++;
return S_OK;
}
case FilteringProperty:
{
if ( m_cAttributes == 0 )
return FILTER_E_END_OF_CHUNKS;
while( !( ( m_pAttributes[m_ulPropertyNum].IsPropertyPropid() ) &&
( m_pAttributes[m_ulPropertyNum].GetPropSet() == FMTID_SummaryInformation ) )||
( ( m_pAttributes[m_ulPropertyNum].GetPropertyPropid() != PIDSI_AUTHOR ) &&
( m_pAttributes[m_ulPropertyNum].GetPropertyPropid() != PIDSI_TITLE ) &&
( m_pAttributes[m_ulPropertyNum].GetPropertyPropid() != PIDSI_SUBJECT ) &&
( m_pAttributes[m_ulPropertyNum].GetPropertyPropid() != PIDSI_KEYWORDS ) &&
( m_pAttributes[m_ulPropertyNum].GetPropertyPropid() != PIDSI_COMMENTS ) ) )
{
if ( m_ulPropertyNum < m_cAttributes )
m_ulPropertyNum++;
else
break;
}
if ( m_ulPropertyNum == m_cAttributes)
return FILTER_E_END_OF_CHUNKS;
else
{
// Set chunk description
pStat->idChunk = m_ulChunkID;
pStat->breakType = CHUNK_EOS;
pStat->flags = CHUNK_VALUE;
pStat->locale = GetSystemDefaultLCID();
pStat->attribute.guidPropSet = FMTID_SummaryInformation;
pStat->attribute.psProperty.ulKind = PRSPEC_PROPID;
pStat->attribute.psProperty.propid = m_pAttributes[m_ulPropertyNum].GetPropertyPropid();
pStat->idChunkSource = m_ulChunkID;
pStat->cwcStartSource = 0;
pStat->cwcLenSource = 0;
m_ulCurrentPropertyNum = m_ulPropertyNum;
m_ulPropertyNum++;
m_ulChunkID++;
return S_OK;
}
}
default:
return E_FAIL;
}//switch(...)
}//for(;;)
}
//M-------------------------------------------------------------------------
// Method: COooFilter::GetText (IFilter::GetText)
// Summary: Retrieves UNICODE text for index
// Arguments: pcwcBuffer
// [in] Pointer to size of UNICODE buffer
// [out] Pointer to count of UNICODE characters returned
// awcBuffer
// [out] Pointer to buffer to receive UNICODE text
// Returns: S_OK
// Text successfully retrieved, but text remains in chunk
// FILTER_E_NO_MORE_TEXT
// All of the text in the current chunk has been returned
// FILTER_S_LAST_TEXT
// Next call to GetText will return FILTER_E_NO_MORE_TEXT
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::GetText(ULONG * pcwcBuffer, WCHAR * awcBuffer)
{
switch ( m_eState )
{
case FilteringProperty:
return FILTER_E_NO_TEXT;
case FilteringContent:
{
if ( !m_fContents || 0 == m_ulUnicodeBufferLen )
{
*pcwcBuffer = 0;
return FILTER_E_NO_MORE_TEXT;
}
// Copy UNICODE characters in chunk buffer to output UNICODE buffer
ULONG ulToCopy = min( *pcwcBuffer, m_ulUnicodeBufferLen - m_ulUnicodeCharsRead );
ZeroMemory(awcBuffer, sizeof(awcBuffer));
wmemcpy( awcBuffer, m_pwsBuffer.c_str() + m_ulUnicodeCharsRead, ulToCopy );
m_ulUnicodeCharsRead += ulToCopy;
*pcwcBuffer = ulToCopy;
if ( m_ulUnicodeBufferLen == m_ulUnicodeCharsRead )
{
m_ulUnicodeCharsRead = 0;
m_ulUnicodeBufferLen = 0;
return FILTER_S_LAST_TEXT;
}
return S_OK;
}
default:
return E_FAIL;
}
}
//M-------------------------------------------------------------------------
// Method: GetMetaInfoNameFromPropertyId
// Summary: helper function to convert PropertyID into respective
// MetaInfo names.
// Arguments: ulPropID
// [in] property ID
// Returns: corresponding metainfo names.
//--------------------------------------------------------------------------
::std::wstring GetMetaInfoNameFromPropertyId( ULONG ulPropID )
{
switch ( ulPropID )
{
case PIDSI_AUTHOR: return META_INFO_AUTHOR;
case PIDSI_TITLE: return META_INFO_TITLE;
case PIDSI_SUBJECT: return META_INFO_SUBJECT;
case PIDSI_KEYWORDS: return META_INFO_KEYWORDS;
case PIDSI_COMMENTS: return META_INFO_DESCRIPTION;
default: return EMPTY_STRING;
}
}
//M-------------------------------------------------------------------------
// Method: COooFilter::GetValue (IFilter::GetValue)
// Summary: Retrieves properites for index
// Arguments: ppPropValue
// [out] Address that receives pointer to property value
// Returns: FILTER_E_NO_VALUES
// Always
// FILTER_E_NO_MORE_VALUES
// (not implemented)
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::GetValue(PROPVARIANT ** ppPropValue)
{
if (m_eState == FilteringContent)
return FILTER_E_NO_VALUES;
else if (m_eState == FilteringProperty)
{
if ( m_cAttributes == 0 || ( m_ulCurrentPropertyNum == m_ulPropertyNum ) )
return FILTER_E_NO_MORE_VALUES;
PROPVARIANT *pPropVar = (PROPVARIANT *) CoTaskMemAlloc( sizeof (PROPVARIANT) );
if ( pPropVar == 0 )
return E_OUTOFMEMORY;
::std::wstring wsTagName= GetMetaInfoNameFromPropertyId( m_pAttributes[m_ulCurrentPropertyNum].GetPropertyPropid() );
if ( wsTagName == EMPTY_STRING )
return FILTER_E_NO_VALUES;
::std::wstring wsTagData = m_pMetaInfoReader->getTagData(wsTagName);
pPropVar->vt = VT_LPWSTR;
size_t cw = wsTagData.length() + 1; // reserve one for the '\0'
pPropVar->pwszVal = static_cast<WCHAR*>( CoTaskMemAlloc(cw*sizeof(WCHAR)) );
if (pPropVar->pwszVal == 0)
{
CoTaskMemFree(pPropVar);
return E_OUTOFMEMORY;
}
wmemcpy(pPropVar->pwszVal, wsTagData.c_str(), cw);
*ppPropValue = pPropVar;
m_ulCurrentPropertyNum = m_ulPropertyNum;
return S_OK;
}
else
return E_FAIL;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::BindRegion (IFilter::BindRegion)
// Summary: Creates moniker or other interface for indicated text
// Arguments: origPos
// [in] Description of text location and extent
// riid
// [in] Reference IID of specified interface
// ppunk
// [out] Address that receives requested interface pointer
// Returns: E_NOTIMPL
// Always
// FILTER_W_REGION_CLIPPED
// (not implemented)
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::BindRegion(
FILTERREGION /*origPos*/,
REFIID /*riid*/,
void ** /*ppunk*/)
{
// BindRegion is currently reserved for future use
return E_NOTIMPL;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::GetClassID (IPersist::GetClassID)
// Summary: Retrieves the class id of the filter class
// Arguments: pClassID
// [out] Pointer to the class ID of the filter
// Returns: S_OK
// Always
// E_FAIL
// (not implemented)
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::GetClassID(CLSID * pClassID)
{
*pClassID = CLSID_COooFilter;
return S_OK;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::IsDirty (IPersistFile::IsDirty)
// Summary: Checks whether file has changed since last save
// Arguments: void
// Returns: S_FALSE
// Always
// S_OK
// (not implemented)
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::IsDirty()
{
// File is opened read-only and never changes
return S_FALSE;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::Load (IPersistFile::Load)
// Summary: Opens and initializes the specified file
// Arguments: pszFileName
// [in] Pointer to zero-terminated string
// of absolute path of file to open
// dwMode
// [in] Access mode to open the file
// Returns: S_OK
// File was successfully loaded
// E_OUTOFMEMORY
// File could not be loaded due to insufficient memory
// E_FAIL
// (not implemented)
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::Load(LPCWSTR pszFileName, DWORD /*dwMode*/)
{
// Load just sets the filename for GetChunk to read and ignores the mode
m_pwszFileName = getShortPathName( pszFileName );
// Open the file previously specified in call to IPersistFile::Load and get content.
try
{
if (m_pMetaInfoReader)
delete m_pMetaInfoReader;
m_pMetaInfoReader = new CMetaInfoReader(WStringToString(m_pwszFileName));
if (m_pContentReader)
delete m_pContentReader;
m_pContentReader = new CContentReader(WStringToString(m_pwszFileName), m_pMetaInfoReader->getDefaultLocale());
}
catch (const std::exception&)
{
return E_FAIL;
}
return S_OK;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::Save (IPersistFile::Save)
// Summary: Saves a copy of the current file being filtered
// Arguments: pszFileName
// [in] Pointer to zero-terminated string of
// absolute path of where to save file
// fRemember
// [in] Whether the saved copy is made the current file
// Returns: E_FAIL
// Always
// S_OK
// (not implemented)
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::Save(LPCWSTR /*pszFileName*/, BOOL /*fRemember*/)
{
// File is opened read-only; saving it is an error
return E_FAIL;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::SaveCompleted (IPersistFile::SaveCompleted)
// Summary: Determines whether a file save is completed
// Arguments: pszFileName
// [in] Pointer to zero-terminated string of
// absolute path where file was previously saved
// Returns: S_OK
// Always
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::SaveCompleted(LPCWSTR /*pszFileName*/)
{
// File is opened read-only, so "save" is always finished
return S_OK;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::Load (IPersistStream::Load)
// Summary: Initializes an object from the stream where it was previously saved
// Arguments: pStm
// [in] Pointer to stream from which object should be loaded
// Returns: S_OK
// E_OUTOFMEMORY
// E_FAIL
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::Load(IStream *pStm)
{
zlib_filefunc_def z_filefunc;
m_pStream = PrepareIStream( pStm, z_filefunc );
try
{
if (m_pMetaInfoReader)
delete m_pMetaInfoReader;
m_pMetaInfoReader = new CMetaInfoReader((void*)m_pStream, &z_filefunc);
if (m_pContentReader)
delete m_pContentReader;
m_pContentReader = new CContentReader((void*)m_pStream, m_pMetaInfoReader->getDefaultLocale(), &z_filefunc);
}
catch (const std::exception&)
{
return E_FAIL;
}
return S_OK;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::GetSizeMax (IPersistStream::GetSizeMax)
// Summary: Returns the size in bytes of the stream neede to save the object.
// Arguments: pcbSize
// [out] Pointer to a 64 bit unsigned int indicating the size needed
// Returns: E_NOTIMPL
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::GetSizeMax(ULARGE_INTEGER * /*pcbSize*/)
{
return E_NOTIMPL;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::Save (IPersistStream::Save)
// Summary: Save object to specified stream
// Arguments: pStm
// [in] Pointer to stream
// fClearDirty
// [in] Indicates whether to clear dirty flag
// Returns: E_NOTIMPL
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::Save(IStream * /*pStm*/, BOOL )
{
return E_NOTIMPL;
}
//M-------------------------------------------------------------------------
// Method: COooFilter::GetCurFile (IPersistFile::GetCurFile)
// Summary: Returns a copy of the current file name
// Arguments: ppszFileName
// [out] Address to receive pointer to zero-terminated
// string for absolute path to current file
// Returns: S_OK
// A valid absolute path was successfully returned
// S_FALSE
// (not implemented)
// E_OUTOFMEMORY
// Operation failed due to insufficient memory
// E_FAIL
// Operation failed due to some reason
// other than insufficient memory
//-------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilter::GetCurFile(LPWSTR * ppszFileName)
{
if ( EMPTY_STRING == m_pwszFileName )
return E_FAIL;
else
*ppszFileName = (LPWSTR)m_pwszFileName.c_str();
return S_OK;
}
//M-------------------------------------------------------------------------
// Method: COooFilterCF::COooFilterCF
// Summary: Class factory constructor
// Arguments: void
// Purpose: Manages global instance count
//--------------------------------------------------------------------------
COooFilterCF::COooFilterCF() :
m_lRefs(1)
{
InterlockedIncrement( &g_lInstances );
}
//M-------------------------------------------------------------------------
// Method: COooFilterCF::~COooFilterCF
// Summary: Class factory destructor
// Arguments: void
// Purpose: Manages global instance count
//--------------------------------------------------------------------------
COooFilterCF::~COooFilterCF()
{
InterlockedDecrement( &g_lInstances );
}
//M-------------------------------------------------------------------------
// Method: COooFilterCF::QueryInterface (IUnknown::QueryInterface)
// Summary: Queries for requested interface
// Arguments: riid
// [in] Reference IID of requested interface
// ppvObject
// [out] Address that receives requested interface pointer
// Returns: S_OK
// Interface is supported
// E_NOINTERFACE
// Interface is not supported
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilterCF::QueryInterface(REFIID riid, void ** ppvObject)
{
IUnknown *pUnkTemp;
if ( IID_IClassFactory == riid )
pUnkTemp = (IUnknown *)(IClassFactory *)this;
else if ( IID_IUnknown == riid )
pUnkTemp = (IUnknown *)this;
else
{
*ppvObject = NULL;
return E_NOINTERFACE;
}
*ppvObject = (void *)pUnkTemp;
pUnkTemp->AddRef();
return S_OK;
}
//M-------------------------------------------------------------------------
// Method: COooFilterCF::AddRef (IUknown::AddRef)
// Summary: Increments interface refcount
// Arguments: void
// Returns: Value of incremented interface refcount
//-------------------------------------------------------------------------
ULONG STDMETHODCALLTYPE COooFilterCF::AddRef()
{
return InterlockedIncrement( &m_lRefs );
}
//M-------------------------------------------------------------------------
// Method: COooFilterCF::Release (IUnknown::Release)
// Summary: Decrements interface refcount, deleting if unreferenced
// Arguments: void
// Returns: Value of decremented refcount
//--------------------------------------------------------------------------
ULONG STDMETHODCALLTYPE COooFilterCF::Release()
{
ULONG ulTmp = InterlockedDecrement( &m_lRefs );
if ( 0 == ulTmp )
delete this;
return ulTmp;
}
//M-------------------------------------------------------------------------
// Method: COooFilterCF::CreateInstance (IClassFactory::CreateInstance)
// Summary: Creates new OpenOffice.org filter object
// Arguments: pUnkOuter
// [in] Pointer to IUnknown interface of aggregating object
// riid
// [in] Reference IID of requested interface
// ppvObject
// [out] Address that receives requested interface pointer
// Returns: S_OK
// OpenOffice.org filter object was successfully created
// CLASS_E_NOAGGREGATION
// pUnkOuter parameter was non-NULL
// E_NOINTERFACE
// (not implemented)
// E_OUTOFMEMORY
// OpenOffice.org filter object could not be created
// due to insufficient memory
// E_UNEXPECTED
// Unsuccessful due to an unexpected condition
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilterCF::CreateInstance(
IUnknown * pUnkOuter,
REFIID riid,
void * * ppvObject)
{
COooFilter *pIUnk = 0;
if ( 0 != pUnkOuter )
return CLASS_E_NOAGGREGATION;
pIUnk = new COooFilter();
if ( 0 != pIUnk )
{
if ( SUCCEEDED( pIUnk->QueryInterface( riid , ppvObject ) ) )
{
// Release extra refcount from QueryInterface
pIUnk->Release();
}
else
{
delete pIUnk;
return E_UNEXPECTED;
}
}
else
return E_OUTOFMEMORY;
return S_OK;
}
//M-------------------------------------------------------------------------
// Method: COooFilterCF::LockServer (IClassFactory::LockServer)
// Summary: Forces/allows filter class to remain loaded/be unloaded
// Arguments: fLock
// [in] TRUE to lock, FALSE to unlock
// Returns: S_OK
// Always
// E_FAIL
// (not implemented)
// E_OUTOFMEMORY
// (not implemented)
// E_UNEXPECTED
// (not implemented)
//--------------------------------------------------------------------------
SCODE STDMETHODCALLTYPE COooFilterCF::LockServer(BOOL fLock)
{
if( fLock )
InterlockedIncrement( &g_lInstances );
else
InterlockedDecrement( &g_lInstances );
return S_OK;
}
//+-------------------------------------------------------------------------
// DLL: ooofilt.dll
// Summary: Implements Dynamic Link Library functions for OpenOffice.org filter
//--------------------------------------------------------------------------
//F-------------------------------------------------------------------------
// Function: DllMain
// Summary: Called from C-Runtime on process/thread attach/detach
// Arguments: hInstance
// [in] Handle to the DLL
// fdwReason
// [in] Reason for calling DLL entry point
// lpReserve
// [in] Details of DLL initialization and cleanup
// Returns: TRUE
// Always
//--------------------------------------------------------------------------
extern "C" BOOL WINAPI DllMain(
HINSTANCE hInstance,
DWORD fdwReason,
LPVOID /*lpvReserved*/
)
{
if ( DLL_PROCESS_ATTACH == fdwReason )
DisableThreadLibraryCalls( hInstance );
return TRUE;
}
//F-------------------------------------------------------------------------
// Function: DllGetClassObject
// Summary: Create OpenOffice.org filter class factory object
// Arguments: cid
// [in] Class ID of class that class factory creates
// iid
// [in] Reference IID of requested class factory interface
// ppvObj
// [out] Address that receives requested interface pointer
// Returns: S_OK
// Class factory object was created successfully
// CLASS_E_CLASSNOTAVAILABLE
// DLL does not support the requested class
// E_INVALIDARG
// (not implemented
// E_OUTOFMEMORY
// Insufficient memory to create the class factory object
// E_UNEXPECTED
// Unsuccessful due to an unexpected condition
//-------------------------------------------------------------------------
extern "C" SCODE STDMETHODCALLTYPE DllGetClassObject(
REFCLSID cid,
REFIID iid,
void ** ppvObj
)
{
IUnknown *pResult = 0;
if ( CLSID_COooFilter == cid )
pResult = (IUnknown *) new COooFilterCF;
else
return CLASS_E_CLASSNOTAVAILABLE;
if ( 0 != pResult )
{
if( SUCCEEDED( pResult->QueryInterface( iid, ppvObj ) ) )
// Release extra refcount from QueryInterface
pResult->Release();
else
{
delete pResult;
return E_UNEXPECTED;
}
}
else
return E_OUTOFMEMORY;
return S_OK;
}
//F-------------------------------------------------------------------------
// Function: DllCanUnloadNow
// Summary: Indicates whether it is possible to unload DLL
// Arguments: void
// Returns: S_OK
// DLL can be unloaded now
// S_FALSE
// DLL must remain loaded
//--------------------------------------------------------------------------
extern "C" SCODE STDMETHODCALLTYPE DllCanUnloadNow()
{
if ( 0 >= g_lInstances )
return S_OK;
else
return S_FALSE;
}
//F-------------------------------------------------------------------------
// Function: DllRegisterServer
// DllUnregisterServer
// Summary: Registers and unregisters DLL server
// Returns: DllRegisterServer
// S_OK
// Registration was successful
// SELFREG_E_CLASS
// Registration was unsuccessful
// SELFREG_E_TYPELIB
// (not implemented)
// E_OUTOFMEMORY
// (not implemented)
// E_UNEXPECTED
// (not implemented)
// DllUnregisterServer
// S_OK
// Unregistration was successful
// S_FALSE
// Unregistration was successful, but other
// entries still exist for the DLL's classes
// SELFREG_E_CLASS
// (not implemented)
// SELFREG_E_TYPELIB
// (not implemented)
// E_OUTOFMEMORY
// (not implemented)
// E_UNEXPECTED
// (not implemented)
//--------------------------------------------------------------------------
//F-------------------------------------------------------------------------
// helper functions to register the Indexing Service.
//--------------------------------------------------------------------------
namespace /* private */
{
const char* GUID_PLACEHOLDER = "{GUID}";
const char* GUID_PERSIST_PLACEHOLDER = "{GUIDPERSIST}";
const char* EXTENSION_PLACEHOLDER = "{EXT}";
const char* FORWARDKEY_PLACEHOLDER = "{FWDKEY}";
const char* CLSID_GUID_INPROC_ENTRY = "CLSID\\{GUID}\\InProcServer32";
const char* CLSID_GUID_ENTRY = "CLSID\\{GUID}";
const char* CLSID_GUID_PERSIST_ADDIN_ENTRY = "CLSID\\{GUID}\\PersistentAddinsRegistered\\{GUIDPERSIST}";
const char* CLSID_PERSIST_ENTRY = "CLSID\\{GUID}\\PersistentHandler";
const char* EXT_PERSIST_ENTRY = "{EXT}\\PersistentHandler";
const char* INDEXING_FILTER_DLLSTOREGISTER = "SYSTEM\\CurrentControlSet\\Control\\ContentIndex";
//---------------------------
// "String Placeholder" ->
// "String Replacement"
//---------------------------
void SubstitutePlaceholder(std::string& String, const std::string& Placeholder, const std::string& Replacement)
{
std::string::size_type idx = String.find(Placeholder);
std::string::size_type len = Placeholder.length();
while (std::string::npos != idx)
{
String.replace(idx, len, Replacement);
idx = String.find(Placeholder);
}
}
//----------------------------------------------
// Make the registry entry and set Filter Handler
// HKCR\CLSID\{7BC0E710-5703-45be-A29D-5D46D8B39262} = OpenOffice.org Filter
// InProcServer32 (Default) = Path\ooofilt.dll
// ThreadingModel = Both
//----------------------------------------------
HRESULT RegisterFilterHandler(const char* FilePath, const CLSID& FilterGuid)
{
std::string ClsidEntry = CLSID_GUID_ENTRY;
SubstitutePlaceholder(ClsidEntry, GUID_PLACEHOLDER, ClsidToString(FilterGuid));
if (!SetRegistryKey(HKEY_CLASSES_ROOT, ClsidEntry.c_str(), "", "OpenOffice.org Filter"))
return E_FAIL;
ClsidEntry = CLSID_GUID_INPROC_ENTRY;
SubstitutePlaceholder(ClsidEntry, GUID_PLACEHOLDER, ClsidToString(FilterGuid));
if (!SetRegistryKey(HKEY_CLASSES_ROOT, ClsidEntry.c_str(), "", FilePath))
return E_FAIL;
if (!SetRegistryKey(HKEY_CLASSES_ROOT, ClsidEntry.c_str(), "ThreadingModel", "Both"))
return E_FAIL;
return S_OK;
}
//----------------------------------------------
// Make the registry entry and set Persistent Handler
// HKCR\CLSID\{7BC0E713-5703-45be-A29D-5D46D8B39262} = OpenOffice.org Persistent Handler
// PersistentAddinsRegistered
// {89BCB740-6119-101A-BCB7-00DD010655AF} = {7BC0E710-5703-45be-A29D-5D46D8B39262}
//----------------------------------------------
HRESULT RegisterPersistentHandler(const CLSID& FilterGuid, const CLSID& PersistentGuid)
{
std::string ClsidEntry_Persist = CLSID_GUID_ENTRY;
SubstitutePlaceholder(ClsidEntry_Persist, GUID_PLACEHOLDER, ClsidToString(PersistentGuid));
if (!SetRegistryKey(HKEY_CLASSES_ROOT, ClsidEntry_Persist.c_str(), "", "OpenOffice.org Persistent Handler"))
return E_FAIL;
// Add missing entry
std::string ClsidEntry_Persist_Entry = CLSID_PERSIST_ENTRY;
SubstitutePlaceholder(ClsidEntry_Persist_Entry,
GUID_PLACEHOLDER,
ClsidToString(PersistentGuid));
if (!SetRegistryKey(HKEY_CLASSES_ROOT, ClsidEntry_Persist_Entry.c_str(), "", ClsidToString(PersistentGuid).c_str()))
return E_FAIL;
std::string ClsidEntry_Persist_Addin = CLSID_GUID_PERSIST_ADDIN_ENTRY;
SubstitutePlaceholder(ClsidEntry_Persist_Addin,
GUID_PLACEHOLDER,
ClsidToString(PersistentGuid));
SubstitutePlaceholder(ClsidEntry_Persist_Addin,
GUID_PERSIST_PLACEHOLDER,
ClsidToString(CLSID_PERSISTENT_HANDLER_ADDIN));
if (!SetRegistryKey(HKEY_CLASSES_ROOT, ClsidEntry_Persist_Addin.c_str(), "", ClsidToString(FilterGuid).c_str() ))
return E_FAIL;
return S_OK;
}
//---------------------------
// Unregister Filter Handler or persistent handler
//---------------------------
HRESULT UnregisterHandler(const CLSID& Guid)
{
std::string tmp = "CLSID\\";
tmp += ClsidToString(Guid);
return DeleteRegistryKey(HKEY_CLASSES_ROOT, tmp.c_str()) ? S_OK : E_FAIL;
}
//---------------------------
// Register Indexing Service ext and class.
// HKCR\{EXT}\PersistentHandler = {7BC0E713-5703-45be-A29D-5D46D8B39262}
// HKCR\{GUID\PersistentHandler = {7BC0E713-5703-45be-A29D-5D46D8B39262}
//---------------------------
HRESULT RegisterSearchHandler(const char* ModuleFileName)
{
if (FAILED(RegisterFilterHandler(ModuleFileName, CLSID_FILTER_HANDLER)))
return E_FAIL;
if (FAILED(RegisterPersistentHandler(CLSID_FILTER_HANDLER, CLSID_PERSISTENT_HANDLER )))
return E_FAIL;
std::string sExtPersistEntry;
for(size_t i = 0; i < OOFileExtensionTableSize; i++)
{
// first, register extension.
sExtPersistEntry = EXT_PERSIST_ENTRY;
SubstitutePlaceholder(sExtPersistEntry, EXTENSION_PLACEHOLDER, OOFileExtensionTable[i].ExtensionAnsi);
if (!SetRegistryKey(HKEY_CLASSES_ROOT,
sExtPersistEntry.c_str(),
"",
ClsidToString(CLSID_PERSISTENT_HANDLER).c_str()))
return E_FAIL;
// second, register class.
char extClassName[MAX_PATH];
if (QueryRegistryKey(HKEY_CLASSES_ROOT, OOFileExtensionTable[i].ExtensionAnsi, "", extClassName,MAX_PATH))
{
::std::string extCLSIDName( extClassName );
extCLSIDName += "\\CLSID";
char extCLSID[MAX_PATH];
if (QueryRegistryKey( HKEY_CLASSES_ROOT, extCLSIDName.c_str(), "", extCLSID, MAX_PATH))
{
std::string ClsidEntry_CLSID_Persist = CLSID_PERSIST_ENTRY;
SubstitutePlaceholder(ClsidEntry_CLSID_Persist,
GUID_PLACEHOLDER,
extCLSID);
if (!SetRegistryKey(HKEY_CLASSES_ROOT,
ClsidEntry_CLSID_Persist.c_str(),
"",
ClsidToString(CLSID_PERSISTENT_HANDLER).c_str() ))
return E_FAIL;
}
}
}
return S_OK;
}
// Register Indexing Service ext and class.
HRESULT UnregisterSearchHandler()
{
std::string sExtPersistEntry;
for (size_t i = 0; i < OOFileExtensionTableSize; i++)
{
// first, unregister extension
sExtPersistEntry = EXT_PERSIST_ENTRY;
SubstitutePlaceholder(sExtPersistEntry, EXTENSION_PLACEHOLDER, OOFileExtensionTable[i].ExtensionAnsi);
DeleteRegistryKey(HKEY_CLASSES_ROOT, sExtPersistEntry.c_str());
// second, unregister class
char extClassName[MAX_PATH];
if (QueryRegistryKey(HKEY_CLASSES_ROOT, OOFileExtensionTable[i].ExtensionAnsi, "", extClassName,MAX_PATH))
{
::std::string extCLSIDName( extClassName );
extCLSIDName += "\\CLSID";
char extCLSID[MAX_PATH];
if (QueryRegistryKey( HKEY_CLASSES_ROOT, extCLSIDName.c_str(), "", extCLSID, MAX_PATH))
{
std::string ClsidEntry_CLSID_Persist = CLSID_PERSIST_ENTRY;
SubstitutePlaceholder(ClsidEntry_CLSID_Persist,
GUID_PLACEHOLDER,
extCLSID);
DeleteRegistryKey(HKEY_CLASSES_ROOT, ClsidEntry_CLSID_Persist.c_str());
}
}
}
return ((UnregisterHandler(CLSID_FILTER_HANDLER)==S_OK) && (UnregisterHandler(CLSID_PERSISTENT_HANDLER)==S_OK))?S_OK:E_FAIL;
}
//---------------------------
// add or remove an entry to DllsToRegister entry of Indexing
// Filter to let Indexing Service register our filter automatically
// each time.
//---------------------------
HRESULT AddOrRemoveDllsToRegisterList( const ::std::string & DllPath, bool isAdd )
{
char DllsToRegisterList[4096];
if (QueryRegistryKey(HKEY_LOCAL_MACHINE,
INDEXING_FILTER_DLLSTOREGISTER,
"DLLsToRegister",
DllsToRegisterList,
4096))
{
char * pChar = DllsToRegisterList;
for ( ; *pChar != '\0' || *(pChar +1) != '\0'; pChar++)
if ( *pChar == '\0')
*pChar = ';';
*pChar = ';';
*(pChar+1) = '\0';
::std::string DllList(DllsToRegisterList);
if ( ( isAdd )&&( DllList.find( DllPath ) == ::std::string::npos ) )
DllList.append( DllPath );
else if ( ( !isAdd )&&( DllList.find( DllPath ) != ::std::string::npos ) )
DllList.erase( DllList.find( DllPath )-1, DllPath.length()+1 );
else
return S_OK;
pChar = DllsToRegisterList;
for ( size_t nChar = 0; nChar < DllList.length(); pChar++,nChar++)
{
if ( DllList[nChar] == ';')
*pChar = '\0';
else
*pChar = DllList[nChar];
}
*pChar = *( pChar+1 ) ='\0';
HKEY hSubKey;
int rc = RegCreateKeyExA(HKEY_LOCAL_MACHINE,
INDEXING_FILTER_DLLSTOREGISTER,
0,
"",
REG_OPTION_NON_VOLATILE,
KEY_WRITE,
0,
&hSubKey,
0);
if (ERROR_SUCCESS == rc)
{
rc = RegSetValueExA( hSubKey,
"DLLsToRegister",
0,
REG_MULTI_SZ,
reinterpret_cast<const BYTE*>(DllsToRegisterList),
DllList.length() + 2);
RegCloseKey(hSubKey);
}
return (ERROR_SUCCESS == rc)?S_OK:E_FAIL;
}
return S_OK;
}
} // namespace /* private */
STDAPI DllRegisterServer()
{
return S_OK;
}
//---------------------------
STDAPI DllUnregisterServer()
{
return S_OK;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|