Sunday, November 30, 2014

iOS Xcode에서 윈도우에서 작성한 소스코드의 한글(CP949)이 깨지는 현상 해결

윈도우에서 작성한 소스코드를 xcode에서 불러올때 한글이 깨지는 경우가 있다. 물론 UTF-8로 작성했다면 깨지지 않지만, 구형 소스의 경우는 한글 CP949(이하 CP949)로 작성된 경우가 많다.

일일이 UTF-8로 소스코드의 인코딩을 변경하여 사용하면 되지만, 데이터가 CP949기반으로 작성했다면 UTF-8로 인코딩을 변경하면 깨지는 경우가 있어서 바로 CP949를 읽어야 한다.

프로젝트에서 CP949 소스코드를 열면 한글이 깨져있다. 오른쪽에서 Text Settings에서 Text Encoding을 선택한다.

그 다음에 여러가지 Korean이 있는데 EUC나 다른 것을 선택하지 말고 반드시 Korean (Windows, DOS)를 선택하자.


그러면 텍스트를 변환한다는 다이얼로그가 뜨는데 여기서 반드시 Reinterpret를 선택하자. 그러면 다시 저장하지 않아도 된다.



Saturday, November 29, 2014

Android 5.0 호환성 문제 - Nexus5에서 MediaPlayer 소리가 나지 않는 버그

Android 5.0 호환성 문제를 해결하는 중이다. 그런데 넥서스5에서 MediaPlayer에 버그가 있다.

1. setLooping(true)로 설정하였음에도 불구하고, onCompletion이 호출되면서 1번만 플레이하고 끝난다. 안드로이드 4.4.4에서는 이렇게 되지 않고 무한 플레이 된다.

2. setLooping(true) 설정된 MediaPlayer의 최초 플레이시에는 소리가 전혀나지 않는다.

따라서 나는 MediaPlayer에서 setLooping을 믿지 않기로 했고, OnCompletionListener에서 looping을 수동으로 제어하기로 했다.

Friday, November 28, 2014

Android 5.0 호환성 문제 - AUDIO_OUTPUT_FLAG_FAST denied by client

넥서스7(1세대)에서는 잘돌아가는 사운드 부분이 넥서스5에서는 안나오면서 다음과 같은 에러메세지를 냈다.

11-28 00:43:09.547: W/AudioTrack(8259): AUDIO_OUTPUT_FLAG_FAST denied by client

아직 어떤 부분인지 자세히 모르겠지만 확인해 봐야겠다. 그런데 아무리 찾아봐도 답이 없다. 내가 사용하고 있는 것은 SoundPool인데 저 메세지가 7개 이상의 mp3, ogg를 로딩하면 나오는거 같은데... 어쩔수 없이 SoundPool을 대체하는 클래스를 만들어야 겠다.

Thursday, November 27, 2014

Android 5.0 호환성 문제 - sprintf 인코딩 에러

안드로이드 5.0 호환성 문제를 해결하고 있다.

NDK로 만든 소스가 있는데 sprintf가 동작을 안하는 것이다.

이 cpp소스는 한국어(CP949)로 제작되어 있고, format에 들어가는 문자열 데이터는 중국어(GB1232)이다.

이때 안드로이드 5.0에서는 sprintf에서 인코딩이 맞지 않는 문자열을 무시해 버리고 0바이트를 복사해 버린다.

그래서 수동으로 sprintf를 제작해야 한다.

Tuesday, November 25, 2014

Visual Studio 2013에서 MFC가 컴파일되지 않을때

Visual Studio 2013에서 다음과 같은 에러 메세지를 내면서 MFC 프로젝트가 컴파일 되지 않을때가 있다. 이는 2013에서는 MFC를 유니코드만 지원하기 때문에 추가적으로 non-Unicode 라이브러리를 다운 받으라는 말이다. 여러모로 귀찮다.

error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library. See http://go.microsoft.com/fwlink/p/?LinkId=286820 for more information.

Friday, November 21, 2014

Visual Studio 2013 설치

