ImgOfOriginal.cpp 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198
  1. #include "StdAfx.h"
  2. #include "ImgOfOriginal.h"
  3. #include "underlyingapi.h"
  4. #include "global.h"
  5. #include "filehelp.h"
  6. using namespace filehelping;
  7. ULONG_PTR ImgOfOriginal::m_gdiplusToken;
  8. ImgOfOriginal::ImgOfOriginal(void)
  9. {
  10. GdiplusStartupInput gdiplusStartupInput;
  11. GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);
  12. }
  13. ImgOfOriginal::~ImgOfOriginal(void)
  14. {
  15. Gdiplus::GdiplusShutdown(m_gdiplusToken);
  16. }
  17. BOOL ImgOfOriginal::InitializeEnvironment(IN LPCTSTR lpBranchId, IN IMGSHARE_VEC* pvtImgShareInfo)
  18. {
  19. if (g_pBranchId && gp_vtImgShareInfo)
  20. return TRUE;
  21. g_pBranchId = lpBranchId;
  22. gp_vtImgShareInfo = pvtImgShareInfo;
  23. return TRUE;
  24. }
  25. #if 0
  26. /************************************************************************/
  27. /*
  28. 函数:AppendLocalSharepath
  29. 描述:将本机的固定的共享目录添加到指针对象pvtImgShareInfo中;
  30. 参数:
  31. IN OUT: pvtImgShareInfo 共享路径容器;
  32. 返回:
  33. 注意: 需要获取本机的加密锁存储的域名值;
  34. */
  35. /************************************************************************/
  36. void ImgOfOriginal::AppendLocalSharepath(IN OUT IMGSHARE_VEC *pvtImgShareInfo)
  37. {
  38. if (pvtImgShareInfo)
  39. {
  40. ImgShareInfo tagImgShare;
  41. tagImgShare.bEnable = TRUE;
  42. tagImgShare.byMinCapacity = 5;
  43. tagImgShare.byMaxCapacity = 35;
  44. tagImgShare.byImgType = OImgtype;
  45. tagImgShare.byPriority = 255;
  46. _stprintf_s(tagImgShare.szBranchId, MAX_PATH, _T("%s"), _T("本机加密狗"));
  47. _stprintf_s(tagImgShare.szShareDirectory, MAX_PATH, _T("\\\\%s\\%s\\"), _T("主机名"), OImgpath);
  48. pvtImgShareInfo->push_back(new ImgShareInfo(tagImgShare));
  49. ImgShareInfo tagImgShare1;
  50. tagImgShare1.bEnable = TRUE;
  51. tagImgShare1.byMinCapacity = 5;
  52. tagImgShare1.byMaxCapacity = 35;
  53. tagImgShare1.byImgType = EImgtype;
  54. tagImgShare1.byPriority = 255;
  55. _stprintf_s(tagImgShare1.szBranchId, MAX_PATH, _T("%s"), _T("本机加密狗"));
  56. _stprintf_s(tagImgShare1.szShareDirectory, MAX_PATH, _T("\\\\%s\\%s\\"), _T("主机名"), EImgpath);
  57. pvtImgShareInfo->push_back(new ImgShareInfo(tagImgShare1));
  58. ImgShareInfo tagImgShare2;
  59. tagImgShare2.bEnable = TRUE;
  60. tagImgShare2.byMinCapacity = 5;
  61. tagImgShare2.byMaxCapacity = 35;
  62. tagImgShare2.byImgType = FImgtype;
  63. tagImgShare2.byPriority = 255;
  64. _stprintf_s(tagImgShare2.szBranchId, MAX_PATH, _T("%s"), _T("本机加密狗"));
  65. _stprintf_s(tagImgShare2.szShareDirectory, MAX_PATH, _T("\\\\%s\\%s\\"), _T("主机名"), FImgpath);
  66. pvtImgShareInfo->push_back(new ImgShareInfo(tagImgShare2));
  67. ImgShareInfo tagImgShare3;
  68. tagImgShare3.bEnable = TRUE;
  69. tagImgShare3.byMinCapacity = 5;
  70. tagImgShare3.byMaxCapacity = 35;
  71. tagImgShare3.byImgType = DImgtype;
  72. tagImgShare3.byPriority = 255;
  73. _stprintf_s(tagImgShare3.szBranchId, MAX_PATH, _T("%s"), _T("本机加密狗"));
  74. _stprintf_s(tagImgShare3.szShareDirectory, MAX_PATH, _T("\\\\%s\\%s\\"), _T("主机名"), DImgpath);
  75. pvtImgShareInfo->push_back(new ImgShareInfo(tagImgShare3));
  76. //////////////////////////////////////////////////////////////////////////
  77. ImgShareInfo tagImgShare4;
  78. tagImgShare4.bEnable = TRUE;
  79. tagImgShare4.byMinCapacity = 5;
  80. tagImgShare4.byMaxCapacity = 35;
  81. tagImgShare4.byImgType = OBImgtype;
  82. tagImgShare4.byPriority = 255;
  83. _stprintf_s(tagImgShare4.szBranchId, MAX_PATH, _T("%s"), _T("本机加密狗"));
  84. _stprintf_s(tagImgShare4.szShareDirectory, MAX_PATH, _T("\\\\%s\\%s\\"), _T("主机名"), OBImgpath);
  85. pvtImgShareInfo->push_back(new ImgShareInfo(tagImgShare4));
  86. ImgShareInfo tagImgShare5;
  87. tagImgShare5.bEnable = TRUE;
  88. tagImgShare5.byMinCapacity = 5;
  89. tagImgShare5.byMaxCapacity = 35;
  90. tagImgShare5.byImgType = EBImgtype;
  91. tagImgShare5.byPriority = 255;
  92. _stprintf_s(tagImgShare5.szBranchId, MAX_PATH, _T("%s"), _T("本机加密狗"));
  93. _stprintf_s(tagImgShare5.szShareDirectory, MAX_PATH, _T("\\\\%s\\%s\\"), _T("主机名"), EBImgpath);
  94. pvtImgShareInfo->push_back(new ImgShareInfo(tagImgShare5));
  95. ImgShareInfo tagImgShare6;
  96. tagImgShare6.bEnable = TRUE;
  97. tagImgShare6.byMinCapacity = 5;
  98. tagImgShare6.byMaxCapacity = 35;
  99. tagImgShare6.byImgType = FBImgtype;
  100. tagImgShare6.byPriority = 255;
  101. _stprintf_s(tagImgShare6.szBranchId, MAX_PATH, _T("%s"), _T("本机加密狗"));
  102. _stprintf_s(tagImgShare6.szShareDirectory, MAX_PATH, _T("\\\\%s\\%s\\"), _T("主机名"), FBImgpath);
  103. pvtImgShareInfo->push_back(new ImgShareInfo(tagImgShare6));
  104. ImgShareInfo tagImgShare7;
  105. tagImgShare7.bEnable = TRUE;
  106. tagImgShare7.byMinCapacity = 5;
  107. tagImgShare7.byMaxCapacity = 35;
  108. tagImgShare7.byImgType = DBImgtype;
  109. tagImgShare7.byPriority = 255;
  110. _stprintf_s(tagImgShare7.szBranchId, MAX_PATH, _T("%s"), _T("本机加密狗"));
  111. _stprintf_s(tagImgShare7.szShareDirectory, MAX_PATH, _T("\\\\%s\\%s\\"), _T("主机名"), DBImgpath);
  112. pvtImgShareInfo->push_back(new ImgShareInfo(tagImgShare7));
  113. }
  114. }
  115. #endif
  116. CString ImgOfOriginal::GetFileName(IN CONST CString& strfile)
  117. {
  118. CString name = _T("");
  119. int nIndex = strfile.ReverseFind(_T('\\'));
  120. if (nIndex == -1)
  121. return _T("");
  122. name = strfile.Mid(nIndex + 1);
  123. nIndex = name.ReverseFind(_T('.'));
  124. if (nIndex == -1)
  125. return _T("");
  126. name = name.Mid(0, nIndex);
  127. return name;
  128. }
  129. /************************************************************************/
  130. /*
  131. 函数:GetFilteringImg
  132. 描述:过滤掉扩展名不符合要求的文件名;
  133. 参数:
  134. IN: AryImgs 要被过滤的文件名数组;
  135. IN: lpCopyExt 要保留的文件的扩展名;
  136. 返回:
  137. 注意:
  138. */
  139. /************************************************************************/
  140. void ImgOfOriginal::GetFilteringImg(IN CStringArray &AryImgs, IN LPCTSTR lpCopyExt)
  141. {
  142. if (AryImgs.GetSize() == 0 || lpCopyExt == NULL) return;
  143. // 获取复制扩展名;
  144. int nIndex = 0;
  145. TString strtmp;
  146. TString strCopyExt(lpCopyExt);
  147. if (strCopyExt.find(_T("*.*")) != TString::npos) return;
  148. strCopyExt.append(_T("|"));
  149. STR_VEC vtCopyExt;
  150. // 将所有扩展名解析到数组里;
  151. do
  152. {
  153. nIndex = strCopyExt.find(_T('|'));
  154. if (nIndex != TString::npos)
  155. {
  156. strtmp = strCopyExt.substr(0, nIndex);
  157. strCopyExt = strCopyExt.substr(nIndex + 1);
  158. if (strtmp.compare(_T("*.*")))
  159. vtCopyExt.push_back(strtmp);
  160. }
  161. } while (strCopyExt.find(_T('|')) != TString::npos);
  162. // 过滤非复制扩展名的文件,同时去掉缩略图,保留指定复制扩展名的文件;
  163. for (int i = AryImgs.GetSize(); i > 0; i--)
  164. {
  165. BOOL bExsit = FALSE;
  166. for (STR_VEC::iterator itExt = vtCopyExt.begin(); itExt != vtCopyExt.end(); itExt++)
  167. {
  168. if (AryImgs.ElementAt(i).MakeLower().Find(itExt->c_str()) != -1) {
  169. bExsit = TRUE;
  170. break;
  171. }
  172. }
  173. if (!bExsit) {
  174. AryImgs.RemoveAt(i);
  175. continue;
  176. }
  177. #if 1// 这里应该去除"s"和"m"开头的缩略图;// 但新的做法是在订单里创建缩略图子文件夹;// 总而言之,都要去掉缩略图;
  178. nIndex = AryImgs.ElementAt(i).ReverseFind(_T('\\'));
  179. if (nIndex != -1)
  180. {
  181. strtmp = AryImgs.ElementAt(i).Mid(nIndex + 1);
  182. if (strtmp[0] == _T('s') || strtmp[0] == _T('m')) {
  183. AryImgs.RemoveAt(i);
  184. continue;
  185. }
  186. }
  187. #endif
  188. }
  189. }
  190. /************************************************************************/
  191. /*
  192. 函数:GetFilteringImg
  193. 描述:过滤掉扩展名不符合要求的文件名;
  194. 参数:
  195. IN: AryImgs 要被过滤的文件名数组;
  196. IN: lpCopyExt 要保留的文件的扩展名;
  197. 返回:
  198. 注意:
  199. */
  200. /************************************************************************/
  201. void ImgOfOriginal::GetFilteringImg(IN STR_VEC &vtImgs, IN LPCTSTR lpCopyExt)
  202. {
  203. if (vtImgs.size() == 0 || lpCopyExt == NULL) return;
  204. // 获取复制扩展名;
  205. int nIndex = 0;
  206. TString strtmp;
  207. TString strCopyExt(lpCopyExt);
  208. if (strCopyExt.find(_T("*.*")) != TString::npos) return;
  209. strCopyExt.append(_T("|"));
  210. STR_VEC vtCopyExt;
  211. // 将所有扩展名解析到数组里;
  212. do
  213. {
  214. nIndex = strCopyExt.find(_T('|'));
  215. if (nIndex != TString::npos)
  216. {
  217. strtmp = strCopyExt.substr(0, nIndex);
  218. strCopyExt = strCopyExt.substr(nIndex + 1);
  219. if (strtmp.compare(_T("*.*")))
  220. vtCopyExt.push_back(strtmp);
  221. }
  222. } while (strCopyExt.find(_T('|')) != TString::npos);
  223. // 过滤非复制扩展名的文件,同时去掉缩略图,保留指定复制扩展名的文件;
  224. for (STR_VEC::iterator it = vtImgs.begin(); it != vtImgs.end();)
  225. {
  226. BOOL bExsit = FALSE;
  227. for (STR_VEC::iterator itExt = vtCopyExt.begin(); itExt != vtCopyExt.end(); itExt++)
  228. {
  229. if (filehelpImpl::match(itExt->c_str(), it->c_str())) {
  230. bExsit = TRUE;
  231. break;
  232. }
  233. }
  234. if (!bExsit) {
  235. it = vtImgs.erase(it);
  236. continue;
  237. }
  238. #if 1// 这里应该去除"s"和"m"开头的缩略图;// 但新的做法是在订单里创建缩略图子文件夹;// 总而言之,都要去掉缩略图;
  239. nIndex = it->find_last_of(_T('\\'));
  240. if (nIndex != TString::npos) {
  241. strtmp = it->substr(nIndex + 1);
  242. if (strtmp[0] == _T('s') || strtmp[0] == _T('m')) {
  243. it = vtImgs.erase(it);
  244. continue;
  245. }
  246. }
  247. #endif
  248. it++;
  249. }
  250. }
  251. void ImgOfOriginal::SubgroupExt(IN STR_VEC &vtAllImgs, IN LPCTSTR lpSubgroupExt, IN CStringArray &AryImgs)
  252. {
  253. if (vtAllImgs.size() == 0 || lpSubgroupExt == NULL) return;
  254. // 获取复制扩展名;
  255. int nIndex = 0;
  256. TString strtmp;
  257. TString strSubgroupExt(lpSubgroupExt);
  258. if (strSubgroupExt.find(_T("*.*")) != TString::npos)
  259. {
  260. for (STR_VEC::iterator it = vtAllImgs.begin(); it != vtAllImgs.end(); it++)
  261. AryImgs.Add(CString(it->c_str()));
  262. return;
  263. }
  264. strSubgroupExt.append(_T("|"));
  265. STR_VEC vtSubgroupExt;
  266. // 将所有扩展名解析到数组里;
  267. do
  268. {
  269. nIndex = strSubgroupExt.find(_T('|'));
  270. if (nIndex != TString::npos)
  271. {
  272. strtmp = strSubgroupExt.substr(0, nIndex);
  273. strSubgroupExt = strSubgroupExt.substr(nIndex + 1);
  274. if (strtmp.compare(_T("*.*")))
  275. vtSubgroupExt.push_back(strtmp);
  276. }
  277. } while (strSubgroupExt.find(_T('|')) != TString::npos);
  278. // 过滤非复制扩展名的文件,同时去掉缩略图,保留指定复制扩展名的文件;
  279. for (STR_VEC::iterator it = vtAllImgs.begin(); it != vtAllImgs.end(); it++)
  280. {
  281. BOOL bExsit = FALSE;
  282. for (STR_VEC::iterator itExt = vtSubgroupExt.begin(); itExt != vtSubgroupExt.end(); itExt++)
  283. {
  284. if (filehelpImpl::match(itExt->c_str(), it->c_str()))
  285. {
  286. #if 1// 这里应该去除"s"和"m"开头的缩略图;// 但新的做法是在订单里创建缩略图子文件夹;// 总而言之,都要去掉缩略图;
  287. nIndex = it->find_last_of(_T('\\'));
  288. if (nIndex != TString::npos)
  289. {
  290. strtmp = it->substr(nIndex + 1);
  291. if (strtmp[0] == _T('s') || strtmp[0] == _T('m'))
  292. {
  293. continue;
  294. }
  295. }
  296. #endif
  297. AryImgs.Add(CString(it->c_str()));
  298. break;
  299. }
  300. }
  301. }
  302. }
  303. void ImgOfOriginal::SubgroupExt(IN STR_VEC &vtAllImgs, IN LPCTSTR lpSubgroupExt, IN STR_VEC &vtImgs)
  304. {
  305. if (vtAllImgs.size() == 0 || lpSubgroupExt == NULL) return;
  306. // 获取复制扩展名;
  307. int nIndex = 0;
  308. TString strtmp;
  309. TString strSubgroupExt(lpSubgroupExt);
  310. if (strSubgroupExt.find(_T("*.*")) != TString::npos)
  311. {
  312. for (STR_VEC::iterator it = vtAllImgs.begin(); it != vtAllImgs.end(); it++)
  313. vtImgs.push_back(*it);
  314. return;
  315. }
  316. strSubgroupExt.append(_T("|"));
  317. STR_VEC vtSubgroupExt;
  318. // 将所有扩展名解析到数组里;
  319. do
  320. {
  321. nIndex = strSubgroupExt.find(_T('|'));
  322. if (nIndex != TString::npos)
  323. {
  324. strtmp = strSubgroupExt.substr(0, nIndex);
  325. strSubgroupExt = strSubgroupExt.substr(nIndex + 1);
  326. if (strtmp.compare(_T("*.*")))
  327. vtSubgroupExt.push_back(strtmp);
  328. }
  329. } while (strSubgroupExt.find(_T('|')) != TString::npos);
  330. // 过滤非复制扩展名的文件,同时去掉缩略图,保留指定复制扩展名的文件;
  331. for (STR_VEC::iterator it = vtAllImgs.begin(); it != vtAllImgs.end(); it++)
  332. {
  333. BOOL bExsit = FALSE;
  334. for (STR_VEC::iterator itExt = vtSubgroupExt.begin(); itExt != vtSubgroupExt.end(); itExt++)
  335. {
  336. if (filehelpImpl::match(itExt->c_str(), it->c_str())) {
  337. #if 1// 这里应该去除"s"和"m"开头的缩略图;// 但新的做法是在订单里创建缩略图子文件夹;// 总而言之,都要去掉缩略图;
  338. nIndex = it->find_last_of(_T('\\'));
  339. if (nIndex != TString::npos) {
  340. strtmp = it->substr(nIndex + 1);
  341. if (strtmp[0] == _T('s') || strtmp[0] == _T('m')) {
  342. continue;
  343. }
  344. }
  345. #endif
  346. vtImgs.push_back(*it);
  347. break;
  348. }
  349. }
  350. }
  351. }
  352. /************************************************************************/
  353. /*
  354. 函数:CopyImg2Specifiedpath
  355. 描述:拷贝相片到指定的目录;
  356. 参数:
  357. IN: lpExistpath 相片源目录;
  358. IN: lpSpecifiedpath 目标路径;
  359. IN: lpCopyExt 指定要复制的文件的扩展名;
  360. IN: dwCopyPix 复制时是否要压缩成指定像素;
  361. IN: bOriginalCopy 复制源相片时,是否原样复制;
  362. IN: bFailIfExists 目标文件存在是否复制;
  363. 返回: 返回成功复制的相片张数;
  364. 注意:
  365. */
  366. /************************************************************************/
  367. INT ImgOfOriginal::CopyImg2Specifiedpath(IN LPCTSTR lpExistpath, IN LPCTSTR lpSpecifiedpath, IN LPCTSTR lpCopyExt, IN CONST DWORD &dwCopyPix, IN BOOL bOriginalCopy, IN BOOL bFailIfExists)
  368. {
  369. // 源目录不存在,返回-1;
  370. if (!PathFileExists(lpExistpath)) return -1;
  371. // 判断目标目录是否存在,不存在创建;
  372. if (!PathFileExists(lpSpecifiedpath))
  373. if (!underlyingapi::CreateDirectoryEx(lpSpecifiedpath))
  374. return 0;
  375. // 查找源目录下全部文件;
  376. STR_VEC vtFiles;
  377. filehelpImpl lf;
  378. lf.getfiles_findin_subfolder(lpExistpath, _T("*.*"), &vtFiles);
  379. // 过滤非复制扩展名的文件,同时去掉缩略图,保留指定复制扩展名的文件;
  380. // 若是原名导入时,这里不应该过滤任何相片;只有导出时才需要过滤;
  381. GetFilteringImg(vtFiles, lpCopyExt);
  382. int nCount = 0;
  383. int nIndex = 0;
  384. TString strtmp;
  385. if (bOriginalCopy && dwCopyPix != INVALID_COPY_PIX) // 是否原样复制 且压缩;
  386. {
  387. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  388. {
  389. strtmp = lpSpecifiedpath;
  390. if (strtmp[_tcslen(lpSpecifiedpath) - 1] != _T('\\'))
  391. strtmp.append(_T("\\"));
  392. strtmp.append(it->substr(it->find(lpExistpath) + _tcslen(lpExistpath) + 1));
  393. if (PathFileExists(strtmp.c_str()) && bFailIfExists)
  394. continue;
  395. if (underlyingapi::ImgThumbnail(it->c_str(), dwCopyPix, strtmp.c_str(), 100))
  396. {
  397. // 返回压缩失败原因;
  398. }
  399. else
  400. nCount++;
  401. }
  402. }
  403. else if (bOriginalCopy && dwCopyPix == INVALID_COPY_PIX)// 原样复制,不压缩;
  404. {
  405. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  406. {
  407. strtmp = lpSpecifiedpath;
  408. if (strtmp[_tcslen(lpSpecifiedpath) - 1] != _T('\\'))
  409. strtmp.append(_T("\\"));
  410. strtmp.append(it->substr(it->find(lpExistpath) + _tcslen(lpExistpath) + 1));
  411. // 按需要创建 or // 避免多次调用创建文件函数,应该在外面一次性创建完,再执行复制操作;
  412. again: if (!CopyFile(it->c_str(), strtmp.c_str(), bFailIfExists))
  413. {
  414. DWORD dwError = GetLastError();
  415. if (dwError == ERROR_PATH_NOT_FOUND)
  416. {
  417. // 目录不存在,创建;
  418. underlyingapi::CreateDirectoryEx(strtmp.substr(0, strtmp.find_last_of(_T('\\'))).c_str());
  419. goto again;
  420. }
  421. }
  422. else
  423. nCount++;
  424. }
  425. }
  426. else if (!bOriginalCopy && dwCopyPix != INVALID_COPY_PIX) // 压缩,不原样复制,所有源相片放在目标根目录;
  427. {
  428. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  429. {
  430. strtmp = lpSpecifiedpath;
  431. if (strtmp[_tcslen(lpSpecifiedpath) - 1] != _T('\\'))
  432. strtmp.append(_T("\\"));
  433. nIndex = it->find_last_of(_T('\\'));
  434. if (nIndex != TString::npos)
  435. {
  436. strtmp.append(it->substr(nIndex + 1));
  437. if (PathFileExists(strtmp.c_str()) && bFailIfExists)
  438. continue;
  439. if (!underlyingapi::ImgThumbnail(it->c_str(), dwCopyPix, strtmp.c_str(), 100))
  440. {
  441. // 返回压缩失败原因;
  442. OutputDebugString(_T("压缩文件失败!\n"));
  443. }
  444. else
  445. nCount++;
  446. }
  447. }
  448. }
  449. else // 不压缩,不原样;
  450. {
  451. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  452. {
  453. strtmp = lpSpecifiedpath;
  454. if (strtmp[_tcslen(lpSpecifiedpath) - 1] != _T('\\'))
  455. strtmp.append(_T("\\"));
  456. nIndex = it->find_last_of(_T('\\'));
  457. if (nIndex != TString::npos)
  458. {
  459. strtmp.append(it->substr(nIndex + 1));
  460. // 按需要创建 or // 避免多次调用创建文件函数,应该在外面一次性创建完,再执行复制操作;
  461. again1: if (!CopyFile(it->c_str(), strtmp.c_str(), bFailIfExists))
  462. {
  463. DWORD dwError = GetLastError();
  464. if (dwError == ERROR_PATH_NOT_FOUND)
  465. {
  466. // 目录不存在,创建;
  467. underlyingapi::CreateDirectoryEx(strtmp.substr(0, strtmp.find_last_of(_T('\\'))).c_str());
  468. goto again1;
  469. }
  470. }
  471. else
  472. nCount++;
  473. }
  474. }
  475. }
  476. return nCount;
  477. }
  478. /************************************************************************/
  479. /*
  480. 函数:CopyImg2Specifiedpath
  481. 描述:拷贝相片到指定的目录;
  482. 参数:
  483. IN: AryOfSelectedImg 源相片数组;
  484. IN: lpSpecifiedpath 目标路径;
  485. IN: lpWithExt 指定要复制的其他同名文件的扩展名;
  486. IN: dwCopyPix 复制时是否要压缩成指定像素;
  487. IN: bCopyBySubpath 复制时是否创建子目录;
  488. IN: lpSeparator 复制时如何创建子目录,通过该分隔串截取源相片路径剩余路径创建子目录;
  489. IN: bFailIfExists 目标文件存在是否复制;
  490. 返回: 返回成功复制的相片张数;
  491. 注意:
  492. */
  493. /************************************************************************/
  494. INT ImgOfOriginal::CopyImg2Specifiedpath(IN CStringArray& AryOfSelectedImg, IN LPCTSTR lpSpecifiedpath, IN LPCTSTR lpWithExt, IN CONST DWORD &dwCopyPix, IN BOOL bCopyBySubpath, IN LPCTSTR lpSeparator, IN BOOL bFailIfExists)
  495. {
  496. // 空数组则返回;
  497. if (AryOfSelectedImg.GetSize() == 0) return 0;
  498. // 判断目标目录是否存在,不存在创建;
  499. if (!PathFileExists(lpSpecifiedpath))
  500. if (!underlyingapi::CreateDirectoryEx(lpSpecifiedpath))
  501. return 0;
  502. int nCount = 0;
  503. int nIndex = 0;
  504. STR_VEC vtWithExt;
  505. // 解析复制子带扩展名;
  506. if (lpWithExt)
  507. {
  508. // 获取复制扩展名;
  509. TString str;
  510. TString strWithExt = underlyingapi::lowercase(lpWithExt);
  511. if (strWithExt.find(_T("*.*")) == TString::npos)
  512. {
  513. strWithExt.append(_T("|"));
  514. do
  515. {// 将所有扩展名解析到数组里;
  516. nIndex = strWithExt.find(_T('|'));
  517. if (nIndex != TString::npos)
  518. {
  519. str = strWithExt.substr(0, nIndex);
  520. strWithExt = strWithExt.substr(nIndex + 1);
  521. vtWithExt.push_back(str.substr(1));
  522. }
  523. } while (strWithExt.find(_T('|')) != TString::npos);
  524. }
  525. }
  526. CString strtmp;
  527. int nSize = AryOfSelectedImg.GetSize();
  528. if (!bCopyBySubpath && dwCopyPix == INVALID_COPY_PIX) // 不创建子目录,且不压缩, 直接放在目标目录下;
  529. {
  530. for (int i = 0; i < nSize; i++)
  531. {
  532. strtmp = lpSpecifiedpath;
  533. if (strtmp.GetAt(strtmp.GetLength() - 1) != _T('\\'))
  534. strtmp += _T("\\");
  535. nIndex = AryOfSelectedImg.ElementAt(i).ReverseFind(_T('\\'));
  536. if (nIndex != -1)
  537. {
  538. strtmp += AryOfSelectedImg.ElementAt(i).Mid(nIndex + 1);
  539. again: if (!CopyFile(AryOfSelectedImg.ElementAt(i), strtmp, bFailIfExists))
  540. {
  541. // 返回复制错误信息;
  542. DWORD dwError = GetLastError();
  543. if (dwError == ERROR_PATH_NOT_FOUND)
  544. {
  545. // 目录不存在,创建;
  546. underlyingapi::CreateDirectoryEx(strtmp.Left(strtmp.ReverseFind(_T('\\'))));
  547. goto again;
  548. }
  549. }
  550. else
  551. nCount++;
  552. // 复制其他扩展名的相片;
  553. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  554. {
  555. CString strWithExt = AryOfSelectedImg.ElementAt(i);
  556. strWithExt.MakeLower();
  557. if (strWithExt.Find(itExt->c_str()) != -1) // 不复制本扩展名;
  558. continue;
  559. nIndex = AryOfSelectedImg.ElementAt(i).ReverseFind(_T('.'));
  560. if (nIndex != -1)
  561. {
  562. strWithExt.Replace(strWithExt.Mid(nIndex), itExt->c_str());
  563. strtmp.Replace(strtmp.Mid(strtmp.ReverseFind(_T('.'))), itExt->c_str());
  564. if (!CopyFile(strWithExt, strtmp, bFailIfExists))
  565. {
  566. // 返回复制错误信息;
  567. }
  568. }
  569. }
  570. }
  571. }
  572. }
  573. else if (!bCopyBySubpath && dwCopyPix != INVALID_COPY_PIX) // 不创建子目录, 压缩;
  574. {
  575. for (int i = 0; i < nSize; i++)
  576. {
  577. strtmp = lpSpecifiedpath;
  578. if (strtmp.GetAt(strtmp.GetLength() - 1) != _T('\\'))
  579. strtmp += _T("\\");
  580. nIndex = AryOfSelectedImg.ElementAt(i).ReverseFind(_T('\\'));
  581. if (nIndex != -1)
  582. {
  583. strtmp += AryOfSelectedImg.ElementAt(i).Mid(nIndex + 1);
  584. if (PathFileExists(strtmp) && bFailIfExists)
  585. {//目标相片存在,且覆盖存在相片选项真;
  586. continue;
  587. }
  588. else
  589. {
  590. if (!underlyingapi::ImgThumbnail(AryOfSelectedImg.ElementAt(i), dwCopyPix, strtmp, 100))
  591. {
  592. // 返回压缩失败原因;
  593. }
  594. else
  595. nCount++;
  596. }
  597. // 复制其他扩展名的相片;
  598. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  599. {
  600. CString strWithExt = AryOfSelectedImg.ElementAt(i);
  601. strWithExt.MakeLower();
  602. if (strWithExt.Find(itExt->c_str()) != -1) // 不复制本扩展名;
  603. continue;
  604. nIndex = AryOfSelectedImg.ElementAt(i).ReverseFind(_T('.'));
  605. if (nIndex != -1)
  606. {
  607. strWithExt.Replace(strWithExt.Mid(nIndex), itExt->c_str());
  608. strtmp.Replace(strtmp.Mid(strtmp.ReverseFind(_T('.'))), itExt->c_str());
  609. if (!CopyFile(strWithExt, strtmp, bFailIfExists))
  610. {
  611. // 返回复制错误信息;
  612. }
  613. }
  614. }
  615. }
  616. }
  617. }
  618. else if (bCopyBySubpath && dwCopyPix == INVALID_COPY_PIX) // 创建子目录,不压缩;
  619. {
  620. if (lpSeparator == NULL)
  621. {
  622. // 分隔符为空,返回错误信息;
  623. return FALSE;
  624. }
  625. CString strRight;
  626. int nSeparatorlen = _tcslen(lpSeparator);
  627. for (int i = 0; i < nSize; i++)
  628. {
  629. strtmp = lpSpecifiedpath;
  630. if (strtmp.GetAt(strtmp.GetLength() - 1) != _T('\\'))
  631. strtmp += _T("\\");
  632. nIndex = AryOfSelectedImg.ElementAt(i).Find(lpSeparator);
  633. if (nIndex != -1)
  634. {
  635. strRight = AryOfSelectedImg.ElementAt(i).Mid(nIndex + nSeparatorlen);
  636. nIndex = strRight.Find(_T("\\"));
  637. if (nIndex != -1)
  638. {
  639. strRight = strRight.Mid(nIndex + 1);
  640. strtmp += strRight;
  641. again1: if (!CopyFile(AryOfSelectedImg.ElementAt(i), strtmp, bFailIfExists))
  642. {
  643. // 返回复制错误信息;
  644. DWORD dwError = GetLastError();
  645. if (dwError == ERROR_PATH_NOT_FOUND)
  646. {
  647. // 目录不存在,创建;
  648. underlyingapi::CreateDirectoryEx(strtmp.Left(strtmp.ReverseFind(_T('\\'))));
  649. goto again1;
  650. }
  651. }
  652. else
  653. nCount++;
  654. // 复制其他扩展名的相片;
  655. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  656. {
  657. CString strWithExt = AryOfSelectedImg.ElementAt(i);
  658. strWithExt.MakeLower();
  659. if (strWithExt.Find(itExt->c_str()) != -1) // 不复制本扩展名;
  660. continue;
  661. nIndex = AryOfSelectedImg.ElementAt(i).ReverseFind(_T('.'));
  662. if (nIndex != -1)
  663. {
  664. strWithExt.Replace(strWithExt.Mid(nIndex), itExt->c_str());
  665. strtmp.Replace(strtmp.Mid(strtmp.ReverseFind(_T('.'))), itExt->c_str());
  666. if (!CopyFile(strWithExt, strtmp, bFailIfExists))
  667. {
  668. // 返回复制错误信息;
  669. }
  670. }
  671. }
  672. }
  673. }
  674. }
  675. }
  676. else if (bCopyBySubpath && dwCopyPix != INVALID_COPY_PIX) // 创建子目录,压缩;
  677. {
  678. if (lpSeparator == NULL)
  679. {
  680. // 同时返回错误信息;
  681. return FALSE;
  682. }
  683. CString strRight;
  684. int nSeparatorlen = _tcslen(lpSeparator);
  685. for (int i = 0; i < nSize; i++)
  686. {
  687. strtmp = lpSpecifiedpath;
  688. if (strtmp.GetAt(strtmp.GetLength() - 1) != _T('\\'))
  689. strtmp += _T("\\");
  690. nIndex = AryOfSelectedImg.ElementAt(i).Find(lpSeparator);
  691. if (nIndex != -1)
  692. {
  693. strRight = AryOfSelectedImg.ElementAt(i).Mid(nIndex + nSeparatorlen);
  694. nIndex = strRight.Find(_T("\\"));
  695. if (nIndex != -1)
  696. {
  697. strRight = strRight.Mid(nIndex + 1);
  698. strtmp += strRight;
  699. if (PathFileExists(strtmp) && bFailIfExists)
  700. {//目标相片存在,且覆盖存在相片选项真;
  701. continue;
  702. }
  703. else
  704. {
  705. if (!underlyingapi::ImgThumbnail(AryOfSelectedImg.ElementAt(i), dwCopyPix, strtmp, 100))
  706. {
  707. // 返回压缩失败原因;
  708. }
  709. else
  710. nCount++;
  711. }
  712. // 复制其他扩展名的相片;
  713. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  714. {
  715. CString strWithExt = AryOfSelectedImg.ElementAt(i);
  716. strWithExt.MakeLower();
  717. if (strWithExt.Find(itExt->c_str()) != -1) // 不复制本扩展名;
  718. continue;
  719. nIndex = AryOfSelectedImg.ElementAt(i).ReverseFind(_T('.'));
  720. if (nIndex != -1)
  721. {
  722. strWithExt.Replace(strWithExt.Mid(nIndex), itExt->c_str());
  723. strtmp.Replace(strtmp.Mid(strtmp.ReverseFind(_T('.'))), itExt->c_str());
  724. if (!CopyFile(strWithExt, strtmp, bFailIfExists))
  725. {
  726. // 返回复制错误信息;
  727. }
  728. }
  729. }
  730. }
  731. }
  732. }
  733. }
  734. return nCount;
  735. }
  736. /************************************************************************/
  737. /*
  738. 函数:CopyImg2Specifiedpath
  739. 描述:拷贝相片到指定的目录;
  740. 参数:
  741. IN: AryOfSelectedImg 源相片数组;
  742. IN: lpSpecifiedpath 目标路径;
  743. IN: lpWithExt 指定要复制的其他同名文件的扩展名;
  744. IN: dwCopyPix 复制时是否要压缩成指定像素;
  745. IN: bCopyBySubpath 复制时是否创建子目录;
  746. IN: lpSeparator 复制时如何创建子目录,通过该分隔串截取源相片路径剩余路径创建子目录;
  747. IN: bFailIfExists 目标文件存在是否复制;
  748. 返回: 返回成功复制的相片张数;
  749. 注意:
  750. */
  751. /************************************************************************/
  752. INT ImgOfOriginal::CopyImg2Specifiedpath(IN STR_VEC& AryOfSelectedImg, IN LPCTSTR lpSpecifiedpath, IN LPCTSTR lpWithExt, IN CONST DWORD &dwCopyPix, IN BOOL bCopyBySubpath, IN LPCTSTR lpSeparator, IN BOOL bFailIfExists)
  753. {
  754. // 空数组则返回;
  755. if (AryOfSelectedImg.size() == 0) return 0;
  756. // 判断目标目录是否存在,不存在创建;
  757. if (!PathFileExists(lpSpecifiedpath))
  758. if (!underlyingapi::CreateDirectoryEx(lpSpecifiedpath))
  759. return 0;
  760. int nCount = 0;
  761. int nIndex = 0;
  762. STR_VEC vtWithExt;
  763. // 解析复制子带扩展名;
  764. if (lpWithExt)
  765. {
  766. // 获取复制扩展名;
  767. TString str;
  768. TString strWithExt = underlyingapi::lowercase(lpWithExt);
  769. if (strWithExt.find(_T("*.*")) == TString::npos)
  770. {
  771. strWithExt.append(_T("|"));
  772. do
  773. {// 将所有扩展名解析到数组里;
  774. nIndex = strWithExt.find(_T('|'));
  775. if (nIndex != TString::npos)
  776. {
  777. str = strWithExt.substr(0, nIndex);
  778. strWithExt = strWithExt.substr(nIndex + 1);
  779. vtWithExt.push_back(str.substr(1));
  780. }
  781. } while (strWithExt.find(_T('|')) != TString::npos);
  782. }
  783. }
  784. TString strtmp;
  785. if (!bCopyBySubpath && dwCopyPix == INVALID_COPY_PIX) // 不创建子目录,且不压缩, 直接放在目标目录下;
  786. {
  787. for (STR_VEC::iterator it = AryOfSelectedImg.begin(); it != AryOfSelectedImg.end(); it++)
  788. {
  789. strtmp = lpSpecifiedpath;
  790. if (strtmp[_tcslen(strtmp.c_str()) - 1] != _T('\\'))
  791. strtmp.append(_T("\\"));
  792. nIndex = it->find_last_of(_T('\\'));
  793. if (nIndex != TString::npos)
  794. {
  795. strtmp += it->substr(nIndex + 1);
  796. again: if (!CopyFile(it->c_str(), strtmp.c_str(), bFailIfExists))
  797. {
  798. // 返回复制错误信息;
  799. DWORD dwError = GetLastError();
  800. if (dwError == ERROR_PATH_NOT_FOUND)
  801. {
  802. // 目录不存在,创建;
  803. underlyingapi::CreateDirectoryEx(strtmp.substr(0, strtmp.find_last_of(_T('\\'))).c_str());
  804. goto again;
  805. }
  806. }
  807. else
  808. nCount++;
  809. // 复制其他扩展名的相片;
  810. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  811. {
  812. TString strWithExt = underlyingapi::lowercase(it->c_str());
  813. if (strWithExt.find(itExt->c_str()) != TString::npos) // 不复制本扩展名;
  814. continue;
  815. nIndex = it->find_last_of(_T('.'));
  816. if (nIndex != TString::npos)
  817. {
  818. //strWithExt.replace(nIndex,itExt->size(),itExt->c_str());
  819. //strtmp.replace(strtmp.find_last_of(_T('.')), itExt->size(), itExt->c_str());
  820. strWithExt.replace(nIndex, it->length() - nIndex, itExt->c_str());
  821. strtmp.replace(strtmp.find_last_of(_T('.')), strtmp.length() - strtmp.find_last_of(_T('.')), itExt->c_str());
  822. if (!CopyFile(strWithExt.c_str(), strtmp.c_str(), bFailIfExists))
  823. {
  824. // 返回复制错误信息;
  825. }
  826. }
  827. }
  828. }
  829. }
  830. }
  831. else if (!bCopyBySubpath && dwCopyPix != INVALID_COPY_PIX) // 不创建子目录, 压缩;
  832. {
  833. for (STR_VEC::iterator it = AryOfSelectedImg.begin(); it != AryOfSelectedImg.end(); it++)
  834. {
  835. strtmp = lpSpecifiedpath;
  836. if (strtmp[_tcslen(strtmp.c_str()) - 1] != _T('\\'))
  837. strtmp.append(_T("\\"));
  838. nIndex = it->find_last_of(_T('\\'));
  839. if (nIndex != TString::npos)
  840. {
  841. strtmp += it->substr(nIndex + 1);
  842. if (PathFileExists(strtmp.c_str()) && bFailIfExists)
  843. {//目标相片存在,且覆盖存在相片选项真;
  844. continue;
  845. }
  846. else
  847. {
  848. if (!underlyingapi::ImgThumbnail(it->c_str(), dwCopyPix, strtmp, 100))
  849. {
  850. // 返回压缩失败原因;
  851. }
  852. else
  853. nCount++;
  854. }
  855. // 复制其他扩展名的相片;
  856. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  857. {
  858. TString strWithExt = underlyingapi::lowercase(it->c_str());
  859. if (strWithExt.find(itExt->c_str()) != TString::npos) // 不复制本扩展名;
  860. continue;
  861. nIndex = it->find_last_of(_T('.'));
  862. if (nIndex != TString::npos)
  863. {
  864. //strWithExt.replace(nIndex,itExt->size(),itExt->c_str());
  865. //strtmp.replace(strtmp.find_last_of(_T('.')), itExt->size(), itExt->c_str());
  866. strWithExt.replace(nIndex, it->length() - nIndex, itExt->c_str());
  867. strtmp.replace(strtmp.find_last_of(_T('.')), strtmp.length() - strtmp.find_last_of(_T('.')), itExt->c_str());
  868. if (!CopyFile(strWithExt.c_str(), strtmp.c_str(), bFailIfExists))
  869. {
  870. // 返回复制错误信息;
  871. }
  872. }
  873. }
  874. }
  875. }
  876. }
  877. else if (bCopyBySubpath && dwCopyPix == INVALID_COPY_PIX) // 创建子目录,不压缩;
  878. {
  879. if (lpSeparator == NULL)
  880. {
  881. // 分隔符为空,返回错误信息;
  882. return FALSE;
  883. }
  884. TString strRight;
  885. int nSeparatorlen = _tcslen(lpSeparator);
  886. for (STR_VEC::iterator it = AryOfSelectedImg.begin(); it != AryOfSelectedImg.end(); it++)
  887. {
  888. strtmp = lpSpecifiedpath;
  889. if (strtmp[_tcslen(strtmp.c_str()) - 1] != _T('\\'))
  890. strtmp.append(_T("\\"));
  891. nIndex = it->find(lpSeparator);
  892. if (nIndex != TString::npos)
  893. {
  894. strRight = it->substr(nIndex + nSeparatorlen);
  895. nIndex = strRight.find(_T("\\"));
  896. if (nIndex != TString::npos)
  897. {
  898. strRight = strRight.substr(nIndex + 1);
  899. strtmp += strRight;
  900. again1: if (!CopyFile(it->c_str(), strtmp.c_str(), bFailIfExists))
  901. {
  902. // 返回复制错误信息;
  903. DWORD dwError = GetLastError();
  904. if (dwError == ERROR_PATH_NOT_FOUND)
  905. {
  906. // 目录不存在,创建;
  907. underlyingapi::CreateDirectoryEx(strtmp.substr(0, strtmp.find_last_of(_T('\\'))).c_str());
  908. goto again1;
  909. }
  910. }
  911. else
  912. nCount++;
  913. // 复制其他扩展名的相片;
  914. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  915. {
  916. TString strWithExt = underlyingapi::lowercase(it->c_str());
  917. if (strWithExt.find(itExt->c_str()) != TString::npos) // 不复制本扩展名;
  918. continue;
  919. nIndex = it->find_last_of(_T('.'));
  920. if (nIndex != TString::npos)
  921. {
  922. //strWithExt.replace(nIndex,itExt->size(),itExt->c_str());
  923. //strtmp.replace(strtmp.find_last_of(_T('.')), itExt->size(), itExt->c_str());
  924. strWithExt.replace(nIndex, it->length() - nIndex, itExt->c_str());
  925. strtmp.replace(strtmp.find_last_of(_T('.')), strtmp.length() - strtmp.find_last_of(_T('.')), itExt->c_str());
  926. if (!CopyFile(strWithExt.c_str(), strtmp.c_str(), bFailIfExists))
  927. {
  928. // 返回复制错误信息;
  929. }
  930. }
  931. }
  932. }
  933. }
  934. else
  935. {
  936. // 没有该分隔符;
  937. OutputDebugString(_T("没有该分隔符\n"));
  938. }
  939. }
  940. }
  941. else if (bCopyBySubpath && dwCopyPix != INVALID_COPY_PIX) // 创建子目录,压缩;
  942. {
  943. if (lpSeparator == NULL)
  944. {
  945. // 同时返回错误信息;
  946. return FALSE;
  947. }
  948. TString strRight;
  949. int nSeparatorlen = _tcslen(lpSeparator);
  950. for (STR_VEC::iterator it = AryOfSelectedImg.begin(); it != AryOfSelectedImg.end(); it++)
  951. {
  952. strtmp = lpSpecifiedpath;
  953. if (strtmp[_tcslen(strtmp.c_str()) - 1] != _T('\\'))
  954. strtmp.append(_T("\\"));
  955. nIndex = it->find(lpSeparator);
  956. if (nIndex != TString::npos)
  957. {
  958. strRight = it->substr(nIndex + nSeparatorlen);
  959. nIndex = strRight.find(_T("\\"));
  960. if (nIndex != TString::npos)
  961. {
  962. strRight = strRight.substr(nIndex + 1);
  963. strtmp += strRight;
  964. if (PathFileExists(strtmp.c_str()) && bFailIfExists)
  965. {//目标相片存在,且覆盖存在相片选项真;
  966. continue;
  967. }
  968. else
  969. {
  970. if (!underlyingapi::ImgThumbnail(it->c_str(), dwCopyPix, strtmp, 100))
  971. {
  972. // 返回压缩失败原因;
  973. }
  974. else
  975. nCount++;
  976. }
  977. // 复制其他扩展名的相片;
  978. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  979. {
  980. TString strWithExt = underlyingapi::lowercase(it->c_str());
  981. if (strWithExt.find(itExt->c_str()) != TString::npos) // 不复制本扩展名;
  982. continue;
  983. nIndex = it->find_last_of(_T('.'));
  984. if (nIndex != -1)
  985. {
  986. //strWithExt.replace(nIndex,itExt->size(),itExt->c_str());
  987. //strtmp.replace(strtmp.find_last_of(_T('.')), itExt->size(), itExt->c_str());
  988. strWithExt.replace(nIndex, it->length() - nIndex, itExt->c_str());
  989. strtmp.replace(strtmp.find_last_of(_T('.')), strtmp.length() - strtmp.find_last_of(_T('.')), itExt->c_str());
  990. if (!CopyFile(strWithExt.c_str(), strtmp.c_str(), bFailIfExists))
  991. {
  992. // 返回复制错误信息;
  993. }
  994. }
  995. }
  996. }
  997. }
  998. }
  999. }
  1000. return nCount;
  1001. }
  1002. /************************************************************************/
  1003. /*
  1004. 函数:CopyImg2Specifiedpath
  1005. 描述:拷贝相片到指定的目录;
  1006. 参数:
  1007. IN: AryOfExistImages 源相片数组;
  1008. IN: AryOfNewImages 目录相片数组;
  1009. IN: dwCopyPix 复制时是否要压缩成指定像素;
  1010. IN: lpWithExt 指定要复制的其他同名文件的扩展名;
  1011. IN: bFailIfExists 目标文件存在是否复制;
  1012. 返回: 返回成功复制的相片张数;
  1013. 注意:
  1014. */
  1015. /************************************************************************/
  1016. INT ImgOfOriginal::CopyImg2Specifiedpath(IN CStringArray& AryOfExistImages, IN CStringArray& AryOfNewImages, IN CONST DWORD &dwCopyPix, IN LPCTSTR lpWithExt, IN BOOL bFailIfExists)
  1017. {
  1018. if (AryOfExistImages.GetSize() == 0 || AryOfNewImages.GetSize() == 0) return 0;
  1019. int nCount = 0;
  1020. int nIndex = 0;
  1021. STR_VEC vtWithExt;
  1022. // 解析复制子带扩展名;
  1023. if (lpWithExt)
  1024. {
  1025. // 获取复制扩展名;
  1026. TString str;
  1027. TString strWithExt = underlyingapi::lowercase(lpWithExt);
  1028. if (strWithExt.find(_T("*.*")) == TString::npos)
  1029. {
  1030. strWithExt.append(_T("|"));
  1031. do
  1032. {// 将所有扩展名解析到数组里;
  1033. nIndex = strWithExt.find(_T('|'));
  1034. if (nIndex != TString::npos)
  1035. {
  1036. str = strWithExt.substr(0, nIndex);
  1037. strWithExt = strWithExt.substr(nIndex + 1);
  1038. vtWithExt.push_back(str.substr(1));
  1039. }
  1040. } while (strWithExt.find(_T('|')) != TString::npos);
  1041. }
  1042. }
  1043. CString strExist, strNew;
  1044. // 值最小的为准;
  1045. int nSize = (AryOfNewImages.GetSize() > AryOfExistImages.GetSize()) ? AryOfExistImages.GetSize() : AryOfNewImages.GetSize();
  1046. if (dwCopyPix == INVALID_COPY_PIX)
  1047. {
  1048. for (int i = 0; i < nSize; i++)
  1049. {
  1050. strNew = AryOfNewImages.ElementAt(i);
  1051. strExist = AryOfExistImages.ElementAt(i);
  1052. again: if (!CopyFile(strExist, strNew, bFailIfExists))
  1053. {
  1054. // 返回复制错误信息;
  1055. DWORD dwError = GetLastError();
  1056. if (dwError == ERROR_PATH_NOT_FOUND)
  1057. {
  1058. // 目录不存在,创建;
  1059. underlyingapi::CreateDirectoryEx(strNew.Left(strNew.ReverseFind(_T('\\'))));
  1060. goto again;
  1061. }
  1062. }
  1063. else
  1064. nCount++;
  1065. strNew.MakeLower();
  1066. // 复制子带扩展名相片;
  1067. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  1068. {
  1069. if (strNew.Find(itExt->c_str()) != -1) // 不复制本扩展名;
  1070. continue;
  1071. nIndex = strExist.ReverseFind(_T('.'));
  1072. if (nIndex != -1)
  1073. {
  1074. strExist.Replace(strExist.Mid(nIndex), itExt->c_str());
  1075. strNew.Replace(strNew.Mid(strNew.ReverseFind(_T('.'))), itExt->c_str());
  1076. if (!CopyFile(strExist, strNew, bFailIfExists))
  1077. {
  1078. // 返回复制错误信息;
  1079. }
  1080. }
  1081. }
  1082. }
  1083. }
  1084. else
  1085. {
  1086. for (int i = 0; i < nSize; i++)
  1087. {
  1088. strNew = AryOfNewImages.ElementAt(i);
  1089. strExist = AryOfExistImages.ElementAt(i);
  1090. if (PathFileExists(AryOfNewImages.ElementAt(i)) && bFailIfExists)
  1091. continue;
  1092. if (!underlyingapi::ImgThumbnail(strExist, dwCopyPix, strNew, 100))
  1093. {
  1094. // 返回复制错误信息;
  1095. }
  1096. else
  1097. nCount++;
  1098. strNew.MakeLower();
  1099. // 复制子带扩展名相片;
  1100. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  1101. {
  1102. if (strNew.Find(itExt->c_str()) != -1) // 不复制本扩展名;
  1103. continue;
  1104. nIndex = strExist.ReverseFind(_T('.'));
  1105. if (nIndex != -1)
  1106. {
  1107. strExist.Replace(strExist.Mid(nIndex), itExt->c_str());
  1108. strNew.Replace(strNew.Mid(strNew.ReverseFind(_T('.'))), itExt->c_str());
  1109. if (!CopyFile(strExist, strNew, bFailIfExists))
  1110. {
  1111. // 返回复制错误信息;
  1112. }
  1113. }
  1114. }
  1115. }
  1116. }
  1117. return nCount;
  1118. }
  1119. /************************************************************************/
  1120. /*
  1121. 函数:CopyImg2Specifiedpath
  1122. 描述:拷贝相片到指定的目录;
  1123. 参数:
  1124. IN: AryOfExistImages 源相片数组;
  1125. IN: AryOfNewImages 目录相片数组;
  1126. IN: dwCopyPix 复制时是否要压缩成指定像素;
  1127. IN: lpWithExt 指定要复制的其他同名文件的扩展名;
  1128. IN: bFailIfExists 目标文件存在是否复制;
  1129. 返回: 返回成功复制的相片张数;
  1130. 注意:
  1131. */
  1132. /************************************************************************/
  1133. INT ImgOfOriginal::CopyImg2Specifiedpath(IN STR_VEC& AryOfExistImages, IN STR_VEC& AryOfNewImages, IN CONST DWORD &dwCopyPix, IN LPCTSTR lpWithExt, IN BOOL bFailIfExists)
  1134. {
  1135. if (AryOfExistImages.size() == 0 || AryOfNewImages.size() == 0) return 0;
  1136. int nCount = 0;
  1137. int nIndex = 0;
  1138. STR_VEC vtWithExt;
  1139. // 解析复制子带扩展名;
  1140. if (lpWithExt)
  1141. {
  1142. // 获取复制扩展名;
  1143. TString str;
  1144. TString strWithExt = underlyingapi::lowercase(lpWithExt);
  1145. if (strWithExt.find(_T("*.*")) == TString::npos)
  1146. {
  1147. strWithExt.append(_T("|"));
  1148. do
  1149. {// 将所有扩展名解析到数组里;
  1150. nIndex = strWithExt.find(_T('|'));
  1151. if (nIndex != TString::npos)
  1152. {
  1153. str = strWithExt.substr(0, nIndex);
  1154. strWithExt = strWithExt.substr(nIndex + 1);
  1155. vtWithExt.push_back(str.substr(1));
  1156. }
  1157. } while (strWithExt.find(_T('|')) != TString::npos);
  1158. }
  1159. }
  1160. TString strExist, strNew;
  1161. // 值最小的为准;
  1162. int nSize = (AryOfNewImages.size() > AryOfExistImages.size()) ? AryOfExistImages.size() : AryOfNewImages.size();
  1163. if (dwCopyPix == INVALID_COPY_PIX)
  1164. {
  1165. for (STR_VEC::iterator itExist = AryOfExistImages.begin(), itNew = AryOfNewImages.begin();
  1166. itExist != AryOfExistImages.end() && itNew != AryOfNewImages.end(); itExist++, itNew++)
  1167. {
  1168. strExist = underlyingapi::lowercase(itExist->c_str());
  1169. again: if (!CopyFile(itExist->c_str(), itNew->c_str(), bFailIfExists))
  1170. {
  1171. // 返回复制错误信息;
  1172. DWORD dwError = GetLastError();
  1173. if (dwError == ERROR_PATH_NOT_FOUND)
  1174. {
  1175. // 目录不存在,创建;
  1176. underlyingapi::CreateDirectoryEx(itNew->substr(0, itNew->find_last_of(_T('\\'))).c_str());
  1177. goto again;
  1178. }
  1179. }
  1180. else
  1181. nCount++;
  1182. // 复制子带扩展名相片;
  1183. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  1184. {
  1185. if (strExist.find(itExt->c_str()) != TString::npos) // 不复制本扩展名;
  1186. continue;
  1187. nIndex = itExist->find_last_of(_T('.'));
  1188. if (nIndex != -1)
  1189. {
  1190. //strExist.replace(nIndex,itExt->size(),itExt->c_str());
  1191. //strNew.replace(strNew.find_last_of(_T('.')), itExt->size(), itExt->c_str());
  1192. strExist.replace(nIndex, itExist->length() - nIndex, itExt->c_str());
  1193. strNew.replace(strNew.find_last_of(_T('.')), strNew.length() - strNew.find_last_of(_T('.')), itExt->c_str());
  1194. if (!CopyFile(strExist.c_str(), strNew.c_str(), bFailIfExists))
  1195. {
  1196. // 返回复制错误信息;
  1197. }
  1198. }
  1199. }
  1200. }
  1201. }
  1202. else
  1203. {
  1204. for (STR_VEC::iterator itExist = AryOfExistImages.begin(), itNew = AryOfNewImages.begin();
  1205. itExist != AryOfExistImages.end() && itNew != AryOfNewImages.end(); itExist++, itNew++)
  1206. {
  1207. strExist = underlyingapi::lowercase(itExist->c_str());
  1208. if (PathFileExists(strNew.c_str()) && bFailIfExists)
  1209. continue;
  1210. if (!underlyingapi::ImgThumbnail(strExist, dwCopyPix, strNew, 100))
  1211. {
  1212. // 返回复制错误信息;
  1213. }
  1214. else
  1215. nCount++;
  1216. // 复制子带扩展名相片;
  1217. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  1218. {
  1219. if (strExist.find(itExt->c_str()) != TString::npos) // 不复制本扩展名;
  1220. continue;
  1221. nIndex = itExist->find_last_of(_T('.'));
  1222. if (nIndex != -1)
  1223. {
  1224. //strExist.replace(nIndex,itExt->size(),itExt->c_str());
  1225. //strNew.replace(strNew.find_last_of(_T('.')), itExt->size(), itExt->c_str());
  1226. strExist.replace(nIndex, itExist->length() - nIndex, itExt->c_str());
  1227. strNew.replace(strNew.find_last_of(_T('.')), strNew.length() - strNew.find_last_of(_T('.')), itExt->c_str());
  1228. if (!CopyFile(strExist.c_str(), strNew.c_str(), bFailIfExists))
  1229. {
  1230. // 返回复制错误信息;
  1231. }
  1232. }
  1233. }
  1234. }
  1235. }
  1236. return nCount;
  1237. }
  1238. /************************************************************************/
  1239. /*
  1240. 函数:CopyImg2Specifiedpath_ex
  1241. 描述:拷贝相片到指定的目录;
  1242. 参数:
  1243. IN: lpExistpath 相片源目录;
  1244. IN: lpSpecifiedpath 目标路径;
  1245. IN: lpCopyExt 指定要复制的文件的扩展名;
  1246. IN: lpWithExt 指定要复制的其他同名文件的扩展名;
  1247. IN: dwCopyPix 复制时是否要压缩成指定像素;
  1248. IN: bOriginalCopy 复制源相片时,是否原样复制;
  1249. IN: bFailIfExists 目标文件存在是否复制;
  1250. 返回: 返回成功复制的相片张数;
  1251. 注意:
  1252. */
  1253. /************************************************************************/
  1254. INT ImgOfOriginal::CopyImg2Specifiedpath_ex(IN LPCTSTR lpExistpath, IN LPCTSTR lpSpecifiedpath, IN LPCTSTR lpCopyExt, IN LPCTSTR lpWithExt, IN CONST DWORD &dwCopyPix, IN BOOL bOriginalCopy, IN BOOL bFailIfExists)
  1255. {
  1256. // 源目录不存在,返回-1;
  1257. if (!PathFileExists(lpExistpath)) return -1;
  1258. // 判断目标目录是否存在,不存在创建;
  1259. if (!PathFileExists(lpSpecifiedpath))
  1260. if (!underlyingapi::CreateDirectoryEx(lpSpecifiedpath))
  1261. return 0;
  1262. // 查找源目录下全部文件;
  1263. STR_VEC vtFiles;
  1264. filehelpImpl lf;
  1265. lf.getfiles_findin_subfolder(lpExistpath, _T("*.*"), &vtFiles);
  1266. // 过滤非复制扩展名的文件,同时去掉缩略图,保留指定复制扩展名的文件;
  1267. GetFilteringImg(vtFiles, lpCopyExt);
  1268. int nCount = 0;
  1269. int nIndex = 0;
  1270. STR_VEC vtWithExt;
  1271. // 解析复制子带扩展名;
  1272. if (lpWithExt)
  1273. {
  1274. // 获取复制扩展名;
  1275. TString str;
  1276. TString strWithExt = underlyingapi::lowercase(lpWithExt);
  1277. if (strWithExt.find(_T("*.*")) == TString::npos)
  1278. {
  1279. strWithExt.append(_T("|"));
  1280. do
  1281. {// 将所有扩展名解析到数组里;
  1282. nIndex = strWithExt.find(_T('|'));
  1283. if (nIndex != TString::npos)
  1284. {
  1285. str = strWithExt.substr(0, nIndex);
  1286. strWithExt = strWithExt.substr(nIndex + 1);
  1287. vtWithExt.push_back(str.substr(1));
  1288. }
  1289. } while (strWithExt.find(_T('|')) != TString::npos);
  1290. }
  1291. }
  1292. TString strtmp;
  1293. if (bOriginalCopy && dwCopyPix != INVALID_COPY_PIX) // 是否原样复制 且压缩;
  1294. {
  1295. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  1296. {
  1297. strtmp = lpSpecifiedpath;
  1298. if (strtmp[_tcslen(lpSpecifiedpath) - 1] != _T('\\'))
  1299. strtmp.append(_T("\\"));
  1300. strtmp.append(it->substr(it->find(lpExistpath) + _tcslen(lpExistpath) + 1));
  1301. if (PathFileExists(strtmp.c_str()) && bFailIfExists)
  1302. continue;
  1303. if (underlyingapi::ImgThumbnail(it->c_str(), dwCopyPix, strtmp.c_str(), 100))
  1304. {
  1305. // 返回压缩失败原因;
  1306. }
  1307. else
  1308. nCount++;
  1309. // 复制其他扩展名的相片;
  1310. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  1311. {
  1312. TString strWithExt = underlyingapi::lowercase(it->c_str());
  1313. if (strWithExt.find(itExt->c_str()) != TString::npos) // 不复制本扩展名;
  1314. continue;
  1315. nIndex = it->find_last_of(_T('.'));
  1316. if (nIndex != TString::npos)
  1317. {
  1318. //strWithExt.replace(nIndex,itExt->size(),itExt->c_str());
  1319. //strtmp.replace(strtmp.find_last_of(_T('.')), itExt->size(), itExt->c_str());
  1320. strWithExt.replace(nIndex, it->length() - nIndex, itExt->c_str());
  1321. strtmp.replace(strtmp.find_last_of(_T('.')), strtmp.length() - strtmp.find_last_of(_T('.')), itExt->c_str());
  1322. if (!CopyFile(strWithExt.c_str(), strtmp.c_str(), bFailIfExists))
  1323. {
  1324. // 返回复制错误信息;
  1325. }
  1326. }
  1327. }
  1328. }
  1329. }
  1330. else if (bOriginalCopy && dwCopyPix == INVALID_COPY_PIX)// 原样复制,不压缩;
  1331. {
  1332. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  1333. {
  1334. strtmp = lpSpecifiedpath;
  1335. if (strtmp[_tcslen(lpSpecifiedpath) - 1] != _T('\\'))
  1336. strtmp.append(_T("\\"));
  1337. strtmp.append(it->substr(it->find(lpExistpath) + _tcslen(lpExistpath) + 1));
  1338. // 按需要创建 or // 避免多次调用创建文件函数,应该在外面一次性创建完,再执行复制操作;
  1339. again: if (!CopyFile(it->c_str(), strtmp.c_str(), bFailIfExists))
  1340. {
  1341. DWORD dwError = GetLastError();
  1342. if (dwError == ERROR_PATH_NOT_FOUND)
  1343. {
  1344. // 目录不存在,创建;
  1345. underlyingapi::CreateDirectoryEx(strtmp.substr(0, strtmp.find_last_of(_T('\\'))).c_str());
  1346. goto again;
  1347. }
  1348. }
  1349. else
  1350. nCount++;
  1351. // 复制其他扩展名的相片;
  1352. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  1353. {
  1354. TString strWithExt = underlyingapi::lowercase(it->c_str());
  1355. if (strWithExt.find(itExt->c_str()) != TString::npos) // 不复制本扩展名;
  1356. continue;
  1357. nIndex = it->find_last_of(_T('.'));
  1358. if (nIndex != TString::npos)
  1359. {
  1360. //strWithExt.replace(nIndex,itExt->size(),itExt->c_str());
  1361. //strtmp.replace(strtmp.find_last_of(_T('.')), itExt->size(), itExt->c_str());
  1362. strWithExt.replace(nIndex, it->length() - nIndex, itExt->c_str());
  1363. strtmp.replace(strtmp.find_last_of(_T('.')), strtmp.length() - strtmp.find_last_of(_T('.')), itExt->c_str());
  1364. if (!CopyFile(strWithExt.c_str(), strtmp.c_str(), bFailIfExists))
  1365. {
  1366. // 返回复制错误信息;
  1367. }
  1368. }
  1369. }
  1370. }
  1371. }
  1372. else if (!bOriginalCopy && dwCopyPix != INVALID_COPY_PIX) // 压缩,不原样复制,所有源相片放在目标根目录;
  1373. {
  1374. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  1375. {
  1376. strtmp = lpSpecifiedpath;
  1377. if (strtmp[_tcslen(lpSpecifiedpath) - 1] != _T('\\'))
  1378. strtmp.append(_T("\\"));
  1379. nIndex = it->find_last_of(_T('\\'));
  1380. if (nIndex != TString::npos)
  1381. {
  1382. strtmp.append(it->substr(nIndex + 1));
  1383. if (PathFileExists(strtmp.c_str()) && bFailIfExists)
  1384. continue;
  1385. if (!underlyingapi::ImgThumbnail(it->c_str(), dwCopyPix, strtmp.c_str(), 100))
  1386. {
  1387. // 返回压缩失败原因;
  1388. }
  1389. else
  1390. nCount++;
  1391. // 复制其他扩展名的相片;
  1392. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  1393. {
  1394. TString strWithExt = underlyingapi::lowercase(it->c_str());
  1395. if (strWithExt.find(itExt->c_str()) != TString::npos) // 不复制本扩展名;
  1396. continue;
  1397. nIndex = it->find_last_of(_T('.'));
  1398. if (nIndex != TString::npos)
  1399. {
  1400. //strWithExt.replace(nIndex,itExt->size(),itExt->c_str());
  1401. //strtmp.replace(strtmp.find_last_of(_T('.')), itExt->size(), itExt->c_str());
  1402. strWithExt.replace(nIndex, it->length() - nIndex, itExt->c_str());
  1403. strtmp.replace(strtmp.find_last_of(_T('.')), strtmp.length() - strtmp.find_last_of(_T('.')), itExt->c_str());
  1404. if (!CopyFile(strWithExt.c_str(), strtmp.c_str(), bFailIfExists))
  1405. {
  1406. // 返回复制错误信息;
  1407. }
  1408. }
  1409. }
  1410. }
  1411. }
  1412. }
  1413. else // 不压缩,不原样;
  1414. {
  1415. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  1416. {
  1417. strtmp = lpSpecifiedpath;
  1418. if (strtmp[_tcslen(lpSpecifiedpath) - 1] != _T('\\'))
  1419. strtmp.append(_T("\\"));
  1420. nIndex = it->find_last_of(_T('\\'));
  1421. if (nIndex != TString::npos)
  1422. {
  1423. strtmp.append(it->substr(nIndex + 1));
  1424. // 按需要创建 or // 避免多次调用创建文件函数,应该在外面一次性创建完,再执行复制操作;
  1425. again1: if (!CopyFile(it->c_str(), strtmp.c_str(), bFailIfExists))
  1426. {
  1427. DWORD dwError = GetLastError();
  1428. if (dwError == ERROR_PATH_NOT_FOUND)
  1429. {
  1430. // 目录不存在,创建;
  1431. underlyingapi::CreateDirectoryEx(strtmp.substr(0, strtmp.find_last_of(_T('\\'))).c_str());
  1432. goto again1;
  1433. }
  1434. }
  1435. else
  1436. nCount++;
  1437. // 复制其他扩展名的相片;
  1438. for (STR_VEC::iterator itExt = vtWithExt.begin(); itExt != vtWithExt.end(); itExt++)
  1439. {
  1440. TString strWithExt = underlyingapi::lowercase(it->c_str());
  1441. if (strWithExt.find(itExt->c_str()) != TString::npos) // 不复制本扩展名;
  1442. continue;
  1443. nIndex = it->find_last_of(_T('.'));
  1444. if (nIndex != TString::npos)
  1445. {
  1446. //strWithExt.replace(nIndex,itExt->size(),itExt->c_str());
  1447. //strtmp.replace(strtmp.find_last_of(_T('.')), itExt->size(), itExt->c_str());
  1448. strWithExt.replace(nIndex, it->length() - nIndex, itExt->c_str());
  1449. strtmp.replace(strtmp.find_last_of(_T('.')), strtmp.length() - strtmp.find_last_of(_T('.')), itExt->c_str());
  1450. if (!CopyFile(strWithExt.c_str(), strtmp.c_str(), bFailIfExists))
  1451. {
  1452. // 返回复制错误信息;
  1453. }
  1454. }
  1455. }
  1456. }
  1457. }
  1458. }
  1459. return nCount;
  1460. }
  1461. #if 0
  1462. BOOL ImgOfOriginal::GetLocalSharedirectory(IN CONST INT &nImgType, OUT LPTSTR lpResultSharedirectory, IN CONST INT &nBufSize)
  1463. {
  1464. // 获取本地计算机名;
  1465. DWORD dwBufLen = MAX_COMPUTERNAME_LENGTH + 1;
  1466. TCHAR szComputerName[MAX_COMPUTERNAME_LENGTH + 1] = { 0 };
  1467. if (!GetComputerName(szComputerName, &dwBufLen))
  1468. {
  1469. DWORD dwError = GetLastError();
  1470. // 返回错误代码;
  1471. return FALSE;
  1472. }
  1473. switch (nImgType)
  1474. {
  1475. case OImgtype:
  1476. _stprintf_s(lpResultSharedirectory, nBufSize, _T("\\\\%s\\%s\\"), szComputerName, OImgpath);
  1477. break;
  1478. case EImgtype:
  1479. _stprintf_s(lpResultSharedirectory, nBufSize, _T("\\\\%s\\%s\\"), szComputerName, EImgpath);
  1480. break;
  1481. case FImgtype:
  1482. _stprintf_s(lpResultSharedirectory, nBufSize, _T("\\\\%s\\%s\\"), szComputerName, FImgpath);
  1483. break;
  1484. case DImgtype:
  1485. _stprintf_s(lpResultSharedirectory, nBufSize, _T("\\\\%s\\%s\\"), szComputerName, DImgpath);
  1486. break;
  1487. // 以下为备份共享目录;
  1488. case OBImgtype:
  1489. _stprintf_s(lpResultSharedirectory, nBufSize, _T("\\\\%s\\%s"), szComputerName, OBImgpath);
  1490. break;
  1491. case EBImgtype:
  1492. _stprintf_s(lpResultSharedirectory, nBufSize, _T("\\\\%s\\%s"), szComputerName, EBImgpath);
  1493. break;
  1494. case FBImgtype:
  1495. _stprintf_s(lpResultSharedirectory, nBufSize, _T("\\\\%s\\%s"), szComputerName, FBImgpath);
  1496. break;
  1497. case DBImgtype:
  1498. _stprintf_s(lpResultSharedirectory, nBufSize, _T("\\\\%s\\%s"), szComputerName, DBImgpath);
  1499. break;
  1500. default:
  1501. break;
  1502. }
  1503. return TRUE;
  1504. }
  1505. #endif
  1506. BOOL ImgOfOriginal::GetLocalEnableShareDirectory(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, OUT LPTSTR lpEnableShareDirectory, IN CONST INT &nBufSize)
  1507. {
  1508. // 判断域名有效性;
  1509. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  1510. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  1511. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  1512. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  1513. double dTotalNum = 0.0;
  1514. double dFreeNum = 0.0;
  1515. BOOL bGetEnable = FALSE;
  1516. BYTE byCurPriority = 0;
  1517. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  1518. {
  1519. ImgShareInfo *pImgsi = *it;
  1520. if (pImgsi->byImgType == nImgType && _tcscmp(pImgsi->szBranchId, lpBranchId) == 0)
  1521. {
  1522. if ( bGetEnable )
  1523. {
  1524. if ( byCurPriority > pImgsi->byPriority )
  1525. continue;
  1526. }
  1527. #if 0 // 以下代码有错,不需要判断是否本店;
  1528. if (_tcscmp(lpBranchId, g_pBranchId) == 0) // 本机域名;
  1529. _stprintf_s(lpEnableShareDirectory, nBufSize, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  1530. else // 分店存储的规则是在本店共享目录下创建域名文件夹;
  1531. _stprintf_s(lpEnableShareDirectory, nBufSize, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  1532. #else
  1533. // 若分店相片也单独一个目录存储,不需要判断是否为本店;
  1534. _stprintf_s(lpEnableShareDirectory, nBufSize, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  1535. #endif
  1536. if (!underlyingapi::GetDiskSpaceInfo(pImgsi->szShareDirectory, dTotalNum, dFreeNum))
  1537. {//获取硬盘容量失败,可能路径无效或硬盘损坏;
  1538. continue;
  1539. }
  1540. // 如果目录存在,且安全容量值满足要求,直接返回;
  1541. if (PathFileExists(lpEnableShareDirectory))
  1542. {
  1543. if (dFreeNum > pImgsi->byMinCapacity)
  1544. {
  1545. bGetEnable = TRUE;
  1546. break;
  1547. }
  1548. }
  1549. // 剩余容量大于更盘容量;
  1550. if (dFreeNum > pImgsi->byMaxCapacity)
  1551. {
  1552. // 直至最大优先级被找到;
  1553. if (byCurPriority < pImgsi->byPriority)
  1554. {
  1555. byCurPriority = pImgsi->byPriority;
  1556. bGetEnable = TRUE;
  1557. }
  1558. }
  1559. }
  1560. }
  1561. return bGetEnable;
  1562. }
  1563. BOOL ImgOfOriginal::GetEnableShareDirectory(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, OUT LPTSTR lpEnableShareDirectory, IN CONST INT &nBufSize)
  1564. {
  1565. // 判断域名有效性;
  1566. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  1567. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  1568. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  1569. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  1570. double dTotalNum = 0.0;
  1571. double dFreeNum = 0.0;
  1572. BOOL bGetEnable = FALSE;
  1573. BYTE byCurPriority = 0;
  1574. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  1575. {
  1576. ImgShareInfo *pImgsi = *it;
  1577. if (pImgsi->byImgType == nImgType && _tcscmp(pImgsi->szBranchId, lpBranchId) == 0)
  1578. {
  1579. if ( bGetEnable )
  1580. {
  1581. if ( byCurPriority > pImgsi->byPriority )
  1582. continue;
  1583. }
  1584. #if 0 // 以下代码有错,不需要判断是否本店;
  1585. if (_tcscmp(lpBranchId, g_pBranchId) == 0) // 本机域名;
  1586. _stprintf_s(lpEnableShareDirectory, nBufSize, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  1587. else // 分店存储的规则是在本店共享目录下创建域名文件夹;
  1588. _stprintf_s(lpEnableShareDirectory, nBufSize, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  1589. #else
  1590. // 若分店相片也单独一个目录存储,不需要判断是否为本店;
  1591. _stprintf_s(lpEnableShareDirectory, nBufSize, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  1592. #endif
  1593. if (!underlyingapi::GetDiskSpaceInfo(pImgsi->szShareDirectory, dTotalNum, dFreeNum))
  1594. {//获取硬盘容量失败,可能路径无效或硬盘损坏;
  1595. continue;
  1596. }
  1597. // 如果目录存在,且安全容量值满足要求,直接返回;
  1598. if (PathFileExists(lpEnableShareDirectory))
  1599. {
  1600. if (dFreeNum > pImgsi->byMinCapacity)
  1601. {
  1602. bGetEnable = TRUE;
  1603. break;
  1604. }
  1605. }
  1606. // 剩余容量大于更盘容量;
  1607. if (dFreeNum > pImgsi->byMaxCapacity)
  1608. {
  1609. // 直至最大优先级被找到;
  1610. if (byCurPriority < pImgsi->byPriority)
  1611. {
  1612. byCurPriority = pImgsi->byPriority;
  1613. bGetEnable = TRUE;
  1614. }
  1615. }
  1616. }
  1617. }
  1618. return bGetEnable;
  1619. }
  1620. //////////////////////////////////////////////////////////////////////////
  1621. BOOL ImgOfOriginal::LoadSpecifiedpathImages(IN LPCTSTR lpSepcifiedpath, IN LPCTSTR lpLoadExt, OUT CStringArray &AryOfSpecifiedpathImages)
  1622. {
  1623. if (!lpSepcifiedpath || !PathFileExists(lpSepcifiedpath))
  1624. return FALSE;
  1625. if (!filehelpImpl::iscorrectext(lpLoadExt)) return FALSE;
  1626. // 查找源目录下全部文件;
  1627. STR_VEC vtFiles;
  1628. filehelpImpl lf;
  1629. lf.getfiles_findin_subfolder(lpSepcifiedpath, _T("*.*"), &vtFiles);
  1630. // 过滤不符合扩展名的图像,注意该函数的使用方向;
  1631. GetFilteringImg(vtFiles, lpLoadExt);
  1632. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  1633. {
  1634. AryOfSpecifiedpathImages.Add(it->c_str());
  1635. }
  1636. return TRUE;
  1637. }
  1638. BOOL ImgOfOriginal::LoadSpecifiedpathImages(IN LPCTSTR lpSepcifiedpath, IN LPCTSTR lpLoadExt, OUT STR_VEC &AryOfSpecifiedpathImages)
  1639. {
  1640. if (!lpSepcifiedpath || !PathFileExists(lpSepcifiedpath))
  1641. return FALSE;
  1642. // 查找源目录下全部文件;
  1643. filehelpImpl lf;
  1644. lf.getfiles_findin_subfolder(lpSepcifiedpath, _T("*.*"), &AryOfSpecifiedpathImages);
  1645. // 过滤不符合扩展名的图像,注意该函数的使用方向;
  1646. GetFilteringImg(AryOfSpecifiedpathImages, lpLoadExt);
  1647. return TRUE;
  1648. }
  1649. BOOL ImgOfOriginal::LoadSelectedIamgesFromSpecifiedpath(IN LPCTSTR lpSepcifiedpath, IN LPCTSTR lpLoadExt, IN CStringArray &AryOfSelectedIamges, OUT CStringArray &AryOfNoExistIamges, OUT CStringArray &AryOfSelectedImagepaths)
  1650. {
  1651. // 判断目录有效性;
  1652. if (!lpSepcifiedpath || !underlyingapi::IsValidpath(lpSepcifiedpath) || !PathFileExists(lpSepcifiedpath)) return FALSE;
  1653. // 查找源目录下全部文件;
  1654. STR_VEC vtFiles;
  1655. filehelpImpl lf;
  1656. lf.getfiles_findin_subfolder(lpSepcifiedpath, _T("*.*"), &vtFiles);
  1657. // 过滤不符合扩展名的图像,注意该函数的使用方向;
  1658. GetFilteringImg(vtFiles, lpLoadExt);
  1659. // 再度过滤未存在的相片;
  1660. TCHAR path_buffer[_MAX_PATH] = { 0 };
  1661. TCHAR szDrive[_MAX_DRIVE] = { 0 };
  1662. TCHAR szDir[_MAX_DIR] = { 0 };
  1663. TCHAR szFname[_MAX_FNAME] = { 0 };
  1664. TCHAR szExt[_MAX_EXT] = { 0 };
  1665. CString strImgpath;
  1666. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  1667. {
  1668. _tsplitpath_s(it->c_str(), szDrive, szDir, szFname, szExt);
  1669. for (int i = 0; i < AryOfSelectedIamges.GetSize(); i++)
  1670. {
  1671. if (AryOfSelectedIamges.ElementAt(i).CompareNoCase(szFname) == 0)
  1672. {
  1673. strImgpath = it->c_str();
  1674. AryOfSelectedImagepaths.Add(strImgpath);
  1675. //AryOfSelectedIamges.RemoveAt(i);// 会删除不同扩展名的文件,如 (扩展名:*.jpg|*.jpeg) 001.jpg 和 001.jpeg 有一个会没有记录到;
  1676. break;
  1677. }
  1678. }
  1679. }
  1680. return TRUE;
  1681. }
  1682. BOOL ImgOfOriginal::LoadSelectedIamgesFromSpecifiedpath(IN LPCTSTR lpSepcifiedpath, IN LPCTSTR lpLoadExt, IN STR_VEC &AryOfSelectedIamges, OUT STR_VEC &AryOfNoExistIamges, OUT STR_VEC &AryOfSelectedImagepaths)
  1683. {
  1684. // 判断目录有效性;
  1685. if (!lpSepcifiedpath || !underlyingapi::IsValidpath(lpSepcifiedpath) || !PathFileExists(lpSepcifiedpath)) return FALSE;
  1686. // 查找源目录下全部文件;
  1687. STR_VEC vtFiles;
  1688. filehelpImpl lf;
  1689. lf.getfiles_findin_subfolder(lpSepcifiedpath, _T("*.*"), &vtFiles);
  1690. // 过滤不符合扩展名的图像,注意该函数的使用方向;
  1691. GetFilteringImg(vtFiles, lpLoadExt);
  1692. // 再度过滤未存在的相片;
  1693. TCHAR path_buffer[_MAX_PATH] = { 0 };
  1694. TCHAR szDrive[_MAX_DRIVE] = { 0 };
  1695. TCHAR szDir[_MAX_DIR] = { 0 };
  1696. TCHAR szFname[_MAX_FNAME] = { 0 };
  1697. TCHAR szExt[_MAX_EXT] = { 0 };
  1698. for (STR_VEC::iterator it = vtFiles.begin(); it != vtFiles.end(); it++)
  1699. {
  1700. _tsplitpath_s(it->c_str(), szDrive, szDir, szFname, szExt);
  1701. for (STR_VEC::iterator itImg = AryOfSelectedIamges.begin(); itImg != AryOfSelectedIamges.end(); itImg++)
  1702. {
  1703. TString strImgpath = szFname;
  1704. filehelpImpl::uppercase(strImgpath);
  1705. filehelpImpl::uppercase(*itImg);
  1706. if (itImg->compare(strImgpath) == 0)
  1707. {
  1708. strImgpath = it->c_str();
  1709. AryOfSelectedImagepaths.push_back(strImgpath);
  1710. //AryOfSelectedIamges.erase(itImg); // 会删除不同扩展名的文件,如 (扩展名:*.jpg|*.jpeg) 001.jpg 和 001.jpeg 有一个会没有记录到;
  1711. break;
  1712. }
  1713. }
  1714. }
  1715. return TRUE;
  1716. }
  1717. BOOL ImgOfOriginal::LoadSelectedIamges(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpLoadExt, IN CStringArray &AryOfSelectedIamges, OUT CStringArray &AryOfNoExistIamges, OUT CStringArray &AryOfSelectedImagepaths)
  1718. {
  1719. // 判断域名有效性;
  1720. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  1721. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  1722. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  1723. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  1724. int nSize = 0;
  1725. CString strImage = _T("");
  1726. TCHAR szOrderpath[MAX_PATH] = { 0 };
  1727. TCHAR szShareDirectory[MAX_PATH] = { 0 };
  1728. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  1729. {
  1730. ImgShareInfo *pImgsi = *it;
  1731. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  1732. {
  1733. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  1734. {//本机域名;
  1735. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  1736. }
  1737. else
  1738. {
  1739. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  1740. }
  1741. if (PathFileExists(szOrderpath))
  1742. {
  1743. LoadSelectedIamgesFromSpecifiedpath(szOrderpath, lpLoadExt, AryOfSelectedIamges, AryOfNoExistIamges, AryOfSelectedImagepaths);
  1744. }
  1745. }
  1746. }
  1747. return TRUE;
  1748. }
  1749. BOOL ImgOfOriginal::LoadSelectedIamges(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpLoadExt, IN STR_VEC &AryOfSelectedIamges, OUT STR_VEC &AryOfNoExistIamges, OUT STR_VEC &AryOfSelectedImagepaths)
  1750. {
  1751. // 判断域名有效性;
  1752. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  1753. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  1754. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  1755. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  1756. int nSize = 0;
  1757. CString strImage = _T("");
  1758. TCHAR szOrderpath[MAX_PATH] = { 0 };
  1759. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  1760. {
  1761. ImgShareInfo *pImgsi = *it;
  1762. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  1763. {
  1764. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  1765. {//本机域名;
  1766. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  1767. }
  1768. else
  1769. {
  1770. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  1771. }
  1772. if (PathFileExists(szOrderpath))
  1773. {
  1774. LoadSelectedIamgesFromSpecifiedpath(szOrderpath, lpLoadExt, AryOfSelectedIamges, AryOfNoExistIamges, AryOfSelectedImagepaths);
  1775. }
  1776. }
  1777. }
  1778. return TRUE;
  1779. }
  1780. BOOL ImgOfOriginal::LoadSelectedIamges2(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpLoadExt, IN CStringArray &AryOfSelectedIamges, OUT CStringArray &AryOfNoExistIamges, OUT CStringArray &AryOfSelectedImagepaths)
  1781. {
  1782. // 判断域名有效性;
  1783. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  1784. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  1785. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  1786. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  1787. int nSize = 0;
  1788. CString strImage = _T("");
  1789. TCHAR szOrderpath[MAX_PATH] = { 0 };
  1790. TCHAR szShareDirectory[MAX_PATH] = { 0 };
  1791. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  1792. {
  1793. ImgShareInfo *pImgsi = *it;
  1794. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  1795. {
  1796. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  1797. {//本机域名;
  1798. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  1799. }
  1800. else
  1801. {
  1802. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  1803. }
  1804. if (PathFileExists(szOrderpath))
  1805. {
  1806. for (int i = 0; i < AryOfSelectedIamges.GetSize(); i++)
  1807. {
  1808. strImage.Format(_T("%s\\%s.jpg"), szOrderpath, AryOfSelectedIamges.ElementAt(i));
  1809. if (PathFileExists(strImage))
  1810. {
  1811. AryOfSelectedImagepaths.Add(strImage);
  1812. }
  1813. }
  1814. }
  1815. }
  1816. }
  1817. return TRUE;
  1818. }
  1819. BOOL ImgOfOriginal::LoadSelectedIamges2(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpLoadExt, IN STR_VEC &AryOfSelectedIamges, OUT STR_VEC &AryOfNoExistIamges, OUT STR_VEC &AryOfSelectedImagepaths)
  1820. {
  1821. // 判断域名有效性;
  1822. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  1823. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  1824. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  1825. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  1826. int nSize = 0;
  1827. TString strImage;
  1828. TCHAR szOrderpath[MAX_PATH] = { 0 };
  1829. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  1830. {
  1831. ImgShareInfo *pImgsi = *it;
  1832. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  1833. {
  1834. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  1835. {//本机域名;
  1836. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  1837. }
  1838. else
  1839. {
  1840. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  1841. }
  1842. if (PathFileExists(szOrderpath))
  1843. {
  1844. for (STR_VEC::iterator itImg = AryOfSelectedIamges.begin(); itImg != AryOfSelectedIamges.end(); itImg++)
  1845. {
  1846. strImage = szOrderpath;
  1847. strImage.append(_T("\\"));
  1848. strImage.append(itImg->c_str());
  1849. strImage.append(_T(".jpg"));
  1850. if (PathFileExists(strImage.c_str()))
  1851. {
  1852. AryOfSelectedImagepaths.push_back(strImage);
  1853. }
  1854. }
  1855. }
  1856. }
  1857. }
  1858. return TRUE;
  1859. }
  1860. BOOL ImgOfOriginal::LoadSelectedIamgesInOrder(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpLoadExt, IN CStringArray &AryOfSelectedIamges, OUT CStringArray &AryOfNoExistIamges, OUT CStringArray &AryOfSelectedImagepaths)
  1861. {
  1862. CStringArray tmpselectedImg;
  1863. CStringArray tmpselectedImgpaths;
  1864. if (!LoadSelectedIamges(nImgType, lpBranchId, lpOrderNum, lpLoadExt, tmpselectedImg, AryOfNoExistIamges, tmpselectedImgpaths)) return FALSE;
  1865. tmpselectedImg.Copy(AryOfSelectedIamges);
  1866. tmpselectedImgpaths.Copy(AryOfSelectedImagepaths);
  1867. CString strImage = _T("");
  1868. // 再按顺序加入AryOfSelectedImagePaths;
  1869. for (int i = 0; i < AryOfSelectedIamges.GetSize(); i++)
  1870. {
  1871. // 如果某张相片没有找到对应的文件,赋空;
  1872. BOOL bGetImage = FALSE;
  1873. for (int n = 0; n < tmpselectedImgpaths.GetSize(); n++)
  1874. {
  1875. strImage = tmpselectedImgpaths.ElementAt(n).Mid(tmpselectedImgpaths.ElementAt(n).ReverseFind('\\') + 1);
  1876. strImage = strImage.Left(strImage.Find('.'));
  1877. if (AryOfSelectedIamges.ElementAt(i).CompareNoCase(strImage) == 0)
  1878. {
  1879. bGetImage = TRUE;
  1880. AryOfSelectedImagepaths.Add(tmpselectedImgpaths.ElementAt(n));
  1881. break;
  1882. }
  1883. }
  1884. if (!bGetImage)
  1885. {
  1886. AryOfSelectedImagepaths.Add(_T(""));
  1887. }
  1888. }
  1889. return TRUE;
  1890. }
  1891. BOOL ImgOfOriginal::LoadSelectedIamgesInOrder(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpLoadExt, IN STR_VEC &AryOfSelectedIamges, OUT STR_VEC &AryOfNoExistIamges, OUT STR_VEC &AryOfSelectedImagepaths)
  1892. {
  1893. STR_VEC tmpselectedImg;
  1894. STR_VEC tmpselectedImgpaths;
  1895. if (!LoadSelectedIamges(nImgType, lpBranchId, lpOrderNum, lpLoadExt, tmpselectedImg, AryOfNoExistIamges, tmpselectedImgpaths)) return FALSE;
  1896. for (STR_VEC::iterator it = AryOfSelectedIamges.begin(); it != AryOfSelectedIamges.end(); it++)
  1897. {
  1898. tmpselectedImg.push_back(it->c_str());
  1899. }
  1900. for (STR_VEC::iterator it = AryOfSelectedImagepaths.begin(); it != AryOfSelectedImagepaths.end(); it++)
  1901. {
  1902. tmpselectedImgpaths.push_back(it->c_str());
  1903. }
  1904. int nIndex = 0;
  1905. TString strImage = _T("");
  1906. // 再按顺序加入AryOfSelectedImagePaths;
  1907. for (STR_VEC::iterator itName = AryOfSelectedIamges.begin(); itName != AryOfSelectedIamges.end(); itName++)
  1908. {
  1909. // 如果某张相片没有找到对应的文件,赋空;
  1910. BOOL bGetImage = FALSE;
  1911. for (STR_VEC::iterator itpath = tmpselectedImgpaths.begin(); itpath != tmpselectedImgpaths.end(); itpath++)
  1912. {
  1913. if ((nIndex = itpath->find_last_of(_T('\\'))) != TString::npos)
  1914. {
  1915. strImage = itpath->substr(nIndex + 1);
  1916. if ((nIndex = strImage.find_last_of(_T('.'))) != TString::npos)
  1917. {
  1918. strImage = strImage.substr(nIndex);
  1919. filehelpImpl::uppercase(strImage);
  1920. filehelpImpl::uppercase(*itName);
  1921. if (itName->compare(strImage) == 0)
  1922. {
  1923. bGetImage = TRUE;
  1924. AryOfSelectedImagepaths.push_back(itpath->c_str());
  1925. break;
  1926. }
  1927. }
  1928. }
  1929. }
  1930. if (!bGetImage)
  1931. {
  1932. AryOfSelectedImagepaths.push_back(_T(""));
  1933. }
  1934. }
  1935. // 重新排序;
  1936. return TRUE;
  1937. }
  1938. BOOL ImgOfOriginal::LoadSceneryImages(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpScenery, IN LPCTSTR lpLoadExt, OUT CStringArray& AryOfSceneryImagepaths, OUT CStringArray* pAryOfSceneryDirectory /* = NULL */)
  1939. {
  1940. // 判断域名有效性;
  1941. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  1942. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  1943. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  1944. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  1945. int nSize = 0;
  1946. CString strImage = _T("");
  1947. TCHAR szOrderpath[MAX_PATH] = { 0 };
  1948. TCHAR szScenery[MAX_PATH] = { 0 };
  1949. if (lpScenery == NULL || (_tcscmp(lpScenery, _T("")) == 0 || _tcscmp(lpScenery, _T("全部")) == 0))
  1950. _stprintf_s(szScenery, _T("%s"), _T(""));
  1951. else
  1952. _stprintf_s(szScenery, _T("%s"), lpScenery);
  1953. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  1954. {
  1955. ImgShareInfo *pImgsi = *it;
  1956. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  1957. {
  1958. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  1959. {//本机域名;
  1960. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpOrderNum, szScenery);
  1961. }
  1962. else
  1963. {
  1964. _stprintf_s(szOrderpath, _T("%s\\%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum, szScenery);
  1965. }
  1966. if (PathFileExists(szOrderpath))
  1967. {
  1968. if (pAryOfSceneryDirectory)
  1969. pAryOfSceneryDirectory->Add(szOrderpath);
  1970. LoadSpecifiedpathImages(szOrderpath, lpLoadExt, AryOfSceneryImagepaths);
  1971. }
  1972. }
  1973. }
  1974. return TRUE;
  1975. }
  1976. BOOL ImgOfOriginal::LoadSceneryImages(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpScenery, IN LPCTSTR lpLoadExt, OUT STR_VEC& AryOfSceneryImagepaths, OUT STR_VEC* pAryOfSceneryDirectory /* = NULL */)
  1977. {
  1978. // 判断域名有效性;
  1979. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  1980. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  1981. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  1982. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  1983. int nSize = 0;
  1984. CString strImage = _T("");
  1985. TCHAR szScenery[MAX_PATH] = { 0 };
  1986. if (lpScenery == NULL || (_tcscmp(lpScenery, _T("")) == 0 || _tcscmp(lpScenery, _T("全部")) == 0))
  1987. _stprintf_s(szScenery, _T("%s"), _T(""));
  1988. else
  1989. _stprintf_s(szScenery, _T("%s"), lpScenery);
  1990. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  1991. {
  1992. ImgShareInfo *pImgsi = *it;
  1993. TCHAR szOrderpath[MAX_PATH] = { 0 };
  1994. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  1995. {
  1996. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  1997. {//本机域名;
  1998. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpOrderNum, szScenery);
  1999. }
  2000. else
  2001. {
  2002. _stprintf_s(szOrderpath, _T("%s\\%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum, szScenery);
  2003. }
  2004. if (PathFileExists(szOrderpath))
  2005. {
  2006. if (pAryOfSceneryDirectory)
  2007. pAryOfSceneryDirectory->push_back(szOrderpath);
  2008. LoadSpecifiedpathImages(szOrderpath, lpLoadExt, AryOfSceneryImagepaths);
  2009. }
  2010. }
  2011. }
  2012. return TRUE;
  2013. }
  2014. BOOL ImgOfOriginal::LoadOrderImages(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpLoadExt, OUT CStringArray& AryOfOrderImagePaths, OUT CStringArray* pAryOfOrderDirectory /* = NULL */)
  2015. {
  2016. // 判断域名有效性;
  2017. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2018. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2019. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2020. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2021. int nSize = 0;
  2022. CString strImage = _T("");
  2023. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2024. {
  2025. ImgShareInfo *pImgsi = *it;
  2026. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2027. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2028. {
  2029. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2030. {//本机域名;
  2031. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  2032. }
  2033. else
  2034. {
  2035. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  2036. }
  2037. if (PathFileExists(szOrderpath))
  2038. {
  2039. if (pAryOfOrderDirectory)
  2040. pAryOfOrderDirectory->Add(szOrderpath);
  2041. LoadSpecifiedpathImages(szOrderpath, lpLoadExt, AryOfOrderImagePaths);
  2042. }
  2043. }
  2044. }
  2045. return TRUE;
  2046. }
  2047. BOOL ImgOfOriginal::LoadOrderImages(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpLoadExt, OUT STR_VEC& AryOfOrderImagePaths, OUT STR_VEC* pAryOfOrderDirectory /* = NULL */)
  2048. {
  2049. // 判断域名有效性;
  2050. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2051. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2052. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2053. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2054. int nSize = 0;
  2055. CString strImage = _T("");
  2056. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2057. {
  2058. ImgShareInfo *pImgsi = *it;
  2059. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2060. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2061. {
  2062. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2063. {//本机域名;
  2064. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  2065. }
  2066. else
  2067. {
  2068. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  2069. }
  2070. if (PathFileExists(szOrderpath))
  2071. {
  2072. if (pAryOfOrderDirectory)
  2073. pAryOfOrderDirectory->push_back(szOrderpath);
  2074. LoadSpecifiedpathImages(szOrderpath, lpLoadExt, AryOfOrderImagePaths);
  2075. }
  2076. }
  2077. }
  2078. return TRUE;
  2079. }
  2080. BOOL ImgOfOriginal::GetOrderAllShareDirectory(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, OUT CStringArray& AryOfOrderAllShareDirectory)
  2081. {
  2082. // 判断域名有效性;
  2083. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2084. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2085. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2086. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2087. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2088. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2089. {
  2090. ImgShareInfo *pImgsi = *it;
  2091. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2092. {
  2093. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2094. {//本机域名;
  2095. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  2096. }
  2097. else
  2098. {
  2099. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  2100. }
  2101. if (PathFileExists(szOrderpath))
  2102. {
  2103. AryOfOrderAllShareDirectory.Add(szOrderpath);
  2104. }
  2105. }
  2106. }
  2107. return TRUE;
  2108. }
  2109. BOOL ImgOfOriginal::GetOrderAllShareDirectory(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, OUT STR_VEC& AryOfOrderAllShareDirectory)
  2110. {
  2111. // 判断域名有效性;
  2112. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2113. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2114. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2115. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2116. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2117. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2118. {
  2119. ImgShareInfo *pImgsi = *it;
  2120. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2121. {
  2122. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2123. {//本机域名;
  2124. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  2125. }
  2126. else
  2127. {
  2128. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  2129. }
  2130. if (PathFileExists(szOrderpath))
  2131. {
  2132. AryOfOrderAllShareDirectory.push_back(szOrderpath);
  2133. }
  2134. }
  2135. }
  2136. return TRUE;
  2137. }
  2138. BOOL ImgOfOriginal::GetSceneryAllShareDirectory(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpScenery, OUT CStringArray &AryOfSceneryAllShareDirectory)
  2139. {
  2140. // 判断域名有效性;
  2141. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2142. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2143. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2144. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2145. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2146. TCHAR szScenery[MAX_PATH] = { 0 };
  2147. if (lpScenery == NULL || (_tcscmp(lpScenery, _T("")) == 0 || _tcscmp(lpScenery, _T("全部")) == 0))
  2148. _stprintf_s(szScenery, _T("%s"), _T(""));
  2149. else
  2150. _stprintf_s(szScenery, _T("%s"), lpScenery);
  2151. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2152. {
  2153. ImgShareInfo *pImgsi = *it;
  2154. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2155. {
  2156. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2157. {//本机域名;
  2158. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpOrderNum, szScenery);
  2159. }
  2160. else
  2161. {
  2162. _stprintf_s(szOrderpath, _T("%s\\%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum, szScenery);
  2163. }
  2164. if (PathFileExists(szOrderpath))
  2165. {
  2166. AryOfSceneryAllShareDirectory.Add(szOrderpath);
  2167. }
  2168. }
  2169. }
  2170. return TRUE;
  2171. }
  2172. BOOL ImgOfOriginal::GetSceneryAllShareDirectory(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpScenery, OUT STR_VEC &AryOfSceneryAllShareDirectory)
  2173. {
  2174. // 判断域名有效性;
  2175. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2176. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2177. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2178. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2179. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2180. TCHAR szScenery[MAX_PATH] = { 0 };
  2181. if (lpScenery == NULL || (_tcscmp(lpScenery, _T("")) == 0 || _tcscmp(lpScenery, _T("全部")) == 0))
  2182. _stprintf_s(szScenery, _T("%s"), _T(""));
  2183. else
  2184. _stprintf_s(szScenery, _T("%s"), lpScenery);
  2185. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2186. {
  2187. ImgShareInfo *pImgsi = *it;
  2188. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2189. {
  2190. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2191. {//本机域名;
  2192. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpOrderNum, szScenery);
  2193. }
  2194. else
  2195. {
  2196. _stprintf_s(szOrderpath, _T("%s\\%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum, szScenery);
  2197. }
  2198. if (PathFileExists(szOrderpath))
  2199. {
  2200. AryOfSceneryAllShareDirectory.push_back(szOrderpath);
  2201. }
  2202. }
  2203. }
  2204. return TRUE;
  2205. }
  2206. //////////////////////////////////////////////////////////////////////////
  2207. BOOL ImgOfOriginal::LoadSpecifiedpathImagesEx(IN LPCTSTR lpSepcifiedpath, IN BOOL bLoadInSubfolder, IN LPCTSTR lpLoadExt, OUT CStringArray &AryOfLoadImgs, IN LPCTSTR lpWithExt, OUT CStringArray &AryOfWithImgs)
  2208. {
  2209. // 指定目录是否存在;
  2210. if (!PathFileExists(lpSepcifiedpath)) return FALSE;
  2211. // 扩展名是否有效;
  2212. if (!filehelpImpl::iscorrectext(lpLoadExt)) return FALSE;
  2213. #if 0
  2214. // 合并扩展名;
  2215. TString findext = lpLoadExt;
  2216. if (findext[findext.length() - 1] != _T('|'))
  2217. {
  2218. findext.append(_T("|"));
  2219. }
  2220. findext.append(lpWithExt);
  2221. // 扩展名是否有效;
  2222. if (!filehelpImpl::iscorrectext(lpWithExt)) return FALSE;
  2223. #else
  2224. TString findext;
  2225. if (!underlyingapi::extmerge(lpLoadExt, lpWithExt,findext))
  2226. return FALSE;
  2227. #endif
  2228. STR_VEC vtFiles;
  2229. filehelpImpl lf;
  2230. if (bLoadInSubfolder)
  2231. {
  2232. lf.getfiles_findin_subfolder(lpSepcifiedpath, findext.c_str(), &vtFiles);
  2233. }
  2234. else
  2235. {
  2236. lf.getfiles_findout_subfolder(lpSepcifiedpath, findext.c_str(), &vtFiles);
  2237. }
  2238. // 分组扩展名;
  2239. SubgroupExt(vtFiles, lpLoadExt, AryOfLoadImgs);
  2240. SubgroupExt(vtFiles, lpWithExt, AryOfWithImgs);
  2241. return TRUE;
  2242. }
  2243. BOOL ImgOfOriginal::LoadSpecifiedpathImagesEx(IN LPCTSTR lpSepcifiedpath, IN BOOL bLoadInSubfolder, IN LPCTSTR lpLoadExt, OUT STR_VEC &AryOfLoadImgs, IN LPCTSTR lpWithExt, OUT STR_VEC &AryOfWithImgs)
  2244. {
  2245. // 指定目录是否存在;
  2246. if (!PathFileExists(lpSepcifiedpath)) return FALSE;
  2247. // 扩展名是否有效;
  2248. if (!filehelpImpl::iscorrectext(lpLoadExt)) return FALSE;
  2249. #if 0
  2250. // 合并扩展名;
  2251. TString findext = lpLoadExt;
  2252. if (findext[findext.length() - 1] != _T('|'))
  2253. {
  2254. findext.append(_T("|"));
  2255. }
  2256. findext.append(lpWithExt);
  2257. // 扩展名是否有效;
  2258. if (!filehelpImpl::iscorrectext(lpWithExt)) return FALSE;
  2259. #else
  2260. TString findext;
  2261. if (!underlyingapi::extmerge(lpLoadExt, lpWithExt, findext))
  2262. return FALSE;
  2263. #endif
  2264. STR_VEC vtFiles;
  2265. filehelpImpl lf;
  2266. if (bLoadInSubfolder)
  2267. {
  2268. lf.getfiles_findin_subfolder(lpSepcifiedpath, findext.c_str(), &vtFiles);
  2269. }
  2270. else
  2271. {
  2272. lf.getfiles_findout_subfolder(lpSepcifiedpath, findext.c_str(), &vtFiles);
  2273. }
  2274. // 分组扩展名;
  2275. SubgroupExt(vtFiles, lpLoadExt, AryOfLoadImgs);
  2276. SubgroupExt(vtFiles, lpWithExt, AryOfWithImgs);
  2277. return TRUE;
  2278. }
  2279. BOOL ImgOfOriginal::LoadSelectedIamgesFromSpecifiedpathEx(IN LPCTSTR lpSepcifiedpath, IN BOOL bLoadInSubfolder, IN CStringArray &AryOfSelectedIamges, OUT CStringArray &AryOfNoExistIamges, IN LPCTSTR lpLoadExt, OUT CStringArray &AryOfLoadImagepaths, IN LPCTSTR lpWithExt, OUT CStringArray &AryOfWithImagepaths)
  2280. {
  2281. // 指定目录是否存在;
  2282. if (!PathFileExists(lpSepcifiedpath)) return FALSE;
  2283. // 扩展名是否有效;
  2284. if (!filehelpImpl::iscorrectext(lpLoadExt)) return FALSE;
  2285. #if 0
  2286. // 合并扩展名;
  2287. TString findext = lpLoadExt;
  2288. if (findext[findext.length() - 1] != _T('|'))
  2289. {
  2290. findext.append(_T("|"));
  2291. }
  2292. findext.append(lpWithExt);
  2293. // 扩展名是否有效;
  2294. if (!filehelpImpl::iscorrectext(lpWithExt)) return FALSE;
  2295. #else
  2296. TString findext;
  2297. if (!underlyingapi::extmerge(lpLoadExt, lpWithExt, findext))
  2298. return FALSE;
  2299. #endif
  2300. STR_VEC vtFiles;
  2301. filehelpImpl lf;
  2302. if (bLoadInSubfolder)
  2303. {
  2304. lf.getfiles_findin_subfolder(lpSepcifiedpath, findext.c_str(), &vtFiles);
  2305. }
  2306. else
  2307. {
  2308. lf.getfiles_findout_subfolder(lpSepcifiedpath, findext.c_str(), &vtFiles);
  2309. }
  2310. #if 0
  2311. // 分组扩展名;
  2312. CStringArray AryLoad;
  2313. CStringArray AryWith;
  2314. SubgroupExt(vtFiles, lpLoadExt, AryLoad);
  2315. SubgroupExt(vtFiles, lpWithExt, AryWith);
  2316. // 过滤不存在的文件名;
  2317. BOOL bExist;
  2318. CString strname;
  2319. int nSize = AryOfSelectedIamges.GetSize();
  2320. for (int i = 0; i < nSize; i++)
  2321. {
  2322. bExist = FALSE;
  2323. for (int n = 0; n < AryLoad.GetSize(); n++)
  2324. {
  2325. strname = GetFileName(AryLoad.ElementAt(n));
  2326. if (strname.CompareNoCase(AryOfSelectedIamges.ElementAt(i)) == 0)
  2327. {
  2328. bExist = TRUE;
  2329. AryOfLoadImagepaths.Add(AryLoad.ElementAt(n));
  2330. //break; //不能break,否则其他扩展名会加载不了;
  2331. }
  2332. }
  2333. for (int j = 0; j < AryWith.GetSize(); j++)
  2334. {
  2335. strname = GetFileName(AryWith.ElementAt(j));
  2336. if (strname.CompareNoCase(AryOfSelectedIamges.ElementAt(i)) == 0)
  2337. {
  2338. AryOfWithImagepaths.Add(AryWith.ElementAt(j));
  2339. //break; 同理;
  2340. }
  2341. }
  2342. if (!bExist)
  2343. {
  2344. AryOfNoExistIamges.Add(AryOfSelectedIamges.ElementAt(i));
  2345. }
  2346. }
  2347. #else // 以下做法,无法获取不存在文件的相片名; 但是使用另一变量来保存存在的相片名,再与原相片名相减;
  2348. SubgroupExt(vtFiles, lpLoadExt, AryOfLoadImagepaths);
  2349. SubgroupExt(vtFiles, lpWithExt, AryOfWithImagepaths);
  2350. // 过滤不存在的文件名;
  2351. BOOL bExist;
  2352. CString strname;
  2353. int nSize = AryOfSelectedIamges.GetSize();
  2354. CStringArray AryExistImg; // 存在文件的相片名;
  2355. for (int i = AryOfLoadImagepaths.GetSize() - 1; i > 0; i--)
  2356. {
  2357. bExist = FALSE;
  2358. strname = GetFileName(AryOfLoadImagepaths.ElementAt(i));
  2359. for (int n = 0; n < nSize; n++)
  2360. {
  2361. if (strname.CompareNoCase(AryOfSelectedIamges.ElementAt(n)) == 0)
  2362. {
  2363. bExist = TRUE;
  2364. if (!underlyingapi::IsStringExistNoCase(strname, AryExistImg))
  2365. AryExistImg.Add(strname);
  2366. // 不能break;因为如果加载多个扩展名的话,会加载后面的失败;
  2367. }
  2368. }
  2369. if (!bExist)
  2370. {
  2371. AryOfLoadImagepaths.RemoveAt(i);
  2372. }
  2373. }
  2374. for (int i = AryOfWithImagepaths.GetSize() - 1; i > 0; i--)
  2375. {
  2376. bExist = FALSE;
  2377. strname = GetFileName(AryOfWithImagepaths.ElementAt(i));
  2378. for (int n = 0; n < nSize; n++)
  2379. {
  2380. if (strname.CompareNoCase(AryOfSelectedIamges.ElementAt(n)) == 0)
  2381. {
  2382. bExist = TRUE;
  2383. }
  2384. }
  2385. if (!bExist)
  2386. {
  2387. AryOfWithImagepaths.RemoveAt(i);
  2388. }
  2389. }
  2390. // 减去存在的相片名;
  2391. #if 0
  2392. for (int i = AryOfSelectedIamges.GetSize() - 1; i > 0; i--)
  2393. {
  2394. for (int n = AryExistImg.GetSize() - 1; n > 0; n-- )
  2395. {
  2396. if (AryExistImg.ElementAt(n).CompareNoCase(AryOfSelectedIamges.ElementAt(i)) == 0)
  2397. {
  2398. AryOfSelectedIamges.RemoveAt(i);
  2399. break;
  2400. }
  2401. }
  2402. }
  2403. #else
  2404. for (int i = AryOfSelectedIamges.GetSize() - 1; i > 0; i--)
  2405. {
  2406. bExist = FALSE;
  2407. for (int n = AryExistImg.GetSize() - 1; n > 0; n-- )
  2408. {
  2409. if (AryExistImg.ElementAt(n).CompareNoCase(AryOfSelectedIamges.ElementAt(i)) == 0)
  2410. {
  2411. bExist = TRUE;
  2412. break;
  2413. }
  2414. }
  2415. if ( !bExist )
  2416. {
  2417. AryOfNoExistIamges.Add(AryOfSelectedIamges.ElementAt(i));
  2418. }
  2419. }
  2420. #endif
  2421. #endif
  2422. return TRUE;
  2423. }
  2424. BOOL ImgOfOriginal::LoadSelectedIamgesFromSpecifiedpathEx(IN LPCTSTR lpSepcifiedpath, IN BOOL bLoadInSubfolder, IN STR_VEC &AryOfSelectedIamges, OUT STR_VEC &AryOfNoExistIamges, IN LPCTSTR lpLoadExt, OUT STR_VEC &AryOfLoadImagepaths, IN LPCTSTR lpWithExt, OUT STR_VEC &AryOfWithImagepaths)
  2425. {
  2426. // 指定目录是否存在;
  2427. if (!PathFileExists(lpSepcifiedpath)) return FALSE;
  2428. // 扩展名是否有效;
  2429. if (!filehelpImpl::iscorrectext(lpLoadExt)) return FALSE;
  2430. #if 0
  2431. // 合并扩展名;
  2432. TString findext = lpLoadExt;
  2433. if (findext[findext.length() - 1] != _T('|'))
  2434. {
  2435. findext.append(_T("|"));
  2436. }
  2437. findext.append(lpWithExt);
  2438. // 扩展名是否有效;
  2439. if (!filehelpImpl::iscorrectext(lpWithExt)) return FALSE;
  2440. #else
  2441. TString findext;
  2442. if (!underlyingapi::extmerge(lpLoadExt, lpWithExt, findext))
  2443. return FALSE;
  2444. #endif
  2445. STR_VEC vtFiles;
  2446. filehelpImpl lf;
  2447. if (bLoadInSubfolder)
  2448. {
  2449. lf.getfiles_findin_subfolder(lpSepcifiedpath, findext.c_str(), &vtFiles);
  2450. }
  2451. else
  2452. {
  2453. lf.getfiles_findout_subfolder(lpSepcifiedpath, findext.c_str(), &vtFiles);
  2454. }
  2455. // 分组扩展名;
  2456. SubgroupExt(vtFiles, lpLoadExt, AryOfLoadImagepaths);
  2457. SubgroupExt(vtFiles, lpWithExt, AryOfWithImagepaths);
  2458. TString name;
  2459. TString name1;
  2460. BOOL bExist = FALSE;
  2461. STR_VEC vtExistImg;
  2462. // 过滤无用文件名;
  2463. for (STR_VEC::iterator it = AryOfLoadImagepaths.begin(); it != AryOfLoadImagepaths.end(); )
  2464. {
  2465. bExist = FALSE;
  2466. name = filehelpImpl::getfilename(*it);
  2467. filehelpImpl::uppercase(name);
  2468. for (STR_VEC::iterator itn = AryOfSelectedIamges.begin(); itn != AryOfSelectedIamges.end(); itn++)
  2469. {
  2470. filehelpImpl::uppercase(*itn);
  2471. if ( name.compare(*itn) == 0 )
  2472. {
  2473. bExist = TRUE;
  2474. it++;
  2475. vtExistImg.push_back(name);
  2476. break;
  2477. }
  2478. }
  2479. if ( !bExist )
  2480. {
  2481. it = AryOfLoadImagepaths.erase(it);
  2482. }
  2483. }
  2484. // 过滤无用文件名;
  2485. for (STR_VEC::iterator it = AryOfWithImagepaths.begin(); it != AryOfWithImagepaths.end(); )
  2486. {
  2487. bExist = FALSE;
  2488. name = filehelpImpl::getfilename(*it);
  2489. filehelpImpl::uppercase(name);
  2490. for (STR_VEC::iterator itn = AryOfSelectedIamges.begin(); itn != AryOfSelectedIamges.end(); itn++)
  2491. {
  2492. filehelpImpl::uppercase(*itn);
  2493. if ( name.compare(*itn) == 0 )
  2494. {
  2495. bExist = TRUE;
  2496. it++;
  2497. vtExistImg.push_back(name);
  2498. break;
  2499. }
  2500. }
  2501. if ( !bExist )
  2502. {
  2503. it = AryOfWithImagepaths.erase(it);
  2504. }
  2505. }
  2506. // 减去存在的相片名;
  2507. for ( STR_VEC::iterator it = AryOfSelectedIamges.begin(); it != AryOfSelectedIamges.end(); )
  2508. {
  2509. bExist = FALSE;
  2510. for ( STR_VEC::iterator ite = vtExistImg.begin(); ite != vtExistImg.end(); ite++ )
  2511. {
  2512. if ( ite->compare(*it) == 0 )
  2513. {
  2514. bExist = TRUE;
  2515. break;
  2516. }
  2517. }
  2518. if ( !bExist )
  2519. {
  2520. AryOfNoExistIamges.push_back(*it);
  2521. }
  2522. it++;
  2523. }
  2524. return TRUE;
  2525. }
  2526. BOOL ImgOfOriginal::LoadSelectedIamgesEx(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN BOOL bLoadInSubfolder, IN CStringArray &AryOfSelectedIamges, OUT CStringArray &AryOfNoExistIamges, IN LPCTSTR lpLoadExt, OUT CStringArray &AryOfLoadImagepaths, IN LPCTSTR lpWithExt, OUT CStringArray &AryOfWithImagepaths)
  2527. {
  2528. // 判断域名有效性;
  2529. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2530. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2531. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2532. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2533. int nSize = 0;
  2534. CString strImage = _T("");
  2535. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2536. TCHAR szShareDirectory[MAX_PATH] = { 0 };
  2537. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2538. {
  2539. ImgShareInfo *pImgsi = *it;
  2540. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2541. {
  2542. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2543. {//本机域名;
  2544. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  2545. }
  2546. else
  2547. {
  2548. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  2549. }
  2550. if (PathFileExists(szOrderpath))
  2551. {
  2552. LoadSelectedIamgesFromSpecifiedpathEx(szOrderpath, bLoadInSubfolder, AryOfSelectedIamges, AryOfNoExistIamges, lpLoadExt, AryOfLoadImagepaths, lpWithExt, AryOfWithImagepaths);
  2553. }
  2554. }
  2555. }
  2556. return TRUE;
  2557. }
  2558. BOOL ImgOfOriginal::LoadSelectedIamgesEx(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN BOOL bLoadInSubfolder, IN STR_VEC &AryOfSelectedIamges, OUT STR_VEC &AryOfNoExistIamges, IN LPCTSTR lpLoadExt, OUT STR_VEC &AryOfLoadImagepaths, IN LPCTSTR lpWithExt, OUT STR_VEC &AryOfWithImagepaths)
  2559. {
  2560. // 判断域名有效性;
  2561. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2562. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2563. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2564. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2565. int nSize = 0;
  2566. CString strImage = _T("");
  2567. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2568. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2569. {
  2570. ImgShareInfo *pImgsi = *it;
  2571. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2572. {
  2573. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2574. {//本机域名;
  2575. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  2576. }
  2577. else
  2578. {
  2579. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  2580. }
  2581. if (PathFileExists(szOrderpath))
  2582. {
  2583. LoadSelectedIamgesFromSpecifiedpathEx(szOrderpath, bLoadInSubfolder, AryOfSelectedIamges, AryOfNoExistIamges, lpLoadExt, AryOfLoadImagepaths, lpWithExt, AryOfWithImagepaths);
  2584. }
  2585. }
  2586. }
  2587. return TRUE;
  2588. }
  2589. BOOL ImgOfOriginal::LoadSelectedIamgesInOrderEx(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN BOOL bLoadInSubfolder, IN CStringArray &AryOfSelectedIamges, OUT CStringArray &AryOfNoExistIamges, IN LPCTSTR lpLoadExt, OUT CStringArray &AryOfLoadImagepaths, IN LPCTSTR lpWithExt, OUT CStringArray &AryOfWithImagepaths)
  2590. {
  2591. CStringArray tmpLoadImgpaths;
  2592. CStringArray tmpWithImgpaths;
  2593. if ( !LoadSelectedIamgesEx(nImgType, lpBranchId, lpOrderNum, bLoadInSubfolder, AryOfSelectedIamges, AryOfNoExistIamges, lpLoadExt, tmpLoadImgpaths, lpWithExt, tmpWithImgpaths))
  2594. return FALSE;
  2595. CString strImage = _T("");
  2596. // 再按顺序加入AryOfSelectedImagePaths;
  2597. for (int i = 0; i < AryOfSelectedIamges.GetSize(); i++)
  2598. {
  2599. // 如果某张相片没有找到对应的文件,赋空;
  2600. BOOL bGetImage = FALSE;
  2601. for (int n = 0; n < tmpLoadImgpaths.GetSize(); n++)
  2602. {
  2603. strImage = tmpLoadImgpaths.ElementAt(n).Mid(tmpLoadImgpaths.ElementAt(n).ReverseFind('\\') + 1);
  2604. strImage = strImage.Left(strImage.Find('.'));
  2605. if (AryOfSelectedIamges.ElementAt(i).CompareNoCase(strImage) == 0)
  2606. {
  2607. bGetImage = TRUE;
  2608. AryOfLoadImagepaths.Add(tmpLoadImgpaths.ElementAt(n));
  2609. break;
  2610. }
  2611. }
  2612. if (!bGetImage)
  2613. {
  2614. AryOfLoadImagepaths.Add(_T(""));
  2615. }
  2616. }
  2617. for (int i = 0; i < AryOfSelectedIamges.GetSize(); i++)
  2618. {
  2619. // 如果某张相片没有找到对应的文件,赋空;
  2620. BOOL bGetImage = FALSE;
  2621. for (int n = 0; n < tmpWithImgpaths.GetSize(); n++)
  2622. {
  2623. strImage = tmpWithImgpaths.ElementAt(n).Mid(tmpWithImgpaths.ElementAt(n).ReverseFind('\\') + 1);
  2624. strImage = strImage.Left(strImage.Find('.'));
  2625. if (AryOfWithImagepaths.ElementAt(i).CompareNoCase(strImage) == 0)
  2626. {
  2627. bGetImage = TRUE;
  2628. AryOfWithImagepaths.Add(tmpWithImgpaths.ElementAt(n));
  2629. break;
  2630. }
  2631. }
  2632. if (!bGetImage)
  2633. {
  2634. AryOfWithImagepaths.Add(_T(""));
  2635. }
  2636. }
  2637. return TRUE;
  2638. }
  2639. BOOL ImgOfOriginal::LoadSelectedIamgesInOrderEx(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN BOOL bLoadInSubfolder, IN STR_VEC &AryOfSelectedIamges, OUT STR_VEC &AryOfNoExistIamges, IN LPCTSTR lpLoadExt, OUT STR_VEC &AryOfLoadImagepaths, IN LPCTSTR lpWithExt, OUT STR_VEC &AryOfWithImagepaths)
  2640. {
  2641. STR_VEC tmpLoadImg;
  2642. STR_VEC tmpWithImg;
  2643. if (!LoadSelectedIamgesEx(nImgType, lpBranchId, lpOrderNum, bLoadInSubfolder, AryOfSelectedIamges, AryOfNoExistIamges, lpLoadExt, tmpLoadImg, lpWithExt, tmpWithImg))
  2644. return FALSE;
  2645. int nIndex = 0;
  2646. TString strImage = _T("");
  2647. // 再按顺序加入AryOfSelectedImagePaths;
  2648. for (STR_VEC::iterator itName = AryOfSelectedIamges.begin(); itName != AryOfSelectedIamges.end(); itName++)
  2649. {
  2650. // 如果某张相片没有找到对应的文件,赋空;
  2651. BOOL bGetImage = FALSE;
  2652. for (STR_VEC::iterator itpath = tmpLoadImg.begin(); itpath != tmpLoadImg.end(); itpath++)
  2653. {
  2654. if ((nIndex = itpath->find_last_of(_T('\\'))) != TString::npos)
  2655. {
  2656. strImage = itpath->substr(nIndex + 1);
  2657. if ((nIndex = strImage.find_last_of(_T('.'))) != TString::npos)
  2658. {
  2659. strImage = strImage.substr(nIndex);
  2660. filehelpImpl::uppercase(strImage);
  2661. filehelpImpl::uppercase(*itName);
  2662. if (itName->compare(strImage) == 0)
  2663. {
  2664. bGetImage = TRUE;
  2665. AryOfLoadImagepaths.push_back(itpath->c_str());
  2666. break;
  2667. }
  2668. }
  2669. }
  2670. }
  2671. if (!bGetImage)
  2672. {
  2673. AryOfLoadImagepaths.push_back(_T(""));
  2674. }
  2675. }
  2676. for (STR_VEC::iterator itName = AryOfSelectedIamges.begin(); itName != AryOfSelectedIamges.end(); itName++)
  2677. {
  2678. // 如果某张相片没有找到对应的文件,赋空;
  2679. BOOL bGetImage = FALSE;
  2680. for (STR_VEC::iterator itpath = tmpLoadImg.begin(); itpath != tmpLoadImg.end(); itpath++)
  2681. {
  2682. if ((nIndex = itpath->find_last_of(_T('\\'))) != TString::npos)
  2683. {
  2684. strImage = itpath->substr(nIndex + 1);
  2685. if ((nIndex = strImage.find_last_of(_T('.'))) != TString::npos)
  2686. {
  2687. strImage = strImage.substr(nIndex);
  2688. filehelpImpl::uppercase(strImage);
  2689. filehelpImpl::uppercase(*itName);
  2690. if (itName->compare(strImage) == 0)
  2691. {
  2692. bGetImage = TRUE;
  2693. AryOfWithImagepaths.push_back(itpath->c_str());
  2694. break;
  2695. }
  2696. }
  2697. }
  2698. }
  2699. if (!bGetImage)
  2700. {
  2701. AryOfWithImagepaths.push_back(_T(""));
  2702. }
  2703. }
  2704. return TRUE;
  2705. }
  2706. BOOL ImgOfOriginal::LoadSceneryImagesEx(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpScenery, IN LPCTSTR lpLoadExt, OUT CStringArray& AryOfLoadImagepaths, IN LPCTSTR lpWithExt, IN CStringArray& AryOfWithImagepaths, OUT CStringArray* pAryOfSceneryDirectory /* = NULL */)
  2707. {
  2708. // 判断域名有效性;
  2709. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2710. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2711. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2712. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2713. int nSize = 0;
  2714. CString strImage = _T("");
  2715. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2716. TCHAR szScenery[MAX_PATH] = { 0 };
  2717. if (lpScenery == NULL || (_tcscmp(lpScenery, _T("")) == 0 || _tcscmp(lpScenery, _T("全部")) == 0))
  2718. _stprintf_s(szScenery, _T("%s"), _T(""));
  2719. else
  2720. _stprintf_s(szScenery, _T("%s"), lpScenery);
  2721. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2722. {
  2723. ImgShareInfo *pImgsi = *it;
  2724. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2725. {
  2726. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2727. {//本机域名;
  2728. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpOrderNum, szScenery);
  2729. }
  2730. else
  2731. {
  2732. _stprintf_s(szOrderpath, _T("%s\\%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum, szScenery);
  2733. }
  2734. if (PathFileExists(szOrderpath))
  2735. {
  2736. if (pAryOfSceneryDirectory)
  2737. pAryOfSceneryDirectory->Add(szOrderpath);
  2738. //LoadSpecifiedpathImages(szOrderpath, lpLoadExt, AryOfSceneryImagepaths);
  2739. LoadSpecifiedpathImagesEx(szOrderpath, FALSE, lpLoadExt, AryOfLoadImagepaths, lpWithExt, AryOfWithImagepaths);
  2740. }
  2741. }
  2742. }
  2743. return TRUE;
  2744. }
  2745. BOOL ImgOfOriginal::LoadSceneryImagesEx(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN LPCTSTR lpScenery, IN LPCTSTR lpLoadExt, OUT STR_VEC& AryOfLoadImagepaths, IN LPCTSTR lpWithExt, IN STR_VEC& AryOfWithImagepaths, OUT STR_VEC* pAryOfSceneryDirectory /* = NULL */)
  2746. {
  2747. // 判断域名有效性;
  2748. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2749. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2750. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2751. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2752. int nSize = 0;
  2753. CString strImage = _T("");
  2754. TCHAR szScenery[MAX_PATH] = { 0 };
  2755. if (lpScenery == NULL || (_tcscmp(lpScenery, _T("")) == 0 || _tcscmp(lpScenery, _T("全部")) == 0))
  2756. _stprintf_s(szScenery, _T("%s"), _T(""));
  2757. else
  2758. _stprintf_s(szScenery, _T("%s"), lpScenery);
  2759. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2760. {
  2761. ImgShareInfo *pImgsi = *it;
  2762. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2763. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2764. {
  2765. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2766. {//本机域名;
  2767. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpOrderNum, szScenery);
  2768. }
  2769. else
  2770. {
  2771. _stprintf_s(szOrderpath, _T("%s\\%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum, szScenery);
  2772. }
  2773. if (PathFileExists(szOrderpath))
  2774. {
  2775. if (pAryOfSceneryDirectory)
  2776. pAryOfSceneryDirectory->push_back(szOrderpath);
  2777. //LoadSpecifiedpathImages(szOrderpath, lpLoadExt, AryOfSceneryImagepaths);
  2778. LoadSpecifiedpathImagesEx(szOrderpath, FALSE, lpLoadExt, AryOfLoadImagepaths, lpWithExt, AryOfWithImagepaths);
  2779. }
  2780. }
  2781. }
  2782. return TRUE;
  2783. }
  2784. BOOL ImgOfOriginal::LoadOrderImagesEx(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN BOOL bLoadInSubfolder, IN LPCTSTR lpLoadExt, OUT CStringArray& AryOfOrderImagePaths, IN LPCTSTR lpWithExt, IN CStringArray& AryOfWithImagepaths, OUT CStringArray* pAryOfOrderDirectory /* = NULL */)
  2785. {
  2786. // 判断域名有效性;
  2787. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2788. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2789. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2790. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2791. int nSize = 0;
  2792. CString strImage = _T("");
  2793. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2794. {
  2795. ImgShareInfo *pImgsi = *it;
  2796. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2797. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2798. {
  2799. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2800. {//本机域名;
  2801. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  2802. }
  2803. else
  2804. {
  2805. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  2806. }
  2807. if (PathFileExists(szOrderpath))
  2808. {
  2809. if (pAryOfOrderDirectory)
  2810. pAryOfOrderDirectory->Add(szOrderpath);
  2811. //LoadSpecifiedpathImages(szOrderpath, lpLoadExt, AryOfOrderImagePaths);
  2812. LoadSpecifiedpathImagesEx(szOrderpath, FALSE, lpLoadExt, AryOfOrderImagePaths, lpWithExt, AryOfWithImagepaths);
  2813. }
  2814. }
  2815. }
  2816. return TRUE;
  2817. }
  2818. BOOL ImgOfOriginal::LoadOrderImagesEx(IN CONST INT &nImgType, IN LPCTSTR lpBranchId, IN LPCTSTR lpOrderNum, IN BOOL bLoadInSubfolder, IN LPCTSTR lpLoadExt, OUT STR_VEC& AryOfOrderImagePaths, IN LPCTSTR lpWithExt, IN STR_VEC& AryOfWithImagepaths, OUT STR_VEC* pAryOfOrderDirectory /* = NULL */)
  2819. {
  2820. // 判断域名有效性;
  2821. if (lpBranchId == NULL || _tcscmp(lpBranchId, _T("")) == 0) return FALSE; // 传入的域名空;
  2822. if (_tcsstr(lpBranchId, _T(".ly.com")) == NULL) return FALSE; // 域名有错;
  2823. if (gp_vtImgShareInfo || gp_vtImgShareInfo->size() == 0) return FALSE; // 共享路径无;
  2824. if (g_pBranchId == NULL) return FALSE; // 本机域名出错;
  2825. int nSize = 0;
  2826. CString strImage = _T("");
  2827. for (IMGSHARE_VEC::iterator it = gp_vtImgShareInfo->begin(); it != gp_vtImgShareInfo->end(); it++)
  2828. {
  2829. ImgShareInfo *pImgsi = *it;
  2830. TCHAR szOrderpath[MAX_PATH] = { 0 };
  2831. if (nImgType == pImgsi->byImgType && _tcscmp(lpBranchId, pImgsi->szBranchId) == 0)
  2832. {
  2833. if (_tcscmp(lpBranchId, g_pBranchId) == 0)
  2834. {//本机域名;
  2835. _stprintf_s(szOrderpath, _T("%s\\%s"), pImgsi->szShareDirectory, lpOrderNum);
  2836. }
  2837. else
  2838. {
  2839. _stprintf_s(szOrderpath, _T("%s\\%s\\%s"), pImgsi->szShareDirectory, lpBranchId, lpOrderNum);
  2840. }
  2841. if (PathFileExists(szOrderpath))
  2842. {
  2843. if (pAryOfOrderDirectory)
  2844. pAryOfOrderDirectory->push_back(szOrderpath);
  2845. //LoadSpecifiedpathImages(szOrderpath, lpLoadExt, AryOfOrderImagePaths);
  2846. LoadSpecifiedpathImagesEx(szOrderpath, FALSE, lpLoadExt, AryOfOrderImagePaths, lpWithExt, AryOfWithImagepaths);
  2847. }
  2848. }
  2849. }
  2850. return TRUE;
  2851. }