2013-04-03 20:20:59 +02:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors.
|
2012-04-03 03:34:16 +02:00
|
|
|
// Portions copyright (c) 2011 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/shared/browser/resource_util.h"
|
2015-01-31 01:55:56 +01:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
#include <stdio.h>
|
2013-04-03 20:20:59 +02:00
|
|
|
#include <string.h>
|
2014-05-22 23:01:22 +02:00
|
|
|
#include <unistd.h>
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2015-01-23 20:09:34 +01:00
|
|
|
namespace client {
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
bool GetResourceDir(std::string& dir) {
|
|
|
|
char buff[1024];
|
|
|
|
|
|
|
|
// Retrieve the executable path.
|
2017-05-17 11:29:28 +02:00
|
|
|
ssize_t len = readlink("/proc/self/exe", buff, sizeof(buff) - 1);
|
2023-01-02 23:59:03 +01:00
|
|
|
if (len == -1) {
|
2012-04-03 03:34:16 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
buff[len] = 0;
|
|
|
|
|
|
|
|
// Remove the executable name from the path.
|
|
|
|
char* pos = strrchr(buff, '/');
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!pos) {
|
2012-04-03 03:34:16 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
// Add "cefclient_files" to the path.
|
2017-05-17 11:29:28 +02:00
|
|
|
strcpy(pos + 1, "cefclient_files");
|
2012-04-03 03:34:16 +02:00
|
|
|
dir = std::string(buff);
|
|
|
|
return true;
|
|
|
|
}
|
2015-01-23 20:09:34 +01:00
|
|
|
|
|
|
|
} // namespace client
|