다음을 통해 공유


Microsoft Information Protection SDK - 정책 SDK 프로필 개념

정책 SDK 작업을 수행하려면 먼저 mip::Profile을 로드해야 합니다.

아래의 두 예제에서는 상태 스토리지와 메모리 내 전용 로컬 스토리지를 사용하여 profileSettings 개체를 만드는 방법을 보여 줍니다.

프로필 로드

MipContext 이제 정의되었 ProfileObserver 으므로 이를 사용하여 인스턴스화mip::PolicyProfile합니다. mip::PolicyProfile 객체를 생성하려면 mip::PolicyProfile::Settingsmip::MipContext가 필요합니다.

Profile::Settings 매개 변수

PolicyProfile::Settings 생성자는 아래 나열된 4개의 매개변수를 허용합니다.

  • const std::shared_ptr<MipContext>: 애플리케이션 정보, 상태 경로 등을 저장하도록 초기화된 mip::MipContext 개체입니다.
  • mip::CacheStorageType: 메모리 내, 디스크 내 또는 디스크 내 및 암호화된 상태를 저장하는 방법을 정의합니다. 자세한 내용은 캐시 스토리지 개념을 참조하세요.
  • std::shared_ptr<mip::PolicyProfile::Observer> observer: 프로필 Observer 구현(in , PolicyProfileProtectionProfile)에 FileProfile대한 공유 포인터입니다.

아래의 두 예제에서는 상태 스토리지와 메모리 내 전용 로컬 스토리지를 사용하여 profileSettings 개체를 만드는 방법을 보여 줍니다.

메모리에만 상태 저장

mip::ApplicationInfo appInfo {clientId, "APP NAME", "1.2.3" };

std::shared_ptr<mip::MipConfiguration> mipConfiguration = std::make_shared<mip::MipConfiguration>(mAppInfo,
				                                                                                  "mip_data",
                                                                                        		  mip::LogLevel::Trace,
                                                                                                  false);

std::shared_ptr<mip::MipContext> mMipContext = mip::MipContext::Create(mipConfiguration);

PolicyProfile::Settings profileSettings(
    mMipContext,                                  // mipContext object
    mip::CacheStorageType::InMemory,              // use in memory storage
    std::make_shared<PolicyProfileObserverImpl>()); // new protection profile observer

디스크의 스토리지 경로에서 프로필 설정 읽기/쓰기

mip::ApplicationInfo appInfo {clientId, "APP NAME", "1.2.3" };

std::shared_ptr<mip::MipConfiguration> mipConfiguration = std::make_shared<mip::MipConfiguration>(mAppInfo,
			                                                                                      "mip_data",
                                                                                       			  mip::LogLevel::Trace,
                                                                                                  false);

std::shared_ptr<mip::MipContext> mMipContext = mip::MipContext::Create(mipConfiguration);

PolicyProfile::Settings profileSettings(
    mipContext,                                    // mipContext object
    mip::CacheStorageType::OnDisk,                 // use on disk storage
    std::make_shared<PolicyProfileObserverImpl>());  // new protection profile observer

다음으로 promise/future 패턴을 사용하여 .Profile

auto profilePromise = std::make_shared<std::promise<std::shared_ptr<Profile>>>();
auto profileFuture = profilePromise->get_future();
Profile::LoadAsync(profileSettings, profilePromise);

프로필이 성공적으로 로드되면 ProfileObserver::OnLoadSuccess구현 mip::Profile::Observer::OnLoadSuccess 에 대한 알림이 표시됩니다. 결과 개체(이 경우 mip::Profile컨텍스트뿐만 아니라)는 관찰자 함수에 매개 변수로 전달됩니다.

컨텍스트는 비동기 작업을 처리하기 위해 만든 std::promise에 대한 포인터입니다. 함수는 프라미스 값을 첫 번째 매개 변수에 대해 전달된 Profile 개체로 설정하기만 하면 됩니다. main 함수가 사용하는 Future.get()경우 결과를 호출 스레드의 새 개체에 저장할 수 있습니다.

//get the future value and store in profile.
auto profile = profileFuture.get();

함께 배치

관찰자 및 인증 대리자를 완전히 구현했으므로 이제 프로필을 완전히 로드할 수 있습니다. 아래 코드 조각에서는 필요한 모든 헤더가 이미 포함되어 있다고 가정합니다.

int main()
{
    const string userName = "MyTestUser@consoto.com";
    const string password = "P@ssw0rd!";
    const string clientId = "MyClientId";

    mip::ApplicationInfo appInfo {clientId, "APP NAME", "1.2.3" };
 
    std::shared_ptr<mip::MipConfiguration> mipConfiguration = std::make_shared<mip::MipConfiguration>(mAppInfo,
				                                                                                       "mip_data",
                                                                                        			   mip::LogLevel::Trace,
                                                                                                       false);

    std::shared_ptr<mip::MipContext> mMipContext = mip::MipContext::Create(mipConfiguration);

    PolicyProfile::Settings profileSettings(
        mMipContext,                                    // mipContext object
        mip::CacheStorageType::OnDisk,                 // use on disk storage
        std::make_shared<PolicyProfileObserverImpl>());  // new protection profile observer

    auto profilePromise = std::make_shared<promise<shared_ptr<PolicyProfile>>>();
    auto profileFuture = profilePromise->get_future();
    Profile::LoadAsync(profileSettings, profilePromise);
    auto profile = profileFuture.get();
}

최종 결과는 프로필을 성공적으로 로드하고 호출 profile된 개체에 저장한 것입니다.

다음 단계

이제 프로필이 추가되었으므로 다음 단계는 프로필에 엔진을 추가하는 것입니다.

정책 엔진 개념