/* * Copyright 1995, 1996 Perforce Software. All rights reserved. * * This file is part of Perforce - the FAST SCM System. */ /* * StrOps.h - operations on strings * * StrOps - member-less object with static functions * * Methods: * * StrOps::Caps() - uppercase each character (in place) in a string * StrOps::Dump() - pretty print contents, for debugging * StrOps::Sub() - replace one character with another * StrOps::Expand() - expand a string doing %var% substitutions * StrOps::Expand2() - expand a string doing [%var%|opt] substitutions * StrOps::Indent() - fill by indenting contents of another buffer * StrOps::Replace() - replace all occurences of a string * StrOps::Lines() - break buffer into \r\n or \n separated lines * StrOps::Lower() - lowercase each character (in place) in a string * StrOps::Upper() - uppercase each character (in place) in a string * StrOps::Words() - break buffer into whitespace-separated words * StrOps::OtoX() - turn an octet stream into hex * StrOps::XtoO() - turn hex into an octet stream * StrOps::WildToStr() - turn wildcards into %x escaped string * StrOps::StrToWild() - turn %x escaped string into wildcards. * StrOps::CompatWild() - turn %%d to %d for p4 where compatability. * StrOps::ScrunchArgs() - try to display argv in a limited output buffer. * StrOps::CommonPath() - construct common filepath across multiple calls. * StrOps::StripNewline() - strip \r\n from end of buffer * * StrOps::CharCnt() - Count characters in text using the server's charset * StrOps::CharCopy() - copy counting characters (not bytes) * StrOps::SafeLen() - Length of string including only complete characters * * StrOps::UnpackInt() - extract an integer from front of buffer * StrOps::UnpackInt64() - extract a long long from front of buffer * StrOps::UnpackIntA() - extract an integer encoded in ascii * StrOps::UnpackChar() - extract a char string from front of buffer * StrOps::UnpackOctet() - extract a byte string from front of buffer * StrOps::UnpackString() - extract a char string from front of buffer * StrOps::UnpackStringA() - extract a char string with length in ascii * * StrOps::PackInt() - append a formatted int to buffer * StrOps::PackIntA() - append a formatted int to buffer in ascii * StrOps::PackChar() - append a formatted string to buffer * StrOps::PackOctet() - append byte array to buffer * StrOps::PackString() - append a formatted string to buffer * StrOps::PackStringA() - append a formatted string with len in ascii */ class StrPtr; class StrRef; class StrBuf; class StrDict; class StrOps { public: // Manipulating static void Caps( StrBuf &o ); static void Dump( const StrPtr &o ); static void Sub( StrPtr &string, char target, char replacement ); static void Expand( StrBuf &o, const StrPtr &s, StrDict &d, StrDict *u = 0 ); static void Expand2( StrBuf &o, const StrPtr &s, StrDict &d ); static void RmUniquote( StrBuf &o, const StrPtr &s ); static void Indent( StrBuf &o, const StrPtr &s ); static void Replace( StrBuf &o, const StrPtr &i, const StrPtr &s, const StrPtr &r ); static int Lines( StrBuf &o, char *vec[], int maxVec ); static void Lower( StrBuf &o ); static void Upper( StrBuf &o ); static int Words( StrBuf &tmp, const char *w, char *vec[], int maxVec ); static void OtoX( const StrPtr &octet, StrBuf &hex ); static void XtoO( const StrPtr &hex, StrBuf &octet ); static void OtoX( const unsigned char *octet, int len, StrBuf &x ); static void XtoO( char *x, unsigned char *octet, int octLen ); static char OtoX( unsigned char o ) { return o >= 10 ? o - 10 + 'A' : o + '0'; } static unsigned char XtoO( char h ) { return h - ( h > '9' ? ( h >= 'a' ? 'a' - 10 : 'A' - 10 ) : '0' ); } static int IsDigest( const StrPtr &hex ); static void WildToStr( const StrPtr &i, StrBuf &o ); static void WildToStr( const StrPtr &i, StrBuf &o, const char *t ); static void StrToWild( const StrPtr &i, StrBuf &o ); static void WildCompat( const StrPtr &i, StrBuf &o ); static void MaskNonPrintable( const StrPtr &i, StrBuf &o ); static void EncodeNonPrintable( const StrPtr &i, StrBuf &o ); static void DecodeNonPrintable( const StrPtr &i, StrBuf &o ); static void ScrunchArgs( StrBuf &out, int argc, StrPtr *argv, int targetLength, int delim = ' ', const char *unsafeChars = 0); static void CommonPath( StrBuf &o, int &mdir, const StrPtr &n ); static void GetDepotName( const char *d, StrBuf &n ); static void StripNewline( StrBuf &o ); static void LFtoCRLF( const StrBuf *in, StrBuf *out ); // i18n static int CharCnt( const StrPtr &i ); static void CharCopy( const StrPtr &s, StrBuf &t, int length ); static int SafeLen( const StrPtr &s ); // Marshalling static void PackInt( StrBuf &o, int v ); static void PackIntA( StrBuf &o, int v ); static void PackInt64( StrBuf &o, P4INT64 v ); static void PackChar( StrBuf &o, const char *c, int len ); static void PackOctet( StrBuf &o, const StrPtr &s ); static void PackString( StrBuf &o, const StrPtr &s ); static void PackStringA( StrBuf &o, const StrPtr &s ); static int UnpackInt( StrRef &o ); static int UnpackIntA( StrRef &o ); static P4INT64 UnpackInt64( StrRef &o ); static void UnpackChar( StrRef &o, char *c, int length ); static void UnpackOctet( StrRef &o, const StrPtr &s ); static void UnpackString( StrRef &o, StrBuf &s ); static void UnpackStringA( StrRef &o, StrBuf &s ); static void UnpackString( StrRef &o, StrRef &s ); static void UnpackStringA( StrRef &o, StrRef &s ); } ;
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 15071 | alan_petersen |
Populate -o //guest/perforce_software/piper/... //guest/alan_petersen/piper/.... |
||
//guest/perforce_software/piper/mac/main/Perforce/p4api/Headers/strops.h | |||||
#3 | 13625 | alan_petersen |
UPDATE: - updated p4api to p4api-2015.1.1054991 - included in OpenSSL 1.0.2a ssl and crypto libraries The benefit of these are that Piper now supports connecting to 15.1 servers, and also supports ssl: connections. Woo hoo! |
||
#2 | 12961 | alan_petersen |
Piper 2.0 Mega Update New Features/Functionality - Added help menu redirecting to URL. - Added readonly property for creating new workspaces. - Added html hyperlinks for Copy link functionality. - Added functionality for managing Finder Favorite items in sidebar. - Redesigned the way mapping is stored in Piper. - First version of syncing finder sidebar items with workspace mapping. - Small sorting improvements. - Creating Projects directory inside users home folder. - Adding Projects folder to finder sidebar item. - Creating and removing symbolic links accordingly to mapped folders. - Preventing duplicate names in symbolic links. - Refreshing symbolic links on mapping change inside application. - Storing workspace and server details in p4 configuration for other applications to use. - Added contextual menu items for Finder integration. - Added services menu for Adobe Illustrator integration. - Keyboard shortcuts for Illustrator integration. - Code refactoring and fixes for mapping issues. - Added Finder functionality to edit all files in folder. - Added user friendly message when editing a file using Finder outside the workspace. - Implemented hidden automatic login when opening application using Finder integration. - Logging to file in ~/Library/Logs - Unified workspace and all files views to show both local and depot files and folders. - Removed my workspace view references and logic. - Editing unmapped files on server. - First version of adding file to unmapped folders. - Showing opened by and edit actions in column details for all depot files. - Improved mappings functionality. - Enabled same feature options for mapped and unmapped folders and files. - Redesigned from scratch mapping and unmapping procedures for adding and removing files. - Implemented cleaning workspace using new mapping functionality. Removed debug overlay coloring. - Automated workspace creation - Improvements in editing files already mapped to workspace. - Implemented deleting remote files. - Implemented first version of move operation for remote files. - Removing last workspace information when disconnecting from workspace using app menu. - Implemented editing and submitting using symbolic links in project folder. New finder menu service for symbolic links Show in Piper which acts like share link functionality. - New icons for files and folders not tracked in the filesystem. - Improvements in showing file using share link. - Switched to new way of retrieving files in order to show user changes. - Redesigned and implemented new functionality for chaining operations with mapping. - Improvements and redesign of Edit/add actions to use new chaining logic . Fixed issue with file edit. - Improvements in window showing when using services. - Simplified file loading so the local files appears only when remote are also loaded. - Improved deleting of untracked files to avoid mapping and marking for delete. - Enabling simple copy paste and moving of remote and local files. - Added abort for exception handling in order to force crashing application on critical failures - Added custom exception handling for catching runtime errors to log and crash instead of continuing in unstable state. - Changed file copying to use mark for add . - Simplified and fixed responding file representations to mapping changes. Bug Fixes - Fixed crash when synchronizing. - Fixed sync issue when downloading directory without file size information. - Fixed issue with unread list crashing when file is not existing on disk. - Fixed incorrect sync progress calculation. - Removed relative path issues. - Fixed many of case-sensitivity problems. - Fixed deprecated methods and related issues in OS X 10.10. - Fixed folder rename not updating in column view. Revised and fixed many potential problems from implicit casting. - Fixed missing sync button on fast sync completion. - Refreshing mapping on synchronization. Fixed symbolic links not appearing until app is restarted. - Fixed latest crashing of autosync. - Fixed loading indicator issues. - Fixed and redesigned submit dialog to work correctly with Submit All Files option in Finder. - Fixed multiple error messages on network outage. Redesigned showing errors in main window. - Fixed opening random locations when using Finder integration. - Fixed issue when panel was detached from parent window. - Fixed bug when creating new workspace wouldn't store default settings. - Fixed memory issues with network operations. - Fixes in relogging mappings and file listing. - Improvements in editing unmapped files. - Fixed crash when adding file outside workspace. - Fixed breadcrumbs control issue. - Fixed issue with double parent folders when opening unmapped files. - Fixed crashes on sync after mapping new files. - Fixed issue with editing file using Finder -- Merging code and additional fixes in add button functionality. - Fixed unsync not working - Fixed submit panel issue not selecting files with different name case. - Fixed missing revert and sync to workspace actions in some cases. - Fixed issue with Submit and Edit finder actions. Improvements in stability of finder integration. - Fixed issue with unsubmitted folders breaking status of files inside. - Fixed issue with added files not showing correct icon and status. - Fixed bug with file edit resulting in a new directory named exactly like a file. - Fixed issue with reloading of subpath resulting in untracked folders. - Fixed mapping issue when result was always view mapping not relative. - Fixed submit panel showing more than once. - Fixed illustrator services not working. - Fixed userdefaults preferences problem with workspace name being null. - Fixed userdefaults keypath problem of dot-containing workspace names. - Forcing recreating of browser to possibly prevent pre-10.10 errors with automatic workspace selection. - Fixed adding file to depot not presenting correct icon. - Fixed issues with reverting a file that was marked for add. - Presenting error when trying to submit untracked files. - Fixed issue when submit files service crashed when using unmapped files. - Fixed file representation disappearing when removing file. - Fixed issue with symlinks resolving working on 10.10 only. Issue related to workspace selection not showing. - Fixed error panel method calls unavailable in Mac OS versions before 10.10. Issue related to hanging error panels. - Fixed removing a local file resulting in action progress freezing. - Fixed open file not working after edit. - Fixing crash when mapping changed. Issue related to moving local file to unmapped folder and other similar cases. |
||
#1 | 11252 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/mac/Perforce/p4api/Headers/strops.h | |||||
#1 | 10744 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/Perforce/p4api/Headers/strops.h | |||||
#1 | 8919 | Matt Attaway | Initial add of Piper, a lightweight Perforce client for artists and designers. |