Visual Studio 2013을 설치하였다. 기존까지는 Visual Studio 2012를 사용하고 있었는데 이번에는 완전하게 한글화가 되었다. 추가적으로 뭐가 바뀌었는지는 모르겠지만, 2012와 비슷하고 속도가 더욱 빨라진것 같다.

iOS MAC 주소 알아내기

iOS에서 MAC 주소를 알아내는 소스이다.

//MAC
#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <net/if_dl.h>
#include <ifaddrs.h>

char*  getMacAddress(char* macAddress, char* ifName) {
   
    int  success;
    struct ifaddrs * addrs;
    struct ifaddrs * cursor;
    const struct sockaddr_dl * dlAddr;
    const unsigned char* base;
    int i;
   
    success = getifaddrs(&addrs) == 0;
    if (success) {
        cursor = addrs;
        while (cursor != 0) {
            if ( (cursor->ifa_addr->sa_family == AF_LINK)
                && (((const struct sockaddr_dl *) cursor->ifa_addr)->sdl_type == 0x06) && strcmp(ifName,  cursor->ifa_name)==0 ) {
                dlAddr = (const struct sockaddr_dl *) cursor->ifa_addr;
                base = (const unsigned char*) &dlAddr->sdl_data[dlAddr->sdl_nlen];
                strcpy(macAddress, "");
                for (i = 0; i < dlAddr->sdl_alen; i++) {
                    char partialAddr[3];
                    sprintf(partialAddr, "%02x", base[i]);
                    strcat(macAddress, partialAddr);
                   
                }
            }
            cursor = cursor->ifa_next;
        }
       
        freeifaddrs(addrs);
    }
    return macAddress;
}

사용법은 다음과 같다. 내부에서 buf의 메모리를 할당하지 않기 때문에 함수 외부에서 할당을 해서 넘겨줘야 한다.
        // buf에 MAC주소를 넣음
        getMacAddress(buf, "en0");

iOS Xcode에서 iOS 7.1 시뮬레이터가 동작하지 않을때

최신버전의 Xcode인 6.1에서는 기본적으로 iOS 7.1 시뮬레이터가 깔려있지 않다. 그래서 7.1을 테스트 하려면 다음과 같이 추가적으로 시뮬레이터를 설치하여야 한다.

메뉴에서 [Xcode] - [Preferences] - [Downloads]로 가서 Components에서 iOS 7.1 Simulator를 다운로드 한다.


Monday, November 17, 2014

금융기관별 ActiveX 설치 현황 목록

[은행: 21개사]
1. KB국민은행 : http://www.kbstar.com/
   설치되는 ActiveX
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum
   - INISAFEWeb v6 : Initech
   - INIIE8Assist : Initech
   - Secure KeyStroke 4.0  : Softcamp
2. 우리은행 : http://www.wooribank.com/
   설치되는 ActiveX
   - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum
   - ClientKeeper KeyPro Keyboard Protecter : SoftForum
   - Ahnlan Online Security : AhnLab
   - XecureWeb UCA Update Control : SoftForum
   - WRebw : Interzen
3. 신한은행 : http://www.shinhan.com/
   설치되는 ActiveX
   - INISAFEWeb 7.0 Updater : Initech
   - Secure KeyStroke 4.0  : Softcamp
   - Secure KeyStroke Elevation COMDLL  : Softcamp
   - ProWorksGrid : Iniswave
   - Ahnlan Online Security : AhnLab
4. 외환은행 : http://www.keb.co.kr/
   설치되는 ActiveX
   - VeraPort : WIZVERA
   - VeraPort Main : WIZVERA
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - ClientKeeper KeyPro Keyboard Protecter : SoftForum
   - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum
5. 기업은행 http://www.ibk.co.kr/
   설치되는 ActiveX
   - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum
   - ClientKeeper KeyPro Keyboard Protecter : SoftForum
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
6. 하나은행 http://www.hanabank.com/
   설치되는 ActiveX
   - INISAFEWeb 7.0 Updater : Initech
   - Secure KeyStroke Elevation COMDLL  : Softcamp
   - Printmade : Designmade
   - Ahnlan Online Security : AhnLab
