目次
サンプル・プログラム
earthquakewin.msi | インストーラ |
bin/earthquakewin.exe | 実行プログラム本体 |
bin/WebView2Loader.dll bin/libcurl-x64.dll | 実行時に必要になるDLL |
bin/etc/help.chm | ヘルプ・ファイル |
sour/earthquakewin.cpp | ソース・プログラム |
sour/resource.h | リソース・ヘッダ |
sour/resource.rc | リソース・ファイル |
sour/mystrings.cpp | 汎用文字列処理関数など(ソース) |
sour/mystrings.h | 汎用文字列処理関数など(ヘッダ) |
sour/pahooGeocode.cpp | 住所・緯度・経度に関わるクラス(ソース) |
sour/pahooGeocode.hpp | 住所・緯度・経度に関わるクラス(ヘッダ) |
sour/apikey.cpp | APIキーの管理(ソース) |
sour/apikey.hpp | APIキーの管理(ヘッダ) |
sour/WebView2.h | WebView2に関わるヘッダ |
sour/event.h | WebView2用インターフェース(ヘッダ) |
sour/event.cpp | WebView2用インターフェース(ソース) |
sour/pahooWebView2.cpp | WebView2に関わる関数(ソース) |
sour/pahooWebView2.hpp | WebView2に関わる関数(ヘッダ) |
sour/pahooCache.cpp | キャッシュ処理に関わるクラス(ソース) |
sour/pahooCache.hpp | キャッシュ処理に関わるクラス(ヘッダ) |
sour/makefile | ビルド |
バージョン | 更新日 | 内容 |
---|---|---|
4.1.2 | 2024/11/23 | 使用ライブラリ更新 |
4.1.1 | 2024/08/17 | 使用ライブラリ更新 |
4.1.0 | 2024/05/03 | enum eActionクラス導入,API入力処理を改良 |
4.0.0 | 2024/04/27 | Edgeブラウザ対応,64ビット対応 |
3.4.5 | 2024/03/16 | 使用ライブラリ更新 |
バージョン | 更新日 | 内容 |
---|---|---|
1.8.0 | 2024/05/03 | getMyPath()をapikey.appのgetMyPath()関数に変更 |
1.7.0 | 2024/04/27 | Edge対応に伴いデバッグ用コードを廃棄 |
1.6.0 | 2023/07/02 | getPointsGSI()メソッド追加 |
1.5 | 2022/09/03 | デバッグコード埋め込み |
1.4 | 2021/05/01 | makeMapLeaflet() 引数追加 |
バージョン | 更新日 | 内容 |
---|---|---|
1.0 | 2021/04/14 |
バージョン | 更新日 | 内容 |
---|---|---|
1.2.0 | 2024/05/06 | getModulePath() 追加 |
1.12 | 2021/01/31 | readWebContents() 引数post追加 |
1.11 | 2020/10/17 | htmlspecialchars() 追加 |
1.1 | 2020/10/17 | GetVersion2()追加,readWebContents() 引数ua追加 |
1.01 | 2020/10/03 | setClipboardData() bug-fix |
バージョン | 更新日 | 内容 |
---|---|---|
1.0.0 | 2024/04/27 | 初版 |
バージョン | 更新日 | 内容 |
---|---|---|
2.0.0 | 2024/04/29 | createSetAPIkey, processSetAPIkey に統合 |
1.0 | 2020/09/30 | 初版 |
使用ライブラリ
また、地図表示にWebブラウザ・コントロールを利用するため "WebView2Loader.dll" を利用する。jchv / webview2-in-mingw からダウンロードできる。
リソースの準備
Eclipse を起動したら、新規プロジェクト earthquakewin を用意する。
ResEdit を起動したら、resource.rc を用意する。
Eclipse に戻り、ソース・プログラム "earthquakewin.cpp" を追加する。
リンカー・フラグを -s -mwindows -static -lstdc++ -lgcc -lwinpthread -lcurl -lssl -llzma -lz -lws2_32 "C:\(libcurl-x64.dllのフォルダ)\libcurl-x64.dll" "C:\(WebView2Loader.dllのフォルダ)\WebView2Loader.dll" に設定する。
また、コマンド行パターンをアレンジし "${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS} -luuid -loleaut32 -lole32" とする。
MSYS2 コマンドラインからビルドするのであれば、"makefile" を利用してほしい。
解説:定数など
earthquakewin.cpp
45: // 定数など ==================================================================
46: #define MAKER "pahoo.org" //作成者
47: #define APPNAME "earthquakewin" //アプリケーション名
48: #define APPNAMEJP "最近の地震情報" //アプリケーション名(日本語)
49: #define APPVERSION "4.1.2" //バージョン
50: #define APPYEAR "2020-24" //作成年
51: #define REFERENCE "https://www.pahoo.org/e-soul/webtech/cpp01/cpp01-12-01.shtm" // 参考サイト
52:
53: //ListViewItemの最大文字長【変更不可】
54: #define MAX_LISTVIEWITEM 259
55:
56: //ヘルプ・ファイル
57: #define HELPFILE ".\\etc\\help.chm"
58:
59: //デフォルト保存ファイル名
60: #define SAVEFILE "eq_%04d%02d%02d_%02d%02d.csv"
61:
62: //キャッシュ・ディレクトリ
63: #define DIR_CACHE_FEED "pcache1\\"
64: #define DIR_CACHE_FEED_L "pcache2\\"
65: #define DIR_CACHE_DATA "pcache3\\"
66:
67: //キャッシュ保持時間(デフォルト;分)(0:キャッシュしない)
68: #define LIFE_CACHE_FEED 5 //高頻度フィードに対して
69: #define LIFE_CACHE_FEED_L 120 //長期フィードに対して
70: #define LIFE_CACHE_DATA 720 //地震情報に対して
71:
72: //気象庁防災情報XML:高頻度フィード - 地震火山【変更不可】
73: #define FEED_EVOL "https://www.data.jma.go.jp/developer/xml/feed/eqvol.xml"
74:
75: //気象庁防災情報XML:長期フィード - 地震火山【変更不可】
76: #define FEED_EVOL_L "https://www.data.jma.go.jp/developer/xml/feed/eqvol_l.xml"
77:
78: //マップID
79: #define MAP_ID "map_id"
80: //地図の大きさ
81: #define MAP_WIDTH 600 //地図の幅(ピクセル)
82: #define MAP_HEIGHT 400 //地図の高さ(ピクセル)
83: //経度・緯度(初期値)
84: #define DEF_LONGITUDE 139.766667
85: double Longitude = DEF_LONGITUDE;
86: #define DEF_LATITUDE 35.681111
87: double Latitude = DEF_LATITUDE;
88: //地図拡大率(初期値)
89: #define DEF_ZOOM 6
90: int Zoom = DEF_ZOOM;
91: //地図の種類(初期値)
92: #define DEF_MAPTYPE "GSISTD"
93: string Maptype = DEF_MAPTYPE;
94: #define INFO_WIDTH (int)(MAP_WIDTH * 0.75) //情報ウィンドウの最大幅
95: #define INFO_OFFSET_X 0 //情報ウィンドウのオフセット位置(X)
96: #define INFO_OFFSET_Y -10 //情報ウィンドウのオフセット位置(Y)
97:
98: //地震情報の最大格納数
99: #define MAX_EARTHQUAKE 100
解説:データ構造
earthquakewin.cpp
144: //地震情報を格納する構造体
145: struct _Earthquake {
146: int id = 0; //マッピングID
147: int year = 0; //西暦年
148: int month = 0; //月
149: int day = 0; //日
150: int hour = 0; //時
151: int minuite = 0; //分
152: wstring location = L""; //震源地
153: double latitude = 0.0; //緯度
154: double longitude = 0.0; //経度
155: double depth = 0.0; //深さ
156: double magnitude = -1.0; //マグニチュード
157: int maxintensity = -1; //最大震度
158: } Earthquake[MAX_EARTHQUAKE];
解説:キャッシュ・システム
- Atomフィード:高頻度フィード:地震火山
- Atomフィード:長期フィード:地震火山
- VXSE53
earthquakewin.cpp
62: //キャッシュ・ディレクトリ
63: #define DIR_CACHE_FEED "pcache1\\"
64: #define DIR_CACHE_FEED_L "pcache2\\"
65: #define DIR_CACHE_DATA "pcache3\\"
66:
67: //キャッシュ保持時間(デフォルト;分)(0:キャッシュしない)
68: #define LIFE_CACHE_FEED 5 //高頻度フィードに対して
69: #define LIFE_CACHE_FEED_L 120 //長期フィードに対して
70: #define LIFE_CACHE_DATA 720 //地震情報に対して
配布ファイルは、新しい地震情報が入ってくることを考え、フィードの方を短く、地震情報の方は長くキャッシュ保持時間を設定してある。
解説:ワイド文字列中の改行を他の文字列に置換
mystrings.cpp
336: /**
337: * ワイド文字列中の改行を他の文字列に置換する
338: * @param wstring str 置換対象の文字列
339: * @param wstring rep 置換文字列
340: * @return wstring 置換後の文字列
341: */
342: wstring wrepNL(wstring str, wstring rep) {
343: wstring strRet;
344: wstring::iterator ite = str.begin();
345: wstring::iterator iteEnd = str.end();
346:
347: if (0 < str.size()) {
348: wchar_t bNextChar = *ite++;
349: while (1) {
350: if (L'\r' == bNextChar) {
351: // 改行確定
352: strRet += rep;
353: // EOF判定
354: if (ite == iteEnd) {
355: break;
356: }
357: // 1文字取得
358: bNextChar = *ite++;
359: if (L'\n' == bNextChar) {
360: // EOF判定
361: if (ite == iteEnd) {
362: break;
363: }
364: // 1文字取得
365: bNextChar = *ite++;
366: }
367: } else if (L'\n' == bNextChar) {
368: // 改行確定
369: strRet += rep;
370: // EOF判定
371: if (ite == iteEnd) {
372: break;
373: }
374: // 1文字取得
375: bNextChar = *ite++;
376: if (L'\r' == bNextChar) {
377: // EOF判定
378: if (ite == iteEnd) {
379: break;
380: }
381: // 1文字取得
382: bNextChar = *ite++;
383: }
384: } else {
385: // 改行以外
386: strRet += bNextChar;
387: // EOF判定
388: if (ite == iteEnd) {
389: break;
390: }
391: // 1文字取得
392: bNextChar = *ite++;
393: }
394: };
395: }
396: return strRet;
397: }
解説:地震情報取得
earthquakewin.cpp
498: /**
499: * 地震情報取得(気象庁防災情報XMLから)
500: * @param なし
501: * @return bool TRUE:取得成功/FALSE:失敗
502: */
503: bool getEarthquake(void) {
504: //年月日時分
505: regex re1("([0-9]+)\\-([0-9]+)\\-([0-9]+)T([0-9]+)\\:([0-9]+)");
506: //緯度・経度・深さ
507: regex re2("([\\+\\-][0-9\\.]+)([\\+\\-][0-9\\.]+)([\\-\\+\\/])([0-9]*)");
508: smatch mt1, mt2;
509: double lng, lat;
510: pahooCache* pCC; //pahooCacheオブジェクト
511:
512: //地震情報URLを取得
513: static string urls[MAX_EARTHQUAKE];
514: bool res = jma_getLastEarthquakeURLs(urls);
515: if (res == FALSE) {
516: return FALSE;
517: }
518:
519: static string contents = "";
520: pCC = new pahooCache(LIFE_CACHE_DATA, getMyPath(APPNAME) + DIR_CACHE_DATA, UserAgent);
521: for (int i = 0; i < MAX_EARTHQUAKE; i++) {
522: if (urls[i] == "") {
523: // cout << "count = " << i << endl;
524: break;
525: }
526: readWebContents(urls[i], UserAgent, &contents);
527: if (pCC->load(urls[i], &contents) == FALSE) {
528: ErrorMessage = _WS(pCC->getError());
529: return FALSE;
530: }
531: //XML読み込み
532: try {
533: std::stringstream ss;
534: ss << contents;
535: ptree pt;
536: xml_parser::read_xml(ss, pt);
537:
538: //XML解釈
539: //地震発生日時の取得
540: if (optional<string>str = pt.get_optional<string>("Report.Body.Earthquake.OriginTime")) {
541: // cout << str.value() << " ";
542: if (regex_search(str.value(), mt1, re1)) {
543: Earthquake[i].year = stoi(mt1[1].str());
544: Earthquake[i].month = stoi(mt1[2].str());
545: Earthquake[i].day = stoi(mt1[3].str());
546: Earthquake[i].hour = stoi(mt1[4].str());
547: Earthquake[i].minuite = stoi(mt1[5].str());
548: }
549: }
550: //震源地の取得
551: if (optional<string>str = pt.get_optional<string>("Report.Body.Earthquake.Hypocenter.Area.Name")) {
552: Earthquake[i].location = _UW(str.value());
553: // cout << _WS(Earthquake[i].location) << " ";
554: }
555: if (optional<string>str = pt.get_optional<string>("Report.Body.Earthquake.Hypocenter.Area.jmx_eb:Coordinate")) {
556: if (regex_search(str.value(), mt2, re2)) {
557: pGC->tokyo_wgs84(stod(mt2[2].str()), stod(mt2[1].str()), &lng, &lat);
558: Earthquake[i].latitude = lat;
559: Earthquake[i].longitude = lng;
560: if (mt2[3].str() == "/") {
561: Earthquake[i].depth = (-1.0);
562: } else {
563: Earthquake[i].depth = stod(mt2[4].str());
564: }
565: // cout << "lat=" << lat << " lng=" << lng << " ";
566: }
567: }
568: //マグニチュードの取得
569: if (optional<string>str = pt.get_optional<string>("Report.Body.Earthquake.jmx_eb:Magnitude")) {
570: Earthquake[i].magnitude = stod(str.value());
571: // cout << "M=" << Earthquake[i].magnitude << " ";
572: }
573: //最大震度の取得
574: if (optional<string>str = pt.get_optional<string>("Report.Body.Intensity.Observation.MaxInt")) {
575: Earthquake[i].maxintensity = stoi(str.value());
576: // cout << "max=" << Earthquake[i].maxintensity << endl;
577: }
578: //読み込みエラー
579: } catch(xml_parser_error& e) {
580: ErrorMessage = "気象庁防災情報XMLにアクセスできません";
581: return FALSE;
582: }
583: contents.clear();
584: }
585: delete pCC;
586:
587: return TRUE;
588: }
XMLファイルの構造については、「PHPで直近の地震情報を表示する」をご覧いただきたい。
今回も、ワイド文字列に対する正規表現を使うことにした。ソースはSJISで書いているので、ユーザーマクロ関数 _SW を使ってワイド文字列に変換し、これを使って正規表現によるパターンマッチングを行う。
解説:マップを生成する
pahooGeocode.cpp
775: /**
776: * 地図描画スクリプトを生成する
777: * @param string id マップID
778: * @param double longitude 中心座標:経度(世界測地系)
779: * @param double latitude 中心座標:緯度(世界測地系)
780: * @param int zoom 拡大率
781: * @param string type マップタイプ
782: * GSISTD:地理院地図(標準):省略時
783: * GSIPALE:地理院地図(淡色地図)
784: * GSIBLANK:地理院地図(白地図)
785: * GSIPHOTO:地理院地図(写真)
786: * OSM:OpenStreetMap
787: * GMRD:Googleマップ(ROADMAP);APIキー有効時
788: * @param ppoints_t* items 地点情報配列(省略可能)
789: * @param size_t size 地点情報配列の数(省略可能)
790: * @param string call1 イベント発生時にコールする関数(省略可)
791: * @param string call2 追加スクリプト(省略可)
792: * @param int max_width 情報ウィンドウの最大幅(省略時:200)
793: * @param int ofst_x 情報ウィンドウのオフセット位置(X)(省略時:0)
794: * @param int ofst_y 情報ウィンドウのオフセット位置(Y)(省略時:0)
795: * @return string 生成したスクリプト
796: */
797: string pahooGeocode::makeMapLeaflet(
798: string id, double longitude, double latitude, int zoom,
799: string type, ppoints_t* items, size_t size, string call1, string call2,
800: int max_width, int ofst_x, int ofst_y) {
801:
802: //地点情報スクリプトの生成
803: char lat[SIZE_BUFF + 1], lng[SIZE_BUFF + 1];
804: char buff[SIZE_BUFF + 1];
805: string icode = "";
806: if (items != NULL) {
807: string icon = "";
808: string info = "";
809: for (size_t i = 0; i < size; i++) {
810: if ((items[i].icon) == "" && (i > 25)) break;
811: //アイコンURLなく 'Z'を超えたら打ち止め
812: string mark = {(char)(65 + i)};
813: if (items[i].icon == "") {
814: icon = "https://www.google.com/mapfiles/marker" + mark + ".png";
815: } else {
816: icon = items[i].icon;
817: }
818: info = "";
819: if (items[i].description != L"") {
820: snprintf(buff, SIZE_BUFF, "', {maxWidth: %d, offset: [%d, %d] });", max_width, ofst_x, ofst_y);
821: info = "marker_" + mark + ".bindPopup('" + _WS(items[i].description) + buff;
822: }
823: snprintf(lat, SIZE_BUFF, "%.5f", items[i].latitude);
824: snprintf(lng, SIZE_BUFF, "%.5f", items[i].longitude);
825: icode += (boost::format(R"(
826: var icon_%1% = new L.icon({
827: iconUrl: '%2%',
828: iconAnchor: [10, 10] //暫定
829: });
830: var marker_%1% = new L.Marker([%3%, %4%], {icon: icon_%1%}).addTo(map);
831: %5%
832: )")
833: %mark //マーカー識別子
834: % icon //マーカーURL
835: % lat //緯度
836: % lng //経度
837: % info //情報
838: ).str();
839: }
840: }
841:
842: //地図描画スクリプトの生成
843: string script = (boost::format(R"(
844: %6%
845: <link rel="stylesheet" href="https://unpkg.com/leaflet@latest/dist/leaflet.css" />
846: <script src="https://unpkg.com/leaflet@latest/dist/leaflet.js"></script>
847: %7%
848: <script>
849: window.onload = function() {
850: var map = L.map('%1%',{zoomControl:false});
851: map.setView([%2%, %3%], %4%);
852: L.control.scale({
853: maxWidth: 250,
854: position: 'bottomright',
855: imperial: false
856: }).addTo(map);
857: L.control.zoom({position:'topleft'}).addTo(map);
858:
859: //地理院地図:標準地図
860: var GSISTD = new L.tileLayer(
861: 'https://cyberjapandata.gsi.go.jp/xyz/std/{z}/{x}/{y}.png',
862: {
863: attribution: "<a href='https://maps.gsi.go.jp/development/ichiran.html' target='_blank'>地理院タイル</a>",
864: minZoom: 0,
865: maxZoom: 18,
866: name: 'GSISTD'
867: });
868: //地理院地図:淡色地図
869: var GSIPALE = new L.tileLayer(
870: 'https://cyberjapandata.gsi.go.jp/xyz/pale/{z}/{x}/{y}.png',
871: {
872: attribution: "<a href='https://maps.gsi.go.jp/development/ichiran.html' target='_blank'>地理院タイル</a>",
873: minZoom: 2,
874: maxZoom: 18,
875: name: 'GSIPALE'
876: });
877: //地理院地図:白地図
878: var GSIBLANK = new L.tileLayer(
879: 'https://cyberjapandata.gsi.go.jp/xyz/blank/{z}/{x}/{y}.png',
880: {
881: attribution: "<a href='https://maps.gsi.go.jp/development/ichiran.html' target='_blank'>地理院タイル</a>",
882: minZoom: 5,
883: maxZoom: 14,
884: name: 'GSIBLANK'
885: });
886: //地理院地図:写真
887: var GSIPHOTO = new L.tileLayer(
888: 'https://cyberjapandata.gsi.go.jp/xyz/seamlessphoto/{z}/{x}/{y}.jpg',
889: {
890: attribution: "<a href='https://maps.gsi.go.jp/development/ichiran.html' target='_blank'>地理院タイル</a>",
891: minZoom: 2,
892: maxZoom: 18,
893: name: 'GSIPHOTO'
894: });
895: //OpenStreetMap
896: var OSM = new L.tileLayer(
897: 'https://tile.openstreetmap.jp/{z}/{x}/{y}.png',
898: {
899: attribution: "<a href='https://osm.org/copyright' target='_blank'>OpenStreetMap</a> contributors",
900: minZoom: 0,
901: maxZoom: 18,
902: name: 'OSM'
903: });
904: %8%
905:
906: //baseMapsオブジェクトにタイル設定
907: var baseMaps = {
908: "地理院地図" : GSISTD,
909: "淡色地図" : GSIPALE,
910: "白地図" : GSIBLANK,
911: "写真地図" : GSIPHOTO,
912: "オープンストリートマップ" : OSM
913: %9%
914: };
915:
916: //layersコントロールにbaseMapsオブジェクトを設定して地図に追加
917: L.control.layers(baseMaps).addTo(map);
918: %5%.addTo(map);
919:
920: //イベント追加
921: map.on('moveend', getPointData);
922: map.on('zoomend', getPointData);
923: map.on('baselayerchange', getPointData);
924:
925: //イベント発生時の地図情報を取得・格納
926: function getPointData() {
927: var pos = map.getCenter();
928: //経度
929: if (document.getElementById('longitude') != null) {
930: document.getElementById('longitude').value = pos.lng;
931: }
932: //緯度
933: if (document.getElementById('latitude') != null) {
934: document.getElementById('latitude').value = pos.lat;
935: }
936: //ズーム
937: if (document.getElementById('zoom') != null) {
938: document.getElementById('zoom').value = map.getZoom();
939: }
940: //タイプ
941: if (document.getElementById('maptype') != null) {
942: for (var k in baseMaps) {
943: if (map.hasLayer(baseMaps[k])) {
944: document.getElementById('maptype').value = baseMaps[k].options.name;
945: }
946: }
947: }
948: %11%
949: }
950: %10%
951: }
952: </script>
953: )")
954: %id //地図ID
955: % latitude //緯度
956: % longitude //経度
957: % zoom //地図拡大率
958: % type //地図タイプ
959: % this->GoogleMap1 //Googleマップ描画用スクリプトURL
960: % this->GoogleMap2 //Leaftet:Googleマップ・アドオンURL
961: % this->GoogleMap3 //Leaftet:Googleマップ用レイヤ
962: % this->GoogleMap4 //Leaftet:Googleマップ選択肢
963: % icode
964: % call1
965: ).str();
966:
967: return script;
968: }
このメソッドは、「地理院地図・OSM描画 -PHPで住所・ランドマークから最寄り駅を求める」で紹介した手法をそのまま移植した。無償のJavaScriptライブラリLeafletを利用している。
後述するように、Googleマップが利用できるときには、必要なスクリプトを変数 GoogleMap1~GoogleMap4 から追加するようにした。
pahooGeocode.cpp
35: /**
36: * コンストラクタ
37: * @param string appname アプリケーション名
38: */
39: pahooGeocode::pahooGeocode(std::string appname) {
40: this->appname = appname;
41: this->readGoogleApiKey();
42: //ホットペッパーグルメWebサービス APIキー読み込み
43: readApiKey(FNAME_YAHOO_API, &this->YahooAPIkey);
解説:地図描画パラメータ
earthquakewin.cpp
161: /**
162: * パラメータの初期化
163: * @param なし
164: * @return なし
165: */
166: void initParameter(void) {
167: Longitude = DEF_LONGITUDE;
168: Latitude = DEF_LATITUDE;
169: Zoom = DEF_ZOOM;
170: Maptype = DEF_MAPTYPE;
171: hParent_X = 0;
172: hParent_Y = 0;
173: }
earthquakewin.cpp
238: /**
239: * パラメータの保存
240: * @param なし
241: * @return なし
242: */
243: void saveParameter(void) {
244: #ifndef CMDAPP
245: //アプリケーション・ウィンドウの位置取得
246: WINDOWINFO windowInfo;
247: windowInfo.cbSize = sizeof(WINDOWINFO);
248: GetWindowInfo(hParent, &windowInfo);
249: hParent_X = (unsigned)windowInfo.rcWindow.left;
250: hParent_Y = (unsigned)windowInfo.rcWindow.top;
251: if (hParent_X >= (unsigned)windowInfo.rcWindow.right) {
252: hParent_X = 0;
253: }
254: if (hParent_Y >= (unsigned)windowInfo.rcWindow.bottom) {
255: hParent_Y = 0;
256: }
257: #endif
258:
259: char lng[SIZE_BUFF + 1], lat[SIZE_BUFF + 1];
260: snprintf(lng, SIZE_BUFF, "%.5f", Longitude);
261: snprintf(lat, SIZE_BUFF, "%.5f", Latitude);
262:
263: //XMLファイルへ書き込む
264: ptree pt;
265: ptree& child1 = pt.add("parameter.param", lat);
266: child1.add("<xmlattr>.type", "latitude");
267: ptree& child2 = pt.add("parameter.param", lng);
268: child2.add("<xmlattr>.type", "longitude");
269: ptree& child3 = pt.add("parameter.param", to_string(Zoom));
270: child3.add("<xmlattr>.type", "zoom");
271: ptree& child4 = pt.add("parameter.param", Maptype);
272: child4.add("<xmlattr>.type", "maptype");
273: ptree& child5 = pt.add("parameter.param", (string)to_string(hParent_X));
274: child5.add("<xmlattr>.type", "wx");
275: ptree& child6 = pt.add("parameter.param", (string)to_string(hParent_Y));
276: child6.add("<xmlattr>.type", "wy");
277:
278: const int indent = 4;
279: write_xml(getMyPath(APPNAME) + APPNAME + ".xml", pt, std::locale(),
280: xml_writer_make_settings<std::string>(' ', indent));
281: }
ブラウザ・コントロールから、これらの値を取り出し、所定のXMLファイルへ保存するのが saveParameter である。
保存場所は、"[C:\Users\(ユーザー名)\AppData\Roaming\pahoo.org\(アプリケーション名)" である。
なお、INPUT要素を取得する方法は、「INPUT要素の取得 - C++で最寄駅を検索」で紹介したとおりだ。
earthquakewin.cpp
175: /**
176: * パラメータの読み込み
177: * @param なし
178: * @return なし
179: */
180: void loadParameter(void) {
181: ptree pt;
182:
183: //初期値設定
184: initParameter();
185:
186: //XMLファイル読み込み
187: try {
188: xml_parser::read_xml(getMyPath(APPNAME) + APPNAME + ".xml", pt);
189:
190: //XML解釈
191: try {
192: //形式チェック
193: if (optional<string>str = pt.get_optional<string>("parameter")) {
194: } else {
195: return;
196: }
197: //パラメータ読み込み
198: for (auto it : pt.get_child("parameter")) {
199: string type= it.second.get_optional<string>("<xmlattr>.type").value();
200: if (type == "latitude") {
201: Latitude = stod(it.second.data());
202: } else if (type == "longitude") {
203: Longitude = stod(it.second.data());
204: } else if (type == "zoom") {
205: Zoom = stoi(it.second.data());
206: } else if (type == "maptype") {
207: Maptype = (string)it.second.data();
208: } else if (type == "wx") {
209: hParent_X = (unsigned)stoi(it.second.data());
210: } else if (type == "wy") {
211: hParent_Y = (unsigned)stoi(it.second.data());
212: }
213: }
214: //解釈失敗したら初期値設定
215: } catch (xml_parser_error& e) {
216: initParameter();
217: return;
218: }
219: //読み込み失敗したら初期値設定
220: } catch (xml_parser_error& e) {
221: initParameter();
222: return;
223: }
224:
225: //アプリケーション・ウィンドウの位置(デスクトップ範囲外なら原点移動)
226: HWND hDesktop = GetDesktopWindow();
227: WINDOWINFO windowInfo;
228: windowInfo.cbSize = sizeof(WINDOWINFO);
229: GetWindowInfo(hDesktop, &windowInfo);
230: if (hParent_X >= (unsigned)windowInfo.rcWindow.right) {
231: hParent_X = 0;
232: }
233: if (hParent_Y >= (unsigned)windowInfo.rcWindow.bottom) {
234: hParent_Y = 0;
235: }
236: }
解説:マップ表示用HTML生成
earthquakewin.cpp
725: /**
726: * 地図表示用HTML生成
727: * @param string 表示するインフォメーション
728: * @return string 生成したHTML文
729: */
730: string makeMapHTML(wstring info) {
731: int cnt = info2points();
732: string script = pGC->makeMapLeaflet(MAP_ID, Earthquake[0].longitude, Earthquake[0].latitude, Zoom, Maptype, pGC->Ppoints, cnt, "", "", INFO_WIDTH, INFO_OFFSET_X, INFO_OFFSET_Y);
733:
734: string html = (boost::format(R"(<!DOCTYPE html>
735: <html lang="ja">
736: <head>
737: <meta charset="SJIS">
738: <title>%9%</title>
739: <meta name="author" content="studio pahoo" />
740: <meta name="copyright" content="studio pahoo" />
741: <meta name="ROBOTS" content="NOINDEX,NOFOLLOW" />
742: <meta http-equiv="pragma" content="no-cache">
743: <meta http-equiv="cache-control" content="no-cache">
744: <meta http-equiv="X-UA-Compatible" content="IE=edge">
745: %8%
746: </head>
747: <body>
748: <div id="%1%" style="width:%2%px; height:%3%px;"></div>
749: <form>
750: <input id="latitude" type="hidden" value="%4%" />
751: <input id="longitude" type="hidden" value="%5%" />
752: <input id="zoom" type="hidden" value="%6%" />
753: <input id="maptype" type="hidden" value="%7%" />
754: </form>
755: </body>
756: </html>
757: )")
758: %MAP_ID //地図ID
759: % MAP_WIDTH //地図の幅
760: % MAP_HEIGHT //地図の高さ
761: % Earthquake[0].latitude //緯度
762: % Earthquake[0].longitude //経度
763: % Zoom //地図拡大率
764: % Maptype //地図タイプ
765: % script //地図描画スクリプト
766: % APPNAMEJP //アプリケーション名
767: ).str();
768:
769: return html;
770: }
解説:WebView2
IE サポート終了に備え、マイクロソフトは64ビット環境でデスクトップアプリケーションでWebコンテンツを利用するために「Microsoft Edge WebView2」(以下、WebView2と記す)と呼ぶ仕組みを用意している。Windowsの標準ブラウザ Edgeのモジュールを利用し、Webコンテンツ(HTML,CSS,JavaScriptなど)をアプリに埋め込むことができる。
ところが、WebView2 は Visual Studio での開発を前提にした仕組みであるため、MinGW C++ で扱うには困難を極めた。とくに、WebView2 のWebコンテンツ上のパラメータを読み書きするのに、Visual C++/C# 固有インターフェースを使わなければならず、これを代替するのに手間取った。
最終的に、MinGW C++ を使って WebView2 を操作できるようになり、アプリを64ビット環境に対応させることができたのだが、後述するように、CからWindows APIを呼び出さなければならないモジュールが必要になり、WebView2操作処理をクラス化することができなかった。このため、いくつかのグローバル変数を追加せざるを得なかった。
解説:WebView2コンポーネントを扱う
また、jchv / webview2-in-mingw のサンプル・プログラムを参考に、"pahooWebView2.cpp", "pahooWebView2.hpp" を用意した。ここでは、"pahooWebView2.cpp" の内容について解説する。
pahooWebView2.cpp
129: /**
130: * WebView2を生成する.
131: * @param HINSTANCE hInst 現在のインターフェイス
132: * @param HWND hDlg 親ウィンドウ・ハンドラ
133: * @paramm int x, y WebView2の左上座標
134: * @paramm int width, height WebView2の幅、高さ
135: * @param LPCWSTR uri 表示するURI
136: * @return HWND WebView2へのハンドラ
137: */
138: HWND createWebView2(HINSTANCE hInst, HWND hDlg, int x, int y, int width, int height, LPCWSTR uri) {
139: //ウィンドウ クラス情報
140: static WNDCLASSEX wc{};
141: wc.cbSize = sizeof(WNDCLASSEX);
142: wc.hInstance = hInst;
143: wc.lpszClassName = TEXT("webview");
144: wc.lpfnWndProc = WndProc;
145: RegisterClassEx(&wc);
146:
147: //ウィンドウ生成
148: static HWND hWnd = CreateWindowEx(
149: 0,
150: TEXT("webview"),
151: TEXT("MinGW WebView2"),
152: WS_CHILD | WS_VISIBLE | ES_LEFT,
153: x, y, width, height,
154: hDlg,
155: nullptr,
156: hInst,
157: nullptr
158: );
159: ShowWindow(hWnd, SW_SHOW);
160: UpdateWindow(hWnd);
161: SetFocus(hWnd);
162:
163: //データ・パス取得
164: TCHAR szDataPath[MAX_PATH + 1];
165: GetDataPath(szDataPath, MAX_PATH);
166: //イベントハンドラ
167: static EventHandler handler{};
168:
169: handler.EnvironmentCompleted = [&](HRESULT result, ICoreWebView2Environment* created_environment) {
170: // cout << "EnvironmentCompleted" << endl;
171: if (FAILED(result)) {
172: FatalError(TEXT("Failed to create environment?"));
173: }
174: created_environment->lpVtbl->CreateCoreWebView2Controller(created_environment, hWnd, &handler);
175: return S_OK;
176: };
177:
178: handler.ControllerCompleted = [&](HRESULT result, ICoreWebView2Controller* new_controller) {
179: // cout << "ControllerCompleted" << endl;
180: if (FAILED(result)) {
181: FatalError(TEXT("Failed to create controller?"));
182: }
183: controller = new_controller;
184: controller->lpVtbl->AddRef(controller);
185: controller->lpVtbl->get_CoreWebView2(controller, &webView2);
186: webView2->lpVtbl->AddRef(webView2);
187: webView2->lpVtbl->Navigate(webView2, uri);
188: ResizeBrowser(hWnd);
189: webView2Ready = true;
190: return S_OK;
191: };
192:
193: HRESULT result = CreateCoreWebView2EnvironmentWithOptions(
194: nullptr,
195: TStrToWStr(szDataPath).c_str(),
196: nullptr,
197: &handler
198: );
199:
200: if (FAILED(result)) {
201: FatalError(TEXT("Call to CreateCoreWebView2EnvironmentWithOptions failed!"));
202: }
203:
204: return hWnd;
205: }
まず、ICoreWebView2Environment インターフェースを使って、WebView2を初期化し、WebView2ランタイムの状態管理やイベントハンドリングができるようにする。
次に、ICoreWebView2Controller インターフェースを使って、アプリケーション内に WebView2コントロールを生成する。
いずれも非同期で処理されるため、これらの処理が終了したことをグローバル変数 webView2Ready に代入しておく。
また、これらのインターフェースなどがCライブラリであるため、"pahooWebView2.cpp" は "CINTERFACE" とせざる得ず、上述のようにクラス化することができなかった。
MinGW C++ から WebView2を
earthquakewin.cpp
1097: /**
1098: * WebView2:ダイアログを初期化する
1099: * @param HWND hDlg 親ウィンドウ・ハンドラ
1100: * @return なし
1101: */
1102: void initDialog(HWND hDlg) {
1103: HICON hIcon;
1104: hIcon = (HICON)LoadImage(hInst, MAKEINTRESOURCE(IDI_ICON), IMAGE_ICON, 16, 16, 0);
1105: SendMessage(hDlg, WM_SETICON, ICON_SMALL, (LPARAM)hIcon);
1106: ErrorMessage = "";
1107:
1108: //カーソルを砂時計に
1109: SetCursor(LoadCursor(NULL, IDC_WAIT));
1110: //オプション読み込み
1111: loadParameter();
1112: //アプリケーション・ウィンドウ移動
1113: SetWindowPos(hDlg, NULL, hParent_X, hParent_Y, 0, 0, (SWP_NOSIZE | SWP_NOZORDER | SWP_NOOWNERZORDER));
1114:
1115: //テンポラリ・ファイル名取得
1116: getTempFname(tmpFname);
1117: size_t wLen = 0;
1118: mbstowcs_s(&wLen, wUri, MAX_PATH * 2, tmpFname, MAX_PATH);
1119: //WebView2生成
1120: hWebView2 = createWebView2(hInst, hDlg, 10, 10, MAP_WIDTH + 20, MAP_HEIGHT + 20, wUri);
1121:
1122: //メッセージ・ループ
1123: MSG msg;
1124: static bool flagWebView2 = false;
1125: while (GetMessage(&msg, nullptr, 0, 0)) {
1126: if (msg.message == WM_QUIT) {
1127: //オプション保存
1128: //saveOption();
1129: DestroyWindow(hDlg);
1130: }
1131: TranslateMessage(&msg);
1132: DispatchMessage(&msg);
1133: if (!flagWebView2 && isWeb2Ready()) {
1134: //カーソルを砂時計に
1135: SetCursor(LoadCursor(NULL, IDC_WAIT));
1136: //地震情報取得
1137: getEarthquake();
1138: //ブラウザ・コントロールに表示
1139: viewBrowser(infoEarthquake, tmpFname);
1140: webView2->Reload();
1141: flagWebView2 = true;
1142: //地震情報一覧フレーム作成
1143: makeListViewFrame(GetDlgItem(hDlg, IDC_LISTVIEW_EARTHQUAKE));
1144: //地震情報一覧表示
1145: makeListView(GetDlgItem(hDlg, IDC_LISTVIEW_EARTHQUAKE));
1146: }
1147: }
1148: }
WebView2コントロールで表示するためのHTMLファイルをローカルに用意するため、ユーザー関数 getTempFname を使って、Windowsユーザーの AppDataフォルダにテンポラリファイルを作る。
次に、上述のユーザー関数 createWebView2 を呼び出して WebView2コントロールを用意するのだが、これが非同期処理であるため、メッセージループを用意しなければならない。
earthquakewin.cpp
800: /**
801: * ブラウザ・コントロールを表示
802: * @param wstring info 情報ウィンドウに表示するテキスト
803: * @param char* tmpname 読み込むHTMLファイル名
804: * @return なし
805: */
806: void viewBrowser(wstring info, const char* tmpname) {
807: string html;
808: string fname;
809: ofstream ofs;
810:
811: //表示用HTMLファイル作成
812: if ((ErrorMessage == "") && (! pGC->isError())) {
813: html = makeMapHTML(info);
814: } else {
815: html = makeErrorHTML();
816: }
817: ofs.open(tmpname);
818: ofs << html;
819: ofs.close();
820:
821: fname = (string)tmpname;
822: std::replace(fname.begin(), fname.end(), '\\', '/');
823:
824: if (isWeb2Ready()) {
825: webView2->Reload();
826: }
827: }
earthquakewin.cpp
このためのJavaScriptを渡す関数が saveWebView2Parameter で、ハンドラは scriptCompletedHandler である。取得したいパラメータをカンマ区切りで受け取るスクリプトを渡している。(JSONを使うほどのパラメータ量ではないので😓)
earthquakewin.cpp
カンマ区切りで受け取ったパラメータは Boost C++] の split関数を使って分解し、変数に代入する。
なお、WebView2 対応にしたことで64ビット化し、それ以前の32ビット・アプリとインストール場所が変更になることから、インストーラーで MinumumVersion を指定し、メジャー・アップグレード扱いにしてそれ以前のバージョンを削除できるようになっている。
解説:APIキーの管理
そこで本プログラムでは、ユーザーが APIキーを取得した場合、それをプログラムから入力・保存できるようにするダイアログを用意した。
mystrings.cpp
31: /**
32: * AppDataのパスを取得
33: * @param char* appname アプリケーション名
34: * @return string パス
35: */
36: string getMyPath(const char* appname) {
37: static TCHAR myPath[MAX_PATH] = "";
38:
39: if (strlen(myPath) == 0) {
40: if (SHGetSpecialFolderPath(NULL, myPath, CSIDL_APPDATA, 0)) {
41: TCHAR *ptmp = _tcsrchr(myPath, _T('\\'));
42: if (ptmp != NULL) {
43: ptmp = _tcsinc(ptmp);
44: *ptmp = _T('\0');
45: }
46: strcat(myPath, _T("Roaming"));
47: CreateDirectory((LPCTSTR)myPath, NULL);
48: strcat(myPath, _T("\\pahoo.org"));
49: CreateDirectory((LPCTSTR)myPath, NULL);
50: strcat(myPath, _T("\\"));
51: strcat(myPath, _T(appname));
52: CreateDirectory((LPCTSTR)myPath, NULL);
53: strcat(myPath, _T("\\"));
54: } else {
55: }
56: }
57: return (string)myPath;
58: }
apikey.cpp
66: /**
67: * APIキーを書き込む
68: * @param string fname 書き込むファイル名(パスを除く)
69: * @param string key 書き込むAPIキー
70: * @return bool TRUE:書込成功/FALSE:失敗
71: */
72: bool writeApiKey(std::string fname, std::string key) {
73: bool ret = TRUE;
74: ofstream ofs;
75:
76: ofs.open((string)getMyPath(NULL) + fname);
77: ofs << key;
78: if(ofs.bad()) {
79: ret = FALSE;
80: }
81: ofs.close();
82:
83: return ret;
84: }
ユーザー関数 writeApiKey は、ユーザー関数 getMyPath で指定するフォルダに、変数 key に格納したAPIキーを、ファイル名 "fname" で保存する。保存したAPIキーを、valKey で指定する変数に格納する。
apikey.cpp
34: /**
35: * APIキーを読み込む
36: * @param string fname 読み込むファイル名(パスを除く)
37: * @param string *key APIキーを格納する変数
38: * @return bool TRUE:読込成功/FALSE:ファイルがない
39: */
40: bool readApiKey(std::string fname, std::string* key) {
41: string readKey;
42: bool ret = FALSE;
43:
44: ifstream ifs((string)getMyPath(NULL) + fname);
45: if (!ifs) return ret;
46:
47: ifs >> readKey;
48: if(ifs.bad()) {
49: ifs.close();
50: return FALSE;
51: }
52: ifs.close();
53:
54: //APIキーを格納する
55: if (readKey.length() > 0) {
56: *key = readKey;
57: ret = TRUE;
58: //APIキーを削除する
59: } else {
60: *key = "";
61: }
62:
63: return ret;
64: }
pahooGeocode.cpp
106: /**
107: * Google Cloud Platform APIキーを読み込む
108: * @param なし
109: * @return bool TRUE:読込成功/FALSE:ファイルがない
110: */
111: bool pahooGeocode::readGoogleApiKey(void) {
112: string key;
113: bool ret = FALSE;
114:
115: ifstream ifs((string)getMyPath(this->appname.c_str()) + FNAME_GOOGLE_API);
116: //APIキー・ファイルが無ければ初期化
117: if (!ifs) {
118: this->GoogleAPIkey = "";
119: this->GoogleMap1 = "";
120: this->GoogleMap2 = "";
121: this->GoogleMap3 = "";
122: this->GoogleMap4 = "";
123: return ret;
124: }
125:
126: //APIキー読み込み
127: ifs >> key;
128: if(ifs.bad()) {
129: this->errmsg = _SW("Google Cloud Platform APIキーの読み込みに失敗しました");
130: ifs.close();
131: this->GoogleAPIkey = "";
132: this->GoogleMap1 = "";
133: this->GoogleMap2 = "";
134: this->GoogleMap3 = "";
135: this->GoogleMap4 = "";
136: return FALSE;
137: }
138: ifs.close();
139:
140: //APIキーなどの設定
141: if (key.length() > 0) {
142: this->GoogleAPIkey = key;
143: this->GoogleMap1 = "<script src='https://maps.googleapis.com/maps/api/js?key="
144: + key + "' async defer></script>";
145: this->GoogleMap2 =
146: "<script src='https://unpkg.com/leaflet.gridlayer.googlemutant@0.10.2/Leaflet.GoogleMutant.js'></script>";
147: this->GoogleMap3 =
148: "var GMRD = L.gridLayer.googleMutant({type:'roadmap', name:'GMRD'});\nvar GMST = L.gridLayer.googleMutant({type:'satellite', name:'GMST'});\nvar GMHB = L.gridLayer.googleMutant({type:'hybrid', name:'GMHB'});";
149: this->GoogleMap4 = ",'Googleマップ(標準)' : GMRD,\n'Googleマップ(写真)' : GMST,\n'Googleマップ(混合)' : GMHB";
150: ret = TRUE;
151: //APIキーが無ければ初期化
152: } else {
153: this->GoogleAPIkey = "";
154: this->GoogleMap1 = "";
155: this->GoogleMap2 = "";
156: this->GoogleMap3 = "";
157: this->GoogleMap4 = "";
158: }
159: return ret;
160: }
これは、前述の makeMapLeaflet メソッドにGoogleマップを追加するためのスクリプトを変数 GoogleMap1~GoogleMap4 に代入する必要があるためである。
共通手順、モジュールなど
- C++ 開発環境の準備:ぱふぅ家のホームページ
- C++ 開発環境の準備 -MSYS2編-
- WiX によるWindowsインストーラー作成:ぱふぅ家のホームページ
- C++ でダイアログボックスを使う
- C++ でイベント駆動型アプリを作る
- 解説:ニュース一覧作成|C++ で Googleニュース検索
- 解説:検索結果をCSVファイルに保存|C++ で Googleニュース検索
- 解説:クリップボード|C++ でパスワード生成機を作る
- 解説:APIキーの管理|C++ で直近の地震情報を取得する
- 解説:WebView2|C++ で直近の地震情報を取得する
- 解説:解説:マップ表示用HTML生成|C++ で直近の地震情報を取得する
参考サイト
- PHPで最近の地震情報を表示する:ぱふぅ家のホームページ
地図としては、地理院地図、オープンストリートマップのほか、Edgeブラウザに対応し64ビットアプリ化したことで、Googleマップが再び利用できるようになった。Googleマップ利用には、ユーザーにおいてGoogle Cloud APIキーを取得してほしい。
(2024年11月23日)使用ライブラリ更新
(2024年8月17日)使用ライブラリ更新
(2024年5月3日)API入力処理を改良
(2024年4月27日)Edgeブラウザ対応,64ビット対応
(2024年3月16日)使用ライブラリ更新