blob: 4bbc11708a4d5474358010feaa62796592606401 [file] [log] [blame]
// Copyright 2016 Google Inc. All Rights Reserved.
//
// 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.
// An implementation of storage that just uses the filesystem. The User
// implementation must implement a way to get the user's home directory.
#ifndef STARBOARD_SHARED_STARBOARD_FILE_STORAGE_STORAGE_INTERNAL_H_
#define STARBOARD_SHARED_STARBOARD_FILE_STORAGE_STORAGE_INTERNAL_H_
#include <string>
#include "starboard/file.h"
#include "starboard/shared/internal_only.h"
#include "starboard/storage.h"
#include "starboard/string.h"
#include "starboard/user.h"
struct SbStorageRecordPrivate {
SbUser user;
SbFile file;
#if SB_API_VERSION >= 6
std::string name;
#endif // SB_API_VERSION >= 6
};
namespace starboard {
namespace shared {
namespace starboard {
// Gets the path to the storage file for the given user.
static SB_C_INLINE bool GetUserStorageFilePath(SbUser user,
const char* name,
char* out_path,
int path_size) {
bool success = SbUserGetProperty(user, kSbUserPropertyHomeDirectory, out_path,
path_size);
if (!success) {
return false;
}
SbStringConcat(out_path, "/.starboard", path_size);
if (name && SbStringGetLength(name) > 0) {
SbStringConcat(out_path, ".", path_size);
SbStringConcat(out_path, name, path_size);
}
SbStringConcat(out_path, ".storage", path_size);
return true;
}
} // namespace starboard
} // namespace shared
} // namespace starboard
#endif // STARBOARD_SHARED_STARBOARD_FILE_STORAGE_STORAGE_INTERNAL_H_