7. 한국산업은행 http://www.kdb.co.kr/
   설치되는 ActiveX
   - nProtect Securelog Client : INCA
   - nProtect KeyCrypt : INCA
   - nProtect Service Updater : INCA
   - npz ActiveX Control Module : INCA
   - nProtect Security Center : INCA
   - INISAFEWeb v6 : Initech
8. SC제일은행 http://www.scfirstbank.com/
   설치되는 ActiveX
   - SC FirstBank TrustSite ActiveX Module : SC 제일은행(Initech OEM)
   - Microsoft Visual C++ 2005 Redistributable Package : Microsoft
   - INISAFEWeb 7.0 : Initech
   - Ahnlan Online Security : AhnLab
9. 한국씨티은행 http://www.citibank.co.kr/
   설치되는 ActiveX
   - INISAFEWeb 7.0 Updater : Initech
   - Secure KeyStroke 4.0  : Softcamp
   - Ahnlan Online Security : AhnLab
10. HSBC http://www.kr.hsbc.com/
   설치되는 ActiveX
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - nProtect KeyCrypt : INCA
   - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum
11. 부산은행 http://www.pusanbank.co.kr/
   설치되는 ActiveX
   - nProtect KeyCrypt : INCA
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - Banktown CxCtl20 Module : Initech
   - Pusan Bank MYBCard Module : BankTown
   - BtShellPsb20 Module: Banktown
   - PKICube Admin Module : Banktown
12. 대구은행 http://www.daegubank.co.kr/
   설치되는 ActiveX
   - nProtect KeyCrypt : INCA
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - INISAFEWeb v6 : Initech
13. 광주은행 http://www.kjbank.com/
   설치되는 ActiveX
   - INISAFEWeb v6 : Initech
   - Secure KeyStroke 4.0  : Softcamp
   - Ahnlan Online Security : AhnLab
14. 경남은행 http://www.kyongnambank.co.kr/
   설치되는 ActiveX
   - INISAFEWeb v6 : Initech
   - ClientKeeper KeyPro Keyboard Protecter : SoftForum
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
15. 전북은행 http://www.jbbank.co.kr/
   설치되는 ActiveX
   - nProtect Security Center (nProtect Netizen V4.0) : INCA (설치 않함)
   - ClientKeeper KeyPro Keyboard Protecter : SoftForum
   - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum
16. 제주은행 http://www.e-jejubank.com/
   설치되는 ActiveX
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - nProtect KeyCrypt : INCA
   - INISAFEWeb v6 : Initech
   - 휴대폰 인증서 보관 서비스 : Infovine
17. 농협 http://banking.nonghyup.com/
   설치되는 ActiveX
   - INISAFEWeb 7.0 Updater : Initech
   - Secure KeyStroke 4.0  : Softcamp
   - Ahnlan Online Security : AhnLab
18. 수협 :  http://www.suhyup-bank.com/
   설치되는 ActiveX
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - INISAFEWeb v6 : Initech
   - Secure KeyStroke 4.0  : Softcamp
   - Printmade : Designmade
   - iTrustSite Module : BankTown
19. 신협 :  http://www.cu.co.kr/
   설치되는 ActiveX
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - nProtect KeyCrypt : INCA
   - INISAFEWeb v6 : Initech
   - nProtect KeyCrypt ActiveX Contol : INCA
20. 새마을금고 :  http://www.kfcc.co.kr/
   설치되는 ActiveX
   - nProtect KeyCrypt : INCA
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - INISAFEWeb v6 : Initech
21. 우체국 : http://www.epostbank.go.kr/
   설치되는 ActiveX
   - EWS Client : 한국정보인증
   - K-Defense 8 : Kings Information&amp;Network
   - OPISASXU : 알수없음
   - Mead Co's Script : Mead &amp; Company
   - Persnal PC Firewall i-Defense : Kings Information&amp;Network

