2016-11-17 18:32:08 +11:00
|
|
|
/*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
* Copyright 2010-2016 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
2017-11-22 16:49:37 +11:00
|
|
|
#include "exe.hpp"
|
2016-10-10 16:23:07 +11:00
|
|
|
|
|
|
|
#include "except.hpp"
|
2017-12-18 15:46:52 +11:00
|
|
|
#incldue "win32/except.hpp"
|
2016-10-10 16:23:07 +11:00
|
|
|
|
2016-11-17 18:32:08 +11:00
|
|
|
#include <experimental/filesystem>
|
|
|
|
#include <vector>
|
2016-10-10 16:23:07 +11:00
|
|
|
#include <windows.h>
|
|
|
|
|
2016-11-17 18:32:08 +11:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2016-10-10 16:23:07 +11:00
|
|
|
std::experimental::filesystem::path
|
2016-11-17 18:32:08 +11:00
|
|
|
util::image_path (void)
|
|
|
|
{
|
2016-10-10 16:23:07 +11:00
|
|
|
std::vector<char> resolved (256);
|
|
|
|
|
|
|
|
retry:
|
|
|
|
const auto written = GetModuleFileName (nullptr, resolved.data (), resolved.size ());
|
|
|
|
if (written == 0)
|
2017-12-18 15:46:52 +11:00
|
|
|
win32::error::throw_code ();
|
2016-10-10 16:23:07 +11:00
|
|
|
|
|
|
|
if (written == resolved.size ()) {
|
|
|
|
resolved.resize (resolved.size () * 2);
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::experimental::filesystem::path (resolved.data (), resolved.data () + written);
|
|
|
|
}
|