[카드: 10개사]
1. KB카드  http://card.kbstar.com/quics?page=s_crd
   설치되는 ActiveX
   - XecureWeb Control V7.2 : SoftForum
   - XecureWeb UCA Update Control : SoftForum
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - Secure KeyStroke 4.0  : Softcamp
   - Secure KeyStroke Elevation COMDLL  : Softcamp
2. 신한카드  http://www.shinhancard.com/
   설치되는 ActiveX
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - XecureWeb Control V7.2 : SoftForum
   - nProtect KeyCrypt : INCA
3. 우리카드  http://card.wooribank.com/
   설치되는 ActiveX
   - XecureWeb Control V7.2 : SoftForum
   - ClientKeeper KeyPro Keyboard Protecter : SoftForum
   - Ahnlan Online Security : AhnLab
4. 외환카드  http://www.yescard.co.kr/
   설치되는 ActiveX
   - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum
   - VeraPort : WIZVERA
   - ClientKeeper KeyPro Keyboard Protecter : SoftForum
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
5. 씨티카드  http://www.citibank.co.kr/kor/card/card_index.jsp
   설치되는 ActiveX
   - INISAFEWeb 7.0 Updater : Initech
   - Secure KeyStroke 4.0  : Softcamp
   - Ahnlan Online Security : AhnLab
6. 하나카드  http://www.hanabank.com/contents/ccd/index.jsp
   설치되는 ActiveX
   - Secure KeyStroke 4.0  : Softcamp
   - INISAFEWeb 7.0 Updater : Initech
   - Ahnlan Online Security : AhnLab
7. 삼성카드  http://www.samsungcard.co.kr/
   설치되는 ActiveX
   - nProtect KeyCrypt : INCA
   - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
8. 현대카드  http://www.hyundaicard.com/
   설치되는 ActiveX
   - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - nProtect KeyCrypt : INCA
9. 비씨카드  http://www.bccard.com/
   설치되는 ActiveX
   - INISAFEWeb v6 : Initech
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - nProtect KeyCrypt : INCA
10. 롯데카드  http://www.lottecard.co.kr/
   설치되는 ActiveX
   - XecureWeb Control V7.0 : SoftForum
   - nProtect Security Center (nProtect Netizen V4.0) : INCA
   - K-Defense 8 : Kings Information&amp;Network

Saturday, November 15, 2014

Android NDK __android_log_print 에러나는 경우

undefined reference to `__android_log_print'에러가 나는 경우는
Android.mk에다가 아래 줄을 추가하면 문제가 해결된다.

LOCAL_LDLIBS := -L$(SYSROOT)/usr/lib -llog

Android NDK 버전 번호 구하기

NDK에서 안드로이드 버전 번호를 구하는 소스코드

int success = 1;

// VERSION is a nested class within android.os.Build (hence "$" rather than "/")
jclass versionClass = (*env)->FindClass(env, "android/os/Build$VERSION");
if (NULL == versionClass)
success = 0;

jfieldID sdkIntFieldID = NULL;
if (success)
success = (NULL != (sdkIntFieldID = (*env)->GetStaticFieldID(env, versionClass, "SDK_INT", "I")));

jint sdkInt = 0;
if (success)
{
sdkInt = (*env)->GetStaticIntField(env, versionClass, sdkIntFieldID);
LOGI("sdkInt = %d", sdkInt);
}

Thursday, November 13, 2014

Visual C++ MAC 주소 알아내기

윈도우 Win32에서 MAC 주소를 알아내려면 다음과 같이 하면된다.
노트북을 사용한다고 가정하여 어댑터들 중에 "Wi-Fi"를 검색한다.

// 윈속 2를 반드시 include해야 한다.
#include <winsock2.h>
#pragma comment(lib, "ws2_32.lib")

#include <iphlpapi.h>
#include <iptypes.h>
// Link with Iphlpapi.lib
#pragma comment(lib, "IPHLPAPI.lib")

#define WORKING_BUFFER_SIZE 15000
#define MAX_TRIES 3

char* get_mac_adress()
{
int family = AF_INET;
PIP_ADAPTER_ADDRESSES pAddresses = NULL;
ULONG outBufLen = 0;
ULONG Iterations = 0;

// Allocate a 15 KB buffer to start with.
outBufLen = WORKING_BUFFER_SIZE;
DWORD dwRetVal = 0;

// Set the flags to pass to GetAdaptersAddresses
ULONG flags = GAA_FLAG_INCLUDE_PREFIX;

pAddresses = (IP_ADAPTER_ADDRESSES *)malloc(outBufLen);
dwRetVal = GetAdaptersAddresses(family, flags, NULL, pAddresses, &outBufLen);

char *ret = new char[128];
memset(ret, 0, 128);

while (pAddresses) {
if (wcsstr(pAddresses->FriendlyName, L"Wi-Fi")) {
for (int i = 0; i < 6; i++) {
sprintf(ret, "%s%02x", ret, pAddresses->PhysicalAddress[i]);
}
}
pAddresses = pAddresses->Next;

}
return ret;
}

int _tmain(int argc, _TCHAR* argv[])
{
char *mac = get_mac_adress();
printf("mac address: %s\n", mac);
delete[] mac;

return 0;
}



Sunday, November 2, 2014

C# Bitmap 픽셀 처리(읽기/쓰기)

C# Bitmap에서 SetPixel, GetPixel을 사용하게 되면 매우 느리게 된다.(전체 픽셀을 다룰 경우) 그럴경우 다음과 같이 픽셀 포인터를 얻어서 사용하면 매우 빠르기 픽셀 처리를 할수 있다. 이를 위해서는 unsafe옵션을 켜주어야 한다.

private Image _image = null;

// 비트맵 픽셀 처리
        private void Form1_Load(object sender, EventArgs e)
        {
            Bitmap bitmap = new Bitmap(100, 100);
            BitmapData bmpData = bitmap.LockBits(new Rectangle(0, 0, 100, 100), ImageLockMode.WriteOnly, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
            unsafe
            {
                byte* ptr = (byte* )bmpData.Scan0.ToPointer();
                for (int i = 0; i < bmpData.Height; i++)
                {
                    for (int j = 0; j < bmpData.Width; j++)
                    {
                        ptr[bmpData.Stride * i + 3 * j + 0] = 0;// B
                        ptr[bmpData.Stride * i + 3 * j + 1] = 0;// G
                        ptr[bmpData.Stride * i + 3 * j + 2] = 255;// R
                    }
                }
                bitmap.UnlockBits(bmpData);
            }
            _image = bitmap;
        }

// 비트맵 그리기
        private void Form1_Paint(object sender, PaintEventArgs e)
        {
            Graphics g = e.Graphics;
            if (_image != null)
            {
                g.DrawImage(_image, 0, 0, _image.Width * _imageScale, _image.Height * _imageScale);
            }
        }

Saturday, November 1, 2014

C# OutputDebugString 사용하기

C#에서 OutputDebugString이 안될때는 다음과 같이 [Project] - [Properties] - [Debug]탭에서 Enable native code debugging을 활성화 시키면 된다.
OutputDebugString을 Managed C++에서 써도 마찬가지 방법으로 활성화 시킨다.


C# C++ char* 문자열 전달하기

C++ 함수가 다음과 같은 것이 있고, MBCS 문자열 인코딩을 사용할 때
void encoding_test(const char* pstr);

다음과 같이 C#에서 작성하면 char* 형으로 문자열을 전달할 수 있다.

        unsafe private sbyte[] get_sbyte_string(string s)
        {
// 51949는 EUC-KR이다.
            byte[] b2 = Encoding.GetEncoding(51949).GetBytes(s);
            sbyte[] sb = (sbyte[])((Array)b2);
            for (int i = 0; i < sb.Length; i++)
            {
                Console.WriteLine(sb[i]);
            }
            return sb;
        }

            string s = "하이";
            unsafe
            {
                fixed (sbyte* psb = get_sbyte_string(s))
                {
                    encoding_test(psb);
                }
            }